From 24d4159bc2d34a7687e3576e0a179a5b11bfec9c Mon Sep 17 00:00:00 2001 From: Jay Qi <2721979+jayqi@users.noreply.github.com> Date: Wed, 8 May 2024 19:44:23 -0400 Subject: [PATCH] Change highway filtering to be include rather than exclude by type (#37) Co-authored-by: Jay Qi --- notebooks/0.0-jyq-create-points-demo.ipynb | 294 ++++++++++----------- src/create_points.py | 28 +- 2 files changed, 153 insertions(+), 169 deletions(-) diff --git a/notebooks/0.0-jyq-create-points-demo.ipynb b/notebooks/0.0-jyq-create-points-demo.ipynb index 7b9e49a..e44fd97 100644 --- a/notebooks/0.0-jyq-create-points-demo.ipynb +++ b/notebooks/0.0-jyq-create-points-demo.ipynb @@ -28,7 +28,7 @@ "\n", "import geopandas as gpd\n", "\n", - "from src.create_points import remove_highways, create_points" + "from src.create_points import create_points, filter_by_highway_type" ] }, { @@ -275,7 +275,7 @@ " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_28ea3fea89f11eb83bd26e65904b45c8 {\n", + " #map_97a9b9cb014a1afacdd01afb6ef30f98 {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", @@ -305,14 +305,14 @@ "<body>\n", " \n", " \n", - " <div class="folium-map" id="map_28ea3fea89f11eb83bd26e65904b45c8" ></div>\n", + " <div class="folium-map" id="map_97a9b9cb014a1afacdd01afb6ef30f98" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_28ea3fea89f11eb83bd26e65904b45c8 = L.map(\n", - " "map_28ea3fea89f11eb83bd26e65904b45c8",\n", + " var map_97a9b9cb014a1afacdd01afb6ef30f98 = L.map(\n", + " "map_97a9b9cb014a1afacdd01afb6ef30f98",\n", " {\n", " center: [41.94479895, -85.6331935],\n", " crs: L.CRS.EPSG3857,\n", @@ -321,79 +321,79 @@ " preferCanvas: false,\n", " }\n", " );\n", - " L.control.scale().addTo(map_28ea3fea89f11eb83bd26e65904b45c8);\n", + " L.control.scale().addTo(map_97a9b9cb014a1afacdd01afb6ef30f98);\n", "\n", " \n", "\n", " \n", " \n", - " var tile_layer_ed811b69a01297a61106a4ad5c7d2314 = L.tileLayer(\n", + " var tile_layer_1b2d45784a44989b48966f0c3e636680 = L.tileLayer(\n", " "https://tile.openstreetmap.org/{z}/{x}/{y}.png",\n", " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", " );\n", " \n", " \n", - " tile_layer_ed811b69a01297a61106a4ad5c7d2314.addTo(map_28ea3fea89f11eb83bd26e65904b45c8);\n", + " tile_layer_1b2d45784a44989b48966f0c3e636680.addTo(map_97a9b9cb014a1afacdd01afb6ef30f98);\n", " \n", " \n", - " map_28ea3fea89f11eb83bd26e65904b45c8.fitBounds(\n", + " map_97a9b9cb014a1afacdd01afb6ef30f98.fitBounds(\n", " [[41.9217072, -85.6607188], [41.9678907, -85.6056682]],\n", " {}\n", " );\n", " \n", " \n", - " function geo_json_15ac7569b612fcccd3796deed8e12659_styler(feature) {\n", + " function geo_json_398e8cf600999750c150f002dd107ec4_styler(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"color": "purple", "fillColor": "purple", "fillOpacity": 0.5, "weight": 2};\n", " }\n", " }\n", - " function geo_json_15ac7569b612fcccd3796deed8e12659_highlighter(feature) {\n", + " function geo_json_398e8cf600999750c150f002dd107ec4_highlighter(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.75};\n", " }\n", " }\n", - " function geo_json_15ac7569b612fcccd3796deed8e12659_pointToLayer(feature, latlng) {\n", + " function geo_json_398e8cf600999750c150f002dd107ec4_pointToLayer(feature, latlng) {\n", " var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};\n", " \n", - " let style = geo_json_15ac7569b612fcccd3796deed8e12659_styler(feature)\n", + " let style = geo_json_398e8cf600999750c150f002dd107ec4_styler(feature)\n", " Object.assign(opts, style)\n", " \n", " return new L.CircleMarker(latlng, opts)\n", " }\n", "\n", - " function geo_json_15ac7569b612fcccd3796deed8e12659_onEachFeature(feature, layer) {\n", + " function geo_json_398e8cf600999750c150f002dd107ec4_onEachFeature(feature, layer) {\n", " layer.on({\n", " mouseout: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " geo_json_15ac7569b612fcccd3796deed8e12659.resetStyle(e.target);\n", + " geo_json_398e8cf600999750c150f002dd107ec4.resetStyle(e.target);\n", " }\n", " },\n", " mouseover: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " const highlightStyle = geo_json_15ac7569b612fcccd3796deed8e12659_highlighter(e.target.feature)\n", + " const highlightStyle = geo_json_398e8cf600999750c150f002dd107ec4_highlighter(e.target.feature)\n", " e.target.setStyle(highlightStyle);\n", " }\n", " },\n", " });\n", " };\n", - " var geo_json_15ac7569b612fcccd3796deed8e12659 = L.geoJson(null, {\n", - " onEachFeature: geo_json_15ac7569b612fcccd3796deed8e12659_onEachFeature,\n", + " var geo_json_398e8cf600999750c150f002dd107ec4 = L.geoJson(null, {\n", + " onEachFeature: geo_json_398e8cf600999750c150f002dd107ec4_onEachFeature,\n", " \n", - " style: geo_json_15ac7569b612fcccd3796deed8e12659_styler,\n", - " pointToLayer: geo_json_15ac7569b612fcccd3796deed8e12659_pointToLayer,\n", + " style: geo_json_398e8cf600999750c150f002dd107ec4_styler,\n", + " pointToLayer: geo_json_398e8cf600999750c150f002dd107ec4_pointToLayer,\n", " });\n", "\n", - " function geo_json_15ac7569b612fcccd3796deed8e12659_add (data) {\n", - " geo_json_15ac7569b612fcccd3796deed8e12659\n", + " function geo_json_398e8cf600999750c150f002dd107ec4_add (data) {\n", + " geo_json_398e8cf600999750c150f002dd107ec4\n", " .addData(data);\n", " }\n", - " geo_json_15ac7569b612fcccd3796deed8e12659_add({"bbox": [-85.6607188, 41.9217072, -85.6056682, 41.9678907], "features": [{"bbox": [-85.6557727, 41.9421533, -85.65435, 41.9421651], "geometry": {"coordinates": [[-85.6557727, 41.9421533], [-85.65435, 41.9421651]], "type": "LineString"}, "id": "0", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771085, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.654358, 41.9408145, -85.6543413, 41.9428137], "geometry": {"coordinates": [[-85.654358, 41.9428137], [-85.654356, 41.942648], [-85.6543538, 41.9424684], [-85.6543518, 41.9423128], [-85.65435, 41.9421651], [-85.6543478, 41.9419856], [-85.6543458, 41.941824], [-85.654344, 41.9416704], [-85.6543434, 41.9414809], [-85.6543429, 41.9413213], [-85.6543424, 41.9411617], [-85.6543418, 41.9409841], [-85.6543413, 41.9408145]], "type": "LineString"}, "id": "1", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771094, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6526765, 41.9409895, -85.651778, 41.9412652], "geometry": {"coordinates": [[-85.651778, 41.9411764], [-85.6519479, 41.9411743], [-85.6520012, 41.9411737], [-85.6520045, 41.9412561], [-85.6525081, 41.9412652], [-85.6526765, 41.9412454], [-85.6526624, 41.941037], [-85.652556, 41.9409895], [-85.6520933, 41.9410027], [-85.6520012, 41.9411737]], "type": "LineString"}, "id": "2", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612663, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6561174, 41.9425642, -85.6557747, 41.9425722], "geometry": {"coordinates": [[-85.6561174, 41.9425642], [-85.6557747, 41.9425722]], "type": "LineString"}, "id": "3", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771076, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6562336, 41.9425622, -85.6561174, 41.9425642], "geometry": {"coordinates": [[-85.6562336, 41.9425622], [-85.6561174, 41.9425642]], "type": "LineString"}, "id": "4", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771077, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517378, 41.943267, -85.6514284, 41.9436851], "geometry": {"coordinates": [[-85.6517378, 41.9436851], [-85.6517164, 41.9433958], [-85.6517119, 41.9433549], [-85.6517019, 41.9433213], [-85.6516861, 41.9432991], [-85.6516634, 41.9432853], [-85.6516328, 41.9432715], [-85.651597, 41.943267], [-85.6515645, 41.9432682], [-85.6515335, 41.943271], [-85.6514976, 41.9432801], [-85.6514719, 41.9432934], [-85.6514284, 41.9433219]], "type": "LineString"}, "id": "5", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892835, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6519601, 41.942621, -85.6518636, 41.9426215], "geometry": {"coordinates": [[-85.6519601, 41.9426215], [-85.6518636, 41.942621]], "type": "LineString"}, "id": "6", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550678, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521916, 41.9417638, -85.6517722, 41.941989], "geometry": {"coordinates": [[-85.6521916, 41.941989], [-85.6521884, 41.9417638], [-85.6519481, 41.9417641], [-85.6517722, 41.9417643]], "type": "LineString"}, "id": "7", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786588, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651611, 41.953639, -85.651361, 41.954233], "geometry": {"coordinates": [[-85.651611, 41.953639], [-85.651361, 41.954233]], "type": "LineString"}, "id": "8", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kerr Road", "oneway": null, "osm_id": 17967640, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6595726, 41.947229, -85.6586363, 41.9482107], "geometry": {"coordinates": [[-85.6586363, 41.9482107], [-85.6590656, 41.9482008], [-85.6593875, 41.9481349], [-85.6594814, 41.9480571], [-85.6595726, 41.9477458], [-85.6595706, 41.9473567], [-85.65957, 41.947229]], "type": "LineString"}, "id": "9", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942232, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6575412, 41.9409282, -85.657509, 41.9424605], "geometry": {"coordinates": [[-85.6575412, 41.9424605], [-85.6575331, 41.941026], [-85.657509, 41.9409282]], "type": "LineString"}, "id": "10", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771074, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6572568, 41.9406409, -85.6558591, 41.9406529], "geometry": {"coordinates": [[-85.6572568, 41.9406409], [-85.6559292, 41.9406529], [-85.6558591, 41.9406435]], "type": "LineString"}, "id": "11", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771073, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6526375, 41.9406301, -85.6517762, 41.9409304], "geometry": {"coordinates": [[-85.6517762, 41.9409304], [-85.651818, 41.940889], [-85.6518531, 41.9408646], [-85.6518989, 41.9408466], [-85.6519546, 41.9408411], [-85.6521004, 41.9408471], [-85.6521642, 41.9408893], [-85.6526375, 41.9408669], [-85.6526198, 41.9406335], [-85.6519501, 41.9406308], [-85.6517811, 41.9406301]], "type": "LineString"}, "id": "12", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612664, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6533174, 41.9397438, -85.6532979, 41.9408214], "geometry": {"coordinates": [[-85.6532979, 41.9397438], [-85.653298, 41.9406972], [-85.6533174, 41.9408214]], "type": "LineString"}, "id": "13", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771808279, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521226, 41.9445535, -85.6516381, 41.9445583], "geometry": {"coordinates": [[-85.6516381, 41.9445535], [-85.6518185, 41.9445566], [-85.6521226, 41.9445583]], "type": "LineString"}, "id": "14", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612659, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6515103, 41.9447154, -85.6512479, 41.9452959], "geometry": {"coordinates": [[-85.6512716, 41.9447154], [-85.651275, 41.9448777], [-85.6512646, 41.9450033], [-85.6512485, 41.9451436], [-85.6512479, 41.9452032], [-85.6512568, 41.9452368], [-85.6512714, 41.9452538], [-85.6512986, 41.9452716], [-85.6513349, 41.945287], [-85.6513676, 41.945292], [-85.6514002, 41.9452959], [-85.6514337, 41.9452928], [-85.6514685, 41.9452847], [-85.6515103, 41.9452695]], "type": "LineString"}, "id": "15", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892834, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557736, 41.9424606, -85.6543538, 41.9424684], "geometry": {"coordinates": [[-85.6557736, 41.9424606], [-85.6543538, 41.9424684]], "type": "LineString"}, "id": "16", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771083, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514252, 41.9403967, -85.6508052, 41.9404998], "geometry": {"coordinates": [[-85.6514252, 41.9404998], [-85.6512529, 41.9404989], [-85.6511953, 41.9404897], [-85.65114, 41.9404686], [-85.6511062, 41.9404459], [-85.6510681, 41.9404112], [-85.6510237, 41.9403968], [-85.6508052, 41.9403967]], "type": "LineString"}, "id": "17", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 944116888, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6583049, 41.925818, -85.6528255, 41.9270754], "geometry": {"coordinates": [[-85.6583049, 41.925818], [-85.658036, 41.9258811], [-85.6576224, 41.9259888], [-85.657045, 41.9261585], [-85.65602, 41.9264658], [-85.6552159, 41.9267171], [-85.6548131, 41.9268422], [-85.654543, 41.9269223], [-85.6543465, 41.9269728], [-85.6541692, 41.9270133], [-85.6539864, 41.927042], [-85.6537839, 41.927061], [-85.6536326, 41.9270703], [-85.6534371, 41.9270754], [-85.653278, 41.9270676], [-85.6530945, 41.9270556], [-85.6528255, 41.9270544]], "type": "LineString"}, "id": "18", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 17962479, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523663, 41.9413324, -85.6517752, 41.9415928], "geometry": {"coordinates": [[-85.6517752, 41.9415928], [-85.6518122, 41.9415609], [-85.6518548, 41.9415378], [-85.6518992, 41.9415202], [-85.6519529, 41.9415133], [-85.6523663, 41.9415104], [-85.6523556, 41.9413324], [-85.6519515, 41.9413327], [-85.6517797, 41.9413329]], "type": "LineString"}, "id": "19", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612662, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6531239, 41.930634, -85.6531136, 41.9315684], "geometry": {"coordinates": [[-85.6531136, 41.930634], [-85.6531239, 41.9315684]], "type": "LineString"}, "id": "20", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612687, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529412, 41.9306343, -85.6529206, 41.9315681], "geometry": {"coordinates": [[-85.6529412, 41.9315681], [-85.6529206, 41.9306343]], "type": "LineString"}, "id": "21", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612688, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514038, 41.9344638, -85.6510714, 41.9345922], "geometry": {"coordinates": [[-85.6510714, 41.9344638], [-85.6511448, 41.934471], [-85.6511974, 41.934482], [-85.6512357, 41.9344942], [-85.6512741, 41.9345065], [-85.6513118, 41.9345248], [-85.6513544, 41.934553], [-85.6514038, 41.9345922]], "type": "LineString"}, "id": "22", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892843, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6559398, 41.9295578, -85.6556609, 41.9295599], "geometry": {"coordinates": [[-85.6559398, 41.9295599], [-85.6556609, 41.9295578]], "type": "LineString"}, "id": "23", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237741, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514226, 41.9425026, -85.6510705, 41.9425113], "geometry": {"coordinates": [[-85.6510705, 41.9425026], [-85.6512697, 41.9425029], [-85.6514226, 41.9425113]], "type": "LineString"}, "id": "24", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 945352905, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6527717, 41.9336106, -85.65237, 41.9339403], "geometry": {"coordinates": [[-85.6527717, 41.9339403], [-85.6527329, 41.9339127], [-85.6527201, 41.9338876], [-85.6527173, 41.9338655], [-85.6527206, 41.9337215], [-85.652719, 41.9336834], [-85.6527039, 41.9336569], [-85.6526845, 41.9336317], [-85.652645, 41.9336197], [-85.6525794, 41.9336118], [-85.652507, 41.9336106], [-85.65237, 41.9336106]], "type": "LineString"}, "id": "25", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906545419, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.657509, 41.9406409, -85.6572568, 41.9409282], "geometry": {"coordinates": [[-85.657509, 41.9409282], [-85.6574848, 41.9408604], [-85.6573856, 41.9406669], [-85.65734, 41.9406509], [-85.6572568, 41.9406409]], "type": "LineString"}, "id": "26", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771095, "osm_type": "ways_line", "smoothness": null, "surface": "concrete", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6572676, 41.9408564, -85.6558103, 41.9408584], "geometry": {"coordinates": [[-85.6572676, 41.9408564], [-85.6558103, 41.9408584]], "type": "LineString"}, "id": "27", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771072, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.656065, 41.948108, -85.656053, 41.949009], "geometry": {"coordinates": [[-85.656065, 41.948108], [-85.656053, 41.949009]], "type": "LineString"}, "id": "28", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Greenfield Court", "oneway": null, "osm_id": 17964573, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557398, 41.9295578, -85.6556609, 41.9324981], "geometry": {"coordinates": [[-85.6557398, 41.9324981], [-85.6557276, 41.9321898], [-85.655692, 41.9319228], [-85.6556729, 41.9315833], [-85.6556741, 41.9309979], [-85.6556692, 41.9304605], [-85.6556609, 41.9295578]], "type": "LineString"}, "id": "29", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "Warner Drive", "oneway": null, "osm_id": 884351099, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6582748, 41.9483978, -85.6581653, 41.9489736], "geometry": {"coordinates": [[-85.6581756, 41.9489736], [-85.6581961, 41.9489159], [-85.6582029, 41.948842], [-85.6581738, 41.9485594], [-85.6581653, 41.9484996], [-85.658179, 41.9484449], [-85.6582252, 41.9483978], [-85.6582748, 41.9484182]], "type": "LineString"}, "id": "30", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907653855, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557721, 41.9423088, -85.6543518, 41.9423128], "geometry": {"coordinates": [[-85.6543518, 41.9423128], [-85.6557721, 41.9423088]], "type": "LineString"}, "id": "31", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771084, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651459, 41.9269659, -85.6500738, 41.9270207], "geometry": {"coordinates": [[-85.6500738, 41.92697], [-85.6501671, 41.9270097], [-85.6502567, 41.9270207], [-85.6512109, 41.9270103], [-85.651295, 41.9270065], [-85.6513722, 41.9269914], [-85.651459, 41.9269659]], "type": "LineString"}, "id": "32", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": "yes", "osm_id": 221671993, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6575519, 41.9424605, -85.6571522, 41.9428016], "geometry": {"coordinates": [[-85.6571522, 41.9428016], [-85.6572917, 41.9427936], [-85.6574017, 41.9427637], [-85.6574821, 41.9427218], [-85.6575385, 41.942664], [-85.6575519, 41.9425841], [-85.6575412, 41.9424605]], "type": "LineString"}, "id": "33", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771080, "osm_type": "ways_line", "smoothness": null, "surface": "concrete", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520639, 41.9422063, -85.6517795, 41.9425652], "geometry": {"coordinates": [[-85.6517817, 41.9425652], [-85.6518308, 41.9425169], [-85.6518647, 41.9424943], [-85.6519067, 41.9424761], [-85.6519572, 41.9424625], [-85.6520639, 41.9424594], [-85.6520608, 41.9422063], [-85.6519567, 41.9422076], [-85.6517795, 41.9422097]], "type": "LineString"}, "id": "34", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786584, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6568062, 41.9295599, -85.6559398, 41.9315802], "geometry": {"coordinates": [[-85.6559398, 41.9295599], [-85.6567899, 41.9295656], [-85.6567912, 41.9297418], [-85.6567926, 41.9299115], [-85.6567941, 41.9300949], [-85.6567956, 41.9302828], [-85.6567971, 41.9304639], [-85.6567985, 41.9306358], [-85.6568001, 41.9308283], [-85.6568015, 41.9310002], [-85.656803, 41.9311844], [-85.6568045, 41.9313701], [-85.6568062, 41.9315802]], "type": "LineString"}, "id": "35", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237740, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523712, 41.9337889, -85.6519952, 41.9337901], "geometry": {"coordinates": [[-85.6523712, 41.9337889], [-85.6519952, 41.9337901]], "type": "LineString"}, "id": "36", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237753, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506177, 41.9314147, -85.6506085, 41.9325595], "geometry": {"coordinates": [[-85.6506177, 41.9325595], [-85.6506126, 41.9324723], [-85.6506085, 41.9324035], [-85.6506091, 41.9321698], [-85.6506102, 41.9317849], [-85.6506112, 41.9314147]], "type": "LineString"}, "id": "37", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 767768417, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503797, 41.9331621, -85.6501293, 41.9332378], "geometry": {"coordinates": [[-85.6503733, 41.9331621], [-85.6503797, 41.9332313], [-85.6501293, 41.9332378]], "type": "LineString"}, "id": "38", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034073, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6481239, 41.9339031, -85.6481164, 41.9344163], "geometry": {"coordinates": [[-85.6481164, 41.9344163], [-85.6481239, 41.9339031]], "type": "LineString"}, "id": "39", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800869, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504881, 41.9438065, -85.6496469, 41.9438257], "geometry": {"coordinates": [[-85.6504881, 41.9438257], [-85.6496469, 41.9438065]], "type": "LineString"}, "id": "40", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942198, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510714, 41.9344638, -85.6503055, 41.9348439], "geometry": {"coordinates": [[-85.6510714, 41.9344638], [-85.650876, 41.9344656], [-85.6508491, 41.9344658], [-85.6506634, 41.9344674], [-85.6505609, 41.9344822], [-85.6504571, 41.9345198], [-85.6503975, 41.9345508], [-85.6503406, 41.9346101], [-85.6503217, 41.9346518], [-85.6503066, 41.934713], [-85.6503055, 41.9348439]], "type": "LineString"}, "id": "41", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034075, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504364, 41.9323456, -85.649583, 41.9323478], "geometry": {"coordinates": [[-85.6504364, 41.9323456], [-85.6500564, 41.9323466], [-85.649583, 41.9323478]], "type": "LineString"}, "id": "42", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116839, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.658931, 41.948961, -85.651611, 41.953646], "geometry": {"coordinates": [[-85.658931, 41.948961], [-85.658722, 41.949053], [-85.658635, 41.949102], [-85.656713, 41.94919], [-85.655629, 41.9495], [-85.654967, 41.950653], [-85.654458, 41.950987], [-85.654401, 41.951899], [-85.654222, 41.952272], [-85.653874, 41.952584], [-85.653121, 41.95305], [-85.652537, 41.953471], [-85.652072, 41.953646], [-85.651611, 41.953639]], "type": "LineString"}, "id": "43", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962750, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490718, 41.9321332, -85.6484226, 41.932606], "geometry": {"coordinates": [[-85.6490718, 41.932586], [-85.6490266, 41.932513], [-85.6487918, 41.9321332], [-85.6484226, 41.9321345], [-85.6484306, 41.9325001], [-85.6484329, 41.932606]], "type": "LineString"}, "id": "44", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 767768419, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503694, 41.933909, -85.6493756, 41.9351093], "geometry": {"coordinates": [[-85.6503694, 41.933909], [-85.6493756, 41.9339129], [-85.6493826, 41.934331], [-85.6493883, 41.9346687], [-85.649398, 41.9351093]], "type": "LineString"}, "id": "45", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034083, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6498418, 41.9450118, -85.6493899, 41.9450231], "geometry": {"coordinates": [[-85.6498418, 41.9450118], [-85.6493899, 41.9450231]], "type": "LineString"}, "id": "46", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942204, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489867, 41.9413337, -85.6485564, 41.9413359], "geometry": {"coordinates": [[-85.6489867, 41.9413359], [-85.6485564, 41.9413337]], "type": "LineString"}, "id": "47", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942148, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6586363, 41.9475582, -85.6579604, 41.9489772], "geometry": {"coordinates": [[-85.6579604, 41.9489772], [-85.6579736, 41.948548], [-85.6579789, 41.9483963], [-85.6580889, 41.9483045], [-85.6585585, 41.9482526], [-85.6586363, 41.9482107], [-85.6586363, 41.9477199], [-85.6586363, 41.9475582]], "type": "LineString"}, "id": "48", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942230, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6213466, 41.9431012, -85.6209945, 41.9438023], "geometry": {"coordinates": [[-85.6209945, 41.9431012], [-85.6209986, 41.9432338], [-85.6210494, 41.9434151], [-85.621109, 41.9435123], [-85.6212144, 41.9436458], [-85.6213466, 41.9438023]], "type": "LineString"}, "id": "49", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871089952, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638777, 41.9354971, -85.633205, 41.9452631], "geometry": {"coordinates": [[-85.635178, 41.9356158], [-85.63533, 41.9355886], [-85.6353819, 41.93556], [-85.6353665, 41.9355157], [-85.6353165, 41.9354971], [-85.6352454, 41.9355328], [-85.635178, 41.9356158], [-85.6350184, 41.9357846], [-85.634978, 41.9359448], [-85.6347723, 41.9361523], [-85.6347165, 41.9362667], [-85.6346992, 41.9364312], [-85.634603, 41.9366329], [-85.6345973, 41.9367488], [-85.6345127, 41.9369734], [-85.634478, 41.9371923], [-85.6344838, 41.9373768], [-85.6346242, 41.9375299], [-85.6347723, 41.9376357], [-85.6347607, 41.9377788], [-85.6346204, 41.9379533], [-85.6344184, 41.9380105], [-85.6341627, 41.9380406], [-85.6341205, 41.9380746], [-85.634005, 41.9381679], [-85.6339783, 41.9382273], [-85.63393, 41.9383353], [-85.6338588, 41.9384597], [-85.6336627, 41.9387759], [-85.6335127, 41.9389361], [-85.633403, 41.9391006], [-85.6332973, 41.9393967], [-85.633205, 41.9396742], [-85.6332203, 41.9397772], [-85.6333453, 41.939936], [-85.6333761, 41.9400018], [-85.63328, 41.9402249], [-85.6332357, 41.9403523], [-85.6332838, 41.9405831], [-85.6333643, 41.9408744], [-85.6334394, 41.9410519], [-85.6335815, 41.9411717], [-85.6337478, 41.9412734], [-85.6343174, 41.9415268], [-85.6343886, 41.9417397], [-85.6344407, 41.9418015], [-85.634518, 41.9418301], [-85.6344846, 41.942005], [-85.6345775, 41.9422218], [-85.6348174, 41.94267], [-85.6348607, 41.9427515], [-85.6348813, 41.9427697], [-85.6349035, 41.9427806], [-85.6349306, 41.9427859], [-85.6350017, 41.9427871], [-85.6350342, 41.9427873], [-85.6350609, 41.942791], [-85.6350889, 41.9428043], [-85.635109, 41.9428278], [-85.6351392, 41.9428838], [-85.6351764, 41.9429527], [-85.6352122, 41.9430357], [-85.6352192, 41.943052], [-85.6352297, 41.9430765], [-85.6352908, 41.9432248], [-85.6353139, 41.943253], [-85.6353464, 41.9432757], [-85.6353859, 41.9432898], [-85.6356282, 41.9433182], [-85.6363128, 41.9433373], [-85.6365467, 41.9433779], [-85.6365876, 41.9433968], [-85.6368692, 41.9435265], [-85.637071, 41.943676], [-85.6371184, 41.9437128], [-85.6371856, 41.9437495], [-85.6372608, 41.9437732], [-85.6373938, 41.9437973], [-85.6374505, 41.9438091], [-85.6374857, 41.9438208], [-85.6375269, 41.9438442], [-85.6376164, 41.9439286], [-85.6376372, 41.9439585], [-85.637757, 41.9441311], [-85.6378627, 41.9441622], [-85.6382631, 41.9442724], [-85.6383346, 41.9442912], [-85.6384204, 41.9443137], [-85.6384724, 41.9443605], [-85.6385726, 41.9444506], [-85.638702, 41.9445739], [-85.6387179, 41.9446516], [-85.6387088, 41.9447985], [-85.6387656, 41.9449877], [-85.638777, 41.9451448], [-85.6387088, 41.9452631]], "type": "LineString"}, "id": "50", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972937, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": "3"}, "type": "Feature"}, {"bbox": [-85.6210601, 41.9299894, -85.6201674, 41.9307285], "geometry": {"coordinates": [[-85.6210601, 41.9299894], [-85.6207639, 41.9299941], [-85.6205472, 41.9300373], [-85.6203155, 41.9301522], [-85.6201674, 41.9307285]], "type": "LineString"}, "id": "51", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945138, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6229586, 41.9325257, -85.6225739, 41.9326701], "geometry": {"coordinates": [[-85.6229586, 41.9326701], [-85.6225756, 41.9326647], [-85.6225739, 41.9325257]], "type": "LineString"}, "id": "52", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377969, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6235091, 41.9325177, -85.6235042, 41.9326665], "geometry": {"coordinates": [[-85.6235091, 41.9326665], [-85.6235042, 41.9325177]], "type": "LineString"}, "id": "53", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377973, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6292693, 41.9407147, -85.6272027, 41.9415088], "geometry": {"coordinates": [[-85.6272027, 41.9407147], [-85.6272215, 41.9408943], [-85.6272456, 41.9409721], [-85.6273073, 41.9409941], [-85.6290239, 41.941443], [-85.6292693, 41.9415088]], "type": "LineString"}, "id": "54", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550664, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626409, 41.942263, -85.6264, 41.943215], "geometry": {"coordinates": [[-85.6264, 41.942263], [-85.626409, 41.943215]], "type": "LineString"}, "id": "55", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Battle Street", "oneway": null, "osm_id": 17965158, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627585, 41.9432795, -85.6275576, 41.943671], "geometry": {"coordinates": [[-85.627585, 41.943671], [-85.6275576, 41.9432795]], "type": "LineString"}, "id": "56", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771570030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6285815, 41.9470656, -85.6283312, 41.9471692], "geometry": {"coordinates": [[-85.6283312, 41.9470656], [-85.6285815, 41.9471692]], "type": "LineString"}, "id": "57", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "residential", "layer": "1", "name": "5th Avenue", "oneway": null, "osm_id": 134150826, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6250569, 41.960973, -85.6249416, 41.9609999], "geometry": {"coordinates": [[-85.6249416, 41.960973], [-85.6250025, 41.9609909], [-85.6250569, 41.9609999]], "type": "LineString"}, "id": "58", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550696, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6244072, 41.9607332, -85.6243998, 41.9607546], "geometry": {"coordinates": [[-85.6243998, 41.9607546], [-85.6244072, 41.9607332]], "type": "LineString"}, "id": "59", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550704, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6251442, 41.9605648, -85.6242808, 41.9609203], "geometry": {"coordinates": [[-85.6242808, 41.9606501], [-85.6244356, 41.960705], [-85.6249689, 41.9608957], [-85.6250384, 41.9609203], [-85.6251442, 41.9609031], [-85.6250945, 41.9608344], [-85.6250193, 41.9608095], [-85.6244939, 41.9606183], [-85.6243433, 41.9605648]], "type": "LineString"}, "id": "60", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Arizona Boulevard", "oneway": "yes", "osm_id": 652550706, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6256282, 41.9582934, -85.6229004, 41.9623861], "geometry": {"coordinates": [[-85.6229004, 41.9623861], [-85.6232263, 41.9619456], [-85.6232974, 41.9618496], [-85.6233859, 41.9617239], [-85.6234181, 41.9616661], [-85.6234771, 41.9616222], [-85.6236166, 41.9614228], [-85.6243113, 41.9604235], [-85.6244534, 41.9602341], [-85.6245232, 41.9601383], [-85.6247431, 41.9597793], [-85.6254056, 41.9587082], [-85.6253949, 41.9586564], [-85.6254209, 41.9586115], [-85.6254519, 41.9585656], [-85.6256282, 41.9582934]], "type": "LineString"}, "id": "61", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550717, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624908, 41.947416, -85.615238, 41.947468], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.616136, 41.9474632], [-85.6169481, 41.9474588], [-85.6174371, 41.9474562], [-85.6177206, 41.9474481], [-85.6183715, 41.9474512], [-85.6200878, 41.9474419], [-85.6213182, 41.9474354], [-85.6227578, 41.9474276], [-85.624908, 41.947416]], "type": "LineString"}, "id": "62", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Avenue", "oneway": null, "osm_id": 17964788, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621024, 41.948742, -85.620087, 41.9490683], "geometry": {"coordinates": [[-85.621024, 41.9490617], [-85.6206611, 41.9490683], [-85.6206384, 41.949058], [-85.6206277, 41.9490467], [-85.6206304, 41.9487723], [-85.6206146, 41.9487538], [-85.6205913, 41.948742], [-85.620087, 41.9487445]], "type": "LineString"}, "id": "63", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871183978, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6172298, 41.9490406, -85.6172207, 41.9501948], "geometry": {"coordinates": [[-85.6172207, 41.9490406], [-85.6172298, 41.9501948]], "type": "LineString"}, "id": "64", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837938, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167287, 41.9479543, -85.6152476, 41.9479596], "geometry": {"coordinates": [[-85.6167287, 41.9479543], [-85.6152476, 41.9479596]], "type": "LineString"}, "id": "65", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837941, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6161066, 41.9481245, -85.6161038, 41.9483147], "geometry": {"coordinates": [[-85.6161066, 41.9483147], [-85.6161038, 41.9481652], [-85.6161052, 41.9481245]], "type": "LineString"}, "id": "66", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839089, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187082, 41.9550001, -85.6181431, 41.9588211], "geometry": {"coordinates": [[-85.6186943, 41.9550001], [-85.618683, 41.9550364], [-85.6186436, 41.9552022], [-85.6185127, 41.9553393], [-85.6182155, 41.9555703], [-85.6182033, 41.955596], [-85.6181431, 41.9557227], [-85.6181613, 41.9560879], [-85.6182372, 41.9563771], [-85.6184059, 41.9566188], [-85.6185905, 41.9568211], [-85.6186116, 41.9568717], [-85.6186688, 41.9570086], [-85.6186766, 41.9577468], [-85.6186924, 41.9581453], [-85.6186996, 41.9585513], [-85.6187082, 41.9588211]], "type": "LineString"}, "id": "67", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": null, "osm_id": 17965913, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6205024, 41.9547019, -85.6204812, 41.9551383], "geometry": {"coordinates": [[-85.6204812, 41.9551383], [-85.6205024, 41.9547019]], "type": "LineString"}, "id": "68", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907936472, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180008, 41.954688, -85.6171273, 41.9547595], "geometry": {"coordinates": [[-85.6171273, 41.954688], [-85.6173144, 41.9547258], [-85.6175519, 41.9547459], [-85.6178164, 41.9547595], [-85.6180008, 41.9547387]], "type": "LineString"}, "id": "69", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": "yes", "osm_id": 652550660, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167543, 41.949349, -85.6165163, 41.9493536], "geometry": {"coordinates": [[-85.6167543, 41.949349], [-85.6165433, 41.9493531], [-85.6165163, 41.9493536]], "type": "LineString"}, "id": "70", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839094, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.61745, 41.9489136, -85.6167997, 41.9501974], "geometry": {"coordinates": [[-85.6174135, 41.9489136], [-85.6172207, 41.9490406], [-85.6169831, 41.949197], [-85.6168401, 41.9492912], [-85.6167997, 41.9493485], [-85.6168031, 41.9500797], [-85.6169836, 41.9501612], [-85.6170533, 41.9501927], [-85.6172298, 41.9501948], [-85.61745, 41.9501974]], "type": "LineString"}, "id": "71", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 203837937, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.617375, 41.947558, -85.6164937, 41.9525125], "geometry": {"coordinates": [[-85.617375, 41.947559], [-85.6173169, 41.947558], [-85.6173362, 41.948883], [-85.6168094, 41.9492729], [-85.6167791, 41.9492952], [-85.6167543, 41.949349], [-85.6167553, 41.9494886], [-85.6167567, 41.9497018], [-85.6167585, 41.9499707], [-85.6167607, 41.9501009], [-85.6167648, 41.9509125], [-85.6168832, 41.9510412], [-85.6170045, 41.9511417], [-85.6170624, 41.9512483], [-85.6170474, 41.9513604], [-85.6164937, 41.9519586], [-85.616497, 41.9520725], [-85.6165654, 41.9521645], [-85.6166631, 41.9522178], [-85.6167327, 41.9522554], [-85.6170432, 41.9524057], [-85.6172077, 41.9524958], [-85.6172383, 41.9525125]], "type": "LineString"}, "id": "72", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839091, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6189421, 41.9524248, -85.6184853, 41.9526483], "geometry": {"coordinates": [[-85.6184853, 41.9524248], [-85.6186764, 41.9525193], [-85.6189421, 41.9526483]], "type": "LineString"}, "id": "73", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837935, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.618327, 41.945477, -85.618312, 41.945607], "geometry": {"coordinates": [[-85.618312, 41.945477], [-85.618327, 41.945607]], "type": "LineString"}, "id": "74", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 607644643, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6181613, 41.9560851, -85.6177201, 41.9560879], "geometry": {"coordinates": [[-85.6181613, 41.9560879], [-85.6177201, 41.9560851]], "type": "LineString"}, "id": "75", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sturgeon River Road", "oneway": null, "osm_id": 17965854, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627441, 41.9661399, -85.625905, 41.9665028], "geometry": {"coordinates": [[-85.625905, 41.9665028], [-85.6259099, 41.9664085], [-85.6259343, 41.9663141], [-85.625971, 41.966259], [-85.626021, 41.966219], [-85.626102, 41.966175], [-85.6262126, 41.9661508], [-85.6263493, 41.9661399], [-85.6269595, 41.9661399], [-85.6271597, 41.9661471], [-85.6272768, 41.9661689], [-85.627368, 41.966194], [-85.627441, 41.966232]], "type": "LineString"}, "id": "76", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bridgette Drive", "oneway": null, "osm_id": 17967080, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.613438, 41.95164, -85.613396, 41.953677], "geometry": {"coordinates": [[-85.613396, 41.95164], [-85.61341, 41.951919], [-85.613438, 41.953308], [-85.613438, 41.953677]], "type": "LineString"}, "id": "77", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Angell Avenue", "oneway": null, "osm_id": 17966056, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6132507, 41.9555825, -85.612304, 41.9555825], "geometry": {"coordinates": [[-85.6132507, 41.9555825], [-85.612304, 41.9555825]], "type": "LineString"}, "id": "78", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354178391, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6281847, 41.9622134, -85.6279614, 41.9632573], "geometry": {"coordinates": [[-85.6280573, 41.9622134], [-85.6280591, 41.9623532], [-85.6281698, 41.9623522], [-85.6281847, 41.9632554], [-85.6279762, 41.9632573], [-85.6279614, 41.9623541], [-85.6280591, 41.9623532]], "type": "LineString"}, "id": "79", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312582, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6132045, 41.944283, -85.6131716, 41.9454837], "geometry": {"coordinates": [[-85.6132045, 41.9454837], [-85.6131903, 41.9449667], [-85.6131752, 41.9444162], [-85.6131716, 41.944283]], "type": "LineString"}, "id": "80", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528697, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6169427, 41.9476286, -85.6154315, 41.9477992], "geometry": {"coordinates": [[-85.6169427, 41.9476286], [-85.6154315, 41.9476388], [-85.6154338, 41.9477992]], "type": "LineString"}, "id": "81", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837943, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.618795, 41.942918, -85.611074, 41.9449708], "geometry": {"coordinates": [[-85.611074, 41.943389], [-85.611332, 41.943267], [-85.611635, 41.943218], [-85.612762, 41.943311], [-85.613027, 41.943327], [-85.615377, 41.942996], [-85.615701, 41.943007], [-85.61604, 41.943067], [-85.61626, 41.943083], [-85.616507, 41.943048], [-85.616702, 41.94299], [-85.617078, 41.942918], [-85.617366, 41.942973], [-85.617601, 41.943033], [-85.617799, 41.943027], [-85.618264, 41.942961], [-85.618508, 41.942972], [-85.618707, 41.943076], [-85.618779, 41.943269], [-85.618795, 41.943511], [-85.6187721, 41.9436799], [-85.618711, 41.94413], [-85.618704, 41.944189], [-85.618597, 41.944337], [-85.618485, 41.944528], [-85.618442, 41.944716], [-85.6183982, 41.9449708]], "type": "LineString"}, "id": "82", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962821, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.61958, 41.942622, -85.6195383, 41.9427558], "geometry": {"coordinates": [[-85.61958, 41.9427558], [-85.6195383, 41.942622]], "type": "LineString"}, "id": "83", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203983952, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186803, 41.9396555, -85.617363, 41.9401557], "geometry": {"coordinates": [[-85.6186784, 41.9401557], [-85.6186803, 41.9399274], [-85.6186765, 41.9398045], [-85.6186632, 41.9397494], [-85.6186366, 41.9397013], [-85.6185809, 41.9396633], [-85.61854, 41.9396555], [-85.6179148, 41.9396565], [-85.617363, 41.9396617]], "type": "LineString"}, "id": "84", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871038146, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297548, 41.9561476, -85.6297488, 41.9581373], "geometry": {"coordinates": [[-85.6297548, 41.9581373], [-85.6297541, 41.9580741], [-85.6297492, 41.9579231], [-85.6297491, 41.9576616], [-85.6297488, 41.9576394], [-85.6297512, 41.957429], [-85.6297512, 41.9561476]], "type": "LineString"}, "id": "85", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine Street", "oneway": null, "osm_id": 341048353, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6294819, 41.9561464, -85.6294697, 41.9563083], "geometry": {"coordinates": [[-85.6294819, 41.9563083], [-85.6294697, 41.9561464]], "type": "LineString"}, "id": "86", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "no", "osm_id": 341699256, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6175789, 41.9481204, -85.617391, 41.9481282], "geometry": {"coordinates": [[-85.617391, 41.9481204], [-85.6175789, 41.9481282]], "type": "LineString"}, "id": "87", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652967176, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6266528, 41.959905, -85.6250529, 41.9607536], "geometry": {"coordinates": [[-85.6250529, 41.9607536], [-85.6250677, 41.9607297], [-85.625136, 41.960619], [-85.6254217, 41.9601563], [-85.625478, 41.9600944], [-85.6255665, 41.9600246], [-85.625639, 41.9599788], [-85.6257677, 41.9599329], [-85.6259072, 41.9599109], [-85.6266528, 41.959905]], "type": "LineString"}, "id": "88", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550694, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6133889, 41.9556159, -85.6133381, 41.9561999], "geometry": {"coordinates": [[-85.6133841, 41.9561999], [-85.6133889, 41.9557579], [-85.6133435, 41.9557373], [-85.6133381, 41.9556159]], "type": "LineString"}, "id": "89", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179341, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6122609, 41.9556079, -85.6108661, 41.956374], "geometry": {"coordinates": [[-85.6108661, 41.9556079], [-85.610876, 41.956374], [-85.6117356, 41.9563671], [-85.6117449, 41.9560143], [-85.6122609, 41.9560122]], "type": "LineString"}, "id": "90", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179348, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6116226, 41.9551819, -85.6108661, 41.9556079], "geometry": {"coordinates": [[-85.6116226, 41.9551819], [-85.6115984, 41.955594], [-85.6108661, 41.9556079]], "type": "LineString"}, "id": "91", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179346, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297512, 41.955878, -85.627267, 41.95615], "geometry": {"coordinates": [[-85.627267, 41.955878], [-85.627358, 41.9559081], [-85.6275063, 41.9559571], [-85.627751, 41.956038], [-85.6278017, 41.9560522], [-85.627908, 41.956082], [-85.6281089, 41.9561288], [-85.6282, 41.95615], [-85.6294697, 41.9561464], [-85.6297512, 41.9561476]], "type": "LineString"}, "id": "92", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Tulip Lane", "oneway": null, "osm_id": 17964513, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626336, 41.957291, -85.624495, 41.9586443], "geometry": {"coordinates": [[-85.6255197, 41.9586443], [-85.6254209, 41.9586115], [-85.62529, 41.958568], [-85.624962, 41.958453], [-85.624832, 41.958399], [-85.624707, 41.958325], [-85.624636, 41.958251], [-85.624578, 41.95818], [-85.624533, 41.958099], [-85.624507, 41.957985], [-85.624495, 41.957807], [-85.624514, 41.957663], [-85.624577, 41.957593], [-85.6246192, 41.9575723], [-85.624685, 41.95754], [-85.624802, 41.957523], [-85.624996, 41.957524], [-85.625409, 41.957515], [-85.625634, 41.957496], [-85.625832, 41.957453], [-85.626044, 41.957394], [-85.626336, 41.957291]], "type": "LineString"}, "id": "93", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Azaleamum Drive", "oneway": null, "osm_id": 17967809, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6269786, 41.9599637, -85.6250384, 41.9609203], "geometry": {"coordinates": [[-85.6269786, 41.9599637], [-85.6259162, 41.9599711], [-85.6258015, 41.9599861], [-85.6257101, 41.960013], [-85.6256315, 41.9600541], [-85.6255614, 41.9601078], [-85.6255104, 41.9601615], [-85.625453, 41.9602373], [-85.6251449, 41.9607414], [-85.6250945, 41.9608344], [-85.6250384, 41.9609203]], "type": "LineString"}, "id": "94", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Oklahoma Drive", "oneway": null, "osm_id": 203968017, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6331805, 41.96479, -85.633167, 41.9655042], "geometry": {"coordinates": [[-85.633167, 41.96479], [-85.6331805, 41.9655042]], "type": "LineString"}, "id": "95", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Garfield Court", "oneway": "no", "osm_id": 203968023, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6278678, 41.9558737, -85.6278017, 41.9560522], "geometry": {"coordinates": [[-85.6278017, 41.9560522], [-85.6278206, 41.9560013], [-85.6278678, 41.9558737]], "type": "LineString"}, "id": "96", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699282, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6241502, 41.9491686, -85.6239149, 41.9491713], "geometry": {"coordinates": [[-85.6241502, 41.9491713], [-85.6239149, 41.9491686]], "type": "LineString"}, "id": "97", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964879, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6169481, 41.9474588, -85.615238, 41.9481265], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.6152444, 41.947799], [-85.6152476, 41.9479596], [-85.6152495, 41.9480592], [-85.6153187, 41.9481265], [-85.6156701, 41.9481256], [-85.6161052, 41.9481245], [-85.6163767, 41.9481239], [-85.6164437, 41.9481237], [-85.6167287, 41.9479543], [-85.6168553, 41.947879], [-85.6169163, 41.9478007], [-85.6169385, 41.9477722], [-85.6169427, 41.9476286], [-85.6169481, 41.9474588]], "type": "LineString"}, "id": "98", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 203837940, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333496, 41.9571608, -85.6264337, 41.9574481], "geometry": {"coordinates": [[-85.6264337, 41.9571608], [-85.6265551, 41.9572071], [-85.6266935, 41.9572599], [-85.6269223, 41.9573376], [-85.6271577, 41.9574119], [-85.6272777, 41.957435], [-85.6273887, 41.9574433], [-85.6275317, 41.9574481], [-85.6276806, 41.9574468], [-85.6282582, 41.9574418], [-85.6283101, 41.9574414], [-85.6287871, 41.9574373], [-85.6288456, 41.957435], [-85.6297512, 41.957429], [-85.6308074, 41.9574199], [-85.6309162, 41.957419], [-85.6321178, 41.9574105], [-85.6333496, 41.9573981]], "type": "LineString"}, "id": "99", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Flower Street", "oneway": null, "osm_id": 17965351, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272955, 41.9410331, -85.6272074, 41.9411396], "geometry": {"coordinates": [[-85.6272955, 41.9410331], [-85.6272074, 41.9411396]], "type": "LineString"}, "id": "100", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 378599360, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6335028, 41.9647886, -85.6304211, 41.9649323], "geometry": {"coordinates": [[-85.6335028, 41.9647886], [-85.633167, 41.96479], [-85.6320427, 41.9647947], [-85.6308178, 41.9647993], [-85.6307011, 41.9648138], [-85.6306195, 41.964834], [-85.6305222, 41.9648774], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "101", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "no", "osm_id": 203968018, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350256, 41.9625681, -85.6348134, 41.9625913], "geometry": {"coordinates": [[-85.6348134, 41.9625913], [-85.6349935, 41.962588], [-85.6350122, 41.962582], [-85.6350256, 41.9625681]], "type": "LineString"}, "id": "102", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056604109, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6275317, 41.9574481, -85.6275275, 41.95795], "geometry": {"coordinates": [[-85.6275317, 41.9574481], [-85.6275275, 41.95795]], "type": "LineString"}, "id": "103", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 226406322, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6299544, 41.9576614, -85.6297491, 41.9576616], "geometry": {"coordinates": [[-85.6299544, 41.9576614], [-85.6297491, 41.9576616]], "type": "LineString"}, "id": "104", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341313252, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271905, 41.9565339, -85.6268359, 41.9566474], "geometry": {"coordinates": [[-85.6271905, 41.9566474], [-85.6269458, 41.9565691], [-85.6268359, 41.9565339]], "type": "LineString"}, "id": "105", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699285, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634729, 41.954667, -85.6244542, 41.9547066], "geometry": {"coordinates": [[-85.634729, 41.954667], [-85.633311, 41.954679], [-85.6320952, 41.954685], [-85.630883, 41.954692], [-85.6302775, 41.954691], [-85.62965, 41.95469], [-85.6294656, 41.9546903], [-85.629067, 41.954691], [-85.627936, 41.954693], [-85.626832, 41.954677], [-85.6244542, 41.9547066]], "type": "LineString"}, "id": "106", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 17966553, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191318, 41.9520425, -85.6182348, 41.9529815], "geometry": {"coordinates": [[-85.6191318, 41.9520425], [-85.6186764, 41.9525193], [-85.6182348, 41.9529815]], "type": "LineString"}, "id": "107", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837934, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186766, 41.9577468, -85.6159142, 41.9577578], "geometry": {"coordinates": [[-85.6186766, 41.9577468], [-85.6159142, 41.9577578]], "type": "LineString"}, "id": "108", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine River Road", "oneway": null, "osm_id": 17965838, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187137, 41.9482898, -85.6180593, 41.9498085], "geometry": {"coordinates": [[-85.6181154, 41.9482898], [-85.6180593, 41.9495102], [-85.6182838, 41.949731], [-85.6187137, 41.9498085]], "type": "LineString"}, "id": "109", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528701, "osm_type": "ways_line", "smoothness": null, "surface": "dirt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6240991, 41.954708, -85.6238228, 41.9548826], "geometry": {"coordinates": [[-85.6240991, 41.954708], [-85.6239944, 41.9548095], [-85.6238228, 41.9548826]], "type": "LineString"}, "id": "110", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 758296776, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6183715, 41.9474512, -85.6183662, 41.9475582], "geometry": {"coordinates": [[-85.6183662, 41.9475582], [-85.6183715, 41.9474512]], "type": "LineString"}, "id": "111", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652967174, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635767, 41.9429212, -85.6357592, 41.9431751], "geometry": {"coordinates": [[-85.6357592, 41.9429212], [-85.635767, 41.9431751]], "type": "LineString"}, "id": "112", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998362, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6352778, 41.9484197, -85.6346501, 41.9484289], "geometry": {"coordinates": [[-85.6352778, 41.9484197], [-85.6346501, 41.9484289]], "type": "LineString"}, "id": "113", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 217907767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167585, 41.9499707, -85.6165924, 41.9499707], "geometry": {"coordinates": [[-85.6167585, 41.9499707], [-85.6165924, 41.9499707]], "type": "LineString"}, "id": "114", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839096, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355997, 41.944797, -85.635094, 41.9451026], "geometry": {"coordinates": [[-85.635094, 41.9451026], [-85.6352537, 41.9450015], [-85.6353716, 41.9449322], [-85.6354612, 41.9448791], [-85.6355997, 41.944797]], "type": "LineString"}, "id": "115", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203049595, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6464906, 41.9373978, -85.6458952, 41.9379664], "geometry": {"coordinates": [[-85.6458952, 41.9379365], [-85.6461265, 41.9379524], [-85.6463297, 41.9379664], [-85.6464531, 41.9379285], [-85.6464906, 41.9377769], [-85.6464772, 41.9375295], [-85.6464397, 41.9374566], [-85.6462572, 41.9374104], [-85.6461754, 41.9374038], [-85.6459917, 41.9373978]], "type": "LineString"}, "id": "116", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 330877816, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6542126, 41.9306296, -85.6542075, 41.9315739], "geometry": {"coordinates": [[-85.6542126, 41.9306296], [-85.6542075, 41.9315739]], "type": "LineString"}, "id": "117", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612682, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186762, 41.9362357, -85.6179654, 41.938187], "geometry": {"coordinates": [[-85.6186762, 41.9362357], [-85.6186561, 41.936695], [-85.6186404, 41.9371542], [-85.6186325, 41.9375275], [-85.618622, 41.9377034], [-85.6179654, 41.938187]], "type": "LineString"}, "id": "118", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "13th Street", "oneway": null, "osm_id": 17966447, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271414, 41.9402001, -85.6271315, 41.9407274], "geometry": {"coordinates": [[-85.6271315, 41.9402001], [-85.6271414, 41.9407274]], "type": "LineString"}, "id": "119", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "residential", "layer": "1", "name": "6th Street", "oneway": null, "osm_id": 134150842, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263426, 41.9377328, -85.6257465, 41.9377376], "geometry": {"coordinates": [[-85.6257465, 41.9377376], [-85.6263426, 41.9377328]], "type": "LineString"}, "id": "120", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907704548, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9361846, -85.617371, 41.936243], "geometry": {"coordinates": [[-85.617371, 41.936243], [-85.6174693, 41.9362424], [-85.6175894, 41.9362418], [-85.6186762, 41.9362357], [-85.6191081, 41.9362259], [-85.619587, 41.9362271], [-85.6200011, 41.9362282], [-85.621122, 41.9362218], [-85.6222867, 41.9362155], [-85.6235312, 41.9362084], [-85.6248039, 41.9362012], [-85.6257389, 41.936196], [-85.6264109, 41.9361922], [-85.627089, 41.9361884], [-85.6277618, 41.9361846]], "type": "LineString"}, "id": "121", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Madison Street", "oneway": null, "osm_id": 17965427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159968, 41.9352693, -85.6153556, 41.9352693], "geometry": {"coordinates": [[-85.6159968, 41.9352693], [-85.6153556, 41.9352693]], "type": "LineString"}, "id": "122", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "River Bend Drive", "oneway": null, "osm_id": 17967324, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6405128, 41.9282016, -85.639404, 41.9282066], "geometry": {"coordinates": [[-85.6405128, 41.9282016], [-85.639404, 41.9282066]], "type": "LineString"}, "id": "123", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143997, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6423202, 41.9361655, -85.642213, 41.940043], "geometry": {"coordinates": [[-85.6423202, 41.9361655], [-85.6423154, 41.9363503], [-85.6423094, 41.936583], [-85.642299, 41.936988], [-85.6422621, 41.9381489], [-85.6422464, 41.9389558], [-85.642244, 41.939081], [-85.6422153, 41.9399715], [-85.642213, 41.940043]], "type": "LineString"}, "id": "124", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 766158515, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458952, 41.9378674, -85.644244, 41.938142], "geometry": {"coordinates": [[-85.644244, 41.938142], [-85.6444249, 41.9379193], [-85.6446475, 41.9379036], [-85.6451598, 41.9378674], [-85.6457767, 41.9378914], [-85.6458952, 41.9379365]], "type": "LineString"}, "id": "125", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 340638700, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478782, 41.9398349, -85.6469804, 41.9408501], "geometry": {"coordinates": [[-85.6469804, 41.9398569], [-85.6470252, 41.9407193], [-85.6470776, 41.9408028], [-85.6472048, 41.9408501], [-85.6477248, 41.9408446], [-85.6478333, 41.9407973], [-85.6478782, 41.940711], [-85.6478296, 41.9398349]], "type": "LineString"}, "id": "126", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Millard Court", "oneway": null, "osm_id": 203968034, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6524176, 41.9344603, -85.6524108, 41.9347009], "geometry": {"coordinates": [[-85.6524108, 41.9347009], [-85.6524176, 41.9344603]], "type": "LineString"}, "id": "127", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612672, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517841, 41.9325437, -85.6517487, 41.9422097], "geometry": {"coordinates": [[-85.6517795, 41.9422097], [-85.6517774, 41.9420151], [-85.6517722, 41.9417643], [-85.6517752, 41.9415928], [-85.6517797, 41.9413329], [-85.651778, 41.9411764], [-85.6517762, 41.9409304], [-85.6517811, 41.9406301], [-85.651777, 41.9404534], [-85.6517841, 41.9397701], [-85.6517721, 41.9392259], [-85.6517717, 41.9389745], [-85.6517686, 41.9384994], [-85.6517676, 41.9380523], [-85.6517637, 41.9378819], [-85.6517642, 41.9375686], [-85.651765, 41.9369457], [-85.6517574, 41.9359236], [-85.6517626, 41.9352599], [-85.6517615, 41.9346114], [-85.6517612, 41.9344482], [-85.6517609, 41.9342811], [-85.6517596, 41.9334814], [-85.6517487, 41.9325437]], "type": "LineString"}, "id": "128", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 945352906, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6438794, 41.9426991, -85.6438688, 41.9429932], "geometry": {"coordinates": [[-85.6438688, 41.9426991], [-85.6438794, 41.9429932]], "type": "LineString"}, "id": "129", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056572471, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517797, 41.9408326, -85.6514188, 41.9413329], "geometry": {"coordinates": [[-85.6517797, 41.9413329], [-85.6517306, 41.9411122], [-85.6517228, 41.9410381], [-85.6517174, 41.9409381], [-85.651711, 41.9409025], [-85.6517016, 41.9408751], [-85.6516842, 41.9408596], [-85.6516543, 41.9408415], [-85.6516166, 41.9408337], [-85.6515834, 41.9408326], [-85.6515549, 41.9408348], [-85.6515198, 41.9408416], [-85.6514817, 41.9408516], [-85.6514534, 41.9408674], [-85.6514188, 41.9408949]], "type": "LineString"}, "id": "130", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892836, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638243, 41.9426234, -85.6370277, 41.943841], "geometry": {"coordinates": [[-85.638243, 41.943674], [-85.638228, 41.943747], [-85.638163, 41.943797], [-85.638089, 41.943832], [-85.637969, 41.943841], [-85.637841, 41.943833], [-85.6376655, 41.9438017], [-85.637342, 41.943734], [-85.637218, 41.943703], [-85.637151, 41.943663], [-85.637118, 41.943615], [-85.6370905, 41.9435511], [-85.6370755, 41.9434705], [-85.6370724, 41.943407], [-85.6370544, 41.9431149], [-85.6370518, 41.9430567], [-85.6370323, 41.9427058], [-85.6370277, 41.9426234]], "type": "LineString"}, "id": "131", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Constantine Street", "oneway": "no", "osm_id": 17967326, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567941, 41.9300926, -85.6559428, 41.9300949], "geometry": {"coordinates": [[-85.6567941, 41.9300949], [-85.6559428, 41.9300926]], "type": "LineString"}, "id": "132", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237749, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433169, 41.9412872, -85.643301, 41.9417268], "geometry": {"coordinates": [[-85.6433169, 41.9417268], [-85.643301, 41.9412872]], "type": "LineString"}, "id": "133", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643104, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339673, 41.9433877, -85.6336351, 41.9435757], "geometry": {"coordinates": [[-85.6339673, 41.9433877], [-85.6338922, 41.9434328], [-85.6337366, 41.9435193], [-85.6336351, 41.9435757]], "type": "LineString"}, "id": "134", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150811, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558097, 41.9411616, -85.6543424, 41.9411617], "geometry": {"coordinates": [[-85.6558097, 41.9411616], [-85.6543424, 41.9411617]], "type": "LineString"}, "id": "135", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771089, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443608, 41.940795, -85.644272, 41.9425645], "geometry": {"coordinates": [[-85.6443608, 41.9425645], [-85.6443561, 41.9424865], [-85.6443453, 41.9423074], [-85.6443102, 41.9417237], [-85.6442868, 41.9413334], [-85.644283, 41.941271], [-85.644272, 41.940795]], "type": "LineString"}, "id": "136", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Erie Street", "oneway": null, "osm_id": 17965125, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6249267, 41.9505432, -85.6243551, 41.9509868], "geometry": {"coordinates": [[-85.6249267, 41.9505432], [-85.6243676, 41.9505576], [-85.6243551, 41.9506233], [-85.6243726, 41.9509868]], "type": "LineString"}, "id": "137", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946763075, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6275063, 41.9559571, -85.6274042, 41.9561105], "geometry": {"coordinates": [[-85.6274042, 41.9561105], [-85.6275063, 41.9559571]], "type": "LineString"}, "id": "138", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699281, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620103, 41.951, -85.6180394, 41.9531194], "geometry": {"coordinates": [[-85.620103, 41.951], [-85.6197538, 41.9510741], [-85.6192256, 41.9515959], [-85.6189367, 41.9519432], [-85.6184853, 41.9524248], [-85.6180394, 41.9528855], [-85.6182348, 41.9529815], [-85.6185158, 41.9531194]], "type": "LineString"}, "id": "139", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17964049, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450946, 41.9485732, -85.6444506, 41.949233], "geometry": {"coordinates": [[-85.6450946, 41.949233], [-85.6450935, 41.9491544], [-85.6450922, 41.9490611], [-85.6450908, 41.9488957], [-85.6450873, 41.9487232], [-85.6450852, 41.9485747], [-85.6444506, 41.9485732]], "type": "LineString"}, "id": "140", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 218004773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632278, 41.9471692, -85.6285815, 41.948613], "geometry": {"coordinates": [[-85.6285815, 41.9471692], [-85.6293702, 41.9474668], [-85.631422, 41.948294], [-85.6321713, 41.9485733], [-85.632278, 41.948613]], "type": "LineString"}, "id": "141", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Avenue", "oneway": null, "osm_id": 134150772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634632, 41.9469911, -85.6344017, 41.9473218], "geometry": {"coordinates": [[-85.634632, 41.9469911], [-85.6344017, 41.9469942], [-85.6344097, 41.9473218]], "type": "LineString"}, "id": "142", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946882962, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6362782, 41.9566253, -85.6356687, 41.9566334], "geometry": {"coordinates": [[-85.6362782, 41.9566334], [-85.6356687, 41.9566253]], "type": "LineString"}, "id": "143", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946745378, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6353649, 41.9553478, -85.6347273, 41.9554046], "geometry": {"coordinates": [[-85.6347273, 41.9553617], [-85.6349396, 41.9553511], [-85.6350681, 41.9553478], [-85.635181, 41.955361], [-85.6353649, 41.9554046]], "type": "LineString"}, "id": "144", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871154571, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6440766, 41.9543462, -85.6436023, 41.9544262], "geometry": {"coordinates": [[-85.6436023, 41.9544262], [-85.6440766, 41.9543462]], "type": "LineString"}, "id": "145", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "West Hoffman Street", "oneway": null, "osm_id": 134151784, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.648503, 41.9537114, -85.6484254, 41.9540245], "geometry": {"coordinates": [[-85.648503, 41.9540245], [-85.6484295, 41.9539683], [-85.6484254, 41.9537114]], "type": "LineString"}, "id": "146", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871047089, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272043, 41.9241622, -85.6253496, 41.9250793], "geometry": {"coordinates": [[-85.6253496, 41.9250793], [-85.6258095, 41.9250343], [-85.6260456, 41.9250123], [-85.6262172, 41.9249624], [-85.626346, 41.9248926], [-85.6265659, 41.9247688], [-85.6268878, 41.9246411], [-85.6269177, 41.9246236], [-85.6271667, 41.9244775], [-85.6272043, 41.9243657], [-85.627148, 41.924248], [-85.6270112, 41.9241622], [-85.6268744, 41.9241662], [-85.6267805, 41.92426], [-85.6267322, 41.9243637], [-85.6268261, 41.9244535], [-85.6269177, 41.9246236]], "type": "LineString"}, "id": "147", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755147125, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6589146, 41.9256758, -85.6588917, 41.9257217], "geometry": {"coordinates": [[-85.6588917, 41.9256758], [-85.6589146, 41.9257217]], "type": "LineString"}, "id": "148", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 895396430, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614204, 41.953677, -85.611615, 41.953704], "geometry": {"coordinates": [[-85.611615, 41.953704], [-85.61179, 41.953695], [-85.612232, 41.953685], [-85.613438, 41.953677], [-85.614204, 41.953696]], "type": "LineString"}, "id": "149", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Clausen Avenue", "oneway": null, "osm_id": 17965302, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523494, 41.9404103, -85.6519947, 41.9404184], "geometry": {"coordinates": [[-85.6519947, 41.9404103], [-85.6523494, 41.9404184]], "type": "LineString"}, "id": "150", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942245, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6264499, 41.958631, -85.6262616, 41.9590055], "geometry": {"coordinates": [[-85.6264499, 41.958631], [-85.6262616, 41.9590055]], "type": "LineString"}, "id": "151", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550715, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6340946, 41.9432036, -85.6339256, 41.9432984], "geometry": {"coordinates": [[-85.6339256, 41.9432984], [-85.6340946, 41.9432036]], "type": "LineString"}, "id": "152", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550693, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350643, 41.9401122, -85.6350634, 41.9402383], "geometry": {"coordinates": [[-85.6350643, 41.9402383], [-85.6350634, 41.9401122]], "type": "LineString"}, "id": "153", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947116511, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630997, 41.928387, -85.630972, 41.929206], "geometry": {"coordinates": [[-85.630997, 41.929206], [-85.630972, 41.928565], [-85.630973, 41.928387]], "type": "LineString"}, "id": "154", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963798, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504725, 41.9442815, -85.6503814, 41.9442885], "geometry": {"coordinates": [[-85.6503814, 41.9442885], [-85.6504725, 41.9442815]], "type": "LineString"}, "id": "155", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942190, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6589862, 41.9257217, -85.6589146, 41.9262204], "geometry": {"coordinates": [[-85.6589146, 41.9257217], [-85.6589681, 41.9258133], [-85.6589752, 41.9258268], [-85.6589801, 41.9258398], [-85.6589839, 41.9258675], [-85.6589862, 41.9258898], [-85.6589767, 41.9262204]], "type": "LineString"}, "id": "156", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 897575550, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6495916, 41.9491631, -85.6461249, 41.9547911], "geometry": {"coordinates": [[-85.6495916, 41.9491631], [-85.6491216, 41.9499121], [-85.6488505, 41.950344], [-85.6482388, 41.9513181], [-85.6478104, 41.9520374], [-85.6473473, 41.9528632], [-85.6465551, 41.9540853], [-85.6463637, 41.9544069], [-85.6461249, 41.9547911]], "type": "LineString"}, "id": "157", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 1024183108, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642213, 41.940043, -85.637255, 41.940104], "geometry": {"coordinates": [[-85.637255, 41.940104], [-85.6381941, 41.9400924], [-85.6386828, 41.9400864], [-85.6393311, 41.9400784], [-85.6393662, 41.940078], [-85.6399182, 41.9400712], [-85.6406114, 41.9400627], [-85.6410939, 41.9400568], [-85.642213, 41.940043]], "type": "LineString"}, "id": "158", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 379694427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453569, 41.9426981, -85.6450282, 41.9429786], "geometry": {"coordinates": [[-85.6450282, 41.9427207], [-85.6451409, 41.9427241], [-85.6452424, 41.9426981], [-85.6453195, 41.9427033], [-85.6453569, 41.942778], [-85.645351, 41.9429195], [-85.6453277, 41.9429673], [-85.6452156, 41.9429786], [-85.645121, 41.9429638], [-85.6450288, 41.9429056]], "type": "LineString"}, "id": "159", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 486785504, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503067, 41.9423584, -85.649336, 41.9423703], "geometry": {"coordinates": [[-85.649336, 41.9423703], [-85.6503067, 41.9423584]], "type": "LineString"}, "id": "160", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 498942177, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489736, 41.9426971, -85.6489614, 41.9433211], "geometry": {"coordinates": [[-85.6489614, 41.9426971], [-85.6489736, 41.9433211]], "type": "LineString"}, "id": "161", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942217, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497573, 41.9306035, -85.6497496, 41.9314225], "geometry": {"coordinates": [[-85.6497573, 41.9314225], [-85.6497496, 41.9306035]], "type": "LineString"}, "id": "162", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612680, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512363, 41.9323981, -85.6425208, 41.9325885], "geometry": {"coordinates": [[-85.6512363, 41.9324058], [-85.6508263, 41.9324659], [-85.6506741, 41.9324738], [-85.6506126, 41.9324723], [-85.6505575, 41.932473], [-85.6505029, 41.9324673], [-85.6494536, 41.9324915], [-85.6493423, 41.9324936], [-85.6492668, 41.9324986], [-85.6490953, 41.9325115], [-85.6490266, 41.932513], [-85.6489247, 41.9325179], [-85.6488921, 41.9325036], [-85.6485222, 41.9325036], [-85.6484306, 41.9325001], [-85.6483785, 41.9325015], [-85.6476752, 41.9325108], [-85.6476005, 41.9325159], [-85.6475276, 41.9325157], [-85.6462732, 41.9325393], [-85.6462349, 41.9325357], [-85.6461703, 41.9325357], [-85.6461123, 41.9325371], [-85.6459839, 41.9325407], [-85.6459398, 41.9325414], [-85.6458842, 41.9325414], [-85.6445388, 41.9325628], [-85.6444658, 41.9325635], [-85.6443223, 41.9325671], [-85.6442657, 41.9325678], [-85.6441651, 41.9325656], [-85.6441249, 41.9325585], [-85.6425208, 41.9325885], [-85.6425237, 41.9323981]], "type": "LineString"}, "id": "163", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1193144006, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507243, 41.9414918, -85.650396, 41.9414988], "geometry": {"coordinates": [[-85.650396, 41.9414988], [-85.6507243, 41.9414918]], "type": "LineString"}, "id": "164", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942145, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511293, 41.9423566, -85.6510144, 41.9423597], "geometry": {"coordinates": [[-85.6510144, 41.9423566], [-85.6510714, 41.9423578], [-85.6511293, 41.9423597]], "type": "LineString"}, "id": "165", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550676, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497553, 41.9277635, -85.6491362, 41.9279542], "geometry": {"coordinates": [[-85.6497553, 41.9277635], [-85.6494994, 41.9279114], [-85.6493569, 41.9279456], [-85.6491362, 41.9279542]], "type": "LineString"}, "id": "166", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870704308, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6549102, 41.9321903, -85.6549072, 41.9325049], "geometry": {"coordinates": [[-85.6549072, 41.9321903], [-85.6549102, 41.9325049]], "type": "LineString"}, "id": "167", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056615093, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523757, 41.9334857, -85.6523693, 41.9344603], "geometry": {"coordinates": [[-85.6523757, 41.9344603], [-85.6523749, 41.9343329], [-85.6523746, 41.9342943], [-85.6523735, 41.9341224], [-85.6523723, 41.9339563], [-85.6523712, 41.9337889], [-85.65237, 41.9336106], [-85.6523693, 41.9334857]], "type": "LineString"}, "id": "168", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843139, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6595323, 41.9245483, -85.6584684, 41.9255834], "geometry": {"coordinates": [[-85.6593087, 41.9255834], [-85.6592178, 41.9254244], [-85.6591197, 41.9252373], [-85.6590281, 41.9250624], [-85.6588066, 41.9246396], [-85.6591487, 41.9245483], [-85.6591942, 41.9245483], [-85.6592574, 41.9245704], [-85.6593168, 41.9246146], [-85.6595264, 41.9250442], [-85.6595323, 41.9250824], [-85.6595205, 41.9251133], [-85.6591197, 41.9252373], [-85.6584723, 41.9254385], [-85.6584684, 41.9252414], [-85.6590281, 41.9250624]], "type": "LineString"}, "id": "169", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758298043, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6422464, 41.9381566, -85.6418226, 41.9389558], "geometry": {"coordinates": [[-85.6418226, 41.9381566], [-85.6418243, 41.9383384], [-85.641853, 41.9383966], [-85.6418434, 41.9389486], [-85.6419807, 41.938951], [-85.6422464, 41.9389558]], "type": "LineString"}, "id": "170", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 221397310, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342037, 41.9418842, -85.6339701, 41.9424487], "geometry": {"coordinates": [[-85.6342037, 41.9418842], [-85.6341325, 41.9418919], [-85.6341323, 41.9419538], [-85.6341314, 41.9422028], [-85.6341163, 41.9422334], [-85.6340472, 41.9423271], [-85.6339701, 41.9424487]], "type": "LineString"}, "id": "171", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974060, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348223, 41.9631983, -85.6342467, 41.9635134], "geometry": {"coordinates": [[-85.6343133, 41.9635134], [-85.6343136, 41.9634544], [-85.6342696, 41.9633908], [-85.6342492, 41.9633162], [-85.6342467, 41.9632665], [-85.6343074, 41.9632264], [-85.6344109, 41.9632089], [-85.6348223, 41.9631983]], "type": "LineString"}, "id": "172", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312578, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346375, 41.9622888, -85.6346338, 41.962436], "geometry": {"coordinates": [[-85.6346375, 41.962436], [-85.6346338, 41.9622888]], "type": "LineString"}, "id": "173", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768418340, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6246192, 41.9571962, -85.6241202, 41.9575723], "geometry": {"coordinates": [[-85.6246192, 41.9575723], [-85.6243995, 41.9573309], [-85.6242463, 41.9572007], [-85.6241202, 41.9571962]], "type": "LineString"}, "id": "174", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768406756, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186996, 41.9585513, -85.6159249, 41.9585901], "geometry": {"coordinates": [[-85.6186996, 41.9585513], [-85.6177383, 41.9585647], [-85.6170514, 41.9585743], [-85.6159249, 41.9585901]], "type": "LineString"}, "id": "175", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Raisin River Road", "oneway": null, "osm_id": 17965476, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6204461, 41.9401485, -85.6204416, 41.9408882], "geometry": {"coordinates": [[-85.6204461, 41.9401485], [-85.6204416, 41.9408882]], "type": "LineString"}, "id": "176", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Whipple Street", "oneway": null, "osm_id": 17964961, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629676, 41.9524346, -85.6295992, 41.95469], "geometry": {"coordinates": [[-85.6295992, 41.9524346], [-85.6296517, 41.952563], [-85.629676, 41.9537314], [-85.6296522, 41.9546072], [-85.62965, 41.95469]], "type": "LineString"}, "id": "177", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine Street", "oneway": null, "osm_id": 17964654, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296616, 41.9621913, -85.6294344, 41.9632352], "geometry": {"coordinates": [[-85.6295207, 41.9621913], [-85.6295271, 41.9623311], [-85.6296439, 41.9623298], [-85.6296616, 41.9632329], [-85.6294521, 41.9632352], [-85.6294344, 41.9623321], [-85.6295271, 41.9623311]], "type": "LineString"}, "id": "178", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312581, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6279941, 41.9653049, -85.6274595, 41.9662647], "geometry": {"coordinates": [[-85.6274595, 41.9662647], [-85.6275515, 41.9662163], [-85.6276078, 41.9661794], [-85.62764, 41.9661375], [-85.6276722, 41.9660906], [-85.627687, 41.9660507], [-85.6276883, 41.9660009], [-85.6276843, 41.9658513], [-85.6276668, 41.9654973], [-85.6276695, 41.9654435], [-85.6277031, 41.9653866], [-85.6277567, 41.9653547], [-85.6278452, 41.9653268], [-85.627927, 41.9653118], [-85.6279941, 41.9653049]], "type": "LineString"}, "id": "179", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764044767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6360261, 41.9584547, -85.6350666, 41.9584779], "geometry": {"coordinates": [[-85.6360261, 41.9584779], [-85.635601, 41.9584676], [-85.6350666, 41.9584547]], "type": "LineString"}, "id": "180", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454967, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6232816, 41.9326681, -85.6229619, 41.9328244], "geometry": {"coordinates": [[-85.6229619, 41.9328244], [-85.6232816, 41.9328219], [-85.6232759, 41.9326681]], "type": "LineString"}, "id": "181", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1230945139, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6229586, 41.9325237, -85.6229554, 41.9326701], "geometry": {"coordinates": [[-85.6229554, 41.9325237], [-85.6229586, 41.9326701]], "type": "LineString"}, "id": "182", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6177355, 41.9512895, -85.6165719, 41.9522788], "geometry": {"coordinates": [[-85.6173027, 41.9512895], [-85.6171481, 41.9513579], [-85.6165981, 41.9519199], [-85.6165719, 41.9519922], [-85.6165832, 41.9520757], [-85.6166355, 41.9521453], [-85.616755, 41.952231], [-85.6169161, 41.9522788], [-85.6170882, 41.9522538], [-85.6177355, 41.9515717]], "type": "LineString"}, "id": "183", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837928, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6082831, 41.9437055, -85.6082658, 41.945652], "geometry": {"coordinates": [[-85.6082658, 41.9437055], [-85.6082831, 41.945652]], "type": "LineString"}, "id": "184", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Winterwood", "oneway": null, "osm_id": 203968005, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348298, 41.964783, -85.6335028, 41.9647886], "geometry": {"coordinates": [[-85.6348298, 41.964783], [-85.6335028, 41.9647886]], "type": "LineString"}, "id": "185", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "yes", "osm_id": 1033167062, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321281, 41.9578611, -85.6318944, 41.9578696], "geometry": {"coordinates": [[-85.6321281, 41.9578611], [-85.6318944, 41.9578696]], "type": "LineString"}, "id": "186", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 776693874, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6498444, 41.9451743, -85.6493424, 41.9451822], "geometry": {"coordinates": [[-85.6498444, 41.9451822], [-85.6493424, 41.9451743]], "type": "LineString"}, "id": "187", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942205, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508359, 41.9495956, -85.6507671, 41.9496774], "geometry": {"coordinates": [[-85.6507671, 41.9495956], [-85.6508359, 41.9496774]], "type": "LineString"}, "id": "188", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 848056398, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6378651, 41.9493523, -85.6374012, 41.9497099], "geometry": {"coordinates": [[-85.6374067, 41.9497099], [-85.6378651, 41.949708], [-85.6377389, 41.949358], [-85.6374012, 41.9493523]], "type": "LineString"}, "id": "189", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 217907775, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370518, 41.9430509, -85.636798, 41.9430567], "geometry": {"coordinates": [[-85.6370518, 41.9430567], [-85.636798, 41.9430509]], "type": "LineString"}, "id": "190", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998355, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458708, 41.941633, -85.645555, 41.9425543], "geometry": {"coordinates": [[-85.6458708, 41.9425516], [-85.6458694, 41.9424834], [-85.6458674, 41.942381], [-85.6458631, 41.9418314], [-85.6458619, 41.9416747], [-85.6458519, 41.9416539], [-85.6458319, 41.9416405], [-85.645805, 41.9416353], [-85.645622, 41.941633], [-85.645588, 41.9416405], [-85.6455671, 41.9416516], [-85.6455561, 41.9416702], [-85.6455559, 41.9418346], [-85.6455552, 41.9423817], [-85.6455551, 41.9424794], [-85.645555, 41.9425543]], "type": "LineString"}, "id": "191", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 331307734, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469955, 41.944059, -85.6469334, 41.9449804], "geometry": {"coordinates": [[-85.6469955, 41.9449804], [-85.6469357, 41.9448568], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "192", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Heather Lane", "oneway": null, "osm_id": 203968029, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.656803, 41.9311823, -85.6559545, 41.9311844], "geometry": {"coordinates": [[-85.656803, 41.9311844], [-85.6559545, 41.9311823]], "type": "LineString"}, "id": "193", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237743, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6168094, 41.9491108, -85.6164888, 41.9492729], "geometry": {"coordinates": [[-85.6168094, 41.9492729], [-85.6165295, 41.9491108], [-85.6164888, 41.9491114]], "type": "LineString"}, "id": "194", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839093, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6598544, 41.9473467, -85.6595706, 41.9473567], "geometry": {"coordinates": [[-85.6595706, 41.9473567], [-85.6598544, 41.9473467]], "type": "LineString"}, "id": "195", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942233, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644244, 41.9379774, -85.6350366, 41.93819], "geometry": {"coordinates": [[-85.6350366, 41.9379774], [-85.6351743, 41.938083], [-85.6352756, 41.9381382], [-85.6353695, 41.9381676], [-85.6354659, 41.9381805], [-85.63576, 41.9381878], [-85.6363309, 41.9381805], [-85.6374603, 41.9381749], [-85.638682, 41.93819], [-85.639983, 41.938174], [-85.641112, 41.938169], [-85.6418226, 41.9381566], [-85.6422621, 41.9381489], [-85.644244, 41.938142]], "type": "LineString"}, "id": "196", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "King Street", "oneway": null, "osm_id": 17967502, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506161, 41.9330613, -85.6501258, 41.9336148], "geometry": {"coordinates": [[-85.6506161, 41.9336133], [-85.650208, 41.9336148], [-85.6501505, 41.9335949], [-85.6501361, 41.9335643], [-85.6501293, 41.9332378], [-85.6501258, 41.9330658], [-85.6503691, 41.9330613]], "type": "LineString"}, "id": "197", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034072, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348317, 41.9439105, -85.6346384, 41.944007], "geometry": {"coordinates": [[-85.6348317, 41.9439105], [-85.6346384, 41.944007]], "type": "LineString"}, "id": "198", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "path", "layer": "1", "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974055, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6125898, 41.9467701, -85.6123069, 41.9471954], "geometry": {"coordinates": [[-85.6125898, 41.9471954], [-85.6123981, 41.9471875], [-85.6123681, 41.9471796], [-85.612338, 41.9471598], [-85.6123265, 41.9471282], [-85.6123069, 41.9467701]], "type": "LineString"}, "id": "199", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 779904648, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6241542, 41.9488966, -85.6241492, 41.9492375], "geometry": {"coordinates": [[-85.6241542, 41.9488966], [-85.6241502, 41.9491713], [-85.6241492, 41.9492375]], "type": "LineString"}, "id": "200", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964878, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6326122, 41.9413792, -85.6318285, 41.9422564], "geometry": {"coordinates": [[-85.632446, 41.9413792], [-85.6325112, 41.941416], [-85.6325449, 41.9416345], [-85.6326122, 41.94164], [-85.6325954, 41.9421966], [-85.6325655, 41.9422411], [-85.632515, 41.9422564], [-85.6324495, 41.94223], [-85.6324009, 41.9421743], [-85.6323915, 41.9421145], [-85.6320287, 41.9418585], [-85.6318285, 41.9416387], [-85.6318779, 41.9415447]], "type": "LineString"}, "id": "201", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203985745, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.612232, 41.951641, -85.612211, 41.953685], "geometry": {"coordinates": [[-85.612216, 41.951641], [-85.612211, 41.951977], [-85.612232, 41.953685]], "type": "LineString"}, "id": "202", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Krum Avenue", "oneway": null, "osm_id": 17967957, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.63928, 41.929221, -85.636746, 41.929222], "geometry": {"coordinates": [[-85.636746, 41.929221], [-85.6376148, 41.929221], [-85.638032, 41.929221], [-85.63921, 41.929222], [-85.63928, 41.929221]], "type": "LineString"}, "id": "203", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wolf Road", "oneway": null, "osm_id": 17965610, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6421517, 41.9298217, -85.6412241, 41.9305681], "geometry": {"coordinates": [[-85.6412241, 41.9298217], [-85.6414753, 41.9299527], [-85.64163, 41.9301856], [-85.6416899, 41.9305281], [-85.6418728, 41.9305681], [-85.6421517, 41.9305242]], "type": "LineString"}, "id": "204", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331310866, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543234, 41.9325151, -85.6529294, 41.935014], "geometry": {"coordinates": [[-85.6529294, 41.9325248], [-85.6529325, 41.9329222], [-85.6529338, 41.9330895], [-85.6529371, 41.9334994], [-85.6529405, 41.9339328], [-85.6529447, 41.9344603], [-85.6529491, 41.935014], [-85.6543234, 41.9350092], [-85.6543189, 41.9330546], [-85.6543143, 41.9328458], [-85.654307, 41.9325151]], "type": "LineString"}, "id": "205", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203048267, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521155, 41.9440948, -85.6517035, 41.9441034], "geometry": {"coordinates": [[-85.6517035, 41.9440948], [-85.6518883, 41.9440996], [-85.6521155, 41.9441034]], "type": "LineString"}, "id": "206", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612660, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650921, 41.9425034, -85.6506286, 41.943073], "geometry": {"coordinates": [[-85.6506547, 41.9425048], [-85.6506539, 41.9426241], [-85.6506527, 41.9426836], [-85.6506516, 41.9427807], [-85.6506286, 41.943073], [-85.650921, 41.9430694], [-85.6509202, 41.9426194], [-85.65092, 41.9425034]], "type": "LineString"}, "id": "207", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942222, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341175, 41.9435986, -85.6340871, 41.9436147], "geometry": {"coordinates": [[-85.6341175, 41.9435986], [-85.6340871, 41.9436147]], "type": "LineString"}, "id": "208", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847371534, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348174, 41.9422218, -85.6344819, 41.94267], "geometry": {"coordinates": [[-85.6348174, 41.94267], [-85.6346557, 41.9426157], [-85.6346294, 41.9425989], [-85.6346084, 41.9425744], [-85.6344938, 41.9423809], [-85.6344819, 41.9423345], [-85.6344856, 41.9422997], [-85.6345102, 41.9422723], [-85.6345775, 41.9422218]], "type": "LineString"}, "id": "209", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972941, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350584, 41.9419421, -85.6349136, 41.9421466], "geometry": {"coordinates": [[-85.6350584, 41.9421466], [-85.6349423, 41.9421448], [-85.6349436, 41.9420652], [-85.6349136, 41.9419963], [-85.6349814, 41.9419789], [-85.6350135, 41.9419421]], "type": "LineString"}, "id": "210", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974076, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517803, 41.9427717, -85.6462904, 41.9548499], "geometry": {"coordinates": [[-85.6462904, 41.9548499], [-85.6467698, 41.9540915], [-85.6472319, 41.9533785], [-85.6489023, 41.9508564], [-85.6495879, 41.9497797], [-85.649738, 41.9495287], [-85.6499869, 41.9491342], [-85.6501897, 41.9487708], [-85.6504282, 41.9483036], [-85.6505912, 41.9479747], [-85.6507119, 41.9476984], [-85.6509008, 41.9472676], [-85.6510257, 41.9469171], [-85.6511087, 41.9466834], [-85.6512009, 41.9464174], [-85.6513171, 41.9460518], [-85.6514022, 41.9457545], [-85.6514744, 41.9454477], [-85.6515103, 41.9452695], [-85.6515409, 41.9451272], [-85.6516271, 41.944641], [-85.6516381, 41.9445535], [-85.6517035, 41.9440948], [-85.6517163, 41.943931], [-85.6517378, 41.9436851], [-85.6517625, 41.9433881], [-85.6517699, 41.9432088], [-85.6517775, 41.9429217], [-85.6517803, 41.9427717]], "type": "LineString"}, "id": "211", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 134151788, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512216, 41.9494325, -85.6511242, 41.9494369], "geometry": {"coordinates": [[-85.6512216, 41.9494369], [-85.6511242, 41.9494325]], "type": "LineString"}, "id": "212", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636431, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": "building_passage", "width": null}, "type": "Feature"}, {"bbox": [-85.619255, 41.9567483, -85.6187082, 41.9588211], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6192003, 41.9568176], [-85.6192126, 41.9569001], [-85.6192527, 41.9584292], [-85.619255, 41.9586845], [-85.6192387, 41.9587209], [-85.6191182, 41.9587553], [-85.6188487, 41.9588182], [-85.6187082, 41.9588211]], "type": "LineString"}, "id": "213", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": "yes", "osm_id": 571308436, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6249648, 41.9415903, -85.6238505, 41.9546684], "geometry": {"coordinates": [[-85.6248672, 41.9415903], [-85.624873, 41.942022], [-85.624884, 41.943508], [-85.624882, 41.94382], [-85.6248856, 41.9447242], [-85.624893, 41.945616], [-85.624912, 41.946524], [-85.624908, 41.947416], [-85.624924, 41.9483338], [-85.624937, 41.949237], [-85.6249648, 41.9502122], [-85.6249511, 41.9504121], [-85.6249267, 41.9505432], [-85.6249127, 41.9506181], [-85.624813, 41.950983], [-85.6246225, 41.951591], [-85.624366, 41.9524258], [-85.6241697, 41.9530647], [-85.623908, 41.9539165], [-85.6238903, 41.9540956], [-85.6238829, 41.9542315], [-85.6238886, 41.9543068], [-85.6239033, 41.9544982], [-85.6238505, 41.9546684]], "type": "LineString"}, "id": "214", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wood Street", "oneway": null, "osm_id": 17967092, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624721, 41.92927, -85.624558, 41.929278], "geometry": {"coordinates": [[-85.624721, 41.929278], [-85.624558, 41.92927]], "type": "LineString"}, "id": "215", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963982, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6308937, 41.9381973, -85.6297382, 41.938203], "geometry": {"coordinates": [[-85.6297382, 41.938203], [-85.6299537, 41.938202], [-85.6301692, 41.938201], [-85.6304039, 41.9381998], [-85.6306532, 41.9381985], [-85.6308937, 41.9381973]], "type": "LineString"}, "id": "216", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 904909917, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6260879, 41.9587648, -85.6255727, 41.9589139], "geometry": {"coordinates": [[-85.6255727, 41.9587648], [-85.6257408, 41.9588135], [-85.6260879, 41.9589139]], "type": "LineString"}, "id": "217", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 341699295, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633613, 41.9672979, -85.6326626, 41.9673067], "geometry": {"coordinates": [[-85.633613, 41.9672979], [-85.6326626, 41.9673067]], "type": "LineString"}, "id": "218", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766819277, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477139, 41.9349544, -85.6469648, 41.9398356], "geometry": {"coordinates": [[-85.6477024, 41.9398356], [-85.6477033, 41.939772], [-85.6477109, 41.9391655], [-85.6477139, 41.9389871], [-85.6477095, 41.9388622], [-85.6476602, 41.9386034], [-85.6476398, 41.938534], [-85.6476036, 41.9384423], [-85.6475325, 41.9382996], [-85.6474011, 41.9380961], [-85.6473179, 41.9379604], [-85.6472334, 41.9378237], [-85.6471505, 41.9376626], [-85.6470886, 41.9373589], [-85.6470671, 41.9372371], [-85.6470591, 41.9371653], [-85.6470551, 41.9370246], [-85.6470591, 41.936893], [-85.6470524, 41.9363932], [-85.6470406, 41.9363248], [-85.6470229, 41.9362734], [-85.6469947, 41.9362256], [-85.64698, 41.9361677], [-85.646972, 41.9354016], [-85.6469728, 41.9351882], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "219", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": null, "osm_id": 17965446, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394802, 41.94261, -85.639454, 41.9451962], "geometry": {"coordinates": [[-85.6394548, 41.94261], [-85.6394547, 41.9426899], [-85.6394544, 41.9431246], [-85.639454, 41.943871], [-85.6394802, 41.9451962]], "type": "LineString"}, "id": "220", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Hooker Avenue", "oneway": null, "osm_id": 17965792, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6138494, 41.9552536, -85.6124092, 41.9554852], "geometry": {"coordinates": [[-85.6138494, 41.9554852], [-85.6132214, 41.9554852], [-85.6124605, 41.955476], [-85.612418, 41.9554457], [-85.6124092, 41.9553141], [-85.6124286, 41.9552694], [-85.6124622, 41.9552536], [-85.613117, 41.9552562], [-85.6131719, 41.9552746], [-85.6132002, 41.955301], [-85.6132214, 41.9554852]], "type": "LineString"}, "id": "221", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755215559, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350642, 41.9608331, -85.635064, 41.9610674], "geometry": {"coordinates": [[-85.635064, 41.9610674], [-85.6350642, 41.9608331]], "type": "LineString"}, "id": "222", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 258377784, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348181, 41.9606811, -85.6321716, 41.9606914], "geometry": {"coordinates": [[-85.6321716, 41.9606811], [-85.6348181, 41.9606914]], "type": "LineString"}, "id": "223", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Barnard Avenue", "oneway": null, "osm_id": 382604729, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6328068, 41.9547563, -85.6326181, 41.9549894], "geometry": {"coordinates": [[-85.6328068, 41.9547563], [-85.6327761, 41.9548552], [-85.6326181, 41.9549894]], "type": "LineString"}, "id": "224", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416369, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6195966, 41.9542769, -85.6191623, 41.954612], "geometry": {"coordinates": [[-85.6195966, 41.9544848], [-85.6193374, 41.9542947], [-85.6193185, 41.9542825], [-85.6192883, 41.9542769], [-85.6192593, 41.9542825], [-85.6192177, 41.9543078], [-85.6191635, 41.9543621], [-85.6191623, 41.9543846], [-85.6191711, 41.954409], [-85.6191963, 41.9544333], [-85.6195234, 41.954612]], "type": "LineString"}, "id": "225", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871399919, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6195234, 41.954612, -85.6194958, 41.9547372], "geometry": {"coordinates": [[-85.6194958, 41.9547372], [-85.6195234, 41.954612]], "type": "LineString"}, "id": "226", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871399918, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567926, 41.9299115, -85.6559408, 41.9299115], "geometry": {"coordinates": [[-85.6567926, 41.9299115], [-85.6559408, 41.9299115]], "type": "LineString"}, "id": "227", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237750, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483619, 41.9484516, -85.6483553, 41.9491709], "geometry": {"coordinates": [[-85.6483619, 41.9491709], [-85.6483553, 41.9484516]], "type": "LineString"}, "id": "228", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225611127, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643575, 41.9498105, -85.6435645, 41.9503826], "geometry": {"coordinates": [[-85.643575, 41.9503826], [-85.6435645, 41.9498105]], "type": "LineString"}, "id": "229", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225610191, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6446475, 41.9373658, -85.6446284, 41.9379036], "geometry": {"coordinates": [[-85.6446475, 41.9379036], [-85.6446284, 41.9373658]], "type": "LineString"}, "id": "230", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 823692586, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543143, 41.9328431, -85.6529338, 41.9330942], "geometry": {"coordinates": [[-85.6543143, 41.9328458], [-85.653333, 41.9328431], [-85.6531701, 41.9328499], [-85.6531262, 41.932903], [-85.6531134, 41.9330146], [-85.6530717, 41.9330758], [-85.6530048, 41.9330942], [-85.6529338, 41.9330895]], "type": "LineString"}, "id": "231", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906545416, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6408071, 41.9427086, -85.6407845, 41.9438654], "geometry": {"coordinates": [[-85.6407845, 41.9427086], [-85.6407923, 41.9431062], [-85.6407978, 41.9433911], [-85.6408013, 41.9435702], [-85.6408071, 41.9438654]], "type": "LineString"}, "id": "232", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1043615834, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510705, 41.9425026, -85.6489578, 41.9425201], "geometry": {"coordinates": [[-85.6489578, 41.9425201], [-85.6490408, 41.9425185], [-85.6497768, 41.9425122], [-85.6500601, 41.942509], [-85.6504477, 41.9425064], [-85.6506547, 41.9425048], [-85.65092, 41.9425034], [-85.6510705, 41.9425026]], "type": "LineString"}, "id": "233", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 614445260, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510513, 41.9394413, -85.650437, 41.9394457], "geometry": {"coordinates": [[-85.650437, 41.9394413], [-85.6510513, 41.9394457]], "type": "LineString"}, "id": "234", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906427567, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501414, 41.9262951, -85.6500738, 41.92697], "geometry": {"coordinates": [[-85.6500738, 41.92697], [-85.6501414, 41.9268304], [-85.6501107, 41.9262951]], "type": "LineString"}, "id": "235", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946831010, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6293702, 41.9474668, -85.628469, 41.948674], "geometry": {"coordinates": [[-85.6293702, 41.9474668], [-85.628469, 41.948674]], "type": "LineString"}, "id": "236", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Willow Drive", "oneway": null, "osm_id": 17964531, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346302, 41.9465918, -85.6336698, 41.9468449], "geometry": {"coordinates": [[-85.6346302, 41.9468381], [-85.6343028, 41.9468449], [-85.6342006, 41.9468297], [-85.6336698, 41.9465918]], "type": "LineString"}, "id": "237", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346811, 41.9431023, -85.6341901, 41.9432732], "geometry": {"coordinates": [[-85.6346811, 41.9431023], [-85.6342265, 41.9432605], [-85.6341901, 41.9432732]], "type": "LineString"}, "id": "238", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150789, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6325485, 41.9445625, -85.6319663, 41.9448112], "geometry": {"coordinates": [[-85.6325485, 41.9445625], [-85.6324806, 41.9445954], [-85.6323425, 41.9446243], [-85.6321829, 41.9446901], [-85.6319663, 41.9448112]], "type": "LineString"}, "id": "239", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 847427778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6349955, 41.9395658, -85.6345653, 41.9401078], "geometry": {"coordinates": [[-85.6345653, 41.9401078], [-85.6345688, 41.9399451], [-85.6345787, 41.9398695], [-85.6346102, 41.939795], [-85.6346627, 41.9397272], [-85.6347429, 41.9396563], [-85.6348281, 41.9396096], [-85.6349075, 41.9395845], [-85.6349955, 41.9395658]], "type": "LineString"}, "id": "240", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331304868, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6181912, 41.9389736, -85.6173674, 41.9391092], "geometry": {"coordinates": [[-85.6173674, 41.9391092], [-85.6177251, 41.9391044], [-85.6177853, 41.9391036], [-85.6178282, 41.9390907], [-85.617912, 41.9389887], [-85.617948, 41.9389736], [-85.6181912, 41.9390188]], "type": "LineString"}, "id": "241", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871038145, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624813, 41.950983, -85.620103, 41.9510005], "geometry": {"coordinates": [[-85.620103, 41.951], [-85.6227785, 41.9510005], [-85.6243726, 41.9509868], [-85.624813, 41.950983]], "type": "LineString"}, "id": "242", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "10th Avenue", "oneway": null, "osm_id": 17967535, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6416273, 41.9279814, -85.6416273, 41.9284523], "geometry": {"coordinates": [[-85.6416273, 41.9284523], [-85.6416273, 41.9279814]], "type": "LineString"}, "id": "243", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143989, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493826, 41.934331, -85.6491733, 41.934331], "geometry": {"coordinates": [[-85.6493826, 41.934331], [-85.6491733, 41.934331]], "type": "LineString"}, "id": "244", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034085, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507855, 41.9442885, -85.6503674, 41.9448861], "geometry": {"coordinates": [[-85.6503814, 41.9442885], [-85.6503781, 41.9443878], [-85.6503674, 41.9447124], [-85.6503931, 41.9448218], [-85.6505683, 41.9448601], [-85.6507411, 41.9448861], [-85.6507855, 41.9448253]], "type": "LineString"}, "id": "245", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942179, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62567, 41.92926, -85.624721, 41.929295], "geometry": {"coordinates": [[-85.624721, 41.929278], [-85.625429, 41.92926], [-85.625601, 41.929264], [-85.62567, 41.929295]], "type": "LineString"}, "id": "246", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Union Street", "oneway": null, "osm_id": 17966561, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641583, 41.9521543, -85.63974, 41.95465], "geometry": {"coordinates": [[-85.63974, 41.9521543], [-85.6399012, 41.9523817], [-85.64079, 41.953638], [-85.641583, 41.95465]], "type": "LineString"}, "id": "247", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Rock River Avenue", "oneway": null, "osm_id": 17967763, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6359942, 41.9450097, -85.6358939, 41.9450748], "geometry": {"coordinates": [[-85.6359942, 41.9450097], [-85.6359908, 41.9450119], [-85.6358939, 41.9450748]], "type": "LineString"}, "id": "248", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370304, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394912, 41.9441622, -85.627892, 41.9546342], "geometry": {"coordinates": [[-85.6394912, 41.9545764], [-85.6394537, 41.9545764], [-85.6394163, 41.9545764], [-85.639388, 41.9545774], [-85.6387348, 41.9545784], [-85.6386912, 41.9545803], [-85.6386329, 41.9545774], [-85.637556, 41.9545744], [-85.6374593, 41.9545754], [-85.6374098, 41.9545764], [-85.6363048, 41.9545833], [-85.6362358, 41.9545823], [-85.6361975, 41.9545823], [-85.6348805, 41.9545883], [-85.6347285, 41.9545903], [-85.6346029, 41.9545963], [-85.6333812, 41.9545953], [-85.6333107, 41.9545973], [-85.6332511, 41.9545963], [-85.6321688, 41.9546003], [-85.6320941, 41.9545984], [-85.6320468, 41.9545993], [-85.6309283, 41.9545993], [-85.6308815, 41.9545993], [-85.630821, 41.9546023], [-85.6302799, 41.9546038], [-85.6297481, 41.9546053], [-85.6296522, 41.9546072], [-85.6296006, 41.9546083], [-85.6290664, 41.9546079], [-85.6282072, 41.9546073], [-85.6281482, 41.9546202], [-85.6279787, 41.9546342], [-85.627892, 41.9546332], [-85.6280288, 41.9544198], [-85.6299439, 41.9517049], [-85.6308948, 41.9503614], [-85.6315666, 41.9494169], [-85.6321366, 41.948614], [-85.6321713, 41.9485733], [-85.6321943, 41.9485421], [-85.6335005, 41.9466899], [-85.633866, 41.9461846], [-85.6338843, 41.9461529], [-85.6339377, 41.9460724], [-85.6342589, 41.9456295], [-85.6342315, 41.9456026], [-85.6338143, 41.9451936], [-85.6336836, 41.9450794], [-85.6335414, 41.9449453], [-85.633475, 41.9448816], [-85.6329601, 41.9443877], [-85.6327737, 41.944194], [-85.6327575, 41.9441772], [-85.632724, 41.9441622]], "type": "LineString"}, "id": "249", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550714, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6252071, 41.9607317, -85.6250824, 41.9607526], "geometry": {"coordinates": [[-85.6252071, 41.9607526], [-85.6251449, 41.9607414], [-85.6250824, 41.9607317]], "type": "LineString"}, "id": "250", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550688, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6452831, 41.9479913, -85.6452709, 41.94815], "geometry": {"coordinates": [[-85.6452709, 41.94815], [-85.6452831, 41.9479913]], "type": "LineString"}, "id": "251", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942806, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517457, 41.9269767, -85.6516484, 41.9317494], "geometry": {"coordinates": [[-85.6517428, 41.9317494], [-85.6517418, 41.9313059], [-85.651745, 41.9308554], [-85.6517457, 41.9304361], [-85.6516956, 41.9292263], [-85.6516631, 41.9283589], [-85.6516484, 41.9269767]], "type": "LineString"}, "id": "252", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 929692958, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567985, 41.9306335, -85.6559486, 41.9306358], "geometry": {"coordinates": [[-85.6567985, 41.9306358], [-85.6559486, 41.9306335]], "type": "LineString"}, "id": "253", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237746, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469648, 41.9326207, -85.6468995, 41.9349544], "geometry": {"coordinates": [[-85.6469521, 41.9326207], [-85.6469147, 41.9326882], [-85.6469022, 41.9327108], [-85.6468995, 41.9333094], [-85.6469128, 41.9344104], [-85.6469152, 41.9345841], [-85.646913, 41.9347757], [-85.6469116, 41.9348658], [-85.6469156, 41.9349027], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "254", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": "yes", "osm_id": 904632319, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6286375, 41.943668, -85.6274028, 41.9446764], "geometry": {"coordinates": [[-85.6274028, 41.9436719], [-85.6274816, 41.9436715], [-85.627585, 41.943671], [-85.6282382, 41.943668], [-85.6282671, 41.9441099], [-85.6286299, 41.9442976], [-85.6286342, 41.9445114], [-85.628636, 41.9445992], [-85.6286375, 41.9446764]], "type": "LineString"}, "id": "255", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243998, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6136071, 41.9547745, -85.6056682, 41.963752], "geometry": {"coordinates": [[-85.610238, 41.9547745], [-85.6102539, 41.9558449], [-85.6102652, 41.9566041], [-85.610325, 41.9568823], [-85.6105644, 41.9571383], [-85.6130784, 41.9590689], [-85.6133328, 41.9593805], [-85.6135946, 41.959948], [-85.6136071, 41.9629372], [-85.6134392, 41.9633182], [-85.6130151, 41.9636073], [-85.6122729, 41.9637125], [-85.6056682, 41.963752]], "type": "LineString"}, "id": "256", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hov Aire Drive", "oneway": null, "osm_id": 203839666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6173635, 41.9377414, -85.616246, 41.9377496], "geometry": {"coordinates": [[-85.6173635, 41.9377414], [-85.616246, 41.9377496]], "type": "LineString"}, "id": "257", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Cedar Glen Drive", "oneway": null, "osm_id": 17967204, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624924, 41.948333, -85.62156, 41.9483338], "geometry": {"coordinates": [[-85.62156, 41.948333], [-85.622761, 41.9483333], [-85.624924, 41.9483338]], "type": "LineString"}, "id": "258", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Avenue", "oneway": null, "osm_id": 17965699, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497338, 41.943476, -85.6488023, 41.9434902], "geometry": {"coordinates": [[-85.6497338, 41.943476], [-85.6488023, 41.9434902]], "type": "LineString"}, "id": "259", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942216, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6329898, 41.94485, -85.6322786, 41.9454997], "geometry": {"coordinates": [[-85.6322786, 41.94485], [-85.6329898, 41.9454997]], "type": "LineString"}, "id": "260", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970905, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186719, 41.943588, -85.6121427, 41.9449724], "geometry": {"coordinates": [[-85.6121427, 41.9449724], [-85.6131903, 41.9449667], [-85.6133531, 41.9449658], [-85.6142597, 41.9449623], [-85.6153721, 41.9449581], [-85.6159374, 41.9449559], [-85.6168377, 41.9449408], [-85.6168924, 41.9444998], [-85.6169953, 41.944241], [-85.6172088, 41.9440469], [-85.6176438, 41.943788], [-85.6180076, 41.9436292], [-85.6183397, 41.943588], [-85.6186719, 41.9436586]], "type": "LineString"}, "id": "261", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 607644653, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6471004, 41.9511252, -85.6463931, 41.9516022], "geometry": {"coordinates": [[-85.6463931, 41.9514276], [-85.6468699, 41.9516022], [-85.6469238, 41.9515886], [-85.6469962, 41.951533], [-85.6471004, 41.9513725], [-85.6470893, 41.9513278], [-85.6467767, 41.9511956], [-85.6465834, 41.9511252]], "type": "LineString"}, "id": "262", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907935490, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344386, 41.9456229, -85.623333, 41.961987], "geometry": {"coordinates": [[-85.6344386, 41.9456229], [-85.6343309, 41.9456978], [-85.633951, 41.946174], [-85.6336698, 41.9465918], [-85.633183, 41.947315], [-85.632278, 41.948613], [-85.6320229, 41.9490123], [-85.6313855, 41.9499125], [-85.6312754, 41.9500612], [-85.630835, 41.950656], [-85.6304857, 41.9511945], [-85.6295992, 41.9524346], [-85.628639, 41.953725], [-85.6279787, 41.9546342], [-85.627936, 41.954693], [-85.627582, 41.95532], [-85.627267, 41.955878], [-85.6268359, 41.9565339], [-85.6264337, 41.9571608], [-85.626336, 41.957291], [-85.6262922, 41.9573635], [-85.6256754, 41.9583862], [-85.6255197, 41.9586443], [-85.6252483, 41.9590965], [-85.624619, 41.960145], [-85.624494, 41.960338], [-85.6243433, 41.9605648], [-85.6242808, 41.9606501], [-85.6233606, 41.961948], [-85.623333, 41.961987]], "type": "LineString"}, "id": "263", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Portage Avenue", "oneway": null, "osm_id": 17966984, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6589146, 41.9257217, -85.6528255, 41.9273054], "geometry": {"coordinates": [[-85.6528255, 41.9270544], [-85.6532775, 41.9271085], [-85.6534176, 41.9271318], [-85.6535343, 41.9271577], [-85.6537209, 41.9272058], [-85.6539271, 41.9272575], [-85.6540503, 41.9272909], [-85.6541646, 41.9273041], [-85.6542955, 41.9273054], [-85.65441, 41.927297], [-85.6545537, 41.9272735], [-85.6546717, 41.9272424], [-85.6547921, 41.9271987], [-85.6549257, 41.927152], [-85.6553677, 41.9269356], [-85.6556482, 41.9267997], [-85.6558515, 41.926712], [-85.6560451, 41.9266312], [-85.6562865, 41.9265401], [-85.6566301, 41.9264212], [-85.6571798, 41.9262547], [-85.657626, 41.9261204], [-85.6576992, 41.9260938], [-85.6583584, 41.9258983], [-85.6585229, 41.9258437], [-85.6589146, 41.9257217]], "type": "LineString"}, "id": "264", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 124014670, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6421162, 41.9428614, -85.641878, 41.9428637], "geometry": {"coordinates": [[-85.641878, 41.9428637], [-85.6419877, 41.9428626], [-85.6421162, 41.9428614]], "type": "LineString"}, "id": "265", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615987, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651587, 41.950958, -85.650247, 41.95096], "geometry": {"coordinates": [[-85.650247, 41.95096], [-85.651587, 41.950958]], "type": "LineString"}, "id": "266", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Church Drive", "oneway": null, "osm_id": 17964869, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6461816, 41.9444993, -85.6452947, 41.9450847], "geometry": {"coordinates": [[-85.6452965, 41.9450847], [-85.6452983, 41.9449179], [-85.6453, 41.944756], [-85.6461709, 41.9447586], [-85.6461816, 41.9445045], [-85.6453358, 41.9444995], [-85.6452947, 41.9444993], [-85.6453, 41.944756]], "type": "LineString"}, "id": "267", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942236, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651459, 41.9268846, -85.6500738, 41.92697], "geometry": {"coordinates": [[-85.651459, 41.9269659], [-85.6513417, 41.9269141], [-85.6512501, 41.9268925], [-85.6511755, 41.9268846], [-85.650251, 41.9269033], [-85.6501888, 41.9269168], [-85.6500738, 41.92697]], "type": "LineString"}, "id": "268", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": "yes", "osm_id": 17965581, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529325, 41.9329222, -85.6521731, 41.9334857], "geometry": {"coordinates": [[-85.6529325, 41.9329222], [-85.6526431, 41.9329358], [-85.6523006, 41.9329539], [-85.6521843, 41.933034], [-85.6521731, 41.9331818], [-85.6522405, 41.9332863], [-85.652368, 41.9334104], [-85.6523693, 41.9334857]], "type": "LineString"}, "id": "269", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871007142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514197, 41.9294376, -85.649311, 41.9306031], "geometry": {"coordinates": [[-85.649311, 41.9306031], [-85.649332, 41.9296083], [-85.6494076, 41.9295291], [-85.6495369, 41.9294753], [-85.6507517, 41.9294498], [-85.6514197, 41.9294376]], "type": "LineString"}, "id": "270", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843137, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643195, 41.949261, -85.64169, 41.949936], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.643009, 41.949264], [-85.642598, 41.94929], [-85.6423752, 41.9493211], [-85.6422362, 41.9493485], [-85.6421609, 41.9493696], [-85.6420956, 41.9494033], [-85.6420337, 41.9494406], [-85.6419751, 41.9494929], [-85.64169, 41.949936]], "type": "LineString"}, "id": "271", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346535, 41.9430323, -85.6340946, 41.9432036], "geometry": {"coordinates": [[-85.6340946, 41.9432036], [-85.634137, 41.9431881], [-85.6342046, 41.9431617], [-85.6343588, 41.9431178], [-85.6346535, 41.9430323]], "type": "LineString"}, "id": "272", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550702, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6439376, 41.955147, -85.6418333, 41.9558803], "geometry": {"coordinates": [[-85.6439376, 41.9558803], [-85.6418333, 41.955147]], "type": "LineString"}, "id": "273", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776877, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620007, 41.9371699, -85.6191369, 41.937206], "geometry": {"coordinates": [[-85.6191369, 41.9371699], [-85.620007, 41.937206]], "type": "LineString"}, "id": "274", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Cypress Court", "oneway": null, "osm_id": 17965495, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543292, 41.9318356, -85.6539313, 41.9322932], "geometry": {"coordinates": [[-85.6543292, 41.9322932], [-85.6539344, 41.9322903], [-85.6539313, 41.9318356]], "type": "LineString"}, "id": "275", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843134, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.618622, 41.9376819, -85.6178785, 41.9377034], "geometry": {"coordinates": [[-85.6178785, 41.9376819], [-85.618622, 41.9377034]], "type": "LineString"}, "id": "276", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Beechwood Court", "oneway": null, "osm_id": 17965371, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345233, 41.9434933, -85.6344828, 41.9435125], "geometry": {"coordinates": [[-85.6344828, 41.9435125], [-85.6345233, 41.9434933]], "type": "LineString"}, "id": "277", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370292, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6485696, 41.936709, -85.6477548, 41.9372687], "geometry": {"coordinates": [[-85.6477548, 41.9371412], [-85.6479084, 41.936709], [-85.6481146, 41.9367519], [-85.648338, 41.9367985], [-85.6485696, 41.9368448], [-85.6484315, 41.9372687]], "type": "LineString"}, "id": "278", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243990, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529371, 41.9334814, -85.6517596, 41.9334994], "geometry": {"coordinates": [[-85.6517596, 41.9334814], [-85.651934, 41.9334826], [-85.6523693, 41.9334857], [-85.6529371, 41.9334994]], "type": "LineString"}, "id": "279", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203048269, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504347, 41.9319904, -85.6500548, 41.9319914], "geometry": {"coordinates": [[-85.6504347, 41.9319904], [-85.6500548, 41.9319914]], "type": "LineString"}, "id": "280", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116838, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6459085, 41.9308849, -85.6443539, 41.9323946], "geometry": {"coordinates": [[-85.6444563, 41.9323946], [-85.6444016, 41.9323484], [-85.6443777, 41.9322597], [-85.6443641, 41.9320567], [-85.6443539, 41.9318513], [-85.644422, 41.9316585], [-85.6445857, 41.9313821], [-85.6446505, 41.9312578], [-85.6446743, 41.9310828], [-85.6447664, 41.9309864], [-85.6448516, 41.9309204], [-85.6459085, 41.9308849]], "type": "LineString"}, "id": "281", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907662228, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6253868, 41.9609441, -85.6248625, 41.9616581], "geometry": {"coordinates": [[-85.6251039, 41.960981], [-85.6250811, 41.9610069], [-85.6250502, 41.9610847], [-85.6250368, 41.9611336], [-85.6250355, 41.9611844], [-85.6250542, 41.9612223], [-85.6251025, 41.9612622], [-85.6251535, 41.9612832], [-85.6251857, 41.9612921], [-85.6252232, 41.9613001], [-85.6252849, 41.9613231], [-85.6253225, 41.96135], [-85.6253654, 41.9614018], [-85.6253868, 41.9614607], [-85.625364, 41.9615494], [-85.6253198, 41.9616003], [-85.6252661, 41.9616342], [-85.6251924, 41.9616551], [-85.6251468, 41.9616581], [-85.6250703, 41.9616521], [-85.6249899, 41.9616242], [-85.6249349, 41.9615833], [-85.6249067, 41.9615524], [-85.6248906, 41.9614966], [-85.6248933, 41.9614467], [-85.6249014, 41.9614078], [-85.624904, 41.961337], [-85.624892, 41.9612951], [-85.6248692, 41.9612273], [-85.6248625, 41.9611625], [-85.6248732, 41.9610638], [-85.6249174, 41.960968], [-85.6249362, 41.9609441]], "type": "LineString"}, "id": "282", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550707, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638694, 41.954649, -85.634729, 41.954667], "geometry": {"coordinates": [[-85.634729, 41.954667], [-85.636236, 41.954656], [-85.63746, 41.954658], [-85.638694, 41.954649]], "type": "LineString"}, "id": "283", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 17965866, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350826, 41.958296, -85.6347648, 41.9586206], "geometry": {"coordinates": [[-85.6350826, 41.958296], [-85.6350666, 41.9584547], [-85.6350498, 41.9586206], [-85.6347648, 41.9586184]], "type": "LineString"}, "id": "284", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454966, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511863, 41.9434979, -85.6507817, 41.943638], "geometry": {"coordinates": [[-85.6507817, 41.943638], [-85.6511863, 41.9434979]], "type": "LineString"}, "id": "285", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942195, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504829, 41.9439729, -85.6496532, 41.9439764], "geometry": {"coordinates": [[-85.6504829, 41.9439764], [-85.6496532, 41.9439729]], "type": "LineString"}, "id": "286", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942199, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6294175, 41.9422323, -85.6290399, 41.9422477], "geometry": {"coordinates": [[-85.6294175, 41.9422323], [-85.6290399, 41.9422477]], "type": "LineString"}, "id": "287", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 378668559, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6535563, 41.9306335, -85.6535371, 41.931569], "geometry": {"coordinates": [[-85.6535563, 41.9306335], [-85.6535371, 41.931569]], "type": "LineString"}, "id": "288", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612685, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508508, 41.9450657, -85.6503697, 41.9458667], "geometry": {"coordinates": [[-85.6506914, 41.9458667], [-85.6507621, 41.9456424], [-85.6508508, 41.9450744], [-85.6505916, 41.9450657], [-85.6504608, 41.9450692], [-85.6503697, 41.9457363], [-85.6503697, 41.9458179]], "type": "LineString"}, "id": "289", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 498942186, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6528255, 41.9269659, -85.651459, 41.9270544], "geometry": {"coordinates": [[-85.651459, 41.9269659], [-85.6516484, 41.9269767], [-85.6519641, 41.9269968], [-85.6523086, 41.9270197], [-85.6528255, 41.9270544]], "type": "LineString"}, "id": "290", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "no", "osm_id": 124014665, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478361, 41.932796, -85.6475896, 41.9327976], "geometry": {"coordinates": [[-85.6475896, 41.932796], [-85.6478361, 41.9327976]], "type": "LineString"}, "id": "291", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204035474, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6593087, 41.9255834, -85.6589146, 41.9257217], "geometry": {"coordinates": [[-85.6589146, 41.9257217], [-85.6593087, 41.9255834]], "type": "LineString"}, "id": "292", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 897575549, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497534, 41.941819, -85.6497346, 41.9421402], "geometry": {"coordinates": [[-85.6497534, 41.9421402], [-85.6497346, 41.941819]], "type": "LineString"}, "id": "293", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638498, 41.929221, -85.6376148, 41.930416], "geometry": {"coordinates": [[-85.6376148, 41.929221], [-85.6376596, 41.9293516], [-85.6378166, 41.9298086], [-85.6379715, 41.9302065], [-85.6381831, 41.9303761], [-85.638498, 41.930416]], "type": "LineString"}, "id": "294", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781696140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6388962, 41.9321266, -85.638682, 41.9400864], "geometry": {"coordinates": [[-85.6388962, 41.9321266], [-85.6388769, 41.9327334], [-85.6388737, 41.9328197], [-85.6388308, 41.9339698], [-85.6388186, 41.9350099], [-85.63876, 41.937002], [-85.638682, 41.93819], [-85.6386828, 41.9400864]], "type": "LineString"}, "id": "295", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Hooker Avenue", "oneway": null, "osm_id": 17966878, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341027, 41.943433, -85.6339967, 41.9434899], "geometry": {"coordinates": [[-85.6341027, 41.943433], [-85.6339967, 41.9434899]], "type": "LineString"}, "id": "296", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550703, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636166, 41.947296, -85.6346358, 41.947323], "geometry": {"coordinates": [[-85.6346358, 41.947323], [-85.6351132, 41.9473145], [-85.6353441, 41.9473104], [-85.6354184, 41.9473091], [-85.636166, 41.947296]], "type": "LineString"}, "id": "297", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Prutzman Street", "oneway": null, "osm_id": 17965182, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6362328, 41.953681, -85.634723, 41.9536856], "geometry": {"coordinates": [[-85.634723, 41.953681], [-85.6362328, 41.9536856]], "type": "LineString"}, "id": "298", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Cushman Street", "oneway": null, "osm_id": 17966172, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347265, 41.9556918, -85.6343181, 41.9556945], "geometry": {"coordinates": [[-85.6347265, 41.9556918], [-85.6343181, 41.9556945]], "type": "LineString"}, "id": "299", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416365, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470381, 41.949197, -85.6458693, 41.9522414], "geometry": {"coordinates": [[-85.6469834, 41.949197], [-85.6470279, 41.9500961], [-85.6470381, 41.950353], [-85.6470162, 41.9504183], [-85.6469634, 41.950515], [-85.6465834, 41.9511252], [-85.64641, 41.9514037], [-85.6463931, 41.9514276], [-85.6460483, 41.9519157], [-85.6458693, 41.9522414]], "type": "LineString"}, "id": "300", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "Webber Avenue", "oneway": null, "osm_id": 17967185, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361179, 41.9638663, -85.6348315, 41.9640844], "geometry": {"coordinates": [[-85.6361179, 41.9638663], [-85.6361114, 41.9639927], [-85.636014, 41.9640422], [-85.6348315, 41.9640844]], "type": "LineString"}, "id": "301", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871038030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336142, 41.9674796, -85.632666, 41.967487], "geometry": {"coordinates": [[-85.6336142, 41.967487], [-85.632666, 41.9674796]], "type": "LineString"}, "id": "302", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766819276, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638174, 41.958292, -85.634763, 41.958313], "geometry": {"coordinates": [[-85.634763, 41.958292], [-85.6350826, 41.958296], [-85.6355981, 41.9583025], [-85.6360278, 41.9583079], [-85.636271, 41.958311], [-85.6366287, 41.9583116], [-85.6370944, 41.9583124], [-85.637483, 41.958313], [-85.6376116, 41.9583124], [-85.638174, 41.95831]], "type": "LineString"}, "id": "303", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Armstrong Boulevard", "oneway": null, "osm_id": 17965468, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634723, 41.953681, -85.6320827, 41.9537069], "geometry": {"coordinates": [[-85.6320827, 41.9537069], [-85.633307, 41.9537], [-85.634723, 41.953681]], "type": "LineString"}, "id": "304", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Cushman Street", "oneway": null, "osm_id": 17964723, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6435531, 41.9412863, -85.643071, 41.9416981], "geometry": {"coordinates": [[-85.6435531, 41.9416981], [-85.6435427, 41.9412863], [-85.643301, 41.9412872], [-85.643071, 41.941288]], "type": "LineString"}, "id": "305", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643105, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6460479, 41.9425502, -85.6456241, 41.9430771], "geometry": {"coordinates": [[-85.6460385, 41.9425502], [-85.6460424, 41.942643], [-85.6460479, 41.9426931], [-85.6458549, 41.9426872], [-85.6456241, 41.9426801], [-85.6456308, 41.9430751], [-85.6458668, 41.9430771], [-85.6458549, 41.9426872]], "type": "LineString"}, "id": "306", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237758, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514293, 41.9429967, -85.6511789, 41.943003], "geometry": {"coordinates": [[-85.6511789, 41.943003], [-85.6512419, 41.9429995], [-85.6514293, 41.9429967]], "type": "LineString"}, "id": "307", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1111892830, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341561, 41.9424487, -85.6335514, 41.9428552], "geometry": {"coordinates": [[-85.6341561, 41.9428552], [-85.6339701, 41.9424487], [-85.6338474, 41.9424723], [-85.6337406, 41.9424929], [-85.6335514, 41.9425294]], "type": "LineString"}, "id": "308", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203974066, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361862, 41.9495151, -85.6354506, 41.94952], "geometry": {"coordinates": [[-85.6361862, 41.94952], [-85.6354506, 41.9495151]], "type": "LineString"}, "id": "309", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946882963, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557816, 41.9419856, -85.6543478, 41.9419876], "geometry": {"coordinates": [[-85.6543478, 41.9419856], [-85.6557816, 41.9419876]], "type": "LineString"}, "id": "310", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771086, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436023, 41.9544262, -85.638694, 41.9546557], "geometry": {"coordinates": [[-85.638694, 41.954649], [-85.6394155, 41.9546493], [-85.6398429, 41.954651], [-85.640983, 41.9546557], [-85.641583, 41.95465], [-85.641871, 41.954652], [-85.6421344, 41.9546444], [-85.6428264, 41.9545612], [-85.6433323, 41.9544732], [-85.6436023, 41.9544262]], "type": "LineString"}, "id": "311", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 772282741, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558085, 41.9418001, -85.6543458, 41.941824], "geometry": {"coordinates": [[-85.6558085, 41.9418001], [-85.6543458, 41.941824]], "type": "LineString"}, "id": "312", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771087, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558104, 41.9408023, -85.6540931, 41.9408145], "geometry": {"coordinates": [[-85.6540931, 41.9408025], [-85.6543413, 41.9408145], [-85.6558104, 41.9408023]], "type": "LineString"}, "id": "313", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771093, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511523, 41.9306031, -85.6493012, 41.9325803], "geometry": {"coordinates": [[-85.649346, 41.9325803], [-85.6493448, 41.9325521], [-85.6493423, 41.9324936], [-85.649309, 41.9317232], [-85.6493012, 41.9314266], [-85.649311, 41.9306031], [-85.6495102, 41.9306033], [-85.6497496, 41.9306035], [-85.6499941, 41.9306038], [-85.6502232, 41.930604], [-85.6504523, 41.9306042], [-85.6506968, 41.9306045], [-85.6509362, 41.9306047], [-85.6511523, 41.9306049], [-85.6511497, 41.9313429], [-85.6511448, 41.9313651], [-85.6511301, 41.9313839], [-85.651107, 41.9313995], [-85.6510755, 41.9314105], [-85.6509439, 41.9314117], [-85.6507019, 41.9314139], [-85.6506112, 41.9314147], [-85.6504523, 41.9314162], [-85.6502335, 41.9314181], [-85.6499942, 41.9314203], [-85.6497573, 41.9314225], [-85.6495361, 41.9314245], [-85.6493012, 41.9314266]], "type": "LineString"}, "id": "314", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843136, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6568015, 41.9309979, -85.6556741, 41.9310002], "geometry": {"coordinates": [[-85.6568015, 41.9310002], [-85.6559525, 41.9309979], [-85.6556741, 41.9309979]], "type": "LineString"}, "id": "315", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237744, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557421, 41.9328286, -85.6543189, 41.9330546], "geometry": {"coordinates": [[-85.6557383, 41.9328286], [-85.6557421, 41.9330473], [-85.6543189, 41.9330546]], "type": "LineString"}, "id": "316", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203048266, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6568045, 41.9313701, -85.6559565, 41.9313701], "geometry": {"coordinates": [[-85.6568045, 41.9313701], [-85.6559565, 41.9313701]], "type": "LineString"}, "id": "317", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237742, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6582076, 41.9254769, -85.6579836, 41.9254828], "geometry": {"coordinates": [[-85.6582076, 41.9254828], [-85.6579836, 41.9254769]], "type": "LineString"}, "id": "318", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 895396432, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558087, 41.9416684, -85.6540968, 41.9416764], "geometry": {"coordinates": [[-85.6558087, 41.9416684], [-85.654344, 41.9416704], [-85.6540968, 41.9416764]], "type": "LineString"}, "id": "319", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771092, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6599876, 41.9248778, -85.6599028, 41.9253801], "geometry": {"coordinates": [[-85.6599294, 41.9248778], [-85.6599028, 41.9251596], [-85.6599205, 41.9252583], [-85.6599876, 41.9253801]], "type": "LineString"}, "id": "320", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 770566425, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.623571, 41.933232, -85.623501, 41.940124], "geometry": {"coordinates": [[-85.623501, 41.933232], [-85.623511, 41.934216], [-85.6235312, 41.9362084], [-85.6235488, 41.9371726], [-85.6235512, 41.9381718], [-85.6235609, 41.9391301], [-85.623562, 41.9392411], [-85.6235688, 41.9399111], [-85.623571, 41.940124]], "type": "LineString"}, "id": "321", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "9th Street", "oneway": null, "osm_id": 17965088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9351998, -85.6277374, 41.9361846], "geometry": {"coordinates": [[-85.6277618, 41.9361846], [-85.6277374, 41.9351998]], "type": "LineString"}, "id": "322", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Madison Place", "oneway": null, "osm_id": 17964837, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6303395, 41.9301668, -85.6303008, 41.9311528], "geometry": {"coordinates": [[-85.6303008, 41.9311528], [-85.6303343, 41.9310365], [-85.6303395, 41.9309321], [-85.6303325, 41.9307206], [-85.6303237, 41.9304777], [-85.6303132, 41.9301668]], "type": "LineString"}, "id": "323", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199686, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6270441, 41.9321659, -85.62478, 41.932173], "geometry": {"coordinates": [[-85.62478, 41.93217], [-85.625695, 41.932173], [-85.6263674, 41.9321695], [-85.6270441, 41.9321659]], "type": "LineString"}, "id": "324", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pearl Street", "oneway": null, "osm_id": 17966110, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6284109, 41.9268496, -85.6277991, 41.9351953], "geometry": {"coordinates": [[-85.6277991, 41.9268496], [-85.6278389, 41.9273577], [-85.6280779, 41.928322], [-85.6283251, 41.9292335], [-85.628329, 41.930182], [-85.6283399, 41.9311659], [-85.62834, 41.932161], [-85.628365, 41.933177], [-85.628389, 41.934216], [-85.6284109, 41.9351953]], "type": "LineString"}, "id": "325", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Street", "oneway": null, "osm_id": 17967773, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6306407, 41.9378698, -85.6304039, 41.9381998], "geometry": {"coordinates": [[-85.6304039, 41.9381998], [-85.6304039, 41.9378774], [-85.6306407, 41.9378698]], "type": "LineString"}, "id": "326", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915501173, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346517, 41.948613, -85.632278, 41.948626], "geometry": {"coordinates": [[-85.632278, 41.948613], [-85.633214, 41.948618], [-85.6336739, 41.9486209], [-85.6339222, 41.9486225], [-85.6346517, 41.948626]], "type": "LineString"}, "id": "327", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Kelsey Street", "oneway": null, "osm_id": 17966581, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348268, 41.9621767, -85.6280573, 41.9635333], "geometry": {"coordinates": [[-85.6348268, 41.9635099], [-85.6343133, 41.9635134], [-85.633724, 41.9635173], [-85.6328045, 41.9635333], [-85.6326614, 41.9635245], [-85.6325575, 41.9634925], [-85.6324928, 41.9634531], [-85.6324226, 41.963386], [-85.6323791, 41.9633288], [-85.6323599, 41.963252], [-85.6323498, 41.9630617], [-85.632334, 41.9624268], [-85.6323117, 41.9623591], [-85.6322773, 41.9623026], [-85.6322075, 41.9622522], [-85.6321286, 41.9622131], [-85.6320233, 41.962192], [-85.6318189, 41.9621777], [-85.630998, 41.9621767], [-85.6309508, 41.9621767], [-85.6295207, 41.9621913], [-85.6294968, 41.9621916], [-85.6280573, 41.9622134]], "type": "LineString"}, "id": "328", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312579, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6309653, 41.9618094, -85.6302817, 41.9618205], "geometry": {"coordinates": [[-85.6309653, 41.961811], [-85.630858, 41.9618094], [-85.6302817, 41.9618205]], "type": "LineString"}, "id": "329", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Bowman Place", "oneway": null, "osm_id": 772377036, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191448, 41.9355963, -85.6190825, 41.9362259], "geometry": {"coordinates": [[-85.6191081, 41.9362259], [-85.6191448, 41.9357217], [-85.6190825, 41.9355963]], "type": "LineString"}, "id": "330", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Balsam Drive", "oneway": null, "osm_id": 17965673, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632051, 41.9647947, -85.6319408, 41.9656501], "geometry": {"coordinates": [[-85.6320427, 41.9647947], [-85.632051, 41.9654321], [-85.632039, 41.965504], [-85.6320068, 41.9655744], [-85.6319408, 41.9656501]], "type": "LineString"}, "id": "331", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Nixon Lane", "oneway": "no", "osm_id": 203968022, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633274, 41.949893, -85.633258, 41.951159], "geometry": {"coordinates": [[-85.633274, 41.951159], [-85.633258, 41.949893]], "type": "LineString"}, "id": "332", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": "yes", "osm_id": 772835854, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6121257, 41.9561056, -85.6119049, 41.9562902], "geometry": {"coordinates": [[-85.6119049, 41.9561069], [-85.6121236, 41.9561056], [-85.6121257, 41.9562902]], "type": "LineString"}, "id": "333", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607632234, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6163767, 41.9481239, -85.6144187, 41.9488253], "geometry": {"coordinates": [[-85.6163767, 41.9481239], [-85.616371, 41.948163], [-85.6161038, 41.9481652], [-85.6156704, 41.9481688], [-85.6153154, 41.9481697], [-85.6152578, 41.9481447], [-85.615145, 41.9481385], [-85.6145535, 41.9482674], [-85.61451, 41.9482866], [-85.614421, 41.948288], [-85.6144187, 41.9486317], [-85.6148203, 41.9488253]], "type": "LineString"}, "id": "334", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6302867, 41.9537226, -85.6302752, 41.954691], "geometry": {"coordinates": [[-85.6302775, 41.954691], [-85.6302799, 41.9546038], [-85.6302867, 41.9543608], [-85.6302821, 41.9541181], [-85.6302752, 41.9537226]], "type": "LineString"}, "id": "335", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871048836, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621825, 41.9299782, -85.6198048, 41.9328101], "geometry": {"coordinates": [[-85.621825, 41.9324107], [-85.6217961, 41.9303948], [-85.6216695, 41.9301314], [-85.6214034, 41.9299782], [-85.6210601, 41.9299894], [-85.6210686, 41.9304204], [-85.6208476, 41.9304188], [-85.6206481, 41.9307301], [-85.6201674, 41.9307285], [-85.6200816, 41.9309137], [-85.6198048, 41.9309137], [-85.6198434, 41.9328037], [-85.6214635, 41.9328101], [-85.6214678, 41.9326089], [-85.6215242, 41.9325716]], "type": "LineString"}, "id": "336", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945137, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347645, 41.9459809, -85.6347551, 41.9461525], "geometry": {"coordinates": [[-85.6347551, 41.9459809], [-85.6347591, 41.9460545], [-85.6347645, 41.9461525]], "type": "LineString"}, "id": "337", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427782, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6574848, 41.9408564, -85.6572676, 41.9408604], "geometry": {"coordinates": [[-85.6574848, 41.9408604], [-85.6572676, 41.9408564]], "type": "LineString"}, "id": "338", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771075, "osm_type": "ways_line", "smoothness": null, "surface": "concrete", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6211299, 41.933254, -85.62111, 41.9381784], "geometry": {"coordinates": [[-85.62111, 41.933254], [-85.6211132, 41.9340341], [-85.6211143, 41.9343139], [-85.621122, 41.9362218], [-85.6211299, 41.9381784]], "type": "LineString"}, "id": "339", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "11th Street", "oneway": null, "osm_id": 17968119, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6267423, 41.9371679, -85.6265038, 41.9375541], "geometry": {"coordinates": [[-85.6267423, 41.9371679], [-85.6267377, 41.9374836], [-85.6266509, 41.9375524], [-85.6265038, 41.9375541], [-85.6265186, 41.9371683]], "type": "LineString"}, "id": "340", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 785806315, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.61568, 41.9481256, -85.6156701, 41.9488411], "geometry": {"coordinates": [[-85.6156701, 41.9481256], [-85.6156704, 41.9481688], [-85.6156705, 41.9481829], [-85.61568, 41.9488411]], "type": "LineString"}, "id": "341", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839086, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624937, 41.949237, -85.620087, 41.94924], "geometry": {"coordinates": [[-85.620087, 41.94924], [-85.6210164, 41.9492394], [-85.622769, 41.9492383], [-85.6231422, 41.9492381], [-85.6233971, 41.9492379], [-85.6236306, 41.9492378], [-85.6239144, 41.9492376], [-85.6241492, 41.9492375], [-85.624937, 41.949237]], "type": "LineString"}, "id": "342", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "8th Avenue", "oneway": null, "osm_id": 17965159, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6182875, 41.9531222, -85.6179141, 41.9535163], "geometry": {"coordinates": [[-85.6182875, 41.9531222], [-85.6179141, 41.9535163]], "type": "LineString"}, "id": "343", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837936, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620172, 41.945627, -85.6177994, 41.9545412], "geometry": {"coordinates": [[-85.620172, 41.945627], [-85.620101, 41.945811], [-85.620081, 41.945937], [-85.620076, 41.9462726], [-85.620072, 41.946538], [-85.6200878, 41.9474419], [-85.620088, 41.94758], [-85.620087, 41.947701], [-85.620087, 41.9487445], [-85.620087, 41.94924], [-85.6201059, 41.950132], [-85.620103, 41.951], [-85.620133, 41.951538], [-85.620141, 41.951901], [-85.62013, 41.952104], [-85.6201163, 41.9522096], [-85.620104, 41.952305], [-85.620073, 41.9524484], [-85.620062, 41.952499], [-85.619993, 41.952702], [-85.619879, 41.952986], [-85.619689, 41.95329], [-85.619508, 41.953521], [-85.619286, 41.953728], [-85.618925, 41.954007], [-85.618638, 41.954189], [-85.61831, 41.954358], [-85.6180137, 41.954474], [-85.6177994, 41.9545412]], "type": "LineString"}, "id": "344", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 17967415, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297488, 41.9576384, -85.6295752, 41.9576394], "geometry": {"coordinates": [[-85.6295752, 41.9576384], [-85.6297488, 41.9576394]], "type": "LineString"}, "id": "345", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341313251, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6148042, 41.9547511, -85.6147921, 41.9550773], "geometry": {"coordinates": [[-85.6148042, 41.9547511], [-85.6147978, 41.9549229], [-85.6147921, 41.9550773]], "type": "LineString"}, "id": "346", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 773113219, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272027, 41.9402383, -85.6271952, 41.9407147], "geometry": {"coordinates": [[-85.6271952, 41.9402383], [-85.6272027, 41.9407147]], "type": "LineString"}, "id": "347", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550665, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6117323, 41.9468783, -85.6114576, 41.947489], "geometry": {"coordinates": [[-85.6114576, 41.947489], [-85.6114701, 41.946966], [-85.6115128, 41.9469388], [-85.6117323, 41.9468783]], "type": "LineString"}, "id": "348", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 779904649, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6236306, 41.9488966, -85.6236306, 41.9492378], "geometry": {"coordinates": [[-85.6236306, 41.9488966], [-85.6236306, 41.9492378]], "type": "LineString"}, "id": "349", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964876, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167607, 41.9481829, -85.614817, 41.9501016], "geometry": {"coordinates": [[-85.6156705, 41.9481829], [-85.6153097, 41.9484555], [-85.6148203, 41.9488253], [-85.614817, 41.9495599], [-85.6148773, 41.9496595], [-85.6150263, 41.9497666], [-85.6152925, 41.9498463], [-85.6158712, 41.9500779], [-85.6159303, 41.9501016], [-85.6167607, 41.9501009]], "type": "LineString"}, "id": "350", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839087, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6283101, 41.9574414, -85.6283033, 41.9576717], "geometry": {"coordinates": [[-85.6283033, 41.9576717], [-85.6283101, 41.9574414]], "type": "LineString"}, "id": "351", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 263446669, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6114893, 41.9553039, -85.6102539, 41.9563076], "geometry": {"coordinates": [[-85.6109806, 41.9555109], [-85.6109826, 41.9553378], [-85.6110013, 41.9553117], [-85.6110386, 41.9553039], [-85.6114391, 41.9553065], [-85.6114811, 41.9553256], [-85.6114893, 41.955356], [-85.6114835, 41.9554689], [-85.6114648, 41.9554993], [-85.6114274, 41.9555071], [-85.6109806, 41.9555109], [-85.610595, 41.955514], [-85.610539, 41.9555245], [-85.6105086, 41.9555722], [-85.6105118, 41.9558474], [-85.6105168, 41.9562711], [-85.6105355, 41.9562954], [-85.6106779, 41.9563076], [-85.6107421, 41.9562824], [-85.6107538, 41.9562555], [-85.6107538, 41.9558943], [-85.6107433, 41.9558605], [-85.6107047, 41.9558474], [-85.6105118, 41.9558474], [-85.6102539, 41.9558449]], "type": "LineString"}, "id": "352", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755813391, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6158712, 41.9500779, -85.6143257, 41.9500914], "geometry": {"coordinates": [[-85.6158712, 41.9500779], [-85.6143257, 41.9500914]], "type": "LineString"}, "id": "353", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839098, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186404, 41.9371542, -85.6178179, 41.9372012], "geometry": {"coordinates": [[-85.6186404, 41.9371542], [-85.6178179, 41.9372012]], "type": "LineString"}, "id": "354", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Briarwood Court", "oneway": null, "osm_id": 17966967, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6244113, 41.9321465, -85.6235412, 41.9323636], "geometry": {"coordinates": [[-85.6244113, 41.9321465], [-85.6237633, 41.9321465], [-85.6237043, 41.9321505], [-85.623598, 41.9322319], [-85.6235412, 41.9323181], [-85.6235412, 41.9323636]], "type": "LineString"}, "id": "355", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6235412, 41.9322171, -85.6231536, 41.9323504], "geometry": {"coordinates": [[-85.6235412, 41.9323181], [-85.6234734, 41.9322321], [-85.6233831, 41.9322171], [-85.623265, 41.9322213], [-85.6231911, 41.9322506], [-85.6231546, 41.9322892], [-85.6231536, 41.9323504]], "type": "LineString"}, "id": "356", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230947276, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6270222, 41.9571873, -85.6269223, 41.9573376], "geometry": {"coordinates": [[-85.6270222, 41.9571873], [-85.6269223, 41.9573376]], "type": "LineString"}, "id": "357", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 322012461, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6448268, 41.9479609, -85.6444365, 41.9479676], "geometry": {"coordinates": [[-85.6448268, 41.9479676], [-85.6444365, 41.9479609]], "type": "LineString"}, "id": "358", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942239, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567956, 41.9302828, -85.6559448, 41.9302851], "geometry": {"coordinates": [[-85.6567956, 41.9302828], [-85.6559448, 41.9302851]], "type": "LineString"}, "id": "359", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237748, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.64167, 41.9425889, -85.6415366, 41.942783], "geometry": {"coordinates": [[-85.64167, 41.9425889], [-85.6416457, 41.9426726], [-85.6416303, 41.9427268], [-85.6416008, 41.9427677], [-85.6415366, 41.942783]], "type": "LineString"}, "id": "360", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486785499, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6313635, 41.967763, -85.6312506, 41.9678907], "geometry": {"coordinates": [[-85.6313635, 41.9678907], [-85.6312506, 41.967763]], "type": "LineString"}, "id": "361", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 765593443, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6083939, 41.945652, -85.6082831, 41.9457493], "geometry": {"coordinates": [[-85.6082831, 41.945652], [-85.6083939, 41.9457493]], "type": "LineString"}, "id": "362", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 238879871, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497605, 41.9273083, -85.649414, 41.9275819], "geometry": {"coordinates": [[-85.6497574, 41.9275806], [-85.6494717, 41.9275819], [-85.6494408, 41.9275692], [-85.6494213, 41.9275371], [-85.649414, 41.9273491], [-85.6494327, 41.9273279], [-85.6494668, 41.9273171], [-85.6497605, 41.9273083]], "type": "LineString"}, "id": "363", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870704307, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6576992, 41.925439, -85.6574702, 41.9260938], "geometry": {"coordinates": [[-85.6576992, 41.9260938], [-85.6576224, 41.9259888], [-85.6575793, 41.9258746], [-85.6575155, 41.9257595], [-85.6574801, 41.9256409], [-85.6574702, 41.9255431], [-85.6574799, 41.925439]], "type": "LineString"}, "id": "364", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 817449284, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355692, 41.9330969, -85.634787, 41.933145], "geometry": {"coordinates": [[-85.6355692, 41.9330969], [-85.6352672, 41.9331314], [-85.634787, 41.933145]], "type": "LineString"}, "id": "365", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Broadway Street", "oneway": null, "osm_id": 134150782, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6410644, 41.9280451, -85.6407748, 41.9280501], "geometry": {"coordinates": [[-85.6407748, 41.9280501], [-85.6410644, 41.9280451]], "type": "LineString"}, "id": "366", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143996, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6516716, 41.9217173, -85.6516201, 41.9241414], "geometry": {"coordinates": [[-85.651626, 41.9241414], [-85.6516201, 41.9231627], [-85.6516225, 41.9227757], [-85.6516362, 41.9224091], [-85.651648, 41.92207], [-85.6516716, 41.9217173]], "type": "LineString"}, "id": "367", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 121198735, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.618485, 41.943788, -85.6176438, 41.944528], "geometry": {"coordinates": [[-85.618485, 41.944528], [-85.6181731, 41.9442022], [-85.6180698, 41.9440585], [-85.6178802, 41.9439269], [-85.6176438, 41.943788]], "type": "LineString"}, "id": "368", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 607644647, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.616136, 41.9468753, -85.6158887, 41.9474632], "geometry": {"coordinates": [[-85.616136, 41.9474632], [-85.6161297, 41.9471822], [-85.6161227, 41.9468753], [-85.6158887, 41.9468753], [-85.6158939, 41.9471803], [-85.6161297, 41.9471822]], "type": "LineString"}, "id": "369", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 218004766, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6130832, 41.9466154, -85.6125677, 41.9474834], "geometry": {"coordinates": [[-85.6130832, 41.9474806], [-85.6130048, 41.9466512], [-85.6129837, 41.9466243], [-85.6129384, 41.9466154], [-85.612643, 41.9466311], [-85.6125857, 41.9466535], [-85.6125677, 41.9466894], [-85.6125898, 41.9471954], [-85.612602, 41.9474834]], "type": "LineString"}, "id": "370", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758366850, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620051, 41.9427278, -85.6194405, 41.9447384], "geometry": {"coordinates": [[-85.6200474, 41.9447384], [-85.620051, 41.94383], [-85.6199689, 41.9432106], [-85.6198622, 41.942836], [-85.6197195, 41.9427278], [-85.61958, 41.9427558], [-85.6194405, 41.9427837]], "type": "LineString"}, "id": "371", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 17964043, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6133599, 41.943327, -85.613027, 41.9454832], "geometry": {"coordinates": [[-85.613027, 41.943327], [-85.613204, 41.943682], [-85.613175, 41.944075], [-85.6132496, 41.9442728], [-85.6133493, 41.9443402], [-85.6133498, 41.9444141], [-85.6133531, 41.9449658], [-85.6133599, 41.9454832]], "type": "LineString"}, "id": "372", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17963071, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624882, 41.943801, -85.620051, 41.94383], "geometry": {"coordinates": [[-85.620051, 41.94383], [-85.621219, 41.943801], [-85.6213466, 41.9438023], [-85.621812, 41.943807], [-85.624882, 41.94382]], "type": "LineString"}, "id": "373", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "2nd Avenue", "oneway": null, "osm_id": 17965846, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297088, 41.9351902, -85.624792, 41.935214], "geometry": {"coordinates": [[-85.624792, 41.935214], [-85.6257179, 41.9352095], [-85.6264049, 41.9352062], [-85.627053, 41.9352031], [-85.6277374, 41.9351998], [-85.62811, 41.935198], [-85.6284109, 41.9351953], [-85.6290427, 41.9351928], [-85.6297088, 41.9351902]], "type": "LineString"}, "id": "374", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pleasant Street", "oneway": null, "osm_id": 17964767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6303635, 41.9331643, -85.6303478, 41.9341918], "geometry": {"coordinates": [[-85.6303635, 41.9331643], [-85.6303504, 41.9338642], [-85.6303478, 41.9341918]], "type": "LineString"}, "id": "375", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 341657297, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310036, 41.9301659, -85.6269, 41.930199], "geometry": {"coordinates": [[-85.6269, 41.930199], [-85.6276777, 41.9301897], [-85.628329, 41.930182], [-85.6296598, 41.9301676], [-85.6303132, 41.9301668], [-85.6310036, 41.9301659]], "type": "LineString"}, "id": "376", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Liberty Street", "oneway": null, "osm_id": 134150818, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310336, 41.929206, -85.630997, 41.9345237], "geometry": {"coordinates": [[-85.630997, 41.929206], [-85.6310036, 41.9301659], [-85.6310103, 41.931148], [-85.6310172, 41.932148], [-85.6310242, 41.9331609], [-85.6310313, 41.9341889], [-85.6310336, 41.9345237]], "type": "LineString"}, "id": "377", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "3rd Street", "oneway": null, "osm_id": 17966084, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272188, 41.9401381, -85.6271952, 41.9402383], "geometry": {"coordinates": [[-85.6272188, 41.9401381], [-85.6271952, 41.9402383]], "type": "LineString"}, "id": "378", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550662, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630754, 41.9406787, -85.6302265, 41.9411092], "geometry": {"coordinates": [[-85.6304899, 41.9411092], [-85.630754, 41.9409943], [-85.6307456, 41.9409574], [-85.6305425, 41.9407075], [-85.6304095, 41.9406787], [-85.6302265, 41.9407499]], "type": "LineString"}, "id": "379", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907939646, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6256839, 41.941201, -85.6256819, 41.9416496], "geometry": {"coordinates": [[-85.6256839, 41.9416496], [-85.6256819, 41.941201]], "type": "LineString"}, "id": "380", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871082474, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6286497, 41.9446764, -85.627629, 41.946498], "geometry": {"coordinates": [[-85.6286375, 41.9446764], [-85.6286497, 41.9453531], [-85.6285942, 41.9454805], [-85.628481, 41.945611], [-85.627629, 41.946498]], "type": "LineString"}, "id": "381", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Garden Street", "oneway": null, "osm_id": 17967561, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641876, 41.954652, -85.6414548, 41.9557751], "geometry": {"coordinates": [[-85.6414548, 41.9557751], [-85.6415596, 41.9555848], [-85.6416526, 41.9554262], [-85.6417453, 41.9552874], [-85.6418333, 41.955147], [-85.6418673, 41.954987], [-85.641876, 41.954946], [-85.641871, 41.954652]], "type": "LineString"}, "id": "382", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963817, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637732, 41.932761, -85.6370124, 41.9413618], "geometry": {"coordinates": [[-85.637732, 41.932761], [-85.637688, 41.93398], [-85.637685, 41.934223], [-85.6376468, 41.9350232], [-85.637564, 41.937028], [-85.6374603, 41.9381749], [-85.637424, 41.938692], [-85.6373321, 41.9394599], [-85.6373179, 41.9395789], [-85.637255, 41.940104], [-85.6370184, 41.9411346], [-85.6370124, 41.9413618]], "type": "LineString"}, "id": "383", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Constantine Street", "oneway": null, "osm_id": 379694418, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6401808, 41.929221, -85.63928, 41.9400712], "geometry": {"coordinates": [[-85.63928, 41.929221], [-85.63935, 41.929396], [-85.6394655, 41.9296875], [-85.6397046, 41.9302911], [-85.6397659, 41.9304665], [-85.6400258, 41.9311016], [-85.640039, 41.931135], [-85.640143, 41.931462], [-85.6401808, 41.9318085], [-85.6401365, 41.9327199], [-85.6401324, 41.9327998], [-85.6400729, 41.9339588], [-85.6400709, 41.9349957], [-85.640003, 41.936988], [-85.639983, 41.938174], [-85.639924, 41.939903], [-85.6399212, 41.9399845], [-85.6399182, 41.9400712]], "type": "LineString"}, "id": "384", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Lincoln Avenue", "oneway": null, "osm_id": 17966039, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6311606, 41.9649323, -85.6304211, 41.9651812], "geometry": {"coordinates": [[-85.6311606, 41.9651699], [-85.6309068, 41.9651812], [-85.6308256, 41.9651723], [-85.6307439, 41.9651492], [-85.6306545, 41.9651145], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "385", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "McKinley Court", "oneway": "no", "osm_id": 203968020, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477046, 41.9363248, -85.6470406, 41.9363274], "geometry": {"coordinates": [[-85.6470406, 41.9363248], [-85.6471938, 41.9363254], [-85.6477046, 41.9363274]], "type": "LineString"}, "id": "386", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243988, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361542, 41.9469079, -85.6354173, 41.946915], "geometry": {"coordinates": [[-85.6354173, 41.9469082], [-85.635443, 41.9469079], [-85.6360275, 41.9469093], [-85.6361542, 41.946915]], "type": "LineString"}, "id": "387", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643141, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513166, 41.9483563, -85.6508009, 41.9485454], "geometry": {"coordinates": [[-85.6513166, 41.9483956], [-85.6511937, 41.9485076], [-85.6510319, 41.9485454], [-85.6508532, 41.9485351], [-85.6508009, 41.9484712], [-85.6508224, 41.9483563]], "type": "LineString"}, "id": "388", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942226, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453541, 41.9485747, -85.6450852, 41.9485835], "geometry": {"coordinates": [[-85.6450852, 41.9485747], [-85.6453541, 41.9485835]], "type": "LineString"}, "id": "389", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942801, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6173806, 41.9522542, -85.6171841, 41.9523658], "geometry": {"coordinates": [[-85.6173806, 41.9523658], [-85.6171841, 41.9522542]], "type": "LineString"}, "id": "390", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839362, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638243, 41.9426146, -85.6382347, 41.943674], "geometry": {"coordinates": [[-85.6382347, 41.9426146], [-85.6382354, 41.9427058], [-85.6382376, 41.942979], [-85.638243, 41.943674]], "type": "LineString"}, "id": "391", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Andrews Street", "oneway": null, "osm_id": 17967397, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469224, 41.9425483, -85.6462541, 41.9431332], "geometry": {"coordinates": [[-85.6469224, 41.9431332], [-85.6462798, 41.9431094], [-85.6462688, 41.9428685], [-85.6462575, 41.942623], [-85.6462541, 41.9425483]], "type": "LineString"}, "id": "392", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942832, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626685, 41.9600286, -85.6252031, 41.9607895], "geometry": {"coordinates": [[-85.626685, 41.9600286], [-85.6259421, 41.9600346], [-85.6258026, 41.9600585], [-85.6256926, 41.9601004], [-85.6256175, 41.9601623], [-85.6255639, 41.9602161], [-85.6253077, 41.960629], [-85.6252249, 41.960756], [-85.6252031, 41.9607895]], "type": "LineString"}, "id": "393", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550705, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6266692, 41.958631, -85.6264499, 41.958692], "geometry": {"coordinates": [[-85.6266692, 41.958692], [-85.6264499, 41.958631]], "type": "LineString"}, "id": "394", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550712, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558101, 41.9409781, -85.6543418, 41.9409841], "geometry": {"coordinates": [[-85.6543418, 41.9409841], [-85.6558101, 41.9409781]], "type": "LineString"}, "id": "395", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771088, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483346, 41.9347757, -85.646913, 41.9347803], "geometry": {"coordinates": [[-85.6483346, 41.9347803], [-85.6482319, 41.9347766], [-85.6471542, 41.9347779], [-85.6470391, 41.9347799], [-85.646913, 41.9347757]], "type": "LineString"}, "id": "396", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800863, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508974, 41.9494258, -85.6503645, 41.949635], "geometry": {"coordinates": [[-85.6508974, 41.9494258], [-85.6508476, 41.9495196], [-85.6507671, 41.9495956], [-85.6506257, 41.949635], [-85.6503645, 41.9495882]], "type": "LineString"}, "id": "397", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 848056397, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227517, 41.953621, -85.6221989, 41.9544535], "geometry": {"coordinates": [[-85.6226758, 41.9544535], [-85.6226934, 41.9541331], [-85.6227517, 41.9536572], [-85.6222961, 41.953621], [-85.6221989, 41.9539101], [-85.6226934, 41.9541331]], "type": "LineString"}, "id": "398", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758296780, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.646656, 41.939869, -85.642213, 41.940043], "geometry": {"coordinates": [[-85.642213, 41.940043], [-85.643056, 41.94001], [-85.6441924, 41.939951], [-85.6443194, 41.9399444], [-85.644384, 41.939941], [-85.6453506, 41.9399002], [-85.6457497, 41.9398834], [-85.645806, 41.9398831], [-85.6461568, 41.9398809], [-85.646656, 41.939869]], "type": "LineString"}, "id": "399", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 382320149, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277007, 41.9301897, -85.6276755, 41.9311702], "geometry": {"coordinates": [[-85.6277007, 41.9311702], [-85.627698, 41.9310228], [-85.6276755, 41.9306834], [-85.6276777, 41.9301897]], "type": "LineString"}, "id": "400", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199684, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6133576, 41.955183, -85.6118505, 41.9551912], "geometry": {"coordinates": [[-85.6133576, 41.9551912], [-85.6118505, 41.955183]], "type": "LineString"}, "id": "401", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179344, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6138327, 41.9561069, -85.6119049, 41.9562915], "geometry": {"coordinates": [[-85.6138327, 41.9562795], [-85.6121257, 41.9562902], [-85.611907, 41.9562915], [-85.6119049, 41.9561069]], "type": "LineString"}, "id": "402", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17964174, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6516716, 41.9217173, -85.651441, 41.925523], "geometry": {"coordinates": [[-85.6516716, 41.9217173], [-85.6516, 41.9219492], [-85.6515575, 41.9221334], [-85.6515197, 41.922329], [-85.6514905, 41.9225228], [-85.6514682, 41.9227146], [-85.6514553, 41.9228713], [-85.6514511, 41.9230459], [-85.651441, 41.9234293], [-85.6514551, 41.925523]], "type": "LineString"}, "id": "403", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 929692960, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500564, 41.9317864, -85.6500538, 41.9323466], "geometry": {"coordinates": [[-85.6500538, 41.9317864], [-85.6500548, 41.9319914], [-85.6500556, 41.9321713], [-85.6500564, 41.9323466]], "type": "LineString"}, "id": "404", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116841, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507019, 41.9306045, -85.6506968, 41.9314139], "geometry": {"coordinates": [[-85.6507019, 41.9314139], [-85.6506968, 41.9306045]], "type": "LineString"}, "id": "405", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612676, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470951, 41.9299668, -85.6462097, 41.9299795], "geometry": {"coordinates": [[-85.6470951, 41.9299668], [-85.6468592, 41.9299702], [-85.6466655, 41.929973], [-85.6464324, 41.9299763], [-85.6462097, 41.9299795]], "type": "LineString"}, "id": "406", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607644867, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6466519, 41.9327884, -85.6458042, 41.9330851], "geometry": {"coordinates": [[-85.6466519, 41.9330735], [-85.6466467, 41.932859], [-85.6466053, 41.9328115], [-85.6465448, 41.9327884], [-85.6462388, 41.932792], [-85.645894, 41.9327961], [-85.645837, 41.9328257], [-85.645806, 41.9328732], [-85.6458042, 41.9330851]], "type": "LineString"}, "id": "407", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870745192, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6455734, 41.9326543, -85.6442279, 41.9328387], "geometry": {"coordinates": [[-85.6442279, 41.9328387], [-85.6444291, 41.9328349], [-85.6455734, 41.9328206], [-85.6455689, 41.9327343], [-85.6455686, 41.9327016], [-85.6455682, 41.9326543]], "type": "LineString"}, "id": "408", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203984750, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502843, 41.9363242, -85.6502344, 41.9385482], "geometry": {"coordinates": [[-85.6502585, 41.9385482], [-85.650247, 41.938474], [-85.6502362, 41.9383918], [-85.6502344, 41.9383404], [-85.6502386, 41.9383038], [-85.6502669, 41.938231], [-85.6502771, 41.9381998], [-85.6502819, 41.9381747], [-85.6502843, 41.9381247], [-85.650276, 41.9370354], [-85.6502712, 41.9363242]], "type": "LineString"}, "id": "409", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 993698648, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520907, 41.9369457, -85.651765, 41.9369467], "geometry": {"coordinates": [[-85.651765, 41.9369457], [-85.6519498, 41.9369463], [-85.6520907, 41.9369467]], "type": "LineString"}, "id": "410", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612668, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433166, 41.9360524, -85.642822, 41.9360564], "geometry": {"coordinates": [[-85.642822, 41.9360564], [-85.6433166, 41.9360524]], "type": "LineString"}, "id": "411", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158511, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339197, 41.9323903, -85.6326939, 41.9331508], "geometry": {"coordinates": [[-85.6339197, 41.9331474], [-85.6339183, 41.9327527], [-85.6339011, 41.932556], [-85.6337878, 41.9324476], [-85.6336642, 41.9324006], [-85.6334849, 41.9323903], [-85.6332398, 41.9323997], [-85.633087, 41.9324025], [-85.6329393, 41.9324391], [-85.6328268, 41.9325087], [-85.6327344, 41.9328911], [-85.6326939, 41.9331508]], "type": "LineString"}, "id": "412", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871410673, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6410413, 41.9295065, -85.640661, 41.9300769], "geometry": {"coordinates": [[-85.640661, 41.9300769], [-85.6408065, 41.9298225], [-85.640972, 41.9297978], [-85.6410413, 41.9295065]], "type": "LineString"}, "id": "413", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331310949, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6412224, 41.9317751, -85.6401808, 41.931841], "geometry": {"coordinates": [[-85.6412224, 41.931841], [-85.6410665, 41.9317907], [-85.6409052, 41.9317751], [-85.6403781, 41.931796], [-85.6401808, 41.9318085]], "type": "LineString"}, "id": "414", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Court", "oneway": null, "osm_id": 17967609, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436547, 41.9362871, -85.6423094, 41.936583], "geometry": {"coordinates": [[-85.6423094, 41.936583], [-85.6426803, 41.93657], [-85.6427087, 41.936569], [-85.6431884, 41.9365749], [-85.6434958, 41.9365631], [-85.6436123, 41.9365315], [-85.6436547, 41.9364251], [-85.6436282, 41.936362], [-85.6435461, 41.9362989], [-85.643305, 41.9362871], [-85.643297, 41.9363423], [-85.6426767, 41.9363473], [-85.6423154, 41.9363503]], "type": "LineString"}, "id": "415", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158506, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6482837, 41.9419441, -85.6482342, 41.9425314], "geometry": {"coordinates": [[-85.6482342, 41.9425314], [-85.6482402, 41.9424606], [-85.6482837, 41.9419441]], "type": "LineString"}, "id": "416", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942153, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6190825, 41.9355963, -85.6173384, 41.9356126], "geometry": {"coordinates": [[-85.6173384, 41.9356126], [-85.618837, 41.9356072], [-85.6190825, 41.9355963]], "type": "LineString"}, "id": "417", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Linden Drive", "oneway": null, "osm_id": 17966999, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348717, 41.9671614, -85.634583, 41.9673998], "geometry": {"coordinates": [[-85.6348717, 41.9673998], [-85.634583, 41.9673811], [-85.6345898, 41.9672871], [-85.6345981, 41.9671726], [-85.6348678, 41.9671614]], "type": "LineString"}, "id": "418", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870652350, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635055, 41.959009, -85.634767, 41.9593361], "geometry": {"coordinates": [[-85.635055, 41.9593361], [-85.6350104, 41.9590274], [-85.634767, 41.959009]], "type": "LineString"}, "id": "419", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6338939, 41.9424929, -85.6337406, 41.9428687], "geometry": {"coordinates": [[-85.6337406, 41.9424929], [-85.6338939, 41.9428687]], "type": "LineString"}, "id": "420", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203974067, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638075, 41.949872, -85.634668, 41.9498803], "geometry": {"coordinates": [[-85.634668, 41.949875], [-85.6354595, 41.9498778], [-85.636188, 41.9498803], [-85.6374092, 41.9498755], [-85.638075, 41.949872]], "type": "LineString"}, "id": "421", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Bennett Street", "oneway": null, "osm_id": 17967208, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6399012, 41.9523817, -85.6392066, 41.9523886], "geometry": {"coordinates": [[-85.6392066, 41.9523886], [-85.6399012, 41.9523817]], "type": "LineString"}, "id": "422", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wheeler Street", "oneway": null, "osm_id": 818299135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6379373, 41.9583124, -85.6376092, 41.9591914], "geometry": {"coordinates": [[-85.6376116, 41.9583124], [-85.6376092, 41.9585073], [-85.6377528, 41.9585411], [-85.637768, 41.9585481], [-85.6377844, 41.9585629], [-85.6379338, 41.9587903], [-85.6379373, 41.9588294], [-85.6378999, 41.9591914]], "type": "LineString"}, "id": "423", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 770562235, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6544006, 41.9306291, -85.6524544, 41.9325282], "geometry": {"coordinates": [[-85.653541, 41.9325282], [-85.6535382, 41.9318336], [-85.6535371, 41.931569], [-85.6533195, 41.9315687], [-85.6531239, 41.9315684], [-85.6529412, 41.9315681], [-85.6527327, 41.9315678], [-85.6525822, 41.9315676], [-85.6525486, 41.9315676], [-85.6524621, 41.9315132], [-85.6524544, 41.930662], [-85.6525025, 41.9306348], [-85.6527224, 41.9306345], [-85.6529206, 41.9306343], [-85.6531136, 41.930634], [-85.6533246, 41.9306338], [-85.6535563, 41.9306335], [-85.6538291, 41.9306308], [-85.6540093, 41.9306303], [-85.6542126, 41.9306296], [-85.6543909, 41.9306291], [-85.6544006, 41.9315304], [-85.6543217, 41.9315747], [-85.6542075, 41.9315739], [-85.6540221, 41.9315725], [-85.6538265, 41.9315711], [-85.6535371, 41.931569]], "type": "LineString"}, "id": "424", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843131, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517418, 41.9307014, -85.6514005, 41.9313059], "geometry": {"coordinates": [[-85.6517418, 41.9313059], [-85.6517097, 41.9311351], [-85.6516926, 41.9307949], [-85.6516817, 41.9307636], [-85.6516624, 41.9307356], [-85.6516294, 41.9307155], [-85.6515868, 41.9307014], [-85.6515378, 41.9307021], [-85.6514915, 41.9307079], [-85.6514547, 41.9307237], [-85.6514005, 41.930756]], "type": "LineString"}, "id": "425", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 929692959, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642822, 41.9360551, -85.6427227, 41.9360564], "geometry": {"coordinates": [[-85.6427227, 41.9360551], [-85.642822, 41.9360564]], "type": "LineString"}, "id": "426", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158512, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": "building_passage", "width": null}, "type": "Feature"}, {"bbox": [-85.642441, 41.9360595, -85.6423229, 41.9360597], "geometry": {"coordinates": [[-85.6423229, 41.9360597], [-85.642441, 41.9360595]], "type": "LineString"}, "id": "427", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158513, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6599876, 41.9253801, -85.6593087, 41.9255834], "geometry": {"coordinates": [[-85.6599876, 41.9253801], [-85.6593087, 41.9255834]], "type": "LineString"}, "id": "428", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": null, "osm_id": 1010837499, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6574017, 41.9425622, -85.6562336, 41.9427637], "geometry": {"coordinates": [[-85.6574017, 41.9427637], [-85.6572032, 41.942646], [-85.6570584, 41.9426141], [-85.6565031, 41.9426141], [-85.6564441, 41.9425742], [-85.656361, 41.9425622], [-85.6562336, 41.9425622]], "type": "LineString"}, "id": "429", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771079, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504371, 41.938891, -85.650437, 41.9395839], "geometry": {"coordinates": [[-85.6504371, 41.938891], [-85.650437, 41.9394413], [-85.650437, 41.9395839]], "type": "LineString"}, "id": "430", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488055000, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521217, 41.9384842, -85.6517686, 41.9389745], "geometry": {"coordinates": [[-85.6517717, 41.9389745], [-85.6519443, 41.9389726], [-85.6521217, 41.9389706], [-85.6520944, 41.9385648], [-85.6519959, 41.9384842], [-85.651947, 41.9384875], [-85.6517686, 41.9384994]], "type": "LineString"}, "id": "431", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612665, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6356282, 41.9433182, -85.6354227, 41.9434326], "geometry": {"coordinates": [[-85.6354227, 41.9434326], [-85.6355248, 41.9433702], [-85.6356282, 41.9433182]], "type": "LineString"}, "id": "432", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203988296, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450922, 41.9487232, -85.6446931, 41.9490653], "geometry": {"coordinates": [[-85.6450922, 41.9490611], [-85.6447007, 41.9490653], [-85.644697, 41.9489013], [-85.6446931, 41.9487261], [-85.6450873, 41.9487232]], "type": "LineString"}, "id": "433", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 218004774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355913, 41.9596741, -85.6347749, 41.9601058], "geometry": {"coordinates": [[-85.6347872, 41.9600621], [-85.6350775, 41.960073], [-85.6351696, 41.9601058], [-85.6355219, 41.9601028], [-85.6355686, 41.9600889], [-85.6355766, 41.9600512], [-85.6355913, 41.9597197], [-85.635582, 41.9596959], [-85.6355379, 41.959681], [-85.6351349, 41.9596741], [-85.6350588, 41.9597277], [-85.6347749, 41.9597307]], "type": "LineString"}, "id": "434", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 870710882, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6515836, 41.9475306, -85.6513422, 41.9478815], "geometry": {"coordinates": [[-85.6513422, 41.9475306], [-85.6513728, 41.9478815], [-85.6515836, 41.9478792]], "type": "LineString"}, "id": "435", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942229, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6170655, 41.9585743, -85.6158923, 41.959089], "geometry": {"coordinates": [[-85.6170514, 41.9585743], [-85.6170655, 41.9586731], [-85.6170271, 41.9587457], [-85.61679, 41.9588546], [-85.6167132, 41.9588987], [-85.6165912, 41.9589117], [-85.6163784, 41.9589039], [-85.6162738, 41.9589117], [-85.6161552, 41.958961], [-85.6160506, 41.9590284], [-85.6158923, 41.959089]], "type": "LineString"}, "id": "436", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 907675124, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.625004, 41.9391225, -85.6249787, 41.9391994], "geometry": {"coordinates": [[-85.625004, 41.9391225], [-85.6249916, 41.9391603], [-85.6249787, 41.9391994]], "type": "LineString"}, "id": "437", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 936114253, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629033, 41.93913, -85.6248366, 41.9391615], "geometry": {"coordinates": [[-85.629033, 41.93913], [-85.6289353, 41.9391307], [-85.6284289, 41.9391345], [-85.6272081, 41.9391437], [-85.6271023, 41.9391445], [-85.6249916, 41.9391603], [-85.6248366, 41.9391615]], "type": "LineString"}, "id": "438", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Mechanic Street", "oneway": null, "osm_id": 17964467, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6326206, 41.943454, -85.6321742, 41.944042], "geometry": {"coordinates": [[-85.6326206, 41.944042], [-85.6322573, 41.9436196], [-85.632244, 41.9436037], [-85.6322224, 41.9435777], [-85.6321742, 41.943454]], "type": "LineString"}, "id": "439", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427762, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6326206, 41.944042, -85.6315532, 41.9443218], "geometry": {"coordinates": [[-85.6315532, 41.9443218], [-85.6321031, 41.9442181], [-85.6322243, 41.9441971], [-85.6323043, 41.9441922], [-85.6326206, 41.944042]], "type": "LineString"}, "id": "440", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370302, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6287875, 41.9574373, -85.6287871, 41.9575633], "geometry": {"coordinates": [[-85.6287875, 41.9575633], [-85.6287871, 41.9574373]], "type": "LineString"}, "id": "441", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 283411427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.652757, 41.9419461, -85.6517774, 41.9420387], "geometry": {"coordinates": [[-85.6517774, 41.9420151], [-85.6518279, 41.9419826], [-85.6518736, 41.941961], [-85.6519209, 41.941949], [-85.6519532, 41.9419484], [-85.6520783, 41.9419461], [-85.6521916, 41.941989], [-85.6521913, 41.9420387], [-85.652757, 41.9420247]], "type": "LineString"}, "id": "442", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786587, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.610649, 41.9465907, -85.610421, 41.9474959], "geometry": {"coordinates": [[-85.6104711, 41.9474959], [-85.6104693, 41.9473109], [-85.610421, 41.9469657], [-85.6104586, 41.9468121], [-85.6105498, 41.9466805], [-85.610649, 41.9465907]], "type": "LineString"}, "id": "443", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755113210, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6472393, 41.9354016, -85.646972, 41.93705], "geometry": {"coordinates": [[-85.6472393, 41.93705], [-85.6472258, 41.9363681], [-85.6471938, 41.9363254], [-85.6471881, 41.9354104], [-85.646972, 41.9354016]], "type": "LineString"}, "id": "444", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243989, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348604, 41.9417449, -85.6347306, 41.9418906], "geometry": {"coordinates": [[-85.6348604, 41.9418906], [-85.6348113, 41.9418101], [-85.6347306, 41.9417449]], "type": "LineString"}, "id": "445", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974073, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6153832, 41.94353, -85.615311, 41.9442769], "geometry": {"coordinates": [[-85.615311, 41.94353], [-85.6153832, 41.9439443], [-85.6153248, 41.9442769]], "type": "LineString"}, "id": "446", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 607644645, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6527491, 41.9323975, -85.6515905, 41.9458477], "geometry": {"coordinates": [[-85.6527491, 41.9324308], [-85.6520686, 41.9324339], [-85.6519243, 41.9323975], [-85.6519134, 41.932416], [-85.6519167, 41.9325405], [-85.6519186, 41.9326382], [-85.6519201, 41.9326901], [-85.6519345, 41.9334359], [-85.651934, 41.9334826], [-85.6519346, 41.9335492], [-85.6519384, 41.9336631], [-85.6519384, 41.9342781], [-85.6519302, 41.9343569], [-85.6519281, 41.9343997], [-85.6519276, 41.934493], [-85.6519375, 41.9345431], [-85.6519391, 41.9352649], [-85.6519437, 41.9358415], [-85.6519436, 41.9359209], [-85.651942, 41.9359898], [-85.6519498, 41.9369463], [-85.6519447, 41.937881], [-85.6519479, 41.9380494], [-85.651947, 41.9384875], [-85.6519443, 41.9389726], [-85.6519448, 41.9392237], [-85.6519546, 41.9396027], [-85.651961, 41.9396821], [-85.6519644, 41.9397661], [-85.6519618, 41.9398837], [-85.6519526, 41.9404529], [-85.6519501, 41.9406308], [-85.6519546, 41.9408411], [-85.6519479, 41.9411743], [-85.6519515, 41.9413327], [-85.6519529, 41.9415133], [-85.6519481, 41.9417641], [-85.6519532, 41.9419484], [-85.6519567, 41.9422076], [-85.6519602, 41.942327], [-85.6519572, 41.9424625], [-85.6519601, 41.9426215], [-85.6519633, 41.942921], [-85.6519531, 41.9431603], [-85.6519463, 41.9433336], [-85.6519254, 41.9436276], [-85.6519067, 41.9438561], [-85.651906, 41.9439423], [-85.6518883, 41.9440996], [-85.6518495, 41.9443933], [-85.6518185, 41.9445566], [-85.6518087, 41.944643], [-85.6517598, 41.9448828], [-85.651722, 41.9451305], [-85.6516478, 41.9454687], [-85.6516215, 41.9456241], [-85.6516032, 41.9457275], [-85.6515905, 41.9458477]], "type": "LineString"}, "id": "447", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550679, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632801, 41.9436973, -85.6324881, 41.9440586], "geometry": {"coordinates": [[-85.6324881, 41.9436973], [-85.6327269, 41.9439731], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "448", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 847427774, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643219, 41.949261, -85.643195, 41.950829], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.6432033, 41.9498047], [-85.6432121, 41.9503811], [-85.643219, 41.950829]], "type": "LineString"}, "id": "449", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Douglas Avenue", "oneway": null, "osm_id": 379694370, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263682, 41.9311792, -85.6263582, 41.9321695], "geometry": {"coordinates": [[-85.6263674, 41.9321695], [-85.6263582, 41.9320794], [-85.6263632, 41.9315147], [-85.6263682, 41.9311792]], "type": "LineString"}, "id": "450", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199682, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6441108, 41.954987, -85.6418673, 41.9555861], "geometry": {"coordinates": [[-85.6441108, 41.9555861], [-85.6426838, 41.9550637], [-85.6425511, 41.9552083], [-85.6418673, 41.954987]], "type": "LineString"}, "id": "451", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776873, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637473, 41.955919, -85.634726, 41.955921], "geometry": {"coordinates": [[-85.634726, 41.955921], [-85.636276, 41.955919], [-85.637473, 41.95592]], "type": "LineString"}, "id": "452", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Adams Street", "oneway": null, "osm_id": 17967465, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628469, 41.9485589, -85.6278505, 41.9487126], "geometry": {"coordinates": [[-85.628469, 41.948674], [-85.6284447, 41.9486874], [-85.6284179, 41.9486996], [-85.6283829, 41.9487091], [-85.6283303, 41.9487126], [-85.6282638, 41.9487057], [-85.6282112, 41.948697], [-85.6281657, 41.9486796], [-85.6281167, 41.9486596], [-85.6280641, 41.9486423], [-85.6280244, 41.9486249], [-85.6279567, 41.9485971], [-85.6278505, 41.9485589]], "type": "LineString"}, "id": "453", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": null, "oneway": null, "osm_id": 571300380, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315778, 41.9443959, -85.6312065, 41.9444675], "geometry": {"coordinates": [[-85.6312065, 41.9444675], [-85.6315778, 41.9443959]], "type": "LineString"}, "id": "454", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "East Michigan Avenue", "oneway": null, "osm_id": 134150802, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6308731, 41.9378614, -85.6306407, 41.9381985], "geometry": {"coordinates": [[-85.6306532, 41.9381985], [-85.6306407, 41.9378698], [-85.6308731, 41.9378614]], "type": "LineString"}, "id": "455", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915501172, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322101, 41.9328273, -85.6322024, 41.933153], "geometry": {"coordinates": [[-85.6322101, 41.933153], [-85.6322024, 41.9328273]], "type": "LineString"}, "id": "456", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 774522887, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622643, 41.940128, -85.622643, 41.940635], "geometry": {"coordinates": [[-85.622643, 41.940128], [-85.622643, 41.940635]], "type": "LineString"}, "id": "457", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Green Street", "oneway": null, "osm_id": 17968113, "osm_type": "ways_line", "smoothness": null, "surface": "compacted", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.616526, 41.943048, -85.6159374, 41.945602], "geometry": {"coordinates": [[-85.616507, 41.943048], [-85.6165019, 41.9436452], [-85.616526, 41.943788], [-85.616504, 41.944002], [-85.6164685, 41.9442121], [-85.6159937, 41.9447348], [-85.6159374, 41.9449559], [-85.6159477, 41.9452077], [-85.6160772, 41.9454789], [-85.616136, 41.945602]], "type": "LineString"}, "id": "458", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962834, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62156, 41.9474354, -85.6211873, 41.9483424], "geometry": {"coordinates": [[-85.6213182, 41.9474354], [-85.6212872, 41.9479472], [-85.6211873, 41.9480286], [-85.6211945, 41.9483424], [-85.62156, 41.948333]], "type": "LineString"}, "id": "459", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "George Cole Drive", "oneway": null, "osm_id": 768080051, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348319, 41.9614829, -85.630972, 41.961495], "geometry": {"coordinates": [[-85.630972, 41.961495], [-85.631421, 41.961494], [-85.632182, 41.961493], [-85.6338879, 41.9614886], [-85.6348319, 41.9614829]], "type": "LineString"}, "id": "460", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kellogg Avenue", "oneway": null, "osm_id": 17967215, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6179589, 41.9526865, -85.6175543, 41.9528783], "geometry": {"coordinates": [[-85.6175543, 41.9526865], [-85.6179589, 41.9528783]], "type": "LineString"}, "id": "461", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839365, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634726, 41.955921, -85.6333299, 41.9559271], "geometry": {"coordinates": [[-85.6333299, 41.9559271], [-85.6340877, 41.9559238], [-85.634726, 41.955921]], "type": "LineString"}, "id": "462", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Adams Street", "oneway": null, "osm_id": 17967970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347273, 41.95538, -85.6342513, 41.9553876], "geometry": {"coordinates": [[-85.6347273, 41.95538], [-85.6342513, 41.9553876]], "type": "LineString"}, "id": "463", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416372, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6118411, 41.9547642, -85.6118363, 41.9548227], "geometry": {"coordinates": [[-85.6118411, 41.9547642], [-85.6118363, 41.9548227]], "type": "LineString"}, "id": "464", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652967184, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6118505, 41.9548227, -85.610665, 41.955183], "geometry": {"coordinates": [[-85.6118363, 41.9548227], [-85.6118505, 41.955183], [-85.6116226, 41.9551819], [-85.6108633, 41.955178], [-85.610665, 41.955177]], "type": "LineString"}, "id": "465", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179345, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6137873, 41.9556787, -85.6136206, 41.9562497], "geometry": {"coordinates": [[-85.6136362, 41.9562497], [-85.6136206, 41.9557015], [-85.6137873, 41.9556787]], "type": "LineString"}, "id": "466", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179339, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6250529, 41.9607536, -85.6249362, 41.9609441], "geometry": {"coordinates": [[-85.6249362, 41.9609441], [-85.6249689, 41.9608957], [-85.6250193, 41.9608095], [-85.6250529, 41.9607536]], "type": "LineString"}, "id": "467", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550710, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6607188, 41.9310794, -85.6599381, 41.9324537], "geometry": {"coordinates": [[-85.6603084, 41.9324537], [-85.6602924, 41.9318352], [-85.6606749, 41.9318282], [-85.6607063, 41.9318049], [-85.6607188, 41.9317582], [-85.6607059, 41.9312307], [-85.6607032, 41.9311144], [-85.6606906, 41.9310888], [-85.6606498, 41.9310794], [-85.6599945, 41.9310981], [-85.6599538, 41.9311074], [-85.6599381, 41.9311378], [-85.6599425, 41.9312466], [-85.6599632, 41.9317536], [-85.6599883, 41.9317956], [-85.6600384, 41.9318189], [-85.6602924, 41.9318352]], "type": "LineString"}, "id": "468", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782376531, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6607059, 41.9312307, -85.6599425, 41.9312466], "geometry": {"coordinates": [[-85.6607059, 41.9312307], [-85.6599425, 41.9312466]], "type": "LineString"}, "id": "469", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 903848918, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642862, 41.9271949, -85.6411335, 41.9273717], "geometry": {"coordinates": [[-85.642862, 41.9273717], [-85.6428586, 41.9271949], [-85.6427814, 41.9271953], [-85.6411335, 41.9272048]], "type": "LineString"}, "id": "470", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "no", "osm_id": 1193143990, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502532, 41.9459632, -85.6492935, 41.9465908], "geometry": {"coordinates": [[-85.6502532, 41.9465565], [-85.6500083, 41.9465867], [-85.6499581, 41.9465882], [-85.6492935, 41.9465908], [-85.6492949, 41.9463745], [-85.6492962, 41.9461809], [-85.6492976, 41.9459632], [-85.6502272, 41.9459986]], "type": "LineString"}, "id": "471", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942210, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6559601, 41.9397068, -85.6557721, 41.9428041], "geometry": {"coordinates": [[-85.655777, 41.9428041], [-85.6557753, 41.942632], [-85.6557747, 41.9425722], [-85.6557736, 41.9424606], [-85.6557721, 41.9423088], [-85.6557727, 41.9421533], [-85.6557816, 41.9419876], [-85.6558085, 41.9418001], [-85.6558087, 41.9416684], [-85.6558091, 41.9414769], [-85.6558094, 41.9413153], [-85.6558097, 41.9411616], [-85.6558101, 41.9409781], [-85.6558103, 41.9408584], [-85.6558104, 41.9408023], [-85.6558591, 41.9406435], [-85.655936, 41.9403927], [-85.6559601, 41.9400919], [-85.6559419, 41.9397068]], "type": "LineString"}, "id": "472", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208622576, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520164, 41.9392228, -85.6517721, 41.9393423], "geometry": {"coordinates": [[-85.6517721, 41.9392259], [-85.6519448, 41.9392237], [-85.652012, 41.9392228], [-85.6520164, 41.9393423]], "type": "LineString"}, "id": "473", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488055002, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557548, 41.9221252, -85.6546959, 41.9221559], "geometry": {"coordinates": [[-85.6557548, 41.9221252], [-85.6546959, 41.9221559]], "type": "LineString"}, "id": "474", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 440106301, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430981, 41.9418927, -85.6421426, 41.9423895], "geometry": {"coordinates": [[-85.6430981, 41.9423756], [-85.6421426, 41.9423895], [-85.6421587, 41.9418927]], "type": "LineString"}, "id": "475", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942128, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420009, 41.9426698, -85.6419851, 41.943851], "geometry": {"coordinates": [[-85.6420009, 41.943851], [-85.6419914, 41.943139], [-85.6419877, 41.9428626], [-85.6419851, 41.9426698]], "type": "LineString"}, "id": "476", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1043615988, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489578, 41.9425201, -85.6487523, 41.942523], "geometry": {"coordinates": [[-85.6487523, 41.942523], [-85.6489578, 41.9425201]], "type": "LineString"}, "id": "477", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 17965146, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640039, 41.930416, -85.638498, 41.931281], "geometry": {"coordinates": [[-85.638498, 41.930416], [-85.638817, 41.931253], [-85.639052, 41.931281], [-85.6397, 41.931179], [-85.6399082, 41.931152], [-85.640039, 41.931135]], "type": "LineString"}, "id": "478", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963122, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642299, 41.936984, -85.640003, 41.936988], "geometry": {"coordinates": [[-85.640003, 41.936988], [-85.641148, 41.936984], [-85.642299, 41.936988]], "type": "LineString"}, "id": "479", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Buck Street", "oneway": null, "osm_id": 17965905, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504523, 41.9306042, -85.6504523, 41.9314162], "geometry": {"coordinates": [[-85.6504523, 41.9314162], [-85.6504523, 41.9306042]], "type": "LineString"}, "id": "480", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612677, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504866, 41.943476, -85.6497338, 41.9434825], "geometry": {"coordinates": [[-85.6504866, 41.9434825], [-85.6497338, 41.943476]], "type": "LineString"}, "id": "481", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942196, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512738, 41.9425959, -85.6512685, 41.9426514], "geometry": {"coordinates": [[-85.6512738, 41.9425959], [-85.6512685, 41.9426514]], "type": "LineString"}, "id": "482", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550684, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508384, 41.9493712, -85.6498891, 41.9505436], "geometry": {"coordinates": [[-85.6508384, 41.9493712], [-85.6506681, 41.9493933], [-85.6505696, 41.949406], [-85.650507, 41.9494272], [-85.6504483, 41.9494751], [-85.6503645, 41.9495882], [-85.6503554, 41.9496005], [-85.6502853, 41.9496851], [-85.6502094, 41.9496922], [-85.6501431, 41.9496809], [-85.6500825, 41.9496612], [-85.6499119, 41.9498458], [-85.6498948, 41.9498698], [-85.6498891, 41.9499078], [-85.6499024, 41.9504562], [-85.6499839, 41.9505436]], "type": "LineString"}, "id": "483", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 782636433, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186924, 41.9581453, -85.61592, 41.9581603], "geometry": {"coordinates": [[-85.6186924, 41.9581453], [-85.61592, 41.9581603]], "type": "LineString"}, "id": "484", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sable River Road", "oneway": null, "osm_id": 17966857, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627401, 41.943496, -85.624884, 41.943509], "geometry": {"coordinates": [[-85.624884, 41.943508], [-85.625191, 41.943509], [-85.627401, 41.943496]], "type": "LineString"}, "id": "485", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "2nd Avenue", "oneway": null, "osm_id": 17965845, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6198423, 41.9437848, -85.6142772, 41.9454804], "geometry": {"coordinates": [[-85.619472, 41.9437848], [-85.6198423, 41.9441763], [-85.6198296, 41.94473], [-85.6194944, 41.9449233], [-85.6188775, 41.9449645], [-85.6183982, 41.9449708], [-85.6183919, 41.9449947], [-85.6183614, 41.9452441], [-85.618296, 41.945338], [-85.618312, 41.945477], [-85.6176031, 41.9454776], [-85.6170866, 41.945478], [-85.6160772, 41.9454789], [-85.6154361, 41.9454794], [-85.6142772, 41.9454804]], "type": "LineString"}, "id": "486", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528693, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6311831, 41.9411078, -85.6272858, 41.9446081], "geometry": {"coordinates": [[-85.628989, 41.9415866], [-85.6280959, 41.9413043], [-85.6278545, 41.9412415], [-85.6273945, 41.9411178], [-85.6273475, 41.9411078], [-85.627318, 41.9411108], [-85.6272858, 41.9411287], [-85.6273408, 41.9412764], [-85.6273904, 41.941408], [-85.6274146, 41.9415218], [-85.6274186, 41.9417263], [-85.6274253, 41.9422151], [-85.6274266, 41.9422605], [-85.6274293, 41.9423018], [-85.6274374, 41.9432196], [-85.6274479, 41.94325], [-85.6274749, 41.9433283], [-85.6274803, 41.9436306], [-85.6274816, 41.9436715], [-85.627483, 41.9437173], [-85.6274857, 41.9441044], [-85.6274897, 41.9441562], [-85.6274964, 41.9446081], [-85.6285679, 41.9445971], [-85.628636, 41.9445992], [-85.628694, 41.9445951], [-85.6298554, 41.9445832], [-85.6299332, 41.9445792], [-85.6299948, 41.9445812], [-85.6300727, 41.9445812], [-85.6305528, 41.9444994], [-85.6311831, 41.9443817]], "type": "LineString"}, "id": "487", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550711, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344154, 41.9456295, -85.6342589, 41.9457778], "geometry": {"coordinates": [[-85.6344154, 41.9457778], [-85.6343309, 41.9456978], [-85.6342589, 41.9456295]], "type": "LineString"}, "id": "488", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427769, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6219584, 41.9324107, -85.6215242, 41.9327071], "geometry": {"coordinates": [[-85.621721, 41.9327071], [-85.6215242, 41.9325716], [-85.621825, 41.9324107], [-85.6219551, 41.9324882], [-85.6219584, 41.9327056]], "type": "LineString"}, "id": "489", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945136, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6235042, 41.9325177, -85.6229554, 41.9325237], "geometry": {"coordinates": [[-85.6235042, 41.9325177], [-85.6229554, 41.9325237]], "type": "LineString"}, "id": "490", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377972, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6169163, 41.947799, -85.6152444, 41.9478007], "geometry": {"coordinates": [[-85.6152444, 41.947799], [-85.6154338, 41.9477992], [-85.6169163, 41.9478007]], "type": "LineString"}, "id": "491", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 203837942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624366, 41.9524258, -85.6239036, 41.9524672], "geometry": {"coordinates": [[-85.624366, 41.9524258], [-85.6239036, 41.9524672]], "type": "LineString"}, "id": "492", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946763077, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628439, 41.9391345, -85.6284289, 41.940086], "geometry": {"coordinates": [[-85.6284289, 41.9391345], [-85.628439, 41.940086]], "type": "LineString"}, "id": "493", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Street", "oneway": null, "osm_id": 17967776, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336351, 41.9435757, -85.6333999, 41.9437132], "geometry": {"coordinates": [[-85.6336351, 41.9435757], [-85.6333999, 41.9437132]], "type": "LineString"}, "id": "494", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 847427776, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635086, 41.9418301, -85.634518, 41.9419659], "geometry": {"coordinates": [[-85.634518, 41.9418301], [-85.6347213, 41.9419324], [-85.6348604, 41.9418906], [-85.6349535, 41.9418771], [-85.6350135, 41.9419421], [-85.635086, 41.9419659]], "type": "LineString"}, "id": "495", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974072, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351753, 41.9451672, -85.6345746, 41.9455744], "geometry": {"coordinates": [[-85.6345746, 41.9455744], [-85.6351753, 41.9451672]], "type": "LineString"}, "id": "496", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Mural Mall", "oneway": null, "osm_id": 232071551, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6360278, 41.9583079, -85.6347706, 41.9593383], "geometry": {"coordinates": [[-85.6347706, 41.9593383], [-85.635055, 41.9593361], [-85.6360173, 41.9593286], [-85.6360261, 41.9584779], [-85.6360278, 41.9583079]], "type": "LineString"}, "id": "497", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208627244, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6431041, 41.9429999, -85.6428209, 41.9430023], "geometry": {"coordinates": [[-85.6428209, 41.9429999], [-85.6431041, 41.9430023]], "type": "LineString"}, "id": "498", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056571144, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644381, 41.943831, -85.639454, 41.943871], "geometry": {"coordinates": [[-85.639454, 41.943871], [-85.640676, 41.943867], [-85.6408071, 41.9438654], [-85.641889, 41.943852], [-85.6420009, 41.943851], [-85.643106, 41.943841], [-85.644381, 41.943831]], "type": "LineString"}, "id": "499", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "French Street", "oneway": null, "osm_id": 17968193, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477466, 41.9458724, -85.6463269, 41.9458902], "geometry": {"coordinates": [[-85.6477466, 41.9458724], [-85.6474022, 41.9458833], [-85.6465402, 41.9458888], [-85.6463269, 41.9458902]], "type": "LineString"}, "id": "500", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sophie Street", "oneway": null, "osm_id": 203968028, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6479747, 41.9440571, -85.6469334, 41.9440825], "geometry": {"coordinates": [[-85.6479747, 41.9440825], [-85.6479167, 41.9440571], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "501", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hannah Street", "oneway": null, "osm_id": 203968025, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490788, 41.9491652, -85.6474524, 41.9493669], "geometry": {"coordinates": [[-85.6490788, 41.9491652], [-85.6490536, 41.9493669], [-85.6483929, 41.9493589], [-85.6479966, 41.9493539], [-85.6474681, 41.9493669], [-85.6474524, 41.9491881]], "type": "LineString"}, "id": "502", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 909916184, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310172, 41.932148, -85.6272913, 41.932161], "geometry": {"coordinates": [[-85.6272913, 41.9321591], [-85.6276689, 41.9321598], [-85.62834, 41.932161], [-85.6290302, 41.9321546], [-85.6296791, 41.9321485], [-85.6310172, 41.932148]], "type": "LineString"}, "id": "503", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pearl Street", "oneway": null, "osm_id": 134150774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.617372, 41.9346369, -85.6173018, 41.940161], "geometry": {"coordinates": [[-85.6173018, 41.9346369], [-85.6173384, 41.9356126], [-85.617371, 41.936243], [-85.617337, 41.936299], [-85.617321, 41.936373], [-85.6173562, 41.9366969], [-85.6173635, 41.9377414], [-85.6173696, 41.9381886], [-85.617372, 41.938535], [-85.6173674, 41.9391092], [-85.617363, 41.9396617], [-85.617359, 41.940161]], "type": "LineString"}, "id": "504", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "14th Street", "oneway": null, "osm_id": 17965366, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507207, 41.9415908, -85.6499197, 41.9417671], "geometry": {"coordinates": [[-85.6504915, 41.9417636], [-85.6499197, 41.9417671], [-85.6499251, 41.9415985], [-85.6503969, 41.9415975], [-85.6507207, 41.9415908]], "type": "LineString"}, "id": "505", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942143, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6498468, 41.9453267, -85.6493354, 41.9453368], "geometry": {"coordinates": [[-85.6498468, 41.9453368], [-85.6493354, 41.9453267]], "type": "LineString"}, "id": "506", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942207, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6505637, 41.942786, -85.6500239, 41.9431138], "geometry": {"coordinates": [[-85.6500239, 41.9431138], [-85.6505637, 41.9431006], [-85.6505573, 41.942786], [-85.6504534, 41.9427886]], "type": "LineString"}, "id": "507", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942223, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6505996, 41.9423584, -85.6503067, 41.9423607], "geometry": {"coordinates": [[-85.6503067, 41.9423584], [-85.6505996, 41.9423607]], "type": "LineString"}, "id": "508", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550671, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6455995, 41.9386225, -85.6452037, 41.9388166], "geometry": {"coordinates": [[-85.6455995, 41.9386225], [-85.6454666, 41.938627], [-85.6453003, 41.9387268], [-85.6452037, 41.9388166]], "type": "LineString"}, "id": "509", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643124, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6509763, 41.9458667, -85.650657, 41.9460063], "geometry": {"coordinates": [[-85.6509763, 41.9460063], [-85.650657, 41.945976], [-85.6506914, 41.9458667]], "type": "LineString"}, "id": "510", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056570279, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510257, 41.9462527, -85.6507842, 41.9469423], "geometry": {"coordinates": [[-85.6509062, 41.9462527], [-85.650842, 41.9465604], [-85.6508111, 41.9466851], [-85.6507842, 41.9468177], [-85.6507855, 41.9468598], [-85.6507913, 41.94689], [-85.6508084, 41.9469063], [-85.6508397, 41.9469282], [-85.650871, 41.9469378], [-85.6509018, 41.9469423], [-85.650931, 41.9469423], [-85.6509701, 41.9469358], [-85.6510257, 41.9469171]], "type": "LineString"}, "id": "511", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892831, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513522, 41.9491148, -85.6512216, 41.9494369], "geometry": {"coordinates": [[-85.6513451, 41.9491148], [-85.6513522, 41.9493731], [-85.6513353, 41.9494032], [-85.6513163, 41.9494201], [-85.651286, 41.9494342], [-85.6512216, 41.9494369]], "type": "LineString"}, "id": "512", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636430, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489199, 41.9539941, -85.6484909, 41.9542316], "geometry": {"coordinates": [[-85.6484909, 41.9542062], [-85.648503, 41.9540245], [-85.6485889, 41.9539941], [-85.6488218, 41.9539941], [-85.6489056, 41.9540321], [-85.6489199, 41.9540944], [-85.6489137, 41.9542316]], "type": "LineString"}, "id": "513", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871047088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458631, 41.9418314, -85.6455559, 41.9418346], "geometry": {"coordinates": [[-85.6458631, 41.9418314], [-85.6455559, 41.9418346]], "type": "LineString"}, "id": "514", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 382527767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501945, 41.944671, -85.6495375, 41.9446778], "geometry": {"coordinates": [[-85.6501945, 41.944671], [-85.6495375, 41.9446778]], "type": "LineString"}, "id": "515", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942202, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6460315, 41.9489193, -85.6456971, 41.9492137], "geometry": {"coordinates": [[-85.6460234, 41.9492137], [-85.6460272, 41.9491423], [-85.6460315, 41.9490622], [-85.6456971, 41.9490523], [-85.6457052, 41.9489193]], "type": "LineString"}, "id": "516", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942810, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490095, 41.941807, -85.6486413, 41.9418109], "geometry": {"coordinates": [[-85.6490095, 41.9418109], [-85.6486413, 41.941807]], "type": "LineString"}, "id": "517", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942151, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502588, 41.9380275, -85.6494298, 41.9389256], "geometry": {"coordinates": [[-85.6502588, 41.9386272], [-85.6500463, 41.9386272], [-85.6500352, 41.9388472], [-85.6499677, 41.9389211], [-85.649564, 41.9389256], [-85.6494953, 41.9388608], [-85.6494659, 41.9385012], [-85.6494327, 41.9384282], [-85.6494298, 41.9380286], [-85.6500082, 41.9380275], [-85.6500463, 41.9386272]], "type": "LineString"}, "id": "518", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870664773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6519666, 41.9451272, -85.6515409, 41.9451333], "geometry": {"coordinates": [[-85.6515409, 41.9451272], [-85.651722, 41.9451305], [-85.6519666, 41.9451333]], "type": "LineString"}, "id": "519", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612657, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497768, 41.9425122, -85.6488177, 41.9433241], "geometry": {"coordinates": [[-85.6488177, 41.9433241], [-85.6489736, 41.9433211], [-85.6491631, 41.9433174], [-85.6497526, 41.9433061], [-85.649774, 41.9426271], [-85.6497768, 41.9425122]], "type": "LineString"}, "id": "520", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942215, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420148, 41.9425864, -85.6418749, 41.9476126], "geometry": {"coordinates": [[-85.6418749, 41.9425864], [-85.6418758, 41.9426709], [-85.641878, 41.9428637], [-85.641881, 41.9431389], [-85.641889, 41.943852], [-85.641922, 41.945121], [-85.641946, 41.946413], [-85.6419503, 41.9474767], [-85.641957, 41.9475276], [-85.6419798, 41.9475745], [-85.6420148, 41.9476126]], "type": "LineString"}, "id": "521", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Grant Avenue", "oneway": null, "osm_id": 17965444, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6409017, 41.9433904, -85.6406695, 41.9433917], "geometry": {"coordinates": [[-85.6409017, 41.9433917], [-85.6407978, 41.9433911], [-85.6406695, 41.9433904]], "type": "LineString"}, "id": "522", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615983, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6428209, 41.9427582, -85.6428053, 41.9429999], "geometry": {"coordinates": [[-85.6428209, 41.9429999], [-85.6428053, 41.9427582]], "type": "LineString"}, "id": "523", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056571140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443702, 41.9425687, -85.6441525, 41.9431535], "geometry": {"coordinates": [[-85.6441525, 41.9425687], [-85.6441542, 41.94265], [-85.6441644, 41.9431502], [-85.6443702, 41.9431535]], "type": "LineString"}, "id": "524", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486385874, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6438688, 41.9425705, -85.6438642, 41.9426991], "geometry": {"coordinates": [[-85.6438642, 41.9425705], [-85.6438671, 41.9426529], [-85.6438688, 41.9426991]], "type": "LineString"}, "id": "525", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056572470, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6434799, 41.9427236, -85.6431104, 41.9428563], "geometry": {"coordinates": [[-85.6431104, 41.9428543], [-85.6433136, 41.9428563], [-85.6433123, 41.9427236], [-85.6434799, 41.9427286]], "type": "LineString"}, "id": "526", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486785502, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635044, 41.938975, -85.6344894, 41.9389758], "geometry": {"coordinates": [[-85.635044, 41.9389758], [-85.6344894, 41.938975]], "type": "LineString"}, "id": "527", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907666274, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342487, 41.944392, -85.6331258, 41.9454489], "geometry": {"coordinates": [[-85.6331258, 41.944392], [-85.6333716, 41.9446443], [-85.633567, 41.9448266], [-85.6342487, 41.9454489]], "type": "LineString"}, "id": "528", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427770, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6387088, 41.9442912, -85.6375859, 41.9455546], "geometry": {"coordinates": [[-85.6383346, 41.9442912], [-85.6382523, 41.9444134], [-85.6381286, 41.9445969], [-85.6380436, 41.9446706], [-85.6379763, 41.9446963], [-85.6379302, 41.9447564], [-85.6379225, 41.9450825], [-85.6378936, 41.9451712], [-85.6376686, 41.9453185], [-85.6375859, 41.9454544], [-85.6376571, 41.9455245], [-85.6377321, 41.9455546], [-85.6380506, 41.9455301], [-85.6383567, 41.9454039], [-85.6387088, 41.9452631]], "type": "LineString"}, "id": "529", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972938, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339222, 41.9473191, -85.6339169, 41.9486225], "geometry": {"coordinates": [[-85.6339222, 41.9486225], [-85.6339169, 41.9473191]], "type": "LineString"}, "id": "530", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 210822778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503899, 41.94599, -85.6502532, 41.9465565], "geometry": {"coordinates": [[-85.6503899, 41.94599], [-85.6503721, 41.9461802], [-85.6503332, 41.9463751], [-85.6502913, 41.9465154], [-85.6502532, 41.9465565]], "type": "LineString"}, "id": "531", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942208, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651729, 41.9454477, -85.6514744, 41.9454827], "geometry": {"coordinates": [[-85.6514744, 41.9454477], [-85.6516478, 41.9454687], [-85.651729, 41.9454827]], "type": "LineString"}, "id": "532", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612656, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511242, 41.9493712, -85.6508384, 41.949437], "geometry": {"coordinates": [[-85.6511242, 41.9494325], [-85.650941, 41.949437], [-85.6508974, 41.9494258], [-85.6508652, 41.9494088], [-85.6508384, 41.9493712]], "type": "LineString"}, "id": "533", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636432, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6461249, 41.9547911, -85.64597, 41.9550378], "geometry": {"coordinates": [[-85.6461249, 41.9547911], [-85.64597, 41.9550378]], "type": "LineString"}, "id": "534", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "trunk", "layer": "1", "name": "US-131", "oneway": "yes", "osm_id": 134151785, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333299, 41.955913, -85.630904, 41.9559271], "geometry": {"coordinates": [[-85.6333299, 41.9559271], [-85.6321108, 41.95592], [-85.630904, 41.955913]], "type": "LineString"}, "id": "535", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Adams Street", "oneway": null, "osm_id": 17966214, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321351, 41.9581654, -85.631895, 41.9581691], "geometry": {"coordinates": [[-85.6321351, 41.9581654], [-85.631895, 41.9581691]], "type": "LineString"}, "id": "536", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 776693873, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629467, 41.9546903, -85.6294656, 41.9551888], "geometry": {"coordinates": [[-85.6294659, 41.9551888], [-85.629467, 41.9547698], [-85.6294656, 41.9546903]], "type": "LineString"}, "id": "537", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699261, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6484315, 41.9370246, -85.6470551, 41.9372687], "geometry": {"coordinates": [[-85.6470551, 41.9370246], [-85.6472393, 41.93705], [-85.6477548, 41.9371412], [-85.6479642, 41.9371807], [-85.6481929, 41.9372238], [-85.6484315, 41.9372687]], "type": "LineString"}, "id": "538", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243987, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503814, 41.9442885, -85.6501851, 41.945804], "geometry": {"coordinates": [[-85.6502225, 41.945804], [-85.6502031, 41.9450188], [-85.6501987, 41.9448418], [-85.6501945, 41.944671], [-85.6501904, 41.9445072], [-85.6501851, 41.9442926], [-85.6503814, 41.9442885]], "type": "LineString"}, "id": "539", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942189, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504899, 41.9436606, -85.6496414, 41.9436641], "geometry": {"coordinates": [[-85.6504899, 41.9436641], [-85.6496414, 41.9436606]], "type": "LineString"}, "id": "540", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942197, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6515825, 41.9475204, -85.6511925, 41.9475468], "geometry": {"coordinates": [[-85.6515825, 41.9475468], [-85.6513422, 41.9475306], [-85.6511925, 41.9475204]], "type": "LineString"}, "id": "541", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942228, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6325023, 41.941103, -85.630986, 41.941786], "geometry": {"coordinates": [[-85.6318289, 41.9415077], [-85.6318592, 41.9414105], [-85.6318941, 41.9413551], [-85.6322362, 41.9411183], [-85.6323502, 41.941103], [-85.6324532, 41.9411607], [-85.6325023, 41.9412585], [-85.6324801, 41.9413421], [-85.632446, 41.9413792], [-85.632412, 41.9414164], [-85.6321665, 41.9415554], [-85.6320111, 41.9415866], [-85.6318779, 41.9415447], [-85.6318289, 41.9415077], [-85.6316633, 41.9415128], [-85.6313962, 41.9416114], [-85.630986, 41.941786]], "type": "LineString"}, "id": "542", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963676, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512738, 41.9423923, -85.6512697, 41.9425959], "geometry": {"coordinates": [[-85.6512719, 41.9423923], [-85.6512697, 41.9425029], [-85.6512738, 41.9425959]], "type": "LineString"}, "id": "543", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550685, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6266692, 41.958692, -85.6264809, 41.9590665], "geometry": {"coordinates": [[-85.6264809, 41.9590665], [-85.6266692, 41.958692]], "type": "LineString"}, "id": "544", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550699, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6324881, 41.9434696, -85.6322909, 41.9436973], "geometry": {"coordinates": [[-85.6322909, 41.9434696], [-85.6323597, 41.943549], [-85.6324881, 41.9436973]], "type": "LineString"}, "id": "545", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 134150801, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436741, 41.9555848, -85.6415596, 41.9563278], "geometry": {"coordinates": [[-85.6415596, 41.9555848], [-85.6436741, 41.9563278]], "type": "LineString"}, "id": "546", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776874, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315532, 41.9443218, -85.6311831, 41.9443817], "geometry": {"coordinates": [[-85.6311831, 41.9443817], [-85.6315532, 41.9443218]], "type": "LineString"}, "id": "547", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 847370303, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6249416, 41.9607546, -85.6234315, 41.9619772], "geometry": {"coordinates": [[-85.6234315, 41.9619772], [-85.624271, 41.9608324], [-85.6243166, 41.9607905], [-85.6243998, 41.9607546], [-85.6248665, 41.9609222], [-85.6249174, 41.960968], [-85.6249416, 41.960973]], "type": "LineString"}, "id": "548", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550701, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6231422, 41.9488882, -85.6231359, 41.9492381], "geometry": {"coordinates": [[-85.6231422, 41.9492381], [-85.6231359, 41.9488882]], "type": "LineString"}, "id": "549", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964874, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621459, 41.944756, -85.620172, 41.945627], "geometry": {"coordinates": [[-85.621459, 41.944756], [-85.621305, 41.944782], [-85.621174, 41.944819], [-85.621029, 41.944871], [-85.620741, 41.945011], [-85.620616, 41.945085], [-85.620506, 41.945172], [-85.620394, 41.945273], [-85.620316, 41.94536], [-85.620257, 41.945452], [-85.620212, 41.945535], [-85.620172, 41.945627]], "type": "LineString"}, "id": "550", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 17966773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6252031, 41.9607895, -85.6251039, 41.960981], "geometry": {"coordinates": [[-85.6252031, 41.9607895], [-85.6251442, 41.9609031], [-85.6251039, 41.960981]], "type": "LineString"}, "id": "551", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550698, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6251435, 41.9609203, -85.6249415, 41.9614778], "geometry": {"coordinates": [[-85.6251435, 41.9614778], [-85.6249884, 41.9612984], [-85.6249589, 41.9612569], [-85.6249481, 41.9612108], [-85.6249415, 41.961166], [-85.6249466, 41.9611233], [-85.6249598, 41.9610811], [-85.6249846, 41.9610254], [-85.6250025, 41.9609909], [-85.6250384, 41.9609203]], "type": "LineString"}, "id": "552", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "New Jersey Court", "oneway": null, "osm_id": 203968016, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6203997, 41.9522096, -85.620073, 41.9524593], "geometry": {"coordinates": [[-85.620073, 41.9524484], [-85.6202281, 41.9524593], [-85.620273, 41.9524436], [-85.620343, 41.9523876], [-85.6203931, 41.9523081], [-85.6203997, 41.9522541], [-85.6203799, 41.9522325], [-85.6203298, 41.9522226], [-85.6201163, 41.9522096]], "type": "LineString"}, "id": "553", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947200038, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159142, 41.9577578, -85.6153676, 41.9593891], "geometry": {"coordinates": [[-85.6159142, 41.9577578], [-85.615506, 41.957833], [-85.6154119, 41.9578659], [-85.6153676, 41.9579194], [-85.6153786, 41.9582858], [-85.6153786, 41.9587057], [-85.6153897, 41.9591915], [-85.6154119, 41.9593479], [-85.6154783, 41.9593891], [-85.6157358, 41.959364]], "type": "LineString"}, "id": "554", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 907675123, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187082, 41.9585647, -85.6177383, 41.9591158], "geometry": {"coordinates": [[-85.6187082, 41.9588211], [-85.6186505, 41.9589344], [-85.6185839, 41.9589756], [-85.618182, 41.9591147], [-85.618114, 41.9591158], [-85.6180655, 41.9591085], [-85.6180212, 41.9590446], [-85.6177383, 41.9585647]], "type": "LineString"}, "id": "555", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 947248742, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6184408, 41.9530292, -85.6177286, 41.9534228], "geometry": {"coordinates": [[-85.6177286, 41.9534228], [-85.6181011, 41.9530292], [-85.6182875, 41.9531222], [-85.6184408, 41.953201]], "type": "LineString"}, "id": "556", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204830797, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6179141, 41.952231, -85.6163249, 41.9535735], "geometry": {"coordinates": [[-85.616755, 41.952231], [-85.6167327, 41.9522554], [-85.6163249, 41.952701], [-85.6163757, 41.952855], [-85.6165667, 41.9529715], [-85.6175538, 41.9534396], [-85.6178363, 41.9535735], [-85.6179141, 41.9535163]], "type": "LineString"}, "id": "557", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963047, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6164942, 41.9490629, -85.6164873, 41.9492814], "geometry": {"coordinates": [[-85.6164942, 41.9492814], [-85.6164888, 41.9491114], [-85.6164873, 41.9490629]], "type": "LineString"}, "id": "558", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839092, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6183982, 41.9443939, -85.6175794, 41.9449708], "geometry": {"coordinates": [[-85.6183982, 41.9449708], [-85.6181013, 41.9448246], [-85.6175794, 41.9446599], [-85.6176596, 41.9443939]], "type": "LineString"}, "id": "559", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528699, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478673, 41.9432898, -85.6473684, 41.9435096], "geometry": {"coordinates": [[-85.6473684, 41.943295], [-85.6478584, 41.9432898], [-85.6478673, 41.9435096]], "type": "LineString"}, "id": "560", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488290768, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6466646, 41.9450813, -85.643102, 41.945174], "geometry": {"coordinates": [[-85.643102, 41.945103], [-85.644403, 41.945088], [-85.6452965, 41.9450847], [-85.645486, 41.945084], [-85.6463243, 41.9450817], [-85.6463419, 41.9450817], [-85.6464756, 41.9450813], [-85.6466646, 41.945174]], "type": "LineString"}, "id": "561", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pealer Street", "oneway": null, "osm_id": 379694344, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634668, 41.949875, -85.633258, 41.949893], "geometry": {"coordinates": [[-85.633258, 41.949893], [-85.634668, 41.949875]], "type": "LineString"}, "id": "562", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Bennett Street", "oneway": null, "osm_id": 772835853, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632885, 41.9547563, -85.6328068, 41.9549068], "geometry": {"coordinates": [[-85.6328068, 41.9547563], [-85.632885, 41.9549068]], "type": "LineString"}, "id": "563", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416368, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6418749, 41.941316, -85.641825, 41.9425864], "geometry": {"coordinates": [[-85.641825, 41.941316], [-85.641838, 41.941556], [-85.6418683, 41.9424016], [-85.641872, 41.9425043], [-85.6418749, 41.9425864]], "type": "LineString"}, "id": "564", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Grant Avenue", "oneway": null, "osm_id": 17965749, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342341, 41.9433662, -85.6341027, 41.943433], "geometry": {"coordinates": [[-85.6342341, 41.9433662], [-85.6341027, 41.943433]], "type": "LineString"}, "id": "565", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550700, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341901, 41.9432732, -85.6339673, 41.9433877], "geometry": {"coordinates": [[-85.6341901, 41.9432732], [-85.6339673, 41.9433877]], "type": "LineString"}, "id": "566", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150800, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348719, 41.9430367, -85.6346811, 41.9431023], "geometry": {"coordinates": [[-85.6348719, 41.9430367], [-85.6346811, 41.9431023]], "type": "LineString"}, "id": "567", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150795, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354595, 41.9473091, -85.6354184, 41.9498778], "geometry": {"coordinates": [[-85.6354595, 41.9498778], [-85.6354573, 41.9497875], [-85.6354506, 41.9495151], [-85.6354483, 41.9494241], [-85.6354294, 41.9486201], [-85.6354214, 41.9476656], [-85.6354184, 41.9473091]], "type": "LineString"}, "id": "568", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 210822776, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382376, 41.942979, -85.6377061, 41.942979], "geometry": {"coordinates": [[-85.6382376, 41.942979], [-85.6377061, 41.942979]], "type": "LineString"}, "id": "569", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998358, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336739, 41.9486209, -85.6336684, 41.9487899], "geometry": {"coordinates": [[-85.6336684, 41.9487899], [-85.6336739, 41.9486209]], "type": "LineString"}, "id": "570", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 322012898, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6238886, 41.9543007, -85.6236388, 41.9543068], "geometry": {"coordinates": [[-85.6238886, 41.9543068], [-85.6237453, 41.9543033], [-85.6236388, 41.9543007]], "type": "LineString"}, "id": "571", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758296777, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6288456, 41.9572768, -85.6288344, 41.957435], "geometry": {"coordinates": [[-85.6288456, 41.957435], [-85.6288344, 41.9572768]], "type": "LineString"}, "id": "572", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 263446671, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6266935, 41.9572599, -85.6265759, 41.9574545], "geometry": {"coordinates": [[-85.6265759, 41.9574545], [-85.6266935, 41.9572599]], "type": "LineString"}, "id": "573", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699293, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634767, 41.959009, -85.630935, 41.959037], "geometry": {"coordinates": [[-85.630935, 41.959037], [-85.63137, 41.959033], [-85.6321505, 41.9590251], [-85.6329563, 41.9590221], [-85.634315, 41.959017], [-85.634767, 41.959009]], "type": "LineString"}, "id": "574", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Morris Avenue", "oneway": null, "osm_id": 17964793, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351097, 41.9416973, -85.634911, 41.9423159], "geometry": {"coordinates": [[-85.6351097, 41.9416973], [-85.6351092, 41.9418426], [-85.6350991, 41.9418921], [-85.635086, 41.9419659], [-85.6350584, 41.9421466], [-85.6350993, 41.9421606], [-85.6350993, 41.9422132], [-85.6350871, 41.9422575], [-85.6350794, 41.9422855], [-85.6350474, 41.9423159], [-85.6349251, 41.9422998], [-85.634911, 41.9422755], [-85.6349157, 41.9422553], [-85.6349214, 41.9422379]], "type": "LineString"}, "id": "575", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974071, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470216, 41.9450063, -85.6465402, 41.9458888], "geometry": {"coordinates": [[-85.6469512, 41.9450063], [-85.6470216, 41.9451195], [-85.6469968, 41.9451879], [-85.646788, 41.9453288], [-85.6466464, 41.9455224], [-85.6465525, 41.9457449], [-85.6465402, 41.9458888]], "type": "LineString"}, "id": "576", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942237, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357554, 41.9361657, -85.6344047, 41.9395496], "geometry": {"coordinates": [[-85.6344047, 41.9395496], [-85.6344894, 41.938975], [-85.6345227, 41.9382009], [-85.6345671, 41.9381816], [-85.6350366, 41.9379774], [-85.6350681, 41.937909], [-85.6352147, 41.9375903], [-85.6351503, 41.937307], [-85.635142, 41.9372317], [-85.6351181, 41.9370157], [-85.6351235, 41.9368481], [-85.6352844, 41.9364211], [-85.6357554, 41.9361657]], "type": "LineString"}, "id": "577", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Thomas Street", "oneway": null, "osm_id": 170995908, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6479012, 41.926056, -85.6469834, 41.9270523], "geometry": {"coordinates": [[-85.6469834, 41.926056], [-85.6471307, 41.9270523], [-85.6478291, 41.9270416], [-85.6479012, 41.9264804]], "type": "LineString"}, "id": "578", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143998, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637732, 41.929221, -85.636746, 41.932761], "geometry": {"coordinates": [[-85.636746, 41.929221], [-85.636791, 41.929363], [-85.6374708, 41.9311633], [-85.6375975, 41.9314987], [-85.637669, 41.931667], [-85.637728, 41.931901], [-85.637724, 41.932187], [-85.637732, 41.932761]], "type": "LineString"}, "id": "579", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Constantine Street", "oneway": null, "osm_id": 17964497, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506102, 41.9317232, -85.649309, 41.9317864], "geometry": {"coordinates": [[-85.6506102, 41.9317849], [-85.650554, 41.9317851], [-85.6504338, 41.9317854], [-85.6500538, 41.9317864], [-85.649921, 41.931768], [-85.6498137, 41.9317241], [-85.649309, 41.9317232]], "type": "LineString"}, "id": "580", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116842, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180487, 41.9366969, -85.6173562, 41.9367106], "geometry": {"coordinates": [[-85.6173562, 41.9366969], [-85.6180487, 41.9367106]], "type": "LineString"}, "id": "581", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Colony Court", "oneway": null, "osm_id": 17965485, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631591, 41.934167, -85.623511, 41.934218], "geometry": {"coordinates": [[-85.623511, 41.934216], [-85.624782, 41.934218], [-85.625688, 41.934214], [-85.6264034, 41.9342098], [-85.627055, 41.934206], [-85.6278177, 41.9342117], [-85.628389, 41.934216], [-85.6290391, 41.9342067], [-85.6296991, 41.9341973], [-85.6303478, 41.9341918], [-85.6310313, 41.9341889], [-85.631591, 41.934167]], "type": "LineString"}, "id": "582", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "State Street", "oneway": null, "osm_id": 17968171, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633274, 41.951159, -85.6304857, 41.9511969], "geometry": {"coordinates": [[-85.6304857, 41.9511945], [-85.6308395, 41.9511969], [-85.6320505, 41.951174], [-85.633274, 41.951159]], "type": "LineString"}, "id": "583", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Armitage Street", "oneway": null, "osm_id": 17967386, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638594, 41.954719, -85.6245151, 41.9605776], "geometry": {"coordinates": [[-85.6245212, 41.9605776], [-85.6245406, 41.9605482], [-85.6245151, 41.9604983], [-85.6246063, 41.9603278], [-85.6247351, 41.9601024], [-85.624778, 41.9600675], [-85.6250677, 41.9596008], [-85.6253466, 41.959151], [-85.6253617, 41.9591254], [-85.6253842, 41.9590872], [-85.6255727, 41.9587648], [-85.6257989, 41.9584187], [-85.6258562, 41.9583353], [-85.6264246, 41.957406], [-85.6265187, 41.9572522], [-85.6265551, 41.9572071], [-85.6265717, 41.9571749], [-85.6269458, 41.9565691], [-85.6273361, 41.9559372], [-85.627358, 41.9559081], [-85.6273837, 41.955853], [-85.627426, 41.9557168], [-85.6276612, 41.9553461], [-85.6280261, 41.9547708], [-85.629467, 41.9547698], [-85.6307808, 41.9547689], [-85.630821, 41.9547689], [-85.6308843, 41.9547669], [-85.6309471, 41.9547669], [-85.6320441, 41.9547629], [-85.6320962, 41.9547609], [-85.6321889, 41.9547609], [-85.6328068, 41.9547563], [-85.6332698, 41.9547529], [-85.6333121, 41.954751], [-85.6333852, 41.9547549], [-85.634218, 41.9547492], [-85.63456, 41.9547469], [-85.6347288, 41.9547499], [-85.6349006, 41.9547529], [-85.6350106, 41.9547469], [-85.6355229, 41.9547449], [-85.6358461, 41.9547444], [-85.6361935, 41.9547439], [-85.6362388, 41.9547432], [-85.6363316, 41.9547419], [-85.6374125, 41.9547349], [-85.6374608, 41.9547361], [-85.6375305, 41.9547379], [-85.638594, 41.954719]], "type": "LineString"}, "id": "584", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550709, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6181154, 41.9481006, -85.6176946, 41.9482898], "geometry": {"coordinates": [[-85.6181154, 41.9482898], [-85.617705, 41.9482619], [-85.6176946, 41.9481006]], "type": "LineString"}, "id": "585", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652967179, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6108715, 41.955178, -85.6108633, 41.9554444], "geometry": {"coordinates": [[-85.6108715, 41.9554444], [-85.6108633, 41.955178]], "type": "LineString"}, "id": "586", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179347, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443023, 41.932672, -85.6442279, 41.9363623], "geometry": {"coordinates": [[-85.644228, 41.932672], [-85.644228, 41.9327325], [-85.6442279, 41.9328387], [-85.6442477, 41.9339216], [-85.6442915, 41.9349794], [-85.6442957, 41.9354807], [-85.6443023, 41.9362837], [-85.6442999, 41.9363623]], "type": "LineString"}, "id": "587", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Erie Avenue", "oneway": null, "osm_id": 78480220, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637685, 41.934223, -85.636834, 41.934223], "geometry": {"coordinates": [[-85.637685, 41.934223], [-85.636834, 41.934223]], "type": "LineString"}, "id": "588", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Swartz Street", "oneway": null, "osm_id": 17964970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6413816, 41.9307531, -85.6400258, 41.9311016], "geometry": {"coordinates": [[-85.6400258, 41.9311016], [-85.6406703, 41.9309185], [-85.6413816, 41.9307531]], "type": "LineString"}, "id": "589", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 832556508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6283776, 41.9376096, -85.6280534, 41.9378226], "geometry": {"coordinates": [[-85.6280534, 41.9378226], [-85.6282162, 41.9377379], [-85.6283776, 41.9376096]], "type": "LineString"}, "id": "590", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758897088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.619085, 41.9516794, -85.6170432, 41.9534396], "geometry": {"coordinates": [[-85.6170432, 41.9524057], [-85.6171841, 41.9522542], [-85.617691, 41.9517107], [-85.6177727, 41.9516794], [-85.619085, 41.9516811], [-85.6180938, 41.9527349], [-85.6179589, 41.9528783], [-85.6179432, 41.952895], [-85.6180389, 41.9529384], [-85.6176303, 41.9533604], [-85.6175538, 41.9534396]], "type": "LineString"}, "id": "591", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839361, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450288, 41.9425588, -85.6450276, 41.9429056], "geometry": {"coordinates": [[-85.6450276, 41.9425588], [-85.6450279, 41.942649], [-85.6450282, 41.9427207], [-85.6450288, 41.9429056]], "type": "LineString"}, "id": "592", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486785503, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6264499, 41.9583862, -85.6256754, 41.958631], "geometry": {"coordinates": [[-85.6256754, 41.9583862], [-85.6257989, 41.9584187], [-85.626369, 41.9586174], [-85.6264499, 41.958631]], "type": "LineString"}, "id": "593", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550691, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6262616, 41.9590055, -85.6252483, 41.95915], "geometry": {"coordinates": [[-85.6262616, 41.9590055], [-85.6262331, 41.9590473], [-85.6261298, 41.9591231], [-85.6259984, 41.95915], [-85.6257731, 41.959145], [-85.6254217, 41.9591341], [-85.6253617, 41.9591254], [-85.6252483, 41.9590965]], "type": "LineString"}, "id": "594", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550689, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6363514, 41.961089, -85.636133, 41.9616698], "geometry": {"coordinates": [[-85.636133, 41.9616698], [-85.6362039, 41.9615678], [-85.6362902, 41.9613925], [-85.6363514, 41.961089]], "type": "LineString"}, "id": "595", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 258377783, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636133, 41.9616698, -85.6349874, 41.9619375], "geometry": {"coordinates": [[-85.6349874, 41.9619375], [-85.6352201, 41.9619057], [-85.6355393, 41.9618199], [-85.6356157, 41.9618072], [-85.6356868, 41.9618059], [-85.6358705, 41.961793], [-85.6359376, 41.961785], [-85.6360006, 41.9617671], [-85.6360422, 41.9617421], [-85.636133, 41.9616698]], "type": "LineString"}, "id": "596", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 777996088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634857, 41.9664791, -85.6341169, 41.9664815], "geometry": {"coordinates": [[-85.634857, 41.9664815], [-85.6341169, 41.9664791]], "type": "LineString"}, "id": "597", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870652349, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6343061, 41.9674728, -85.6339242, 41.9677064], "geometry": {"coordinates": [[-85.6343061, 41.9677064], [-85.6342939, 41.967561], [-85.6342032, 41.9674728], [-85.6340488, 41.9674736], [-85.6339383, 41.9674742], [-85.6339242, 41.9677048]], "type": "LineString"}, "id": "598", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870652351, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631135, 41.9621767, -85.6308995, 41.9632204], "geometry": {"coordinates": [[-85.630998, 41.9621767], [-85.630998, 41.9623209], [-85.6311263, 41.9623202], [-85.631135, 41.9632192], [-85.6309082, 41.9632204], [-85.6308995, 41.9623215], [-85.630998, 41.9623209]], "type": "LineString"}, "id": "599", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312580, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180938, 41.9525253, -85.6177023, 41.9527349], "geometry": {"coordinates": [[-85.6180938, 41.9527349], [-85.6177023, 41.9525253]], "type": "LineString"}, "id": "600", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839364, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382761, 41.9438017, -85.6376655, 41.9443125], "geometry": {"coordinates": [[-85.6376655, 41.9438017], [-85.6378627, 41.9441622], [-85.6379071, 41.9442467], [-85.6381634, 41.9443125], [-85.6382407, 41.944301], [-85.6382631, 41.9442724], [-85.6382761, 41.9442188], [-85.6382429, 41.9441761], [-85.6382016, 41.9441632]], "type": "LineString"}, "id": "601", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203988298, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450995, 41.9541831, -85.6440766, 41.9543462], "geometry": {"coordinates": [[-85.6440766, 41.9543462], [-85.6450995, 41.9541831]], "type": "LineString"}, "id": "602", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 652550668, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357592, 41.9427985, -85.6356875, 41.9429212], "geometry": {"coordinates": [[-85.6356875, 41.9427985], [-85.6357339, 41.9428779], [-85.6357592, 41.9429212]], "type": "LineString"}, "id": "603", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 342503945, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263984, 41.9413215, -85.6261429, 41.9421261], "geometry": {"coordinates": [[-85.6263984, 41.9413215], [-85.6263539, 41.9415589], [-85.6263447, 41.9418317], [-85.6263347, 41.9421261], [-85.6261429, 41.9421207]], "type": "LineString"}, "id": "604", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 765371920, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297342, 41.9400783, -85.627127, 41.940086], "geometry": {"coordinates": [[-85.627127, 41.940086], [-85.6272188, 41.9400832], [-85.627263, 41.940082], [-85.628439, 41.940086], [-85.6296113, 41.940079], [-85.6297342, 41.9400783]], "type": "LineString"}, "id": "605", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Street", "oneway": null, "osm_id": 17967751, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6212989, 41.9490617, -85.6210164, 41.9492394], "geometry": {"coordinates": [[-85.6210164, 41.9492394], [-85.621024, 41.9490617], [-85.6212989, 41.9490688]], "type": "LineString"}, "id": "606", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871183977, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6299851, 41.9580741, -85.6297541, 41.9580808], "geometry": {"coordinates": [[-85.6299851, 41.9580808], [-85.6297541, 41.9580741]], "type": "LineString"}, "id": "607", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 263446668, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6245212, 41.9605776, -85.6244072, 41.9607332], "geometry": {"coordinates": [[-85.6244072, 41.9607332], [-85.6244356, 41.960705], [-85.6244939, 41.9606183], [-85.6245212, 41.9605776]], "type": "LineString"}, "id": "608", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550697, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637483, 41.9486, -85.637113, 41.958313], "geometry": {"coordinates": [[-85.637113, 41.9486], [-85.6373958, 41.9489943], [-85.6374012, 41.9493523], [-85.6374067, 41.9497099], [-85.6374092, 41.9498755], [-85.637412, 41.9511359], [-85.637432, 41.952399], [-85.637452, 41.953665], [-85.6374593, 41.9545754], [-85.63746, 41.954658], [-85.6374608, 41.9547361], [-85.637473, 41.95592], [-85.6374721, 41.9560979], [-85.6374707, 41.9563685], [-85.637468, 41.956906], [-85.637483, 41.958313]], "type": "LineString"}, "id": "609", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Maple Street", "oneway": null, "osm_id": 17965097, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644466, 41.9425645, -85.6443608, 41.949246], "geometry": {"coordinates": [[-85.6443608, 41.9425645], [-85.6443622, 41.942653], [-85.6443702, 41.9431535], [-85.644381, 41.943831], [-85.644403, 41.945088], [-85.6444166, 41.9463259], [-85.644417, 41.946364], [-85.644429, 41.947633], [-85.6444365, 41.9479609], [-85.6444419, 41.9481952], [-85.6444506, 41.9485732], [-85.644466, 41.949246]], "type": "LineString"}, "id": "610", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Erie Street", "oneway": null, "osm_id": 17966729, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6432019, 41.9425754, -85.643102, 41.949261], "geometry": {"coordinates": [[-85.6431031, 41.9425754], [-85.6431035, 41.9427597], [-85.6431104, 41.9428543], [-85.6431041, 41.9430023], [-85.643106, 41.943841], [-85.643102, 41.945103], [-85.643148, 41.946389], [-85.6432019, 41.9476499], [-85.643195, 41.949261]], "type": "LineString"}, "id": "611", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "North Douglas Avenue", "oneway": null, "osm_id": 17967390, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6485578, 41.9269394, -85.6484746, 41.9272732], "geometry": {"coordinates": [[-85.6485578, 41.9269394], [-85.648498, 41.9269939], [-85.6484746, 41.9272732]], "type": "LineString"}, "id": "612", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143999, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6097961, 41.9467223, -85.6097759, 41.9475004], "geometry": {"coordinates": [[-85.6097759, 41.9475004], [-85.6097788, 41.947251], [-85.6097802, 41.9471276], [-85.6097807, 41.9470374], [-85.6097926, 41.9468501], [-85.6097961, 41.9467223]], "type": "LineString"}, "id": "613", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 905683519, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6132496, 41.9442728, -85.6121403, 41.9454409], "geometry": {"coordinates": [[-85.6121448, 41.9454409], [-85.6121427, 41.9449724], [-85.6121403, 41.9444292], [-85.6121717, 41.9442898], [-85.6130286, 41.944277], [-85.6131716, 41.944283], [-85.6132496, 41.9442728]], "type": "LineString"}, "id": "614", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 383902586, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6290302, 41.9311615, -85.6289931, 41.9321546], "geometry": {"coordinates": [[-85.6289931, 41.9311615], [-85.6290139, 41.9317005], [-85.6290302, 41.9321546]], "type": "LineString"}, "id": "615", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 903715420, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478385, 41.9326128, -85.647345, 41.9335048], "geometry": {"coordinates": [[-85.6478385, 41.9326128], [-85.6478377, 41.932677], [-85.6478361, 41.9327976], [-85.6478341, 41.9335048], [-85.6475906, 41.9335029], [-85.647347, 41.9335009], [-85.647345, 41.9327914], [-85.6475896, 41.932796], [-85.6475906, 41.9335029]], "type": "LineString"}, "id": "616", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204035473, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.654898, 41.932505, -85.6517487, 41.9325437], "geometry": {"coordinates": [[-85.6517487, 41.9325437], [-85.6519167, 41.9325405], [-85.65275, 41.9325249], [-85.6529294, 41.9325248], [-85.653541, 41.9325282], [-85.654307, 41.9325151], [-85.6543315, 41.9325147], [-85.654898, 41.932505]], "type": "LineString"}, "id": "617", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Broadway Road", "oneway": null, "osm_id": 17965484, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6527488, 41.9317638, -85.6520978, 41.9323957], "geometry": {"coordinates": [[-85.6525077, 41.9317638], [-85.6522941, 41.9318713], [-85.6520978, 41.9319765], [-85.6521763, 41.9320612], [-85.6523412, 41.932238], [-85.6524218, 41.9323563], [-85.6524492, 41.9323884], [-85.6525572, 41.9323957], [-85.6527488, 41.9323899]], "type": "LineString"}, "id": "618", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907776512, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507144, 41.9325604, -85.650349, 41.9331621], "geometry": {"coordinates": [[-85.650349, 41.9325604], [-85.6503527, 41.9326518], [-85.6503691, 41.9330613], [-85.6503733, 41.9331621], [-85.6507144, 41.9331595]], "type": "LineString"}, "id": "619", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034071, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514073, 41.932543, -85.6365328, 41.9329312], "geometry": {"coordinates": [[-85.6514073, 41.932543], [-85.6506177, 41.9325595], [-85.650349, 41.9325604], [-85.649346, 41.9325803], [-85.6492242, 41.9325853], [-85.6490718, 41.932586], [-85.6484329, 41.932606], [-85.6478385, 41.9326128], [-85.6476037, 41.9326155], [-85.6469521, 41.9326207], [-85.6462306, 41.9326304], [-85.6461715, 41.9326317], [-85.6459436, 41.9326459], [-85.6455682, 41.9326543], [-85.6444717, 41.9326688], [-85.644228, 41.932672], [-85.64242, 41.932699], [-85.6412915, 41.9327042], [-85.6401365, 41.9327199], [-85.6388769, 41.9327334], [-85.637732, 41.932761], [-85.637353, 41.932792], [-85.6365328, 41.9329312]], "type": "LineString"}, "id": "620", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Broadway Street", "oneway": null, "osm_id": 17967984, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514146, 41.9353693, -85.6510717, 41.9356274], "geometry": {"coordinates": [[-85.6514146, 41.9356218], [-85.6512405, 41.9356261], [-85.6511892, 41.9356274], [-85.6511386, 41.9356131], [-85.6510918, 41.9355867], [-85.6510779, 41.9355473], [-85.6510754, 41.9355011], [-85.6510717, 41.935423], [-85.6510733, 41.9353693]], "type": "LineString"}, "id": "621", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 944116886, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529447, 41.9344576, -85.6522031, 41.9344603], "geometry": {"coordinates": [[-85.6529447, 41.9344603], [-85.6524176, 41.9344603], [-85.6523757, 41.9344603], [-85.6522031, 41.9344576]], "type": "LineString"}, "id": "622", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203048268, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6401773, 41.9303805, -85.6397659, 41.9304665], "geometry": {"coordinates": [[-85.6397659, 41.9304665], [-85.6401773, 41.9303805]], "type": "LineString"}, "id": "623", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 832556507, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433104, 41.9361767, -85.643305, 41.9362871], "geometry": {"coordinates": [[-85.643305, 41.9362871], [-85.6433104, 41.9361767]], "type": "LineString"}, "id": "624", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766158507, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6431031, 41.94001, -85.643056, 41.9425754], "geometry": {"coordinates": [[-85.643056, 41.94001], [-85.6430624, 41.9405521], [-85.6430697, 41.9411732], [-85.643071, 41.941288], [-85.6430868, 41.9419198], [-85.6430981, 41.9423756], [-85.6431031, 41.9425754]], "type": "LineString"}, "id": "625", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 17966327, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6492976, 41.9431473, -85.6483318, 41.9459632], "geometry": {"coordinates": [[-85.6492976, 41.9459632], [-85.6488686, 41.945945], [-85.6488787, 41.9449968], [-85.6489804, 41.9448531], [-85.6489174, 41.9442996], [-85.6487283, 41.944289], [-85.6488023, 41.9434902], [-85.6488177, 41.9433241], [-85.6483318, 41.943319], [-85.6483318, 41.9431473]], "type": "LineString"}, "id": "626", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942214, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6522031, 41.9342811, -85.6517609, 41.9344576], "geometry": {"coordinates": [[-85.6522031, 41.9344576], [-85.6520991, 41.934441], [-85.6520326, 41.9344278], [-85.6519475, 41.9344079], [-85.6519281, 41.9343997], [-85.6518974, 41.9343867], [-85.6518512, 41.9343616], [-85.6518171, 41.9343353], [-85.6517609, 41.9342811]], "type": "LineString"}, "id": "627", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892840, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503332, 41.9463745, -85.6492949, 41.9463751], "geometry": {"coordinates": [[-85.6503332, 41.9463751], [-85.6492949, 41.9463745]], "type": "LineString"}, "id": "628", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277007, 41.9311702, -85.6276689, 41.9321598], "geometry": {"coordinates": [[-85.6277007, 41.9311702], [-85.6276875, 41.9313849], [-85.6276943, 41.931751], [-85.6276836, 41.9320326], [-85.6276689, 41.9321598]], "type": "LineString"}, "id": "629", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199685, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6509439, 41.9306047, -85.6509362, 41.9314117], "geometry": {"coordinates": [[-85.6509439, 41.9314117], [-85.6509362, 41.9306047]], "type": "LineString"}, "id": "630", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612675, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501662, 41.9274121, -85.6497553, 41.9277635], "geometry": {"coordinates": [[-85.6497593, 41.9274166], [-85.6501422, 41.9274121], [-85.6501662, 41.92743], [-85.6501662, 41.9277251], [-85.6501302, 41.9277505], [-85.6497553, 41.9277635]], "type": "LineString"}, "id": "631", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 903726422, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6229554, 41.9325237, -85.6225739, 41.9325257], "geometry": {"coordinates": [[-85.6225739, 41.9325257], [-85.6229554, 41.9325237]], "type": "LineString"}, "id": "632", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377971, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6235091, 41.9326665, -85.6232759, 41.9326681], "geometry": {"coordinates": [[-85.6232759, 41.9326681], [-85.6235091, 41.9326665]], "type": "LineString"}, "id": "633", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377975, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6283312, 41.946498, -85.620072, 41.9470656], "geometry": {"coordinates": [[-85.620072, 41.946538], [-85.622721, 41.946535], [-85.624912, 41.946524], [-85.627629, 41.946498], [-85.6281401, 41.9469632], [-85.6282451, 41.9470314], [-85.6283312, 41.9470656]], "type": "LineString"}, "id": "634", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Avenue", "oneway": null, "osm_id": 17967603, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6377053, 41.9394599, -85.6373179, 41.9395789], "geometry": {"coordinates": [[-85.6373179, 41.9395789], [-85.6376059, 41.9395626], [-85.637688, 41.9395446], [-85.6377053, 41.9395257], [-85.6376903, 41.9394982], [-85.6376626, 41.9394801], [-85.6373321, 41.9394599]], "type": "LineString"}, "id": "635", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947116508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6363884, 41.9446079, -85.6361996, 41.9447967], "geometry": {"coordinates": [[-85.6361996, 41.9447967], [-85.6363884, 41.9446079]], "type": "LineString"}, "id": "636", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 203988292, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636279, 41.9536856, -85.6362328, 41.958311], "geometry": {"coordinates": [[-85.6362328, 41.9536856], [-85.6362358, 41.9545823], [-85.636236, 41.954656], [-85.6362388, 41.9547432], [-85.636276, 41.955919], [-85.6362782, 41.9566334], [-85.636279, 41.956901], [-85.636271, 41.958311]], "type": "LineString"}, "id": "637", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Street", "oneway": null, "osm_id": 385299769, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6136206, 41.9555825, -85.6132507, 41.9557034], "geometry": {"coordinates": [[-85.6136206, 41.9557015], [-85.6135677, 41.9557034], [-85.6133381, 41.9556159], [-85.6132507, 41.9555825]], "type": "LineString"}, "id": "638", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179340, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450288, 41.9429048, -85.6447743, 41.9429056], "geometry": {"coordinates": [[-85.6450288, 41.9429056], [-85.6447743, 41.9429048]], "type": "LineString"}, "id": "639", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486785505, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633287, 41.952426, -85.6295992, 41.9524688], "geometry": {"coordinates": [[-85.6295992, 41.9524346], [-85.6297681, 41.9524688], [-85.630275, 41.952461], [-85.630855, 41.952452], [-85.6320668, 41.9524531], [-85.633287, 41.952426]], "type": "LineString"}, "id": "640", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Wheeler Street", "oneway": null, "osm_id": 17967573, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644417, 41.946364, -85.641946, 41.946413], "geometry": {"coordinates": [[-85.641946, 41.946413], [-85.642185, 41.946411], [-85.643148, 41.946389], [-85.644417, 41.946364]], "type": "LineString"}, "id": "641", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Yauney Street", "oneway": null, "osm_id": 17965353, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.645407, 41.9349594, -85.6450368, 41.9355358], "geometry": {"coordinates": [[-85.6454067, 41.9349594], [-85.645407, 41.935526], [-85.6450368, 41.9355358]], "type": "LineString"}, "id": "642", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907670910, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6376092, 41.9583124, -85.6370944, 41.9585073], "geometry": {"coordinates": [[-85.6376092, 41.9585073], [-85.6371037, 41.9585036], [-85.6370944, 41.9584984], [-85.6370944, 41.9583124]], "type": "LineString"}, "id": "643", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 770562236, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6218248, 41.9327071, -85.621721, 41.9332474], "geometry": {"coordinates": [[-85.621721, 41.9327071], [-85.6218226, 41.9328897], [-85.6218248, 41.9332474]], "type": "LineString"}, "id": "644", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1230947275, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6176031, 41.9446599, -85.6175794, 41.9454776], "geometry": {"coordinates": [[-85.6175794, 41.9446599], [-85.6176031, 41.9454776]], "type": "LineString"}, "id": "645", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528700, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503721, 41.9461802, -85.6492962, 41.9461809], "geometry": {"coordinates": [[-85.6503721, 41.9461802], [-85.6502338, 41.9461803], [-85.6492962, 41.9461809]], "type": "LineString"}, "id": "646", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942212, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502335, 41.930604, -85.6502232, 41.9314181], "geometry": {"coordinates": [[-85.6502335, 41.9314181], [-85.6502232, 41.930604]], "type": "LineString"}, "id": "647", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612678, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6463419, 41.9449179, -85.6452983, 41.9450817], "geometry": {"coordinates": [[-85.6452983, 41.9449179], [-85.6462305, 41.9449194], [-85.6463089, 41.9449953], [-85.6463295, 41.9450153], [-85.6463419, 41.9450817]], "type": "LineString"}, "id": "648", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907663747, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6465007, 41.9380798, -85.6455995, 41.9398834], "geometry": {"coordinates": [[-85.6457497, 41.9398834], [-85.6457469, 41.9398168], [-85.6457303, 41.9394142], [-85.645734, 41.9390682], [-85.6455995, 41.9386225], [-85.6456639, 41.9384868], [-85.6459214, 41.9382474], [-85.6461789, 41.9380798], [-85.6464793, 41.9380798], [-85.6465007, 41.9383432], [-85.6462887, 41.9384576], [-85.6459321, 41.9382474]], "type": "LineString"}, "id": "649", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Maple Crest", "oneway": null, "osm_id": 17966445, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355277, 41.9401138, -85.6352459, 41.940251], "geometry": {"coordinates": [[-85.6355277, 41.9401162], [-85.6355009, 41.940222], [-85.6354758, 41.940242], [-85.6354153, 41.9402484], [-85.6353444, 41.940251], [-85.6352459, 41.9402446], [-85.6352527, 41.9402002], [-85.6352544, 41.9401138]], "type": "LineString"}, "id": "650", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947116509, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637255, 41.940104, -85.633405, 41.9419564], "geometry": {"coordinates": [[-85.6358044, 41.9419514], [-85.6353886, 41.9419564], [-85.6352709, 41.9419441], [-85.6351843, 41.9419225], [-85.6350991, 41.9418921], [-85.6349439, 41.94176], [-85.6348391, 41.9416651], [-85.6346921, 41.9415489], [-85.6345862, 41.9414958], [-85.634476, 41.9414524], [-85.6338528, 41.9412282], [-85.6337312, 41.9411799], [-85.6336412, 41.941124], [-85.6335786, 41.9410619], [-85.6335358, 41.9409867], [-85.6334823, 41.9408547], [-85.633434, 41.9406778], [-85.633407, 41.9404582], [-85.633405, 41.9403452], [-85.6334276, 41.9402703], [-85.6334711, 41.9402064], [-85.6335473, 41.9401531], [-85.6336484, 41.9401261], [-85.6337802, 41.9401143], [-85.6345653, 41.9401078], [-85.6346806, 41.9401088], [-85.6350634, 41.9401122], [-85.6352544, 41.9401138], [-85.6355277, 41.9401162], [-85.635779, 41.9401184], [-85.6369542, 41.9401113], [-85.637255, 41.940104]], "type": "LineString"}, "id": "651", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 17966942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310312, 41.9417016, -85.6308179, 41.9418916], "geometry": {"coordinates": [[-85.6310312, 41.9418474], [-85.6309539, 41.9418715], [-85.6309043, 41.9418916], [-85.6308179, 41.9417525], [-85.6308492, 41.9417316], [-85.6309241, 41.9417016]], "type": "LineString"}, "id": "652", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870840922, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627403, 41.941035, -85.6269868, 41.9446899], "geometry": {"coordinates": [[-85.6269868, 41.941035], [-85.6272074, 41.9411396], [-85.6272566, 41.9411991], [-85.627295, 41.941304], [-85.627352, 41.94148], [-85.62737, 41.942261], [-85.6273949, 41.9432543], [-85.627401, 41.943496], [-85.627403, 41.943625], [-85.6274028, 41.9436719], [-85.6273993, 41.9446899]], "type": "LineString"}, "id": "653", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Middle Street", "oneway": null, "osm_id": 17964989, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354652, 41.9428814, -85.6354213, 41.9429637], "geometry": {"coordinates": [[-85.6354652, 41.9429637], [-85.6354622, 41.9429562], [-85.6354213, 41.9428814]], "type": "LineString"}, "id": "654", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 342503944, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6358187, 41.9460401, -85.6346449, 41.9460571], "geometry": {"coordinates": [[-85.6346449, 41.9460571], [-85.6347591, 41.9460545], [-85.6353839, 41.9460401], [-85.6354162, 41.946044], [-85.6358187, 41.9460423]], "type": "LineString"}, "id": "655", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Moore Street", "oneway": null, "osm_id": 17967628, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629998, 41.9409278, -85.6270633, 41.9446689], "geometry": {"coordinates": [[-85.6299942, 41.9446689], [-85.6299948, 41.9445812], [-85.629998, 41.944078], [-85.629972, 41.943927], [-85.6299489, 41.9437872], [-85.629692, 41.943136], [-85.6295818, 41.9429178], [-85.6295123, 41.9427401], [-85.629472, 41.942578], [-85.629444, 41.942414], [-85.6294175, 41.9422323], [-85.629391, 41.94205], [-85.629369, 41.941858], [-85.6293419, 41.9417168], [-85.6293102, 41.9416173], [-85.629275, 41.9415768], [-85.629233, 41.941549], [-85.6291835, 41.9415244], [-85.6290357, 41.9414799], [-85.6272955, 41.9410331], [-85.6270633, 41.9409278]], "type": "LineString"}, "id": "656", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Drive", "oneway": null, "osm_id": 17965305, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6225739, 41.9325257, -85.621721, 41.9327071], "geometry": {"coordinates": [[-85.6225739, 41.9325257], [-85.6222706, 41.9327035], [-85.6219584, 41.9327056], [-85.621721, 41.9327071]], "type": "LineString"}, "id": "657", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626104, 41.9252038, -85.6253922, 41.9261001], "geometry": {"coordinates": [[-85.6256655, 41.9261001], [-85.6259979, 41.9260324], [-85.6260318, 41.9260164], [-85.626076, 41.9259656], [-85.6260982, 41.9259178], [-85.626104, 41.9258492], [-85.6259697, 41.9255243], [-85.625916, 41.9254323], [-85.6258822, 41.925388], [-85.6257246, 41.925262], [-85.625637, 41.9252151], [-85.6255704, 41.9252038], [-85.6253922, 41.9252226]], "type": "LineString"}, "id": "658", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768423796, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354184, 41.946044, -85.6354162, 41.9473091], "geometry": {"coordinates": [[-85.6354162, 41.946044], [-85.6354163, 41.946142], [-85.6354173, 41.9469082], [-85.6354184, 41.9473091]], "type": "LineString"}, "id": "659", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 208643139, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634776, 41.959834, -85.6321612, 41.959859], "geometry": {"coordinates": [[-85.6321612, 41.959859], [-85.634776, 41.959834]], "type": "LineString"}, "id": "660", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Burke Avenue", "oneway": null, "osm_id": 17965196, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6304211, 41.9649323, -85.6302268, 41.965951], "geometry": {"coordinates": [[-85.6302318, 41.965951], [-85.6302304, 41.9657359], [-85.6302268, 41.9652189], [-85.6302539, 41.9651405], [-85.6302889, 41.9650625], [-85.6303472, 41.9649931], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "661", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kennedy Boulevard", "oneway": "no", "osm_id": 203968019, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504364, 41.9317854, -85.6504338, 41.9323456], "geometry": {"coordinates": [[-85.6504338, 41.9317854], [-85.6504347, 41.9319904], [-85.6504356, 41.9321703], [-85.6504364, 41.9323456]], "type": "LineString"}, "id": "662", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116840, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6232759, 41.9326681, -85.6229586, 41.9326701], "geometry": {"coordinates": [[-85.6232759, 41.9326681], [-85.6229586, 41.9326701]], "type": "LineString"}, "id": "663", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377974, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6583049, 41.9250592, -85.6582058, 41.925818], "geometry": {"coordinates": [[-85.6583049, 41.925818], [-85.6582666, 41.9257257], [-85.6582521, 41.9256939], [-85.6582372, 41.9256534], [-85.6582058, 41.9255569], [-85.6582076, 41.9254828], [-85.6582179, 41.9250592]], "type": "LineString"}, "id": "664", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 897575552, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614642, 41.951639, -85.614204, 41.953696], "geometry": {"coordinates": [[-85.614617, 41.951639], [-85.61463, 41.951852], [-85.614642, 41.953436], [-85.6146, 41.953551], [-85.614487, 41.95363], [-85.614354, 41.953672], [-85.614204, 41.953696]], "type": "LineString"}, "id": "665", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Orchard Drive", "oneway": null, "osm_id": 17965156, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470591, 41.936893, -85.6455592, 41.93716], "geometry": {"coordinates": [[-85.6455592, 41.93716], [-85.6456244, 41.9370727], [-85.6464209, 41.9369006], [-85.6470591, 41.936893]], "type": "LineString"}, "id": "666", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 216243982, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6172077, 41.9524958, -85.6171235, 41.9525809], "geometry": {"coordinates": [[-85.6172077, 41.9524958], [-85.6171235, 41.9525809]], "type": "LineString"}, "id": "667", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839363, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297548, 41.9581373, -85.6295596, 41.9581416], "geometry": {"coordinates": [[-85.6295596, 41.9581416], [-85.6297548, 41.9581373]], "type": "LineString"}, "id": "668", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341313250, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6397719, 41.9638513, -85.634832, 41.9638663], "geometry": {"coordinates": [[-85.6397719, 41.9638513], [-85.638825, 41.963855], [-85.6365609, 41.963866], [-85.6364975, 41.9638663], [-85.6362597, 41.9638663], [-85.6361179, 41.9638663], [-85.634832, 41.963866]], "type": "LineString"}, "id": "669", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Clifton Drive", "oneway": null, "osm_id": 17965733, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345981, 41.9671412, -85.6340408, 41.9674736], "geometry": {"coordinates": [[-85.6340488, 41.9674736], [-85.6340437, 41.967263], [-85.6340408, 41.9671412], [-85.6342173, 41.9671412], [-85.6344659, 41.9671452], [-85.6345981, 41.9671726]], "type": "LineString"}, "id": "670", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870652352, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6281089, 41.9561288, -85.6280568, 41.9563134], "geometry": {"coordinates": [[-85.6280568, 41.9563134], [-85.6281089, 41.9561288]], "type": "LineString"}, "id": "671", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699280, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346384, 41.944007, -85.6345563, 41.9440523], "geometry": {"coordinates": [[-85.6346384, 41.944007], [-85.6345563, 41.9440523]], "type": "LineString"}, "id": "672", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974056, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344154, 41.9457778, -85.6340746, 41.9461956], "geometry": {"coordinates": [[-85.6344154, 41.9457778], [-85.6343769, 41.9457874], [-85.6343555, 41.9458014], [-85.6340746, 41.9461956]], "type": "LineString"}, "id": "673", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427785, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514321, 41.932543, -85.6514001, 41.9425113], "geometry": {"coordinates": [[-85.6514073, 41.932543], [-85.6514053, 41.9340249], [-85.6514001, 41.934237], [-85.6514038, 41.9345922], [-85.6514071, 41.9349069], [-85.6514146, 41.9356218], [-85.651426, 41.9364304], [-85.6514241, 41.9369195], [-85.651425, 41.9371055], [-85.6514295, 41.938015], [-85.6514321, 41.9385351], [-85.651418, 41.9397681], [-85.6514237, 41.9400273], [-85.6514281, 41.9402239], [-85.6514252, 41.9404998], [-85.6514188, 41.9408949], [-85.6514106, 41.9414082], [-85.6514254, 41.9419837], [-85.6514226, 41.9425113]], "type": "LineString"}, "id": "674", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131/M-60", "oneway": "yes", "osm_id": 41260273, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462305, 41.9447586, -85.6461709, 41.9449194], "geometry": {"coordinates": [[-85.6461709, 41.9447586], [-85.6462218, 41.9447953], [-85.6462305, 41.9449194]], "type": "LineString"}, "id": "675", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907663748, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6415366, 41.942783, -85.6413388, 41.9427862], "geometry": {"coordinates": [[-85.6415366, 41.942783], [-85.6413388, 41.9427862]], "type": "LineString"}, "id": "676", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 904632321, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453506, 41.9399002, -85.6443194, 41.9400924], "geometry": {"coordinates": [[-85.6443194, 41.9399444], [-85.6443284, 41.9400333], [-85.6443897, 41.9400924], [-85.6452278, 41.9400901], [-85.6453449, 41.9400053], [-85.6453506, 41.9399002]], "type": "LineString"}, "id": "677", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 203968032, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462572, 41.9374104, -85.6461265, 41.9379524], "geometry": {"coordinates": [[-85.6461265, 41.9379524], [-85.6462572, 41.9374104]], "type": "LineString"}, "id": "678", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 330877841, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394548, 41.940078, -85.6393662, 41.94261], "geometry": {"coordinates": [[-85.6393662, 41.940078], [-85.639402, 41.941344], [-85.6394516, 41.9425322], [-85.6394548, 41.94261]], "type": "LineString"}, "id": "679", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Hooker Avenue", "oneway": null, "osm_id": 17966879, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637424, 41.938692, -85.6357638, 41.9387029], "geometry": {"coordinates": [[-85.637424, 41.938692], [-85.6357638, 41.9387029]], "type": "LineString"}, "id": "680", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Lafayette Street", "oneway": null, "osm_id": 17966229, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6403832, 41.942199, -85.6401039, 41.9426034], "geometry": {"coordinates": [[-85.6403442, 41.9426034], [-85.6403436, 41.9425163], [-85.6403377, 41.9424458], [-85.6401471, 41.9424477], [-85.6401277, 41.9424412], [-85.6401145, 41.9424318], [-85.6401083, 41.9424176], [-85.6401039, 41.9422314], [-85.6401118, 41.9422129], [-85.6401256, 41.942204], [-85.6403582, 41.942199], [-85.640374, 41.9422082], [-85.6403832, 41.9422228], [-85.6403826, 41.942416], [-85.6403729, 41.9424299], [-85.6403594, 41.9424382], [-85.6403377, 41.9424458]], "type": "LineString"}, "id": "681", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942131, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637113, 41.947382, -85.636163, 41.9486], "geometry": {"coordinates": [[-85.636163, 41.947382], [-85.637113, 41.9486]], "type": "LineString"}, "id": "682", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Rock River Avenue", "oneway": null, "osm_id": 17967764, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6390493, 41.9523857, -85.634686, 41.952415], "geometry": {"coordinates": [[-85.634686, 41.952415], [-85.636233, 41.952398], [-85.637432, 41.952399], [-85.638661, 41.952386], [-85.6390493, 41.9523857]], "type": "LineString"}, "id": "683", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Wheeler Street", "oneway": null, "osm_id": 17966975, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480185, 41.9447787, -85.6463238, 41.9458902], "geometry": {"coordinates": [[-85.6480185, 41.9447787], [-85.6475593, 41.9448337], [-85.6469955, 41.9449804], [-85.6469512, 41.9450063], [-85.6466646, 41.945174], [-85.6464255, 41.9454662], [-85.6463238, 41.9457504], [-85.6463269, 41.9458902]], "type": "LineString"}, "id": "684", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Heather Lane", "oneway": null, "osm_id": 203968027, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638724, 41.954649, -85.638694, 41.955913], "geometry": {"coordinates": [[-85.638694, 41.954649], [-85.638724, 41.955913]], "type": "LineString"}, "id": "685", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Oak Street", "oneway": null, "osm_id": 772282740, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347636, 41.9583738, -85.6340073, 41.9585672], "geometry": {"coordinates": [[-85.6347636, 41.9583968], [-85.6345847, 41.9584131], [-85.6344679, 41.9584853], [-85.6342409, 41.9585672], [-85.6341043, 41.9585606], [-85.6340139, 41.9585131], [-85.6340073, 41.9584344], [-85.6340668, 41.9583984], [-85.6341792, 41.9583738], [-85.6344833, 41.9583836], [-85.6345847, 41.9584131]], "type": "LineString"}, "id": "686", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870710883, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348133, 41.9622807, -85.6341497, 41.9626109], "geometry": {"coordinates": [[-85.634812, 41.9622807], [-85.6346338, 41.9622888], [-85.6345915, 41.9622907], [-85.6341838, 41.9622966], [-85.6341604, 41.9623115], [-85.6341497, 41.9623277], [-85.6341519, 41.9625929], [-85.6341684, 41.9626052], [-85.6341948, 41.9626109], [-85.6346263, 41.9625994], [-85.6346411, 41.9625981], [-85.6348133, 41.9625821]], "type": "LineString"}, "id": "687", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056603773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620076, 41.9462622, -85.6192127, 41.946538], "geometry": {"coordinates": [[-85.620072, 41.946538], [-85.6199223, 41.9465288], [-85.6194551, 41.9465245], [-85.6192843, 41.9465227], [-85.6192279, 41.9464719], [-85.6192127, 41.9463205], [-85.6192784, 41.9462622], [-85.6197808, 41.9462663], [-85.6199266, 41.9462742], [-85.620076, 41.9462726]], "type": "LineString"}, "id": "688", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 836365190, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322909, 41.9432542, -85.6321102, 41.9434696], "geometry": {"coordinates": [[-85.6321102, 41.9432542], [-85.632207, 41.9433696], [-85.6322909, 41.9434696]], "type": "LineString"}, "id": "689", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "secondary", "layer": "1", "name": "South Main Street", "oneway": null, "osm_id": 847427775, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322992, 41.9437929, -85.6318433, 41.9442766], "geometry": {"coordinates": [[-85.6318433, 41.9437929], [-85.6322243, 41.9441971], [-85.6322992, 41.9442766]], "type": "LineString"}, "id": "690", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17967734, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629067, 41.953725, -85.6290531, 41.954691], "geometry": {"coordinates": [[-85.629067, 41.954691], [-85.6290664, 41.9546079], [-85.6290649, 41.9544006], [-85.6290531, 41.9542277], [-85.6290597, 41.953725]], "type": "LineString"}, "id": "691", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871048835, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6527327, 41.9306345, -85.6527224, 41.9315678], "geometry": {"coordinates": [[-85.6527224, 41.9306345], [-85.6527327, 41.9315678]], "type": "LineString"}, "id": "692", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612689, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.65275, 41.9315676, -85.6525077, 41.9325249], "geometry": {"coordinates": [[-85.6525822, 41.9315676], [-85.6525915, 41.9316853], [-85.6525542, 41.9317384], [-85.6525077, 41.9317638], [-85.6527343, 41.9320317], [-85.6527488, 41.9323899], [-85.6527491, 41.9324308], [-85.65275, 41.9325249]], "type": "LineString"}, "id": "693", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206803381, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517487, 41.932543, -85.6514073, 41.9325437], "geometry": {"coordinates": [[-85.6517487, 41.9325437], [-85.6514073, 41.932543]], "type": "LineString"}, "id": "694", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Broadway Street", "oneway": null, "osm_id": 17965840, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6481372, 41.9363404, -85.6481146, 41.9367519], "geometry": {"coordinates": [[-85.6481146, 41.9367519], [-85.6481372, 41.9366676], [-85.6481354, 41.9363404]], "type": "LineString"}, "id": "695", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 216243993, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523723, 41.9339563, -85.652009, 41.9339563], "geometry": {"coordinates": [[-85.6523723, 41.9339563], [-85.652009, 41.9339563]], "type": "LineString"}, "id": "696", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237754, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523463, 41.939758, -85.651777, 41.9404534], "geometry": {"coordinates": [[-85.651777, 41.9404534], [-85.6519526, 41.9404529], [-85.6519949, 41.9404528], [-85.6519947, 41.9404103], [-85.6519919, 41.9399266], [-85.6523463, 41.9399301], [-85.6523339, 41.939758]], "type": "LineString"}, "id": "697", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942244, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523417, 41.9421625, -85.6523355, 41.9425909], "geometry": {"coordinates": [[-85.6523417, 41.9425909], [-85.6523355, 41.9421625]], "type": "LineString"}, "id": "698", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786586, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458674, 41.942381, -85.6455552, 41.9423817], "geometry": {"coordinates": [[-85.6455552, 41.9423817], [-85.6458674, 41.942381]], "type": "LineString"}, "id": "699", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 382527763, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6385705, 41.9511217, -85.634686, 41.9511591], "geometry": {"coordinates": [[-85.634686, 41.951158], [-85.6362059, 41.9511457], [-85.637412, 41.9511359], [-85.6384444, 41.9511217], [-85.6385191, 41.9511347], [-85.6385705, 41.9511591]], "type": "LineString"}, "id": "700", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Armitage Street", "oneway": null, "osm_id": 17966118, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627629, 41.946498, -85.626843, 41.947333], "geometry": {"coordinates": [[-85.627629, 41.946498], [-85.626843, 41.947333]], "type": "LineString"}, "id": "701", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "John Glenn Court", "oneway": null, "osm_id": 17966061, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641825, 41.941316, -85.6370124, 41.9413618], "geometry": {"coordinates": [[-85.6370124, 41.9413618], [-85.6382188, 41.9413554], [-85.639402, 41.941344], [-85.6406381, 41.9413339], [-85.641825, 41.941316]], "type": "LineString"}, "id": "702", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Street", "oneway": null, "osm_id": 17966102, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634235, 41.9437875, -85.633613, 41.9443913], "geometry": {"coordinates": [[-85.6341246, 41.9443913], [-85.634235, 41.9443259], [-85.633613, 41.9437875]], "type": "LineString"}, "id": "703", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970907, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344828, 41.9434716, -85.6341175, 41.9435986], "geometry": {"coordinates": [[-85.6344828, 41.9435125], [-85.6344244, 41.9435393], [-85.6343558, 41.9434716], [-85.6341175, 41.9435986]], "type": "LineString"}, "id": "704", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370291, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6196772, 41.9487125, -85.6179558, 41.9510452], "geometry": {"coordinates": [[-85.6180593, 41.9495102], [-85.6180094, 41.9500981], [-85.6179639, 41.9507107], [-85.6179558, 41.9507215], [-85.6180027, 41.9508711], [-85.6180811, 41.9509626], [-85.6182133, 41.9510347], [-85.6183664, 41.9510452], [-85.6191861, 41.9510302], [-85.6193492, 41.9509589], [-85.619449, 41.950856], [-85.6196772, 41.9507383], [-85.6195271, 41.9501875], [-85.6196094, 41.9493142], [-85.6196373, 41.9487125]], "type": "LineString"}, "id": "705", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528703, "osm_type": "ways_line", "smoothness": null, "surface": "dirt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6366901, 41.9427625, -85.6358136, 41.9427899], "geometry": {"coordinates": [[-85.6366901, 41.9427899], [-85.6362766, 41.9427854], [-85.6361208, 41.9427777], [-85.6358136, 41.9427625]], "type": "LineString"}, "id": "706", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998360, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6472886, 41.9425396, -85.6472723, 41.9429545], "geometry": {"coordinates": [[-85.6472723, 41.9425396], [-85.6472753, 41.942616], [-85.6472886, 41.9429545]], "type": "LineString"}, "id": "707", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942839, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558094, 41.9413153, -85.6543429, 41.9413213], "geometry": {"coordinates": [[-85.6543429, 41.9413213], [-85.6558094, 41.9413153]], "type": "LineString"}, "id": "708", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771090, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650247, 41.950953, -85.649086, 41.953213], "geometry": {"coordinates": [[-85.650247, 41.95096], [-85.6500618, 41.9509537], [-85.650041, 41.950953], [-85.649906, 41.950963], [-85.64978, 41.950992], [-85.649703, 41.951036], [-85.649622, 41.951123], [-85.649531, 41.95124], [-85.649445, 41.951394], [-85.6491, 41.951963], [-85.649086, 41.952073], [-85.649099, 41.952167], [-85.649152, 41.952255], [-85.649241, 41.952349], [-85.649974, 41.952969], [-85.6501222, 41.9530714], [-85.650237, 41.953213]], "type": "LineString"}, "id": "709", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Circle Drive", "oneway": null, "osm_id": 17966996, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6349963, 41.9434328, -85.6338922, 41.9444392], "geometry": {"coordinates": [[-85.6338922, 41.9434328], [-85.6339697, 41.9435053], [-85.6340871, 41.9436147], [-85.6342019, 41.9437218], [-85.6345563, 41.9440523], [-85.6349723, 41.9444207], [-85.6349963, 41.9444392]], "type": "LineString"}, "id": "710", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970897, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347551, 41.9440555, -85.6329761, 41.9459809], "geometry": {"coordinates": [[-85.6329761, 41.9440555], [-85.6329938, 41.9440821], [-85.6332661, 41.9443733], [-85.6336697, 41.9447663], [-85.6344851, 41.9454935], [-85.6345746, 41.9455744], [-85.6346782, 41.9456731], [-85.6347471, 41.9457555], [-85.6347551, 41.9459809]], "type": "LineString"}, "id": "711", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427758, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632724, 41.944042, -85.6326206, 41.9441622], "geometry": {"coordinates": [[-85.632724, 41.9441622], [-85.632685, 41.9441169], [-85.6326206, 41.944042]], "type": "LineString"}, "id": "712", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427761, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6352821, 41.9480429, -85.6352699, 41.9486214], "geometry": {"coordinates": [[-85.6352821, 41.9486214], [-85.6352778, 41.9484197], [-85.6352699, 41.9480429]], "type": "LineString"}, "id": "713", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 217907766, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6257292, 41.929295, -85.62567, 41.93319], "geometry": {"coordinates": [[-85.62567, 41.929295], [-85.625696, 41.929367], [-85.625711, 41.92948], [-85.6257282, 41.9301667], [-85.6257292, 41.9302058], [-85.625711, 41.9311836], [-85.625695, 41.932173], [-85.625694, 41.93319]], "type": "LineString"}, "id": "714", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Street", "oneway": null, "osm_id": 17967211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6374708, 41.9298799, -85.6359052, 41.9312703], "geometry": {"coordinates": [[-85.6359052, 41.9298799], [-85.6363116, 41.930866], [-85.6364884, 41.9310993], [-85.6368065, 41.9312703], [-85.6374708, 41.9311633]], "type": "LineString"}, "id": "715", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Home Street", "oneway": null, "osm_id": 203968035, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6197791, 41.9436175, -85.6121403, 41.9444292], "geometry": {"coordinates": [[-85.6197791, 41.9437998], [-85.619472, 41.9437848], [-85.6192967, 41.9437763], [-85.6192255, 41.9438116], [-85.6189487, 41.9437175], [-85.6187721, 41.9436799], [-85.6186719, 41.9436586], [-85.6183713, 41.9437822], [-85.6183318, 41.9439704], [-85.6182527, 41.9441233], [-85.6181731, 41.9442022], [-85.6180866, 41.9442881], [-85.6178731, 41.9443469], [-85.6176596, 41.9443939], [-85.6176121, 41.9442763], [-85.61762, 41.9439469], [-85.6176438, 41.943788], [-85.617446, 41.9437175], [-85.6171455, 41.9436528], [-85.616845, 41.9436292], [-85.616584, 41.9436175], [-85.6165019, 41.9436452], [-85.616323, 41.9437057], [-85.6159671, 41.9438528], [-85.6156824, 41.9440704], [-85.6155005, 41.9442292], [-85.6153248, 41.9442769], [-85.6150023, 41.9443939], [-85.6144882, 41.9443998], [-85.6142829, 41.9444024], [-85.6133498, 41.9444141], [-85.6131752, 41.9444162], [-85.6121403, 41.9444292]], "type": "LineString"}, "id": "716", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528691, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6198756, 41.9433383, -85.618795, 41.9435363], "geometry": {"coordinates": [[-85.618795, 41.943511], [-85.619017, 41.943391], [-85.619059, 41.943368], [-85.6193037, 41.9433383], [-85.6195022, 41.9433463], [-85.6197329, 41.9434121], [-85.6198756, 41.9435363]], "type": "LineString"}, "id": "717", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17963058, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628481, 41.945597, -85.615273, 41.945637], "geometry": {"coordinates": [[-85.628481, 41.945611], [-85.624893, 41.945616], [-85.6227157, 41.9456321], [-85.620172, 41.945627], [-85.618327, 41.945607], [-85.617231, 41.945603], [-85.6166335, 41.9456025], [-85.616136, 41.945602], [-85.615453, 41.945597], [-85.615273, 41.945637]], "type": "LineString"}, "id": "718", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "4th Avenue", "oneway": null, "osm_id": 17967107, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355084, 41.9655431, -85.634842, 41.9655929], "geometry": {"coordinates": [[-85.634842, 41.9655431], [-85.6349864, 41.9655502], [-85.635119, 41.9655827], [-85.6352501, 41.9655929], [-85.6354305, 41.9655888], [-85.6355084, 41.9655868]], "type": "LineString"}, "id": "719", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 901146726, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6363514, 41.9610634, -85.6348246, 41.961089], "geometry": {"coordinates": [[-85.6348246, 41.9610634], [-85.635064, 41.9610674], [-85.6357931, 41.9610796], [-85.6363514, 41.961089]], "type": "LineString"}, "id": "720", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 307186115, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346411, 41.9624745, -85.6346375, 41.9625981], "geometry": {"coordinates": [[-85.6346411, 41.9625981], [-85.6346375, 41.9624745]], "type": "LineString"}, "id": "721", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056603774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6583584, 41.925818, -85.6583049, 41.9258983], "geometry": {"coordinates": [[-85.6583584, 41.9258983], [-85.6583049, 41.925818]], "type": "LineString"}, "id": "722", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 895396431, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6428209, 41.9429856, -85.6423603, 41.9429999], "geometry": {"coordinates": [[-85.6423603, 41.9429856], [-85.6428209, 41.9429999]], "type": "LineString"}, "id": "723", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056571145, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470405, 41.9423642, -85.6469127, 41.9425427], "geometry": {"coordinates": [[-85.6469154, 41.9425427], [-85.646914, 41.942468], [-85.6469127, 41.9423949], [-85.646946, 41.9423676], [-85.6469803, 41.9423642], [-85.6470405, 41.9423643]], "type": "LineString"}, "id": "724", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907934018, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.646186, 41.9426891, -85.6458668, 41.9430811], "geometry": {"coordinates": [[-85.6458668, 41.9430771], [-85.646013, 41.9430811], [-85.646131, 41.9430761], [-85.646186, 41.9430482], [-85.6461833, 41.942723], [-85.6461243, 41.9426891], [-85.6460479, 41.9426931]], "type": "LineString"}, "id": "725", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 980237759, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513977, 41.9437343, -85.6504725, 41.9443392], "geometry": {"coordinates": [[-85.6513977, 41.9437597], [-85.6507601, 41.9437423], [-85.6504912, 41.9437343], [-85.6504881, 41.9438257], [-85.6504829, 41.9439764], [-85.6504772, 41.9441443], [-85.6504725, 41.9442815], [-85.650998, 41.9443198], [-85.6513297, 41.9443392]], "type": "LineString"}, "id": "726", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942178, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6499897, 41.9363248, -85.6498146, 41.9365734], "geometry": {"coordinates": [[-85.6499897, 41.9365732], [-85.6499024, 41.9365734], [-85.6498875, 41.9365725], [-85.6498737, 41.9365709], [-85.6498618, 41.9365676], [-85.6498496, 41.9365629], [-85.6498418, 41.9365574], [-85.6498344, 41.9365503], [-85.6498284, 41.9365424], [-85.6498234, 41.9365341], [-85.6498188, 41.9365233], [-85.6498163, 41.9365117], [-85.6498146, 41.936492], [-85.6498156, 41.9364817], [-85.6498184, 41.9364743], [-85.649823, 41.936468], [-85.6498304, 41.9364595], [-85.6498465, 41.9364432], [-85.649858, 41.9364297], [-85.6498648, 41.9364178], [-85.6498701, 41.9364031], [-85.649871, 41.9363874], [-85.649871, 41.9363248]], "type": "LineString"}, "id": "727", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 993698651, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433104, 41.9361655, -85.6423202, 41.9361767], "geometry": {"coordinates": [[-85.6433104, 41.9361767], [-85.642426, 41.9361667], [-85.6423202, 41.9361655]], "type": "LineString"}, "id": "728", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6442477, 41.9339216, -85.637688, 41.93398], "geometry": {"coordinates": [[-85.637688, 41.93398], [-85.6388308, 41.9339698], [-85.6400729, 41.9339588], [-85.6412249, 41.9339485], [-85.6423893, 41.9339381], [-85.6442477, 41.9339216]], "type": "LineString"}, "id": "729", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Swartz Street", "oneway": null, "osm_id": 17964972, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.646608, 41.9344371, -85.645838, 41.9349514], "geometry": {"coordinates": [[-85.645849, 41.9349514], [-85.645838, 41.9344575], [-85.646608, 41.9344371]], "type": "LineString"}, "id": "730", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243996, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6448712, 41.9478219, -85.6448278, 41.9479054], "geometry": {"coordinates": [[-85.6448712, 41.9479054], [-85.6448278, 41.9478219]], "type": "LineString"}, "id": "731", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 498942807, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430153, 41.9279688, -85.6430137, 41.9284512], "geometry": {"coordinates": [[-85.6430153, 41.9284512], [-85.6430137, 41.9279688]], "type": "LineString"}, "id": "732", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143988, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6425883, 41.9281333, -85.6419828, 41.9284475], "geometry": {"coordinates": [[-85.6425818, 41.9284393], [-85.6425883, 41.9281333], [-85.6419844, 41.9281383], [-85.6419828, 41.9284475]], "type": "LineString"}, "id": "733", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143992, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502853, 41.9496851, -85.6499839, 41.9505436], "geometry": {"coordinates": [[-85.6499839, 41.9505436], [-85.6500635, 41.9504703], [-85.6500578, 41.9499276], [-85.6502853, 41.9496851]], "type": "LineString"}, "id": "734", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 782636429, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621459, 41.9447384, -85.6200474, 41.944756], "geometry": {"coordinates": [[-85.6200474, 41.9447384], [-85.620982, 41.944742], [-85.621459, 41.944756]], "type": "LineString"}, "id": "735", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 17966772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.611615, 41.951686, -85.610989, 41.953704], "geometry": {"coordinates": [[-85.611187, 41.951686], [-85.611087, 41.951741], [-85.611034, 41.951852], [-85.611016, 41.95196], [-85.610989, 41.95328], [-85.611021, 41.953484], [-85.611091, 41.953603], [-85.6112, 41.953661], [-85.611364, 41.953686], [-85.611615, 41.953704]], "type": "LineString"}, "id": "736", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Blossom Drive", "oneway": null, "osm_id": 17964508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6464503, 41.9299763, -85.6464324, 41.930763], "geometry": {"coordinates": [[-85.6464503, 41.930763], [-85.6464324, 41.9299763]], "type": "LineString"}, "id": "737", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310471, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6252249, 41.9607526, -85.6252071, 41.960756], "geometry": {"coordinates": [[-85.6252249, 41.960756], [-85.6252071, 41.9607526]], "type": "LineString"}, "id": "738", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550695, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6142772, 41.9454409, -85.6121448, 41.9454868], "geometry": {"coordinates": [[-85.6142772, 41.9454804], [-85.6133599, 41.9454832], [-85.6132045, 41.9454837], [-85.6122245, 41.9454868], [-85.6121448, 41.9454409]], "type": "LineString"}, "id": "739", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528695, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6353282, 41.9416773, -85.6351097, 41.9416973], "geometry": {"coordinates": [[-85.6351097, 41.9416973], [-85.6353282, 41.9416773]], "type": "LineString"}, "id": "740", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 382320150, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650657, 41.945804, -85.6502225, 41.9459986], "geometry": {"coordinates": [[-85.6503697, 41.9458179], [-85.6502225, 41.945804], [-85.6502272, 41.9459986], [-85.6503899, 41.94599], [-85.650657, 41.945976]], "type": "LineString"}, "id": "741", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942188, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6154103, 41.9442728, -85.6132496, 41.9444228], "geometry": {"coordinates": [[-85.6132496, 41.9442728], [-85.6142879, 41.9442839], [-85.6150952, 41.9442839], [-85.6153248, 41.9442769], [-85.6154103, 41.9444228]], "type": "LineString"}, "id": "742", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962830, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6411335, 41.9272048, -85.6410501, 41.9273876], "geometry": {"coordinates": [[-85.6410503, 41.9273876], [-85.6410501, 41.9272061], [-85.6411335, 41.9272048]], "type": "LineString"}, "id": "743", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143991, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467484, 41.9416139, -85.6463486, 41.9425472], "geometry": {"coordinates": [[-85.6467484, 41.9417337], [-85.6467446, 41.9416214], [-85.6463486, 41.9416139], [-85.6463796, 41.9424735], [-85.6463823, 41.9425472]], "type": "LineString"}, "id": "744", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6237302, 41.9326653, -85.6235091, 41.9328259], "geometry": {"coordinates": [[-85.6237302, 41.9326653], [-85.623519, 41.9328259], [-85.6235091, 41.9326665]], "type": "LineString"}, "id": "745", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1230945140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624776, 41.933205, -85.620035, 41.933297], "geometry": {"coordinates": [[-85.620035, 41.933297], [-85.620185, 41.933265], [-85.620722, 41.933245], [-85.62111, 41.933254], [-85.6214708, 41.9332507], [-85.6218248, 41.9332474], [-85.623501, 41.933232], [-85.624776, 41.933205]], "type": "LineString"}, "id": "746", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Broadway Street", "oneway": null, "osm_id": 17962489, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6237302, 41.9325146, -85.6235042, 41.9326665], "geometry": {"coordinates": [[-85.6235042, 41.9325177], [-85.623727, 41.9325146], [-85.6237302, 41.9326653], [-85.6235091, 41.9326665]], "type": "LineString"}, "id": "747", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377967, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6239421, 41.9542292, -85.6238228, 41.9542338], "geometry": {"coordinates": [[-85.6239421, 41.9542338], [-85.6238829, 41.9542315], [-85.6238228, 41.9542292]], "type": "LineString"}, "id": "748", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 758296774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6244542, 41.9547066, -85.6240991, 41.954708], "geometry": {"coordinates": [[-85.6244542, 41.9547066], [-85.6240991, 41.954708]], "type": "LineString"}, "id": "749", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "East Hoffman Street", "oneway": null, "osm_id": 201484345, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6240991, 41.9544535, -85.6180008, 41.9547403], "geometry": {"coordinates": [[-85.6240991, 41.954708], [-85.6238505, 41.9546684], [-85.622923, 41.954469], [-85.6226758, 41.9544535], [-85.622368, 41.954472], [-85.6206237, 41.9546878], [-85.6205024, 41.9547019], [-85.6201708, 41.9547403], [-85.6194958, 41.9547372], [-85.6187301, 41.9547339], [-85.6186424, 41.9547335], [-85.6180008, 41.9547387]], "type": "LineString"}, "id": "750", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 201484348, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6241697, 41.9530001, -85.6237809, 41.9530647], "geometry": {"coordinates": [[-85.6241697, 41.9530647], [-85.6237809, 41.9530001]], "type": "LineString"}, "id": "751", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946763076, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6234008, 41.9488938, -85.6233971, 41.9492379], "geometry": {"coordinates": [[-85.6234008, 41.9488938], [-85.6233971, 41.9492379]], "type": "LineString"}, "id": "752", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964875, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478176, 41.950515, -85.6469634, 41.9508682], "geometry": {"coordinates": [[-85.6469634, 41.950515], [-85.6478176, 41.9508682]], "type": "LineString"}, "id": "753", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963531, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6442727, 41.9553112, -85.6408843, 41.9565243], "geometry": {"coordinates": [[-85.6408843, 41.9555822], [-85.6414548, 41.9557751], [-85.6435584, 41.9565243], [-85.6436741, 41.9563278], [-85.6437591, 41.9561834], [-85.6438578, 41.9560158], [-85.6439376, 41.9558803], [-85.6440239, 41.9557338], [-85.6441108, 41.9555861], [-85.6442727, 41.9553112]], "type": "LineString"}, "id": "754", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963182, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6265759, 41.9573635, -85.6262922, 41.9574545], "geometry": {"coordinates": [[-85.6265759, 41.9574545], [-85.6264246, 41.957406], [-85.6262922, 41.9573635]], "type": "LineString"}, "id": "755", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699292, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333607, 41.952426, -85.633287, 41.9582301], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.633307, 41.9537], [-85.6333107, 41.9545973], [-85.633311, 41.954679], [-85.6333121, 41.954751], [-85.6333181, 41.9551461], [-85.633322, 41.9554048], [-85.6333299, 41.9559271], [-85.6333496, 41.9573981], [-85.6333607, 41.9582301]], "type": "LineString"}, "id": "756", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": null, "osm_id": 775171420, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6233606, 41.9615118, -85.6225664, 41.961948], "geometry": {"coordinates": [[-85.6233606, 41.961948], [-85.6232263, 41.9619456], [-85.6230062, 41.9618558], [-85.622719, 41.9617121], [-85.6226224, 41.9616157], [-85.6225664, 41.9615118]], "type": "LineString"}, "id": "757", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 836725337, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6212813, 41.9546878, -85.6206237, 41.956026], "geometry": {"coordinates": [[-85.6206237, 41.9546878], [-85.6206885, 41.9549388], [-85.6206957, 41.9550661], [-85.6206912, 41.955367], [-85.6207144, 41.955449], [-85.6207506, 41.9555258], [-85.620832, 41.9556333], [-85.6212813, 41.956026]], "type": "LineString"}, "id": "758", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17964176, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6133841, 41.9555825, -85.6122448, 41.9561999], "geometry": {"coordinates": [[-85.6133841, 41.9561999], [-85.6122743, 41.9561884], [-85.6122609, 41.9560122], [-85.6122448, 41.9557994], [-85.612304, 41.9555825]], "type": "LineString"}, "id": "759", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179342, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624215, 41.940124, -85.61433, 41.940167], "geometry": {"coordinates": [[-85.61433, 41.940167], [-85.6159779, 41.9401637], [-85.617359, 41.940161], [-85.6186784, 41.9401557], [-85.6204461, 41.9401485], [-85.6213353, 41.9401443], [-85.621605, 41.940143], [-85.622643, 41.940128], [-85.623571, 41.940124], [-85.624215, 41.940134]], "type": "LineString"}, "id": "760", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "River Street", "oneway": null, "osm_id": 17967745, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630997, 41.929206, -85.62663, 41.929251], "geometry": {"coordinates": [[-85.62663, 41.929251], [-85.6283251, 41.9292335], [-85.6296503, 41.9292199], [-85.630997, 41.929206]], "type": "LineString"}, "id": "761", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Union Street", "oneway": null, "osm_id": 17966558, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521586, 41.9433803, -85.6517163, 41.943946], "geometry": {"coordinates": [[-85.6517163, 41.943931], [-85.651906, 41.9439423], [-85.6519507, 41.943946], [-85.6520942, 41.9439001], [-85.6521149, 41.9437332], [-85.6521586, 41.9433803]], "type": "LineString"}, "id": "762", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942241, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272188, 41.9400544, -85.6272188, 41.9401381], "geometry": {"coordinates": [[-85.6272188, 41.9400544], [-85.6272188, 41.9400832], [-85.6272188, 41.9401381]], "type": "LineString"}, "id": "763", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550663, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643102, 41.945103, -85.6375025, 41.9458685], "geometry": {"coordinates": [[-85.6375025, 41.9458685], [-85.6386033, 41.9455048], [-85.6389034, 41.9453872], [-85.6391279, 41.9453044], [-85.6393332, 41.9452388], [-85.6394802, 41.9451962], [-85.6396448, 41.9451666], [-85.6398249, 41.9451425], [-85.640683, 41.94513], [-85.641922, 41.945121], [-85.643102, 41.945103]], "type": "LineString"}, "id": "764", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Pealer Street", "oneway": null, "osm_id": 17966281, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635643, 41.945585, -85.6353839, 41.9460401], "geometry": {"coordinates": [[-85.6353839, 41.9460401], [-85.6353895, 41.9459347], [-85.6353997, 41.9457421], [-85.6354032, 41.9456763], [-85.635643, 41.945585]], "type": "LineString"}, "id": "765", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970911, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348313, 41.9647886, -85.6335028, 41.9648771], "geometry": {"coordinates": [[-85.6335028, 41.9647886], [-85.6337013, 41.9648173], [-85.633889, 41.9648572], [-85.6340232, 41.9648731], [-85.6348313, 41.9648771]], "type": "LineString"}, "id": "766", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "yes", "osm_id": 1033167061, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62478, 41.925597, -85.624703, 41.933205], "geometry": {"coordinates": [[-85.624703, 41.925597], [-85.624716, 41.927359], [-85.624721, 41.929278], [-85.624741, 41.93019], [-85.62475, 41.93119], [-85.62478, 41.93217], [-85.624776, 41.933205]], "type": "LineString"}, "id": "767", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 17966211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351097, 41.9416973, -85.6348113, 41.9418101], "geometry": {"coordinates": [[-85.6348113, 41.9418101], [-85.6349439, 41.94176], [-85.6351097, 41.9416973]], "type": "LineString"}, "id": "768", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974074, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638694, 41.9511591, -85.6385705, 41.954649], "geometry": {"coordinates": [[-85.6385705, 41.9511591], [-85.6385961, 41.9511842], [-85.6386095, 41.9512214], [-85.638661, 41.952386], [-85.638654, 41.953665], [-85.6386912, 41.9545803], [-85.638694, 41.954649]], "type": "LineString"}, "id": "769", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Oak Street", "oneway": null, "osm_id": 17965149, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191709, 41.9567483, -85.6186116, 41.9568717], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6186116, 41.9568717]], "type": "LineString"}, "id": "770", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 1056815666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633089, 41.9440586, -85.632801, 41.9443541], "geometry": {"coordinates": [[-85.632801, 41.9440586], [-85.63288, 41.9441396], [-85.6329845, 41.9442469], [-85.633089, 41.9443541]], "type": "LineString"}, "id": "771", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 143497377, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6538291, 41.9306308, -85.6538265, 41.9315711], "geometry": {"coordinates": [[-85.6538291, 41.9306308], [-85.6538265, 41.9315711]], "type": "LineString"}, "id": "772", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612684, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6554472, 41.9317842, -85.6549066, 41.9325], "geometry": {"coordinates": [[-85.6554472, 41.9325], [-85.655446, 41.9321896], [-85.6554446, 41.9318301], [-85.6554258, 41.9318022], [-85.6553883, 41.9317842], [-85.6549833, 41.9317862], [-85.6549322, 41.9318026], [-85.6549066, 41.9318345], [-85.6549066, 41.9321261], [-85.6549072, 41.9321903]], "type": "LineString"}, "id": "773", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771226856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.655446, 41.9321896, -85.6549072, 41.9321903], "geometry": {"coordinates": [[-85.655446, 41.9321896], [-85.6549072, 41.9321903]], "type": "LineString"}, "id": "774", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056615092, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543315, 41.9315747, -85.6543217, 41.9325147], "geometry": {"coordinates": [[-85.6543217, 41.9315747], [-85.6543244, 41.9318376], [-85.6543292, 41.9322932], [-85.6543315, 41.9325147]], "type": "LineString"}, "id": "775", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843132, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6586857, 41.9315733, -85.6556729, 41.9324768], "geometry": {"coordinates": [[-85.6556729, 41.9315833], [-85.6559588, 41.9315833], [-85.6568062, 41.9315802], [-85.6586775, 41.9315733], [-85.6586857, 41.9324768]], "type": "LineString"}, "id": "776", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 835952451, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567912, 41.9297418, -85.655939, 41.9297418], "geometry": {"coordinates": [[-85.6567912, 41.9297418], [-85.655939, 41.9297418]], "type": "LineString"}, "id": "777", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237751, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6538656, 41.9378713, -85.6517637, 41.9378819], "geometry": {"coordinates": [[-85.6517637, 41.9378819], [-85.6519447, 41.937881], [-85.6538656, 41.9378713]], "type": "LineString"}, "id": "778", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612667, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514321, 41.9385351, -85.6502585, 41.9397993], "geometry": {"coordinates": [[-85.6502878, 41.9397993], [-85.6502817, 41.9397147], [-85.6502625, 41.9395828], [-85.6502598, 41.9388906], [-85.6502592, 41.9387297], [-85.6502588, 41.9386272], [-85.6502585, 41.9385482], [-85.6510457, 41.9385379], [-85.6512584, 41.9385364], [-85.6514321, 41.9385351]], "type": "LineString"}, "id": "779", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 223349378, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523746, 41.9342932, -85.6520861, 41.9342943], "geometry": {"coordinates": [[-85.6523746, 41.9342943], [-85.6520861, 41.9342932]], "type": "LineString"}, "id": "780", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237756, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514001, 41.934237, -85.6510714, 41.9344638], "geometry": {"coordinates": [[-85.6514001, 41.934237], [-85.6513671, 41.9342986], [-85.6513448, 41.9343297], [-85.6513197, 41.9343577], [-85.6512798, 41.9343875], [-85.6512342, 41.9344138], [-85.6511694, 41.9344404], [-85.6510714, 41.9344638]], "type": "LineString"}, "id": "781", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892842, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651047, 41.9387297, -85.6502592, 41.9387331], "geometry": {"coordinates": [[-85.651047, 41.9387331], [-85.6502592, 41.9387297]], "type": "LineString"}, "id": "782", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488054998, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6349687, 41.9391788, -85.6347273, 41.9396563], "geometry": {"coordinates": [[-85.6347429, 41.9396563], [-85.6347273, 41.9392426], [-85.6347273, 41.9391828], [-85.6349687, 41.9391788]], "type": "LineString"}, "id": "783", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331305149, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6276, 41.937412, -85.627101, 41.9402001], "geometry": {"coordinates": [[-85.6276, 41.937412], [-85.627451, 41.937549], [-85.627375, 41.937618], [-85.627278, 41.937728], [-85.627199, 41.937842], [-85.627141, 41.937981], [-85.627109, 41.938153], [-85.627101, 41.938699], [-85.6271023, 41.9391445], [-85.627127, 41.940086], [-85.6271315, 41.9402001]], "type": "LineString"}, "id": "784", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Street", "oneway": null, "osm_id": 17966740, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.648338, 41.9367985, -85.6481929, 41.9372238], "geometry": {"coordinates": [[-85.6481929, 41.9372238], [-85.648338, 41.9367985]], "type": "LineString"}, "id": "785", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243991, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6488123, 41.934601, -85.6483349, 41.9346027], "geometry": {"coordinates": [[-85.6488123, 41.9346011], [-85.6484771, 41.934601], [-85.6483349, 41.9346027]], "type": "LineString"}, "id": "786", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243994, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.645155, 41.9384004, -85.6445762, 41.9385249], "geometry": {"coordinates": [[-85.6445762, 41.9385249], [-85.6448147, 41.9384748], [-85.645155, 41.9384004]], "type": "LineString"}, "id": "787", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643126, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493756, 41.9339026, -85.649169, 41.9339129], "geometry": {"coordinates": [[-85.6493756, 41.9339129], [-85.649169, 41.9339026]], "type": "LineString"}, "id": "788", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034086, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6410503, 41.9273876, -85.64077, 41.9273885], "geometry": {"coordinates": [[-85.6410503, 41.9273876], [-85.64077, 41.9273885]], "type": "LineString"}, "id": "789", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143995, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6553677, 41.9269356, -85.6517428, 41.9317494], "geometry": {"coordinates": [[-85.6517428, 41.9317494], [-85.6518092, 41.931266], [-85.6518285, 41.9311133], [-85.6518574, 41.9309425], [-85.6518969, 41.9307697], [-85.6519433, 41.9306021], [-85.6519956, 41.9304406], [-85.6520934, 41.9301825], [-85.6522031, 41.9299607], [-85.6523478, 41.9297009], [-85.6524875, 41.929452], [-85.6526545, 41.9292055], [-85.6528029, 41.9290018], [-85.652989, 41.9287672], [-85.653175, 41.9285643], [-85.6533698, 41.9283637], [-85.6535634, 41.9281763], [-85.6538866, 41.9278968], [-85.6541161, 41.9277202], [-85.65442, 41.9275043], [-85.6546853, 41.927335], [-85.6549325, 41.9271871], [-85.6553677, 41.9269356]], "type": "LineString"}, "id": "790", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 17967582, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517487, 41.9317494, -85.6517428, 41.9325437], "geometry": {"coordinates": [[-85.6517487, 41.9325437], [-85.6517428, 41.9317494]], "type": "LineString"}, "id": "791", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 1111894475, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467542, 41.9390937, -85.6457303, 41.9394142], "geometry": {"coordinates": [[-85.6457303, 41.9394142], [-85.6460371, 41.9394131], [-85.6467542, 41.9394103], [-85.6467516, 41.939336], [-85.6465816, 41.9392181], [-85.6464022, 41.9390937], [-85.6460397, 41.9393458], [-85.6460371, 41.9394131]], "type": "LineString"}, "id": "792", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208622588, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6471066, 41.9299668, -85.6470951, 41.9307432], "geometry": {"coordinates": [[-85.6471066, 41.9307432], [-85.6470951, 41.9299668]], "type": "LineString"}, "id": "793", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310403, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339163, 41.9435358, -85.6329761, 41.9440555], "geometry": {"coordinates": [[-85.6339163, 41.9435358], [-85.6337187, 41.9436482], [-85.6334771, 41.9437888], [-85.6329761, 41.9440555]], "type": "LineString"}, "id": "794", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370286, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506091, 41.9321698, -85.6500556, 41.9321713], "geometry": {"coordinates": [[-85.6506091, 41.9321698], [-85.6504356, 41.9321703], [-85.6500556, 41.9321713]], "type": "LineString"}, "id": "795", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116843, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6114576, 41.947489, -85.6109156, 41.948597], "geometry": {"coordinates": [[-85.6114576, 41.947489], [-85.6114165, 41.9475559], [-85.611398, 41.9478719], [-85.6113959, 41.9481802], [-85.6114123, 41.9485039], [-85.6113056, 41.948597], [-85.6109156, 41.9485894]], "type": "LineString"}, "id": "796", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871078454, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6213353, 41.9398154, -85.6209859, 41.9401443], "geometry": {"coordinates": [[-85.6213353, 41.9401443], [-85.6213222, 41.9400743], [-85.6213101, 41.9400099], [-85.6209859, 41.9398154]], "type": "LineString"}, "id": "797", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947885401, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159835, 41.9401637, -85.6158355, 41.9412878], "geometry": {"coordinates": [[-85.6159779, 41.9401637], [-85.6159835, 41.9408216], [-85.6159605, 41.9409403], [-85.6158814, 41.9411948], [-85.6158355, 41.9412878]], "type": "LineString"}, "id": "798", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 725036396, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6290427, 41.9342067, -85.6290391, 41.9351928], "geometry": {"coordinates": [[-85.6290427, 41.9351928], [-85.6290391, 41.9342067]], "type": "LineString"}, "id": "799", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771514375, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263821, 41.9321695, -85.6263674, 41.93319], "geometry": {"coordinates": [[-85.6263762, 41.93319], [-85.6263821, 41.9327245], [-85.6263674, 41.9321695]], "type": "LineString"}, "id": "800", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315379, 41.9420689, -85.6307497, 41.9427027], "geometry": {"coordinates": [[-85.631194, 41.9420689], [-85.6311251, 41.9421003], [-85.6307497, 41.9422559], [-85.6311102, 41.9427027], [-85.6314727, 41.9425648], [-85.6315379, 41.9425368]], "type": "LineString"}, "id": "801", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 780463204, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6312065, 41.9444675, -85.621459, 41.944756], "geometry": {"coordinates": [[-85.621459, 41.944756], [-85.6226744, 41.9447371], [-85.6248856, 41.9447242], [-85.6273993, 41.9446899], [-85.6286375, 41.9446764], [-85.629471, 41.9446718], [-85.6299942, 41.9446689], [-85.630139, 41.944661], [-85.630298, 41.944635], [-85.6312065, 41.9444675]], "type": "LineString"}, "id": "802", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 41074896, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6320827, 41.9537069, -85.628639, 41.9537314], "geometry": {"coordinates": [[-85.628639, 41.953725], [-85.6290597, 41.953725], [-85.629083, 41.953725], [-85.629676, 41.9537314], [-85.6302752, 41.9537226], [-85.6302845, 41.9537225], [-85.6308677, 41.9537139], [-85.6320827, 41.9537069]], "type": "LineString"}, "id": "803", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Cushman Street", "oneway": null, "osm_id": 17966787, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507766, 41.9413392, -85.6503944, 41.9415975], "geometry": {"coordinates": [[-85.6503969, 41.9415975], [-85.650396, 41.9414988], [-85.6503944, 41.9413432], [-85.6507766, 41.9413392]], "type": "LineString"}, "id": "804", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942144, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6571522, 41.9428016, -85.6541017, 41.9428137], "geometry": {"coordinates": [[-85.6541017, 41.9428133], [-85.654358, 41.9428137], [-85.655777, 41.9428041], [-85.6571522, 41.9428016]], "type": "LineString"}, "id": "805", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771081, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6440239, 41.9552083, -85.6425511, 41.9557338], "geometry": {"coordinates": [[-85.6425511, 41.9552083], [-85.6440239, 41.9557338]], "type": "LineString"}, "id": "806", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776878, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6195966, 41.9544848, -85.6195234, 41.954612], "geometry": {"coordinates": [[-85.6195234, 41.954612], [-85.6195966, 41.9544848]], "type": "LineString"}, "id": "807", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 871399920, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.613366, 41.9548559, -85.6133445, 41.9554045], "geometry": {"coordinates": [[-85.613366, 41.9554045], [-85.6133576, 41.9551912], [-85.6133445, 41.9548559]], "type": "LineString"}, "id": "808", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179343, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6171273, 41.954688, -85.610373, 41.954774], "geometry": {"coordinates": [[-85.6171273, 41.954688], [-85.616773, 41.954737], [-85.616699, 41.954742], [-85.6148042, 41.9547511], [-85.614195, 41.954754], [-85.613542, 41.954756], [-85.6118411, 41.9547642], [-85.611651, 41.954761], [-85.610373, 41.954774]], "type": "LineString"}, "id": "809", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 41074899, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6495361, 41.9306033, -85.6495102, 41.9314245], "geometry": {"coordinates": [[-85.6495361, 41.9314245], [-85.6495102, 41.9306033]], "type": "LineString"}, "id": "810", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497648, 41.9262607, -85.6497013, 41.9269716], "geometry": {"coordinates": [[-85.6497648, 41.9269716], [-85.6497013, 41.9265393], [-85.6497013, 41.9262607]], "type": "LineString"}, "id": "811", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 903726421, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497648, 41.9269716, -85.6497553, 41.9277635], "geometry": {"coordinates": [[-85.6497648, 41.9269716], [-85.6497605, 41.9273083], [-85.6497593, 41.9274166], [-85.6497574, 41.9275806], [-85.6497553, 41.9277635]], "type": "LineString"}, "id": "812", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "KDF Drive", "oneway": null, "osm_id": 259782253, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470323, 41.9333044, -85.6458467, 41.9334491], "geometry": {"coordinates": [[-85.6470323, 41.9333044], [-85.6468995, 41.9333094], [-85.6465039, 41.9333124], [-85.6464744, 41.9333284], [-85.646469, 41.9333643], [-85.6464677, 41.9334162], [-85.6464408, 41.9334391], [-85.6463724, 41.9334491], [-85.6461109, 41.9334421], [-85.6460573, 41.9334221], [-85.6460358, 41.9334012], [-85.646005, 41.9333912], [-85.6458467, 41.9333932]], "type": "LineString"}, "id": "813", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 904632317, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517642, 41.9371055, -85.651425, 41.9376145], "geometry": {"coordinates": [[-85.651425, 41.9371055], [-85.6514514, 41.9372492], [-85.6514679, 41.9373643], [-85.6514743, 41.9374748], [-85.6514797, 41.9375145], [-85.6514847, 41.9375415], [-85.6514917, 41.9375644], [-85.651513, 41.9375876], [-85.6515367, 41.9376031], [-85.6515648, 41.937608], [-85.651602, 41.9376145], [-85.6516428, 41.9376136], [-85.6516774, 41.9376081], [-85.6517141, 41.937595], [-85.6517642, 41.9375686]], "type": "LineString"}, "id": "814", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892839, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493883, 41.9346687, -85.6491767, 41.9346705], "geometry": {"coordinates": [[-85.6493883, 41.9346687], [-85.6491767, 41.9346705]], "type": "LineString"}, "id": "815", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034084, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6492242, 41.9325853, -85.649169, 41.9350984], "geometry": {"coordinates": [[-85.6492242, 41.9325853], [-85.6492211, 41.9326584], [-85.649169, 41.9339026], [-85.6491733, 41.934331], [-85.6491767, 41.9346705], [-85.649181, 41.9350984]], "type": "LineString"}, "id": "816", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034082, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510831, 41.933755, -85.6508491, 41.9351167], "geometry": {"coordinates": [[-85.650876, 41.9344656], [-85.6508586, 41.9337563], [-85.6510587, 41.933755], [-85.6510714, 41.9344638], [-85.6510831, 41.9351167], [-85.6508598, 41.9351167], [-85.6508491, 41.9344658]], "type": "LineString"}, "id": "817", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034079, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6365328, 41.9329312, -85.6355692, 41.9330969], "geometry": {"coordinates": [[-85.6365328, 41.9329312], [-85.6355692, 41.9330969]], "type": "LineString"}, "id": "818", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "West Broadway Street", "oneway": null, "osm_id": 134150815, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650778, 41.9415477, -85.6490317, 41.9422759], "geometry": {"coordinates": [[-85.6490317, 41.9422759], [-85.6497534, 41.9421402], [-85.6499948, 41.9420784], [-85.650381, 41.9418469], [-85.6504915, 41.9417636], [-85.6507207, 41.9415908], [-85.650778, 41.9415477]], "type": "LineString"}, "id": "819", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942141, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517841, 41.9397681, -85.646656, 41.939869], "geometry": {"coordinates": [[-85.6517841, 41.9397701], [-85.651418, 41.9397681], [-85.6512494, 41.9397769], [-85.6502878, 41.9397993], [-85.648941, 41.939829], [-85.6478296, 41.9398349], [-85.6477024, 41.9398356], [-85.647488, 41.939838], [-85.6469804, 41.9398569], [-85.646656, 41.939869]], "type": "LineString"}, "id": "820", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Road", "oneway": null, "osm_id": 379694336, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6318349, 41.9375304, -85.6271946, 41.943049], "geometry": {"coordinates": [[-85.6318349, 41.943049], [-85.6314727, 41.9425648], [-85.6311251, 41.9421003], [-85.6309539, 41.9418715], [-85.6308492, 41.9417316], [-85.6296408, 41.9401162], [-85.6296113, 41.940079], [-85.6295657, 41.9400125], [-85.6289595, 41.9391765], [-85.6289353, 41.9391307], [-85.6288791, 41.9390747], [-85.6281109, 41.9380345], [-85.6280422, 41.9379415], [-85.627825, 41.9376422], [-85.6278042, 41.9376286], [-85.6276882, 41.9375524], [-85.6276211, 41.9375304], [-85.6275594, 41.9375524], [-85.62742, 41.9376681], [-85.6273073, 41.9378058], [-85.6272456, 41.9379235], [-85.6272027, 41.9380612], [-85.6271946, 41.9381629], [-85.6272081, 41.9391437], [-85.6272188, 41.9400544]], "type": "LineString"}, "id": "821", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370300, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517626, 41.9348429, -85.6514071, 41.9352599], "geometry": {"coordinates": [[-85.6517626, 41.9352599], [-85.6516994, 41.9349378], [-85.6516849, 41.9348936], [-85.6516665, 41.934871], [-85.651633, 41.9348528], [-85.6515969, 41.934845], [-85.6515501, 41.9348429], [-85.651509, 41.9348463], [-85.6514713, 41.9348546], [-85.6514382, 41.9348765], [-85.6514071, 41.9349069]], "type": "LineString"}, "id": "822", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892845, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6398429, 41.9536507, -85.6398159, 41.954651], "geometry": {"coordinates": [[-85.6398159, 41.9536507], [-85.6398429, 41.954651]], "type": "LineString"}, "id": "823", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 793896305, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6200474, 41.94413, -85.618711, 41.9447384], "geometry": {"coordinates": [[-85.618711, 41.94413], [-85.6191189, 41.9441922], [-85.6194384, 41.9442405], [-85.6196543, 41.9443252], [-85.6197862, 41.9444539], [-85.6198296, 41.94473], [-85.6200474, 41.9447384]], "type": "LineString"}, "id": "824", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17964040, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517776, 41.9423425, -85.6514226, 41.9425152], "geometry": {"coordinates": [[-85.6514226, 41.9425113], [-85.6515073, 41.9425152], [-85.6515696, 41.9425097], [-85.6516223, 41.9424985], [-85.6516696, 41.9424729], [-85.6517053, 41.942446], [-85.6517415, 41.9424007], [-85.6517776, 41.9423425]], "type": "LineString"}, "id": "825", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": "yes", "osm_id": 945352903, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6413388, 41.9425955, -85.641113, 41.9427862], "geometry": {"coordinates": [[-85.6413388, 41.9427862], [-85.6412508, 41.9427677], [-85.6411944, 41.9427248], [-85.6411629, 41.9426785], [-85.641113, 41.9425955]], "type": "LineString"}, "id": "826", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 904632320, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6177994, 41.9545412, -85.6171273, 41.954688], "geometry": {"coordinates": [[-85.6177994, 41.9545412], [-85.6174545, 41.9546309], [-85.6171273, 41.954688]], "type": "LineString"}, "id": "827", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 652550661, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6533246, 41.9306338, -85.6533195, 41.9315687], "geometry": {"coordinates": [[-85.6533195, 41.9315687], [-85.6533246, 41.9306338]], "type": "LineString"}, "id": "828", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612686, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430792, 41.9353947, -85.6423397, 41.9356281], "geometry": {"coordinates": [[-85.6423397, 41.9354097], [-85.6425443, 41.9354036], [-85.6429342, 41.9353947], [-85.6430333, 41.9354029], [-85.6430727, 41.9354568], [-85.6430792, 41.9356281]], "type": "LineString"}, "id": "829", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871060227, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529491, 41.9346549, -85.6521859, 41.9350206], "geometry": {"coordinates": [[-85.6529491, 41.935014], [-85.6528371, 41.9350206], [-85.6528088, 41.9349689], [-85.6527856, 41.9347257], [-85.6524613, 41.9347257], [-85.6524108, 41.9347009], [-85.6523172, 41.9346549], [-85.6521859, 41.9347085], [-85.6521962, 41.9349804], [-85.6528088, 41.9349689]], "type": "LineString"}, "id": "830", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612671, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470582, 41.9415652, -85.6469608, 41.9425415], "geometry": {"coordinates": [[-85.6470582, 41.9425415], [-85.6470506, 41.9424655], [-85.6470405, 41.9423643], [-85.6469608, 41.9415652]], "type": "LineString"}, "id": "831", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942137, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6473667, 41.9431332, -85.6469224, 41.943225], "geometry": {"coordinates": [[-85.6469224, 41.9431332], [-85.6472638, 41.943141], [-85.6473667, 41.943225]], "type": "LineString"}, "id": "832", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488290766, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6358136, 41.9381878, -85.63576, 41.9427625], "geometry": {"coordinates": [[-85.63576, 41.9381878], [-85.6357638, 41.9387029], [-85.635779, 41.9401184], [-85.6357953, 41.9411097], [-85.6357985, 41.9413906], [-85.6357991, 41.9414384], [-85.6357992, 41.9414854], [-85.6358037, 41.9418913], [-85.6358044, 41.9419514], [-85.6358088, 41.9423413], [-85.6358125, 41.9426692], [-85.6358127, 41.9426829], [-85.6358136, 41.9427625]], "type": "LineString"}, "id": "833", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Spring Street", "oneway": null, "osm_id": 237686060, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6399801, 41.9426061, -85.6394544, 41.9431246], "geometry": {"coordinates": [[-85.6394544, 41.9431246], [-85.6399506, 41.9431241], [-85.6399614, 41.9427986], [-85.6399644, 41.9427436], [-85.6399785, 41.9426897], [-85.6399801, 41.9426061]], "type": "LineString"}, "id": "834", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 486385872, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347276, 41.9552379, -85.634539, 41.9552431], "geometry": {"coordinates": [[-85.6347276, 41.9552431], [-85.634539, 41.9552379]], "type": "LineString"}, "id": "835", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416373, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6484295, 41.9539683, -85.648055, 41.9541728], "geometry": {"coordinates": [[-85.648055, 41.9541728], [-85.6480798, 41.9540678], [-85.6481214, 41.953994], [-85.6482783, 41.9539708], [-85.6484295, 41.9539683]], "type": "LineString"}, "id": "836", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907935962, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6314327, 41.9500612, -85.6312754, 41.950124], "geometry": {"coordinates": [[-85.6314327, 41.950124], [-85.6312754, 41.9500612]], "type": "LineString"}, "id": "837", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 322012756, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6499942, 41.9306038, -85.6499941, 41.9314203], "geometry": {"coordinates": [[-85.6499942, 41.9314203], [-85.6499941, 41.9306038]], "type": "LineString"}, "id": "838", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612679, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543244, 41.9318336, -85.6535382, 41.9318376], "geometry": {"coordinates": [[-85.6543244, 41.9318376], [-85.6539313, 41.9318356], [-85.6535382, 41.9318336]], "type": "LineString"}, "id": "839", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843133, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650276, 41.9363246, -85.649989, 41.9370354], "geometry": {"coordinates": [[-85.650276, 41.9370354], [-85.6500891, 41.9370342], [-85.6500613, 41.937032], [-85.6500322, 41.9370263], [-85.6500091, 41.9370135], [-85.6499933, 41.9369916], [-85.649989, 41.9369607], [-85.6499897, 41.9365732], [-85.6499901, 41.9363246]], "type": "LineString"}, "id": "840", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 993698650, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642363, 41.9427701, -85.6422589, 41.9429856], "geometry": {"coordinates": [[-85.642363, 41.9427701], [-85.6423027, 41.9427875], [-85.6422619, 41.9428388], [-85.6422589, 41.9429206], [-85.6422988, 41.9429619], [-85.6423603, 41.9429856]], "type": "LineString"}, "id": "841", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056571141, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614617, 41.951639, -85.611187, 41.951686], "geometry": {"coordinates": [[-85.611187, 41.951686], [-85.611323, 41.951653], [-85.611892, 41.951642], [-85.612216, 41.951641], [-85.613111, 41.951639], [-85.613396, 41.95164], [-85.614221, 41.95164], [-85.614617, 41.951639]], "type": "LineString"}, "id": "842", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bates Avenue", "oneway": null, "osm_id": 17965307, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6515855, 41.9483563, -85.6508224, 41.9484171], "geometry": {"coordinates": [[-85.6515855, 41.9484171], [-85.6513166, 41.9483956], [-85.6508224, 41.9483563]], "type": "LineString"}, "id": "843", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942225, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6474185, 41.9468354, -85.6472526, 41.9468536], "geometry": {"coordinates": [[-85.6474185, 41.9468536], [-85.6472526, 41.9468354]], "type": "LineString"}, "id": "844", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942815, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6466913, 41.929973, -85.6466655, 41.9307557], "geometry": {"coordinates": [[-85.6466913, 41.9307557], [-85.6466655, 41.929973]], "type": "LineString"}, "id": "845", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310429, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462315, 41.9299795, -85.6462097, 41.9307696], "geometry": {"coordinates": [[-85.6462315, 41.9307696], [-85.6462097, 41.9299795]], "type": "LineString"}, "id": "846", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310484, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453358, 41.9442455, -85.6451333, 41.9444995], "geometry": {"coordinates": [[-85.6453358, 41.9444995], [-85.6453333, 41.9444205], [-85.6452123, 41.9442501], [-85.6451333, 41.9442455]], "type": "LineString"}, "id": "847", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 314867415, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634787, 41.933145, -85.624776, 41.933205], "geometry": {"coordinates": [[-85.624776, 41.933205], [-85.625694, 41.93319], [-85.6263762, 41.93319], [-85.627073, 41.93319], [-85.6274992, 41.9331816], [-85.628365, 41.933177], [-85.6290268, 41.9331722], [-85.6296891, 41.9331674], [-85.6303635, 41.9331643], [-85.6310242, 41.9331609], [-85.6316975, 41.9331564], [-85.6322101, 41.933153], [-85.632424, 41.9331516], [-85.6326939, 41.9331508], [-85.6339197, 41.9331474], [-85.634787, 41.933145]], "type": "LineString"}, "id": "848", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Broadway Street", "oneway": null, "osm_id": 379694384, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.645044, 41.9545612, -85.6428264, 41.955581], "geometry": {"coordinates": [[-85.6428264, 41.9545612], [-85.642894, 41.9547842], [-85.642987, 41.95486], [-85.6442727, 41.9553112], [-85.6448804, 41.9555238], [-85.645044, 41.955581]], "type": "LineString"}, "id": "849", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Manufacturing Way", "oneway": null, "osm_id": 17966415, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517686, 41.9379471, -85.6514295, 41.9384994], "geometry": {"coordinates": [[-85.6517686, 41.9384994], [-85.6517277, 41.9382441], [-85.651722, 41.9381689], [-85.651717, 41.9380856], [-85.6517145, 41.9380341], [-85.6517074, 41.9380041], [-85.6516916, 41.9379879], [-85.6516709, 41.9379704], [-85.6516402, 41.9379553], [-85.6516044, 41.9379471], [-85.6515687, 41.9379476], [-85.6515284, 41.9379521], [-85.6514809, 41.9379723], [-85.6514577, 41.9379899], [-85.6514295, 41.938015]], "type": "LineString"}, "id": "850", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892838, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339967, 41.9434899, -85.6339163, 41.9435358], "geometry": {"coordinates": [[-85.6339967, 41.9434899], [-85.6339697, 41.9435053], [-85.6339163, 41.9435358]], "type": "LineString"}, "id": "851", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370285, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6248366, 41.9391615, -85.624215, 41.940134], "geometry": {"coordinates": [[-85.6248366, 41.9391615], [-85.624835, 41.939318], [-85.624811, 41.939435], [-85.624635, 41.939703], [-85.624366, 41.940055], [-85.624287, 41.940113], [-85.624215, 41.940134]], "type": "LineString"}, "id": "852", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 1080064916, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187338, 41.9547339, -85.6186943, 41.9550001], "geometry": {"coordinates": [[-85.6186943, 41.9550001], [-85.6187338, 41.9549561], [-85.6187301, 41.9547339]], "type": "LineString"}, "id": "853", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": "yes", "osm_id": 1068082269, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507341, 41.9473812, -85.650478, 41.9479747], "geometry": {"coordinates": [[-85.6505912, 41.9479747], [-85.6507192, 41.9475705], [-85.6507324, 41.9475092], [-85.6507341, 41.9474735], [-85.6507318, 41.9474429], [-85.6507193, 41.9474198], [-85.6506989, 41.9474055], [-85.6506639, 41.9473902], [-85.6506333, 41.9473838], [-85.650589, 41.9473812], [-85.6505327, 41.9473827], [-85.650478, 41.9474008]], "type": "LineString"}, "id": "854", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892833, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517817, 41.9423425, -85.6517776, 41.9427717], "geometry": {"coordinates": [[-85.6517803, 41.9427717], [-85.6517801, 41.9426175], [-85.6517817, 41.9425652], [-85.6517776, 41.9423425]], "type": "LineString"}, "id": "855", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 945352907, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.611651, 41.953704, -85.611615, 41.954761], "geometry": {"coordinates": [[-85.611615, 41.953704], [-85.611636, 41.953938], [-85.611651, 41.954761]], "type": "LineString"}, "id": "856", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Blossom Drive", "oneway": null, "osm_id": 17964507, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6138453, 41.9556723, -85.6137873, 41.9556787], "geometry": {"coordinates": [[-85.6137873, 41.9556787], [-85.6138453, 41.9556723]], "type": "LineString"}, "id": "857", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652967186, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186943, 41.9547335, -85.6186424, 41.9550001], "geometry": {"coordinates": [[-85.6186424, 41.9547335], [-85.6186457, 41.9549562], [-85.6186943, 41.9550001]], "type": "LineString"}, "id": "858", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": "yes", "osm_id": 1068082268, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558091, 41.9414769, -85.6543434, 41.9414809], "geometry": {"coordinates": [[-85.6543434, 41.9414809], [-85.6558091, 41.9414769]], "type": "LineString"}, "id": "859", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771091, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508384, 41.9491244, -85.650831, 41.9493712], "geometry": {"coordinates": [[-85.650831, 41.9491244], [-85.6508384, 41.9493712]], "type": "LineString"}, "id": "860", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636428, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508338, 41.9497937, -85.6507612, 41.9498205], "geometry": {"coordinates": [[-85.6508338, 41.9497937], [-85.6507612, 41.9498205]], "type": "LineString"}, "id": "861", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 848056396, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644429, 41.9476126, -85.6420148, 41.9476567], "geometry": {"coordinates": [[-85.6420148, 41.9476126], [-85.642067, 41.9476391], [-85.6421288, 41.9476532], [-85.6422024, 41.9476567], [-85.6432019, 41.9476499], [-85.644429, 41.947633]], "type": "LineString"}, "id": "862", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pierson Street", "oneway": null, "osm_id": 17967618, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517795, 41.9422097, -85.6517776, 41.9423425], "geometry": {"coordinates": [[-85.6517776, 41.9423425], [-85.6517795, 41.9422097]], "type": "LineString"}, "id": "863", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 41260270, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6526531, 41.9352599, -85.6517626, 41.9356869], "geometry": {"coordinates": [[-85.6517626, 41.9352599], [-85.6519391, 41.9352649], [-85.6521347, 41.9352706], [-85.6526499, 41.9352778], [-85.6526531, 41.9356853], [-85.6521345, 41.9356869], [-85.6521347, 41.9352706]], "type": "LineString"}, "id": "864", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612669, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6559588, 41.9295599, -85.655939, 41.9315833], "geometry": {"coordinates": [[-85.6559588, 41.9315833], [-85.6559565, 41.9313701], [-85.6559545, 41.9311823], [-85.6559525, 41.9309979], [-85.6559506, 41.9308261], [-85.6559486, 41.9306335], [-85.6559467, 41.9304616], [-85.6559448, 41.9302851], [-85.6559428, 41.9300926], [-85.6559408, 41.9299115], [-85.655939, 41.9297418], [-85.6559398, 41.9295599]], "type": "LineString"}, "id": "865", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 884351100, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6547072, 41.9217072, -85.6516716, 41.9230441], "geometry": {"coordinates": [[-85.6516716, 41.9217173], [-85.6545435, 41.9217072], [-85.6546272, 41.9217291], [-85.6546772, 41.9217769], [-85.6547072, 41.9218439], [-85.6546959, 41.9221559], [-85.6546637, 41.9230441]], "type": "LineString"}, "id": "866", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963154, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443453, 41.9419191, -85.6430868, 41.9423074], "geometry": {"coordinates": [[-85.6443453, 41.9423074], [-85.6442318, 41.9423045], [-85.6437669, 41.9423073], [-85.6436611, 41.942293], [-85.6436134, 41.9422667], [-85.6435784, 41.9422473], [-85.6435245, 41.9421443], [-85.6435149, 41.9420613], [-85.6434894, 41.9420033], [-85.643438, 41.9419573], [-85.6433528, 41.9419269], [-85.6432974, 41.9419225], [-85.6432535, 41.9419191], [-85.6430868, 41.9419198]], "type": "LineString"}, "id": "867", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643101, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6428053, 41.9427582, -85.642363, 41.9427701], "geometry": {"coordinates": [[-85.6428053, 41.9427582], [-85.642363, 41.9427701]], "type": "LineString"}, "id": "868", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056571143, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514254, 41.9419832, -85.6506441, 41.9425048], "geometry": {"coordinates": [[-85.6514254, 41.9419837], [-85.6510679, 41.9419832], [-85.6506441, 41.9419852], [-85.6506551, 41.9423577], [-85.6506547, 41.9425048]], "type": "LineString"}, "id": "869", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942161, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469648, 41.93494, -85.636516, 41.935036], "geometry": {"coordinates": [[-85.636516, 41.935036], [-85.6376468, 41.9350232], [-85.6388186, 41.9350099], [-85.6400709, 41.9349957], [-85.6412214, 41.9349827], [-85.6423509, 41.934974], [-85.6442915, 41.9349794], [-85.6448698, 41.934969], [-85.6454067, 41.9349594], [-85.6455841, 41.9349562], [-85.6457364, 41.9349534], [-85.645849, 41.9349514], [-85.6464864, 41.93494], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "870", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hill Street", "oneway": null, "osm_id": 17965641, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490397, 41.9312317, -85.6478031, 41.9321363], "geometry": {"coordinates": [[-85.6484226, 41.9321345], [-85.6479139, 41.9321363], [-85.6478154, 41.9321363], [-85.6478031, 41.9312355], [-85.6490294, 41.9312317], [-85.6490397, 41.9320715], [-85.6489661, 41.9321313], [-85.6487918, 41.9321332]], "type": "LineString"}, "id": "871", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 767768420, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341323, 41.9419538, -85.6337601, 41.9424723], "geometry": {"coordinates": [[-85.6341323, 41.9419538], [-85.6340321, 41.9420376], [-85.6337854, 41.9422236], [-85.6337695, 41.9422374], [-85.6337626, 41.9422474], [-85.6337601, 41.9422556], [-85.6337607, 41.9422652], [-85.6337682, 41.9422928], [-85.6338474, 41.9424723]], "type": "LineString"}, "id": "872", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974068, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351097, 41.9416651, -85.6343414, 41.9418611], "geometry": {"coordinates": [[-85.6343414, 41.9418611], [-85.634518, 41.9418301], [-85.6345666, 41.9418285], [-85.6345979, 41.9418253], [-85.6346336, 41.9418125], [-85.6346682, 41.9417956], [-85.6347306, 41.9417449], [-85.6348391, 41.9416651], [-85.6351097, 41.9416973]], "type": "LineString"}, "id": "873", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 300732978, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336824, 41.9437132, -85.6333999, 41.9439899], "geometry": {"coordinates": [[-85.6333999, 41.9437132], [-85.6334771, 41.9437888], [-85.6336824, 41.9439899]], "type": "LineString"}, "id": "874", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Drive", "oneway": null, "osm_id": 17967752, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62575, 41.93319, -85.625688, 41.938166], "geometry": {"coordinates": [[-85.625694, 41.93319], [-85.625688, 41.934214], [-85.6257179, 41.9352095], [-85.6257389, 41.936196], [-85.6257369, 41.9371694], [-85.6257465, 41.9377376], [-85.62575, 41.937945], [-85.62574, 41.938059], [-85.62569, 41.938166]], "type": "LineString"}, "id": "875", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Street", "oneway": null, "osm_id": 379694409, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.615273, 41.945637, -85.615188, 41.947468], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.615208, 41.946468], [-85.615188, 41.945796], [-85.615212, 41.945701], [-85.615273, 41.945637]], "type": "LineString"}, "id": "876", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Evans Street", "oneway": null, "osm_id": 17964647, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167553, 41.9493531, -85.6165433, 41.9494886], "geometry": {"coordinates": [[-85.6167553, 41.9494886], [-85.6165433, 41.9493531]], "type": "LineString"}, "id": "877", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839095, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6568001, 41.9308261, -85.6559506, 41.9308283], "geometry": {"coordinates": [[-85.6568001, 41.9308283], [-85.6559506, 41.9308261]], "type": "LineString"}, "id": "878", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237745, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513133, 41.9326424, -85.6378393, 41.9397072], "geometry": {"coordinates": [[-85.6378393, 41.9328353], [-85.6387723, 41.9328218], [-85.6387947, 41.9328225], [-85.6388737, 41.9328197], [-85.6389449, 41.9328185], [-85.6389806, 41.9328165], [-85.6400392, 41.9328005], [-85.6401324, 41.9327998], [-85.6402108, 41.9328006], [-85.6411093, 41.9327867], [-85.6412041, 41.9327907], [-85.6412869, 41.93279], [-85.6413471, 41.9327893], [-85.6414097, 41.9327813], [-85.6423127, 41.9327687], [-85.6424184, 41.9327641], [-85.6425219, 41.9327627], [-85.6441629, 41.9327355], [-85.644228, 41.9327325], [-85.6443811, 41.932729], [-85.6444295, 41.9327167], [-85.6455145, 41.932703], [-85.6455686, 41.9327016], [-85.6456343, 41.9327003], [-85.6461287, 41.9326936], [-85.6462338, 41.932693], [-85.6463084, 41.9326916], [-85.6467688, 41.9326843], [-85.6468278, 41.9326883], [-85.6469147, 41.9326882], [-85.6470139, 41.932688], [-85.6471068, 41.9326877], [-85.6471461, 41.9326797], [-85.647671, 41.9326717], [-85.6477505, 41.932681], [-85.6478377, 41.932677], [-85.6479132, 41.932675], [-85.6486017, 41.9326677], [-85.648675, 41.9326644], [-85.6487277, 41.9326637], [-85.648911, 41.9326624], [-85.6489897, 41.9326597], [-85.6490952, 41.9326591], [-85.6492211, 41.9326584], [-85.6492883, 41.9326577], [-85.6495253, 41.9326544], [-85.6496656, 41.9326524], [-85.6502915, 41.9326424], [-85.6503527, 41.9326518], [-85.6504144, 41.9326665], [-85.6505002, 41.932682], [-85.6512289, 41.9326984], [-85.6512399, 41.9343549], [-85.6512342, 41.9344138], [-85.6512357, 41.9344942], [-85.6512352, 41.9345739], [-85.651244, 41.9355737], [-85.6512405, 41.9356261], [-85.6512407, 41.935699], [-85.6512462, 41.9363598], [-85.6512453, 41.9364341], [-85.6512451, 41.936508], [-85.6512561, 41.9384723], [-85.6512584, 41.9385364], [-85.6512594, 41.9386229], [-85.6512627, 41.9395449], [-85.6513133, 41.9396202], [-85.6513023, 41.9396677], [-85.6512487, 41.9397072]], "type": "LineString"}, "id": "879", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1193144007, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470403, 41.9326207, -85.6469521, 41.9349544], "geometry": {"coordinates": [[-85.6469648, 41.9349544], [-85.6470349, 41.9349027], [-85.6470403, 41.9348658], [-85.6470391, 41.9347799], [-85.6470377, 41.934581], [-85.6470336, 41.9344224], [-85.6470323, 41.9342522], [-85.6470323, 41.9333044], [-85.6470376, 41.9327138], [-85.6470139, 41.932688], [-85.6469521, 41.9326207]], "type": "LineString"}, "id": "880", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": "yes", "osm_id": 904632318, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6586363, 41.9477139, -85.6585585, 41.9477199], "geometry": {"coordinates": [[-85.6586363, 41.9477199], [-85.6585585, 41.9477139]], "type": "LineString"}, "id": "881", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942231, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6162826, 41.9352693, -85.6159968, 41.9377496], "geometry": {"coordinates": [[-85.616246, 41.9377496], [-85.6160848, 41.9369619], [-85.616235, 41.936384], [-85.6162826, 41.9360488], [-85.6161947, 41.935471], [-85.6161507, 41.9353347], [-85.6159968, 41.9352693]], "type": "LineString"}, "id": "882", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "15th Street", "oneway": null, "osm_id": 17968106, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6437353, 41.9498047, -85.6432033, 41.950383], "geometry": {"coordinates": [[-85.6432033, 41.9498047], [-85.6435645, 41.9498105], [-85.6435954, 41.9498118], [-85.6436278, 41.9498169], [-85.6436573, 41.949825], [-85.6436829, 41.9498374], [-85.6437035, 41.9498535], [-85.6437163, 41.9498696], [-85.6437248, 41.9498886], [-85.6437281, 41.9499156], [-85.6437353, 41.950338], [-85.6437276, 41.9503558], [-85.6437156, 41.9503695], [-85.6436948, 41.9503785], [-85.6436696, 41.950383], [-85.643575, 41.9503826], [-85.6432121, 41.9503811]], "type": "LineString"}, "id": "883", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225610190, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6524095, 41.9437332, -85.6521149, 41.9437545], "geometry": {"coordinates": [[-85.6521149, 41.9437332], [-85.6524095, 41.9437545]], "type": "LineString"}, "id": "884", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942242, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6193733, 41.936695, -85.6186561, 41.9366989], "geometry": {"coordinates": [[-85.6186561, 41.936695], [-85.6193733, 41.9366989]], "type": "LineString"}, "id": "885", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Sunnycrest Court", "oneway": null, "osm_id": 17966299, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.652784, 41.9259759, -85.6514577, 41.926101], "geometry": {"coordinates": [[-85.6514577, 41.926101], [-85.6516457, 41.9260922], [-85.652784, 41.9259759]], "type": "LineString"}, "id": "886", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612691, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458319, 41.9398831, -85.6453514, 41.9412425], "geometry": {"coordinates": [[-85.645806, 41.9398831], [-85.6458319, 41.9411841], [-85.6457458, 41.9412425], [-85.6454506, 41.9412421], [-85.6453514, 41.9412419]], "type": "LineString"}, "id": "887", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Matthew Drive", "oneway": null, "osm_id": 203968033, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.647423, 41.9458833, -85.6474022, 41.9471251], "geometry": {"coordinates": [[-85.647423, 41.9471251], [-85.6474211, 41.9470126], [-85.6474185, 41.9468536], [-85.6474165, 41.9467381], [-85.6474159, 41.9467008], [-85.6474022, 41.9458833]], "type": "LineString"}, "id": "888", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bentwaters Avenue", "oneway": null, "osm_id": 203968030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462904, 41.9548499, -85.6461305, 41.955097], "geometry": {"coordinates": [[-85.6461305, 41.955097], [-85.6462904, 41.9548499]], "type": "LineString"}, "id": "889", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "trunk", "layer": "1", "name": "US-131", "oneway": "yes", "osm_id": 134151789, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6484519, 41.9418177, -85.6480756, 41.9418203], "geometry": {"coordinates": [[-85.6480756, 41.9418177], [-85.6484519, 41.9418203]], "type": "LineString"}, "id": "890", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942156, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513369, 41.9424136, -85.6431887, 41.9426639], "geometry": {"coordinates": [[-85.6513369, 41.9426489], [-85.6512685, 41.9426514], [-85.6511629, 41.9426294], [-85.6511045, 41.9426221], [-85.6510417, 41.9426128], [-85.6509309, 41.9426191], [-85.6509202, 41.9426194], [-85.6507994, 41.9426231], [-85.6506895, 41.942625], [-85.6506539, 41.9426241], [-85.6505956, 41.942626], [-85.6504843, 41.942625], [-85.6504462, 41.9426261], [-85.650385, 41.942626], [-85.6501383, 41.942627], [-85.6500631, 41.9426282], [-85.649976, 41.942628], [-85.6498513, 41.94263], [-85.649774, 41.9426271], [-85.6497265, 41.94263], [-85.6494047, 41.94263], [-85.6493653, 41.942628], [-85.6493242, 41.94263], [-85.6490654, 41.942634], [-85.6490064, 41.9426051], [-85.6489596, 41.9426051], [-85.6488495, 41.9426071], [-85.648769, 41.9426081], [-85.6486738, 41.942615], [-85.6485946, 41.9426141], [-85.6481105, 41.9426121], [-85.6480536, 41.9426127], [-85.6479992, 41.9426111], [-85.6475338, 41.9426151], [-85.6474906, 41.9426181], [-85.6474333, 41.9426171], [-85.6473635, 41.9426191], [-85.6472753, 41.942616], [-85.6471945, 41.9426211], [-85.6469961, 41.942624], [-85.6469164, 41.942623], [-85.6468204, 41.9426201], [-85.6466836, 41.942624], [-85.6463148, 41.942629], [-85.6462575, 41.942623], [-85.6462263, 41.942627], [-85.6461927, 41.942638], [-85.6461042, 41.942641], [-85.6460424, 41.942643], [-85.645946, 41.942646], [-85.6455798, 41.942647], [-85.6450279, 41.942649], [-85.6443622, 41.942653], [-85.6441542, 41.94265], [-85.6438671, 41.9426529], [-85.643194, 41.9426639], [-85.64319, 41.9425748], [-85.6431887, 41.9424874], [-85.6443561, 41.9424865], [-85.6455551, 41.9424794], [-85.6458694, 41.9424834], [-85.646181, 41.9424776], [-85.6462316, 41.9424724], [-85.646351, 41.9424714], [-85.6463796, 41.9424735], [-85.6464475, 41.9424694], [-85.6466796, 41.9424684], [-85.6467466, 41.9424694], [-85.6468029, 41.9424674], [-85.6468686, 41.9424674], [-85.646914, 41.942468], [-85.6469464, 41.9424684], [-85.6470108, 41.9424674], [-85.6470506, 41.9424655], [-85.6471436, 41.9424654], [-85.6474078, 41.9424615], [-85.6474605, 41.9424645], [-85.6475244, 41.9424615], [-85.6477189, 41.9424595], [-85.6477899, 41.9424602], [-85.6478544, 41.9424605], [-85.6479777, 41.9424595], [-85.648067, 41.9424565], [-85.6481239, 41.9424605], [-85.6481709, 41.9424585], [-85.6482402, 41.9424606], [-85.6482768, 41.9424605], [-85.6484954, 41.9424605], [-85.6486912, 41.9424485], [-85.6488535, 41.9424325], [-85.6489675, 41.9424136]], "type": "LineString"}, "id": "891", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550682, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6475245, 41.9427563, -85.6475152, 41.942977], "geometry": {"coordinates": [[-85.6475152, 41.9427563], [-85.6475245, 41.942977]], "type": "LineString"}, "id": "892", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942836, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6408832, 41.9431057, -85.6406657, 41.943107], "geometry": {"coordinates": [[-85.6408832, 41.9431057], [-85.6407923, 41.9431062], [-85.6406657, 41.943107]], "type": "LineString"}, "id": "893", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615984, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642363, 41.9427701, -85.6423603, 41.9429856], "geometry": {"coordinates": [[-85.642363, 41.9427701], [-85.6423603, 41.9429856]], "type": "LineString"}, "id": "894", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 486385873, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6409572, 41.9420264, -85.6409356, 41.9425974], "geometry": {"coordinates": [[-85.6409572, 41.9425974], [-85.6409542, 41.9425184], [-85.6409356, 41.9420264]], "type": "LineString"}, "id": "895", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942127, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643071, 41.941288, -85.641825, 41.941316], "geometry": {"coordinates": [[-85.643071, 41.941288], [-85.6427798, 41.9412945], [-85.6418494, 41.9413154], [-85.641825, 41.941316]], "type": "LineString"}, "id": "896", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Street", "oneway": "yes", "osm_id": 204000205, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512595, 41.9397072, -85.6399212, 41.9424181], "geometry": {"coordinates": [[-85.6491367, 41.9424181], [-85.649336, 41.9423703], [-85.6494503, 41.9423088], [-85.6496903, 41.942234], [-85.649917, 41.9421502], [-85.650094, 41.9420744], [-85.650263, 41.9419816], [-85.6505473, 41.9417901], [-85.6507847, 41.9415906], [-85.6508155, 41.9415477], [-85.6508732, 41.9414759], [-85.6509067, 41.9414529], [-85.651014, 41.9413113], [-85.651136, 41.9411337], [-85.6512554, 41.9409163], [-85.6512595, 41.9407447], [-85.6512554, 41.9405771], [-85.6512529, 41.9404989], [-85.6512541, 41.9404354], [-85.6512554, 41.9402266], [-85.6512541, 41.9398758], [-85.6512494, 41.9397769], [-85.6512487, 41.9397072], [-85.6503609, 41.9397122], [-85.6502817, 41.9397147], [-85.6501611, 41.9397142], [-85.6497118, 41.9397311], [-85.6484596, 41.9397556], [-85.6477967, 41.939767], [-85.6477033, 41.939772], [-85.647617, 41.939774], [-85.6469277, 41.939792], [-85.6457931, 41.9398149], [-85.6457469, 41.9398168], [-85.6456576, 41.9398269], [-85.6455664, 41.9398349], [-85.645368, 41.9398319], [-85.6452633, 41.9398289], [-85.6442656, 41.9398688], [-85.6437224, 41.9398937], [-85.6432839, 41.9399157], [-85.6432463, 41.9399456], [-85.6431954, 41.9399446], [-85.6431042, 41.9399307], [-85.6422888, 41.9399686], [-85.6422153, 41.9399715], [-85.6421198, 41.9399735], [-85.641126, 41.9399815], [-85.6410946, 41.9399845], [-85.6409986, 41.9399835], [-85.6400035, 41.9399885], [-85.6399212, 41.9399845]], "type": "LineString"}, "id": "897", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550669, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321742, 41.943049, -85.6318349, 41.943454], "geometry": {"coordinates": [[-85.6321742, 41.943454], [-85.6318349, 41.943049]], "type": "LineString"}, "id": "898", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 847370301, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6325485, 41.9442766, -85.6322992, 41.9445625], "geometry": {"coordinates": [[-85.6322992, 41.9442766], [-85.632447, 41.9444461], [-85.6325485, 41.9445625]], "type": "LineString"}, "id": "899", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "no", "osm_id": 847427787, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6331258, 41.9443541, -85.633089, 41.944392], "geometry": {"coordinates": [[-85.633089, 41.9443541], [-85.6331258, 41.944392]], "type": "LineString"}, "id": "900", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427771, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336697, 41.9447663, -85.6336397, 41.9447832], "geometry": {"coordinates": [[-85.6336697, 41.9447663], [-85.6336397, 41.9447832]], "type": "LineString"}, "id": "901", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427765, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354227, 41.943052, -85.6349641, 41.9438906], "geometry": {"coordinates": [[-85.6353859, 41.9432898], [-85.6354227, 41.9434326], [-85.635271, 41.943654], [-85.6352657, 41.9437437], [-85.635277, 41.94378], [-85.635271, 41.9438195], [-85.6351563, 41.9438906], [-85.6351384, 41.9438882], [-85.6351514, 41.9438034], [-85.6351237, 41.9436641], [-85.6351498, 41.9436108], [-85.6351058, 41.9435345], [-85.6349641, 41.9432051], [-85.6349658, 41.9431481], [-85.6350081, 41.9431287], [-85.6350021, 41.9431107], [-85.6352192, 41.943052]], "type": "LineString"}, "id": "902", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972940, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342864, 41.9433363, -85.6342341, 41.9433662], "geometry": {"coordinates": [[-85.6342864, 41.9433363], [-85.6342341, 41.9433662]], "type": "LineString"}, "id": "903", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370289, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6329761, 41.9438989, -85.632842, 41.9440555], "geometry": {"coordinates": [[-85.6329761, 41.9440555], [-85.6329202, 41.9439902], [-85.632842, 41.9438989]], "type": "LineString"}, "id": "904", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427757, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339256, 41.9432984, -85.632842, 41.9438989], "geometry": {"coordinates": [[-85.632842, 41.9438989], [-85.633547, 41.9435025], [-85.6336585, 41.9434434], [-85.6337044, 41.9434191], [-85.6339256, 41.9432984]], "type": "LineString"}, "id": "905", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427763, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6343414, 41.9418611, -85.6342037, 41.9418842], "geometry": {"coordinates": [[-85.6343414, 41.9418611], [-85.6342037, 41.9418842]], "type": "LineString"}, "id": "906", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 203974061, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636798, 41.9428127, -85.6367949, 41.9430509], "geometry": {"coordinates": [[-85.636798, 41.9430509], [-85.6367949, 41.9428127]], "type": "LineString"}, "id": "907", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998356, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370277, 41.9413618, -85.6370124, 41.9426234], "geometry": {"coordinates": [[-85.6370124, 41.9413618], [-85.6370167, 41.942365], [-85.6370244, 41.9425463], [-85.6370277, 41.9426234]], "type": "LineString"}, "id": "908", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "South Constantine Street", "oneway": null, "osm_id": 17966400, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430089, 41.9424994, -85.6348245, 41.9431193], "geometry": {"coordinates": [[-85.6348245, 41.9429852], [-85.6351392, 41.9428838], [-85.635311, 41.9428285], [-85.6357402, 41.9427019], [-85.6358127, 41.9426829], [-85.6359078, 41.942653], [-85.6362337, 41.9425602], [-85.6369981, 41.9425472], [-85.6370244, 41.9425463], [-85.6370933, 41.9425462], [-85.6381488, 41.9425403], [-85.6382337, 41.9425383], [-85.6383137, 41.9425383], [-85.639392, 41.9425313], [-85.6394516, 41.9425322], [-85.6395704, 41.9425313], [-85.6402704, 41.9425213], [-85.6403436, 41.9425163], [-85.6404085, 41.9425183], [-85.640595, 41.9425173], [-85.6406574, 41.9425183], [-85.6407519, 41.9425213], [-85.6409542, 41.9425184], [-85.6410818, 41.9425173], [-85.641872, 41.9425043], [-85.6429955, 41.9424994], [-85.6430036, 41.9425763], [-85.6430089, 41.94266], [-85.6423052, 41.9426651], [-85.6419851, 41.9426698], [-85.6418758, 41.9426709], [-85.6416457, 41.9426726], [-85.6411629, 41.9426785], [-85.6407478, 41.9426829], [-85.6406598, 41.9426764], [-85.6405789, 41.9426819], [-85.6400546, 41.9426892], [-85.6399785, 41.9426897], [-85.639888, 41.9426902], [-85.6395315, 41.9426919], [-85.6394547, 41.9426899], [-85.6393719, 41.9426919], [-85.6383191, 41.9427029], [-85.6382354, 41.9427058], [-85.6381488, 41.9427029], [-85.6376325, 41.9427039], [-85.6375513, 41.9427048], [-85.637438, 41.9427029], [-85.6373495, 41.9427019], [-85.6372319, 41.9427018], [-85.6371872, 41.9427029], [-85.6371094, 41.9427078], [-85.6370323, 41.9427058], [-85.6369552, 41.9427068], [-85.6366092, 41.9427188], [-85.6362981, 41.9427467], [-85.6361208, 41.9427777], [-85.6359749, 41.9428146], [-85.6358045, 41.9428605], [-85.6357339, 41.9428779], [-85.6356597, 41.9428934], [-85.6355216, 41.9429413], [-85.6354622, 41.9429562], [-85.6353982, 41.9429792], [-85.6352122, 41.9430357], [-85.634904, 41.9431193]], "type": "LineString"}, "id": "909", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550687, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351619, 41.9473145, -85.6346438, 41.9476764], "geometry": {"coordinates": [[-85.6346438, 41.9476764], [-85.6351619, 41.9476656], [-85.6351542, 41.9474813], [-85.6351474, 41.9474705], [-85.6351286, 41.9474553], [-85.6351113, 41.9474369], [-85.6351064, 41.9474209], [-85.6351132, 41.9473145]], "type": "LineString"}, "id": "910", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 217907771, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354214, 41.9476656, -85.6351619, 41.9476656], "geometry": {"coordinates": [[-85.6351619, 41.9476656], [-85.6354214, 41.9476656]], "type": "LineString"}, "id": "911", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1081142868, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346449, 41.9456229, -85.6344386, 41.9460571], "geometry": {"coordinates": [[-85.6344386, 41.9456229], [-85.6345572, 41.9457377], [-85.634573, 41.945764], [-85.634616, 41.945849], [-85.634629, 41.945893], [-85.6346449, 41.9460571]], "type": "LineString"}, "id": "912", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427781, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6332218, 41.9453585, -85.6328885, 41.9455614], "geometry": {"coordinates": [[-85.6332218, 41.9453585], [-85.6329898, 41.9454997], [-85.6328885, 41.9455614]], "type": "LineString"}, "id": "913", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970902, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450908, 41.9488957, -85.644697, 41.9489013], "geometry": {"coordinates": [[-85.644697, 41.9489013], [-85.6450908, 41.9488957]], "type": "LineString"}, "id": "914", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 218004775, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6334246, 41.9447133, -85.6320913, 41.945541], "geometry": {"coordinates": [[-85.6320913, 41.9449492], [-85.6322786, 41.94485], [-85.6325366, 41.9447133], [-85.6332218, 41.9453585], [-85.6334246, 41.945541]], "type": "LineString"}, "id": "915", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970903, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361908, 41.9429637, -85.6354652, 41.9431825], "geometry": {"coordinates": [[-85.6354652, 41.9429637], [-85.6355015, 41.9431705], [-85.635767, 41.9431751], [-85.6361908, 41.9431825]], "type": "LineString"}, "id": "916", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998361, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6364697, 41.9608012, -85.6357842, 41.961089], "geometry": {"coordinates": [[-85.6363514, 41.961089], [-85.6364598, 41.96095], [-85.6364697, 41.9608012], [-85.6357842, 41.960811]], "type": "LineString"}, "id": "917", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 307186116, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382347, 41.9400924, -85.6381941, 41.9426146], "geometry": {"coordinates": [[-85.6381941, 41.9400924], [-85.6382188, 41.9413554], [-85.6382337, 41.9425383], [-85.6382347, 41.9426146]], "type": "LineString"}, "id": "918", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Andrews Street", "oneway": null, "osm_id": 17967315, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370321, 41.9459913, -85.6364433, 41.9460423], "geometry": {"coordinates": [[-85.6364433, 41.9460423], [-85.6366156, 41.9460282], [-85.6368316, 41.9460046], [-85.6370321, 41.9459913]], "type": "LineString"}, "id": "919", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Moore Street", "oneway": null, "osm_id": 134150840, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6437591, 41.9554262, -85.6416526, 41.9561834], "geometry": {"coordinates": [[-85.6437591, 41.9561834], [-85.6416526, 41.9554262]], "type": "LineString"}, "id": "920", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776875, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6343843, 41.9432884, -85.6342864, 41.9433363], "geometry": {"coordinates": [[-85.6343843, 41.9432884], [-85.6343389, 41.9433106], [-85.6342864, 41.9433363]], "type": "LineString"}, "id": "921", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370290, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310486, 41.9578161, -85.631045, 41.9586044], "geometry": {"coordinates": [[-85.6310486, 41.9586044], [-85.631045, 41.9578161]], "type": "LineString"}, "id": "922", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1214775664, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480819, 41.941345, -85.648066, 41.9425328], "geometry": {"coordinates": [[-85.648066, 41.9425328], [-85.648067, 41.9424565], [-85.6480756, 41.9418177], [-85.6480819, 41.941345]], "type": "LineString"}, "id": "923", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942155, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467484, 41.9417337, -85.6467464, 41.9425441], "geometry": {"coordinates": [[-85.6467464, 41.9425441], [-85.6467466, 41.9424694], [-85.6467484, 41.9417337]], "type": "LineString"}, "id": "924", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331307681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469334, 41.9425427, -85.6469154, 41.944059], "geometry": {"coordinates": [[-85.6469154, 41.9425427], [-85.6469164, 41.942623], [-85.6469224, 41.9431332], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "925", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Benjamin Drive", "oneway": null, "osm_id": 203968024, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6454762, 41.9384748, -85.6448147, 41.9389498], "geometry": {"coordinates": [[-85.6454762, 41.9389498], [-85.6452037, 41.9388166], [-85.6449204, 41.9386622], [-85.6448666, 41.9386136], [-85.6448147, 41.9384748]], "type": "LineString"}, "id": "926", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643125, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6460483, 41.9515342, -85.6450827, 41.9519157], "geometry": {"coordinates": [[-85.6460483, 41.9519157], [-85.6457908, 41.9518807], [-85.6452882, 41.9518821], [-85.6451781, 41.9518616], [-85.6451359, 41.9518275], [-85.6451176, 41.9517811], [-85.6450827, 41.9515342]], "type": "LineString"}, "id": "927", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871113045, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6451964, 41.9461743, -85.6444166, 41.9463601], "geometry": {"coordinates": [[-85.6444166, 41.9463259], [-85.6445702, 41.9463363], [-85.6448312, 41.9463601], [-85.6450782, 41.9463234], [-85.6451679, 41.9462477], [-85.6451964, 41.9461743]], "type": "LineString"}, "id": "928", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871082209, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6475835, 41.9467381, -85.6474165, 41.9470126], "geometry": {"coordinates": [[-85.6474165, 41.9467381], [-85.6474655, 41.9467416], [-85.6475185, 41.9467647], [-85.6475584, 41.9467995], [-85.6475809, 41.9468421], [-85.6475835, 41.9468878], [-85.6475658, 41.9469316], [-85.6475299, 41.9469687], [-85.6474802, 41.9469948], [-85.6474211, 41.9470126]], "type": "LineString"}, "id": "929", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 498942814, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467698, 41.9540853, -85.6465551, 41.9540915], "geometry": {"coordinates": [[-85.6465551, 41.9540853], [-85.6467698, 41.9540915]], "type": "LineString"}, "id": "930", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 652550667, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345079, 41.9457778, -85.6344154, 41.9461817], "geometry": {"coordinates": [[-85.6345079, 41.9461817], [-85.634507, 41.9458632], [-85.634499, 41.9458283], [-85.6344596, 41.9457898], [-85.6344154, 41.9457778]], "type": "LineString"}, "id": "931", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427768, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344851, 41.9454935, -85.6342315, 41.9456026], "geometry": {"coordinates": [[-85.6344851, 41.9454935], [-85.6343577, 41.9455483], [-85.6342315, 41.9456026]], "type": "LineString"}, "id": "932", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427766, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346782, 41.9456731, -85.6344596, 41.9457898], "geometry": {"coordinates": [[-85.6346782, 41.9456731], [-85.6345572, 41.9457377], [-85.6344596, 41.9457898]], "type": "LineString"}, "id": "933", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640907, 41.9435689, -85.640672, 41.9435717], "geometry": {"coordinates": [[-85.640907, 41.9435689], [-85.6408013, 41.9435702], [-85.640672, 41.9435717]], "type": "LineString"}, "id": "934", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615985, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6438794, 41.9426991, -85.64372, 41.9429932], "geometry": {"coordinates": [[-85.6438794, 41.9429932], [-85.6437259, 41.9429909], [-85.64372, 41.9427013], [-85.6438688, 41.9426991]], "type": "LineString"}, "id": "935", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486385876, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430697, 41.9405521, -85.6428388, 41.9411732], "geometry": {"coordinates": [[-85.6430624, 41.9405521], [-85.6428388, 41.9407211], [-85.6428411, 41.9409974], [-85.6430697, 41.9411732]], "type": "LineString"}, "id": "936", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 204003419, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.639924, 41.9399021, -85.6393311, 41.9400784], "geometry": {"coordinates": [[-85.639924, 41.939903], [-85.6393844, 41.9399021], [-85.6393607, 41.9399208], [-85.6393457, 41.9400127], [-85.6393311, 41.9400784]], "type": "LineString"}, "id": "937", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907723401, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6406588, 41.9400627, -85.6406114, 41.942601], "geometry": {"coordinates": [[-85.6406114, 41.9400627], [-85.6406381, 41.9413339], [-85.6406574, 41.9425183], [-85.6406588, 41.942601]], "type": "LineString"}, "id": "938", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Lincoln Avenue", "oneway": null, "osm_id": 17966041, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6352459, 41.9401088, -85.6346806, 41.9402478], "geometry": {"coordinates": [[-85.6352459, 41.9402446], [-85.6350643, 41.9402383], [-85.6348423, 41.9402478], [-85.6347731, 41.9402099], [-85.6346806, 41.9401088]], "type": "LineString"}, "id": "939", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947116510, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345671, 41.9379656, -85.6339783, 41.9382273], "geometry": {"coordinates": [[-85.6339783, 41.9382273], [-85.6339905, 41.9380467], [-85.6340346, 41.9379718], [-85.6341022, 41.9379656], [-85.6341449, 41.9380056], [-85.6341205, 41.9380746], [-85.6342104, 41.9380985], [-85.6343181, 41.9381645], [-85.6345113, 41.9381598], [-85.6345671, 41.9381816]], "type": "LineString"}, "id": "940", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336397, 41.9447832, -85.633475, 41.9448816], "geometry": {"coordinates": [[-85.633475, 41.9448816], [-85.633567, 41.9448266], [-85.6336397, 41.9447832]], "type": "LineString"}, "id": "941", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427755, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6359415, 41.9439899, -85.6336824, 41.9459797], "geometry": {"coordinates": [[-85.6336824, 41.9439899], [-85.6338478, 41.9441519], [-85.6341246, 41.9443913], [-85.635094, 41.9451026], [-85.6351753, 41.9451672], [-85.635374, 41.945325], [-85.635643, 41.945585], [-85.635853, 41.94586], [-85.6359415, 41.9459797]], "type": "LineString"}, "id": "942", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Drive", "oneway": null, "osm_id": 847427777, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351431, 41.9439117, -85.6348853, 41.9439217], "geometry": {"coordinates": [[-85.6351431, 41.9439217], [-85.6348853, 41.9439117]], "type": "LineString"}, "id": "943", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "path", "layer": "1", "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974058, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6329938, 41.9440821, -85.632971, 41.944093], "geometry": {"coordinates": [[-85.6329938, 41.9440821], [-85.632971, 41.944093]], "type": "LineString"}, "id": "944", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427759, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634904, 41.9431193, -85.6347357, 41.9431737], "geometry": {"coordinates": [[-85.634904, 41.9431193], [-85.6347357, 41.9431737]], "type": "LineString"}, "id": "945", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550713, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6384724, 41.9443605, -85.6382523, 41.9444134], "geometry": {"coordinates": [[-85.6382523, 41.9444134], [-85.6384724, 41.9443605]], "type": "LineString"}, "id": "946", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972939, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633258, 41.947315, -85.633183, 41.949893], "geometry": {"coordinates": [[-85.633183, 41.947315], [-85.633214, 41.948618], [-85.633258, 41.949893]], "type": "LineString"}, "id": "947", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": null, "osm_id": 17967444, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6419999, 41.9383384, -85.6418243, 41.938951], "geometry": {"coordinates": [[-85.6419807, 41.938951], [-85.6419999, 41.938342], [-85.6418243, 41.9383384]], "type": "LineString"}, "id": "948", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 221397311, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361494, 41.946142, -85.6354163, 41.946757], "geometry": {"coordinates": [[-85.6354163, 41.946142], [-85.6355644, 41.9461768], [-85.6357546, 41.9462214], [-85.6357937, 41.9462542], [-85.6358654, 41.9464843], [-85.635869, 41.9465971], [-85.6358723, 41.9467048], [-85.6359549, 41.9467499], [-85.6361494, 41.946757]], "type": "LineString"}, "id": "949", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6434709, 41.9284393, -85.63928, 41.929221], "geometry": {"coordinates": [[-85.63928, 41.929221], [-85.6393194, 41.9291139], [-85.6393602, 41.9286062], [-85.6394451, 41.9285197], [-85.6397677, 41.9284907], [-85.640513, 41.928473], [-85.6410582, 41.9284601], [-85.6416273, 41.9284523], [-85.6419828, 41.9284475], [-85.6425818, 41.9284393], [-85.6430153, 41.9284512], [-85.6434709, 41.9284638]], "type": "LineString"}, "id": "950", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1178149220, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632488, 41.941063, -85.6323502, 41.941103], "geometry": {"coordinates": [[-85.6323502, 41.941103], [-85.632488, 41.941063]], "type": "LineString"}, "id": "951", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203985744, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638724, 41.955913, -85.6382746, 41.9560876], "geometry": {"coordinates": [[-85.6382746, 41.9560876], [-85.6384392, 41.9560629], [-85.6386374, 41.9560366], [-85.638724, 41.955913]], "type": "LineString"}, "id": "952", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 772282739, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382838, 41.9560876, -85.6374707, 41.9563685], "geometry": {"coordinates": [[-85.6374707, 41.9563685], [-85.6382838, 41.9563633], [-85.6382746, 41.9560876], [-85.6374721, 41.9560979]], "type": "LineString"}, "id": "953", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 770145167, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6349874, 41.9619315, -85.6348207, 41.9619375], "geometry": {"coordinates": [[-85.6349874, 41.9619375], [-85.6349769, 41.9619328], [-85.6348207, 41.9619315]], "type": "LineString"}, "id": "954", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 779892030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6424237, 41.9317372, -85.6423202, 41.9361655], "geometry": {"coordinates": [[-85.6424219, 41.9317372], [-85.6424237, 41.9318871], [-85.64242, 41.932699], [-85.6424184, 41.9327641], [-85.6423893, 41.9339381], [-85.6423509, 41.934974], [-85.6423397, 41.9354097], [-85.6423321, 41.9357026], [-85.6423229, 41.9360597], [-85.6423202, 41.9361655]], "type": "LineString"}, "id": "955", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 17966325, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436134, 41.9419225, -85.6432974, 41.9423887], "geometry": {"coordinates": [[-85.6432974, 41.9419225], [-85.6433055, 41.9421632], [-85.6433538, 41.9422849], [-85.6434718, 41.9423887], [-85.6436134, 41.9422667]], "type": "LineString"}, "id": "956", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643102, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483351, 41.9344216, -85.6469648, 41.9349544], "geometry": {"coordinates": [[-85.6483351, 41.9344216], [-85.6483349, 41.9345756], [-85.6483349, 41.9346027], [-85.6483346, 41.9347803], [-85.6483344, 41.9348885], [-85.6482412, 41.9349448], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "957", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800862, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6316975, 41.9331564, -85.631591, 41.934167], "geometry": {"coordinates": [[-85.631591, 41.934167], [-85.6316587, 41.9340647], [-85.6316768, 41.9339666], [-85.6316923, 41.9336992], [-85.6316975, 41.9331564]], "type": "LineString"}, "id": "958", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199688, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6432741, 41.9294683, -85.6397046, 41.9302911], "geometry": {"coordinates": [[-85.6397046, 41.9302911], [-85.6400447, 41.9302383], [-85.6404145, 41.9301628], [-85.640661, 41.9300769], [-85.6410292, 41.9299202], [-85.6412241, 41.9298217], [-85.6419185, 41.9294683], [-85.6425638, 41.9294705], [-85.643072, 41.9295673], [-85.6432603, 41.9297063], [-85.6432741, 41.9298347], [-85.6430048, 41.9300157], [-85.6424558, 41.9301956], [-85.641949, 41.9302513], [-85.64163, 41.9301856]], "type": "LineString"}, "id": "959", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331310837, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6476037, 41.9307343, -85.6461498, 41.9326317], "geometry": {"coordinates": [[-85.6476037, 41.9326155], [-85.6476005, 41.9325159], [-85.6475446, 41.9307842], [-85.6473984, 41.9307343], [-85.6471066, 41.9307432], [-85.6468732, 41.9307502], [-85.6466913, 41.9307557], [-85.6464503, 41.930763], [-85.6462315, 41.9307696], [-85.6462088, 41.9307703], [-85.6461498, 41.930874], [-85.6461703, 41.9325357], [-85.6461715, 41.9326317]], "type": "LineString"}, "id": "960", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607644868, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6448659, 41.9544732, -85.6433323, 41.9553044], "geometry": {"coordinates": [[-85.6433323, 41.9544732], [-85.6435153, 41.9546522], [-85.6441611, 41.9550095], [-85.6444331, 41.9551578], [-85.6448659, 41.9553044]], "type": "LineString"}, "id": "961", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768508834, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336155, 41.9665182, -85.632652, 41.9677035], "geometry": {"coordinates": [[-85.6336155, 41.9677035], [-85.6336142, 41.967487], [-85.633613, 41.9672979], [-85.6336109, 41.9669663], [-85.6335987, 41.966603], [-85.6335702, 41.9665576], [-85.6335295, 41.9665379], [-85.6334664, 41.9665228], [-85.6331712, 41.9665182], [-85.6327518, 41.9665334], [-85.6326927, 41.9665515], [-85.6326581, 41.9665924], [-85.632652, 41.966656], [-85.6326622, 41.9672857], [-85.6326626, 41.9673067], [-85.632666, 41.9674796], [-85.6326704, 41.9676989]], "type": "LineString"}, "id": "962", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766819275, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635601, 41.9583025, -85.6355981, 41.9584676], "geometry": {"coordinates": [[-85.6355981, 41.9583025], [-85.635601, 41.9584676]], "type": "LineString"}, "id": "963", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454968, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6423063, 41.9425816, -85.6423027, 41.9427875], "geometry": {"coordinates": [[-85.6423063, 41.9425816], [-85.6423052, 41.9426651], [-85.6423027, 41.9427875]], "type": "LineString"}, "id": "964", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056571142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350256, 41.9619375, -85.6349874, 41.9625681], "geometry": {"coordinates": [[-85.6350256, 41.9625681], [-85.6350114, 41.9619585], [-85.6350034, 41.9619447], [-85.6349874, 41.9619375]], "type": "LineString"}, "id": "965", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 777996087, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6427798, 41.9411572, -85.6418494, 41.9413154], "geometry": {"coordinates": [[-85.6427798, 41.9412945], [-85.6427701, 41.9411777], [-85.6427323, 41.9411572], [-85.6418766, 41.9411644], [-85.6418543, 41.9411921], [-85.6418494, 41.9413154]], "type": "LineString"}, "id": "966", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 204003421, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346358, 41.947315, -85.633183, 41.947323], "geometry": {"coordinates": [[-85.633183, 41.947315], [-85.6339169, 41.9473191], [-85.6344097, 41.9473218], [-85.6346358, 41.947323]], "type": "LineString"}, "id": "967", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Prutzman Street", "oneway": null, "osm_id": 17965349, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6495916, 41.9491631, -85.643195, 41.949261], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.644466, 41.949246], [-85.6450946, 41.949233], [-85.6460234, 41.9492137], [-85.6469834, 41.949197], [-85.6474524, 41.9491881], [-85.6483619, 41.9491709], [-85.6486579, 41.9491678], [-85.6490788, 41.9491652], [-85.6494003, 41.9491647], [-85.6495916, 41.9491631]], "type": "LineString"}, "id": "968", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Arnold Street", "oneway": null, "osm_id": 17965839, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348195, 41.9630124, -85.6342668, 41.9630307], "geometry": {"coordinates": [[-85.6348195, 41.9630124], [-85.6342668, 41.9630307]], "type": "LineString"}, "id": "969", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871038029, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6338879, 41.9612014, -85.6338772, 41.9614886], "geometry": {"coordinates": [[-85.6338772, 41.9612014], [-85.6338879, 41.9614886]], "type": "LineString"}, "id": "970", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 337683153, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6448702, 41.934969, -85.6442957, 41.9354807], "geometry": {"coordinates": [[-85.6448698, 41.934969], [-85.6448702, 41.9353961], [-85.644849, 41.9354414], [-85.6447988, 41.935465], [-85.6442957, 41.9354807]], "type": "LineString"}, "id": "971", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907670909, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453514, 41.9412419, -85.644727, 41.9417126], "geometry": {"coordinates": [[-85.644727, 41.941262], [-85.6447421, 41.9416621], [-85.6448419, 41.9417126], [-85.6451269, 41.9417075], [-85.6451545, 41.9416625], [-85.6451706, 41.9412509], [-85.6453514, 41.9412419]], "type": "LineString"}, "id": "972", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962613, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263691, 41.9301644, -85.6257282, 41.9311792], "geometry": {"coordinates": [[-85.6263682, 41.9311792], [-85.626366, 41.9307083], [-85.6263691, 41.9305143], [-85.6263567, 41.9303893], [-85.6263321, 41.9302952], [-85.6262827, 41.9302206], [-85.6262256, 41.9301873], [-85.6261084, 41.9301644], [-85.6257282, 41.9301667]], "type": "LineString"}, "id": "973", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199683, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347658, 41.9461525, -85.6347645, 41.9461774], "geometry": {"coordinates": [[-85.6347645, 41.9461525], [-85.6347658, 41.9461774]], "type": "LineString"}, "id": "974", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427783, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6438578, 41.9552874, -85.6417453, 41.9560158], "geometry": {"coordinates": [[-85.6417453, 41.9552874], [-85.6438578, 41.9560158]], "type": "LineString"}, "id": "975", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776876, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6461839, 41.9414164, -85.646138, 41.9425489], "geometry": {"coordinates": [[-85.6461839, 41.9425489], [-85.646181, 41.9424776], [-85.646138, 41.9414164]], "type": "LineString"}, "id": "976", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942139, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357147, 41.9624166, -85.6350256, 41.9627708], "geometry": {"coordinates": [[-85.6350256, 41.9625681], [-85.6350331, 41.9625874], [-85.6350536, 41.9626408], [-85.6350597, 41.9626665], [-85.635074, 41.9627307], [-85.6350984, 41.9627511], [-85.6351482, 41.9627708], [-85.6352122, 41.9627708], [-85.6356318, 41.9627708], [-85.6356598, 41.962769], [-85.6356948, 41.9627569], [-85.6357147, 41.9627274], [-85.63571, 41.9624522], [-85.6356983, 41.9624296], [-85.6356505, 41.9624166], [-85.6353808, 41.9624218], [-85.6353586, 41.9624279], [-85.6353422, 41.9624522], [-85.6353306, 41.962499], [-85.6353306, 41.9625355], [-85.6353095, 41.9625581], [-85.6352745, 41.9625772], [-85.6352313, 41.9625893], [-85.6350331, 41.9625874]], "type": "LineString"}, "id": "977", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 777996089, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6276806, 41.9572739, -85.6276661, 41.9574468], "geometry": {"coordinates": [[-85.6276806, 41.9574468], [-85.6276661, 41.9572739]], "type": "LineString"}, "id": "978", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699288, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6442537, 41.950829, -85.643219, 41.9513714], "geometry": {"coordinates": [[-85.643219, 41.950829], [-85.6433237, 41.950936], [-85.6433583, 41.9509821], [-85.6434518, 41.9510425], [-85.6435204, 41.9510496], [-85.6436439, 41.9510622], [-85.6440972, 41.9510879], [-85.6441775, 41.9511204], [-85.6442415, 41.9511862], [-85.6442537, 41.9512557], [-85.6441907, 41.9513373], [-85.6441033, 41.9513714], [-85.6439762, 41.95136], [-85.6438106, 41.9512209], [-85.643654, 41.9511227], [-85.6435204, 41.9510496]], "type": "LineString"}, "id": "979", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 765893030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6463243, 41.9448393, -85.646281, 41.9450817], "geometry": {"coordinates": [[-85.6463243, 41.9450817], [-85.6463089, 41.9449953], [-85.646281, 41.9448393]], "type": "LineString"}, "id": "980", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 314867475, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6473736, 41.943225, -85.6473667, 41.9435109], "geometry": {"coordinates": [[-85.6473667, 41.943225], [-85.6473684, 41.943295], [-85.6473736, 41.9435109]], "type": "LineString"}, "id": "981", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488290767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394655, 41.9296875, -85.6391223, 41.9297465], "geometry": {"coordinates": [[-85.6394655, 41.9296875], [-85.6391223, 41.9297465]], "type": "LineString"}, "id": "982", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": null, "oneway": null, "osm_id": 340939538, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6487713, 41.9427003, -85.6486026, 41.9430643], "geometry": {"coordinates": [[-85.6487713, 41.9427003], [-85.648677, 41.9427009], [-85.6486026, 41.9427027], [-85.6486081, 41.9430643]], "type": "LineString"}, "id": "983", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 614445405, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510144, 41.9423537, -85.650727, 41.9423566], "geometry": {"coordinates": [[-85.650727, 41.9423537], [-85.6510144, 41.9423566]], "type": "LineString"}, "id": "984", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550673, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6498494, 41.9454987, -85.6493275, 41.9455066], "geometry": {"coordinates": [[-85.6498494, 41.9455066], [-85.6493275, 41.9454987]], "type": "LineString"}, "id": "985", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942206, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650727, 41.9423537, -85.6505996, 41.9423607], "geometry": {"coordinates": [[-85.6505996, 41.9423607], [-85.6506551, 41.9423577], [-85.650727, 41.9423537]], "type": "LineString"}, "id": "986", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550674, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6491367, 41.9424136, -85.6489675, 41.9424181], "geometry": {"coordinates": [[-85.6489675, 41.9424136], [-85.6490355, 41.9424178], [-85.6491367, 41.9424181]], "type": "LineString"}, "id": "987", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550670, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500847, 41.942509, -85.6500179, 41.9433006], "geometry": {"coordinates": [[-85.6500847, 41.9433006], [-85.6500179, 41.9431902], [-85.6500239, 41.9431138], [-85.6500501, 41.9427802], [-85.6500631, 41.9426282], [-85.6500601, 41.942509]], "type": "LineString"}, "id": "988", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942220, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489023, 41.950344, -85.6486721, 41.9508623], "geometry": {"coordinates": [[-85.6488505, 41.950344], [-85.6487099, 41.9506527], [-85.6486819, 41.9507199], [-85.6486721, 41.9507622], [-85.6486728, 41.9507877], [-85.6486825, 41.9508092], [-85.6487047, 41.9508255], [-85.6487363, 41.9508418], [-85.6487681, 41.9508518], [-85.6488006, 41.9508582], [-85.6488518, 41.9508623], [-85.6489023, 41.9508564]], "type": "LineString"}, "id": "989", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892832, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489419, 41.9541815, -85.6481696, 41.9547995], "geometry": {"coordinates": [[-85.6481696, 41.9541815], [-85.6481938, 41.9544237], [-85.6489419, 41.9544804], [-85.6489172, 41.9546369], [-85.648894, 41.9547995], [-85.6483657, 41.9547665], [-85.6483693, 41.954607], [-85.6481938, 41.9544237]], "type": "LineString"}, "id": "990", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612654, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489172, 41.954607, -85.6483693, 41.9546369], "geometry": {"coordinates": [[-85.6489172, 41.9546369], [-85.6483693, 41.954607]], "type": "LineString"}, "id": "991", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612655, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489696, 41.9409351, -85.6485651, 41.9409372], "geometry": {"coordinates": [[-85.6489696, 41.9409351], [-85.6485651, 41.9409372]], "type": "LineString"}, "id": "992", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942147, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6486512, 41.9477038, -85.6486445, 41.9485674], "geometry": {"coordinates": [[-85.6486512, 41.9485674], [-85.6486445, 41.9477038]], "type": "LineString"}, "id": "993", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225611122, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501904, 41.9445072, -85.6496059, 41.9445098], "geometry": {"coordinates": [[-85.6501904, 41.9445072], [-85.6496059, 41.9445098]], "type": "LineString"}, "id": "994", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942201, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504772, 41.9441392, -85.6496566, 41.9441443], "geometry": {"coordinates": [[-85.6504772, 41.9441443], [-85.6496566, 41.9441392]], "type": "LineString"}, "id": "995", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942182, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512719, 41.9423509, -85.6511293, 41.9423923], "geometry": {"coordinates": [[-85.6511293, 41.9423597], [-85.6512718, 41.9423509], [-85.6512719, 41.9423923]], "type": "LineString"}, "id": "996", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550675, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510714, 41.9419832, -85.6510679, 41.9425026], "geometry": {"coordinates": [[-85.6510705, 41.9425026], [-85.6510714, 41.9423578], [-85.6510679, 41.9419832]], "type": "LineString"}, "id": "997", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942162, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433256, 41.9358712, -85.6433104, 41.9361767], "geometry": {"coordinates": [[-85.6433104, 41.9361767], [-85.6433166, 41.9360524], [-85.6433256, 41.9358712]], "type": "LineString"}, "id": "998", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766158514, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489524, 41.9344104, -85.6469128, 41.9356328], "geometry": {"coordinates": [[-85.6469128, 41.9344104], [-85.6470336, 41.9344224], [-85.6472728, 41.9344163], [-85.6481164, 41.9344163], [-85.6482899, 41.9344163], [-85.6483351, 41.9344216], [-85.6484154, 41.9344309], [-85.6484582, 41.9344359], [-85.6489209, 41.9344378], [-85.6489524, 41.9344613], [-85.648947, 41.9347131], [-85.6489376, 41.9351415], [-85.6489342, 41.9352966], [-85.6489288, 41.9355467], [-85.6488473, 41.9355976], [-85.6487684, 41.935623], [-85.6486711, 41.9356328], [-85.6485866, 41.935614], [-85.648537, 41.9355761], [-85.6484927, 41.9355082], [-85.6484947, 41.9354499], [-85.6485061, 41.9353865], [-85.6485417, 41.9353426], [-85.6486081, 41.9353067], [-85.6486974, 41.9352905], [-85.6489342, 41.9352966]], "type": "LineString"}, "id": "999", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800857, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271414, 41.9407274, -85.6269868, 41.941035], "geometry": {"coordinates": [[-85.6271414, 41.9407274], [-85.6271243, 41.9408034], [-85.627101, 41.9408633], [-85.6270633, 41.9409278], [-85.6270257, 41.940981], [-85.6269868, 41.941035]], "type": "LineString"}, "id": "1000", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Street", "oneway": null, "osm_id": 134150833, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361996, 41.9447967, -85.6359942, 41.9450097], "geometry": {"coordinates": [[-85.6359942, 41.9450097], [-85.6361996, 41.9447967]], "type": "LineString"}, "id": "1001", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203988290, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633062, 41.928335, -85.630973, 41.931065], "geometry": {"coordinates": [[-85.630973, 41.928387], [-85.632019, 41.928335], [-85.632416, 41.928359], [-85.632739, 41.928486], [-85.632893, 41.928624], [-85.632973, 41.928822], [-85.632949, 41.929036], [-85.632804, 41.929894], [-85.632759, 41.930075], [-85.632684, 41.930239], [-85.632625, 41.930415], [-85.632668, 41.930591], [-85.633062, 41.931065]], "type": "LineString"}, "id": "1002", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17962965, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6248366, 41.933205, -85.624776, 41.9391615], "geometry": {"coordinates": [[-85.624776, 41.933205], [-85.624782, 41.934218], [-85.624792, 41.935214], [-85.6248039, 41.9362012], [-85.6247949, 41.9371708], [-85.6248019, 41.9381684], [-85.6248366, 41.9391615]], "type": "LineString"}, "id": "1003", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 379694388, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501987, 41.9448311, -85.6495428, 41.9448418], "geometry": {"coordinates": [[-85.6501987, 41.9448418], [-85.6495428, 41.9448311]], "type": "LineString"}, "id": "1004", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942203, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637113, 41.9486, -85.6346517, 41.948626], "geometry": {"coordinates": [[-85.6346517, 41.948626], [-85.6351983, 41.9486221], [-85.6352821, 41.9486214], [-85.6354294, 41.9486201], [-85.6361818, 41.9486135], [-85.637113, 41.9486]], "type": "LineString"}, "id": "1005", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Kelsey Street", "oneway": null, "osm_id": 17965856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6464864, 41.93494, -85.6457364, 41.9353368], "geometry": {"coordinates": [[-85.6464864, 41.93494], [-85.6464479, 41.9351644], [-85.6463463, 41.9352416], [-85.6462019, 41.9353126], [-85.6460617, 41.9353368], [-85.6459377, 41.9352945], [-85.6458462, 41.9352264], [-85.6457568, 41.9351523], [-85.6457364, 41.9349534]], "type": "LineString"}, "id": "1006", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755837734, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6319408, 41.9656501, -85.6302304, 41.9657359], "geometry": {"coordinates": [[-85.6302304, 41.9657359], [-85.6316583, 41.9657277], [-85.6317614, 41.9657168], [-85.6318497, 41.9656949], [-85.6319408, 41.9656501]], "type": "LineString"}, "id": "1007", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bush Boulevard", "oneway": "no", "osm_id": 203968021, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637468, 41.956901, -85.636279, 41.956906], "geometry": {"coordinates": [[-85.637468, 41.956906], [-85.636279, 41.956901]], "type": "LineString"}, "id": "1008", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Lyman Street", "oneway": null, "osm_id": 17967437, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6479014, 41.9418019, -85.6474447, 41.942538], "geometry": {"coordinates": [[-85.6477792, 41.9425353], [-85.6477899, 41.9424602], [-85.6477969, 41.9424115], [-85.6478996, 41.9423957], [-85.6479014, 41.9418019], [-85.6474447, 41.9418019], [-85.6474605, 41.9424645], [-85.6474623, 41.942538]], "type": "LineString"}, "id": "1009", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942158, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6229619, 41.9326647, -85.6225756, 41.9328244], "geometry": {"coordinates": [[-85.6229586, 41.9326701], [-85.6229619, 41.9328244], [-85.6225789, 41.9328213], [-85.6225756, 41.9326647]], "type": "LineString"}, "id": "1010", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377976, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6268359, 41.94183, -85.6263447, 41.9418317], "geometry": {"coordinates": [[-85.6263447, 41.9418317], [-85.6268359, 41.94183]], "type": "LineString"}, "id": "1011", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 765371921, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6299489, 41.9422477, -85.6264, 41.9437872], "geometry": {"coordinates": [[-85.6264, 41.942263], [-85.62737, 41.942261], [-85.6274266, 41.9422605], [-85.6290399, 41.9422477], [-85.6291216, 41.9423021], [-85.6291778, 41.9423603], [-85.6292288, 41.9424224], [-85.6292595, 41.9424832], [-85.6292782, 41.942568], [-85.6292385, 41.9436111], [-85.6299489, 41.9437872]], "type": "LineString"}, "id": "1012", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "1st Avenue", "oneway": null, "osm_id": 17967539, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6282418, 41.94325, -85.6273949, 41.943668], "geometry": {"coordinates": [[-85.6273949, 41.9432543], [-85.6274479, 41.94325], [-85.6275576, 41.9432795], [-85.6282418, 41.9432952], [-85.6282382, 41.943668]], "type": "LineString"}, "id": "1013", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771570029, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6282665, 41.9572713, -85.6282582, 41.9574418], "geometry": {"coordinates": [[-85.6282582, 41.9574418], [-85.6282625, 41.9573629], [-85.6282665, 41.9572713]], "type": "LineString"}, "id": "1014", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699287, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6292143, 41.9432952, -85.6282418, 41.9445114], "geometry": {"coordinates": [[-85.6282418, 41.9432952], [-85.6286323, 41.9433802], [-85.6289917, 41.9436375], [-85.629091, 41.9439228], [-85.629091, 41.9442879], [-85.6292143, 41.9445034], [-85.6286342, 41.9445114]], "type": "LineString"}, "id": "1015", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 884351103, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6250824, 41.9605482, -85.6245406, 41.9607317], "geometry": {"coordinates": [[-85.6250824, 41.9607317], [-85.6250677, 41.9607297], [-85.6250288, 41.9607222], [-85.6245406, 41.9605482]], "type": "LineString"}, "id": "1016", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550692, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622786, 41.951885, -85.6219849, 41.9529929], "geometry": {"coordinates": [[-85.622687, 41.951885], [-85.622786, 41.9520362], [-85.622786, 41.9521221], [-85.6226782, 41.9522023], [-85.6225703, 41.9523799], [-85.6224933, 41.9525174], [-85.6225549, 41.952695], [-85.622578, 41.9528153], [-85.622501, 41.9529012], [-85.6223624, 41.9529528], [-85.6221775, 41.9529699], [-85.6219849, 41.9529929]], "type": "LineString"}, "id": "1017", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "FootPath to Campsite", "oneway": null, "osm_id": 845444313, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622759, 41.951845, -85.620141, 41.951913], "geometry": {"coordinates": [[-85.622759, 41.951845], [-85.622687, 41.951885], [-85.622492, 41.951901], [-85.621032, 41.951913], [-85.620141, 41.951901]], "type": "LineString"}, "id": "1018", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "11th Avenue", "oneway": null, "osm_id": 17964707, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227688, 41.950119, -85.6201059, 41.950132], "geometry": {"coordinates": [[-85.6201059, 41.950132], [-85.6227688, 41.950119]], "type": "LineString"}, "id": "1019", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "9th Avenue", "oneway": null, "osm_id": 17966129, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6250811, 41.9609999, -85.6250569, 41.9610069], "geometry": {"coordinates": [[-85.6250569, 41.9609999], [-85.6250811, 41.9610069]], "type": "LineString"}, "id": "1020", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550718, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6192256, 41.9474562, -85.6173027, 41.9515959], "geometry": {"coordinates": [[-85.6174371, 41.9474562], [-85.617375, 41.947559], [-85.617391, 41.9481204], [-85.6174135, 41.9489136], [-85.61745, 41.9501974], [-85.6174641, 41.9506942], [-85.6174164, 41.9510804], [-85.6173027, 41.9512895], [-85.6176304, 41.9515154], [-85.6177355, 41.9515717], [-85.6180362, 41.9515719], [-85.6189204, 41.9515727], [-85.6192256, 41.9515959]], "type": "LineString"}, "id": "1021", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Collins Drive", "oneway": null, "osm_id": 17966364, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191709, 41.955596, -85.6182033, 41.9567483], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6191305, 41.9566955], [-85.6189389, 41.9565414], [-85.6188216, 41.9564439], [-85.6187656, 41.9563224], [-85.6187562, 41.9562043], [-85.6187236, 41.9560098], [-85.6188123, 41.9557841], [-85.6188496, 41.9556104], [-85.618838, 41.9555989], [-85.6182033, 41.955596]], "type": "LineString"}, "id": "1022", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 571308438, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180008, 41.9545412, -85.6177994, 41.9547387], "geometry": {"coordinates": [[-85.6180008, 41.9547387], [-85.6179337, 41.9547022], [-85.61787, 41.9546654], [-85.6178275, 41.954614], [-85.6177994, 41.9545412]], "type": "LineString"}, "id": "1023", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary_link", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 614445618, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6169836, 41.949197, -85.6169831, 41.9501612], "geometry": {"coordinates": [[-85.6169831, 41.949197], [-85.6169836, 41.9501612]], "type": "LineString"}, "id": "1024", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 203837939, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6193752, 41.9519432, -85.6177286, 41.9535545], "geometry": {"coordinates": [[-85.6189367, 41.9519432], [-85.6191318, 41.9520425], [-85.6193752, 41.9521695], [-85.6189421, 41.9526483], [-85.6185158, 41.9531194], [-85.6184408, 41.953201], [-85.6181374, 41.9535376], [-85.6179898, 41.9535545], [-85.6179141, 41.9535163], [-85.6177286, 41.9534228]], "type": "LineString"}, "id": "1025", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837933, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620172, 41.9447384, -85.62001, 41.945627], "geometry": {"coordinates": [[-85.620172, 41.945627], [-85.620088, 41.945571], [-85.620051, 41.945505], [-85.62001, 41.94541], [-85.6200474, 41.9447384]], "type": "LineString"}, "id": "1026", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 652967187, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620035, 41.933297, -85.619915, 41.9381814], "geometry": {"coordinates": [[-85.620035, 41.933297], [-85.619945, 41.933378], [-85.619915, 41.933529], [-85.619964, 41.934759], [-85.619972, 41.935062], [-85.6200011, 41.9362282], [-85.620004, 41.936782], [-85.620007, 41.937206], [-85.6200097, 41.9376523], [-85.620013, 41.9381814]], "type": "LineString"}, "id": "1027", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "12th Street", "oneway": null, "osm_id": 17967518, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227785, 41.9447371, -85.6226744, 41.951845], "geometry": {"coordinates": [[-85.6226744, 41.9447371], [-85.6227157, 41.9456321], [-85.622721, 41.946535], [-85.6227578, 41.9474276], [-85.622761, 41.9483333], [-85.622769, 41.9492383], [-85.6227688, 41.950119], [-85.6227785, 41.9510005], [-85.622759, 41.951845]], "type": "LineString"}, "id": "1028", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Washington Street", "oneway": null, "osm_id": 17968192, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6153187, 41.9481265, -85.6153081, 41.9485899], "geometry": {"coordinates": [[-85.6153081, 41.9485899], [-85.6153097, 41.9484555], [-85.6153154, 41.9481697], [-85.6153187, 41.9481265]], "type": "LineString"}, "id": "1029", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839090, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62232, 41.9351903, -85.6222684, 41.9381751], "geometry": {"coordinates": [[-85.6222684, 41.9351903], [-85.6222867, 41.9362155], [-85.62232, 41.9381751]], "type": "LineString"}, "id": "1030", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "10th Street", "oneway": null, "osm_id": 17965370, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271604, 41.9262769, -85.6257845, 41.9264872], "geometry": {"coordinates": [[-85.6271604, 41.9262769], [-85.6263206, 41.9263876], [-85.6257845, 41.9264872]], "type": "LineString"}, "id": "1031", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hart Street", "oneway": null, "osm_id": 17967891, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296112, 41.9273547, -85.626047, 41.9273948], "geometry": {"coordinates": [[-85.6296112, 41.9273948], [-85.6295143, 41.9273547], [-85.6278389, 41.9273577], [-85.626047, 41.92737]], "type": "LineString"}, "id": "1032", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Forest Street", "oneway": null, "osm_id": 17965016, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6165019, 41.9433493, -85.6142597, 41.9454804], "geometry": {"coordinates": [[-85.6165019, 41.9436452], [-85.6162955, 41.9434789], [-85.6160608, 41.9433692], [-85.6158274, 41.9433493], [-85.6155579, 41.9433971], [-85.615311, 41.94353], [-85.6151006, 41.9436126], [-85.6143688, 41.9435919], [-85.6142763, 41.943672], [-85.6142879, 41.9442839], [-85.6142829, 41.9444024], [-85.6142597, 41.9449623], [-85.6142772, 41.9454804]], "type": "LineString"}, "id": "1033", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962828, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.617231, 41.944156, -85.61536, 41.945603], "geometry": {"coordinates": [[-85.615453, 41.945597], [-85.6154361, 41.9454794], [-85.6153721, 41.9449581], [-85.61536, 41.944893], [-85.6154103, 41.9444228], [-85.6158667, 41.9442319], [-85.616166, 41.944156], [-85.6164685, 41.9442121], [-85.616748, 41.944453], [-85.616813, 41.944646], [-85.6168377, 41.9449408], [-85.616859, 41.945196], [-85.616941, 41.945352], [-85.6170866, 41.945478], [-85.617231, 41.945603]], "type": "LineString"}, "id": "1034", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962823, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621605, 41.940143, -85.621591, 41.941075], "geometry": {"coordinates": [[-85.621605, 41.940143], [-85.621591, 41.941075]], "type": "LineString"}, "id": "1035", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jackson Street", "oneway": null, "osm_id": 17964489, "osm_type": "ways_line", "smoothness": null, "surface": "compacted", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6290391, 41.9331722, -85.6290227, 41.9342067], "geometry": {"coordinates": [[-85.6290391, 41.9342067], [-85.6290372, 41.9340742], [-85.6290268, 41.9336814], [-85.6290227, 41.9333934], [-85.6290268, 41.9331722]], "type": "LineString"}, "id": "1036", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199687, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297512, 41.9273948, -85.6296112, 41.939922], "geometry": {"coordinates": [[-85.6296112, 41.9273948], [-85.6296367, 41.927491], [-85.6296524, 41.928314], [-85.6296503, 41.9292199], [-85.6296598, 41.9301676], [-85.6296694, 41.931157], [-85.6296791, 41.9321485], [-85.6296891, 41.9331674], [-85.6296991, 41.9341973], [-85.6297088, 41.9351902], [-85.6297108, 41.9353939], [-85.6297382, 41.938203], [-85.6297512, 41.9395393], [-85.6297439, 41.939808], [-85.6296235, 41.939922]], "type": "LineString"}, "id": "1037", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "4th Street", "oneway": null, "osm_id": 17965023, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6257292, 41.93019, -85.624741, 41.9302058], "geometry": {"coordinates": [[-85.624741, 41.93019], [-85.6257292, 41.9302058]], "type": "LineString"}, "id": "1038", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Liberty Street", "oneway": null, "osm_id": 17962519, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6269868, 41.941035, -85.624873, 41.942022], "geometry": {"coordinates": [[-85.6269868, 41.941035], [-85.6268752, 41.9411026], [-85.6263984, 41.9413215], [-85.6256839, 41.9416496], [-85.624873, 41.942022]], "type": "LineString"}, "id": "1039", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Drive", "oneway": null, "osm_id": 378599359, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.613851, 41.954756, -85.613542, 41.9562795], "geometry": {"coordinates": [[-85.613542, 41.954756], [-85.613781, 41.955164], [-85.613815, 41.955237], [-85.613837, 41.955316], [-85.613851, 41.955415], [-85.6138494, 41.9554852], [-85.6138453, 41.9556723], [-85.6138327, 41.9562795]], "type": "LineString"}, "id": "1040", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Lockport Drive", "oneway": null, "osm_id": 17966756, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640003, 41.936988, -85.6351181, 41.937038], "geometry": {"coordinates": [[-85.640003, 41.936988], [-85.63876, 41.937002], [-85.637564, 41.937028], [-85.636453, 41.937038], [-85.6351181, 41.9370157]], "type": "LineString"}, "id": "1041", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Buck Street", "oneway": null, "osm_id": 17967780, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6183662, 41.9475582, -85.6175789, 41.9481282], "geometry": {"coordinates": [[-85.6175789, 41.9481282], [-85.6176946, 41.9481006], [-85.6181234, 41.9479906], [-85.6181636, 41.9476694], [-85.6183662, 41.9475582]], "type": "LineString"}, "id": "1042", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652967181, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6294921, 41.9446718, -85.629471, 41.9452098], "geometry": {"coordinates": [[-85.629471, 41.9446718], [-85.6294856, 41.9449456], [-85.6294921, 41.9452098]], "type": "LineString"}, "id": "1043", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755772964, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310103, 41.931148, -85.62475, 41.93119], "geometry": {"coordinates": [[-85.62475, 41.93119], [-85.625711, 41.9311836], [-85.6263682, 41.9311792], [-85.626888, 41.9311757], [-85.6270379, 41.9311746], [-85.6277007, 41.9311702], [-85.6283399, 41.9311659], [-85.6289931, 41.9311615], [-85.6296694, 41.931157], [-85.6303008, 41.9311528], [-85.6310103, 41.931148]], "type": "LineString"}, "id": "1044", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Michigan Street", "oneway": null, "osm_id": 17967503, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6488847, 41.9485674, -85.6486512, 41.9491678], "geometry": {"coordinates": [[-85.6486579, 41.9491678], [-85.6486556, 41.948852], [-85.6487935, 41.9488239], [-85.6488847, 41.948718], [-85.6488402, 41.948627], [-85.6486512, 41.9485674], [-85.6486556, 41.948852]], "type": "LineString"}, "id": "1045", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225611121, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6540221, 41.9306303, -85.6540093, 41.9315725], "geometry": {"coordinates": [[-85.6540221, 41.9315725], [-85.6540093, 41.9306303]], "type": "LineString"}, "id": "1046", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612683, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557584, 41.9330473, -85.6543214, 41.9350601], "geometry": {"coordinates": [[-85.6543214, 41.9350601], [-85.6555606, 41.9350556], [-85.6556344, 41.9350359], [-85.6556993, 41.9349876], [-85.6557377, 41.9349261], [-85.6557584, 41.9348536], [-85.6557421, 41.9330473]], "type": "LineString"}, "id": "1047", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 808234825, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490408, 41.939829, -85.648941, 41.9425185], "geometry": {"coordinates": [[-85.648941, 41.939829], [-85.648947, 41.940048], [-85.6489696, 41.9409351], [-85.648972, 41.941028], [-85.6489867, 41.9413359], [-85.6490095, 41.9418109], [-85.6490317, 41.9422759], [-85.6490355, 41.9424178], [-85.6490408, 41.9425185]], "type": "LineString"}, "id": "1048", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Day Drive", "oneway": null, "osm_id": 17967644, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6531091, 41.9397466, -85.6526098, 41.9400997], "geometry": {"coordinates": [[-85.6531091, 41.9397466], [-85.6530798, 41.9399278], [-85.6529365, 41.9400527], [-85.6526098, 41.9400997]], "type": "LineString"}, "id": "1049", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942246, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520286, 41.944641, -85.6516271, 41.944648], "geometry": {"coordinates": [[-85.6516271, 41.944641], [-85.6518087, 41.944643], [-85.6520286, 41.944648]], "type": "LineString"}, "id": "1050", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612658, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493647, 41.942707, -85.6491311, 41.9433174], "geometry": {"coordinates": [[-85.6493647, 41.942707], [-85.6491311, 41.9427175], [-85.6491631, 41.9433174]], "type": "LineString"}, "id": "1051", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942218, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.648677, 41.9425249, -85.6486708, 41.9427009], "geometry": {"coordinates": [[-85.6486708, 41.9425249], [-85.6486738, 41.942615], [-85.648677, 41.9427009]], "type": "LineString"}, "id": "1052", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 614445404, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514252, 41.9425113, -85.6514226, 41.9427707], "geometry": {"coordinates": [[-85.6514226, 41.9425113], [-85.6514252, 41.9426566], [-85.6514249, 41.9427707]], "type": "LineString"}, "id": "1053", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 41260269, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6465169, 41.9427004, -85.6462688, 41.9428685], "geometry": {"coordinates": [[-85.6462688, 41.9428685], [-85.6465169, 41.9428615], [-85.6465093, 41.9427004]], "type": "LineString"}, "id": "1054", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942840, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483929, 41.9491709, -85.6483619, 41.9493589], "geometry": {"coordinates": [[-85.6483929, 41.9493589], [-85.6483619, 41.9491709]], "type": "LineString"}, "id": "1055", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 909916185, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506524, 41.9465867, -85.6499239, 41.9469611], "geometry": {"coordinates": [[-85.6500083, 41.9465867], [-85.6499991, 41.9466316], [-85.6499239, 41.9469341], [-85.6503506, 41.9469453], [-85.6504672, 41.9469592], [-85.6506524, 41.9469611]], "type": "LineString"}, "id": "1056", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947694772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510964, 41.9495892, -85.6509596, 41.9496657], "geometry": {"coordinates": [[-85.6510964, 41.9495892], [-85.6509694, 41.9496262], [-85.6509596, 41.9496657]], "type": "LineString"}, "id": "1057", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 848056394, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6528326, 41.9421616, -85.6520608, 41.9425913], "geometry": {"coordinates": [[-85.6520639, 41.9424594], [-85.6520655, 41.9425398], [-85.6520732, 41.9425638], [-85.6520886, 41.9425822], [-85.6521194, 41.9425913], [-85.6523417, 41.9425909], [-85.6527602, 41.9425902], [-85.6527849, 41.9425867], [-85.6528142, 41.9425707], [-85.6528326, 41.9425524], [-85.6528234, 41.9422338], [-85.6528111, 41.9422029], [-85.6527926, 41.9421822], [-85.6527587, 41.9421708], [-85.6527171, 41.9421639], [-85.6523355, 41.9421625], [-85.6521009, 41.9421616], [-85.6520824, 41.9421674], [-85.652067, 41.9421811], [-85.6520608, 41.9422063]], "type": "LineString"}, "id": "1058", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786585, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462388, 41.9326304, -85.6462306, 41.932792], "geometry": {"coordinates": [[-85.6462388, 41.932792], [-85.6462338, 41.932693], [-85.6462306, 41.9326304]], "type": "LineString"}, "id": "1059", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870745193, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6518636, 41.9426175, -85.6513369, 41.9426566], "geometry": {"coordinates": [[-85.6518636, 41.942621], [-85.6517801, 41.9426175], [-85.6514252, 41.9426566], [-85.6513369, 41.9426489]], "type": "LineString"}, "id": "1060", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550677, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503194, 41.95096, -85.6502348, 41.954238], "geometry": {"coordinates": [[-85.650264, 41.954238], [-85.650237, 41.953213], [-85.6503194, 41.952225], [-85.6502348, 41.9511025], [-85.650247, 41.95096]], "type": "LineString"}, "id": "1061", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Church Drive", "oneway": null, "osm_id": 17964870, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6487225, 41.9385694, -85.6484596, 41.9397556], "geometry": {"coordinates": [[-85.6484596, 41.9397556], [-85.6484651, 41.9385814], [-85.6487225, 41.9385694]], "type": "LineString"}, "id": "1062", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331307626, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510522, 41.9385379, -85.6502625, 41.9395878], "geometry": {"coordinates": [[-85.6502625, 41.9395828], [-85.650437, 41.9395839], [-85.6510522, 41.9395878], [-85.6510513, 41.9394457], [-85.6510479, 41.9388923], [-85.651047, 41.9387331], [-85.6510457, 41.9385379]], "type": "LineString"}, "id": "1063", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488054997, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510479, 41.9388906, -85.6502598, 41.9388923], "geometry": {"coordinates": [[-85.6510479, 41.9388923], [-85.6504371, 41.938891], [-85.6502598, 41.9388906]], "type": "LineString"}, "id": "1064", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488054999, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504534, 41.9425064, -85.6500501, 41.9427886], "geometry": {"coordinates": [[-85.6504477, 41.9425064], [-85.6504462, 41.9426261], [-85.6504534, 41.9427886], [-85.6500501, 41.9427802]], "type": "LineString"}, "id": "1065", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942221, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520463, 41.942921, -85.6517775, 41.9429224], "geometry": {"coordinates": [[-85.6517775, 41.9429217], [-85.6519633, 41.942921], [-85.6520463, 41.9429224]], "type": "LineString"}, "id": "1066", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1111892829, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6451706, 41.9412509, -85.644283, 41.941271], "geometry": {"coordinates": [[-85.6451706, 41.9412509], [-85.644727, 41.941262], [-85.644283, 41.941271]], "type": "LineString"}, "id": "1067", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962736, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370184, 41.9401113, -85.6369542, 41.9411346], "geometry": {"coordinates": [[-85.6369542, 41.9401113], [-85.6369828, 41.9408789], [-85.6370184, 41.9411346]], "type": "LineString"}, "id": "1068", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17963021, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6323597, 41.943549, -85.6318433, 41.9437929], "geometry": {"coordinates": [[-85.6318433, 41.9437929], [-85.632244, 41.9436037], [-85.6323597, 41.943549]], "type": "LineString"}, "id": "1069", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 847427788, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633951, 41.9443666, -85.6317718, 41.946174], "geometry": {"coordinates": [[-85.6317718, 41.9443666], [-85.6318511, 41.9446409], [-85.6319048, 41.9447407], [-85.6319663, 41.9448112], [-85.632055, 41.9449128], [-85.6320913, 41.9449492], [-85.6324841, 41.9453438], [-85.6326558, 41.9454708], [-85.6328435, 41.9455473], [-85.6328885, 41.9455614], [-85.6332888, 41.9456871], [-85.6334199, 41.9457495], [-85.633564, 41.9458519], [-85.6336152, 41.9459804], [-85.633686, 41.946072], [-85.633815, 41.946131], [-85.6338843, 41.9461529], [-85.633951, 41.946174]], "type": "LineString"}, "id": "1070", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Joshua Drive", "oneway": null, "osm_id": 17964996, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6364328, 41.9428324, -85.63643, 41.9428631], "geometry": {"coordinates": [[-85.63643, 41.9428324], [-85.6364328, 41.9428631]], "type": "LineString"}, "id": "1071", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847371538, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6366671, 41.9428146, -85.6359749, 41.9428349], "geometry": {"coordinates": [[-85.6359749, 41.9428146], [-85.6360593, 41.9428349], [-85.63643, 41.9428324], [-85.6366671, 41.9428308]], "type": "LineString"}, "id": "1072", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847371537, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351983, 41.9486221, -85.6348564, 41.9488138], "geometry": {"coordinates": [[-85.6351983, 41.9486221], [-85.6351983, 41.9488118], [-85.6348564, 41.9488138]], "type": "LineString"}, "id": "1073", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 217907769, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6406657, 41.943107, -85.6399506, 41.9431378], "geometry": {"coordinates": [[-85.6399506, 41.9431241], [-85.6405146, 41.9431378], [-85.6405689, 41.9431345], [-85.640619, 41.9431225], [-85.6406657, 41.943107]], "type": "LineString"}, "id": "1074", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486385871, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6375025, 41.9458685, -85.6370321, 41.9459913], "geometry": {"coordinates": [[-85.6370321, 41.9459913], [-85.6375025, 41.9458685]], "type": "LineString"}, "id": "1075", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "Moore Street", "oneway": null, "osm_id": 134150778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633258, 41.949893, -85.6313855, 41.9499125], "geometry": {"coordinates": [[-85.6313855, 41.9499125], [-85.6320344, 41.9499109], [-85.633258, 41.949893]], "type": "LineString"}, "id": "1076", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Bennett Street", "oneway": null, "osm_id": 17967844, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514338, 41.9427707, -85.6495916, 41.9491631], "geometry": {"coordinates": [[-85.6514249, 41.9427707], [-85.6514269, 41.9428331], [-85.6514293, 41.9429967], [-85.6514338, 41.9432233], [-85.6514284, 41.9433219], [-85.6514189, 41.9434961], [-85.6513977, 41.9437597], [-85.6513723, 41.9439835], [-85.6513297, 41.9443392], [-85.6512716, 41.9447154], [-85.6512162, 41.9450066], [-85.6511537, 41.945301], [-85.6510757, 41.9456171], [-85.6509763, 41.9460063], [-85.6509062, 41.9462527], [-85.6508001, 41.9465494], [-85.6507189, 41.9467913], [-85.6506524, 41.9469611], [-85.6505891, 41.9471195], [-85.650478, 41.9474008], [-85.650325, 41.9477483], [-85.6501292, 41.9481668], [-85.6498605, 41.9486809], [-85.6497327, 41.9489143], [-85.6495916, 41.9491631]], "type": "LineString"}, "id": "1077", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 945352908, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506914, 41.9458179, -85.6503697, 41.9458667], "geometry": {"coordinates": [[-85.6503697, 41.9458179], [-85.6506914, 41.9458667]], "type": "LineString"}, "id": "1078", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056570280, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.653554, 41.948114, -85.653537, 41.949065], "geometry": {"coordinates": [[-85.653554, 41.948114], [-85.653537, 41.949065]], "type": "LineString"}, "id": "1079", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pleasant View Court", "oneway": null, "osm_id": 17966284, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651611, 41.9458477, -85.6515735, 41.953639], "geometry": {"coordinates": [[-85.6515905, 41.9458477], [-85.6515806, 41.9460271], [-85.6515735, 41.9461213], [-85.6515753, 41.946257], [-85.651578, 41.946295], [-85.6515825, 41.9475468], [-85.6515836, 41.9478792], [-85.6515855, 41.9484171], [-85.651588, 41.949107], [-85.651587, 41.950958], [-85.651611, 41.953639]], "type": "LineString"}, "id": "1080", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kerr Creek Road", "oneway": null, "osm_id": 17966293, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6419005, 41.9598559, -85.6394695, 41.9613776], "geometry": {"coordinates": [[-85.6413484, 41.9613776], [-85.6411932, 41.9612716], [-85.6408965, 41.9611666], [-85.6395016, 41.9606785], [-85.6394741, 41.9606529], [-85.6394695, 41.9606171], [-85.6394786, 41.9605846], [-85.6395843, 41.9604173], [-85.6399355, 41.9598878], [-85.6399821, 41.9598559], [-85.6400399, 41.95986], [-85.6401257, 41.9598836], [-85.6419005, 41.9605114]], "type": "LineString"}, "id": "1081", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870747319, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644156, 41.9565243, -85.6435035, 41.9569753], "geometry": {"coordinates": [[-85.6435584, 41.9565243], [-85.6435805, 41.9566049], [-85.6435035, 41.9567438], [-85.644156, 41.9569753]], "type": "LineString"}, "id": "1082", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208627212, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6465551, 41.9540785, -85.6450995, 41.9541831], "geometry": {"coordinates": [[-85.6450995, 41.9541831], [-85.6455882, 41.9541138], [-85.64609, 41.9540815], [-85.6462222, 41.9540789], [-85.6463856, 41.9540785], [-85.6465551, 41.9540853]], "type": "LineString"}, "id": "1083", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 134151786, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6340877, 41.9557655, -85.6340831, 41.9559238], "geometry": {"coordinates": [[-85.6340877, 41.9559238], [-85.6340831, 41.9557655]], "type": "LineString"}, "id": "1084", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416364, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420011, 41.9546557, -85.6383956, 41.9603536], "geometry": {"coordinates": [[-85.6420011, 41.9603536], [-85.6383956, 41.9590576], [-85.6385522, 41.9585167], [-85.6387369, 41.9581583], [-85.63892, 41.957957], [-85.6396089, 41.9576192], [-85.639848, 41.957229], [-85.640066, 41.956854], [-85.6408843, 41.9555822], [-85.6409795, 41.9553892], [-85.6410004, 41.9552822], [-85.640983, 41.9546557]], "type": "LineString"}, "id": "1085", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208627214, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635869, 41.9461768, -85.6355644, 41.9465971], "geometry": {"coordinates": [[-85.6355644, 41.9461768], [-85.6355655, 41.946528], [-85.6357055, 41.9465971], [-85.635869, 41.9465971]], "type": "LineString"}, "id": "1086", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6472728, 41.9339736, -85.6472728, 41.9344163], "geometry": {"coordinates": [[-85.6472728, 41.9344163], [-85.6472728, 41.9343419], [-85.6472728, 41.9339736]], "type": "LineString"}, "id": "1087", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800870, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6421426, 41.9423895, -85.6418683, 41.9424016], "geometry": {"coordinates": [[-85.6421426, 41.9423895], [-85.6418683, 41.9424016]], "type": "LineString"}, "id": "1088", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942129, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6452709, 41.9481441, -85.6448371, 41.94828], "geometry": {"coordinates": [[-85.6448371, 41.9481441], [-85.645088, 41.9481485], [-85.6452709, 41.94815], [-85.6452709, 41.94828]], "type": "LineString"}, "id": "1089", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942804, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6460272, 41.9491423, -85.6450935, 41.9491544], "geometry": {"coordinates": [[-85.6460272, 41.9491423], [-85.6450935, 41.9491544]], "type": "LineString"}, "id": "1090", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 498942812, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6407748, 41.9264228, -85.639395, 41.9285197], "geometry": {"coordinates": [[-85.6394451, 41.9285197], [-85.639405, 41.9283927], [-85.639404, 41.9282066], [-85.639395, 41.9265395], [-85.6394417, 41.9264687], [-85.6395468, 41.9264228], [-85.6407631, 41.9264253], [-85.6407687, 41.9272086], [-85.64077, 41.9273885], [-85.6407748, 41.9280501], [-85.6405128, 41.9282016], [-85.640513, 41.928473]], "type": "LineString"}, "id": "1091", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143993, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6410501, 41.9272061, -85.6407687, 41.9272086], "geometry": {"coordinates": [[-85.6410501, 41.9272061], [-85.6407687, 41.9272086]], "type": "LineString"}, "id": "1092", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143994, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6541026, 41.9397322, -85.6540885, 41.9429532], "geometry": {"coordinates": [[-85.6540885, 41.9397322], [-85.6540931, 41.9408025], [-85.6540968, 41.9416764], [-85.6541017, 41.9428133], [-85.6541026, 41.9429532]], "type": "LineString"}, "id": "1093", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Tolbert Drive", "oneway": null, "osm_id": 628771096, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6366287, 41.9583116, -85.6360261, 41.9585014], "geometry": {"coordinates": [[-85.6366287, 41.9583116], [-85.6366107, 41.9585014], [-85.6360261, 41.9584779]], "type": "LineString"}, "id": "1094", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454969, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350498, 41.9586206, -85.6350104, 41.9590274], "geometry": {"coordinates": [[-85.6350104, 41.9590274], [-85.6350498, 41.9586206]], "type": "LineString"}, "id": "1095", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454971, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483349, 41.9345756, -85.6469152, 41.9345841], "geometry": {"coordinates": [[-85.6483349, 41.9345756], [-85.6482271, 41.9345756], [-85.6471564, 41.934578], [-85.6470377, 41.934581], [-85.6469152, 41.9345841]], "type": "LineString"}, "id": "1096", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800864, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.64079, 41.953638, -85.6362328, 41.9536856], "geometry": {"coordinates": [[-85.6362328, 41.9536856], [-85.637452, 41.953665], [-85.638654, 41.953665], [-85.6394045, 41.953658], [-85.6398159, 41.9536507], [-85.640532, 41.953638], [-85.64079, 41.953638]], "type": "LineString"}, "id": "1097", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Cushman Street", "oneway": null, "osm_id": 385299770, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520022, 41.9380485, -85.6517676, 41.9384842], "geometry": {"coordinates": [[-85.6519959, 41.9384842], [-85.6520022, 41.9380485], [-85.6519479, 41.9380494], [-85.6517676, 41.9380523]], "type": "LineString"}, "id": "1098", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6522031, 41.9344576, -85.6517615, 41.9346114], "geometry": {"coordinates": [[-85.6517615, 41.9346114], [-85.6517866, 41.9345736], [-85.6518063, 41.9345514], [-85.6518368, 41.9345316], [-85.6518745, 41.9345118], [-85.6519276, 41.934493], [-85.6519869, 41.9344845], [-85.6520533, 41.9344801], [-85.6521237, 41.934468], [-85.6522031, 41.9344576]], "type": "LineString"}, "id": "1099", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892841, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651459, 41.925523, -85.6514551, 41.9269659], "geometry": {"coordinates": [[-85.6514551, 41.925523], [-85.6514577, 41.926101], [-85.651459, 41.9269659]], "type": "LineString"}, "id": "1100", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 1111894476, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6516294, 41.9241414, -85.651626, 41.9249078], "geometry": {"coordinates": [[-85.6516294, 41.9249078], [-85.651626, 41.9241414]], "type": "LineString"}, "id": "1101", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 17964924, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480077, 41.9376349, -85.6471505, 41.9377541], "geometry": {"coordinates": [[-85.6471505, 41.9376626], [-85.6473951, 41.9376349], [-85.6480077, 41.9377541]], "type": "LineString"}, "id": "1102", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243983, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6459917, 41.9373978, -85.6458952, 41.9379365], "geometry": {"coordinates": [[-85.6459917, 41.9373978], [-85.6458952, 41.9379365]], "type": "LineString"}, "id": "1103", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607644651, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6364433, 41.9460423, -85.6358187, 41.9460485], "geometry": {"coordinates": [[-85.6358187, 41.9460423], [-85.6360524, 41.9460485], [-85.636291, 41.9460461], [-85.6364433, 41.9460423]], "type": "LineString"}, "id": "1104", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "Moore Street", "oneway": null, "osm_id": 134150808, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345079, 41.9461817, -85.6340746, 41.9461956], "geometry": {"coordinates": [[-85.6345079, 41.9461817], [-85.6340746, 41.9461956]], "type": "LineString"}, "id": "1105", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "River Row", "oneway": null, "osm_id": 738590017, "osm_type": "ways_line", "smoothness": null, "surface": "concrete", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634686, 41.952415, -85.633287, 41.952426], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.634686, 41.952415]], "type": "LineString"}, "id": "1106", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Wheeler Street", "oneway": null, "osm_id": 775171419, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633287, 41.951159, -85.633274, 41.952426], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.633274, 41.951159]], "type": "LineString"}, "id": "1107", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": "yes", "osm_id": 772835856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636233, 41.9459797, -85.6359415, 41.9536856], "geometry": {"coordinates": [[-85.6359415, 41.9459797], [-85.636058, 41.946201], [-85.636112, 41.946366], [-85.636143, 41.946551], [-85.6361494, 41.946757], [-85.6361542, 41.946915], [-85.636166, 41.947296], [-85.636163, 41.947382], [-85.6361818, 41.9486135], [-85.6361862, 41.94952], [-85.636188, 41.9498803], [-85.6362059, 41.9511457], [-85.636233, 41.952398], [-85.6362328, 41.9536856]], "type": "LineString"}, "id": "1108", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Street", "oneway": null, "osm_id": 17967183, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640734, 41.942601, -85.6406588, 41.945887], "geometry": {"coordinates": [[-85.6406588, 41.942601], [-85.6406598, 41.9426764], [-85.6406657, 41.943107], [-85.6406695, 41.9433904], [-85.640672, 41.9435717], [-85.640676, 41.943867], [-85.640683, 41.94513], [-85.640734, 41.945887]], "type": "LineString"}, "id": "1109", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Lincoln Avenue", "oneway": null, "osm_id": 17967073, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420893, 41.9431389, -85.641881, 41.943139], "geometry": {"coordinates": [[-85.641881, 41.9431389], [-85.6419914, 41.943139], [-85.6420893, 41.943139]], "type": "LineString"}, "id": "1110", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615986, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6441644, 41.9429932, -85.6438794, 41.9431502], "geometry": {"coordinates": [[-85.6438794, 41.9429932], [-85.643885, 41.9431491], [-85.6441644, 41.9431502]], "type": "LineString"}, "id": "1111", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 486385875, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632842, 41.9438989, -85.6326206, 41.944042], "geometry": {"coordinates": [[-85.6326206, 41.944042], [-85.6327269, 41.9439731], [-85.632842, 41.9438989]], "type": "LineString"}, "id": "1112", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427764, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351783, 41.9438906, -85.6351431, 41.9439217], "geometry": {"coordinates": [[-85.6351563, 41.9438906], [-85.6351783, 41.9439117], [-85.6351431, 41.9439217]], "type": "LineString"}, "id": "1113", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974054, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345233, 41.9432605, -85.6342019, 41.9437218], "geometry": {"coordinates": [[-85.6342019, 41.9437218], [-85.6345188, 41.9435401], [-85.6345233, 41.9434933], [-85.6343389, 41.9433106], [-85.6342265, 41.9432605]], "type": "LineString"}, "id": "1114", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 847370288, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632971, 41.944093, -85.6327737, 41.944194], "geometry": {"coordinates": [[-85.632971, 41.944093], [-85.63288, 41.9441396], [-85.6327737, 41.944194]], "type": "LineString"}, "id": "1115", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427760, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333999, 41.9437132, -85.632801, 41.9440586], "geometry": {"coordinates": [[-85.6333999, 41.9437132], [-85.6329202, 41.9439902], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "1116", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 847427772, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6337366, 41.9430376, -85.633222, 41.9435193], "geometry": {"coordinates": [[-85.6337366, 41.9435193], [-85.6336585, 41.9434434], [-85.6334282, 41.9432237], [-85.6333609, 41.9431631], [-85.633222, 41.9430376]], "type": "LineString"}, "id": "1117", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768439951, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347357, 41.9431737, -85.6343843, 41.9432884], "geometry": {"coordinates": [[-85.6347357, 41.9431737], [-85.6343843, 41.9432884]], "type": "LineString"}, "id": "1118", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550716, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348245, 41.9429852, -85.6346535, 41.9430323], "geometry": {"coordinates": [[-85.6346535, 41.9430323], [-85.6348245, 41.9429852]], "type": "LineString"}, "id": "1119", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550708, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6343528, 41.9422199, -85.6334991, 41.9432605], "geometry": {"coordinates": [[-85.6342265, 41.9432605], [-85.6341848, 41.9432268], [-85.634137, 41.9431881], [-85.6340846, 41.9431458], [-85.6339312, 41.9429108], [-85.6341561, 41.9428552], [-85.634294, 41.942821], [-85.634322, 41.9428102], [-85.6343358, 41.9427984], [-85.6343486, 41.9427834], [-85.6343528, 41.9427597], [-85.6341887, 41.9423478], [-85.6341527, 41.942254], [-85.6341163, 41.9422334], [-85.6340925, 41.9422199], [-85.6337682, 41.9422928], [-85.6335719, 41.9423321], [-85.6335427, 41.9423433], [-85.6335213, 41.9423569], [-85.6335094, 41.9423725], [-85.6335015, 41.942391], [-85.6334991, 41.9424175], [-85.6335062, 41.942447], [-85.6335261, 41.9424882], [-85.6335514, 41.9425294], [-85.6336296, 41.942665], [-85.6338939, 41.9428687], [-85.6339312, 41.9429108]], "type": "LineString"}, "id": "1120", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203974065, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6375545, 41.9426207, -85.6372304, 41.9431146], "geometry": {"coordinates": [[-85.6375506, 41.9426211], [-85.6375513, 41.9427048], [-85.6375545, 41.9431127], [-85.6372398, 41.9431146], [-85.6372319, 41.9427018], [-85.6372304, 41.9426207]], "type": "LineString"}, "id": "1121", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643128, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6449695, 41.9476224, -85.644429, 41.9481971], "geometry": {"coordinates": [[-85.644429, 41.947633], [-85.64469, 41.9476224], [-85.6449126, 41.9476324], [-85.6449451, 41.9476592], [-85.6449695, 41.9477042], [-85.6449634, 41.9477761], [-85.6449207, 41.9478359], [-85.6448712, 41.9479054], [-85.6448268, 41.9479676], [-85.6448371, 41.9481441], [-85.6448402, 41.9481971], [-85.6444419, 41.9481952]], "type": "LineString"}, "id": "1122", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942238, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6468732, 41.9299702, -85.6468592, 41.9307502], "geometry": {"coordinates": [[-85.6468732, 41.9307502], [-85.6468592, 41.9299702]], "type": "LineString"}, "id": "1123", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310415, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.648066, 41.9425328, -85.6474893, 41.9427565], "geometry": {"coordinates": [[-85.6474914, 41.9425378], [-85.6474906, 41.9426181], [-85.6474893, 41.9427565], [-85.6475152, 41.9427563], [-85.648032, 41.9427519], [-85.6480536, 41.9426127], [-85.648066, 41.9425328]], "type": "LineString"}, "id": "1124", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942834, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.65237, 41.9336106, -85.6520553, 41.9336125], "geometry": {"coordinates": [[-85.65237, 41.9336106], [-85.6520553, 41.9336125]], "type": "LineString"}, "id": "1125", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237757, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6328948, 41.9458703, -85.6321916, 41.9462374], "geometry": {"coordinates": [[-85.6328948, 41.9462374], [-85.6326413, 41.9461422], [-85.6321916, 41.9459733], [-85.6322598, 41.9458703], [-85.6327208, 41.9460358], [-85.6326413, 41.9461422]], "type": "LineString"}, "id": "1126", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643146, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630972, 41.950656, -85.630835, 41.9619135], "geometry": {"coordinates": [[-85.630962, 41.9619135], [-85.6309653, 41.961811], [-85.630972, 41.961495], [-85.6309589, 41.960954], [-85.630952, 41.960667], [-85.6309472, 41.9602135], [-85.630935, 41.959037], [-85.6309238, 41.9583889], [-85.6309162, 41.957419], [-85.630904, 41.955913], [-85.6308843, 41.9547669], [-85.630883, 41.954692], [-85.6308815, 41.9545993], [-85.6308677, 41.9537139], [-85.630855, 41.952452], [-85.6308395, 41.9511969], [-85.630835, 41.950656]], "type": "LineString"}, "id": "1127", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Elm Street", "oneway": null, "osm_id": 290758901, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6367013, 41.9624364, -85.6362597, 41.9638663], "geometry": {"coordinates": [[-85.6362597, 41.9638663], [-85.6363358, 41.963634], [-85.6367013, 41.9625422], [-85.6366952, 41.9625014], [-85.6366606, 41.962456], [-85.636439, 41.9624364]], "type": "LineString"}, "id": "1128", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 777996086, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504912, 41.9433194, -85.6504837, 41.9437343], "geometry": {"coordinates": [[-85.6504912, 41.9437343], [-85.6504899, 41.9436641], [-85.6504866, 41.9434825], [-85.6504837, 41.9433194]], "type": "LineString"}, "id": "1129", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942192, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493217, 41.9456249, -85.6492976, 41.9459632], "geometry": {"coordinates": [[-85.6492976, 41.9459632], [-85.6493217, 41.9456249]], "type": "LineString"}, "id": "1130", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942213, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500618, 41.9505436, -85.6499839, 41.9509537], "geometry": {"coordinates": [[-85.6499839, 41.9505436], [-85.6499991, 41.9506634], [-85.6500199, 41.9508029], [-85.6500389, 41.9508762], [-85.6500618, 41.9509537]], "type": "LineString"}, "id": "1131", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636434, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6487523, 41.942523, -85.6348719, 41.9430367], "geometry": {"coordinates": [[-85.6487523, 41.942523], [-85.6486708, 41.9425249], [-85.6482342, 41.9425314], [-85.648066, 41.9425328], [-85.6477792, 41.9425353], [-85.6474914, 41.9425378], [-85.6474623, 41.942538], [-85.6472723, 41.9425396], [-85.6470582, 41.9425415], [-85.6469154, 41.9425427], [-85.6467464, 41.9425441], [-85.6463823, 41.9425472], [-85.6462541, 41.9425483], [-85.6461839, 41.9425489], [-85.6460385, 41.9425502], [-85.6458708, 41.9425516], [-85.645555, 41.9425543], [-85.6450276, 41.9425588], [-85.6443608, 41.9425645], [-85.6441525, 41.9425687], [-85.6438642, 41.9425705], [-85.64319, 41.9425748], [-85.6431031, 41.9425754], [-85.6430036, 41.9425763], [-85.6423063, 41.9425816], [-85.6418749, 41.9425864], [-85.64167, 41.9425889], [-85.641113, 41.9425955], [-85.6409572, 41.9425974], [-85.6406588, 41.942601], [-85.6403442, 41.9426034], [-85.6399801, 41.9426061], [-85.6394548, 41.94261], [-85.6382347, 41.9426146], [-85.6381584, 41.9426151], [-85.6375506, 41.9426211], [-85.6372304, 41.9426207], [-85.6370277, 41.9426234], [-85.6368191, 41.9426307], [-85.6366609, 41.9426359], [-85.6364941, 41.9426463], [-85.6363512, 41.9426613], [-85.6362124, 41.9426809], [-85.6360534, 41.9427104], [-85.6359171, 41.9427389], [-85.6358136, 41.9427625], [-85.6356875, 41.9427985], [-85.6354213, 41.9428814], [-85.6351764, 41.9429527], [-85.6348719, 41.9430367]], "type": "LineString"}, "id": "1132", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 41785752, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514657, 41.9269659, -85.6514005, 41.932543], "geometry": {"coordinates": [[-85.651459, 41.9269659], [-85.6514655, 41.9274874], [-85.6514657, 41.92812], [-85.6514533, 41.928703], [-85.6514197, 41.9294376], [-85.6514093, 41.930032], [-85.6514005, 41.930756], [-85.6514073, 41.932543]], "type": "LineString"}, "id": "1133", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 17964919, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511986, 41.9355867, -85.6509084, 41.9360091], "geometry": {"coordinates": [[-85.6511892, 41.9356274], [-85.6511986, 41.9359536], [-85.6511869, 41.9359799], [-85.6511424, 41.9360036], [-85.6510809, 41.9360091], [-85.6509913, 41.9360017], [-85.6509433, 41.9359832], [-85.6509084, 41.9359363], [-85.6509151, 41.9358697], [-85.6510918, 41.9355867]], "type": "LineString"}, "id": "1134", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 944116887, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6427227, 41.9360551, -85.642441, 41.9360595], "geometry": {"coordinates": [[-85.642441, 41.9360595], [-85.6425854, 41.9360584], [-85.6427227, 41.9360551]], "type": "LineString"}, "id": "1135", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158509, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514281, 41.9397993, -85.6502878, 41.9402284], "geometry": {"coordinates": [[-85.6514281, 41.9402239], [-85.6512554, 41.9402266], [-85.6511162, 41.9402284], [-85.6510841, 41.9402185], [-85.6510526, 41.9401821], [-85.6510399, 41.9400159], [-85.6510182, 41.9399964], [-85.6509757, 41.9399824], [-85.6503565, 41.9399896], [-85.6503247, 41.9399741], [-85.6503056, 41.9399416], [-85.6502878, 41.9397993]], "type": "LineString"}, "id": "1136", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915314565, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6302845, 41.952461, -85.6302622, 41.9537225], "geometry": {"coordinates": [[-85.630275, 41.952461], [-85.6302622, 41.9527127], [-85.6302705, 41.9531057], [-85.6302695, 41.95339], [-85.6302845, 41.9537225]], "type": "LineString"}, "id": "1137", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907706349, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523735, 41.9341201, -85.6520137, 41.9341224], "geometry": {"coordinates": [[-85.6523735, 41.9341224], [-85.6520137, 41.9341201]], "type": "LineString"}, "id": "1138", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237755, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651129, 41.9313995, -85.6506085, 41.9324035], "geometry": {"coordinates": [[-85.6506085, 41.9324035], [-85.6507287, 41.9323738], [-85.6508184, 41.9323231], [-85.6511041, 41.9319883], [-85.651129, 41.9318635], [-85.651107, 41.9313995]], "type": "LineString"}, "id": "1139", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "no", "osm_id": 767768418, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322992, 41.9442766, -85.6315778, 41.9443959], "geometry": {"coordinates": [[-85.6315778, 41.9443959], [-85.6317718, 41.9443666], [-85.6321585, 41.9443033], [-85.6322992, 41.9442766]], "type": "LineString"}, "id": "1140", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 134150836, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6197809, 41.9507383, -85.6196772, 41.9509646], "geometry": {"coordinates": [[-85.6196772, 41.9507383], [-85.6196829, 41.9508426], [-85.6197809, 41.9509646]], "type": "LineString"}, "id": "1141", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528704, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634686, 41.951158, -85.633274, 41.951159], "geometry": {"coordinates": [[-85.633274, 41.951159], [-85.634686, 41.951158]], "type": "LineString"}, "id": "1142", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Armitage Street", "oneway": null, "osm_id": 772835855, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6516484, 41.9249078, -85.6516294, 41.9269767], "geometry": {"coordinates": [[-85.6516484, 41.9269767], [-85.6516457, 41.9260922], [-85.65164, 41.9256613], [-85.6516374, 41.9253813], [-85.6516294, 41.9249078]], "type": "LineString"}, "id": "1143", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 929692961, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517612, 41.9340249, -85.6514053, 41.9345195], "geometry": {"coordinates": [[-85.6514053, 41.9340249], [-85.6514379, 41.9342133], [-85.6514669, 41.9344205], [-85.6514801, 41.9344643], [-85.6514983, 41.9344886], [-85.6515236, 41.9345057], [-85.6515543, 41.9345169], [-85.6515949, 41.9345195], [-85.6516336, 41.9345186], [-85.6516755, 41.9345122], [-85.6517072, 41.9344986], [-85.6517305, 41.9344813], [-85.6517612, 41.9344482]], "type": "LineString"}, "id": "1144", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892846, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6239169, 41.9489097, -85.6239144, 41.9492376], "geometry": {"coordinates": [[-85.6239169, 41.9489097], [-85.6239149, 41.9491686], [-85.6239144, 41.9492376]], "type": "LineString"}, "id": "1145", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964877, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6459436, 41.9323899, -85.6444563, 41.9326688], "geometry": {"coordinates": [[-85.6444717, 41.9326688], [-85.6444658, 41.9325635], [-85.6444563, 41.9323946], [-85.6459343, 41.9323899], [-85.6459398, 41.9325414], [-85.6459436, 41.9326459]], "type": "LineString"}, "id": "1146", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 776984512, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557753, 41.942632, -85.654356, 41.942648], "geometry": {"coordinates": [[-85.654356, 41.942648], [-85.6557753, 41.942632]], "type": "LineString"}, "id": "1147", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771082, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453514, 41.940684, -85.644272, 41.9412419], "geometry": {"coordinates": [[-85.6453514, 41.9412419], [-85.6453371, 41.9407486], [-85.645247, 41.940684], [-85.6443423, 41.9407072], [-85.644272, 41.940795]], "type": "LineString"}, "id": "1148", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 203968031, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636834, 41.934223, -85.6363309, 41.9381805], "geometry": {"coordinates": [[-85.636834, 41.934223], [-85.636786, 41.93429], [-85.636516, 41.935036], [-85.636453, 41.937038], [-85.6363309, 41.9381805]], "type": "LineString"}, "id": "1149", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Spring Street", "oneway": null, "osm_id": 17965836, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357931, 41.960811, -85.6357842, 41.9610796], "geometry": {"coordinates": [[-85.6357842, 41.960811], [-85.6357931, 41.9610796]], "type": "LineString"}, "id": "1150", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 307186113, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501851, 41.9442926, -85.6496103, 41.9443041], "geometry": {"coordinates": [[-85.6501851, 41.9442926], [-85.6496103, 41.9443041]], "type": "LineString"}, "id": "1151", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942200, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347658, 41.9461774, -85.6345079, 41.9461817], "geometry": {"coordinates": [[-85.6345079, 41.9461817], [-85.6346405, 41.9461789], [-85.6347658, 41.9461774]], "type": "LineString"}, "id": "1152", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427784, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6593087, 41.9255834, -85.6583049, 41.925818], "geometry": {"coordinates": [[-85.6593087, 41.9255834], [-85.6588917, 41.9256758], [-85.6583049, 41.925818]], "type": "LineString"}, "id": "1153", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 41260271, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557383, 41.9328286, -85.6543143, 41.9328574], "geometry": {"coordinates": [[-85.6557383, 41.9328286], [-85.6555615, 41.9328551], [-85.6547305, 41.9328574], [-85.6543143, 41.9328458]], "type": "LineString"}, "id": "1154", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906545417, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511523, 41.9294498, -85.6507517, 41.9306049], "geometry": {"coordinates": [[-85.6511523, 41.9306049], [-85.6511479, 41.9296817], [-85.6507518, 41.9296928], [-85.6507517, 41.9294498]], "type": "LineString"}, "id": "1155", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612674, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644224, 41.9273627, -85.6410503, 41.9284601], "geometry": {"coordinates": [[-85.644224, 41.9273627], [-85.6434492, 41.9273881], [-85.6429757, 41.9273707], [-85.642862, 41.9273717], [-85.6410503, 41.9273876], [-85.6410658, 41.9279548], [-85.6410644, 41.9280451], [-85.6410582, 41.9284601]], "type": "LineString"}, "id": "1156", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915583098, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467775, 41.9260708, -85.644224, 41.9273627], "geometry": {"coordinates": [[-85.6467775, 41.9260708], [-85.6466255, 41.9261099], [-85.6464931, 41.9261586], [-85.6463216, 41.926241], [-85.6451527, 41.9270506], [-85.6449129, 41.9271733], [-85.6446774, 41.9272583], [-85.6443966, 41.9273397], [-85.644224, 41.9273627]], "type": "LineString"}, "id": "1157", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "TekModo Way", "oneway": null, "osm_id": 1173386266, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567971, 41.9304605, -85.6556692, 41.9304639], "geometry": {"coordinates": [[-85.6567971, 41.9304639], [-85.6559467, 41.9304616], [-85.6556692, 41.9304605]], "type": "LineString"}, "id": "1158", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237747, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62642, 41.9342098, -85.6264034, 41.9371684], "geometry": {"coordinates": [[-85.6264034, 41.9342098], [-85.6264049, 41.9352062], [-85.6264109, 41.9361922], [-85.62642, 41.9371684]], "type": "LineString"}, "id": "1159", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871019043, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6264034, 41.93319, -85.6263762, 41.9342098], "geometry": {"coordinates": [[-85.6264034, 41.9342098], [-85.6263924, 41.9340569], [-85.626385, 41.9338793], [-85.6263909, 41.933729], [-85.6263777, 41.933267], [-85.6263762, 41.93319]], "type": "LineString"}, "id": "1160", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199680, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6319731, 41.9377791, -85.6308712, 41.9381973], "geometry": {"coordinates": [[-85.6308937, 41.9381973], [-85.6308731, 41.9378614], [-85.6308712, 41.9378308], [-85.630957, 41.9378032], [-85.6315648, 41.9377791], [-85.6317852, 41.9377946], [-85.6319453, 41.9378809], [-85.6319731, 41.9380345], [-85.6319105, 41.9381501], [-85.6317528, 41.9381812]], "type": "LineString"}, "id": "1161", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915501171, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321102, 41.9429465, -85.631852, 41.9432542], "geometry": {"coordinates": [[-85.631852, 41.9429465], [-85.6321102, 41.9432542]], "type": "LineString"}, "id": "1162", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "secondary", "layer": "1", "name": "South Main Street", "oneway": null, "osm_id": 134150830, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6412915, 41.931841, -85.6410939, 41.9400568], "geometry": {"coordinates": [[-85.6412224, 41.931841], [-85.6412907, 41.9319548], [-85.6412915, 41.9327042], [-85.6412869, 41.93279], [-85.6412249, 41.9339485], [-85.6412214, 41.9349827], [-85.641148, 41.936984], [-85.641112, 41.938169], [-85.6410946, 41.9399845], [-85.6410939, 41.9400568]], "type": "LineString"}, "id": "1163", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Grant Avenue", "oneway": null, "osm_id": 17965747, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6284837, 41.95532, -85.627582, 41.9553461], "geometry": {"coordinates": [[-85.6284837, 41.9553346], [-85.6276612, 41.9553461], [-85.6276342, 41.9553391], [-85.627582, 41.95532]], "type": "LineString"}, "id": "1164", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 800580149, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489401, 41.9339003, -85.6484154, 41.9344309], "geometry": {"coordinates": [[-85.6484154, 41.9344309], [-85.6484184, 41.9340727], [-85.6484198, 41.9339031], [-85.6489401, 41.9339003], [-85.6489382, 41.9340671], [-85.6484184, 41.9340727]], "type": "LineString"}, "id": "1165", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800868, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6097807, 41.9470374, -85.6093852, 41.947251], "geometry": {"coordinates": [[-85.6097807, 41.9470374], [-85.609538, 41.9470429], [-85.6094512, 41.9470483], [-85.6094084, 41.9470656], [-85.6093877, 41.9471056], [-85.6093852, 41.9471556], [-85.6094036, 41.9471965], [-85.6094488, 41.9472283], [-85.6095465, 41.9472419], [-85.6097788, 41.947251]], "type": "LineString"}, "id": "1166", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 905683520, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462522, 41.9362823, -85.6443023, 41.9367503], "geometry": {"coordinates": [[-85.6462522, 41.9362823], [-85.6462119, 41.9363243], [-85.6459664, 41.9365804], [-85.6458481, 41.9367038], [-85.6457648, 41.9367503], [-85.6456315, 41.9367503], [-85.6447108, 41.9362885], [-85.6443023, 41.9362837]], "type": "LineString"}, "id": "1167", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 238879876, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521346, 41.9356869, -85.6521345, 41.9359181], "geometry": {"coordinates": [[-85.6521345, 41.9356869], [-85.6521346, 41.9359181]], "type": "LineString"}, "id": "1168", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612670, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503211, 41.9348439, -85.650076, 41.9357623], "geometry": {"coordinates": [[-85.6503055, 41.9348439], [-85.6503096, 41.9352497], [-85.6503211, 41.9356991], [-85.6502168, 41.9357586], [-85.650076, 41.9357623]], "type": "LineString"}, "id": "1169", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034076, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529405, 41.9339328, -85.6523749, 41.9343364], "geometry": {"coordinates": [[-85.6529405, 41.9339328], [-85.6527717, 41.9339403], [-85.6527295, 41.9339729], [-85.6527077, 41.9340012], [-85.6527059, 41.9340444], [-85.652711, 41.9342677], [-85.6527103, 41.9342958], [-85.6527008, 41.9343216], [-85.6526822, 41.9343345], [-85.6526548, 41.9343364], [-85.6525665, 41.9343359], [-85.6523749, 41.9343329]], "type": "LineString"}, "id": "1170", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906545418, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6282245, 41.9375655, -85.6277816, 41.938051], "geometry": {"coordinates": [[-85.6282245, 41.938051], [-85.6281109, 41.9380345], [-85.6280282, 41.9380225], [-85.6277816, 41.9377156], [-85.6278042, 41.9376286], [-85.6278206, 41.9375655]], "type": "LineString"}, "id": "1171", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758897089, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344386, 41.9454489, -85.6342487, 41.9456229], "geometry": {"coordinates": [[-85.6342487, 41.9454489], [-85.6343577, 41.9455483], [-85.6344386, 41.9456229]], "type": "LineString"}, "id": "1172", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427780, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543234, 41.9350092, -85.6517574, 41.9359236], "geometry": {"coordinates": [[-85.6517574, 41.9359236], [-85.6519436, 41.9359209], [-85.6521346, 41.9359181], [-85.6539689, 41.9358867], [-85.6541223, 41.9358561], [-85.654242, 41.9357809], [-85.6542981, 41.9356696], [-85.6543214, 41.9350601], [-85.6543234, 41.9350092]], "type": "LineString"}, "id": "1173", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348853, 41.9439105, -85.6348317, 41.9439117], "geometry": {"coordinates": [[-85.6348853, 41.9439117], [-85.6348317, 41.9439105]], "type": "LineString"}, "id": "1174", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974057, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296524, 41.928314, -85.6263285, 41.928331], "geometry": {"coordinates": [[-85.6263285, 41.928331], [-85.6280779, 41.928322], [-85.6296524, 41.928314]], "type": "LineString"}, "id": "1175", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bell Street", "oneway": null, "osm_id": 17964630, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6308585, 41.9547689, -85.6307808, 41.961972], "geometry": {"coordinates": [[-85.6308579, 41.961972], [-85.6308575, 41.9618493], [-85.630858, 41.9618094], [-85.6308585, 41.9617758], [-85.6308451, 41.960998], [-85.6308451, 41.9609551], [-85.6308451, 41.9609202], [-85.6308424, 41.9603338], [-85.630821, 41.9583392], [-85.6308103, 41.9574915], [-85.6308074, 41.9574199], [-85.6308103, 41.9573838], [-85.6307995, 41.9558101], [-85.6307888, 41.9557383], [-85.6307808, 41.9547689]], "type": "LineString"}, "id": "1176", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652967185, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508611, 41.9411766, -85.6498901, 41.9415477], "geometry": {"coordinates": [[-85.650778, 41.9415477], [-85.6508611, 41.9414479], [-85.6508584, 41.9411766], [-85.6498901, 41.9411846]], "type": "LineString"}, "id": "1177", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942146, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508106, 41.9433006, -85.6493217, 41.9456249], "geometry": {"coordinates": [[-85.6502031, 41.9450188], [-85.6498418, 41.9450118], [-85.6498444, 41.9451822], [-85.6498468, 41.9453368], [-85.6498494, 41.9455066], [-85.6498511, 41.9456164], [-85.6493217, 41.9456249], [-85.6493275, 41.9454987], [-85.6493354, 41.9453267], [-85.6493424, 41.9451743], [-85.649349, 41.9450535], [-85.6493899, 41.9450231], [-85.6494728, 41.9449614], [-85.6495428, 41.9448311], [-85.6495375, 41.9446778], [-85.6495319, 41.944516], [-85.6496059, 41.9445098], [-85.6495895, 41.9443134], [-85.6496103, 41.9443041], [-85.6496549, 41.9442839], [-85.6496566, 41.9441392], [-85.6496573, 41.9440807], [-85.6496532, 41.9439729], [-85.6496469, 41.9438065], [-85.6496414, 41.9436606], [-85.6496363, 41.9435247], [-85.6497338, 41.943476], [-85.6500847, 41.9433006], [-85.6504837, 41.9433194], [-85.6506931, 41.9433447], [-85.6507656, 41.9434456], [-85.6508106, 41.9435525], [-85.6507817, 41.943638], [-85.6507601, 41.9437423]], "type": "LineString"}, "id": "1178", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942191, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480294, 41.9440825, -85.6477466, 41.9458724], "geometry": {"coordinates": [[-85.6477466, 41.9458724], [-85.64793, 41.945805], [-85.6480183, 41.9456719], [-85.6480294, 41.9455996], [-85.6480185, 41.9447787], [-85.6480097, 41.9441136], [-85.6479747, 41.9440825]], "type": "LineString"}, "id": "1179", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Loren Avenue", "oneway": null, "osm_id": 203968026, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167567, 41.9497018, -85.6165925, 41.9497032], "geometry": {"coordinates": [[-85.6167567, 41.9497018], [-85.6165925, 41.9497032]], "type": "LineString"}, "id": "1180", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839097, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6332888, 41.9456871, -85.626832, 41.954677], "geometry": {"coordinates": [[-85.6332888, 41.9456871], [-85.6328948, 41.9462374], [-85.631422, 41.948294], [-85.63102, 41.948805], [-85.6308961, 41.9490425], [-85.630773, 41.949209], [-85.63005, 41.95016], [-85.629423, 41.951016], [-85.629252, 41.951256], [-85.629126, 41.951489], [-85.628991, 41.951704], [-85.628689, 41.952112], [-85.628313, 41.952666], [-85.627687, 41.953529], [-85.627394, 41.953947], [-85.627287, 41.954128], [-85.626832, 41.954677]], "type": "LineString"}, "id": "1181", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Water Street", "oneway": null, "osm_id": 17967730, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631852, 41.9257224, -85.6255481, 41.9429465], "geometry": {"coordinates": [[-85.6255481, 41.9257224], [-85.6256655, 41.9261001], [-85.625685, 41.926163], [-85.6257845, 41.9264872], [-85.626047, 41.92737], [-85.6263285, 41.928331], [-85.62663, 41.929251], [-85.6269, 41.930199], [-85.627008, 41.930642], [-85.627029, 41.930775], [-85.627041, 41.930946], [-85.6270379, 41.9311746], [-85.6270421, 41.931671], [-85.6270441, 41.9321659], [-85.627073, 41.93319], [-85.627055, 41.934206], [-85.627053, 41.9352031], [-85.627089, 41.9361884], [-85.627084, 41.936804], [-85.627104, 41.936914], [-85.627156, 41.937026], [-85.6272406, 41.9371672], [-85.627317, 41.93723], [-85.627422, 41.937312], [-85.6276, 41.937412], [-85.627754, 41.937504], [-85.6278206, 41.9375655], [-85.627883, 41.937623], [-85.627984, 41.93773], [-85.6280534, 41.9378226], [-85.6282245, 41.938051], [-85.629033, 41.93913], [-85.6296235, 41.939922], [-85.6297342, 41.9400783], [-85.6302265, 41.9407499], [-85.6304899, 41.9411092], [-85.6309241, 41.9417016], [-85.630986, 41.941786], [-85.6310312, 41.9418474], [-85.631194, 41.9420689], [-85.6315379, 41.9425368], [-85.631594, 41.942613], [-85.631852, 41.9429465]], "type": "LineString"}, "id": "1182", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 17966462, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651777, 41.9400273, -85.6514237, 41.9405094], "geometry": {"coordinates": [[-85.6514237, 41.9400273], [-85.651458, 41.9401765], [-85.6514772, 41.940289], [-85.6514879, 41.9403869], [-85.6515005, 41.9404431], [-85.6515155, 41.9404662], [-85.6515329, 41.9404845], [-85.651565, 41.9404984], [-85.6516037, 41.9405072], [-85.6516451, 41.9405094], [-85.651683, 41.9405085], [-85.6517127, 41.9404967], [-85.6517403, 41.9404805], [-85.651777, 41.9404534]], "type": "LineString"}, "id": "1183", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892837, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6237455, 41.9543033, -85.6237453, 41.9543932], "geometry": {"coordinates": [[-85.6237453, 41.9543033], [-85.6237455, 41.9543932]], "type": "LineString"}, "id": "1184", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 758296779, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6456872, 41.9328206, -85.6455734, 41.9349562], "geometry": {"coordinates": [[-85.6455734, 41.9328206], [-85.6456615, 41.9335502], [-85.6456872, 41.9339626], [-85.6455841, 41.9349562]], "type": "LineString"}, "id": "1185", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 203984751, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651426, 41.9363235, -85.6493175, 41.9364802], "geometry": {"coordinates": [[-85.651426, 41.9364304], [-85.6512453, 41.9364341], [-85.6510621, 41.9364379], [-85.6509872, 41.9364379], [-85.6509535, 41.9364348], [-85.6509164, 41.9364272], [-85.6508889, 41.9364162], [-85.650864, 41.9364032], [-85.6507666, 41.9363445], [-85.6507439, 41.9363354], [-85.6507239, 41.9363289], [-85.6506973, 41.9363254], [-85.6506667, 41.9363235], [-85.6502712, 41.9363242], [-85.6499901, 41.9363246], [-85.649871, 41.9363248], [-85.6493175, 41.9363258], [-85.6493183, 41.9364802]], "type": "LineString"}, "id": "1186", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 993698649, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6426209, 41.9357026, -85.6423321, 41.9360584], "geometry": {"coordinates": [[-85.6425854, 41.9360584], [-85.6426209, 41.9359411], [-85.642619, 41.9358254], [-85.6425834, 41.9357612], [-85.6424673, 41.9357166], [-85.6423321, 41.9357026]], "type": "LineString"}, "id": "1187", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158510, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632182, 41.9490123, -85.6320229, 41.961493], "geometry": {"coordinates": [[-85.632182, 41.961493], [-85.6321716, 41.9606811], [-85.6321612, 41.959859], [-85.6321505, 41.9590251], [-85.6321452, 41.958604], [-85.6321405, 41.9584004], [-85.6321351, 41.9581654], [-85.6321281, 41.9578611], [-85.6321178, 41.9574105], [-85.6321108, 41.95592], [-85.6320962, 41.9547609], [-85.6320952, 41.954685], [-85.6320941, 41.9545984], [-85.6320827, 41.9537069], [-85.6320668, 41.9524531], [-85.6320505, 41.951174], [-85.6320344, 41.9499109], [-85.6320229, 41.9490123]], "type": "LineString"}, "id": "1188", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Walnut Street", "oneway": null, "osm_id": 17965402, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6264809, 41.9590055, -85.6262616, 41.9590665], "geometry": {"coordinates": [[-85.6262616, 41.9590055], [-85.6264809, 41.9590665]], "type": "LineString"}, "id": "1189", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607644649, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315628, 41.9602121, -85.6309472, 41.9602135], "geometry": {"coordinates": [[-85.6309472, 41.9602135], [-85.6315628, 41.9602121]], "type": "LineString"}, "id": "1190", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947586798, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6309589, 41.960954, -85.6300416, 41.9611618], "geometry": {"coordinates": [[-85.6309589, 41.960954], [-85.6308451, 41.9609551], [-85.6305281, 41.9609581], [-85.6301491, 41.960966], [-85.63009, 41.9609849], [-85.6300758, 41.961002], [-85.6300484, 41.9610349], [-85.6300416, 41.9611618]], "type": "LineString"}, "id": "1191", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871047421, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614204, 41.953696, -85.614195, 41.954754], "geometry": {"coordinates": [[-85.614204, 41.953696], [-85.6142, 41.953978], [-85.614195, 41.954754]], "type": "LineString"}, "id": "1192", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Orchard Drive", "oneway": null, "osm_id": 17965151, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632801, 41.9440586, -85.6322992, 41.9442766], "geometry": {"coordinates": [[-85.6322992, 41.9442766], [-85.6323999, 41.9442471], [-85.6324925, 41.9442136], [-85.632685, 41.9441169], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "1193", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 847427773, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6363658, 41.9413894, -85.6357985, 41.9418959], "geometry": {"coordinates": [[-85.6358037, 41.9418913], [-85.6363658, 41.9418959], [-85.6363489, 41.9414593], [-85.6361578, 41.9413894], [-85.6357985, 41.9413906]], "type": "LineString"}, "id": "1194", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998359, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6214788, 41.9332507, -85.6211132, 41.9340459], "geometry": {"coordinates": [[-85.6214708, 41.9332507], [-85.6214788, 41.9338849], [-85.6214761, 41.933991], [-85.6214418, 41.9340322], [-85.6213706, 41.9340459], [-85.6211132, 41.9340341]], "type": "LineString"}, "id": "1195", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871050338, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272406, 41.9371672, -85.6235488, 41.9371726], "geometry": {"coordinates": [[-85.6235488, 41.9371726], [-85.6247949, 41.9371708], [-85.6257369, 41.9371694], [-85.62642, 41.9371684], [-85.6265186, 41.9371683], [-85.6267423, 41.9371679], [-85.6272406, 41.9371672]], "type": "LineString"}, "id": "1196", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Buck Street", "oneway": null, "osm_id": 17966681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321452, 41.9584004, -85.6319404, 41.958604], "geometry": {"coordinates": [[-85.6321405, 41.9584004], [-85.63207, 41.9584107], [-85.6319666, 41.9584373], [-85.6319404, 41.9584825], [-85.6319472, 41.9585207], [-85.6319755, 41.9585605], [-85.632017, 41.9585885], [-85.6321452, 41.958604]], "type": "LineString"}, "id": "1197", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 346578338, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159249, 41.9577578, -85.6157358, 41.959364], "geometry": {"coordinates": [[-85.6159142, 41.9577578], [-85.61592, 41.9581603], [-85.6159249, 41.9585901], [-85.6159249, 41.9589533], [-85.6158923, 41.959089], [-85.6157358, 41.959364]], "type": "LineString"}, "id": "1198", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Manistee River Road", "oneway": null, "osm_id": 17967743, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62569, 41.938166, -85.6173696, 41.9381886], "geometry": {"coordinates": [[-85.6173696, 41.9381886], [-85.6179654, 41.938187], [-85.6189467, 41.9381843], [-85.620013, 41.9381814], [-85.6211299, 41.9381784], [-85.62232, 41.9381751], [-85.6235512, 41.9381718], [-85.6248019, 41.9381684], [-85.62569, 41.938166]], "type": "LineString"}, "id": "1199", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Canal Street", "oneway": null, "osm_id": 17965778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6481146, 41.9367519, -85.6479642, 41.9371807], "geometry": {"coordinates": [[-85.6479642, 41.9371807], [-85.6481146, 41.9367519]], "type": "LineString"}, "id": "1200", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243992, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650914, 41.9443878, -85.6503781, 41.9447037], "geometry": {"coordinates": [[-85.6503781, 41.9443878], [-85.6505076, 41.9444362], [-85.6508042, 41.9445717], [-85.650914, 41.9446359], [-85.6508626, 41.9447037]], "type": "LineString"}, "id": "1201", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942180, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500738, 41.926056, -85.6467775, 41.926996], "geometry": {"coordinates": [[-85.6500738, 41.92697], [-85.6497648, 41.9269716], [-85.648855, 41.926996], [-85.6486924, 41.9269809], [-85.6485578, 41.9269394], [-85.6484646, 41.926905], [-85.6483545, 41.9268411], [-85.6479012, 41.9264804], [-85.647809, 41.926407], [-85.6474852, 41.9261779], [-85.6473568, 41.9261167], [-85.6471952, 41.9260797], [-85.6469834, 41.926056], [-85.6467775, 41.9260708]], "type": "LineString"}, "id": "1202", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": null, "osm_id": 221671992, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_398e8cf600999750c150f002dd107ec4_add({"bbox": [-85.6607188, 41.9217072, -85.6056682, 41.9678907], "features": [{"bbox": [-85.6557727, 41.9421533, -85.65435, 41.9421651], "geometry": {"coordinates": [[-85.6557727, 41.9421533], [-85.65435, 41.9421651]], "type": "LineString"}, "id": "0", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771085, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.654358, 41.9408145, -85.6543413, 41.9428137], "geometry": {"coordinates": [[-85.654358, 41.9428137], [-85.654356, 41.942648], [-85.6543538, 41.9424684], [-85.6543518, 41.9423128], [-85.65435, 41.9421651], [-85.6543478, 41.9419856], [-85.6543458, 41.941824], [-85.654344, 41.9416704], [-85.6543434, 41.9414809], [-85.6543429, 41.9413213], [-85.6543424, 41.9411617], [-85.6543418, 41.9409841], [-85.6543413, 41.9408145]], "type": "LineString"}, "id": "1", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771094, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6526765, 41.9409895, -85.651778, 41.9412652], "geometry": {"coordinates": [[-85.651778, 41.9411764], [-85.6519479, 41.9411743], [-85.6520012, 41.9411737], [-85.6520045, 41.9412561], [-85.6525081, 41.9412652], [-85.6526765, 41.9412454], [-85.6526624, 41.941037], [-85.652556, 41.9409895], [-85.6520933, 41.9410027], [-85.6520012, 41.9411737]], "type": "LineString"}, "id": "2", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612663, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6561174, 41.9425642, -85.6557747, 41.9425722], "geometry": {"coordinates": [[-85.6561174, 41.9425642], [-85.6557747, 41.9425722]], "type": "LineString"}, "id": "3", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771076, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6562336, 41.9425622, -85.6561174, 41.9425642], "geometry": {"coordinates": [[-85.6562336, 41.9425622], [-85.6561174, 41.9425642]], "type": "LineString"}, "id": "4", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771077, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517378, 41.943267, -85.6514284, 41.9436851], "geometry": {"coordinates": [[-85.6517378, 41.9436851], [-85.6517164, 41.9433958], [-85.6517119, 41.9433549], [-85.6517019, 41.9433213], [-85.6516861, 41.9432991], [-85.6516634, 41.9432853], [-85.6516328, 41.9432715], [-85.651597, 41.943267], [-85.6515645, 41.9432682], [-85.6515335, 41.943271], [-85.6514976, 41.9432801], [-85.6514719, 41.9432934], [-85.6514284, 41.9433219]], "type": "LineString"}, "id": "5", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892835, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6519601, 41.942621, -85.6518636, 41.9426215], "geometry": {"coordinates": [[-85.6519601, 41.9426215], [-85.6518636, 41.942621]], "type": "LineString"}, "id": "6", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550678, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521916, 41.9417638, -85.6517722, 41.941989], "geometry": {"coordinates": [[-85.6521916, 41.941989], [-85.6521884, 41.9417638], [-85.6519481, 41.9417641], [-85.6517722, 41.9417643]], "type": "LineString"}, "id": "7", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786588, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651611, 41.953639, -85.651361, 41.954233], "geometry": {"coordinates": [[-85.651611, 41.953639], [-85.651361, 41.954233]], "type": "LineString"}, "id": "8", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kerr Road", "oneway": null, "osm_id": 17967640, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6595726, 41.947229, -85.6586363, 41.9482107], "geometry": {"coordinates": [[-85.6586363, 41.9482107], [-85.6590656, 41.9482008], [-85.6593875, 41.9481349], [-85.6594814, 41.9480571], [-85.6595726, 41.9477458], [-85.6595706, 41.9473567], [-85.65957, 41.947229]], "type": "LineString"}, "id": "9", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942232, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6575412, 41.9409282, -85.657509, 41.9424605], "geometry": {"coordinates": [[-85.6575412, 41.9424605], [-85.6575331, 41.941026], [-85.657509, 41.9409282]], "type": "LineString"}, "id": "10", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771074, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6572568, 41.9406409, -85.6558591, 41.9406529], "geometry": {"coordinates": [[-85.6572568, 41.9406409], [-85.6559292, 41.9406529], [-85.6558591, 41.9406435]], "type": "LineString"}, "id": "11", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771073, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6526375, 41.9406301, -85.6517762, 41.9409304], "geometry": {"coordinates": [[-85.6517762, 41.9409304], [-85.651818, 41.940889], [-85.6518531, 41.9408646], [-85.6518989, 41.9408466], [-85.6519546, 41.9408411], [-85.6521004, 41.9408471], [-85.6521642, 41.9408893], [-85.6526375, 41.9408669], [-85.6526198, 41.9406335], [-85.6519501, 41.9406308], [-85.6517811, 41.9406301]], "type": "LineString"}, "id": "12", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612664, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6533174, 41.9397438, -85.6532979, 41.9408214], "geometry": {"coordinates": [[-85.6532979, 41.9397438], [-85.653298, 41.9406972], [-85.6533174, 41.9408214]], "type": "LineString"}, "id": "13", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771808279, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521226, 41.9445535, -85.6516381, 41.9445583], "geometry": {"coordinates": [[-85.6516381, 41.9445535], [-85.6518185, 41.9445566], [-85.6521226, 41.9445583]], "type": "LineString"}, "id": "14", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612659, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6515103, 41.9447154, -85.6512479, 41.9452959], "geometry": {"coordinates": [[-85.6512716, 41.9447154], [-85.651275, 41.9448777], [-85.6512646, 41.9450033], [-85.6512485, 41.9451436], [-85.6512479, 41.9452032], [-85.6512568, 41.9452368], [-85.6512714, 41.9452538], [-85.6512986, 41.9452716], [-85.6513349, 41.945287], [-85.6513676, 41.945292], [-85.6514002, 41.9452959], [-85.6514337, 41.9452928], [-85.6514685, 41.9452847], [-85.6515103, 41.9452695]], "type": "LineString"}, "id": "15", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892834, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557736, 41.9424606, -85.6543538, 41.9424684], "geometry": {"coordinates": [[-85.6557736, 41.9424606], [-85.6543538, 41.9424684]], "type": "LineString"}, "id": "16", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771083, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514252, 41.9403967, -85.6508052, 41.9404998], "geometry": {"coordinates": [[-85.6514252, 41.9404998], [-85.6512529, 41.9404989], [-85.6511953, 41.9404897], [-85.65114, 41.9404686], [-85.6511062, 41.9404459], [-85.6510681, 41.9404112], [-85.6510237, 41.9403968], [-85.6508052, 41.9403967]], "type": "LineString"}, "id": "17", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 944116888, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6583049, 41.925818, -85.6528255, 41.9270754], "geometry": {"coordinates": [[-85.6583049, 41.925818], [-85.658036, 41.9258811], [-85.6576224, 41.9259888], [-85.657045, 41.9261585], [-85.65602, 41.9264658], [-85.6552159, 41.9267171], [-85.6548131, 41.9268422], [-85.654543, 41.9269223], [-85.6543465, 41.9269728], [-85.6541692, 41.9270133], [-85.6539864, 41.927042], [-85.6537839, 41.927061], [-85.6536326, 41.9270703], [-85.6534371, 41.9270754], [-85.653278, 41.9270676], [-85.6530945, 41.9270556], [-85.6528255, 41.9270544]], "type": "LineString"}, "id": "18", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 17962479, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523663, 41.9413324, -85.6517752, 41.9415928], "geometry": {"coordinates": [[-85.6517752, 41.9415928], [-85.6518122, 41.9415609], [-85.6518548, 41.9415378], [-85.6518992, 41.9415202], [-85.6519529, 41.9415133], [-85.6523663, 41.9415104], [-85.6523556, 41.9413324], [-85.6519515, 41.9413327], [-85.6517797, 41.9413329]], "type": "LineString"}, "id": "19", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612662, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6531239, 41.930634, -85.6531136, 41.9315684], "geometry": {"coordinates": [[-85.6531136, 41.930634], [-85.6531239, 41.9315684]], "type": "LineString"}, "id": "20", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612687, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529412, 41.9306343, -85.6529206, 41.9315681], "geometry": {"coordinates": [[-85.6529412, 41.9315681], [-85.6529206, 41.9306343]], "type": "LineString"}, "id": "21", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612688, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514038, 41.9344638, -85.6510714, 41.9345922], "geometry": {"coordinates": [[-85.6510714, 41.9344638], [-85.6511448, 41.934471], [-85.6511974, 41.934482], [-85.6512357, 41.9344942], [-85.6512741, 41.9345065], [-85.6513118, 41.9345248], [-85.6513544, 41.934553], [-85.6514038, 41.9345922]], "type": "LineString"}, "id": "22", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892843, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6559398, 41.9295578, -85.6556609, 41.9295599], "geometry": {"coordinates": [[-85.6559398, 41.9295599], [-85.6556609, 41.9295578]], "type": "LineString"}, "id": "23", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237741, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514226, 41.9425026, -85.6510705, 41.9425113], "geometry": {"coordinates": [[-85.6510705, 41.9425026], [-85.6512697, 41.9425029], [-85.6514226, 41.9425113]], "type": "LineString"}, "id": "24", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 945352905, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6527717, 41.9336106, -85.65237, 41.9339403], "geometry": {"coordinates": [[-85.6527717, 41.9339403], [-85.6527329, 41.9339127], [-85.6527201, 41.9338876], [-85.6527173, 41.9338655], [-85.6527206, 41.9337215], [-85.652719, 41.9336834], [-85.6527039, 41.9336569], [-85.6526845, 41.9336317], [-85.652645, 41.9336197], [-85.6525794, 41.9336118], [-85.652507, 41.9336106], [-85.65237, 41.9336106]], "type": "LineString"}, "id": "25", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906545419, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.657509, 41.9406409, -85.6572568, 41.9409282], "geometry": {"coordinates": [[-85.657509, 41.9409282], [-85.6574848, 41.9408604], [-85.6573856, 41.9406669], [-85.65734, 41.9406509], [-85.6572568, 41.9406409]], "type": "LineString"}, "id": "26", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771095, "osm_type": "ways_line", "smoothness": null, "surface": "concrete", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6572676, 41.9408564, -85.6558103, 41.9408584], "geometry": {"coordinates": [[-85.6572676, 41.9408564], [-85.6558103, 41.9408584]], "type": "LineString"}, "id": "27", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771072, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.656065, 41.948108, -85.656053, 41.949009], "geometry": {"coordinates": [[-85.656065, 41.948108], [-85.656053, 41.949009]], "type": "LineString"}, "id": "28", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Greenfield Court", "oneway": null, "osm_id": 17964573, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557398, 41.9295578, -85.6556609, 41.9324981], "geometry": {"coordinates": [[-85.6557398, 41.9324981], [-85.6557276, 41.9321898], [-85.655692, 41.9319228], [-85.6556729, 41.9315833], [-85.6556741, 41.9309979], [-85.6556692, 41.9304605], [-85.6556609, 41.9295578]], "type": "LineString"}, "id": "29", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "Warner Drive", "oneway": null, "osm_id": 884351099, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6582748, 41.9483978, -85.6581653, 41.9489736], "geometry": {"coordinates": [[-85.6581756, 41.9489736], [-85.6581961, 41.9489159], [-85.6582029, 41.948842], [-85.6581738, 41.9485594], [-85.6581653, 41.9484996], [-85.658179, 41.9484449], [-85.6582252, 41.9483978], [-85.6582748, 41.9484182]], "type": "LineString"}, "id": "30", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907653855, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557721, 41.9423088, -85.6543518, 41.9423128], "geometry": {"coordinates": [[-85.6543518, 41.9423128], [-85.6557721, 41.9423088]], "type": "LineString"}, "id": "31", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771084, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651459, 41.9269659, -85.6500738, 41.9270207], "geometry": {"coordinates": [[-85.6500738, 41.92697], [-85.6501671, 41.9270097], [-85.6502567, 41.9270207], [-85.6512109, 41.9270103], [-85.651295, 41.9270065], [-85.6513722, 41.9269914], [-85.651459, 41.9269659]], "type": "LineString"}, "id": "32", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": "yes", "osm_id": 221671993, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6575519, 41.9424605, -85.6571522, 41.9428016], "geometry": {"coordinates": [[-85.6571522, 41.9428016], [-85.6572917, 41.9427936], [-85.6574017, 41.9427637], [-85.6574821, 41.9427218], [-85.6575385, 41.942664], [-85.6575519, 41.9425841], [-85.6575412, 41.9424605]], "type": "LineString"}, "id": "33", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771080, "osm_type": "ways_line", "smoothness": null, "surface": "concrete", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520639, 41.9422063, -85.6517795, 41.9425652], "geometry": {"coordinates": [[-85.6517817, 41.9425652], [-85.6518308, 41.9425169], [-85.6518647, 41.9424943], [-85.6519067, 41.9424761], [-85.6519572, 41.9424625], [-85.6520639, 41.9424594], [-85.6520608, 41.9422063], [-85.6519567, 41.9422076], [-85.6517795, 41.9422097]], "type": "LineString"}, "id": "34", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786584, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6568062, 41.9295599, -85.6559398, 41.9315802], "geometry": {"coordinates": [[-85.6559398, 41.9295599], [-85.6567899, 41.9295656], [-85.6567912, 41.9297418], [-85.6567926, 41.9299115], [-85.6567941, 41.9300949], [-85.6567956, 41.9302828], [-85.6567971, 41.9304639], [-85.6567985, 41.9306358], [-85.6568001, 41.9308283], [-85.6568015, 41.9310002], [-85.656803, 41.9311844], [-85.6568045, 41.9313701], [-85.6568062, 41.9315802]], "type": "LineString"}, "id": "35", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237740, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523712, 41.9337889, -85.6519952, 41.9337901], "geometry": {"coordinates": [[-85.6523712, 41.9337889], [-85.6519952, 41.9337901]], "type": "LineString"}, "id": "36", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237753, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506177, 41.9314147, -85.6506085, 41.9325595], "geometry": {"coordinates": [[-85.6506177, 41.9325595], [-85.6506126, 41.9324723], [-85.6506085, 41.9324035], [-85.6506091, 41.9321698], [-85.6506102, 41.9317849], [-85.6506112, 41.9314147]], "type": "LineString"}, "id": "37", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 767768417, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503797, 41.9331621, -85.6501293, 41.9332378], "geometry": {"coordinates": [[-85.6503733, 41.9331621], [-85.6503797, 41.9332313], [-85.6501293, 41.9332378]], "type": "LineString"}, "id": "38", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034073, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6481239, 41.9339031, -85.6481164, 41.9344163], "geometry": {"coordinates": [[-85.6481164, 41.9344163], [-85.6481239, 41.9339031]], "type": "LineString"}, "id": "39", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800869, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504881, 41.9438065, -85.6496469, 41.9438257], "geometry": {"coordinates": [[-85.6504881, 41.9438257], [-85.6496469, 41.9438065]], "type": "LineString"}, "id": "40", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942198, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510714, 41.9344638, -85.6503055, 41.9348439], "geometry": {"coordinates": [[-85.6510714, 41.9344638], [-85.650876, 41.9344656], [-85.6508491, 41.9344658], [-85.6506634, 41.9344674], [-85.6505609, 41.9344822], [-85.6504571, 41.9345198], [-85.6503975, 41.9345508], [-85.6503406, 41.9346101], [-85.6503217, 41.9346518], [-85.6503066, 41.934713], [-85.6503055, 41.9348439]], "type": "LineString"}, "id": "41", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034075, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504364, 41.9323456, -85.649583, 41.9323478], "geometry": {"coordinates": [[-85.6504364, 41.9323456], [-85.6500564, 41.9323466], [-85.649583, 41.9323478]], "type": "LineString"}, "id": "42", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116839, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.658931, 41.948961, -85.651611, 41.953646], "geometry": {"coordinates": [[-85.658931, 41.948961], [-85.658722, 41.949053], [-85.658635, 41.949102], [-85.656713, 41.94919], [-85.655629, 41.9495], [-85.654967, 41.950653], [-85.654458, 41.950987], [-85.654401, 41.951899], [-85.654222, 41.952272], [-85.653874, 41.952584], [-85.653121, 41.95305], [-85.652537, 41.953471], [-85.652072, 41.953646], [-85.651611, 41.953639]], "type": "LineString"}, "id": "43", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962750, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490718, 41.9321332, -85.6484226, 41.932606], "geometry": {"coordinates": [[-85.6490718, 41.932586], [-85.6490266, 41.932513], [-85.6487918, 41.9321332], [-85.6484226, 41.9321345], [-85.6484306, 41.9325001], [-85.6484329, 41.932606]], "type": "LineString"}, "id": "44", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 767768419, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503694, 41.933909, -85.6493756, 41.9351093], "geometry": {"coordinates": [[-85.6503694, 41.933909], [-85.6493756, 41.9339129], [-85.6493826, 41.934331], [-85.6493883, 41.9346687], [-85.649398, 41.9351093]], "type": "LineString"}, "id": "45", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034083, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6498418, 41.9450118, -85.6493899, 41.9450231], "geometry": {"coordinates": [[-85.6498418, 41.9450118], [-85.6493899, 41.9450231]], "type": "LineString"}, "id": "46", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942204, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489867, 41.9413337, -85.6485564, 41.9413359], "geometry": {"coordinates": [[-85.6489867, 41.9413359], [-85.6485564, 41.9413337]], "type": "LineString"}, "id": "47", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942148, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6586363, 41.9475582, -85.6579604, 41.9489772], "geometry": {"coordinates": [[-85.6579604, 41.9489772], [-85.6579736, 41.948548], [-85.6579789, 41.9483963], [-85.6580889, 41.9483045], [-85.6585585, 41.9482526], [-85.6586363, 41.9482107], [-85.6586363, 41.9477199], [-85.6586363, 41.9475582]], "type": "LineString"}, "id": "48", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942230, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6213466, 41.9431012, -85.6209945, 41.9438023], "geometry": {"coordinates": [[-85.6209945, 41.9431012], [-85.6209986, 41.9432338], [-85.6210494, 41.9434151], [-85.621109, 41.9435123], [-85.6212144, 41.9436458], [-85.6213466, 41.9438023]], "type": "LineString"}, "id": "49", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871089952, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638777, 41.9354971, -85.633205, 41.9452631], "geometry": {"coordinates": [[-85.635178, 41.9356158], [-85.63533, 41.9355886], [-85.6353819, 41.93556], [-85.6353665, 41.9355157], [-85.6353165, 41.9354971], [-85.6352454, 41.9355328], [-85.635178, 41.9356158], [-85.6350184, 41.9357846], [-85.634978, 41.9359448], [-85.6347723, 41.9361523], [-85.6347165, 41.9362667], [-85.6346992, 41.9364312], [-85.634603, 41.9366329], [-85.6345973, 41.9367488], [-85.6345127, 41.9369734], [-85.634478, 41.9371923], [-85.6344838, 41.9373768], [-85.6346242, 41.9375299], [-85.6347723, 41.9376357], [-85.6347607, 41.9377788], [-85.6346204, 41.9379533], [-85.6344184, 41.9380105], [-85.6341627, 41.9380406], [-85.6341205, 41.9380746], [-85.634005, 41.9381679], [-85.6339783, 41.9382273], [-85.63393, 41.9383353], [-85.6338588, 41.9384597], [-85.6336627, 41.9387759], [-85.6335127, 41.9389361], [-85.633403, 41.9391006], [-85.6332973, 41.9393967], [-85.633205, 41.9396742], [-85.6332203, 41.9397772], [-85.6333453, 41.939936], [-85.6333761, 41.9400018], [-85.63328, 41.9402249], [-85.6332357, 41.9403523], [-85.6332838, 41.9405831], [-85.6333643, 41.9408744], [-85.6334394, 41.9410519], [-85.6335815, 41.9411717], [-85.6337478, 41.9412734], [-85.6343174, 41.9415268], [-85.6343886, 41.9417397], [-85.6344407, 41.9418015], [-85.634518, 41.9418301], [-85.6344846, 41.942005], [-85.6345775, 41.9422218], [-85.6348174, 41.94267], [-85.6348607, 41.9427515], [-85.6348813, 41.9427697], [-85.6349035, 41.9427806], [-85.6349306, 41.9427859], [-85.6350017, 41.9427871], [-85.6350342, 41.9427873], [-85.6350609, 41.942791], [-85.6350889, 41.9428043], [-85.635109, 41.9428278], [-85.6351392, 41.9428838], [-85.6351764, 41.9429527], [-85.6352122, 41.9430357], [-85.6352192, 41.943052], [-85.6352297, 41.9430765], [-85.6352908, 41.9432248], [-85.6353139, 41.943253], [-85.6353464, 41.9432757], [-85.6353859, 41.9432898], [-85.6356282, 41.9433182], [-85.6363128, 41.9433373], [-85.6365467, 41.9433779], [-85.6365876, 41.9433968], [-85.6368692, 41.9435265], [-85.637071, 41.943676], [-85.6371184, 41.9437128], [-85.6371856, 41.9437495], [-85.6372608, 41.9437732], [-85.6373938, 41.9437973], [-85.6374505, 41.9438091], [-85.6374857, 41.9438208], [-85.6375269, 41.9438442], [-85.6376164, 41.9439286], [-85.6376372, 41.9439585], [-85.637757, 41.9441311], [-85.6378627, 41.9441622], [-85.6382631, 41.9442724], [-85.6383346, 41.9442912], [-85.6384204, 41.9443137], [-85.6384724, 41.9443605], [-85.6385726, 41.9444506], [-85.638702, 41.9445739], [-85.6387179, 41.9446516], [-85.6387088, 41.9447985], [-85.6387656, 41.9449877], [-85.638777, 41.9451448], [-85.6387088, 41.9452631]], "type": "LineString"}, "id": "50", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972937, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": "3"}, "type": "Feature"}, {"bbox": [-85.6210601, 41.9299894, -85.6201674, 41.9307285], "geometry": {"coordinates": [[-85.6210601, 41.9299894], [-85.6207639, 41.9299941], [-85.6205472, 41.9300373], [-85.6203155, 41.9301522], [-85.6201674, 41.9307285]], "type": "LineString"}, "id": "51", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945138, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6229586, 41.9325257, -85.6225739, 41.9326701], "geometry": {"coordinates": [[-85.6229586, 41.9326701], [-85.6225756, 41.9326647], [-85.6225739, 41.9325257]], "type": "LineString"}, "id": "52", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377969, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6235091, 41.9325177, -85.6235042, 41.9326665], "geometry": {"coordinates": [[-85.6235091, 41.9326665], [-85.6235042, 41.9325177]], "type": "LineString"}, "id": "53", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377973, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6292693, 41.9407147, -85.6272027, 41.9415088], "geometry": {"coordinates": [[-85.6272027, 41.9407147], [-85.6272215, 41.9408943], [-85.6272456, 41.9409721], [-85.6273073, 41.9409941], [-85.6290239, 41.941443], [-85.6292693, 41.9415088]], "type": "LineString"}, "id": "54", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550664, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626409, 41.942263, -85.6264, 41.943215], "geometry": {"coordinates": [[-85.6264, 41.942263], [-85.626409, 41.943215]], "type": "LineString"}, "id": "55", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Battle Street", "oneway": null, "osm_id": 17965158, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627585, 41.9432795, -85.6275576, 41.943671], "geometry": {"coordinates": [[-85.627585, 41.943671], [-85.6275576, 41.9432795]], "type": "LineString"}, "id": "56", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771570030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6285815, 41.9470656, -85.6283312, 41.9471692], "geometry": {"coordinates": [[-85.6283312, 41.9470656], [-85.6285815, 41.9471692]], "type": "LineString"}, "id": "57", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "residential", "layer": "1", "name": "5th Avenue", "oneway": null, "osm_id": 134150826, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6250569, 41.960973, -85.6249416, 41.9609999], "geometry": {"coordinates": [[-85.6249416, 41.960973], [-85.6250025, 41.9609909], [-85.6250569, 41.9609999]], "type": "LineString"}, "id": "58", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550696, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6244072, 41.9607332, -85.6243998, 41.9607546], "geometry": {"coordinates": [[-85.6243998, 41.9607546], [-85.6244072, 41.9607332]], "type": "LineString"}, "id": "59", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550704, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6251442, 41.9605648, -85.6242808, 41.9609203], "geometry": {"coordinates": [[-85.6242808, 41.9606501], [-85.6244356, 41.960705], [-85.6249689, 41.9608957], [-85.6250384, 41.9609203], [-85.6251442, 41.9609031], [-85.6250945, 41.9608344], [-85.6250193, 41.9608095], [-85.6244939, 41.9606183], [-85.6243433, 41.9605648]], "type": "LineString"}, "id": "60", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Arizona Boulevard", "oneway": "yes", "osm_id": 652550706, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6256282, 41.9582934, -85.6229004, 41.9623861], "geometry": {"coordinates": [[-85.6229004, 41.9623861], [-85.6232263, 41.9619456], [-85.6232974, 41.9618496], [-85.6233859, 41.9617239], [-85.6234181, 41.9616661], [-85.6234771, 41.9616222], [-85.6236166, 41.9614228], [-85.6243113, 41.9604235], [-85.6244534, 41.9602341], [-85.6245232, 41.9601383], [-85.6247431, 41.9597793], [-85.6254056, 41.9587082], [-85.6253949, 41.9586564], [-85.6254209, 41.9586115], [-85.6254519, 41.9585656], [-85.6256282, 41.9582934]], "type": "LineString"}, "id": "61", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550717, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624908, 41.947416, -85.615238, 41.947468], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.616136, 41.9474632], [-85.6169481, 41.9474588], [-85.6174371, 41.9474562], [-85.6177206, 41.9474481], [-85.6183715, 41.9474512], [-85.6200878, 41.9474419], [-85.6213182, 41.9474354], [-85.6227578, 41.9474276], [-85.624908, 41.947416]], "type": "LineString"}, "id": "62", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Avenue", "oneway": null, "osm_id": 17964788, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621024, 41.948742, -85.620087, 41.9490683], "geometry": {"coordinates": [[-85.621024, 41.9490617], [-85.6206611, 41.9490683], [-85.6206384, 41.949058], [-85.6206277, 41.9490467], [-85.6206304, 41.9487723], [-85.6206146, 41.9487538], [-85.6205913, 41.948742], [-85.620087, 41.9487445]], "type": "LineString"}, "id": "63", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871183978, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6172298, 41.9490406, -85.6172207, 41.9501948], "geometry": {"coordinates": [[-85.6172207, 41.9490406], [-85.6172298, 41.9501948]], "type": "LineString"}, "id": "64", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837938, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167287, 41.9479543, -85.6152476, 41.9479596], "geometry": {"coordinates": [[-85.6167287, 41.9479543], [-85.6152476, 41.9479596]], "type": "LineString"}, "id": "65", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837941, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6161066, 41.9481245, -85.6161038, 41.9483147], "geometry": {"coordinates": [[-85.6161066, 41.9483147], [-85.6161038, 41.9481652], [-85.6161052, 41.9481245]], "type": "LineString"}, "id": "66", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839089, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187082, 41.9550001, -85.6181431, 41.9588211], "geometry": {"coordinates": [[-85.6186943, 41.9550001], [-85.618683, 41.9550364], [-85.6186436, 41.9552022], [-85.6185127, 41.9553393], [-85.6182155, 41.9555703], [-85.6182033, 41.955596], [-85.6181431, 41.9557227], [-85.6181613, 41.9560879], [-85.6182372, 41.9563771], [-85.6184059, 41.9566188], [-85.6185905, 41.9568211], [-85.6186116, 41.9568717], [-85.6186688, 41.9570086], [-85.6186766, 41.9577468], [-85.6186924, 41.9581453], [-85.6186996, 41.9585513], [-85.6187082, 41.9588211]], "type": "LineString"}, "id": "67", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": null, "osm_id": 17965913, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6205024, 41.9547019, -85.6204812, 41.9551383], "geometry": {"coordinates": [[-85.6204812, 41.9551383], [-85.6205024, 41.9547019]], "type": "LineString"}, "id": "68", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907936472, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180008, 41.954688, -85.6171273, 41.9547595], "geometry": {"coordinates": [[-85.6171273, 41.954688], [-85.6173144, 41.9547258], [-85.6175519, 41.9547459], [-85.6178164, 41.9547595], [-85.6180008, 41.9547387]], "type": "LineString"}, "id": "69", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": "yes", "osm_id": 652550660, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167543, 41.949349, -85.6165163, 41.9493536], "geometry": {"coordinates": [[-85.6167543, 41.949349], [-85.6165433, 41.9493531], [-85.6165163, 41.9493536]], "type": "LineString"}, "id": "70", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839094, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.61745, 41.9489136, -85.6167997, 41.9501974], "geometry": {"coordinates": [[-85.6174135, 41.9489136], [-85.6172207, 41.9490406], [-85.6169831, 41.949197], [-85.6168401, 41.9492912], [-85.6167997, 41.9493485], [-85.6168031, 41.9500797], [-85.6169836, 41.9501612], [-85.6170533, 41.9501927], [-85.6172298, 41.9501948], [-85.61745, 41.9501974]], "type": "LineString"}, "id": "71", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 203837937, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.617375, 41.947558, -85.6164937, 41.9525125], "geometry": {"coordinates": [[-85.617375, 41.947559], [-85.6173169, 41.947558], [-85.6173362, 41.948883], [-85.6168094, 41.9492729], [-85.6167791, 41.9492952], [-85.6167543, 41.949349], [-85.6167553, 41.9494886], [-85.6167567, 41.9497018], [-85.6167585, 41.9499707], [-85.6167607, 41.9501009], [-85.6167648, 41.9509125], [-85.6168832, 41.9510412], [-85.6170045, 41.9511417], [-85.6170624, 41.9512483], [-85.6170474, 41.9513604], [-85.6164937, 41.9519586], [-85.616497, 41.9520725], [-85.6165654, 41.9521645], [-85.6166631, 41.9522178], [-85.6167327, 41.9522554], [-85.6170432, 41.9524057], [-85.6172077, 41.9524958], [-85.6172383, 41.9525125]], "type": "LineString"}, "id": "72", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839091, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6189421, 41.9524248, -85.6184853, 41.9526483], "geometry": {"coordinates": [[-85.6184853, 41.9524248], [-85.6186764, 41.9525193], [-85.6189421, 41.9526483]], "type": "LineString"}, "id": "73", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837935, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.618327, 41.945477, -85.618312, 41.945607], "geometry": {"coordinates": [[-85.618312, 41.945477], [-85.618327, 41.945607]], "type": "LineString"}, "id": "74", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 607644643, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6181613, 41.9560851, -85.6177201, 41.9560879], "geometry": {"coordinates": [[-85.6181613, 41.9560879], [-85.6177201, 41.9560851]], "type": "LineString"}, "id": "75", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sturgeon River Road", "oneway": null, "osm_id": 17965854, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627441, 41.9661399, -85.625905, 41.9665028], "geometry": {"coordinates": [[-85.625905, 41.9665028], [-85.6259099, 41.9664085], [-85.6259343, 41.9663141], [-85.625971, 41.966259], [-85.626021, 41.966219], [-85.626102, 41.966175], [-85.6262126, 41.9661508], [-85.6263493, 41.9661399], [-85.6269595, 41.9661399], [-85.6271597, 41.9661471], [-85.6272768, 41.9661689], [-85.627368, 41.966194], [-85.627441, 41.966232]], "type": "LineString"}, "id": "76", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bridgette Drive", "oneway": null, "osm_id": 17967080, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.613438, 41.95164, -85.613396, 41.953677], "geometry": {"coordinates": [[-85.613396, 41.95164], [-85.61341, 41.951919], [-85.613438, 41.953308], [-85.613438, 41.953677]], "type": "LineString"}, "id": "77", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Angell Avenue", "oneway": null, "osm_id": 17966056, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6132507, 41.9555825, -85.612304, 41.9555825], "geometry": {"coordinates": [[-85.6132507, 41.9555825], [-85.612304, 41.9555825]], "type": "LineString"}, "id": "78", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354178391, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6281847, 41.9622134, -85.6279614, 41.9632573], "geometry": {"coordinates": [[-85.6280573, 41.9622134], [-85.6280591, 41.9623532], [-85.6281698, 41.9623522], [-85.6281847, 41.9632554], [-85.6279762, 41.9632573], [-85.6279614, 41.9623541], [-85.6280591, 41.9623532]], "type": "LineString"}, "id": "79", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312582, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6132045, 41.944283, -85.6131716, 41.9454837], "geometry": {"coordinates": [[-85.6132045, 41.9454837], [-85.6131903, 41.9449667], [-85.6131752, 41.9444162], [-85.6131716, 41.944283]], "type": "LineString"}, "id": "80", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528697, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6169427, 41.9476286, -85.6154315, 41.9477992], "geometry": {"coordinates": [[-85.6169427, 41.9476286], [-85.6154315, 41.9476388], [-85.6154338, 41.9477992]], "type": "LineString"}, "id": "81", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837943, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.618795, 41.942918, -85.611074, 41.9449708], "geometry": {"coordinates": [[-85.611074, 41.943389], [-85.611332, 41.943267], [-85.611635, 41.943218], [-85.612762, 41.943311], [-85.613027, 41.943327], [-85.615377, 41.942996], [-85.615701, 41.943007], [-85.61604, 41.943067], [-85.61626, 41.943083], [-85.616507, 41.943048], [-85.616702, 41.94299], [-85.617078, 41.942918], [-85.617366, 41.942973], [-85.617601, 41.943033], [-85.617799, 41.943027], [-85.618264, 41.942961], [-85.618508, 41.942972], [-85.618707, 41.943076], [-85.618779, 41.943269], [-85.618795, 41.943511], [-85.6187721, 41.9436799], [-85.618711, 41.94413], [-85.618704, 41.944189], [-85.618597, 41.944337], [-85.618485, 41.944528], [-85.618442, 41.944716], [-85.6183982, 41.9449708]], "type": "LineString"}, "id": "82", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962821, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.61958, 41.942622, -85.6195383, 41.9427558], "geometry": {"coordinates": [[-85.61958, 41.9427558], [-85.6195383, 41.942622]], "type": "LineString"}, "id": "83", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203983952, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186803, 41.9396555, -85.617363, 41.9401557], "geometry": {"coordinates": [[-85.6186784, 41.9401557], [-85.6186803, 41.9399274], [-85.6186765, 41.9398045], [-85.6186632, 41.9397494], [-85.6186366, 41.9397013], [-85.6185809, 41.9396633], [-85.61854, 41.9396555], [-85.6179148, 41.9396565], [-85.617363, 41.9396617]], "type": "LineString"}, "id": "84", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871038146, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297548, 41.9561476, -85.6297488, 41.9581373], "geometry": {"coordinates": [[-85.6297548, 41.9581373], [-85.6297541, 41.9580741], [-85.6297492, 41.9579231], [-85.6297491, 41.9576616], [-85.6297488, 41.9576394], [-85.6297512, 41.957429], [-85.6297512, 41.9561476]], "type": "LineString"}, "id": "85", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine Street", "oneway": null, "osm_id": 341048353, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6294819, 41.9561464, -85.6294697, 41.9563083], "geometry": {"coordinates": [[-85.6294819, 41.9563083], [-85.6294697, 41.9561464]], "type": "LineString"}, "id": "86", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "no", "osm_id": 341699256, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6175789, 41.9481204, -85.617391, 41.9481282], "geometry": {"coordinates": [[-85.617391, 41.9481204], [-85.6175789, 41.9481282]], "type": "LineString"}, "id": "87", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652967176, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6266528, 41.959905, -85.6250529, 41.9607536], "geometry": {"coordinates": [[-85.6250529, 41.9607536], [-85.6250677, 41.9607297], [-85.625136, 41.960619], [-85.6254217, 41.9601563], [-85.625478, 41.9600944], [-85.6255665, 41.9600246], [-85.625639, 41.9599788], [-85.6257677, 41.9599329], [-85.6259072, 41.9599109], [-85.6266528, 41.959905]], "type": "LineString"}, "id": "88", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550694, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6133889, 41.9556159, -85.6133381, 41.9561999], "geometry": {"coordinates": [[-85.6133841, 41.9561999], [-85.6133889, 41.9557579], [-85.6133435, 41.9557373], [-85.6133381, 41.9556159]], "type": "LineString"}, "id": "89", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179341, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6122609, 41.9556079, -85.6108661, 41.956374], "geometry": {"coordinates": [[-85.6108661, 41.9556079], [-85.610876, 41.956374], [-85.6117356, 41.9563671], [-85.6117449, 41.9560143], [-85.6122609, 41.9560122]], "type": "LineString"}, "id": "90", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179348, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6116226, 41.9551819, -85.6108661, 41.9556079], "geometry": {"coordinates": [[-85.6116226, 41.9551819], [-85.6115984, 41.955594], [-85.6108661, 41.9556079]], "type": "LineString"}, "id": "91", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179346, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297512, 41.955878, -85.627267, 41.95615], "geometry": {"coordinates": [[-85.627267, 41.955878], [-85.627358, 41.9559081], [-85.6275063, 41.9559571], [-85.627751, 41.956038], [-85.6278017, 41.9560522], [-85.627908, 41.956082], [-85.6281089, 41.9561288], [-85.6282, 41.95615], [-85.6294697, 41.9561464], [-85.6297512, 41.9561476]], "type": "LineString"}, "id": "92", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Tulip Lane", "oneway": null, "osm_id": 17964513, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626336, 41.957291, -85.624495, 41.9586443], "geometry": {"coordinates": [[-85.6255197, 41.9586443], [-85.6254209, 41.9586115], [-85.62529, 41.958568], [-85.624962, 41.958453], [-85.624832, 41.958399], [-85.624707, 41.958325], [-85.624636, 41.958251], [-85.624578, 41.95818], [-85.624533, 41.958099], [-85.624507, 41.957985], [-85.624495, 41.957807], [-85.624514, 41.957663], [-85.624577, 41.957593], [-85.6246192, 41.9575723], [-85.624685, 41.95754], [-85.624802, 41.957523], [-85.624996, 41.957524], [-85.625409, 41.957515], [-85.625634, 41.957496], [-85.625832, 41.957453], [-85.626044, 41.957394], [-85.626336, 41.957291]], "type": "LineString"}, "id": "93", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Azaleamum Drive", "oneway": null, "osm_id": 17967809, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6269786, 41.9599637, -85.6250384, 41.9609203], "geometry": {"coordinates": [[-85.6269786, 41.9599637], [-85.6259162, 41.9599711], [-85.6258015, 41.9599861], [-85.6257101, 41.960013], [-85.6256315, 41.9600541], [-85.6255614, 41.9601078], [-85.6255104, 41.9601615], [-85.625453, 41.9602373], [-85.6251449, 41.9607414], [-85.6250945, 41.9608344], [-85.6250384, 41.9609203]], "type": "LineString"}, "id": "94", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Oklahoma Drive", "oneway": null, "osm_id": 203968017, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6331805, 41.96479, -85.633167, 41.9655042], "geometry": {"coordinates": [[-85.633167, 41.96479], [-85.6331805, 41.9655042]], "type": "LineString"}, "id": "95", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Garfield Court", "oneway": "no", "osm_id": 203968023, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6278678, 41.9558737, -85.6278017, 41.9560522], "geometry": {"coordinates": [[-85.6278017, 41.9560522], [-85.6278206, 41.9560013], [-85.6278678, 41.9558737]], "type": "LineString"}, "id": "96", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699282, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6241502, 41.9491686, -85.6239149, 41.9491713], "geometry": {"coordinates": [[-85.6241502, 41.9491713], [-85.6239149, 41.9491686]], "type": "LineString"}, "id": "97", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964879, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6169481, 41.9474588, -85.615238, 41.9481265], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.6152444, 41.947799], [-85.6152476, 41.9479596], [-85.6152495, 41.9480592], [-85.6153187, 41.9481265], [-85.6156701, 41.9481256], [-85.6161052, 41.9481245], [-85.6163767, 41.9481239], [-85.6164437, 41.9481237], [-85.6167287, 41.9479543], [-85.6168553, 41.947879], [-85.6169163, 41.9478007], [-85.6169385, 41.9477722], [-85.6169427, 41.9476286], [-85.6169481, 41.9474588]], "type": "LineString"}, "id": "98", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 203837940, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333496, 41.9571608, -85.6264337, 41.9574481], "geometry": {"coordinates": [[-85.6264337, 41.9571608], [-85.6265551, 41.9572071], [-85.6266935, 41.9572599], [-85.6269223, 41.9573376], [-85.6271577, 41.9574119], [-85.6272777, 41.957435], [-85.6273887, 41.9574433], [-85.6275317, 41.9574481], [-85.6276806, 41.9574468], [-85.6282582, 41.9574418], [-85.6283101, 41.9574414], [-85.6287871, 41.9574373], [-85.6288456, 41.957435], [-85.6297512, 41.957429], [-85.6308074, 41.9574199], [-85.6309162, 41.957419], [-85.6321178, 41.9574105], [-85.6333496, 41.9573981]], "type": "LineString"}, "id": "99", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Flower Street", "oneway": null, "osm_id": 17965351, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272955, 41.9410331, -85.6272074, 41.9411396], "geometry": {"coordinates": [[-85.6272955, 41.9410331], [-85.6272074, 41.9411396]], "type": "LineString"}, "id": "100", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 378599360, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6335028, 41.9647886, -85.6304211, 41.9649323], "geometry": {"coordinates": [[-85.6335028, 41.9647886], [-85.633167, 41.96479], [-85.6320427, 41.9647947], [-85.6308178, 41.9647993], [-85.6307011, 41.9648138], [-85.6306195, 41.964834], [-85.6305222, 41.9648774], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "101", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "no", "osm_id": 203968018, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350256, 41.9625681, -85.6348134, 41.9625913], "geometry": {"coordinates": [[-85.6348134, 41.9625913], [-85.6349935, 41.962588], [-85.6350122, 41.962582], [-85.6350256, 41.9625681]], "type": "LineString"}, "id": "102", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056604109, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6275317, 41.9574481, -85.6275275, 41.95795], "geometry": {"coordinates": [[-85.6275317, 41.9574481], [-85.6275275, 41.95795]], "type": "LineString"}, "id": "103", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 226406322, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6299544, 41.9576614, -85.6297491, 41.9576616], "geometry": {"coordinates": [[-85.6299544, 41.9576614], [-85.6297491, 41.9576616]], "type": "LineString"}, "id": "104", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341313252, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271905, 41.9565339, -85.6268359, 41.9566474], "geometry": {"coordinates": [[-85.6271905, 41.9566474], [-85.6269458, 41.9565691], [-85.6268359, 41.9565339]], "type": "LineString"}, "id": "105", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699285, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634729, 41.954667, -85.6244542, 41.9547066], "geometry": {"coordinates": [[-85.634729, 41.954667], [-85.633311, 41.954679], [-85.6320952, 41.954685], [-85.630883, 41.954692], [-85.6302775, 41.954691], [-85.62965, 41.95469], [-85.6294656, 41.9546903], [-85.629067, 41.954691], [-85.627936, 41.954693], [-85.626832, 41.954677], [-85.6244542, 41.9547066]], "type": "LineString"}, "id": "106", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 17966553, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191318, 41.9520425, -85.6182348, 41.9529815], "geometry": {"coordinates": [[-85.6191318, 41.9520425], [-85.6186764, 41.9525193], [-85.6182348, 41.9529815]], "type": "LineString"}, "id": "107", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837934, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186766, 41.9577468, -85.6159142, 41.9577578], "geometry": {"coordinates": [[-85.6186766, 41.9577468], [-85.6159142, 41.9577578]], "type": "LineString"}, "id": "108", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine River Road", "oneway": null, "osm_id": 17965838, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187137, 41.9482898, -85.6180593, 41.9498085], "geometry": {"coordinates": [[-85.6181154, 41.9482898], [-85.6180593, 41.9495102], [-85.6182838, 41.949731], [-85.6187137, 41.9498085]], "type": "LineString"}, "id": "109", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528701, "osm_type": "ways_line", "smoothness": null, "surface": "dirt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6240991, 41.954708, -85.6238228, 41.9548826], "geometry": {"coordinates": [[-85.6240991, 41.954708], [-85.6239944, 41.9548095], [-85.6238228, 41.9548826]], "type": "LineString"}, "id": "110", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 758296776, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6183715, 41.9474512, -85.6183662, 41.9475582], "geometry": {"coordinates": [[-85.6183662, 41.9475582], [-85.6183715, 41.9474512]], "type": "LineString"}, "id": "111", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652967174, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635767, 41.9429212, -85.6357592, 41.9431751], "geometry": {"coordinates": [[-85.6357592, 41.9429212], [-85.635767, 41.9431751]], "type": "LineString"}, "id": "112", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998362, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6352778, 41.9484197, -85.6346501, 41.9484289], "geometry": {"coordinates": [[-85.6352778, 41.9484197], [-85.6346501, 41.9484289]], "type": "LineString"}, "id": "113", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 217907767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167585, 41.9499707, -85.6165924, 41.9499707], "geometry": {"coordinates": [[-85.6167585, 41.9499707], [-85.6165924, 41.9499707]], "type": "LineString"}, "id": "114", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839096, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355997, 41.944797, -85.635094, 41.9451026], "geometry": {"coordinates": [[-85.635094, 41.9451026], [-85.6352537, 41.9450015], [-85.6353716, 41.9449322], [-85.6354612, 41.9448791], [-85.6355997, 41.944797]], "type": "LineString"}, "id": "115", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203049595, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6464906, 41.9373978, -85.6458952, 41.9379664], "geometry": {"coordinates": [[-85.6458952, 41.9379365], [-85.6461265, 41.9379524], [-85.6463297, 41.9379664], [-85.6464531, 41.9379285], [-85.6464906, 41.9377769], [-85.6464772, 41.9375295], [-85.6464397, 41.9374566], [-85.6462572, 41.9374104], [-85.6461754, 41.9374038], [-85.6459917, 41.9373978]], "type": "LineString"}, "id": "116", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 330877816, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6542126, 41.9306296, -85.6542075, 41.9315739], "geometry": {"coordinates": [[-85.6542126, 41.9306296], [-85.6542075, 41.9315739]], "type": "LineString"}, "id": "117", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612682, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186762, 41.9362357, -85.6179654, 41.938187], "geometry": {"coordinates": [[-85.6186762, 41.9362357], [-85.6186561, 41.936695], [-85.6186404, 41.9371542], [-85.6186325, 41.9375275], [-85.618622, 41.9377034], [-85.6179654, 41.938187]], "type": "LineString"}, "id": "118", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "13th Street", "oneway": null, "osm_id": 17966447, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271414, 41.9402001, -85.6271315, 41.9407274], "geometry": {"coordinates": [[-85.6271315, 41.9402001], [-85.6271414, 41.9407274]], "type": "LineString"}, "id": "119", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "residential", "layer": "1", "name": "6th Street", "oneway": null, "osm_id": 134150842, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263426, 41.9377328, -85.6257465, 41.9377376], "geometry": {"coordinates": [[-85.6257465, 41.9377376], [-85.6263426, 41.9377328]], "type": "LineString"}, "id": "120", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907704548, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9361846, -85.617371, 41.936243], "geometry": {"coordinates": [[-85.617371, 41.936243], [-85.6174693, 41.9362424], [-85.6175894, 41.9362418], [-85.6186762, 41.9362357], [-85.6191081, 41.9362259], [-85.619587, 41.9362271], [-85.6200011, 41.9362282], [-85.621122, 41.9362218], [-85.6222867, 41.9362155], [-85.6235312, 41.9362084], [-85.6248039, 41.9362012], [-85.6257389, 41.936196], [-85.6264109, 41.9361922], [-85.627089, 41.9361884], [-85.6277618, 41.9361846]], "type": "LineString"}, "id": "121", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Madison Street", "oneway": null, "osm_id": 17965427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159968, 41.9352693, -85.6153556, 41.9352693], "geometry": {"coordinates": [[-85.6159968, 41.9352693], [-85.6153556, 41.9352693]], "type": "LineString"}, "id": "122", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "River Bend Drive", "oneway": null, "osm_id": 17967324, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6405128, 41.9282016, -85.639404, 41.9282066], "geometry": {"coordinates": [[-85.6405128, 41.9282016], [-85.639404, 41.9282066]], "type": "LineString"}, "id": "123", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143997, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6423202, 41.9361655, -85.642213, 41.940043], "geometry": {"coordinates": [[-85.6423202, 41.9361655], [-85.6423154, 41.9363503], [-85.6423094, 41.936583], [-85.642299, 41.936988], [-85.6422621, 41.9381489], [-85.6422464, 41.9389558], [-85.642244, 41.939081], [-85.6422153, 41.9399715], [-85.642213, 41.940043]], "type": "LineString"}, "id": "124", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 766158515, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458952, 41.9378674, -85.644244, 41.938142], "geometry": {"coordinates": [[-85.644244, 41.938142], [-85.6444249, 41.9379193], [-85.6446475, 41.9379036], [-85.6451598, 41.9378674], [-85.6457767, 41.9378914], [-85.6458952, 41.9379365]], "type": "LineString"}, "id": "125", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 340638700, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478782, 41.9398349, -85.6469804, 41.9408501], "geometry": {"coordinates": [[-85.6469804, 41.9398569], [-85.6470252, 41.9407193], [-85.6470776, 41.9408028], [-85.6472048, 41.9408501], [-85.6477248, 41.9408446], [-85.6478333, 41.9407973], [-85.6478782, 41.940711], [-85.6478296, 41.9398349]], "type": "LineString"}, "id": "126", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Millard Court", "oneway": null, "osm_id": 203968034, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6524176, 41.9344603, -85.6524108, 41.9347009], "geometry": {"coordinates": [[-85.6524108, 41.9347009], [-85.6524176, 41.9344603]], "type": "LineString"}, "id": "127", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612672, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517841, 41.9325437, -85.6517487, 41.9422097], "geometry": {"coordinates": [[-85.6517795, 41.9422097], [-85.6517774, 41.9420151], [-85.6517722, 41.9417643], [-85.6517752, 41.9415928], [-85.6517797, 41.9413329], [-85.651778, 41.9411764], [-85.6517762, 41.9409304], [-85.6517811, 41.9406301], [-85.651777, 41.9404534], [-85.6517841, 41.9397701], [-85.6517721, 41.9392259], [-85.6517717, 41.9389745], [-85.6517686, 41.9384994], [-85.6517676, 41.9380523], [-85.6517637, 41.9378819], [-85.6517642, 41.9375686], [-85.651765, 41.9369457], [-85.6517574, 41.9359236], [-85.6517626, 41.9352599], [-85.6517615, 41.9346114], [-85.6517612, 41.9344482], [-85.6517609, 41.9342811], [-85.6517596, 41.9334814], [-85.6517487, 41.9325437]], "type": "LineString"}, "id": "128", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 945352906, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6438794, 41.9426991, -85.6438688, 41.9429932], "geometry": {"coordinates": [[-85.6438688, 41.9426991], [-85.6438794, 41.9429932]], "type": "LineString"}, "id": "129", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056572471, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517797, 41.9408326, -85.6514188, 41.9413329], "geometry": {"coordinates": [[-85.6517797, 41.9413329], [-85.6517306, 41.9411122], [-85.6517228, 41.9410381], [-85.6517174, 41.9409381], [-85.651711, 41.9409025], [-85.6517016, 41.9408751], [-85.6516842, 41.9408596], [-85.6516543, 41.9408415], [-85.6516166, 41.9408337], [-85.6515834, 41.9408326], [-85.6515549, 41.9408348], [-85.6515198, 41.9408416], [-85.6514817, 41.9408516], [-85.6514534, 41.9408674], [-85.6514188, 41.9408949]], "type": "LineString"}, "id": "130", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892836, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638243, 41.9426234, -85.6370277, 41.943841], "geometry": {"coordinates": [[-85.638243, 41.943674], [-85.638228, 41.943747], [-85.638163, 41.943797], [-85.638089, 41.943832], [-85.637969, 41.943841], [-85.637841, 41.943833], [-85.6376655, 41.9438017], [-85.637342, 41.943734], [-85.637218, 41.943703], [-85.637151, 41.943663], [-85.637118, 41.943615], [-85.6370905, 41.9435511], [-85.6370755, 41.9434705], [-85.6370724, 41.943407], [-85.6370544, 41.9431149], [-85.6370518, 41.9430567], [-85.6370323, 41.9427058], [-85.6370277, 41.9426234]], "type": "LineString"}, "id": "131", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Constantine Street", "oneway": "no", "osm_id": 17967326, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567941, 41.9300926, -85.6559428, 41.9300949], "geometry": {"coordinates": [[-85.6567941, 41.9300949], [-85.6559428, 41.9300926]], "type": "LineString"}, "id": "132", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237749, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433169, 41.9412872, -85.643301, 41.9417268], "geometry": {"coordinates": [[-85.6433169, 41.9417268], [-85.643301, 41.9412872]], "type": "LineString"}, "id": "133", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643104, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339673, 41.9433877, -85.6336351, 41.9435757], "geometry": {"coordinates": [[-85.6339673, 41.9433877], [-85.6338922, 41.9434328], [-85.6337366, 41.9435193], [-85.6336351, 41.9435757]], "type": "LineString"}, "id": "134", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150811, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558097, 41.9411616, -85.6543424, 41.9411617], "geometry": {"coordinates": [[-85.6558097, 41.9411616], [-85.6543424, 41.9411617]], "type": "LineString"}, "id": "135", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771089, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443608, 41.940795, -85.644272, 41.9425645], "geometry": {"coordinates": [[-85.6443608, 41.9425645], [-85.6443561, 41.9424865], [-85.6443453, 41.9423074], [-85.6443102, 41.9417237], [-85.6442868, 41.9413334], [-85.644283, 41.941271], [-85.644272, 41.940795]], "type": "LineString"}, "id": "136", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Erie Street", "oneway": null, "osm_id": 17965125, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6249267, 41.9505432, -85.6243551, 41.9509868], "geometry": {"coordinates": [[-85.6249267, 41.9505432], [-85.6243676, 41.9505576], [-85.6243551, 41.9506233], [-85.6243726, 41.9509868]], "type": "LineString"}, "id": "137", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946763075, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6275063, 41.9559571, -85.6274042, 41.9561105], "geometry": {"coordinates": [[-85.6274042, 41.9561105], [-85.6275063, 41.9559571]], "type": "LineString"}, "id": "138", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699281, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620103, 41.951, -85.6180394, 41.9531194], "geometry": {"coordinates": [[-85.620103, 41.951], [-85.6197538, 41.9510741], [-85.6192256, 41.9515959], [-85.6189367, 41.9519432], [-85.6184853, 41.9524248], [-85.6180394, 41.9528855], [-85.6182348, 41.9529815], [-85.6185158, 41.9531194]], "type": "LineString"}, "id": "139", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17964049, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450946, 41.9485732, -85.6444506, 41.949233], "geometry": {"coordinates": [[-85.6450946, 41.949233], [-85.6450935, 41.9491544], [-85.6450922, 41.9490611], [-85.6450908, 41.9488957], [-85.6450873, 41.9487232], [-85.6450852, 41.9485747], [-85.6444506, 41.9485732]], "type": "LineString"}, "id": "140", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 218004773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632278, 41.9471692, -85.6285815, 41.948613], "geometry": {"coordinates": [[-85.6285815, 41.9471692], [-85.6293702, 41.9474668], [-85.631422, 41.948294], [-85.6321713, 41.9485733], [-85.632278, 41.948613]], "type": "LineString"}, "id": "141", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Avenue", "oneway": null, "osm_id": 134150772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634632, 41.9469911, -85.6344017, 41.9473218], "geometry": {"coordinates": [[-85.634632, 41.9469911], [-85.6344017, 41.9469942], [-85.6344097, 41.9473218]], "type": "LineString"}, "id": "142", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946882962, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6362782, 41.9566253, -85.6356687, 41.9566334], "geometry": {"coordinates": [[-85.6362782, 41.9566334], [-85.6356687, 41.9566253]], "type": "LineString"}, "id": "143", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946745378, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6353649, 41.9553478, -85.6347273, 41.9554046], "geometry": {"coordinates": [[-85.6347273, 41.9553617], [-85.6349396, 41.9553511], [-85.6350681, 41.9553478], [-85.635181, 41.955361], [-85.6353649, 41.9554046]], "type": "LineString"}, "id": "144", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871154571, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6440766, 41.9543462, -85.6436023, 41.9544262], "geometry": {"coordinates": [[-85.6436023, 41.9544262], [-85.6440766, 41.9543462]], "type": "LineString"}, "id": "145", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "West Hoffman Street", "oneway": null, "osm_id": 134151784, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.648503, 41.9537114, -85.6484254, 41.9540245], "geometry": {"coordinates": [[-85.648503, 41.9540245], [-85.6484295, 41.9539683], [-85.6484254, 41.9537114]], "type": "LineString"}, "id": "146", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871047089, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272043, 41.9241622, -85.6253496, 41.9250793], "geometry": {"coordinates": [[-85.6253496, 41.9250793], [-85.6258095, 41.9250343], [-85.6260456, 41.9250123], [-85.6262172, 41.9249624], [-85.626346, 41.9248926], [-85.6265659, 41.9247688], [-85.6268878, 41.9246411], [-85.6269177, 41.9246236], [-85.6271667, 41.9244775], [-85.6272043, 41.9243657], [-85.627148, 41.924248], [-85.6270112, 41.9241622], [-85.6268744, 41.9241662], [-85.6267805, 41.92426], [-85.6267322, 41.9243637], [-85.6268261, 41.9244535], [-85.6269177, 41.9246236]], "type": "LineString"}, "id": "147", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755147125, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6589146, 41.9256758, -85.6588917, 41.9257217], "geometry": {"coordinates": [[-85.6588917, 41.9256758], [-85.6589146, 41.9257217]], "type": "LineString"}, "id": "148", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 895396430, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614204, 41.953677, -85.611615, 41.953704], "geometry": {"coordinates": [[-85.611615, 41.953704], [-85.61179, 41.953695], [-85.612232, 41.953685], [-85.613438, 41.953677], [-85.614204, 41.953696]], "type": "LineString"}, "id": "149", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Clausen Avenue", "oneway": null, "osm_id": 17965302, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523494, 41.9404103, -85.6519947, 41.9404184], "geometry": {"coordinates": [[-85.6519947, 41.9404103], [-85.6523494, 41.9404184]], "type": "LineString"}, "id": "150", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942245, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6264499, 41.958631, -85.6262616, 41.9590055], "geometry": {"coordinates": [[-85.6264499, 41.958631], [-85.6262616, 41.9590055]], "type": "LineString"}, "id": "151", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550715, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6340946, 41.9432036, -85.6339256, 41.9432984], "geometry": {"coordinates": [[-85.6339256, 41.9432984], [-85.6340946, 41.9432036]], "type": "LineString"}, "id": "152", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550693, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350643, 41.9401122, -85.6350634, 41.9402383], "geometry": {"coordinates": [[-85.6350643, 41.9402383], [-85.6350634, 41.9401122]], "type": "LineString"}, "id": "153", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947116511, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630997, 41.928387, -85.630972, 41.929206], "geometry": {"coordinates": [[-85.630997, 41.929206], [-85.630972, 41.928565], [-85.630973, 41.928387]], "type": "LineString"}, "id": "154", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963798, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504725, 41.9442815, -85.6503814, 41.9442885], "geometry": {"coordinates": [[-85.6503814, 41.9442885], [-85.6504725, 41.9442815]], "type": "LineString"}, "id": "155", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942190, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6589862, 41.9257217, -85.6589146, 41.9262204], "geometry": {"coordinates": [[-85.6589146, 41.9257217], [-85.6589681, 41.9258133], [-85.6589752, 41.9258268], [-85.6589801, 41.9258398], [-85.6589839, 41.9258675], [-85.6589862, 41.9258898], [-85.6589767, 41.9262204]], "type": "LineString"}, "id": "156", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 897575550, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6495916, 41.9491631, -85.6461249, 41.9547911], "geometry": {"coordinates": [[-85.6495916, 41.9491631], [-85.6491216, 41.9499121], [-85.6488505, 41.950344], [-85.6482388, 41.9513181], [-85.6478104, 41.9520374], [-85.6473473, 41.9528632], [-85.6465551, 41.9540853], [-85.6463637, 41.9544069], [-85.6461249, 41.9547911]], "type": "LineString"}, "id": "157", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 1024183108, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642213, 41.940043, -85.637255, 41.940104], "geometry": {"coordinates": [[-85.637255, 41.940104], [-85.6381941, 41.9400924], [-85.6386828, 41.9400864], [-85.6393311, 41.9400784], [-85.6393662, 41.940078], [-85.6399182, 41.9400712], [-85.6406114, 41.9400627], [-85.6410939, 41.9400568], [-85.642213, 41.940043]], "type": "LineString"}, "id": "158", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 379694427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453569, 41.9426981, -85.6450282, 41.9429786], "geometry": {"coordinates": [[-85.6450282, 41.9427207], [-85.6451409, 41.9427241], [-85.6452424, 41.9426981], [-85.6453195, 41.9427033], [-85.6453569, 41.942778], [-85.645351, 41.9429195], [-85.6453277, 41.9429673], [-85.6452156, 41.9429786], [-85.645121, 41.9429638], [-85.6450288, 41.9429056]], "type": "LineString"}, "id": "159", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 486785504, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503067, 41.9423584, -85.649336, 41.9423703], "geometry": {"coordinates": [[-85.649336, 41.9423703], [-85.6503067, 41.9423584]], "type": "LineString"}, "id": "160", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 498942177, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489736, 41.9426971, -85.6489614, 41.9433211], "geometry": {"coordinates": [[-85.6489614, 41.9426971], [-85.6489736, 41.9433211]], "type": "LineString"}, "id": "161", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942217, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497573, 41.9306035, -85.6497496, 41.9314225], "geometry": {"coordinates": [[-85.6497573, 41.9314225], [-85.6497496, 41.9306035]], "type": "LineString"}, "id": "162", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612680, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512363, 41.9323981, -85.6425208, 41.9325885], "geometry": {"coordinates": [[-85.6512363, 41.9324058], [-85.6508263, 41.9324659], [-85.6506741, 41.9324738], [-85.6506126, 41.9324723], [-85.6505575, 41.932473], [-85.6505029, 41.9324673], [-85.6494536, 41.9324915], [-85.6493423, 41.9324936], [-85.6492668, 41.9324986], [-85.6490953, 41.9325115], [-85.6490266, 41.932513], [-85.6489247, 41.9325179], [-85.6488921, 41.9325036], [-85.6485222, 41.9325036], [-85.6484306, 41.9325001], [-85.6483785, 41.9325015], [-85.6476752, 41.9325108], [-85.6476005, 41.9325159], [-85.6475276, 41.9325157], [-85.6462732, 41.9325393], [-85.6462349, 41.9325357], [-85.6461703, 41.9325357], [-85.6461123, 41.9325371], [-85.6459839, 41.9325407], [-85.6459398, 41.9325414], [-85.6458842, 41.9325414], [-85.6445388, 41.9325628], [-85.6444658, 41.9325635], [-85.6443223, 41.9325671], [-85.6442657, 41.9325678], [-85.6441651, 41.9325656], [-85.6441249, 41.9325585], [-85.6425208, 41.9325885], [-85.6425237, 41.9323981]], "type": "LineString"}, "id": "163", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1193144006, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507243, 41.9414918, -85.650396, 41.9414988], "geometry": {"coordinates": [[-85.650396, 41.9414988], [-85.6507243, 41.9414918]], "type": "LineString"}, "id": "164", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942145, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511293, 41.9423566, -85.6510144, 41.9423597], "geometry": {"coordinates": [[-85.6510144, 41.9423566], [-85.6510714, 41.9423578], [-85.6511293, 41.9423597]], "type": "LineString"}, "id": "165", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550676, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497553, 41.9277635, -85.6491362, 41.9279542], "geometry": {"coordinates": [[-85.6497553, 41.9277635], [-85.6494994, 41.9279114], [-85.6493569, 41.9279456], [-85.6491362, 41.9279542]], "type": "LineString"}, "id": "166", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870704308, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6549102, 41.9321903, -85.6549072, 41.9325049], "geometry": {"coordinates": [[-85.6549072, 41.9321903], [-85.6549102, 41.9325049]], "type": "LineString"}, "id": "167", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056615093, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523757, 41.9334857, -85.6523693, 41.9344603], "geometry": {"coordinates": [[-85.6523757, 41.9344603], [-85.6523749, 41.9343329], [-85.6523746, 41.9342943], [-85.6523735, 41.9341224], [-85.6523723, 41.9339563], [-85.6523712, 41.9337889], [-85.65237, 41.9336106], [-85.6523693, 41.9334857]], "type": "LineString"}, "id": "168", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843139, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6595323, 41.9245483, -85.6584684, 41.9255834], "geometry": {"coordinates": [[-85.6593087, 41.9255834], [-85.6592178, 41.9254244], [-85.6591197, 41.9252373], [-85.6590281, 41.9250624], [-85.6588066, 41.9246396], [-85.6591487, 41.9245483], [-85.6591942, 41.9245483], [-85.6592574, 41.9245704], [-85.6593168, 41.9246146], [-85.6595264, 41.9250442], [-85.6595323, 41.9250824], [-85.6595205, 41.9251133], [-85.6591197, 41.9252373], [-85.6584723, 41.9254385], [-85.6584684, 41.9252414], [-85.6590281, 41.9250624]], "type": "LineString"}, "id": "169", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758298043, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6422464, 41.9381566, -85.6418226, 41.9389558], "geometry": {"coordinates": [[-85.6418226, 41.9381566], [-85.6418243, 41.9383384], [-85.641853, 41.9383966], [-85.6418434, 41.9389486], [-85.6419807, 41.938951], [-85.6422464, 41.9389558]], "type": "LineString"}, "id": "170", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 221397310, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342037, 41.9418842, -85.6339701, 41.9424487], "geometry": {"coordinates": [[-85.6342037, 41.9418842], [-85.6341325, 41.9418919], [-85.6341323, 41.9419538], [-85.6341314, 41.9422028], [-85.6341163, 41.9422334], [-85.6340472, 41.9423271], [-85.6339701, 41.9424487]], "type": "LineString"}, "id": "171", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974060, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348223, 41.9631983, -85.6342467, 41.9635134], "geometry": {"coordinates": [[-85.6343133, 41.9635134], [-85.6343136, 41.9634544], [-85.6342696, 41.9633908], [-85.6342492, 41.9633162], [-85.6342467, 41.9632665], [-85.6343074, 41.9632264], [-85.6344109, 41.9632089], [-85.6348223, 41.9631983]], "type": "LineString"}, "id": "172", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312578, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346375, 41.9622888, -85.6346338, 41.962436], "geometry": {"coordinates": [[-85.6346375, 41.962436], [-85.6346338, 41.9622888]], "type": "LineString"}, "id": "173", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768418340, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6246192, 41.9571962, -85.6241202, 41.9575723], "geometry": {"coordinates": [[-85.6246192, 41.9575723], [-85.6243995, 41.9573309], [-85.6242463, 41.9572007], [-85.6241202, 41.9571962]], "type": "LineString"}, "id": "174", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768406756, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186996, 41.9585513, -85.6159249, 41.9585901], "geometry": {"coordinates": [[-85.6186996, 41.9585513], [-85.6177383, 41.9585647], [-85.6170514, 41.9585743], [-85.6159249, 41.9585901]], "type": "LineString"}, "id": "175", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Raisin River Road", "oneway": null, "osm_id": 17965476, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6204461, 41.9401485, -85.6204416, 41.9408882], "geometry": {"coordinates": [[-85.6204461, 41.9401485], [-85.6204416, 41.9408882]], "type": "LineString"}, "id": "176", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Whipple Street", "oneway": null, "osm_id": 17964961, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629676, 41.9524346, -85.6295992, 41.95469], "geometry": {"coordinates": [[-85.6295992, 41.9524346], [-85.6296517, 41.952563], [-85.629676, 41.9537314], [-85.6296522, 41.9546072], [-85.62965, 41.95469]], "type": "LineString"}, "id": "177", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine Street", "oneway": null, "osm_id": 17964654, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296616, 41.9621913, -85.6294344, 41.9632352], "geometry": {"coordinates": [[-85.6295207, 41.9621913], [-85.6295271, 41.9623311], [-85.6296439, 41.9623298], [-85.6296616, 41.9632329], [-85.6294521, 41.9632352], [-85.6294344, 41.9623321], [-85.6295271, 41.9623311]], "type": "LineString"}, "id": "178", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312581, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6279941, 41.9653049, -85.6274595, 41.9662647], "geometry": {"coordinates": [[-85.6274595, 41.9662647], [-85.6275515, 41.9662163], [-85.6276078, 41.9661794], [-85.62764, 41.9661375], [-85.6276722, 41.9660906], [-85.627687, 41.9660507], [-85.6276883, 41.9660009], [-85.6276843, 41.9658513], [-85.6276668, 41.9654973], [-85.6276695, 41.9654435], [-85.6277031, 41.9653866], [-85.6277567, 41.9653547], [-85.6278452, 41.9653268], [-85.627927, 41.9653118], [-85.6279941, 41.9653049]], "type": "LineString"}, "id": "179", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764044767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6360261, 41.9584547, -85.6350666, 41.9584779], "geometry": {"coordinates": [[-85.6360261, 41.9584779], [-85.635601, 41.9584676], [-85.6350666, 41.9584547]], "type": "LineString"}, "id": "180", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454967, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6232816, 41.9326681, -85.6229619, 41.9328244], "geometry": {"coordinates": [[-85.6229619, 41.9328244], [-85.6232816, 41.9328219], [-85.6232759, 41.9326681]], "type": "LineString"}, "id": "181", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1230945139, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6229586, 41.9325237, -85.6229554, 41.9326701], "geometry": {"coordinates": [[-85.6229554, 41.9325237], [-85.6229586, 41.9326701]], "type": "LineString"}, "id": "182", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6177355, 41.9512895, -85.6165719, 41.9522788], "geometry": {"coordinates": [[-85.6173027, 41.9512895], [-85.6171481, 41.9513579], [-85.6165981, 41.9519199], [-85.6165719, 41.9519922], [-85.6165832, 41.9520757], [-85.6166355, 41.9521453], [-85.616755, 41.952231], [-85.6169161, 41.9522788], [-85.6170882, 41.9522538], [-85.6177355, 41.9515717]], "type": "LineString"}, "id": "183", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837928, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6082831, 41.9437055, -85.6082658, 41.945652], "geometry": {"coordinates": [[-85.6082658, 41.9437055], [-85.6082831, 41.945652]], "type": "LineString"}, "id": "184", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Winterwood", "oneway": null, "osm_id": 203968005, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348298, 41.964783, -85.6335028, 41.9647886], "geometry": {"coordinates": [[-85.6348298, 41.964783], [-85.6335028, 41.9647886]], "type": "LineString"}, "id": "185", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "yes", "osm_id": 1033167062, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321281, 41.9578611, -85.6318944, 41.9578696], "geometry": {"coordinates": [[-85.6321281, 41.9578611], [-85.6318944, 41.9578696]], "type": "LineString"}, "id": "186", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 776693874, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6498444, 41.9451743, -85.6493424, 41.9451822], "geometry": {"coordinates": [[-85.6498444, 41.9451822], [-85.6493424, 41.9451743]], "type": "LineString"}, "id": "187", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942205, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508359, 41.9495956, -85.6507671, 41.9496774], "geometry": {"coordinates": [[-85.6507671, 41.9495956], [-85.6508359, 41.9496774]], "type": "LineString"}, "id": "188", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 848056398, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6378651, 41.9493523, -85.6374012, 41.9497099], "geometry": {"coordinates": [[-85.6374067, 41.9497099], [-85.6378651, 41.949708], [-85.6377389, 41.949358], [-85.6374012, 41.9493523]], "type": "LineString"}, "id": "189", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 217907775, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370518, 41.9430509, -85.636798, 41.9430567], "geometry": {"coordinates": [[-85.6370518, 41.9430567], [-85.636798, 41.9430509]], "type": "LineString"}, "id": "190", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998355, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458708, 41.941633, -85.645555, 41.9425543], "geometry": {"coordinates": [[-85.6458708, 41.9425516], [-85.6458694, 41.9424834], [-85.6458674, 41.942381], [-85.6458631, 41.9418314], [-85.6458619, 41.9416747], [-85.6458519, 41.9416539], [-85.6458319, 41.9416405], [-85.645805, 41.9416353], [-85.645622, 41.941633], [-85.645588, 41.9416405], [-85.6455671, 41.9416516], [-85.6455561, 41.9416702], [-85.6455559, 41.9418346], [-85.6455552, 41.9423817], [-85.6455551, 41.9424794], [-85.645555, 41.9425543]], "type": "LineString"}, "id": "191", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 331307734, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469955, 41.944059, -85.6469334, 41.9449804], "geometry": {"coordinates": [[-85.6469955, 41.9449804], [-85.6469357, 41.9448568], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "192", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Heather Lane", "oneway": null, "osm_id": 203968029, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.656803, 41.9311823, -85.6559545, 41.9311844], "geometry": {"coordinates": [[-85.656803, 41.9311844], [-85.6559545, 41.9311823]], "type": "LineString"}, "id": "193", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237743, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6168094, 41.9491108, -85.6164888, 41.9492729], "geometry": {"coordinates": [[-85.6168094, 41.9492729], [-85.6165295, 41.9491108], [-85.6164888, 41.9491114]], "type": "LineString"}, "id": "194", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839093, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6598544, 41.9473467, -85.6595706, 41.9473567], "geometry": {"coordinates": [[-85.6595706, 41.9473567], [-85.6598544, 41.9473467]], "type": "LineString"}, "id": "195", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942233, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644244, 41.9379774, -85.6350366, 41.93819], "geometry": {"coordinates": [[-85.6350366, 41.9379774], [-85.6351743, 41.938083], [-85.6352756, 41.9381382], [-85.6353695, 41.9381676], [-85.6354659, 41.9381805], [-85.63576, 41.9381878], [-85.6363309, 41.9381805], [-85.6374603, 41.9381749], [-85.638682, 41.93819], [-85.639983, 41.938174], [-85.641112, 41.938169], [-85.6418226, 41.9381566], [-85.6422621, 41.9381489], [-85.644244, 41.938142]], "type": "LineString"}, "id": "196", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "King Street", "oneway": null, "osm_id": 17967502, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506161, 41.9330613, -85.6501258, 41.9336148], "geometry": {"coordinates": [[-85.6506161, 41.9336133], [-85.650208, 41.9336148], [-85.6501505, 41.9335949], [-85.6501361, 41.9335643], [-85.6501293, 41.9332378], [-85.6501258, 41.9330658], [-85.6503691, 41.9330613]], "type": "LineString"}, "id": "197", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034072, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348317, 41.9439105, -85.6346384, 41.944007], "geometry": {"coordinates": [[-85.6348317, 41.9439105], [-85.6346384, 41.944007]], "type": "LineString"}, "id": "198", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "path", "layer": "1", "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974055, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6125898, 41.9467701, -85.6123069, 41.9471954], "geometry": {"coordinates": [[-85.6125898, 41.9471954], [-85.6123981, 41.9471875], [-85.6123681, 41.9471796], [-85.612338, 41.9471598], [-85.6123265, 41.9471282], [-85.6123069, 41.9467701]], "type": "LineString"}, "id": "199", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 779904648, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6241542, 41.9488966, -85.6241492, 41.9492375], "geometry": {"coordinates": [[-85.6241542, 41.9488966], [-85.6241502, 41.9491713], [-85.6241492, 41.9492375]], "type": "LineString"}, "id": "200", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964878, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6326122, 41.9413792, -85.6318285, 41.9422564], "geometry": {"coordinates": [[-85.632446, 41.9413792], [-85.6325112, 41.941416], [-85.6325449, 41.9416345], [-85.6326122, 41.94164], [-85.6325954, 41.9421966], [-85.6325655, 41.9422411], [-85.632515, 41.9422564], [-85.6324495, 41.94223], [-85.6324009, 41.9421743], [-85.6323915, 41.9421145], [-85.6320287, 41.9418585], [-85.6318285, 41.9416387], [-85.6318779, 41.9415447]], "type": "LineString"}, "id": "201", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203985745, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.612232, 41.951641, -85.612211, 41.953685], "geometry": {"coordinates": [[-85.612216, 41.951641], [-85.612211, 41.951977], [-85.612232, 41.953685]], "type": "LineString"}, "id": "202", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Krum Avenue", "oneway": null, "osm_id": 17967957, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.63928, 41.929221, -85.636746, 41.929222], "geometry": {"coordinates": [[-85.636746, 41.929221], [-85.6376148, 41.929221], [-85.638032, 41.929221], [-85.63921, 41.929222], [-85.63928, 41.929221]], "type": "LineString"}, "id": "203", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wolf Road", "oneway": null, "osm_id": 17965610, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6421517, 41.9298217, -85.6412241, 41.9305681], "geometry": {"coordinates": [[-85.6412241, 41.9298217], [-85.6414753, 41.9299527], [-85.64163, 41.9301856], [-85.6416899, 41.9305281], [-85.6418728, 41.9305681], [-85.6421517, 41.9305242]], "type": "LineString"}, "id": "204", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331310866, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543234, 41.9325151, -85.6529294, 41.935014], "geometry": {"coordinates": [[-85.6529294, 41.9325248], [-85.6529325, 41.9329222], [-85.6529338, 41.9330895], [-85.6529371, 41.9334994], [-85.6529405, 41.9339328], [-85.6529447, 41.9344603], [-85.6529491, 41.935014], [-85.6543234, 41.9350092], [-85.6543189, 41.9330546], [-85.6543143, 41.9328458], [-85.654307, 41.9325151]], "type": "LineString"}, "id": "205", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203048267, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521155, 41.9440948, -85.6517035, 41.9441034], "geometry": {"coordinates": [[-85.6517035, 41.9440948], [-85.6518883, 41.9440996], [-85.6521155, 41.9441034]], "type": "LineString"}, "id": "206", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612660, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650921, 41.9425034, -85.6506286, 41.943073], "geometry": {"coordinates": [[-85.6506547, 41.9425048], [-85.6506539, 41.9426241], [-85.6506527, 41.9426836], [-85.6506516, 41.9427807], [-85.6506286, 41.943073], [-85.650921, 41.9430694], [-85.6509202, 41.9426194], [-85.65092, 41.9425034]], "type": "LineString"}, "id": "207", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942222, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341175, 41.9435986, -85.6340871, 41.9436147], "geometry": {"coordinates": [[-85.6341175, 41.9435986], [-85.6340871, 41.9436147]], "type": "LineString"}, "id": "208", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847371534, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348174, 41.9422218, -85.6344819, 41.94267], "geometry": {"coordinates": [[-85.6348174, 41.94267], [-85.6346557, 41.9426157], [-85.6346294, 41.9425989], [-85.6346084, 41.9425744], [-85.6344938, 41.9423809], [-85.6344819, 41.9423345], [-85.6344856, 41.9422997], [-85.6345102, 41.9422723], [-85.6345775, 41.9422218]], "type": "LineString"}, "id": "209", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972941, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350584, 41.9419421, -85.6349136, 41.9421466], "geometry": {"coordinates": [[-85.6350584, 41.9421466], [-85.6349423, 41.9421448], [-85.6349436, 41.9420652], [-85.6349136, 41.9419963], [-85.6349814, 41.9419789], [-85.6350135, 41.9419421]], "type": "LineString"}, "id": "210", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974076, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517803, 41.9427717, -85.6462904, 41.9548499], "geometry": {"coordinates": [[-85.6462904, 41.9548499], [-85.6467698, 41.9540915], [-85.6472319, 41.9533785], [-85.6489023, 41.9508564], [-85.6495879, 41.9497797], [-85.649738, 41.9495287], [-85.6499869, 41.9491342], [-85.6501897, 41.9487708], [-85.6504282, 41.9483036], [-85.6505912, 41.9479747], [-85.6507119, 41.9476984], [-85.6509008, 41.9472676], [-85.6510257, 41.9469171], [-85.6511087, 41.9466834], [-85.6512009, 41.9464174], [-85.6513171, 41.9460518], [-85.6514022, 41.9457545], [-85.6514744, 41.9454477], [-85.6515103, 41.9452695], [-85.6515409, 41.9451272], [-85.6516271, 41.944641], [-85.6516381, 41.9445535], [-85.6517035, 41.9440948], [-85.6517163, 41.943931], [-85.6517378, 41.9436851], [-85.6517625, 41.9433881], [-85.6517699, 41.9432088], [-85.6517775, 41.9429217], [-85.6517803, 41.9427717]], "type": "LineString"}, "id": "211", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 134151788, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512216, 41.9494325, -85.6511242, 41.9494369], "geometry": {"coordinates": [[-85.6512216, 41.9494369], [-85.6511242, 41.9494325]], "type": "LineString"}, "id": "212", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636431, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": "building_passage", "width": null}, "type": "Feature"}, {"bbox": [-85.619255, 41.9567483, -85.6187082, 41.9588211], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6192003, 41.9568176], [-85.6192126, 41.9569001], [-85.6192527, 41.9584292], [-85.619255, 41.9586845], [-85.6192387, 41.9587209], [-85.6191182, 41.9587553], [-85.6188487, 41.9588182], [-85.6187082, 41.9588211]], "type": "LineString"}, "id": "213", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": "yes", "osm_id": 571308436, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6249648, 41.9415903, -85.6238505, 41.9546684], "geometry": {"coordinates": [[-85.6248672, 41.9415903], [-85.624873, 41.942022], [-85.624884, 41.943508], [-85.624882, 41.94382], [-85.6248856, 41.9447242], [-85.624893, 41.945616], [-85.624912, 41.946524], [-85.624908, 41.947416], [-85.624924, 41.9483338], [-85.624937, 41.949237], [-85.6249648, 41.9502122], [-85.6249511, 41.9504121], [-85.6249267, 41.9505432], [-85.6249127, 41.9506181], [-85.624813, 41.950983], [-85.6246225, 41.951591], [-85.624366, 41.9524258], [-85.6241697, 41.9530647], [-85.623908, 41.9539165], [-85.6238903, 41.9540956], [-85.6238829, 41.9542315], [-85.6238886, 41.9543068], [-85.6239033, 41.9544982], [-85.6238505, 41.9546684]], "type": "LineString"}, "id": "214", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wood Street", "oneway": null, "osm_id": 17967092, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624721, 41.92927, -85.624558, 41.929278], "geometry": {"coordinates": [[-85.624721, 41.929278], [-85.624558, 41.92927]], "type": "LineString"}, "id": "215", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963982, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6308937, 41.9381973, -85.6297382, 41.938203], "geometry": {"coordinates": [[-85.6297382, 41.938203], [-85.6299537, 41.938202], [-85.6301692, 41.938201], [-85.6304039, 41.9381998], [-85.6306532, 41.9381985], [-85.6308937, 41.9381973]], "type": "LineString"}, "id": "216", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 904909917, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6260879, 41.9587648, -85.6255727, 41.9589139], "geometry": {"coordinates": [[-85.6255727, 41.9587648], [-85.6257408, 41.9588135], [-85.6260879, 41.9589139]], "type": "LineString"}, "id": "217", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 341699295, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633613, 41.9672979, -85.6326626, 41.9673067], "geometry": {"coordinates": [[-85.633613, 41.9672979], [-85.6326626, 41.9673067]], "type": "LineString"}, "id": "218", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766819277, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477139, 41.9349544, -85.6469648, 41.9398356], "geometry": {"coordinates": [[-85.6477024, 41.9398356], [-85.6477033, 41.939772], [-85.6477109, 41.9391655], [-85.6477139, 41.9389871], [-85.6477095, 41.9388622], [-85.6476602, 41.9386034], [-85.6476398, 41.938534], [-85.6476036, 41.9384423], [-85.6475325, 41.9382996], [-85.6474011, 41.9380961], [-85.6473179, 41.9379604], [-85.6472334, 41.9378237], [-85.6471505, 41.9376626], [-85.6470886, 41.9373589], [-85.6470671, 41.9372371], [-85.6470591, 41.9371653], [-85.6470551, 41.9370246], [-85.6470591, 41.936893], [-85.6470524, 41.9363932], [-85.6470406, 41.9363248], [-85.6470229, 41.9362734], [-85.6469947, 41.9362256], [-85.64698, 41.9361677], [-85.646972, 41.9354016], [-85.6469728, 41.9351882], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "219", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": null, "osm_id": 17965446, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394802, 41.94261, -85.639454, 41.9451962], "geometry": {"coordinates": [[-85.6394548, 41.94261], [-85.6394547, 41.9426899], [-85.6394544, 41.9431246], [-85.639454, 41.943871], [-85.6394802, 41.9451962]], "type": "LineString"}, "id": "220", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Hooker Avenue", "oneway": null, "osm_id": 17965792, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6138494, 41.9552536, -85.6124092, 41.9554852], "geometry": {"coordinates": [[-85.6138494, 41.9554852], [-85.6132214, 41.9554852], [-85.6124605, 41.955476], [-85.612418, 41.9554457], [-85.6124092, 41.9553141], [-85.6124286, 41.9552694], [-85.6124622, 41.9552536], [-85.613117, 41.9552562], [-85.6131719, 41.9552746], [-85.6132002, 41.955301], [-85.6132214, 41.9554852]], "type": "LineString"}, "id": "221", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755215559, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350642, 41.9608331, -85.635064, 41.9610674], "geometry": {"coordinates": [[-85.635064, 41.9610674], [-85.6350642, 41.9608331]], "type": "LineString"}, "id": "222", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 258377784, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348181, 41.9606811, -85.6321716, 41.9606914], "geometry": {"coordinates": [[-85.6321716, 41.9606811], [-85.6348181, 41.9606914]], "type": "LineString"}, "id": "223", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Barnard Avenue", "oneway": null, "osm_id": 382604729, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6328068, 41.9547563, -85.6326181, 41.9549894], "geometry": {"coordinates": [[-85.6328068, 41.9547563], [-85.6327761, 41.9548552], [-85.6326181, 41.9549894]], "type": "LineString"}, "id": "224", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416369, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6195966, 41.9542769, -85.6191623, 41.954612], "geometry": {"coordinates": [[-85.6195966, 41.9544848], [-85.6193374, 41.9542947], [-85.6193185, 41.9542825], [-85.6192883, 41.9542769], [-85.6192593, 41.9542825], [-85.6192177, 41.9543078], [-85.6191635, 41.9543621], [-85.6191623, 41.9543846], [-85.6191711, 41.954409], [-85.6191963, 41.9544333], [-85.6195234, 41.954612]], "type": "LineString"}, "id": "225", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871399919, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6195234, 41.954612, -85.6194958, 41.9547372], "geometry": {"coordinates": [[-85.6194958, 41.9547372], [-85.6195234, 41.954612]], "type": "LineString"}, "id": "226", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871399918, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567926, 41.9299115, -85.6559408, 41.9299115], "geometry": {"coordinates": [[-85.6567926, 41.9299115], [-85.6559408, 41.9299115]], "type": "LineString"}, "id": "227", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237750, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483619, 41.9484516, -85.6483553, 41.9491709], "geometry": {"coordinates": [[-85.6483619, 41.9491709], [-85.6483553, 41.9484516]], "type": "LineString"}, "id": "228", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225611127, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643575, 41.9498105, -85.6435645, 41.9503826], "geometry": {"coordinates": [[-85.643575, 41.9503826], [-85.6435645, 41.9498105]], "type": "LineString"}, "id": "229", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225610191, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6446475, 41.9373658, -85.6446284, 41.9379036], "geometry": {"coordinates": [[-85.6446475, 41.9379036], [-85.6446284, 41.9373658]], "type": "LineString"}, "id": "230", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 823692586, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543143, 41.9328431, -85.6529338, 41.9330942], "geometry": {"coordinates": [[-85.6543143, 41.9328458], [-85.653333, 41.9328431], [-85.6531701, 41.9328499], [-85.6531262, 41.932903], [-85.6531134, 41.9330146], [-85.6530717, 41.9330758], [-85.6530048, 41.9330942], [-85.6529338, 41.9330895]], "type": "LineString"}, "id": "231", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906545416, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6408071, 41.9427086, -85.6407845, 41.9438654], "geometry": {"coordinates": [[-85.6407845, 41.9427086], [-85.6407923, 41.9431062], [-85.6407978, 41.9433911], [-85.6408013, 41.9435702], [-85.6408071, 41.9438654]], "type": "LineString"}, "id": "232", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1043615834, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510705, 41.9425026, -85.6489578, 41.9425201], "geometry": {"coordinates": [[-85.6489578, 41.9425201], [-85.6490408, 41.9425185], [-85.6497768, 41.9425122], [-85.6500601, 41.942509], [-85.6504477, 41.9425064], [-85.6506547, 41.9425048], [-85.65092, 41.9425034], [-85.6510705, 41.9425026]], "type": "LineString"}, "id": "233", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 614445260, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510513, 41.9394413, -85.650437, 41.9394457], "geometry": {"coordinates": [[-85.650437, 41.9394413], [-85.6510513, 41.9394457]], "type": "LineString"}, "id": "234", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906427567, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501414, 41.9262951, -85.6500738, 41.92697], "geometry": {"coordinates": [[-85.6500738, 41.92697], [-85.6501414, 41.9268304], [-85.6501107, 41.9262951]], "type": "LineString"}, "id": "235", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946831010, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6293702, 41.9474668, -85.628469, 41.948674], "geometry": {"coordinates": [[-85.6293702, 41.9474668], [-85.628469, 41.948674]], "type": "LineString"}, "id": "236", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Willow Drive", "oneway": null, "osm_id": 17964531, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346302, 41.9465918, -85.6336698, 41.9468449], "geometry": {"coordinates": [[-85.6346302, 41.9468381], [-85.6343028, 41.9468449], [-85.6342006, 41.9468297], [-85.6336698, 41.9465918]], "type": "LineString"}, "id": "237", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346811, 41.9431023, -85.6341901, 41.9432732], "geometry": {"coordinates": [[-85.6346811, 41.9431023], [-85.6342265, 41.9432605], [-85.6341901, 41.9432732]], "type": "LineString"}, "id": "238", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150789, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6325485, 41.9445625, -85.6319663, 41.9448112], "geometry": {"coordinates": [[-85.6325485, 41.9445625], [-85.6324806, 41.9445954], [-85.6323425, 41.9446243], [-85.6321829, 41.9446901], [-85.6319663, 41.9448112]], "type": "LineString"}, "id": "239", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 847427778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6349955, 41.9395658, -85.6345653, 41.9401078], "geometry": {"coordinates": [[-85.6345653, 41.9401078], [-85.6345688, 41.9399451], [-85.6345787, 41.9398695], [-85.6346102, 41.939795], [-85.6346627, 41.9397272], [-85.6347429, 41.9396563], [-85.6348281, 41.9396096], [-85.6349075, 41.9395845], [-85.6349955, 41.9395658]], "type": "LineString"}, "id": "240", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331304868, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6181912, 41.9389736, -85.6173674, 41.9391092], "geometry": {"coordinates": [[-85.6173674, 41.9391092], [-85.6177251, 41.9391044], [-85.6177853, 41.9391036], [-85.6178282, 41.9390907], [-85.617912, 41.9389887], [-85.617948, 41.9389736], [-85.6181912, 41.9390188]], "type": "LineString"}, "id": "241", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871038145, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624813, 41.950983, -85.620103, 41.9510005], "geometry": {"coordinates": [[-85.620103, 41.951], [-85.6227785, 41.9510005], [-85.6243726, 41.9509868], [-85.624813, 41.950983]], "type": "LineString"}, "id": "242", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "10th Avenue", "oneway": null, "osm_id": 17967535, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6416273, 41.9279814, -85.6416273, 41.9284523], "geometry": {"coordinates": [[-85.6416273, 41.9284523], [-85.6416273, 41.9279814]], "type": "LineString"}, "id": "243", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143989, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493826, 41.934331, -85.6491733, 41.934331], "geometry": {"coordinates": [[-85.6493826, 41.934331], [-85.6491733, 41.934331]], "type": "LineString"}, "id": "244", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034085, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507855, 41.9442885, -85.6503674, 41.9448861], "geometry": {"coordinates": [[-85.6503814, 41.9442885], [-85.6503781, 41.9443878], [-85.6503674, 41.9447124], [-85.6503931, 41.9448218], [-85.6505683, 41.9448601], [-85.6507411, 41.9448861], [-85.6507855, 41.9448253]], "type": "LineString"}, "id": "245", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942179, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62567, 41.92926, -85.624721, 41.929295], "geometry": {"coordinates": [[-85.624721, 41.929278], [-85.625429, 41.92926], [-85.625601, 41.929264], [-85.62567, 41.929295]], "type": "LineString"}, "id": "246", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Union Street", "oneway": null, "osm_id": 17966561, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641583, 41.9521543, -85.63974, 41.95465], "geometry": {"coordinates": [[-85.63974, 41.9521543], [-85.6399012, 41.9523817], [-85.64079, 41.953638], [-85.641583, 41.95465]], "type": "LineString"}, "id": "247", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Rock River Avenue", "oneway": null, "osm_id": 17967763, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6359942, 41.9450097, -85.6358939, 41.9450748], "geometry": {"coordinates": [[-85.6359942, 41.9450097], [-85.6359908, 41.9450119], [-85.6358939, 41.9450748]], "type": "LineString"}, "id": "248", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370304, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394912, 41.9441622, -85.627892, 41.9546342], "geometry": {"coordinates": [[-85.6394912, 41.9545764], [-85.6394537, 41.9545764], [-85.6394163, 41.9545764], [-85.639388, 41.9545774], [-85.6387348, 41.9545784], [-85.6386912, 41.9545803], [-85.6386329, 41.9545774], [-85.637556, 41.9545744], [-85.6374593, 41.9545754], [-85.6374098, 41.9545764], [-85.6363048, 41.9545833], [-85.6362358, 41.9545823], [-85.6361975, 41.9545823], [-85.6348805, 41.9545883], [-85.6347285, 41.9545903], [-85.6346029, 41.9545963], [-85.6333812, 41.9545953], [-85.6333107, 41.9545973], [-85.6332511, 41.9545963], [-85.6321688, 41.9546003], [-85.6320941, 41.9545984], [-85.6320468, 41.9545993], [-85.6309283, 41.9545993], [-85.6308815, 41.9545993], [-85.630821, 41.9546023], [-85.6302799, 41.9546038], [-85.6297481, 41.9546053], [-85.6296522, 41.9546072], [-85.6296006, 41.9546083], [-85.6290664, 41.9546079], [-85.6282072, 41.9546073], [-85.6281482, 41.9546202], [-85.6279787, 41.9546342], [-85.627892, 41.9546332], [-85.6280288, 41.9544198], [-85.6299439, 41.9517049], [-85.6308948, 41.9503614], [-85.6315666, 41.9494169], [-85.6321366, 41.948614], [-85.6321713, 41.9485733], [-85.6321943, 41.9485421], [-85.6335005, 41.9466899], [-85.633866, 41.9461846], [-85.6338843, 41.9461529], [-85.6339377, 41.9460724], [-85.6342589, 41.9456295], [-85.6342315, 41.9456026], [-85.6338143, 41.9451936], [-85.6336836, 41.9450794], [-85.6335414, 41.9449453], [-85.633475, 41.9448816], [-85.6329601, 41.9443877], [-85.6327737, 41.944194], [-85.6327575, 41.9441772], [-85.632724, 41.9441622]], "type": "LineString"}, "id": "249", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550714, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6252071, 41.9607317, -85.6250824, 41.9607526], "geometry": {"coordinates": [[-85.6252071, 41.9607526], [-85.6251449, 41.9607414], [-85.6250824, 41.9607317]], "type": "LineString"}, "id": "250", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550688, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6452831, 41.9479913, -85.6452709, 41.94815], "geometry": {"coordinates": [[-85.6452709, 41.94815], [-85.6452831, 41.9479913]], "type": "LineString"}, "id": "251", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942806, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517457, 41.9269767, -85.6516484, 41.9317494], "geometry": {"coordinates": [[-85.6517428, 41.9317494], [-85.6517418, 41.9313059], [-85.651745, 41.9308554], [-85.6517457, 41.9304361], [-85.6516956, 41.9292263], [-85.6516631, 41.9283589], [-85.6516484, 41.9269767]], "type": "LineString"}, "id": "252", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 929692958, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567985, 41.9306335, -85.6559486, 41.9306358], "geometry": {"coordinates": [[-85.6567985, 41.9306358], [-85.6559486, 41.9306335]], "type": "LineString"}, "id": "253", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237746, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469648, 41.9326207, -85.6468995, 41.9349544], "geometry": {"coordinates": [[-85.6469521, 41.9326207], [-85.6469147, 41.9326882], [-85.6469022, 41.9327108], [-85.6468995, 41.9333094], [-85.6469128, 41.9344104], [-85.6469152, 41.9345841], [-85.646913, 41.9347757], [-85.6469116, 41.9348658], [-85.6469156, 41.9349027], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "254", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": "yes", "osm_id": 904632319, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6286375, 41.943668, -85.6274028, 41.9446764], "geometry": {"coordinates": [[-85.6274028, 41.9436719], [-85.6274816, 41.9436715], [-85.627585, 41.943671], [-85.6282382, 41.943668], [-85.6282671, 41.9441099], [-85.6286299, 41.9442976], [-85.6286342, 41.9445114], [-85.628636, 41.9445992], [-85.6286375, 41.9446764]], "type": "LineString"}, "id": "255", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243998, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6136071, 41.9547745, -85.6056682, 41.963752], "geometry": {"coordinates": [[-85.610238, 41.9547745], [-85.6102539, 41.9558449], [-85.6102652, 41.9566041], [-85.610325, 41.9568823], [-85.6105644, 41.9571383], [-85.6130784, 41.9590689], [-85.6133328, 41.9593805], [-85.6135946, 41.959948], [-85.6136071, 41.9629372], [-85.6134392, 41.9633182], [-85.6130151, 41.9636073], [-85.6122729, 41.9637125], [-85.6056682, 41.963752]], "type": "LineString"}, "id": "256", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hov Aire Drive", "oneway": null, "osm_id": 203839666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6173635, 41.9377414, -85.616246, 41.9377496], "geometry": {"coordinates": [[-85.6173635, 41.9377414], [-85.616246, 41.9377496]], "type": "LineString"}, "id": "257", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Cedar Glen Drive", "oneway": null, "osm_id": 17967204, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624924, 41.948333, -85.62156, 41.9483338], "geometry": {"coordinates": [[-85.62156, 41.948333], [-85.622761, 41.9483333], [-85.624924, 41.9483338]], "type": "LineString"}, "id": "258", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Avenue", "oneway": null, "osm_id": 17965699, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497338, 41.943476, -85.6488023, 41.9434902], "geometry": {"coordinates": [[-85.6497338, 41.943476], [-85.6488023, 41.9434902]], "type": "LineString"}, "id": "259", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942216, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6329898, 41.94485, -85.6322786, 41.9454997], "geometry": {"coordinates": [[-85.6322786, 41.94485], [-85.6329898, 41.9454997]], "type": "LineString"}, "id": "260", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970905, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186719, 41.943588, -85.6121427, 41.9449724], "geometry": {"coordinates": [[-85.6121427, 41.9449724], [-85.6131903, 41.9449667], [-85.6133531, 41.9449658], [-85.6142597, 41.9449623], [-85.6153721, 41.9449581], [-85.6159374, 41.9449559], [-85.6168377, 41.9449408], [-85.6168924, 41.9444998], [-85.6169953, 41.944241], [-85.6172088, 41.9440469], [-85.6176438, 41.943788], [-85.6180076, 41.9436292], [-85.6183397, 41.943588], [-85.6186719, 41.9436586]], "type": "LineString"}, "id": "261", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 607644653, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6471004, 41.9511252, -85.6463931, 41.9516022], "geometry": {"coordinates": [[-85.6463931, 41.9514276], [-85.6468699, 41.9516022], [-85.6469238, 41.9515886], [-85.6469962, 41.951533], [-85.6471004, 41.9513725], [-85.6470893, 41.9513278], [-85.6467767, 41.9511956], [-85.6465834, 41.9511252]], "type": "LineString"}, "id": "262", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907935490, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344386, 41.9456229, -85.623333, 41.961987], "geometry": {"coordinates": [[-85.6344386, 41.9456229], [-85.6343309, 41.9456978], [-85.633951, 41.946174], [-85.6336698, 41.9465918], [-85.633183, 41.947315], [-85.632278, 41.948613], [-85.6320229, 41.9490123], [-85.6313855, 41.9499125], [-85.6312754, 41.9500612], [-85.630835, 41.950656], [-85.6304857, 41.9511945], [-85.6295992, 41.9524346], [-85.628639, 41.953725], [-85.6279787, 41.9546342], [-85.627936, 41.954693], [-85.627582, 41.95532], [-85.627267, 41.955878], [-85.6268359, 41.9565339], [-85.6264337, 41.9571608], [-85.626336, 41.957291], [-85.6262922, 41.9573635], [-85.6256754, 41.9583862], [-85.6255197, 41.9586443], [-85.6252483, 41.9590965], [-85.624619, 41.960145], [-85.624494, 41.960338], [-85.6243433, 41.9605648], [-85.6242808, 41.9606501], [-85.6233606, 41.961948], [-85.623333, 41.961987]], "type": "LineString"}, "id": "263", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Portage Avenue", "oneway": null, "osm_id": 17966984, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6589146, 41.9257217, -85.6528255, 41.9273054], "geometry": {"coordinates": [[-85.6528255, 41.9270544], [-85.6532775, 41.9271085], [-85.6534176, 41.9271318], [-85.6535343, 41.9271577], [-85.6537209, 41.9272058], [-85.6539271, 41.9272575], [-85.6540503, 41.9272909], [-85.6541646, 41.9273041], [-85.6542955, 41.9273054], [-85.65441, 41.927297], [-85.6545537, 41.9272735], [-85.6546717, 41.9272424], [-85.6547921, 41.9271987], [-85.6549257, 41.927152], [-85.6553677, 41.9269356], [-85.6556482, 41.9267997], [-85.6558515, 41.926712], [-85.6560451, 41.9266312], [-85.6562865, 41.9265401], [-85.6566301, 41.9264212], [-85.6571798, 41.9262547], [-85.657626, 41.9261204], [-85.6576992, 41.9260938], [-85.6583584, 41.9258983], [-85.6585229, 41.9258437], [-85.6589146, 41.9257217]], "type": "LineString"}, "id": "264", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 124014670, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6421162, 41.9428614, -85.641878, 41.9428637], "geometry": {"coordinates": [[-85.641878, 41.9428637], [-85.6419877, 41.9428626], [-85.6421162, 41.9428614]], "type": "LineString"}, "id": "265", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615987, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651587, 41.950958, -85.650247, 41.95096], "geometry": {"coordinates": [[-85.650247, 41.95096], [-85.651587, 41.950958]], "type": "LineString"}, "id": "266", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Church Drive", "oneway": null, "osm_id": 17964869, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6461816, 41.9444993, -85.6452947, 41.9450847], "geometry": {"coordinates": [[-85.6452965, 41.9450847], [-85.6452983, 41.9449179], [-85.6453, 41.944756], [-85.6461709, 41.9447586], [-85.6461816, 41.9445045], [-85.6453358, 41.9444995], [-85.6452947, 41.9444993], [-85.6453, 41.944756]], "type": "LineString"}, "id": "267", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942236, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651459, 41.9268846, -85.6500738, 41.92697], "geometry": {"coordinates": [[-85.651459, 41.9269659], [-85.6513417, 41.9269141], [-85.6512501, 41.9268925], [-85.6511755, 41.9268846], [-85.650251, 41.9269033], [-85.6501888, 41.9269168], [-85.6500738, 41.92697]], "type": "LineString"}, "id": "268", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": "yes", "osm_id": 17965581, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529325, 41.9329222, -85.6521731, 41.9334857], "geometry": {"coordinates": [[-85.6529325, 41.9329222], [-85.6526431, 41.9329358], [-85.6523006, 41.9329539], [-85.6521843, 41.933034], [-85.6521731, 41.9331818], [-85.6522405, 41.9332863], [-85.652368, 41.9334104], [-85.6523693, 41.9334857]], "type": "LineString"}, "id": "269", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871007142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514197, 41.9294376, -85.649311, 41.9306031], "geometry": {"coordinates": [[-85.649311, 41.9306031], [-85.649332, 41.9296083], [-85.6494076, 41.9295291], [-85.6495369, 41.9294753], [-85.6507517, 41.9294498], [-85.6514197, 41.9294376]], "type": "LineString"}, "id": "270", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843137, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643195, 41.949261, -85.64169, 41.949936], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.643009, 41.949264], [-85.642598, 41.94929], [-85.6423752, 41.9493211], [-85.6422362, 41.9493485], [-85.6421609, 41.9493696], [-85.6420956, 41.9494033], [-85.6420337, 41.9494406], [-85.6419751, 41.9494929], [-85.64169, 41.949936]], "type": "LineString"}, "id": "271", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346535, 41.9430323, -85.6340946, 41.9432036], "geometry": {"coordinates": [[-85.6340946, 41.9432036], [-85.634137, 41.9431881], [-85.6342046, 41.9431617], [-85.6343588, 41.9431178], [-85.6346535, 41.9430323]], "type": "LineString"}, "id": "272", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550702, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6439376, 41.955147, -85.6418333, 41.9558803], "geometry": {"coordinates": [[-85.6439376, 41.9558803], [-85.6418333, 41.955147]], "type": "LineString"}, "id": "273", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776877, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620007, 41.9371699, -85.6191369, 41.937206], "geometry": {"coordinates": [[-85.6191369, 41.9371699], [-85.620007, 41.937206]], "type": "LineString"}, "id": "274", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Cypress Court", "oneway": null, "osm_id": 17965495, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543292, 41.9318356, -85.6539313, 41.9322932], "geometry": {"coordinates": [[-85.6543292, 41.9322932], [-85.6539344, 41.9322903], [-85.6539313, 41.9318356]], "type": "LineString"}, "id": "275", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843134, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.618622, 41.9376819, -85.6178785, 41.9377034], "geometry": {"coordinates": [[-85.6178785, 41.9376819], [-85.618622, 41.9377034]], "type": "LineString"}, "id": "276", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Beechwood Court", "oneway": null, "osm_id": 17965371, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345233, 41.9434933, -85.6344828, 41.9435125], "geometry": {"coordinates": [[-85.6344828, 41.9435125], [-85.6345233, 41.9434933]], "type": "LineString"}, "id": "277", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370292, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6485696, 41.936709, -85.6477548, 41.9372687], "geometry": {"coordinates": [[-85.6477548, 41.9371412], [-85.6479084, 41.936709], [-85.6481146, 41.9367519], [-85.648338, 41.9367985], [-85.6485696, 41.9368448], [-85.6484315, 41.9372687]], "type": "LineString"}, "id": "278", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243990, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529371, 41.9334814, -85.6517596, 41.9334994], "geometry": {"coordinates": [[-85.6517596, 41.9334814], [-85.651934, 41.9334826], [-85.6523693, 41.9334857], [-85.6529371, 41.9334994]], "type": "LineString"}, "id": "279", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203048269, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504347, 41.9319904, -85.6500548, 41.9319914], "geometry": {"coordinates": [[-85.6504347, 41.9319904], [-85.6500548, 41.9319914]], "type": "LineString"}, "id": "280", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116838, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6459085, 41.9308849, -85.6443539, 41.9323946], "geometry": {"coordinates": [[-85.6444563, 41.9323946], [-85.6444016, 41.9323484], [-85.6443777, 41.9322597], [-85.6443641, 41.9320567], [-85.6443539, 41.9318513], [-85.644422, 41.9316585], [-85.6445857, 41.9313821], [-85.6446505, 41.9312578], [-85.6446743, 41.9310828], [-85.6447664, 41.9309864], [-85.6448516, 41.9309204], [-85.6459085, 41.9308849]], "type": "LineString"}, "id": "281", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907662228, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6253868, 41.9609441, -85.6248625, 41.9616581], "geometry": {"coordinates": [[-85.6251039, 41.960981], [-85.6250811, 41.9610069], [-85.6250502, 41.9610847], [-85.6250368, 41.9611336], [-85.6250355, 41.9611844], [-85.6250542, 41.9612223], [-85.6251025, 41.9612622], [-85.6251535, 41.9612832], [-85.6251857, 41.9612921], [-85.6252232, 41.9613001], [-85.6252849, 41.9613231], [-85.6253225, 41.96135], [-85.6253654, 41.9614018], [-85.6253868, 41.9614607], [-85.625364, 41.9615494], [-85.6253198, 41.9616003], [-85.6252661, 41.9616342], [-85.6251924, 41.9616551], [-85.6251468, 41.9616581], [-85.6250703, 41.9616521], [-85.6249899, 41.9616242], [-85.6249349, 41.9615833], [-85.6249067, 41.9615524], [-85.6248906, 41.9614966], [-85.6248933, 41.9614467], [-85.6249014, 41.9614078], [-85.624904, 41.961337], [-85.624892, 41.9612951], [-85.6248692, 41.9612273], [-85.6248625, 41.9611625], [-85.6248732, 41.9610638], [-85.6249174, 41.960968], [-85.6249362, 41.9609441]], "type": "LineString"}, "id": "282", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550707, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638694, 41.954649, -85.634729, 41.954667], "geometry": {"coordinates": [[-85.634729, 41.954667], [-85.636236, 41.954656], [-85.63746, 41.954658], [-85.638694, 41.954649]], "type": "LineString"}, "id": "283", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 17965866, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350826, 41.958296, -85.6347648, 41.9586206], "geometry": {"coordinates": [[-85.6350826, 41.958296], [-85.6350666, 41.9584547], [-85.6350498, 41.9586206], [-85.6347648, 41.9586184]], "type": "LineString"}, "id": "284", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454966, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511863, 41.9434979, -85.6507817, 41.943638], "geometry": {"coordinates": [[-85.6507817, 41.943638], [-85.6511863, 41.9434979]], "type": "LineString"}, "id": "285", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942195, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504829, 41.9439729, -85.6496532, 41.9439764], "geometry": {"coordinates": [[-85.6504829, 41.9439764], [-85.6496532, 41.9439729]], "type": "LineString"}, "id": "286", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942199, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6294175, 41.9422323, -85.6290399, 41.9422477], "geometry": {"coordinates": [[-85.6294175, 41.9422323], [-85.6290399, 41.9422477]], "type": "LineString"}, "id": "287", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 378668559, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6535563, 41.9306335, -85.6535371, 41.931569], "geometry": {"coordinates": [[-85.6535563, 41.9306335], [-85.6535371, 41.931569]], "type": "LineString"}, "id": "288", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612685, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508508, 41.9450657, -85.6503697, 41.9458667], "geometry": {"coordinates": [[-85.6506914, 41.9458667], [-85.6507621, 41.9456424], [-85.6508508, 41.9450744], [-85.6505916, 41.9450657], [-85.6504608, 41.9450692], [-85.6503697, 41.9457363], [-85.6503697, 41.9458179]], "type": "LineString"}, "id": "289", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 498942186, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6528255, 41.9269659, -85.651459, 41.9270544], "geometry": {"coordinates": [[-85.651459, 41.9269659], [-85.6516484, 41.9269767], [-85.6519641, 41.9269968], [-85.6523086, 41.9270197], [-85.6528255, 41.9270544]], "type": "LineString"}, "id": "290", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "no", "osm_id": 124014665, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478361, 41.932796, -85.6475896, 41.9327976], "geometry": {"coordinates": [[-85.6475896, 41.932796], [-85.6478361, 41.9327976]], "type": "LineString"}, "id": "291", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204035474, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6593087, 41.9255834, -85.6589146, 41.9257217], "geometry": {"coordinates": [[-85.6589146, 41.9257217], [-85.6593087, 41.9255834]], "type": "LineString"}, "id": "292", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 897575549, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497534, 41.941819, -85.6497346, 41.9421402], "geometry": {"coordinates": [[-85.6497534, 41.9421402], [-85.6497346, 41.941819]], "type": "LineString"}, "id": "293", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638498, 41.929221, -85.6376148, 41.930416], "geometry": {"coordinates": [[-85.6376148, 41.929221], [-85.6376596, 41.9293516], [-85.6378166, 41.9298086], [-85.6379715, 41.9302065], [-85.6381831, 41.9303761], [-85.638498, 41.930416]], "type": "LineString"}, "id": "294", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781696140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6388962, 41.9321266, -85.638682, 41.9400864], "geometry": {"coordinates": [[-85.6388962, 41.9321266], [-85.6388769, 41.9327334], [-85.6388737, 41.9328197], [-85.6388308, 41.9339698], [-85.6388186, 41.9350099], [-85.63876, 41.937002], [-85.638682, 41.93819], [-85.6386828, 41.9400864]], "type": "LineString"}, "id": "295", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Hooker Avenue", "oneway": null, "osm_id": 17966878, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341027, 41.943433, -85.6339967, 41.9434899], "geometry": {"coordinates": [[-85.6341027, 41.943433], [-85.6339967, 41.9434899]], "type": "LineString"}, "id": "296", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550703, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636166, 41.947296, -85.6346358, 41.947323], "geometry": {"coordinates": [[-85.6346358, 41.947323], [-85.6351132, 41.9473145], [-85.6353441, 41.9473104], [-85.6354184, 41.9473091], [-85.636166, 41.947296]], "type": "LineString"}, "id": "297", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Prutzman Street", "oneway": null, "osm_id": 17965182, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6362328, 41.953681, -85.634723, 41.9536856], "geometry": {"coordinates": [[-85.634723, 41.953681], [-85.6362328, 41.9536856]], "type": "LineString"}, "id": "298", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Cushman Street", "oneway": null, "osm_id": 17966172, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347265, 41.9556918, -85.6343181, 41.9556945], "geometry": {"coordinates": [[-85.6347265, 41.9556918], [-85.6343181, 41.9556945]], "type": "LineString"}, "id": "299", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416365, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470381, 41.949197, -85.6458693, 41.9522414], "geometry": {"coordinates": [[-85.6469834, 41.949197], [-85.6470279, 41.9500961], [-85.6470381, 41.950353], [-85.6470162, 41.9504183], [-85.6469634, 41.950515], [-85.6465834, 41.9511252], [-85.64641, 41.9514037], [-85.6463931, 41.9514276], [-85.6460483, 41.9519157], [-85.6458693, 41.9522414]], "type": "LineString"}, "id": "300", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "Webber Avenue", "oneway": null, "osm_id": 17967185, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361179, 41.9638663, -85.6348315, 41.9640844], "geometry": {"coordinates": [[-85.6361179, 41.9638663], [-85.6361114, 41.9639927], [-85.636014, 41.9640422], [-85.6348315, 41.9640844]], "type": "LineString"}, "id": "301", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871038030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336142, 41.9674796, -85.632666, 41.967487], "geometry": {"coordinates": [[-85.6336142, 41.967487], [-85.632666, 41.9674796]], "type": "LineString"}, "id": "302", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766819276, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638174, 41.958292, -85.634763, 41.958313], "geometry": {"coordinates": [[-85.634763, 41.958292], [-85.6350826, 41.958296], [-85.6355981, 41.9583025], [-85.6360278, 41.9583079], [-85.636271, 41.958311], [-85.6366287, 41.9583116], [-85.6370944, 41.9583124], [-85.637483, 41.958313], [-85.6376116, 41.9583124], [-85.638174, 41.95831]], "type": "LineString"}, "id": "303", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Armstrong Boulevard", "oneway": null, "osm_id": 17965468, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634723, 41.953681, -85.6320827, 41.9537069], "geometry": {"coordinates": [[-85.6320827, 41.9537069], [-85.633307, 41.9537], [-85.634723, 41.953681]], "type": "LineString"}, "id": "304", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Cushman Street", "oneway": null, "osm_id": 17964723, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6435531, 41.9412863, -85.643071, 41.9416981], "geometry": {"coordinates": [[-85.6435531, 41.9416981], [-85.6435427, 41.9412863], [-85.643301, 41.9412872], [-85.643071, 41.941288]], "type": "LineString"}, "id": "305", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643105, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6460479, 41.9425502, -85.6456241, 41.9430771], "geometry": {"coordinates": [[-85.6460385, 41.9425502], [-85.6460424, 41.942643], [-85.6460479, 41.9426931], [-85.6458549, 41.9426872], [-85.6456241, 41.9426801], [-85.6456308, 41.9430751], [-85.6458668, 41.9430771], [-85.6458549, 41.9426872]], "type": "LineString"}, "id": "306", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237758, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514293, 41.9429967, -85.6511789, 41.943003], "geometry": {"coordinates": [[-85.6511789, 41.943003], [-85.6512419, 41.9429995], [-85.6514293, 41.9429967]], "type": "LineString"}, "id": "307", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1111892830, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341561, 41.9424487, -85.6335514, 41.9428552], "geometry": {"coordinates": [[-85.6341561, 41.9428552], [-85.6339701, 41.9424487], [-85.6338474, 41.9424723], [-85.6337406, 41.9424929], [-85.6335514, 41.9425294]], "type": "LineString"}, "id": "308", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203974066, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361862, 41.9495151, -85.6354506, 41.94952], "geometry": {"coordinates": [[-85.6361862, 41.94952], [-85.6354506, 41.9495151]], "type": "LineString"}, "id": "309", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946882963, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557816, 41.9419856, -85.6543478, 41.9419876], "geometry": {"coordinates": [[-85.6543478, 41.9419856], [-85.6557816, 41.9419876]], "type": "LineString"}, "id": "310", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771086, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436023, 41.9544262, -85.638694, 41.9546557], "geometry": {"coordinates": [[-85.638694, 41.954649], [-85.6394155, 41.9546493], [-85.6398429, 41.954651], [-85.640983, 41.9546557], [-85.641583, 41.95465], [-85.641871, 41.954652], [-85.6421344, 41.9546444], [-85.6428264, 41.9545612], [-85.6433323, 41.9544732], [-85.6436023, 41.9544262]], "type": "LineString"}, "id": "311", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 772282741, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558085, 41.9418001, -85.6543458, 41.941824], "geometry": {"coordinates": [[-85.6558085, 41.9418001], [-85.6543458, 41.941824]], "type": "LineString"}, "id": "312", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771087, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558104, 41.9408023, -85.6540931, 41.9408145], "geometry": {"coordinates": [[-85.6540931, 41.9408025], [-85.6543413, 41.9408145], [-85.6558104, 41.9408023]], "type": "LineString"}, "id": "313", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771093, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511523, 41.9306031, -85.6493012, 41.9325803], "geometry": {"coordinates": [[-85.649346, 41.9325803], [-85.6493448, 41.9325521], [-85.6493423, 41.9324936], [-85.649309, 41.9317232], [-85.6493012, 41.9314266], [-85.649311, 41.9306031], [-85.6495102, 41.9306033], [-85.6497496, 41.9306035], [-85.6499941, 41.9306038], [-85.6502232, 41.930604], [-85.6504523, 41.9306042], [-85.6506968, 41.9306045], [-85.6509362, 41.9306047], [-85.6511523, 41.9306049], [-85.6511497, 41.9313429], [-85.6511448, 41.9313651], [-85.6511301, 41.9313839], [-85.651107, 41.9313995], [-85.6510755, 41.9314105], [-85.6509439, 41.9314117], [-85.6507019, 41.9314139], [-85.6506112, 41.9314147], [-85.6504523, 41.9314162], [-85.6502335, 41.9314181], [-85.6499942, 41.9314203], [-85.6497573, 41.9314225], [-85.6495361, 41.9314245], [-85.6493012, 41.9314266]], "type": "LineString"}, "id": "314", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843136, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6568015, 41.9309979, -85.6556741, 41.9310002], "geometry": {"coordinates": [[-85.6568015, 41.9310002], [-85.6559525, 41.9309979], [-85.6556741, 41.9309979]], "type": "LineString"}, "id": "315", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237744, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557421, 41.9328286, -85.6543189, 41.9330546], "geometry": {"coordinates": [[-85.6557383, 41.9328286], [-85.6557421, 41.9330473], [-85.6543189, 41.9330546]], "type": "LineString"}, "id": "316", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203048266, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6568045, 41.9313701, -85.6559565, 41.9313701], "geometry": {"coordinates": [[-85.6568045, 41.9313701], [-85.6559565, 41.9313701]], "type": "LineString"}, "id": "317", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237742, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6582076, 41.9254769, -85.6579836, 41.9254828], "geometry": {"coordinates": [[-85.6582076, 41.9254828], [-85.6579836, 41.9254769]], "type": "LineString"}, "id": "318", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 895396432, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558087, 41.9416684, -85.6540968, 41.9416764], "geometry": {"coordinates": [[-85.6558087, 41.9416684], [-85.654344, 41.9416704], [-85.6540968, 41.9416764]], "type": "LineString"}, "id": "319", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771092, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6599876, 41.9248778, -85.6599028, 41.9253801], "geometry": {"coordinates": [[-85.6599294, 41.9248778], [-85.6599028, 41.9251596], [-85.6599205, 41.9252583], [-85.6599876, 41.9253801]], "type": "LineString"}, "id": "320", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 770566425, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.623571, 41.933232, -85.623501, 41.940124], "geometry": {"coordinates": [[-85.623501, 41.933232], [-85.623511, 41.934216], [-85.6235312, 41.9362084], [-85.6235488, 41.9371726], [-85.6235512, 41.9381718], [-85.6235609, 41.9391301], [-85.623562, 41.9392411], [-85.6235688, 41.9399111], [-85.623571, 41.940124]], "type": "LineString"}, "id": "321", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "9th Street", "oneway": null, "osm_id": 17965088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9351998, -85.6277374, 41.9361846], "geometry": {"coordinates": [[-85.6277618, 41.9361846], [-85.6277374, 41.9351998]], "type": "LineString"}, "id": "322", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Madison Place", "oneway": null, "osm_id": 17964837, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6303395, 41.9301668, -85.6303008, 41.9311528], "geometry": {"coordinates": [[-85.6303008, 41.9311528], [-85.6303343, 41.9310365], [-85.6303395, 41.9309321], [-85.6303325, 41.9307206], [-85.6303237, 41.9304777], [-85.6303132, 41.9301668]], "type": "LineString"}, "id": "323", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199686, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6270441, 41.9321659, -85.62478, 41.932173], "geometry": {"coordinates": [[-85.62478, 41.93217], [-85.625695, 41.932173], [-85.6263674, 41.9321695], [-85.6270441, 41.9321659]], "type": "LineString"}, "id": "324", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pearl Street", "oneway": null, "osm_id": 17966110, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6284109, 41.9268496, -85.6277991, 41.9351953], "geometry": {"coordinates": [[-85.6277991, 41.9268496], [-85.6278389, 41.9273577], [-85.6280779, 41.928322], [-85.6283251, 41.9292335], [-85.628329, 41.930182], [-85.6283399, 41.9311659], [-85.62834, 41.932161], [-85.628365, 41.933177], [-85.628389, 41.934216], [-85.6284109, 41.9351953]], "type": "LineString"}, "id": "325", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Street", "oneway": null, "osm_id": 17967773, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6306407, 41.9378698, -85.6304039, 41.9381998], "geometry": {"coordinates": [[-85.6304039, 41.9381998], [-85.6304039, 41.9378774], [-85.6306407, 41.9378698]], "type": "LineString"}, "id": "326", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915501173, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346517, 41.948613, -85.632278, 41.948626], "geometry": {"coordinates": [[-85.632278, 41.948613], [-85.633214, 41.948618], [-85.6336739, 41.9486209], [-85.6339222, 41.9486225], [-85.6346517, 41.948626]], "type": "LineString"}, "id": "327", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Kelsey Street", "oneway": null, "osm_id": 17966581, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348268, 41.9621767, -85.6280573, 41.9635333], "geometry": {"coordinates": [[-85.6348268, 41.9635099], [-85.6343133, 41.9635134], [-85.633724, 41.9635173], [-85.6328045, 41.9635333], [-85.6326614, 41.9635245], [-85.6325575, 41.9634925], [-85.6324928, 41.9634531], [-85.6324226, 41.963386], [-85.6323791, 41.9633288], [-85.6323599, 41.963252], [-85.6323498, 41.9630617], [-85.632334, 41.9624268], [-85.6323117, 41.9623591], [-85.6322773, 41.9623026], [-85.6322075, 41.9622522], [-85.6321286, 41.9622131], [-85.6320233, 41.962192], [-85.6318189, 41.9621777], [-85.630998, 41.9621767], [-85.6309508, 41.9621767], [-85.6295207, 41.9621913], [-85.6294968, 41.9621916], [-85.6280573, 41.9622134]], "type": "LineString"}, "id": "328", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312579, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6309653, 41.9618094, -85.6302817, 41.9618205], "geometry": {"coordinates": [[-85.6309653, 41.961811], [-85.630858, 41.9618094], [-85.6302817, 41.9618205]], "type": "LineString"}, "id": "329", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Bowman Place", "oneway": null, "osm_id": 772377036, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191448, 41.9355963, -85.6190825, 41.9362259], "geometry": {"coordinates": [[-85.6191081, 41.9362259], [-85.6191448, 41.9357217], [-85.6190825, 41.9355963]], "type": "LineString"}, "id": "330", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Balsam Drive", "oneway": null, "osm_id": 17965673, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632051, 41.9647947, -85.6319408, 41.9656501], "geometry": {"coordinates": [[-85.6320427, 41.9647947], [-85.632051, 41.9654321], [-85.632039, 41.965504], [-85.6320068, 41.9655744], [-85.6319408, 41.9656501]], "type": "LineString"}, "id": "331", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Nixon Lane", "oneway": "no", "osm_id": 203968022, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633274, 41.949893, -85.633258, 41.951159], "geometry": {"coordinates": [[-85.633274, 41.951159], [-85.633258, 41.949893]], "type": "LineString"}, "id": "332", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": "yes", "osm_id": 772835854, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6121257, 41.9561056, -85.6119049, 41.9562902], "geometry": {"coordinates": [[-85.6119049, 41.9561069], [-85.6121236, 41.9561056], [-85.6121257, 41.9562902]], "type": "LineString"}, "id": "333", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607632234, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6163767, 41.9481239, -85.6144187, 41.9488253], "geometry": {"coordinates": [[-85.6163767, 41.9481239], [-85.616371, 41.948163], [-85.6161038, 41.9481652], [-85.6156704, 41.9481688], [-85.6153154, 41.9481697], [-85.6152578, 41.9481447], [-85.615145, 41.9481385], [-85.6145535, 41.9482674], [-85.61451, 41.9482866], [-85.614421, 41.948288], [-85.6144187, 41.9486317], [-85.6148203, 41.9488253]], "type": "LineString"}, "id": "334", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6302867, 41.9537226, -85.6302752, 41.954691], "geometry": {"coordinates": [[-85.6302775, 41.954691], [-85.6302799, 41.9546038], [-85.6302867, 41.9543608], [-85.6302821, 41.9541181], [-85.6302752, 41.9537226]], "type": "LineString"}, "id": "335", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871048836, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621825, 41.9299782, -85.6198048, 41.9328101], "geometry": {"coordinates": [[-85.621825, 41.9324107], [-85.6217961, 41.9303948], [-85.6216695, 41.9301314], [-85.6214034, 41.9299782], [-85.6210601, 41.9299894], [-85.6210686, 41.9304204], [-85.6208476, 41.9304188], [-85.6206481, 41.9307301], [-85.6201674, 41.9307285], [-85.6200816, 41.9309137], [-85.6198048, 41.9309137], [-85.6198434, 41.9328037], [-85.6214635, 41.9328101], [-85.6214678, 41.9326089], [-85.6215242, 41.9325716]], "type": "LineString"}, "id": "336", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945137, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347645, 41.9459809, -85.6347551, 41.9461525], "geometry": {"coordinates": [[-85.6347551, 41.9459809], [-85.6347591, 41.9460545], [-85.6347645, 41.9461525]], "type": "LineString"}, "id": "337", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427782, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6574848, 41.9408564, -85.6572676, 41.9408604], "geometry": {"coordinates": [[-85.6574848, 41.9408604], [-85.6572676, 41.9408564]], "type": "LineString"}, "id": "338", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771075, "osm_type": "ways_line", "smoothness": null, "surface": "concrete", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6211299, 41.933254, -85.62111, 41.9381784], "geometry": {"coordinates": [[-85.62111, 41.933254], [-85.6211132, 41.9340341], [-85.6211143, 41.9343139], [-85.621122, 41.9362218], [-85.6211299, 41.9381784]], "type": "LineString"}, "id": "339", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "11th Street", "oneway": null, "osm_id": 17968119, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6267423, 41.9371679, -85.6265038, 41.9375541], "geometry": {"coordinates": [[-85.6267423, 41.9371679], [-85.6267377, 41.9374836], [-85.6266509, 41.9375524], [-85.6265038, 41.9375541], [-85.6265186, 41.9371683]], "type": "LineString"}, "id": "340", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 785806315, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.61568, 41.9481256, -85.6156701, 41.9488411], "geometry": {"coordinates": [[-85.6156701, 41.9481256], [-85.6156704, 41.9481688], [-85.6156705, 41.9481829], [-85.61568, 41.9488411]], "type": "LineString"}, "id": "341", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839086, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624937, 41.949237, -85.620087, 41.94924], "geometry": {"coordinates": [[-85.620087, 41.94924], [-85.6210164, 41.9492394], [-85.622769, 41.9492383], [-85.6231422, 41.9492381], [-85.6233971, 41.9492379], [-85.6236306, 41.9492378], [-85.6239144, 41.9492376], [-85.6241492, 41.9492375], [-85.624937, 41.949237]], "type": "LineString"}, "id": "342", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "8th Avenue", "oneway": null, "osm_id": 17965159, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6182875, 41.9531222, -85.6179141, 41.9535163], "geometry": {"coordinates": [[-85.6182875, 41.9531222], [-85.6179141, 41.9535163]], "type": "LineString"}, "id": "343", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837936, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620172, 41.945627, -85.6177994, 41.9545412], "geometry": {"coordinates": [[-85.620172, 41.945627], [-85.620101, 41.945811], [-85.620081, 41.945937], [-85.620076, 41.9462726], [-85.620072, 41.946538], [-85.6200878, 41.9474419], [-85.620088, 41.94758], [-85.620087, 41.947701], [-85.620087, 41.9487445], [-85.620087, 41.94924], [-85.6201059, 41.950132], [-85.620103, 41.951], [-85.620133, 41.951538], [-85.620141, 41.951901], [-85.62013, 41.952104], [-85.6201163, 41.9522096], [-85.620104, 41.952305], [-85.620073, 41.9524484], [-85.620062, 41.952499], [-85.619993, 41.952702], [-85.619879, 41.952986], [-85.619689, 41.95329], [-85.619508, 41.953521], [-85.619286, 41.953728], [-85.618925, 41.954007], [-85.618638, 41.954189], [-85.61831, 41.954358], [-85.6180137, 41.954474], [-85.6177994, 41.9545412]], "type": "LineString"}, "id": "344", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 17967415, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297488, 41.9576384, -85.6295752, 41.9576394], "geometry": {"coordinates": [[-85.6295752, 41.9576384], [-85.6297488, 41.9576394]], "type": "LineString"}, "id": "345", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341313251, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6148042, 41.9547511, -85.6147921, 41.9550773], "geometry": {"coordinates": [[-85.6148042, 41.9547511], [-85.6147978, 41.9549229], [-85.6147921, 41.9550773]], "type": "LineString"}, "id": "346", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 773113219, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272027, 41.9402383, -85.6271952, 41.9407147], "geometry": {"coordinates": [[-85.6271952, 41.9402383], [-85.6272027, 41.9407147]], "type": "LineString"}, "id": "347", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550665, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6117323, 41.9468783, -85.6114576, 41.947489], "geometry": {"coordinates": [[-85.6114576, 41.947489], [-85.6114701, 41.946966], [-85.6115128, 41.9469388], [-85.6117323, 41.9468783]], "type": "LineString"}, "id": "348", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 779904649, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6236306, 41.9488966, -85.6236306, 41.9492378], "geometry": {"coordinates": [[-85.6236306, 41.9488966], [-85.6236306, 41.9492378]], "type": "LineString"}, "id": "349", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964876, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167607, 41.9481829, -85.614817, 41.9501016], "geometry": {"coordinates": [[-85.6156705, 41.9481829], [-85.6153097, 41.9484555], [-85.6148203, 41.9488253], [-85.614817, 41.9495599], [-85.6148773, 41.9496595], [-85.6150263, 41.9497666], [-85.6152925, 41.9498463], [-85.6158712, 41.9500779], [-85.6159303, 41.9501016], [-85.6167607, 41.9501009]], "type": "LineString"}, "id": "350", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839087, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6283101, 41.9574414, -85.6283033, 41.9576717], "geometry": {"coordinates": [[-85.6283033, 41.9576717], [-85.6283101, 41.9574414]], "type": "LineString"}, "id": "351", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 263446669, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6114893, 41.9553039, -85.6102539, 41.9563076], "geometry": {"coordinates": [[-85.6109806, 41.9555109], [-85.6109826, 41.9553378], [-85.6110013, 41.9553117], [-85.6110386, 41.9553039], [-85.6114391, 41.9553065], [-85.6114811, 41.9553256], [-85.6114893, 41.955356], [-85.6114835, 41.9554689], [-85.6114648, 41.9554993], [-85.6114274, 41.9555071], [-85.6109806, 41.9555109], [-85.610595, 41.955514], [-85.610539, 41.9555245], [-85.6105086, 41.9555722], [-85.6105118, 41.9558474], [-85.6105168, 41.9562711], [-85.6105355, 41.9562954], [-85.6106779, 41.9563076], [-85.6107421, 41.9562824], [-85.6107538, 41.9562555], [-85.6107538, 41.9558943], [-85.6107433, 41.9558605], [-85.6107047, 41.9558474], [-85.6105118, 41.9558474], [-85.6102539, 41.9558449]], "type": "LineString"}, "id": "352", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755813391, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6158712, 41.9500779, -85.6143257, 41.9500914], "geometry": {"coordinates": [[-85.6158712, 41.9500779], [-85.6143257, 41.9500914]], "type": "LineString"}, "id": "353", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839098, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186404, 41.9371542, -85.6178179, 41.9372012], "geometry": {"coordinates": [[-85.6186404, 41.9371542], [-85.6178179, 41.9372012]], "type": "LineString"}, "id": "354", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Briarwood Court", "oneway": null, "osm_id": 17966967, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6244113, 41.9321465, -85.6235412, 41.9323636], "geometry": {"coordinates": [[-85.6244113, 41.9321465], [-85.6237633, 41.9321465], [-85.6237043, 41.9321505], [-85.623598, 41.9322319], [-85.6235412, 41.9323181], [-85.6235412, 41.9323636]], "type": "LineString"}, "id": "355", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6235412, 41.9322171, -85.6231536, 41.9323504], "geometry": {"coordinates": [[-85.6235412, 41.9323181], [-85.6234734, 41.9322321], [-85.6233831, 41.9322171], [-85.623265, 41.9322213], [-85.6231911, 41.9322506], [-85.6231546, 41.9322892], [-85.6231536, 41.9323504]], "type": "LineString"}, "id": "356", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230947276, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6270222, 41.9571873, -85.6269223, 41.9573376], "geometry": {"coordinates": [[-85.6270222, 41.9571873], [-85.6269223, 41.9573376]], "type": "LineString"}, "id": "357", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 322012461, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6448268, 41.9479609, -85.6444365, 41.9479676], "geometry": {"coordinates": [[-85.6448268, 41.9479676], [-85.6444365, 41.9479609]], "type": "LineString"}, "id": "358", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942239, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567956, 41.9302828, -85.6559448, 41.9302851], "geometry": {"coordinates": [[-85.6567956, 41.9302828], [-85.6559448, 41.9302851]], "type": "LineString"}, "id": "359", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237748, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.64167, 41.9425889, -85.6415366, 41.942783], "geometry": {"coordinates": [[-85.64167, 41.9425889], [-85.6416457, 41.9426726], [-85.6416303, 41.9427268], [-85.6416008, 41.9427677], [-85.6415366, 41.942783]], "type": "LineString"}, "id": "360", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486785499, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6313635, 41.967763, -85.6312506, 41.9678907], "geometry": {"coordinates": [[-85.6313635, 41.9678907], [-85.6312506, 41.967763]], "type": "LineString"}, "id": "361", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 765593443, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6083939, 41.945652, -85.6082831, 41.9457493], "geometry": {"coordinates": [[-85.6082831, 41.945652], [-85.6083939, 41.9457493]], "type": "LineString"}, "id": "362", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 238879871, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497605, 41.9273083, -85.649414, 41.9275819], "geometry": {"coordinates": [[-85.6497574, 41.9275806], [-85.6494717, 41.9275819], [-85.6494408, 41.9275692], [-85.6494213, 41.9275371], [-85.649414, 41.9273491], [-85.6494327, 41.9273279], [-85.6494668, 41.9273171], [-85.6497605, 41.9273083]], "type": "LineString"}, "id": "363", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870704307, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6576992, 41.925439, -85.6574702, 41.9260938], "geometry": {"coordinates": [[-85.6576992, 41.9260938], [-85.6576224, 41.9259888], [-85.6575793, 41.9258746], [-85.6575155, 41.9257595], [-85.6574801, 41.9256409], [-85.6574702, 41.9255431], [-85.6574799, 41.925439]], "type": "LineString"}, "id": "364", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 817449284, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355692, 41.9330969, -85.634787, 41.933145], "geometry": {"coordinates": [[-85.6355692, 41.9330969], [-85.6352672, 41.9331314], [-85.634787, 41.933145]], "type": "LineString"}, "id": "365", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Broadway Street", "oneway": null, "osm_id": 134150782, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6410644, 41.9280451, -85.6407748, 41.9280501], "geometry": {"coordinates": [[-85.6407748, 41.9280501], [-85.6410644, 41.9280451]], "type": "LineString"}, "id": "366", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143996, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6516716, 41.9217173, -85.6516201, 41.9241414], "geometry": {"coordinates": [[-85.651626, 41.9241414], [-85.6516201, 41.9231627], [-85.6516225, 41.9227757], [-85.6516362, 41.9224091], [-85.651648, 41.92207], [-85.6516716, 41.9217173]], "type": "LineString"}, "id": "367", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 121198735, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.618485, 41.943788, -85.6176438, 41.944528], "geometry": {"coordinates": [[-85.618485, 41.944528], [-85.6181731, 41.9442022], [-85.6180698, 41.9440585], [-85.6178802, 41.9439269], [-85.6176438, 41.943788]], "type": "LineString"}, "id": "368", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 607644647, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.616136, 41.9468753, -85.6158887, 41.9474632], "geometry": {"coordinates": [[-85.616136, 41.9474632], [-85.6161297, 41.9471822], [-85.6161227, 41.9468753], [-85.6158887, 41.9468753], [-85.6158939, 41.9471803], [-85.6161297, 41.9471822]], "type": "LineString"}, "id": "369", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 218004766, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6130832, 41.9466154, -85.6125677, 41.9474834], "geometry": {"coordinates": [[-85.6130832, 41.9474806], [-85.6130048, 41.9466512], [-85.6129837, 41.9466243], [-85.6129384, 41.9466154], [-85.612643, 41.9466311], [-85.6125857, 41.9466535], [-85.6125677, 41.9466894], [-85.6125898, 41.9471954], [-85.612602, 41.9474834]], "type": "LineString"}, "id": "370", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758366850, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620051, 41.9427278, -85.6194405, 41.9447384], "geometry": {"coordinates": [[-85.6200474, 41.9447384], [-85.620051, 41.94383], [-85.6199689, 41.9432106], [-85.6198622, 41.942836], [-85.6197195, 41.9427278], [-85.61958, 41.9427558], [-85.6194405, 41.9427837]], "type": "LineString"}, "id": "371", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 17964043, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6133599, 41.943327, -85.613027, 41.9454832], "geometry": {"coordinates": [[-85.613027, 41.943327], [-85.613204, 41.943682], [-85.613175, 41.944075], [-85.6132496, 41.9442728], [-85.6133493, 41.9443402], [-85.6133498, 41.9444141], [-85.6133531, 41.9449658], [-85.6133599, 41.9454832]], "type": "LineString"}, "id": "372", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17963071, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624882, 41.943801, -85.620051, 41.94383], "geometry": {"coordinates": [[-85.620051, 41.94383], [-85.621219, 41.943801], [-85.6213466, 41.9438023], [-85.621812, 41.943807], [-85.624882, 41.94382]], "type": "LineString"}, "id": "373", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "2nd Avenue", "oneway": null, "osm_id": 17965846, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297088, 41.9351902, -85.624792, 41.935214], "geometry": {"coordinates": [[-85.624792, 41.935214], [-85.6257179, 41.9352095], [-85.6264049, 41.9352062], [-85.627053, 41.9352031], [-85.6277374, 41.9351998], [-85.62811, 41.935198], [-85.6284109, 41.9351953], [-85.6290427, 41.9351928], [-85.6297088, 41.9351902]], "type": "LineString"}, "id": "374", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pleasant Street", "oneway": null, "osm_id": 17964767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6303635, 41.9331643, -85.6303478, 41.9341918], "geometry": {"coordinates": [[-85.6303635, 41.9331643], [-85.6303504, 41.9338642], [-85.6303478, 41.9341918]], "type": "LineString"}, "id": "375", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 341657297, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310036, 41.9301659, -85.6269, 41.930199], "geometry": {"coordinates": [[-85.6269, 41.930199], [-85.6276777, 41.9301897], [-85.628329, 41.930182], [-85.6296598, 41.9301676], [-85.6303132, 41.9301668], [-85.6310036, 41.9301659]], "type": "LineString"}, "id": "376", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Liberty Street", "oneway": null, "osm_id": 134150818, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310336, 41.929206, -85.630997, 41.9345237], "geometry": {"coordinates": [[-85.630997, 41.929206], [-85.6310036, 41.9301659], [-85.6310103, 41.931148], [-85.6310172, 41.932148], [-85.6310242, 41.9331609], [-85.6310313, 41.9341889], [-85.6310336, 41.9345237]], "type": "LineString"}, "id": "377", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "3rd Street", "oneway": null, "osm_id": 17966084, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272188, 41.9401381, -85.6271952, 41.9402383], "geometry": {"coordinates": [[-85.6272188, 41.9401381], [-85.6271952, 41.9402383]], "type": "LineString"}, "id": "378", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550662, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630754, 41.9406787, -85.6302265, 41.9411092], "geometry": {"coordinates": [[-85.6304899, 41.9411092], [-85.630754, 41.9409943], [-85.6307456, 41.9409574], [-85.6305425, 41.9407075], [-85.6304095, 41.9406787], [-85.6302265, 41.9407499]], "type": "LineString"}, "id": "379", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907939646, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6256839, 41.941201, -85.6256819, 41.9416496], "geometry": {"coordinates": [[-85.6256839, 41.9416496], [-85.6256819, 41.941201]], "type": "LineString"}, "id": "380", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871082474, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6286497, 41.9446764, -85.627629, 41.946498], "geometry": {"coordinates": [[-85.6286375, 41.9446764], [-85.6286497, 41.9453531], [-85.6285942, 41.9454805], [-85.628481, 41.945611], [-85.627629, 41.946498]], "type": "LineString"}, "id": "381", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Garden Street", "oneway": null, "osm_id": 17967561, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641876, 41.954652, -85.6414548, 41.9557751], "geometry": {"coordinates": [[-85.6414548, 41.9557751], [-85.6415596, 41.9555848], [-85.6416526, 41.9554262], [-85.6417453, 41.9552874], [-85.6418333, 41.955147], [-85.6418673, 41.954987], [-85.641876, 41.954946], [-85.641871, 41.954652]], "type": "LineString"}, "id": "382", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963817, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637732, 41.932761, -85.6370124, 41.9413618], "geometry": {"coordinates": [[-85.637732, 41.932761], [-85.637688, 41.93398], [-85.637685, 41.934223], [-85.6376468, 41.9350232], [-85.637564, 41.937028], [-85.6374603, 41.9381749], [-85.637424, 41.938692], [-85.6373321, 41.9394599], [-85.6373179, 41.9395789], [-85.637255, 41.940104], [-85.6370184, 41.9411346], [-85.6370124, 41.9413618]], "type": "LineString"}, "id": "383", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Constantine Street", "oneway": null, "osm_id": 379694418, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6401808, 41.929221, -85.63928, 41.9400712], "geometry": {"coordinates": [[-85.63928, 41.929221], [-85.63935, 41.929396], [-85.6394655, 41.9296875], [-85.6397046, 41.9302911], [-85.6397659, 41.9304665], [-85.6400258, 41.9311016], [-85.640039, 41.931135], [-85.640143, 41.931462], [-85.6401808, 41.9318085], [-85.6401365, 41.9327199], [-85.6401324, 41.9327998], [-85.6400729, 41.9339588], [-85.6400709, 41.9349957], [-85.640003, 41.936988], [-85.639983, 41.938174], [-85.639924, 41.939903], [-85.6399212, 41.9399845], [-85.6399182, 41.9400712]], "type": "LineString"}, "id": "384", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Lincoln Avenue", "oneway": null, "osm_id": 17966039, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6311606, 41.9649323, -85.6304211, 41.9651812], "geometry": {"coordinates": [[-85.6311606, 41.9651699], [-85.6309068, 41.9651812], [-85.6308256, 41.9651723], [-85.6307439, 41.9651492], [-85.6306545, 41.9651145], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "385", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "McKinley Court", "oneway": "no", "osm_id": 203968020, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477046, 41.9363248, -85.6470406, 41.9363274], "geometry": {"coordinates": [[-85.6470406, 41.9363248], [-85.6471938, 41.9363254], [-85.6477046, 41.9363274]], "type": "LineString"}, "id": "386", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243988, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361542, 41.9469079, -85.6354173, 41.946915], "geometry": {"coordinates": [[-85.6354173, 41.9469082], [-85.635443, 41.9469079], [-85.6360275, 41.9469093], [-85.6361542, 41.946915]], "type": "LineString"}, "id": "387", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643141, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513166, 41.9483563, -85.6508009, 41.9485454], "geometry": {"coordinates": [[-85.6513166, 41.9483956], [-85.6511937, 41.9485076], [-85.6510319, 41.9485454], [-85.6508532, 41.9485351], [-85.6508009, 41.9484712], [-85.6508224, 41.9483563]], "type": "LineString"}, "id": "388", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942226, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453541, 41.9485747, -85.6450852, 41.9485835], "geometry": {"coordinates": [[-85.6450852, 41.9485747], [-85.6453541, 41.9485835]], "type": "LineString"}, "id": "389", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942801, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6173806, 41.9522542, -85.6171841, 41.9523658], "geometry": {"coordinates": [[-85.6173806, 41.9523658], [-85.6171841, 41.9522542]], "type": "LineString"}, "id": "390", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839362, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638243, 41.9426146, -85.6382347, 41.943674], "geometry": {"coordinates": [[-85.6382347, 41.9426146], [-85.6382354, 41.9427058], [-85.6382376, 41.942979], [-85.638243, 41.943674]], "type": "LineString"}, "id": "391", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Andrews Street", "oneway": null, "osm_id": 17967397, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469224, 41.9425483, -85.6462541, 41.9431332], "geometry": {"coordinates": [[-85.6469224, 41.9431332], [-85.6462798, 41.9431094], [-85.6462688, 41.9428685], [-85.6462575, 41.942623], [-85.6462541, 41.9425483]], "type": "LineString"}, "id": "392", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942832, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626685, 41.9600286, -85.6252031, 41.9607895], "geometry": {"coordinates": [[-85.626685, 41.9600286], [-85.6259421, 41.9600346], [-85.6258026, 41.9600585], [-85.6256926, 41.9601004], [-85.6256175, 41.9601623], [-85.6255639, 41.9602161], [-85.6253077, 41.960629], [-85.6252249, 41.960756], [-85.6252031, 41.9607895]], "type": "LineString"}, "id": "393", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550705, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6266692, 41.958631, -85.6264499, 41.958692], "geometry": {"coordinates": [[-85.6266692, 41.958692], [-85.6264499, 41.958631]], "type": "LineString"}, "id": "394", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550712, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558101, 41.9409781, -85.6543418, 41.9409841], "geometry": {"coordinates": [[-85.6543418, 41.9409841], [-85.6558101, 41.9409781]], "type": "LineString"}, "id": "395", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771088, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483346, 41.9347757, -85.646913, 41.9347803], "geometry": {"coordinates": [[-85.6483346, 41.9347803], [-85.6482319, 41.9347766], [-85.6471542, 41.9347779], [-85.6470391, 41.9347799], [-85.646913, 41.9347757]], "type": "LineString"}, "id": "396", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800863, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508974, 41.9494258, -85.6503645, 41.949635], "geometry": {"coordinates": [[-85.6508974, 41.9494258], [-85.6508476, 41.9495196], [-85.6507671, 41.9495956], [-85.6506257, 41.949635], [-85.6503645, 41.9495882]], "type": "LineString"}, "id": "397", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 848056397, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227517, 41.953621, -85.6221989, 41.9544535], "geometry": {"coordinates": [[-85.6226758, 41.9544535], [-85.6226934, 41.9541331], [-85.6227517, 41.9536572], [-85.6222961, 41.953621], [-85.6221989, 41.9539101], [-85.6226934, 41.9541331]], "type": "LineString"}, "id": "398", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758296780, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.646656, 41.939869, -85.642213, 41.940043], "geometry": {"coordinates": [[-85.642213, 41.940043], [-85.643056, 41.94001], [-85.6441924, 41.939951], [-85.6443194, 41.9399444], [-85.644384, 41.939941], [-85.6453506, 41.9399002], [-85.6457497, 41.9398834], [-85.645806, 41.9398831], [-85.6461568, 41.9398809], [-85.646656, 41.939869]], "type": "LineString"}, "id": "399", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 382320149, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277007, 41.9301897, -85.6276755, 41.9311702], "geometry": {"coordinates": [[-85.6277007, 41.9311702], [-85.627698, 41.9310228], [-85.6276755, 41.9306834], [-85.6276777, 41.9301897]], "type": "LineString"}, "id": "400", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199684, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6133576, 41.955183, -85.6118505, 41.9551912], "geometry": {"coordinates": [[-85.6133576, 41.9551912], [-85.6118505, 41.955183]], "type": "LineString"}, "id": "401", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179344, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6138327, 41.9561069, -85.6119049, 41.9562915], "geometry": {"coordinates": [[-85.6138327, 41.9562795], [-85.6121257, 41.9562902], [-85.611907, 41.9562915], [-85.6119049, 41.9561069]], "type": "LineString"}, "id": "402", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17964174, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6516716, 41.9217173, -85.651441, 41.925523], "geometry": {"coordinates": [[-85.6516716, 41.9217173], [-85.6516, 41.9219492], [-85.6515575, 41.9221334], [-85.6515197, 41.922329], [-85.6514905, 41.9225228], [-85.6514682, 41.9227146], [-85.6514553, 41.9228713], [-85.6514511, 41.9230459], [-85.651441, 41.9234293], [-85.6514551, 41.925523]], "type": "LineString"}, "id": "403", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 929692960, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500564, 41.9317864, -85.6500538, 41.9323466], "geometry": {"coordinates": [[-85.6500538, 41.9317864], [-85.6500548, 41.9319914], [-85.6500556, 41.9321713], [-85.6500564, 41.9323466]], "type": "LineString"}, "id": "404", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116841, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507019, 41.9306045, -85.6506968, 41.9314139], "geometry": {"coordinates": [[-85.6507019, 41.9314139], [-85.6506968, 41.9306045]], "type": "LineString"}, "id": "405", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612676, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470951, 41.9299668, -85.6462097, 41.9299795], "geometry": {"coordinates": [[-85.6470951, 41.9299668], [-85.6468592, 41.9299702], [-85.6466655, 41.929973], [-85.6464324, 41.9299763], [-85.6462097, 41.9299795]], "type": "LineString"}, "id": "406", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607644867, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6466519, 41.9327884, -85.6458042, 41.9330851], "geometry": {"coordinates": [[-85.6466519, 41.9330735], [-85.6466467, 41.932859], [-85.6466053, 41.9328115], [-85.6465448, 41.9327884], [-85.6462388, 41.932792], [-85.645894, 41.9327961], [-85.645837, 41.9328257], [-85.645806, 41.9328732], [-85.6458042, 41.9330851]], "type": "LineString"}, "id": "407", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870745192, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6455734, 41.9326543, -85.6442279, 41.9328387], "geometry": {"coordinates": [[-85.6442279, 41.9328387], [-85.6444291, 41.9328349], [-85.6455734, 41.9328206], [-85.6455689, 41.9327343], [-85.6455686, 41.9327016], [-85.6455682, 41.9326543]], "type": "LineString"}, "id": "408", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203984750, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502843, 41.9363242, -85.6502344, 41.9385482], "geometry": {"coordinates": [[-85.6502585, 41.9385482], [-85.650247, 41.938474], [-85.6502362, 41.9383918], [-85.6502344, 41.9383404], [-85.6502386, 41.9383038], [-85.6502669, 41.938231], [-85.6502771, 41.9381998], [-85.6502819, 41.9381747], [-85.6502843, 41.9381247], [-85.650276, 41.9370354], [-85.6502712, 41.9363242]], "type": "LineString"}, "id": "409", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 993698648, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520907, 41.9369457, -85.651765, 41.9369467], "geometry": {"coordinates": [[-85.651765, 41.9369457], [-85.6519498, 41.9369463], [-85.6520907, 41.9369467]], "type": "LineString"}, "id": "410", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612668, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433166, 41.9360524, -85.642822, 41.9360564], "geometry": {"coordinates": [[-85.642822, 41.9360564], [-85.6433166, 41.9360524]], "type": "LineString"}, "id": "411", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158511, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339197, 41.9323903, -85.6326939, 41.9331508], "geometry": {"coordinates": [[-85.6339197, 41.9331474], [-85.6339183, 41.9327527], [-85.6339011, 41.932556], [-85.6337878, 41.9324476], [-85.6336642, 41.9324006], [-85.6334849, 41.9323903], [-85.6332398, 41.9323997], [-85.633087, 41.9324025], [-85.6329393, 41.9324391], [-85.6328268, 41.9325087], [-85.6327344, 41.9328911], [-85.6326939, 41.9331508]], "type": "LineString"}, "id": "412", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871410673, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6410413, 41.9295065, -85.640661, 41.9300769], "geometry": {"coordinates": [[-85.640661, 41.9300769], [-85.6408065, 41.9298225], [-85.640972, 41.9297978], [-85.6410413, 41.9295065]], "type": "LineString"}, "id": "413", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331310949, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6412224, 41.9317751, -85.6401808, 41.931841], "geometry": {"coordinates": [[-85.6412224, 41.931841], [-85.6410665, 41.9317907], [-85.6409052, 41.9317751], [-85.6403781, 41.931796], [-85.6401808, 41.9318085]], "type": "LineString"}, "id": "414", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Court", "oneway": null, "osm_id": 17967609, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436547, 41.9362871, -85.6423094, 41.936583], "geometry": {"coordinates": [[-85.6423094, 41.936583], [-85.6426803, 41.93657], [-85.6427087, 41.936569], [-85.6431884, 41.9365749], [-85.6434958, 41.9365631], [-85.6436123, 41.9365315], [-85.6436547, 41.9364251], [-85.6436282, 41.936362], [-85.6435461, 41.9362989], [-85.643305, 41.9362871], [-85.643297, 41.9363423], [-85.6426767, 41.9363473], [-85.6423154, 41.9363503]], "type": "LineString"}, "id": "415", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158506, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6482837, 41.9419441, -85.6482342, 41.9425314], "geometry": {"coordinates": [[-85.6482342, 41.9425314], [-85.6482402, 41.9424606], [-85.6482837, 41.9419441]], "type": "LineString"}, "id": "416", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942153, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6190825, 41.9355963, -85.6173384, 41.9356126], "geometry": {"coordinates": [[-85.6173384, 41.9356126], [-85.618837, 41.9356072], [-85.6190825, 41.9355963]], "type": "LineString"}, "id": "417", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Linden Drive", "oneway": null, "osm_id": 17966999, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348717, 41.9671614, -85.634583, 41.9673998], "geometry": {"coordinates": [[-85.6348717, 41.9673998], [-85.634583, 41.9673811], [-85.6345898, 41.9672871], [-85.6345981, 41.9671726], [-85.6348678, 41.9671614]], "type": "LineString"}, "id": "418", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870652350, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635055, 41.959009, -85.634767, 41.9593361], "geometry": {"coordinates": [[-85.635055, 41.9593361], [-85.6350104, 41.9590274], [-85.634767, 41.959009]], "type": "LineString"}, "id": "419", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6338939, 41.9424929, -85.6337406, 41.9428687], "geometry": {"coordinates": [[-85.6337406, 41.9424929], [-85.6338939, 41.9428687]], "type": "LineString"}, "id": "420", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203974067, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638075, 41.949872, -85.634668, 41.9498803], "geometry": {"coordinates": [[-85.634668, 41.949875], [-85.6354595, 41.9498778], [-85.636188, 41.9498803], [-85.6374092, 41.9498755], [-85.638075, 41.949872]], "type": "LineString"}, "id": "421", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Bennett Street", "oneway": null, "osm_id": 17967208, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6399012, 41.9523817, -85.6392066, 41.9523886], "geometry": {"coordinates": [[-85.6392066, 41.9523886], [-85.6399012, 41.9523817]], "type": "LineString"}, "id": "422", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wheeler Street", "oneway": null, "osm_id": 818299135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6379373, 41.9583124, -85.6376092, 41.9591914], "geometry": {"coordinates": [[-85.6376116, 41.9583124], [-85.6376092, 41.9585073], [-85.6377528, 41.9585411], [-85.637768, 41.9585481], [-85.6377844, 41.9585629], [-85.6379338, 41.9587903], [-85.6379373, 41.9588294], [-85.6378999, 41.9591914]], "type": "LineString"}, "id": "423", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 770562235, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6544006, 41.9306291, -85.6524544, 41.9325282], "geometry": {"coordinates": [[-85.653541, 41.9325282], [-85.6535382, 41.9318336], [-85.6535371, 41.931569], [-85.6533195, 41.9315687], [-85.6531239, 41.9315684], [-85.6529412, 41.9315681], [-85.6527327, 41.9315678], [-85.6525822, 41.9315676], [-85.6525486, 41.9315676], [-85.6524621, 41.9315132], [-85.6524544, 41.930662], [-85.6525025, 41.9306348], [-85.6527224, 41.9306345], [-85.6529206, 41.9306343], [-85.6531136, 41.930634], [-85.6533246, 41.9306338], [-85.6535563, 41.9306335], [-85.6538291, 41.9306308], [-85.6540093, 41.9306303], [-85.6542126, 41.9306296], [-85.6543909, 41.9306291], [-85.6544006, 41.9315304], [-85.6543217, 41.9315747], [-85.6542075, 41.9315739], [-85.6540221, 41.9315725], [-85.6538265, 41.9315711], [-85.6535371, 41.931569]], "type": "LineString"}, "id": "424", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843131, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517418, 41.9307014, -85.6514005, 41.9313059], "geometry": {"coordinates": [[-85.6517418, 41.9313059], [-85.6517097, 41.9311351], [-85.6516926, 41.9307949], [-85.6516817, 41.9307636], [-85.6516624, 41.9307356], [-85.6516294, 41.9307155], [-85.6515868, 41.9307014], [-85.6515378, 41.9307021], [-85.6514915, 41.9307079], [-85.6514547, 41.9307237], [-85.6514005, 41.930756]], "type": "LineString"}, "id": "425", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 929692959, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642822, 41.9360551, -85.6427227, 41.9360564], "geometry": {"coordinates": [[-85.6427227, 41.9360551], [-85.642822, 41.9360564]], "type": "LineString"}, "id": "426", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158512, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": "building_passage", "width": null}, "type": "Feature"}, {"bbox": [-85.642441, 41.9360595, -85.6423229, 41.9360597], "geometry": {"coordinates": [[-85.6423229, 41.9360597], [-85.642441, 41.9360595]], "type": "LineString"}, "id": "427", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158513, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6599876, 41.9253801, -85.6593087, 41.9255834], "geometry": {"coordinates": [[-85.6599876, 41.9253801], [-85.6593087, 41.9255834]], "type": "LineString"}, "id": "428", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": null, "osm_id": 1010837499, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6574017, 41.9425622, -85.6562336, 41.9427637], "geometry": {"coordinates": [[-85.6574017, 41.9427637], [-85.6572032, 41.942646], [-85.6570584, 41.9426141], [-85.6565031, 41.9426141], [-85.6564441, 41.9425742], [-85.656361, 41.9425622], [-85.6562336, 41.9425622]], "type": "LineString"}, "id": "429", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771079, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504371, 41.938891, -85.650437, 41.9395839], "geometry": {"coordinates": [[-85.6504371, 41.938891], [-85.650437, 41.9394413], [-85.650437, 41.9395839]], "type": "LineString"}, "id": "430", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488055000, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521217, 41.9384842, -85.6517686, 41.9389745], "geometry": {"coordinates": [[-85.6517717, 41.9389745], [-85.6519443, 41.9389726], [-85.6521217, 41.9389706], [-85.6520944, 41.9385648], [-85.6519959, 41.9384842], [-85.651947, 41.9384875], [-85.6517686, 41.9384994]], "type": "LineString"}, "id": "431", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612665, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6356282, 41.9433182, -85.6354227, 41.9434326], "geometry": {"coordinates": [[-85.6354227, 41.9434326], [-85.6355248, 41.9433702], [-85.6356282, 41.9433182]], "type": "LineString"}, "id": "432", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203988296, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450922, 41.9487232, -85.6446931, 41.9490653], "geometry": {"coordinates": [[-85.6450922, 41.9490611], [-85.6447007, 41.9490653], [-85.644697, 41.9489013], [-85.6446931, 41.9487261], [-85.6450873, 41.9487232]], "type": "LineString"}, "id": "433", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 218004774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355913, 41.9596741, -85.6347749, 41.9601058], "geometry": {"coordinates": [[-85.6347872, 41.9600621], [-85.6350775, 41.960073], [-85.6351696, 41.9601058], [-85.6355219, 41.9601028], [-85.6355686, 41.9600889], [-85.6355766, 41.9600512], [-85.6355913, 41.9597197], [-85.635582, 41.9596959], [-85.6355379, 41.959681], [-85.6351349, 41.9596741], [-85.6350588, 41.9597277], [-85.6347749, 41.9597307]], "type": "LineString"}, "id": "434", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 870710882, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6515836, 41.9475306, -85.6513422, 41.9478815], "geometry": {"coordinates": [[-85.6513422, 41.9475306], [-85.6513728, 41.9478815], [-85.6515836, 41.9478792]], "type": "LineString"}, "id": "435", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942229, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6170655, 41.9585743, -85.6158923, 41.959089], "geometry": {"coordinates": [[-85.6170514, 41.9585743], [-85.6170655, 41.9586731], [-85.6170271, 41.9587457], [-85.61679, 41.9588546], [-85.6167132, 41.9588987], [-85.6165912, 41.9589117], [-85.6163784, 41.9589039], [-85.6162738, 41.9589117], [-85.6161552, 41.958961], [-85.6160506, 41.9590284], [-85.6158923, 41.959089]], "type": "LineString"}, "id": "436", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 907675124, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.625004, 41.9391225, -85.6249787, 41.9391994], "geometry": {"coordinates": [[-85.625004, 41.9391225], [-85.6249916, 41.9391603], [-85.6249787, 41.9391994]], "type": "LineString"}, "id": "437", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 936114253, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629033, 41.93913, -85.6248366, 41.9391615], "geometry": {"coordinates": [[-85.629033, 41.93913], [-85.6289353, 41.9391307], [-85.6284289, 41.9391345], [-85.6272081, 41.9391437], [-85.6271023, 41.9391445], [-85.6249916, 41.9391603], [-85.6248366, 41.9391615]], "type": "LineString"}, "id": "438", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Mechanic Street", "oneway": null, "osm_id": 17964467, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6326206, 41.943454, -85.6321742, 41.944042], "geometry": {"coordinates": [[-85.6326206, 41.944042], [-85.6322573, 41.9436196], [-85.632244, 41.9436037], [-85.6322224, 41.9435777], [-85.6321742, 41.943454]], "type": "LineString"}, "id": "439", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427762, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6326206, 41.944042, -85.6315532, 41.9443218], "geometry": {"coordinates": [[-85.6315532, 41.9443218], [-85.6321031, 41.9442181], [-85.6322243, 41.9441971], [-85.6323043, 41.9441922], [-85.6326206, 41.944042]], "type": "LineString"}, "id": "440", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370302, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6287875, 41.9574373, -85.6287871, 41.9575633], "geometry": {"coordinates": [[-85.6287875, 41.9575633], [-85.6287871, 41.9574373]], "type": "LineString"}, "id": "441", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 283411427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.652757, 41.9419461, -85.6517774, 41.9420387], "geometry": {"coordinates": [[-85.6517774, 41.9420151], [-85.6518279, 41.9419826], [-85.6518736, 41.941961], [-85.6519209, 41.941949], [-85.6519532, 41.9419484], [-85.6520783, 41.9419461], [-85.6521916, 41.941989], [-85.6521913, 41.9420387], [-85.652757, 41.9420247]], "type": "LineString"}, "id": "442", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786587, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.610649, 41.9465907, -85.610421, 41.9474959], "geometry": {"coordinates": [[-85.6104711, 41.9474959], [-85.6104693, 41.9473109], [-85.610421, 41.9469657], [-85.6104586, 41.9468121], [-85.6105498, 41.9466805], [-85.610649, 41.9465907]], "type": "LineString"}, "id": "443", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755113210, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6472393, 41.9354016, -85.646972, 41.93705], "geometry": {"coordinates": [[-85.6472393, 41.93705], [-85.6472258, 41.9363681], [-85.6471938, 41.9363254], [-85.6471881, 41.9354104], [-85.646972, 41.9354016]], "type": "LineString"}, "id": "444", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243989, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348604, 41.9417449, -85.6347306, 41.9418906], "geometry": {"coordinates": [[-85.6348604, 41.9418906], [-85.6348113, 41.9418101], [-85.6347306, 41.9417449]], "type": "LineString"}, "id": "445", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974073, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6153832, 41.94353, -85.615311, 41.9442769], "geometry": {"coordinates": [[-85.615311, 41.94353], [-85.6153832, 41.9439443], [-85.6153248, 41.9442769]], "type": "LineString"}, "id": "446", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 607644645, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6527491, 41.9323975, -85.6515905, 41.9458477], "geometry": {"coordinates": [[-85.6527491, 41.9324308], [-85.6520686, 41.9324339], [-85.6519243, 41.9323975], [-85.6519134, 41.932416], [-85.6519167, 41.9325405], [-85.6519186, 41.9326382], [-85.6519201, 41.9326901], [-85.6519345, 41.9334359], [-85.651934, 41.9334826], [-85.6519346, 41.9335492], [-85.6519384, 41.9336631], [-85.6519384, 41.9342781], [-85.6519302, 41.9343569], [-85.6519281, 41.9343997], [-85.6519276, 41.934493], [-85.6519375, 41.9345431], [-85.6519391, 41.9352649], [-85.6519437, 41.9358415], [-85.6519436, 41.9359209], [-85.651942, 41.9359898], [-85.6519498, 41.9369463], [-85.6519447, 41.937881], [-85.6519479, 41.9380494], [-85.651947, 41.9384875], [-85.6519443, 41.9389726], [-85.6519448, 41.9392237], [-85.6519546, 41.9396027], [-85.651961, 41.9396821], [-85.6519644, 41.9397661], [-85.6519618, 41.9398837], [-85.6519526, 41.9404529], [-85.6519501, 41.9406308], [-85.6519546, 41.9408411], [-85.6519479, 41.9411743], [-85.6519515, 41.9413327], [-85.6519529, 41.9415133], [-85.6519481, 41.9417641], [-85.6519532, 41.9419484], [-85.6519567, 41.9422076], [-85.6519602, 41.942327], [-85.6519572, 41.9424625], [-85.6519601, 41.9426215], [-85.6519633, 41.942921], [-85.6519531, 41.9431603], [-85.6519463, 41.9433336], [-85.6519254, 41.9436276], [-85.6519067, 41.9438561], [-85.651906, 41.9439423], [-85.6518883, 41.9440996], [-85.6518495, 41.9443933], [-85.6518185, 41.9445566], [-85.6518087, 41.944643], [-85.6517598, 41.9448828], [-85.651722, 41.9451305], [-85.6516478, 41.9454687], [-85.6516215, 41.9456241], [-85.6516032, 41.9457275], [-85.6515905, 41.9458477]], "type": "LineString"}, "id": "447", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550679, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632801, 41.9436973, -85.6324881, 41.9440586], "geometry": {"coordinates": [[-85.6324881, 41.9436973], [-85.6327269, 41.9439731], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "448", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 847427774, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643219, 41.949261, -85.643195, 41.950829], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.6432033, 41.9498047], [-85.6432121, 41.9503811], [-85.643219, 41.950829]], "type": "LineString"}, "id": "449", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Douglas Avenue", "oneway": null, "osm_id": 379694370, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263682, 41.9311792, -85.6263582, 41.9321695], "geometry": {"coordinates": [[-85.6263674, 41.9321695], [-85.6263582, 41.9320794], [-85.6263632, 41.9315147], [-85.6263682, 41.9311792]], "type": "LineString"}, "id": "450", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199682, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6441108, 41.954987, -85.6418673, 41.9555861], "geometry": {"coordinates": [[-85.6441108, 41.9555861], [-85.6426838, 41.9550637], [-85.6425511, 41.9552083], [-85.6418673, 41.954987]], "type": "LineString"}, "id": "451", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776873, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637473, 41.955919, -85.634726, 41.955921], "geometry": {"coordinates": [[-85.634726, 41.955921], [-85.636276, 41.955919], [-85.637473, 41.95592]], "type": "LineString"}, "id": "452", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Adams Street", "oneway": null, "osm_id": 17967465, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628469, 41.9485589, -85.6278505, 41.9487126], "geometry": {"coordinates": [[-85.628469, 41.948674], [-85.6284447, 41.9486874], [-85.6284179, 41.9486996], [-85.6283829, 41.9487091], [-85.6283303, 41.9487126], [-85.6282638, 41.9487057], [-85.6282112, 41.948697], [-85.6281657, 41.9486796], [-85.6281167, 41.9486596], [-85.6280641, 41.9486423], [-85.6280244, 41.9486249], [-85.6279567, 41.9485971], [-85.6278505, 41.9485589]], "type": "LineString"}, "id": "453", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": null, "oneway": null, "osm_id": 571300380, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315778, 41.9443959, -85.6312065, 41.9444675], "geometry": {"coordinates": [[-85.6312065, 41.9444675], [-85.6315778, 41.9443959]], "type": "LineString"}, "id": "454", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "East Michigan Avenue", "oneway": null, "osm_id": 134150802, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6308731, 41.9378614, -85.6306407, 41.9381985], "geometry": {"coordinates": [[-85.6306532, 41.9381985], [-85.6306407, 41.9378698], [-85.6308731, 41.9378614]], "type": "LineString"}, "id": "455", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915501172, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322101, 41.9328273, -85.6322024, 41.933153], "geometry": {"coordinates": [[-85.6322101, 41.933153], [-85.6322024, 41.9328273]], "type": "LineString"}, "id": "456", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 774522887, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622643, 41.940128, -85.622643, 41.940635], "geometry": {"coordinates": [[-85.622643, 41.940128], [-85.622643, 41.940635]], "type": "LineString"}, "id": "457", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Green Street", "oneway": null, "osm_id": 17968113, "osm_type": "ways_line", "smoothness": null, "surface": "compacted", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.616526, 41.943048, -85.6159374, 41.945602], "geometry": {"coordinates": [[-85.616507, 41.943048], [-85.6165019, 41.9436452], [-85.616526, 41.943788], [-85.616504, 41.944002], [-85.6164685, 41.9442121], [-85.6159937, 41.9447348], [-85.6159374, 41.9449559], [-85.6159477, 41.9452077], [-85.6160772, 41.9454789], [-85.616136, 41.945602]], "type": "LineString"}, "id": "458", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962834, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62156, 41.9474354, -85.6211873, 41.9483424], "geometry": {"coordinates": [[-85.6213182, 41.9474354], [-85.6212872, 41.9479472], [-85.6211873, 41.9480286], [-85.6211945, 41.9483424], [-85.62156, 41.948333]], "type": "LineString"}, "id": "459", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "George Cole Drive", "oneway": null, "osm_id": 768080051, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348319, 41.9614829, -85.630972, 41.961495], "geometry": {"coordinates": [[-85.630972, 41.961495], [-85.631421, 41.961494], [-85.632182, 41.961493], [-85.6338879, 41.9614886], [-85.6348319, 41.9614829]], "type": "LineString"}, "id": "460", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kellogg Avenue", "oneway": null, "osm_id": 17967215, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6179589, 41.9526865, -85.6175543, 41.9528783], "geometry": {"coordinates": [[-85.6175543, 41.9526865], [-85.6179589, 41.9528783]], "type": "LineString"}, "id": "461", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839365, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634726, 41.955921, -85.6333299, 41.9559271], "geometry": {"coordinates": [[-85.6333299, 41.9559271], [-85.6340877, 41.9559238], [-85.634726, 41.955921]], "type": "LineString"}, "id": "462", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Adams Street", "oneway": null, "osm_id": 17967970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347273, 41.95538, -85.6342513, 41.9553876], "geometry": {"coordinates": [[-85.6347273, 41.95538], [-85.6342513, 41.9553876]], "type": "LineString"}, "id": "463", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416372, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6118411, 41.9547642, -85.6118363, 41.9548227], "geometry": {"coordinates": [[-85.6118411, 41.9547642], [-85.6118363, 41.9548227]], "type": "LineString"}, "id": "464", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652967184, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6118505, 41.9548227, -85.610665, 41.955183], "geometry": {"coordinates": [[-85.6118363, 41.9548227], [-85.6118505, 41.955183], [-85.6116226, 41.9551819], [-85.6108633, 41.955178], [-85.610665, 41.955177]], "type": "LineString"}, "id": "465", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179345, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6137873, 41.9556787, -85.6136206, 41.9562497], "geometry": {"coordinates": [[-85.6136362, 41.9562497], [-85.6136206, 41.9557015], [-85.6137873, 41.9556787]], "type": "LineString"}, "id": "466", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179339, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6250529, 41.9607536, -85.6249362, 41.9609441], "geometry": {"coordinates": [[-85.6249362, 41.9609441], [-85.6249689, 41.9608957], [-85.6250193, 41.9608095], [-85.6250529, 41.9607536]], "type": "LineString"}, "id": "467", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550710, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6607188, 41.9310794, -85.6599381, 41.9324537], "geometry": {"coordinates": [[-85.6603084, 41.9324537], [-85.6602924, 41.9318352], [-85.6606749, 41.9318282], [-85.6607063, 41.9318049], [-85.6607188, 41.9317582], [-85.6607059, 41.9312307], [-85.6607032, 41.9311144], [-85.6606906, 41.9310888], [-85.6606498, 41.9310794], [-85.6599945, 41.9310981], [-85.6599538, 41.9311074], [-85.6599381, 41.9311378], [-85.6599425, 41.9312466], [-85.6599632, 41.9317536], [-85.6599883, 41.9317956], [-85.6600384, 41.9318189], [-85.6602924, 41.9318352]], "type": "LineString"}, "id": "468", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782376531, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6607059, 41.9312307, -85.6599425, 41.9312466], "geometry": {"coordinates": [[-85.6607059, 41.9312307], [-85.6599425, 41.9312466]], "type": "LineString"}, "id": "469", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 903848918, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642862, 41.9271949, -85.6411335, 41.9273717], "geometry": {"coordinates": [[-85.642862, 41.9273717], [-85.6428586, 41.9271949], [-85.6427814, 41.9271953], [-85.6411335, 41.9272048]], "type": "LineString"}, "id": "470", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "no", "osm_id": 1193143990, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502532, 41.9459632, -85.6492935, 41.9465908], "geometry": {"coordinates": [[-85.6502532, 41.9465565], [-85.6500083, 41.9465867], [-85.6499581, 41.9465882], [-85.6492935, 41.9465908], [-85.6492949, 41.9463745], [-85.6492962, 41.9461809], [-85.6492976, 41.9459632], [-85.6502272, 41.9459986]], "type": "LineString"}, "id": "471", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942210, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6559601, 41.9397068, -85.6557721, 41.9428041], "geometry": {"coordinates": [[-85.655777, 41.9428041], [-85.6557753, 41.942632], [-85.6557747, 41.9425722], [-85.6557736, 41.9424606], [-85.6557721, 41.9423088], [-85.6557727, 41.9421533], [-85.6557816, 41.9419876], [-85.6558085, 41.9418001], [-85.6558087, 41.9416684], [-85.6558091, 41.9414769], [-85.6558094, 41.9413153], [-85.6558097, 41.9411616], [-85.6558101, 41.9409781], [-85.6558103, 41.9408584], [-85.6558104, 41.9408023], [-85.6558591, 41.9406435], [-85.655936, 41.9403927], [-85.6559601, 41.9400919], [-85.6559419, 41.9397068]], "type": "LineString"}, "id": "472", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208622576, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520164, 41.9392228, -85.6517721, 41.9393423], "geometry": {"coordinates": [[-85.6517721, 41.9392259], [-85.6519448, 41.9392237], [-85.652012, 41.9392228], [-85.6520164, 41.9393423]], "type": "LineString"}, "id": "473", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488055002, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557548, 41.9221252, -85.6546959, 41.9221559], "geometry": {"coordinates": [[-85.6557548, 41.9221252], [-85.6546959, 41.9221559]], "type": "LineString"}, "id": "474", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 440106301, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430981, 41.9418927, -85.6421426, 41.9423895], "geometry": {"coordinates": [[-85.6430981, 41.9423756], [-85.6421426, 41.9423895], [-85.6421587, 41.9418927]], "type": "LineString"}, "id": "475", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942128, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420009, 41.9426698, -85.6419851, 41.943851], "geometry": {"coordinates": [[-85.6420009, 41.943851], [-85.6419914, 41.943139], [-85.6419877, 41.9428626], [-85.6419851, 41.9426698]], "type": "LineString"}, "id": "476", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1043615988, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489578, 41.9425201, -85.6487523, 41.942523], "geometry": {"coordinates": [[-85.6487523, 41.942523], [-85.6489578, 41.9425201]], "type": "LineString"}, "id": "477", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 17965146, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640039, 41.930416, -85.638498, 41.931281], "geometry": {"coordinates": [[-85.638498, 41.930416], [-85.638817, 41.931253], [-85.639052, 41.931281], [-85.6397, 41.931179], [-85.6399082, 41.931152], [-85.640039, 41.931135]], "type": "LineString"}, "id": "478", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963122, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642299, 41.936984, -85.640003, 41.936988], "geometry": {"coordinates": [[-85.640003, 41.936988], [-85.641148, 41.936984], [-85.642299, 41.936988]], "type": "LineString"}, "id": "479", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Buck Street", "oneway": null, "osm_id": 17965905, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504523, 41.9306042, -85.6504523, 41.9314162], "geometry": {"coordinates": [[-85.6504523, 41.9314162], [-85.6504523, 41.9306042]], "type": "LineString"}, "id": "480", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612677, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504866, 41.943476, -85.6497338, 41.9434825], "geometry": {"coordinates": [[-85.6504866, 41.9434825], [-85.6497338, 41.943476]], "type": "LineString"}, "id": "481", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942196, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512738, 41.9425959, -85.6512685, 41.9426514], "geometry": {"coordinates": [[-85.6512738, 41.9425959], [-85.6512685, 41.9426514]], "type": "LineString"}, "id": "482", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550684, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508384, 41.9493712, -85.6498891, 41.9505436], "geometry": {"coordinates": [[-85.6508384, 41.9493712], [-85.6506681, 41.9493933], [-85.6505696, 41.949406], [-85.650507, 41.9494272], [-85.6504483, 41.9494751], [-85.6503645, 41.9495882], [-85.6503554, 41.9496005], [-85.6502853, 41.9496851], [-85.6502094, 41.9496922], [-85.6501431, 41.9496809], [-85.6500825, 41.9496612], [-85.6499119, 41.9498458], [-85.6498948, 41.9498698], [-85.6498891, 41.9499078], [-85.6499024, 41.9504562], [-85.6499839, 41.9505436]], "type": "LineString"}, "id": "483", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 782636433, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186924, 41.9581453, -85.61592, 41.9581603], "geometry": {"coordinates": [[-85.6186924, 41.9581453], [-85.61592, 41.9581603]], "type": "LineString"}, "id": "484", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sable River Road", "oneway": null, "osm_id": 17966857, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627401, 41.943496, -85.624884, 41.943509], "geometry": {"coordinates": [[-85.624884, 41.943508], [-85.625191, 41.943509], [-85.627401, 41.943496]], "type": "LineString"}, "id": "485", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "2nd Avenue", "oneway": null, "osm_id": 17965845, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6198423, 41.9437848, -85.6142772, 41.9454804], "geometry": {"coordinates": [[-85.619472, 41.9437848], [-85.6198423, 41.9441763], [-85.6198296, 41.94473], [-85.6194944, 41.9449233], [-85.6188775, 41.9449645], [-85.6183982, 41.9449708], [-85.6183919, 41.9449947], [-85.6183614, 41.9452441], [-85.618296, 41.945338], [-85.618312, 41.945477], [-85.6176031, 41.9454776], [-85.6170866, 41.945478], [-85.6160772, 41.9454789], [-85.6154361, 41.9454794], [-85.6142772, 41.9454804]], "type": "LineString"}, "id": "486", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528693, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6311831, 41.9411078, -85.6272858, 41.9446081], "geometry": {"coordinates": [[-85.628989, 41.9415866], [-85.6280959, 41.9413043], [-85.6278545, 41.9412415], [-85.6273945, 41.9411178], [-85.6273475, 41.9411078], [-85.627318, 41.9411108], [-85.6272858, 41.9411287], [-85.6273408, 41.9412764], [-85.6273904, 41.941408], [-85.6274146, 41.9415218], [-85.6274186, 41.9417263], [-85.6274253, 41.9422151], [-85.6274266, 41.9422605], [-85.6274293, 41.9423018], [-85.6274374, 41.9432196], [-85.6274479, 41.94325], [-85.6274749, 41.9433283], [-85.6274803, 41.9436306], [-85.6274816, 41.9436715], [-85.627483, 41.9437173], [-85.6274857, 41.9441044], [-85.6274897, 41.9441562], [-85.6274964, 41.9446081], [-85.6285679, 41.9445971], [-85.628636, 41.9445992], [-85.628694, 41.9445951], [-85.6298554, 41.9445832], [-85.6299332, 41.9445792], [-85.6299948, 41.9445812], [-85.6300727, 41.9445812], [-85.6305528, 41.9444994], [-85.6311831, 41.9443817]], "type": "LineString"}, "id": "487", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550711, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344154, 41.9456295, -85.6342589, 41.9457778], "geometry": {"coordinates": [[-85.6344154, 41.9457778], [-85.6343309, 41.9456978], [-85.6342589, 41.9456295]], "type": "LineString"}, "id": "488", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427769, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6219584, 41.9324107, -85.6215242, 41.9327071], "geometry": {"coordinates": [[-85.621721, 41.9327071], [-85.6215242, 41.9325716], [-85.621825, 41.9324107], [-85.6219551, 41.9324882], [-85.6219584, 41.9327056]], "type": "LineString"}, "id": "489", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945136, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6235042, 41.9325177, -85.6229554, 41.9325237], "geometry": {"coordinates": [[-85.6235042, 41.9325177], [-85.6229554, 41.9325237]], "type": "LineString"}, "id": "490", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377972, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6169163, 41.947799, -85.6152444, 41.9478007], "geometry": {"coordinates": [[-85.6152444, 41.947799], [-85.6154338, 41.9477992], [-85.6169163, 41.9478007]], "type": "LineString"}, "id": "491", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 203837942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624366, 41.9524258, -85.6239036, 41.9524672], "geometry": {"coordinates": [[-85.624366, 41.9524258], [-85.6239036, 41.9524672]], "type": "LineString"}, "id": "492", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946763077, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628439, 41.9391345, -85.6284289, 41.940086], "geometry": {"coordinates": [[-85.6284289, 41.9391345], [-85.628439, 41.940086]], "type": "LineString"}, "id": "493", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Street", "oneway": null, "osm_id": 17967776, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336351, 41.9435757, -85.6333999, 41.9437132], "geometry": {"coordinates": [[-85.6336351, 41.9435757], [-85.6333999, 41.9437132]], "type": "LineString"}, "id": "494", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 847427776, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635086, 41.9418301, -85.634518, 41.9419659], "geometry": {"coordinates": [[-85.634518, 41.9418301], [-85.6347213, 41.9419324], [-85.6348604, 41.9418906], [-85.6349535, 41.9418771], [-85.6350135, 41.9419421], [-85.635086, 41.9419659]], "type": "LineString"}, "id": "495", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974072, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351753, 41.9451672, -85.6345746, 41.9455744], "geometry": {"coordinates": [[-85.6345746, 41.9455744], [-85.6351753, 41.9451672]], "type": "LineString"}, "id": "496", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Mural Mall", "oneway": null, "osm_id": 232071551, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6360278, 41.9583079, -85.6347706, 41.9593383], "geometry": {"coordinates": [[-85.6347706, 41.9593383], [-85.635055, 41.9593361], [-85.6360173, 41.9593286], [-85.6360261, 41.9584779], [-85.6360278, 41.9583079]], "type": "LineString"}, "id": "497", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208627244, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6431041, 41.9429999, -85.6428209, 41.9430023], "geometry": {"coordinates": [[-85.6428209, 41.9429999], [-85.6431041, 41.9430023]], "type": "LineString"}, "id": "498", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056571144, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644381, 41.943831, -85.639454, 41.943871], "geometry": {"coordinates": [[-85.639454, 41.943871], [-85.640676, 41.943867], [-85.6408071, 41.9438654], [-85.641889, 41.943852], [-85.6420009, 41.943851], [-85.643106, 41.943841], [-85.644381, 41.943831]], "type": "LineString"}, "id": "499", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "French Street", "oneway": null, "osm_id": 17968193, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477466, 41.9458724, -85.6463269, 41.9458902], "geometry": {"coordinates": [[-85.6477466, 41.9458724], [-85.6474022, 41.9458833], [-85.6465402, 41.9458888], [-85.6463269, 41.9458902]], "type": "LineString"}, "id": "500", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sophie Street", "oneway": null, "osm_id": 203968028, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6479747, 41.9440571, -85.6469334, 41.9440825], "geometry": {"coordinates": [[-85.6479747, 41.9440825], [-85.6479167, 41.9440571], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "501", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hannah Street", "oneway": null, "osm_id": 203968025, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490788, 41.9491652, -85.6474524, 41.9493669], "geometry": {"coordinates": [[-85.6490788, 41.9491652], [-85.6490536, 41.9493669], [-85.6483929, 41.9493589], [-85.6479966, 41.9493539], [-85.6474681, 41.9493669], [-85.6474524, 41.9491881]], "type": "LineString"}, "id": "502", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 909916184, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310172, 41.932148, -85.6272913, 41.932161], "geometry": {"coordinates": [[-85.6272913, 41.9321591], [-85.6276689, 41.9321598], [-85.62834, 41.932161], [-85.6290302, 41.9321546], [-85.6296791, 41.9321485], [-85.6310172, 41.932148]], "type": "LineString"}, "id": "503", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pearl Street", "oneway": null, "osm_id": 134150774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.617372, 41.9346369, -85.6173018, 41.940161], "geometry": {"coordinates": [[-85.6173018, 41.9346369], [-85.6173384, 41.9356126], [-85.617371, 41.936243], [-85.617337, 41.936299], [-85.617321, 41.936373], [-85.6173562, 41.9366969], [-85.6173635, 41.9377414], [-85.6173696, 41.9381886], [-85.617372, 41.938535], [-85.6173674, 41.9391092], [-85.617363, 41.9396617], [-85.617359, 41.940161]], "type": "LineString"}, "id": "504", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "14th Street", "oneway": null, "osm_id": 17965366, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507207, 41.9415908, -85.6499197, 41.9417671], "geometry": {"coordinates": [[-85.6504915, 41.9417636], [-85.6499197, 41.9417671], [-85.6499251, 41.9415985], [-85.6503969, 41.9415975], [-85.6507207, 41.9415908]], "type": "LineString"}, "id": "505", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942143, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6498468, 41.9453267, -85.6493354, 41.9453368], "geometry": {"coordinates": [[-85.6498468, 41.9453368], [-85.6493354, 41.9453267]], "type": "LineString"}, "id": "506", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942207, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6505637, 41.942786, -85.6500239, 41.9431138], "geometry": {"coordinates": [[-85.6500239, 41.9431138], [-85.6505637, 41.9431006], [-85.6505573, 41.942786], [-85.6504534, 41.9427886]], "type": "LineString"}, "id": "507", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942223, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6505996, 41.9423584, -85.6503067, 41.9423607], "geometry": {"coordinates": [[-85.6503067, 41.9423584], [-85.6505996, 41.9423607]], "type": "LineString"}, "id": "508", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550671, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6455995, 41.9386225, -85.6452037, 41.9388166], "geometry": {"coordinates": [[-85.6455995, 41.9386225], [-85.6454666, 41.938627], [-85.6453003, 41.9387268], [-85.6452037, 41.9388166]], "type": "LineString"}, "id": "509", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643124, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6509763, 41.9458667, -85.650657, 41.9460063], "geometry": {"coordinates": [[-85.6509763, 41.9460063], [-85.650657, 41.945976], [-85.6506914, 41.9458667]], "type": "LineString"}, "id": "510", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056570279, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510257, 41.9462527, -85.6507842, 41.9469423], "geometry": {"coordinates": [[-85.6509062, 41.9462527], [-85.650842, 41.9465604], [-85.6508111, 41.9466851], [-85.6507842, 41.9468177], [-85.6507855, 41.9468598], [-85.6507913, 41.94689], [-85.6508084, 41.9469063], [-85.6508397, 41.9469282], [-85.650871, 41.9469378], [-85.6509018, 41.9469423], [-85.650931, 41.9469423], [-85.6509701, 41.9469358], [-85.6510257, 41.9469171]], "type": "LineString"}, "id": "511", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892831, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513522, 41.9491148, -85.6512216, 41.9494369], "geometry": {"coordinates": [[-85.6513451, 41.9491148], [-85.6513522, 41.9493731], [-85.6513353, 41.9494032], [-85.6513163, 41.9494201], [-85.651286, 41.9494342], [-85.6512216, 41.9494369]], "type": "LineString"}, "id": "512", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636430, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489199, 41.9539941, -85.6484909, 41.9542316], "geometry": {"coordinates": [[-85.6484909, 41.9542062], [-85.648503, 41.9540245], [-85.6485889, 41.9539941], [-85.6488218, 41.9539941], [-85.6489056, 41.9540321], [-85.6489199, 41.9540944], [-85.6489137, 41.9542316]], "type": "LineString"}, "id": "513", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871047088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458631, 41.9418314, -85.6455559, 41.9418346], "geometry": {"coordinates": [[-85.6458631, 41.9418314], [-85.6455559, 41.9418346]], "type": "LineString"}, "id": "514", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 382527767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501945, 41.944671, -85.6495375, 41.9446778], "geometry": {"coordinates": [[-85.6501945, 41.944671], [-85.6495375, 41.9446778]], "type": "LineString"}, "id": "515", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942202, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6460315, 41.9489193, -85.6456971, 41.9492137], "geometry": {"coordinates": [[-85.6460234, 41.9492137], [-85.6460272, 41.9491423], [-85.6460315, 41.9490622], [-85.6456971, 41.9490523], [-85.6457052, 41.9489193]], "type": "LineString"}, "id": "516", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942810, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490095, 41.941807, -85.6486413, 41.9418109], "geometry": {"coordinates": [[-85.6490095, 41.9418109], [-85.6486413, 41.941807]], "type": "LineString"}, "id": "517", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942151, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502588, 41.9380275, -85.6494298, 41.9389256], "geometry": {"coordinates": [[-85.6502588, 41.9386272], [-85.6500463, 41.9386272], [-85.6500352, 41.9388472], [-85.6499677, 41.9389211], [-85.649564, 41.9389256], [-85.6494953, 41.9388608], [-85.6494659, 41.9385012], [-85.6494327, 41.9384282], [-85.6494298, 41.9380286], [-85.6500082, 41.9380275], [-85.6500463, 41.9386272]], "type": "LineString"}, "id": "518", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870664773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6519666, 41.9451272, -85.6515409, 41.9451333], "geometry": {"coordinates": [[-85.6515409, 41.9451272], [-85.651722, 41.9451305], [-85.6519666, 41.9451333]], "type": "LineString"}, "id": "519", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612657, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497768, 41.9425122, -85.6488177, 41.9433241], "geometry": {"coordinates": [[-85.6488177, 41.9433241], [-85.6489736, 41.9433211], [-85.6491631, 41.9433174], [-85.6497526, 41.9433061], [-85.649774, 41.9426271], [-85.6497768, 41.9425122]], "type": "LineString"}, "id": "520", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942215, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420148, 41.9425864, -85.6418749, 41.9476126], "geometry": {"coordinates": [[-85.6418749, 41.9425864], [-85.6418758, 41.9426709], [-85.641878, 41.9428637], [-85.641881, 41.9431389], [-85.641889, 41.943852], [-85.641922, 41.945121], [-85.641946, 41.946413], [-85.6419503, 41.9474767], [-85.641957, 41.9475276], [-85.6419798, 41.9475745], [-85.6420148, 41.9476126]], "type": "LineString"}, "id": "521", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Grant Avenue", "oneway": null, "osm_id": 17965444, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6409017, 41.9433904, -85.6406695, 41.9433917], "geometry": {"coordinates": [[-85.6409017, 41.9433917], [-85.6407978, 41.9433911], [-85.6406695, 41.9433904]], "type": "LineString"}, "id": "522", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615983, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6428209, 41.9427582, -85.6428053, 41.9429999], "geometry": {"coordinates": [[-85.6428209, 41.9429999], [-85.6428053, 41.9427582]], "type": "LineString"}, "id": "523", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056571140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443702, 41.9425687, -85.6441525, 41.9431535], "geometry": {"coordinates": [[-85.6441525, 41.9425687], [-85.6441542, 41.94265], [-85.6441644, 41.9431502], [-85.6443702, 41.9431535]], "type": "LineString"}, "id": "524", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486385874, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6438688, 41.9425705, -85.6438642, 41.9426991], "geometry": {"coordinates": [[-85.6438642, 41.9425705], [-85.6438671, 41.9426529], [-85.6438688, 41.9426991]], "type": "LineString"}, "id": "525", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056572470, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6434799, 41.9427236, -85.6431104, 41.9428563], "geometry": {"coordinates": [[-85.6431104, 41.9428543], [-85.6433136, 41.9428563], [-85.6433123, 41.9427236], [-85.6434799, 41.9427286]], "type": "LineString"}, "id": "526", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486785502, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635044, 41.938975, -85.6344894, 41.9389758], "geometry": {"coordinates": [[-85.635044, 41.9389758], [-85.6344894, 41.938975]], "type": "LineString"}, "id": "527", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907666274, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342487, 41.944392, -85.6331258, 41.9454489], "geometry": {"coordinates": [[-85.6331258, 41.944392], [-85.6333716, 41.9446443], [-85.633567, 41.9448266], [-85.6342487, 41.9454489]], "type": "LineString"}, "id": "528", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427770, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6387088, 41.9442912, -85.6375859, 41.9455546], "geometry": {"coordinates": [[-85.6383346, 41.9442912], [-85.6382523, 41.9444134], [-85.6381286, 41.9445969], [-85.6380436, 41.9446706], [-85.6379763, 41.9446963], [-85.6379302, 41.9447564], [-85.6379225, 41.9450825], [-85.6378936, 41.9451712], [-85.6376686, 41.9453185], [-85.6375859, 41.9454544], [-85.6376571, 41.9455245], [-85.6377321, 41.9455546], [-85.6380506, 41.9455301], [-85.6383567, 41.9454039], [-85.6387088, 41.9452631]], "type": "LineString"}, "id": "529", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972938, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339222, 41.9473191, -85.6339169, 41.9486225], "geometry": {"coordinates": [[-85.6339222, 41.9486225], [-85.6339169, 41.9473191]], "type": "LineString"}, "id": "530", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 210822778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503899, 41.94599, -85.6502532, 41.9465565], "geometry": {"coordinates": [[-85.6503899, 41.94599], [-85.6503721, 41.9461802], [-85.6503332, 41.9463751], [-85.6502913, 41.9465154], [-85.6502532, 41.9465565]], "type": "LineString"}, "id": "531", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942208, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651729, 41.9454477, -85.6514744, 41.9454827], "geometry": {"coordinates": [[-85.6514744, 41.9454477], [-85.6516478, 41.9454687], [-85.651729, 41.9454827]], "type": "LineString"}, "id": "532", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612656, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511242, 41.9493712, -85.6508384, 41.949437], "geometry": {"coordinates": [[-85.6511242, 41.9494325], [-85.650941, 41.949437], [-85.6508974, 41.9494258], [-85.6508652, 41.9494088], [-85.6508384, 41.9493712]], "type": "LineString"}, "id": "533", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636432, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6461249, 41.9547911, -85.64597, 41.9550378], "geometry": {"coordinates": [[-85.6461249, 41.9547911], [-85.64597, 41.9550378]], "type": "LineString"}, "id": "534", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "trunk", "layer": "1", "name": "US-131", "oneway": "yes", "osm_id": 134151785, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333299, 41.955913, -85.630904, 41.9559271], "geometry": {"coordinates": [[-85.6333299, 41.9559271], [-85.6321108, 41.95592], [-85.630904, 41.955913]], "type": "LineString"}, "id": "535", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Adams Street", "oneway": null, "osm_id": 17966214, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321351, 41.9581654, -85.631895, 41.9581691], "geometry": {"coordinates": [[-85.6321351, 41.9581654], [-85.631895, 41.9581691]], "type": "LineString"}, "id": "536", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 776693873, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629467, 41.9546903, -85.6294656, 41.9551888], "geometry": {"coordinates": [[-85.6294659, 41.9551888], [-85.629467, 41.9547698], [-85.6294656, 41.9546903]], "type": "LineString"}, "id": "537", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699261, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6484315, 41.9370246, -85.6470551, 41.9372687], "geometry": {"coordinates": [[-85.6470551, 41.9370246], [-85.6472393, 41.93705], [-85.6477548, 41.9371412], [-85.6479642, 41.9371807], [-85.6481929, 41.9372238], [-85.6484315, 41.9372687]], "type": "LineString"}, "id": "538", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243987, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503814, 41.9442885, -85.6501851, 41.945804], "geometry": {"coordinates": [[-85.6502225, 41.945804], [-85.6502031, 41.9450188], [-85.6501987, 41.9448418], [-85.6501945, 41.944671], [-85.6501904, 41.9445072], [-85.6501851, 41.9442926], [-85.6503814, 41.9442885]], "type": "LineString"}, "id": "539", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942189, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504899, 41.9436606, -85.6496414, 41.9436641], "geometry": {"coordinates": [[-85.6504899, 41.9436641], [-85.6496414, 41.9436606]], "type": "LineString"}, "id": "540", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942197, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6515825, 41.9475204, -85.6511925, 41.9475468], "geometry": {"coordinates": [[-85.6515825, 41.9475468], [-85.6513422, 41.9475306], [-85.6511925, 41.9475204]], "type": "LineString"}, "id": "541", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942228, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6325023, 41.941103, -85.630986, 41.941786], "geometry": {"coordinates": [[-85.6318289, 41.9415077], [-85.6318592, 41.9414105], [-85.6318941, 41.9413551], [-85.6322362, 41.9411183], [-85.6323502, 41.941103], [-85.6324532, 41.9411607], [-85.6325023, 41.9412585], [-85.6324801, 41.9413421], [-85.632446, 41.9413792], [-85.632412, 41.9414164], [-85.6321665, 41.9415554], [-85.6320111, 41.9415866], [-85.6318779, 41.9415447], [-85.6318289, 41.9415077], [-85.6316633, 41.9415128], [-85.6313962, 41.9416114], [-85.630986, 41.941786]], "type": "LineString"}, "id": "542", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963676, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512738, 41.9423923, -85.6512697, 41.9425959], "geometry": {"coordinates": [[-85.6512719, 41.9423923], [-85.6512697, 41.9425029], [-85.6512738, 41.9425959]], "type": "LineString"}, "id": "543", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550685, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6266692, 41.958692, -85.6264809, 41.9590665], "geometry": {"coordinates": [[-85.6264809, 41.9590665], [-85.6266692, 41.958692]], "type": "LineString"}, "id": "544", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550699, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6324881, 41.9434696, -85.6322909, 41.9436973], "geometry": {"coordinates": [[-85.6322909, 41.9434696], [-85.6323597, 41.943549], [-85.6324881, 41.9436973]], "type": "LineString"}, "id": "545", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 134150801, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436741, 41.9555848, -85.6415596, 41.9563278], "geometry": {"coordinates": [[-85.6415596, 41.9555848], [-85.6436741, 41.9563278]], "type": "LineString"}, "id": "546", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776874, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315532, 41.9443218, -85.6311831, 41.9443817], "geometry": {"coordinates": [[-85.6311831, 41.9443817], [-85.6315532, 41.9443218]], "type": "LineString"}, "id": "547", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 847370303, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6249416, 41.9607546, -85.6234315, 41.9619772], "geometry": {"coordinates": [[-85.6234315, 41.9619772], [-85.624271, 41.9608324], [-85.6243166, 41.9607905], [-85.6243998, 41.9607546], [-85.6248665, 41.9609222], [-85.6249174, 41.960968], [-85.6249416, 41.960973]], "type": "LineString"}, "id": "548", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550701, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6231422, 41.9488882, -85.6231359, 41.9492381], "geometry": {"coordinates": [[-85.6231422, 41.9492381], [-85.6231359, 41.9488882]], "type": "LineString"}, "id": "549", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964874, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621459, 41.944756, -85.620172, 41.945627], "geometry": {"coordinates": [[-85.621459, 41.944756], [-85.621305, 41.944782], [-85.621174, 41.944819], [-85.621029, 41.944871], [-85.620741, 41.945011], [-85.620616, 41.945085], [-85.620506, 41.945172], [-85.620394, 41.945273], [-85.620316, 41.94536], [-85.620257, 41.945452], [-85.620212, 41.945535], [-85.620172, 41.945627]], "type": "LineString"}, "id": "550", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 17966773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6252031, 41.9607895, -85.6251039, 41.960981], "geometry": {"coordinates": [[-85.6252031, 41.9607895], [-85.6251442, 41.9609031], [-85.6251039, 41.960981]], "type": "LineString"}, "id": "551", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550698, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6251435, 41.9609203, -85.6249415, 41.9614778], "geometry": {"coordinates": [[-85.6251435, 41.9614778], [-85.6249884, 41.9612984], [-85.6249589, 41.9612569], [-85.6249481, 41.9612108], [-85.6249415, 41.961166], [-85.6249466, 41.9611233], [-85.6249598, 41.9610811], [-85.6249846, 41.9610254], [-85.6250025, 41.9609909], [-85.6250384, 41.9609203]], "type": "LineString"}, "id": "552", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "New Jersey Court", "oneway": null, "osm_id": 203968016, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6203997, 41.9522096, -85.620073, 41.9524593], "geometry": {"coordinates": [[-85.620073, 41.9524484], [-85.6202281, 41.9524593], [-85.620273, 41.9524436], [-85.620343, 41.9523876], [-85.6203931, 41.9523081], [-85.6203997, 41.9522541], [-85.6203799, 41.9522325], [-85.6203298, 41.9522226], [-85.6201163, 41.9522096]], "type": "LineString"}, "id": "553", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947200038, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159142, 41.9577578, -85.6153676, 41.9593891], "geometry": {"coordinates": [[-85.6159142, 41.9577578], [-85.615506, 41.957833], [-85.6154119, 41.9578659], [-85.6153676, 41.9579194], [-85.6153786, 41.9582858], [-85.6153786, 41.9587057], [-85.6153897, 41.9591915], [-85.6154119, 41.9593479], [-85.6154783, 41.9593891], [-85.6157358, 41.959364]], "type": "LineString"}, "id": "554", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 907675123, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187082, 41.9585647, -85.6177383, 41.9591158], "geometry": {"coordinates": [[-85.6187082, 41.9588211], [-85.6186505, 41.9589344], [-85.6185839, 41.9589756], [-85.618182, 41.9591147], [-85.618114, 41.9591158], [-85.6180655, 41.9591085], [-85.6180212, 41.9590446], [-85.6177383, 41.9585647]], "type": "LineString"}, "id": "555", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 947248742, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6184408, 41.9530292, -85.6177286, 41.9534228], "geometry": {"coordinates": [[-85.6177286, 41.9534228], [-85.6181011, 41.9530292], [-85.6182875, 41.9531222], [-85.6184408, 41.953201]], "type": "LineString"}, "id": "556", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204830797, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6179141, 41.952231, -85.6163249, 41.9535735], "geometry": {"coordinates": [[-85.616755, 41.952231], [-85.6167327, 41.9522554], [-85.6163249, 41.952701], [-85.6163757, 41.952855], [-85.6165667, 41.9529715], [-85.6175538, 41.9534396], [-85.6178363, 41.9535735], [-85.6179141, 41.9535163]], "type": "LineString"}, "id": "557", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963047, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6164942, 41.9490629, -85.6164873, 41.9492814], "geometry": {"coordinates": [[-85.6164942, 41.9492814], [-85.6164888, 41.9491114], [-85.6164873, 41.9490629]], "type": "LineString"}, "id": "558", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839092, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6183982, 41.9443939, -85.6175794, 41.9449708], "geometry": {"coordinates": [[-85.6183982, 41.9449708], [-85.6181013, 41.9448246], [-85.6175794, 41.9446599], [-85.6176596, 41.9443939]], "type": "LineString"}, "id": "559", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528699, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478673, 41.9432898, -85.6473684, 41.9435096], "geometry": {"coordinates": [[-85.6473684, 41.943295], [-85.6478584, 41.9432898], [-85.6478673, 41.9435096]], "type": "LineString"}, "id": "560", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488290768, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6466646, 41.9450813, -85.643102, 41.945174], "geometry": {"coordinates": [[-85.643102, 41.945103], [-85.644403, 41.945088], [-85.6452965, 41.9450847], [-85.645486, 41.945084], [-85.6463243, 41.9450817], [-85.6463419, 41.9450817], [-85.6464756, 41.9450813], [-85.6466646, 41.945174]], "type": "LineString"}, "id": "561", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pealer Street", "oneway": null, "osm_id": 379694344, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634668, 41.949875, -85.633258, 41.949893], "geometry": {"coordinates": [[-85.633258, 41.949893], [-85.634668, 41.949875]], "type": "LineString"}, "id": "562", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Bennett Street", "oneway": null, "osm_id": 772835853, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632885, 41.9547563, -85.6328068, 41.9549068], "geometry": {"coordinates": [[-85.6328068, 41.9547563], [-85.632885, 41.9549068]], "type": "LineString"}, "id": "563", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416368, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6418749, 41.941316, -85.641825, 41.9425864], "geometry": {"coordinates": [[-85.641825, 41.941316], [-85.641838, 41.941556], [-85.6418683, 41.9424016], [-85.641872, 41.9425043], [-85.6418749, 41.9425864]], "type": "LineString"}, "id": "564", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Grant Avenue", "oneway": null, "osm_id": 17965749, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342341, 41.9433662, -85.6341027, 41.943433], "geometry": {"coordinates": [[-85.6342341, 41.9433662], [-85.6341027, 41.943433]], "type": "LineString"}, "id": "565", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550700, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341901, 41.9432732, -85.6339673, 41.9433877], "geometry": {"coordinates": [[-85.6341901, 41.9432732], [-85.6339673, 41.9433877]], "type": "LineString"}, "id": "566", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150800, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348719, 41.9430367, -85.6346811, 41.9431023], "geometry": {"coordinates": [[-85.6348719, 41.9430367], [-85.6346811, 41.9431023]], "type": "LineString"}, "id": "567", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150795, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354595, 41.9473091, -85.6354184, 41.9498778], "geometry": {"coordinates": [[-85.6354595, 41.9498778], [-85.6354573, 41.9497875], [-85.6354506, 41.9495151], [-85.6354483, 41.9494241], [-85.6354294, 41.9486201], [-85.6354214, 41.9476656], [-85.6354184, 41.9473091]], "type": "LineString"}, "id": "568", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 210822776, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382376, 41.942979, -85.6377061, 41.942979], "geometry": {"coordinates": [[-85.6382376, 41.942979], [-85.6377061, 41.942979]], "type": "LineString"}, "id": "569", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998358, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336739, 41.9486209, -85.6336684, 41.9487899], "geometry": {"coordinates": [[-85.6336684, 41.9487899], [-85.6336739, 41.9486209]], "type": "LineString"}, "id": "570", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 322012898, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6238886, 41.9543007, -85.6236388, 41.9543068], "geometry": {"coordinates": [[-85.6238886, 41.9543068], [-85.6237453, 41.9543033], [-85.6236388, 41.9543007]], "type": "LineString"}, "id": "571", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758296777, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6288456, 41.9572768, -85.6288344, 41.957435], "geometry": {"coordinates": [[-85.6288456, 41.957435], [-85.6288344, 41.9572768]], "type": "LineString"}, "id": "572", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 263446671, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6266935, 41.9572599, -85.6265759, 41.9574545], "geometry": {"coordinates": [[-85.6265759, 41.9574545], [-85.6266935, 41.9572599]], "type": "LineString"}, "id": "573", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699293, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634767, 41.959009, -85.630935, 41.959037], "geometry": {"coordinates": [[-85.630935, 41.959037], [-85.63137, 41.959033], [-85.6321505, 41.9590251], [-85.6329563, 41.9590221], [-85.634315, 41.959017], [-85.634767, 41.959009]], "type": "LineString"}, "id": "574", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Morris Avenue", "oneway": null, "osm_id": 17964793, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351097, 41.9416973, -85.634911, 41.9423159], "geometry": {"coordinates": [[-85.6351097, 41.9416973], [-85.6351092, 41.9418426], [-85.6350991, 41.9418921], [-85.635086, 41.9419659], [-85.6350584, 41.9421466], [-85.6350993, 41.9421606], [-85.6350993, 41.9422132], [-85.6350871, 41.9422575], [-85.6350794, 41.9422855], [-85.6350474, 41.9423159], [-85.6349251, 41.9422998], [-85.634911, 41.9422755], [-85.6349157, 41.9422553], [-85.6349214, 41.9422379]], "type": "LineString"}, "id": "575", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974071, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470216, 41.9450063, -85.6465402, 41.9458888], "geometry": {"coordinates": [[-85.6469512, 41.9450063], [-85.6470216, 41.9451195], [-85.6469968, 41.9451879], [-85.646788, 41.9453288], [-85.6466464, 41.9455224], [-85.6465525, 41.9457449], [-85.6465402, 41.9458888]], "type": "LineString"}, "id": "576", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942237, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357554, 41.9361657, -85.6344047, 41.9395496], "geometry": {"coordinates": [[-85.6344047, 41.9395496], [-85.6344894, 41.938975], [-85.6345227, 41.9382009], [-85.6345671, 41.9381816], [-85.6350366, 41.9379774], [-85.6350681, 41.937909], [-85.6352147, 41.9375903], [-85.6351503, 41.937307], [-85.635142, 41.9372317], [-85.6351181, 41.9370157], [-85.6351235, 41.9368481], [-85.6352844, 41.9364211], [-85.6357554, 41.9361657]], "type": "LineString"}, "id": "577", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Thomas Street", "oneway": null, "osm_id": 170995908, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6479012, 41.926056, -85.6469834, 41.9270523], "geometry": {"coordinates": [[-85.6469834, 41.926056], [-85.6471307, 41.9270523], [-85.6478291, 41.9270416], [-85.6479012, 41.9264804]], "type": "LineString"}, "id": "578", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143998, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637732, 41.929221, -85.636746, 41.932761], "geometry": {"coordinates": [[-85.636746, 41.929221], [-85.636791, 41.929363], [-85.6374708, 41.9311633], [-85.6375975, 41.9314987], [-85.637669, 41.931667], [-85.637728, 41.931901], [-85.637724, 41.932187], [-85.637732, 41.932761]], "type": "LineString"}, "id": "579", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Constantine Street", "oneway": null, "osm_id": 17964497, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506102, 41.9317232, -85.649309, 41.9317864], "geometry": {"coordinates": [[-85.6506102, 41.9317849], [-85.650554, 41.9317851], [-85.6504338, 41.9317854], [-85.6500538, 41.9317864], [-85.649921, 41.931768], [-85.6498137, 41.9317241], [-85.649309, 41.9317232]], "type": "LineString"}, "id": "580", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116842, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180487, 41.9366969, -85.6173562, 41.9367106], "geometry": {"coordinates": [[-85.6173562, 41.9366969], [-85.6180487, 41.9367106]], "type": "LineString"}, "id": "581", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Colony Court", "oneway": null, "osm_id": 17965485, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631591, 41.934167, -85.623511, 41.934218], "geometry": {"coordinates": [[-85.623511, 41.934216], [-85.624782, 41.934218], [-85.625688, 41.934214], [-85.6264034, 41.9342098], [-85.627055, 41.934206], [-85.6278177, 41.9342117], [-85.628389, 41.934216], [-85.6290391, 41.9342067], [-85.6296991, 41.9341973], [-85.6303478, 41.9341918], [-85.6310313, 41.9341889], [-85.631591, 41.934167]], "type": "LineString"}, "id": "582", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "State Street", "oneway": null, "osm_id": 17968171, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633274, 41.951159, -85.6304857, 41.9511969], "geometry": {"coordinates": [[-85.6304857, 41.9511945], [-85.6308395, 41.9511969], [-85.6320505, 41.951174], [-85.633274, 41.951159]], "type": "LineString"}, "id": "583", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Armitage Street", "oneway": null, "osm_id": 17967386, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638594, 41.954719, -85.6245151, 41.9605776], "geometry": {"coordinates": [[-85.6245212, 41.9605776], [-85.6245406, 41.9605482], [-85.6245151, 41.9604983], [-85.6246063, 41.9603278], [-85.6247351, 41.9601024], [-85.624778, 41.9600675], [-85.6250677, 41.9596008], [-85.6253466, 41.959151], [-85.6253617, 41.9591254], [-85.6253842, 41.9590872], [-85.6255727, 41.9587648], [-85.6257989, 41.9584187], [-85.6258562, 41.9583353], [-85.6264246, 41.957406], [-85.6265187, 41.9572522], [-85.6265551, 41.9572071], [-85.6265717, 41.9571749], [-85.6269458, 41.9565691], [-85.6273361, 41.9559372], [-85.627358, 41.9559081], [-85.6273837, 41.955853], [-85.627426, 41.9557168], [-85.6276612, 41.9553461], [-85.6280261, 41.9547708], [-85.629467, 41.9547698], [-85.6307808, 41.9547689], [-85.630821, 41.9547689], [-85.6308843, 41.9547669], [-85.6309471, 41.9547669], [-85.6320441, 41.9547629], [-85.6320962, 41.9547609], [-85.6321889, 41.9547609], [-85.6328068, 41.9547563], [-85.6332698, 41.9547529], [-85.6333121, 41.954751], [-85.6333852, 41.9547549], [-85.634218, 41.9547492], [-85.63456, 41.9547469], [-85.6347288, 41.9547499], [-85.6349006, 41.9547529], [-85.6350106, 41.9547469], [-85.6355229, 41.9547449], [-85.6358461, 41.9547444], [-85.6361935, 41.9547439], [-85.6362388, 41.9547432], [-85.6363316, 41.9547419], [-85.6374125, 41.9547349], [-85.6374608, 41.9547361], [-85.6375305, 41.9547379], [-85.638594, 41.954719]], "type": "LineString"}, "id": "584", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550709, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6181154, 41.9481006, -85.6176946, 41.9482898], "geometry": {"coordinates": [[-85.6181154, 41.9482898], [-85.617705, 41.9482619], [-85.6176946, 41.9481006]], "type": "LineString"}, "id": "585", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652967179, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6108715, 41.955178, -85.6108633, 41.9554444], "geometry": {"coordinates": [[-85.6108715, 41.9554444], [-85.6108633, 41.955178]], "type": "LineString"}, "id": "586", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179347, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443023, 41.932672, -85.6442279, 41.9363623], "geometry": {"coordinates": [[-85.644228, 41.932672], [-85.644228, 41.9327325], [-85.6442279, 41.9328387], [-85.6442477, 41.9339216], [-85.6442915, 41.9349794], [-85.6442957, 41.9354807], [-85.6443023, 41.9362837], [-85.6442999, 41.9363623]], "type": "LineString"}, "id": "587", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Erie Avenue", "oneway": null, "osm_id": 78480220, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637685, 41.934223, -85.636834, 41.934223], "geometry": {"coordinates": [[-85.637685, 41.934223], [-85.636834, 41.934223]], "type": "LineString"}, "id": "588", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Swartz Street", "oneway": null, "osm_id": 17964970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6413816, 41.9307531, -85.6400258, 41.9311016], "geometry": {"coordinates": [[-85.6400258, 41.9311016], [-85.6406703, 41.9309185], [-85.6413816, 41.9307531]], "type": "LineString"}, "id": "589", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 832556508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6283776, 41.9376096, -85.6280534, 41.9378226], "geometry": {"coordinates": [[-85.6280534, 41.9378226], [-85.6282162, 41.9377379], [-85.6283776, 41.9376096]], "type": "LineString"}, "id": "590", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758897088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.619085, 41.9516794, -85.6170432, 41.9534396], "geometry": {"coordinates": [[-85.6170432, 41.9524057], [-85.6171841, 41.9522542], [-85.617691, 41.9517107], [-85.6177727, 41.9516794], [-85.619085, 41.9516811], [-85.6180938, 41.9527349], [-85.6179589, 41.9528783], [-85.6179432, 41.952895], [-85.6180389, 41.9529384], [-85.6176303, 41.9533604], [-85.6175538, 41.9534396]], "type": "LineString"}, "id": "591", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839361, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450288, 41.9425588, -85.6450276, 41.9429056], "geometry": {"coordinates": [[-85.6450276, 41.9425588], [-85.6450279, 41.942649], [-85.6450282, 41.9427207], [-85.6450288, 41.9429056]], "type": "LineString"}, "id": "592", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486785503, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6264499, 41.9583862, -85.6256754, 41.958631], "geometry": {"coordinates": [[-85.6256754, 41.9583862], [-85.6257989, 41.9584187], [-85.626369, 41.9586174], [-85.6264499, 41.958631]], "type": "LineString"}, "id": "593", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550691, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6262616, 41.9590055, -85.6252483, 41.95915], "geometry": {"coordinates": [[-85.6262616, 41.9590055], [-85.6262331, 41.9590473], [-85.6261298, 41.9591231], [-85.6259984, 41.95915], [-85.6257731, 41.959145], [-85.6254217, 41.9591341], [-85.6253617, 41.9591254], [-85.6252483, 41.9590965]], "type": "LineString"}, "id": "594", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652550689, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6363514, 41.961089, -85.636133, 41.9616698], "geometry": {"coordinates": [[-85.636133, 41.9616698], [-85.6362039, 41.9615678], [-85.6362902, 41.9613925], [-85.6363514, 41.961089]], "type": "LineString"}, "id": "595", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 258377783, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636133, 41.9616698, -85.6349874, 41.9619375], "geometry": {"coordinates": [[-85.6349874, 41.9619375], [-85.6352201, 41.9619057], [-85.6355393, 41.9618199], [-85.6356157, 41.9618072], [-85.6356868, 41.9618059], [-85.6358705, 41.961793], [-85.6359376, 41.961785], [-85.6360006, 41.9617671], [-85.6360422, 41.9617421], [-85.636133, 41.9616698]], "type": "LineString"}, "id": "596", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 777996088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634857, 41.9664791, -85.6341169, 41.9664815], "geometry": {"coordinates": [[-85.634857, 41.9664815], [-85.6341169, 41.9664791]], "type": "LineString"}, "id": "597", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870652349, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6343061, 41.9674728, -85.6339242, 41.9677064], "geometry": {"coordinates": [[-85.6343061, 41.9677064], [-85.6342939, 41.967561], [-85.6342032, 41.9674728], [-85.6340488, 41.9674736], [-85.6339383, 41.9674742], [-85.6339242, 41.9677048]], "type": "LineString"}, "id": "598", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870652351, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631135, 41.9621767, -85.6308995, 41.9632204], "geometry": {"coordinates": [[-85.630998, 41.9621767], [-85.630998, 41.9623209], [-85.6311263, 41.9623202], [-85.631135, 41.9632192], [-85.6309082, 41.9632204], [-85.6308995, 41.9623215], [-85.630998, 41.9623209]], "type": "LineString"}, "id": "599", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 939312580, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180938, 41.9525253, -85.6177023, 41.9527349], "geometry": {"coordinates": [[-85.6180938, 41.9527349], [-85.6177023, 41.9525253]], "type": "LineString"}, "id": "600", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839364, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382761, 41.9438017, -85.6376655, 41.9443125], "geometry": {"coordinates": [[-85.6376655, 41.9438017], [-85.6378627, 41.9441622], [-85.6379071, 41.9442467], [-85.6381634, 41.9443125], [-85.6382407, 41.944301], [-85.6382631, 41.9442724], [-85.6382761, 41.9442188], [-85.6382429, 41.9441761], [-85.6382016, 41.9441632]], "type": "LineString"}, "id": "601", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203988298, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450995, 41.9541831, -85.6440766, 41.9543462], "geometry": {"coordinates": [[-85.6440766, 41.9543462], [-85.6450995, 41.9541831]], "type": "LineString"}, "id": "602", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 652550668, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357592, 41.9427985, -85.6356875, 41.9429212], "geometry": {"coordinates": [[-85.6356875, 41.9427985], [-85.6357339, 41.9428779], [-85.6357592, 41.9429212]], "type": "LineString"}, "id": "603", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 342503945, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263984, 41.9413215, -85.6261429, 41.9421261], "geometry": {"coordinates": [[-85.6263984, 41.9413215], [-85.6263539, 41.9415589], [-85.6263447, 41.9418317], [-85.6263347, 41.9421261], [-85.6261429, 41.9421207]], "type": "LineString"}, "id": "604", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 765371920, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297342, 41.9400783, -85.627127, 41.940086], "geometry": {"coordinates": [[-85.627127, 41.940086], [-85.6272188, 41.9400832], [-85.627263, 41.940082], [-85.628439, 41.940086], [-85.6296113, 41.940079], [-85.6297342, 41.9400783]], "type": "LineString"}, "id": "605", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Street", "oneway": null, "osm_id": 17967751, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6212989, 41.9490617, -85.6210164, 41.9492394], "geometry": {"coordinates": [[-85.6210164, 41.9492394], [-85.621024, 41.9490617], [-85.6212989, 41.9490688]], "type": "LineString"}, "id": "606", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871183977, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6299851, 41.9580741, -85.6297541, 41.9580808], "geometry": {"coordinates": [[-85.6299851, 41.9580808], [-85.6297541, 41.9580741]], "type": "LineString"}, "id": "607", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 263446668, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6245212, 41.9605776, -85.6244072, 41.9607332], "geometry": {"coordinates": [[-85.6244072, 41.9607332], [-85.6244356, 41.960705], [-85.6244939, 41.9606183], [-85.6245212, 41.9605776]], "type": "LineString"}, "id": "608", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550697, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637483, 41.9486, -85.637113, 41.958313], "geometry": {"coordinates": [[-85.637113, 41.9486], [-85.6373958, 41.9489943], [-85.6374012, 41.9493523], [-85.6374067, 41.9497099], [-85.6374092, 41.9498755], [-85.637412, 41.9511359], [-85.637432, 41.952399], [-85.637452, 41.953665], [-85.6374593, 41.9545754], [-85.63746, 41.954658], [-85.6374608, 41.9547361], [-85.637473, 41.95592], [-85.6374721, 41.9560979], [-85.6374707, 41.9563685], [-85.637468, 41.956906], [-85.637483, 41.958313]], "type": "LineString"}, "id": "609", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Maple Street", "oneway": null, "osm_id": 17965097, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644466, 41.9425645, -85.6443608, 41.949246], "geometry": {"coordinates": [[-85.6443608, 41.9425645], [-85.6443622, 41.942653], [-85.6443702, 41.9431535], [-85.644381, 41.943831], [-85.644403, 41.945088], [-85.6444166, 41.9463259], [-85.644417, 41.946364], [-85.644429, 41.947633], [-85.6444365, 41.9479609], [-85.6444419, 41.9481952], [-85.6444506, 41.9485732], [-85.644466, 41.949246]], "type": "LineString"}, "id": "610", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Erie Street", "oneway": null, "osm_id": 17966729, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6432019, 41.9425754, -85.643102, 41.949261], "geometry": {"coordinates": [[-85.6431031, 41.9425754], [-85.6431035, 41.9427597], [-85.6431104, 41.9428543], [-85.6431041, 41.9430023], [-85.643106, 41.943841], [-85.643102, 41.945103], [-85.643148, 41.946389], [-85.6432019, 41.9476499], [-85.643195, 41.949261]], "type": "LineString"}, "id": "611", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "North Douglas Avenue", "oneway": null, "osm_id": 17967390, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6485578, 41.9269394, -85.6484746, 41.9272732], "geometry": {"coordinates": [[-85.6485578, 41.9269394], [-85.648498, 41.9269939], [-85.6484746, 41.9272732]], "type": "LineString"}, "id": "612", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143999, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6097961, 41.9467223, -85.6097759, 41.9475004], "geometry": {"coordinates": [[-85.6097759, 41.9475004], [-85.6097788, 41.947251], [-85.6097802, 41.9471276], [-85.6097807, 41.9470374], [-85.6097926, 41.9468501], [-85.6097961, 41.9467223]], "type": "LineString"}, "id": "613", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 905683519, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6132496, 41.9442728, -85.6121403, 41.9454409], "geometry": {"coordinates": [[-85.6121448, 41.9454409], [-85.6121427, 41.9449724], [-85.6121403, 41.9444292], [-85.6121717, 41.9442898], [-85.6130286, 41.944277], [-85.6131716, 41.944283], [-85.6132496, 41.9442728]], "type": "LineString"}, "id": "614", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 383902586, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6290302, 41.9311615, -85.6289931, 41.9321546], "geometry": {"coordinates": [[-85.6289931, 41.9311615], [-85.6290139, 41.9317005], [-85.6290302, 41.9321546]], "type": "LineString"}, "id": "615", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 903715420, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478385, 41.9326128, -85.647345, 41.9335048], "geometry": {"coordinates": [[-85.6478385, 41.9326128], [-85.6478377, 41.932677], [-85.6478361, 41.9327976], [-85.6478341, 41.9335048], [-85.6475906, 41.9335029], [-85.647347, 41.9335009], [-85.647345, 41.9327914], [-85.6475896, 41.932796], [-85.6475906, 41.9335029]], "type": "LineString"}, "id": "616", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204035473, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.654898, 41.932505, -85.6517487, 41.9325437], "geometry": {"coordinates": [[-85.6517487, 41.9325437], [-85.6519167, 41.9325405], [-85.65275, 41.9325249], [-85.6529294, 41.9325248], [-85.653541, 41.9325282], [-85.654307, 41.9325151], [-85.6543315, 41.9325147], [-85.654898, 41.932505]], "type": "LineString"}, "id": "617", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Broadway Road", "oneway": null, "osm_id": 17965484, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6527488, 41.9317638, -85.6520978, 41.9323957], "geometry": {"coordinates": [[-85.6525077, 41.9317638], [-85.6522941, 41.9318713], [-85.6520978, 41.9319765], [-85.6521763, 41.9320612], [-85.6523412, 41.932238], [-85.6524218, 41.9323563], [-85.6524492, 41.9323884], [-85.6525572, 41.9323957], [-85.6527488, 41.9323899]], "type": "LineString"}, "id": "618", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907776512, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507144, 41.9325604, -85.650349, 41.9331621], "geometry": {"coordinates": [[-85.650349, 41.9325604], [-85.6503527, 41.9326518], [-85.6503691, 41.9330613], [-85.6503733, 41.9331621], [-85.6507144, 41.9331595]], "type": "LineString"}, "id": "619", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034071, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514073, 41.932543, -85.6365328, 41.9329312], "geometry": {"coordinates": [[-85.6514073, 41.932543], [-85.6506177, 41.9325595], [-85.650349, 41.9325604], [-85.649346, 41.9325803], [-85.6492242, 41.9325853], [-85.6490718, 41.932586], [-85.6484329, 41.932606], [-85.6478385, 41.9326128], [-85.6476037, 41.9326155], [-85.6469521, 41.9326207], [-85.6462306, 41.9326304], [-85.6461715, 41.9326317], [-85.6459436, 41.9326459], [-85.6455682, 41.9326543], [-85.6444717, 41.9326688], [-85.644228, 41.932672], [-85.64242, 41.932699], [-85.6412915, 41.9327042], [-85.6401365, 41.9327199], [-85.6388769, 41.9327334], [-85.637732, 41.932761], [-85.637353, 41.932792], [-85.6365328, 41.9329312]], "type": "LineString"}, "id": "620", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Broadway Street", "oneway": null, "osm_id": 17967984, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514146, 41.9353693, -85.6510717, 41.9356274], "geometry": {"coordinates": [[-85.6514146, 41.9356218], [-85.6512405, 41.9356261], [-85.6511892, 41.9356274], [-85.6511386, 41.9356131], [-85.6510918, 41.9355867], [-85.6510779, 41.9355473], [-85.6510754, 41.9355011], [-85.6510717, 41.935423], [-85.6510733, 41.9353693]], "type": "LineString"}, "id": "621", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 944116886, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529447, 41.9344576, -85.6522031, 41.9344603], "geometry": {"coordinates": [[-85.6529447, 41.9344603], [-85.6524176, 41.9344603], [-85.6523757, 41.9344603], [-85.6522031, 41.9344576]], "type": "LineString"}, "id": "622", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203048268, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6401773, 41.9303805, -85.6397659, 41.9304665], "geometry": {"coordinates": [[-85.6397659, 41.9304665], [-85.6401773, 41.9303805]], "type": "LineString"}, "id": "623", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 832556507, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433104, 41.9361767, -85.643305, 41.9362871], "geometry": {"coordinates": [[-85.643305, 41.9362871], [-85.6433104, 41.9361767]], "type": "LineString"}, "id": "624", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766158507, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6431031, 41.94001, -85.643056, 41.9425754], "geometry": {"coordinates": [[-85.643056, 41.94001], [-85.6430624, 41.9405521], [-85.6430697, 41.9411732], [-85.643071, 41.941288], [-85.6430868, 41.9419198], [-85.6430981, 41.9423756], [-85.6431031, 41.9425754]], "type": "LineString"}, "id": "625", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 17966327, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6492976, 41.9431473, -85.6483318, 41.9459632], "geometry": {"coordinates": [[-85.6492976, 41.9459632], [-85.6488686, 41.945945], [-85.6488787, 41.9449968], [-85.6489804, 41.9448531], [-85.6489174, 41.9442996], [-85.6487283, 41.944289], [-85.6488023, 41.9434902], [-85.6488177, 41.9433241], [-85.6483318, 41.943319], [-85.6483318, 41.9431473]], "type": "LineString"}, "id": "626", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942214, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6522031, 41.9342811, -85.6517609, 41.9344576], "geometry": {"coordinates": [[-85.6522031, 41.9344576], [-85.6520991, 41.934441], [-85.6520326, 41.9344278], [-85.6519475, 41.9344079], [-85.6519281, 41.9343997], [-85.6518974, 41.9343867], [-85.6518512, 41.9343616], [-85.6518171, 41.9343353], [-85.6517609, 41.9342811]], "type": "LineString"}, "id": "627", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892840, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503332, 41.9463745, -85.6492949, 41.9463751], "geometry": {"coordinates": [[-85.6503332, 41.9463751], [-85.6492949, 41.9463745]], "type": "LineString"}, "id": "628", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277007, 41.9311702, -85.6276689, 41.9321598], "geometry": {"coordinates": [[-85.6277007, 41.9311702], [-85.6276875, 41.9313849], [-85.6276943, 41.931751], [-85.6276836, 41.9320326], [-85.6276689, 41.9321598]], "type": "LineString"}, "id": "629", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199685, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6509439, 41.9306047, -85.6509362, 41.9314117], "geometry": {"coordinates": [[-85.6509439, 41.9314117], [-85.6509362, 41.9306047]], "type": "LineString"}, "id": "630", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612675, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501662, 41.9274121, -85.6497553, 41.9277635], "geometry": {"coordinates": [[-85.6497593, 41.9274166], [-85.6501422, 41.9274121], [-85.6501662, 41.92743], [-85.6501662, 41.9277251], [-85.6501302, 41.9277505], [-85.6497553, 41.9277635]], "type": "LineString"}, "id": "631", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 903726422, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6229554, 41.9325237, -85.6225739, 41.9325257], "geometry": {"coordinates": [[-85.6225739, 41.9325257], [-85.6229554, 41.9325237]], "type": "LineString"}, "id": "632", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377971, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6235091, 41.9326665, -85.6232759, 41.9326681], "geometry": {"coordinates": [[-85.6232759, 41.9326681], [-85.6235091, 41.9326665]], "type": "LineString"}, "id": "633", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377975, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6283312, 41.946498, -85.620072, 41.9470656], "geometry": {"coordinates": [[-85.620072, 41.946538], [-85.622721, 41.946535], [-85.624912, 41.946524], [-85.627629, 41.946498], [-85.6281401, 41.9469632], [-85.6282451, 41.9470314], [-85.6283312, 41.9470656]], "type": "LineString"}, "id": "634", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Avenue", "oneway": null, "osm_id": 17967603, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6377053, 41.9394599, -85.6373179, 41.9395789], "geometry": {"coordinates": [[-85.6373179, 41.9395789], [-85.6376059, 41.9395626], [-85.637688, 41.9395446], [-85.6377053, 41.9395257], [-85.6376903, 41.9394982], [-85.6376626, 41.9394801], [-85.6373321, 41.9394599]], "type": "LineString"}, "id": "635", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947116508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6363884, 41.9446079, -85.6361996, 41.9447967], "geometry": {"coordinates": [[-85.6361996, 41.9447967], [-85.6363884, 41.9446079]], "type": "LineString"}, "id": "636", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 203988292, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636279, 41.9536856, -85.6362328, 41.958311], "geometry": {"coordinates": [[-85.6362328, 41.9536856], [-85.6362358, 41.9545823], [-85.636236, 41.954656], [-85.6362388, 41.9547432], [-85.636276, 41.955919], [-85.6362782, 41.9566334], [-85.636279, 41.956901], [-85.636271, 41.958311]], "type": "LineString"}, "id": "637", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Street", "oneway": null, "osm_id": 385299769, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6136206, 41.9555825, -85.6132507, 41.9557034], "geometry": {"coordinates": [[-85.6136206, 41.9557015], [-85.6135677, 41.9557034], [-85.6133381, 41.9556159], [-85.6132507, 41.9555825]], "type": "LineString"}, "id": "638", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179340, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450288, 41.9429048, -85.6447743, 41.9429056], "geometry": {"coordinates": [[-85.6450288, 41.9429056], [-85.6447743, 41.9429048]], "type": "LineString"}, "id": "639", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486785505, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633287, 41.952426, -85.6295992, 41.9524688], "geometry": {"coordinates": [[-85.6295992, 41.9524346], [-85.6297681, 41.9524688], [-85.630275, 41.952461], [-85.630855, 41.952452], [-85.6320668, 41.9524531], [-85.633287, 41.952426]], "type": "LineString"}, "id": "640", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Wheeler Street", "oneway": null, "osm_id": 17967573, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644417, 41.946364, -85.641946, 41.946413], "geometry": {"coordinates": [[-85.641946, 41.946413], [-85.642185, 41.946411], [-85.643148, 41.946389], [-85.644417, 41.946364]], "type": "LineString"}, "id": "641", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Yauney Street", "oneway": null, "osm_id": 17965353, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.645407, 41.9349594, -85.6450368, 41.9355358], "geometry": {"coordinates": [[-85.6454067, 41.9349594], [-85.645407, 41.935526], [-85.6450368, 41.9355358]], "type": "LineString"}, "id": "642", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907670910, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6376092, 41.9583124, -85.6370944, 41.9585073], "geometry": {"coordinates": [[-85.6376092, 41.9585073], [-85.6371037, 41.9585036], [-85.6370944, 41.9584984], [-85.6370944, 41.9583124]], "type": "LineString"}, "id": "643", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 770562236, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6218248, 41.9327071, -85.621721, 41.9332474], "geometry": {"coordinates": [[-85.621721, 41.9327071], [-85.6218226, 41.9328897], [-85.6218248, 41.9332474]], "type": "LineString"}, "id": "644", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1230947275, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6176031, 41.9446599, -85.6175794, 41.9454776], "geometry": {"coordinates": [[-85.6175794, 41.9446599], [-85.6176031, 41.9454776]], "type": "LineString"}, "id": "645", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528700, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503721, 41.9461802, -85.6492962, 41.9461809], "geometry": {"coordinates": [[-85.6503721, 41.9461802], [-85.6502338, 41.9461803], [-85.6492962, 41.9461809]], "type": "LineString"}, "id": "646", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942212, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502335, 41.930604, -85.6502232, 41.9314181], "geometry": {"coordinates": [[-85.6502335, 41.9314181], [-85.6502232, 41.930604]], "type": "LineString"}, "id": "647", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612678, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6463419, 41.9449179, -85.6452983, 41.9450817], "geometry": {"coordinates": [[-85.6452983, 41.9449179], [-85.6462305, 41.9449194], [-85.6463089, 41.9449953], [-85.6463295, 41.9450153], [-85.6463419, 41.9450817]], "type": "LineString"}, "id": "648", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907663747, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6465007, 41.9380798, -85.6455995, 41.9398834], "geometry": {"coordinates": [[-85.6457497, 41.9398834], [-85.6457469, 41.9398168], [-85.6457303, 41.9394142], [-85.645734, 41.9390682], [-85.6455995, 41.9386225], [-85.6456639, 41.9384868], [-85.6459214, 41.9382474], [-85.6461789, 41.9380798], [-85.6464793, 41.9380798], [-85.6465007, 41.9383432], [-85.6462887, 41.9384576], [-85.6459321, 41.9382474]], "type": "LineString"}, "id": "649", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Maple Crest", "oneway": null, "osm_id": 17966445, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355277, 41.9401138, -85.6352459, 41.940251], "geometry": {"coordinates": [[-85.6355277, 41.9401162], [-85.6355009, 41.940222], [-85.6354758, 41.940242], [-85.6354153, 41.9402484], [-85.6353444, 41.940251], [-85.6352459, 41.9402446], [-85.6352527, 41.9402002], [-85.6352544, 41.9401138]], "type": "LineString"}, "id": "650", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947116509, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637255, 41.940104, -85.633405, 41.9419564], "geometry": {"coordinates": [[-85.6358044, 41.9419514], [-85.6353886, 41.9419564], [-85.6352709, 41.9419441], [-85.6351843, 41.9419225], [-85.6350991, 41.9418921], [-85.6349439, 41.94176], [-85.6348391, 41.9416651], [-85.6346921, 41.9415489], [-85.6345862, 41.9414958], [-85.634476, 41.9414524], [-85.6338528, 41.9412282], [-85.6337312, 41.9411799], [-85.6336412, 41.941124], [-85.6335786, 41.9410619], [-85.6335358, 41.9409867], [-85.6334823, 41.9408547], [-85.633434, 41.9406778], [-85.633407, 41.9404582], [-85.633405, 41.9403452], [-85.6334276, 41.9402703], [-85.6334711, 41.9402064], [-85.6335473, 41.9401531], [-85.6336484, 41.9401261], [-85.6337802, 41.9401143], [-85.6345653, 41.9401078], [-85.6346806, 41.9401088], [-85.6350634, 41.9401122], [-85.6352544, 41.9401138], [-85.6355277, 41.9401162], [-85.635779, 41.9401184], [-85.6369542, 41.9401113], [-85.637255, 41.940104]], "type": "LineString"}, "id": "651", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 17966942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310312, 41.9417016, -85.6308179, 41.9418916], "geometry": {"coordinates": [[-85.6310312, 41.9418474], [-85.6309539, 41.9418715], [-85.6309043, 41.9418916], [-85.6308179, 41.9417525], [-85.6308492, 41.9417316], [-85.6309241, 41.9417016]], "type": "LineString"}, "id": "652", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870840922, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627403, 41.941035, -85.6269868, 41.9446899], "geometry": {"coordinates": [[-85.6269868, 41.941035], [-85.6272074, 41.9411396], [-85.6272566, 41.9411991], [-85.627295, 41.941304], [-85.627352, 41.94148], [-85.62737, 41.942261], [-85.6273949, 41.9432543], [-85.627401, 41.943496], [-85.627403, 41.943625], [-85.6274028, 41.9436719], [-85.6273993, 41.9446899]], "type": "LineString"}, "id": "653", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Middle Street", "oneway": null, "osm_id": 17964989, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354652, 41.9428814, -85.6354213, 41.9429637], "geometry": {"coordinates": [[-85.6354652, 41.9429637], [-85.6354622, 41.9429562], [-85.6354213, 41.9428814]], "type": "LineString"}, "id": "654", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 342503944, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6358187, 41.9460401, -85.6346449, 41.9460571], "geometry": {"coordinates": [[-85.6346449, 41.9460571], [-85.6347591, 41.9460545], [-85.6353839, 41.9460401], [-85.6354162, 41.946044], [-85.6358187, 41.9460423]], "type": "LineString"}, "id": "655", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Moore Street", "oneway": null, "osm_id": 17967628, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629998, 41.9409278, -85.6270633, 41.9446689], "geometry": {"coordinates": [[-85.6299942, 41.9446689], [-85.6299948, 41.9445812], [-85.629998, 41.944078], [-85.629972, 41.943927], [-85.6299489, 41.9437872], [-85.629692, 41.943136], [-85.6295818, 41.9429178], [-85.6295123, 41.9427401], [-85.629472, 41.942578], [-85.629444, 41.942414], [-85.6294175, 41.9422323], [-85.629391, 41.94205], [-85.629369, 41.941858], [-85.6293419, 41.9417168], [-85.6293102, 41.9416173], [-85.629275, 41.9415768], [-85.629233, 41.941549], [-85.6291835, 41.9415244], [-85.6290357, 41.9414799], [-85.6272955, 41.9410331], [-85.6270633, 41.9409278]], "type": "LineString"}, "id": "656", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Drive", "oneway": null, "osm_id": 17965305, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6225739, 41.9325257, -85.621721, 41.9327071], "geometry": {"coordinates": [[-85.6225739, 41.9325257], [-85.6222706, 41.9327035], [-85.6219584, 41.9327056], [-85.621721, 41.9327071]], "type": "LineString"}, "id": "657", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1230945135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626104, 41.9252038, -85.6253922, 41.9261001], "geometry": {"coordinates": [[-85.6256655, 41.9261001], [-85.6259979, 41.9260324], [-85.6260318, 41.9260164], [-85.626076, 41.9259656], [-85.6260982, 41.9259178], [-85.626104, 41.9258492], [-85.6259697, 41.9255243], [-85.625916, 41.9254323], [-85.6258822, 41.925388], [-85.6257246, 41.925262], [-85.625637, 41.9252151], [-85.6255704, 41.9252038], [-85.6253922, 41.9252226]], "type": "LineString"}, "id": "658", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768423796, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354184, 41.946044, -85.6354162, 41.9473091], "geometry": {"coordinates": [[-85.6354162, 41.946044], [-85.6354163, 41.946142], [-85.6354173, 41.9469082], [-85.6354184, 41.9473091]], "type": "LineString"}, "id": "659", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 208643139, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634776, 41.959834, -85.6321612, 41.959859], "geometry": {"coordinates": [[-85.6321612, 41.959859], [-85.634776, 41.959834]], "type": "LineString"}, "id": "660", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Burke Avenue", "oneway": null, "osm_id": 17965196, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6304211, 41.9649323, -85.6302268, 41.965951], "geometry": {"coordinates": [[-85.6302318, 41.965951], [-85.6302304, 41.9657359], [-85.6302268, 41.9652189], [-85.6302539, 41.9651405], [-85.6302889, 41.9650625], [-85.6303472, 41.9649931], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "661", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kennedy Boulevard", "oneway": "no", "osm_id": 203968019, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504364, 41.9317854, -85.6504338, 41.9323456], "geometry": {"coordinates": [[-85.6504338, 41.9317854], [-85.6504347, 41.9319904], [-85.6504356, 41.9321703], [-85.6504364, 41.9323456]], "type": "LineString"}, "id": "662", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116840, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6232759, 41.9326681, -85.6229586, 41.9326701], "geometry": {"coordinates": [[-85.6232759, 41.9326681], [-85.6229586, 41.9326701]], "type": "LineString"}, "id": "663", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377974, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6583049, 41.9250592, -85.6582058, 41.925818], "geometry": {"coordinates": [[-85.6583049, 41.925818], [-85.6582666, 41.9257257], [-85.6582521, 41.9256939], [-85.6582372, 41.9256534], [-85.6582058, 41.9255569], [-85.6582076, 41.9254828], [-85.6582179, 41.9250592]], "type": "LineString"}, "id": "664", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 897575552, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614642, 41.951639, -85.614204, 41.953696], "geometry": {"coordinates": [[-85.614617, 41.951639], [-85.61463, 41.951852], [-85.614642, 41.953436], [-85.6146, 41.953551], [-85.614487, 41.95363], [-85.614354, 41.953672], [-85.614204, 41.953696]], "type": "LineString"}, "id": "665", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Orchard Drive", "oneway": null, "osm_id": 17965156, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470591, 41.936893, -85.6455592, 41.93716], "geometry": {"coordinates": [[-85.6455592, 41.93716], [-85.6456244, 41.9370727], [-85.6464209, 41.9369006], [-85.6470591, 41.936893]], "type": "LineString"}, "id": "666", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 216243982, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6172077, 41.9524958, -85.6171235, 41.9525809], "geometry": {"coordinates": [[-85.6172077, 41.9524958], [-85.6171235, 41.9525809]], "type": "LineString"}, "id": "667", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839363, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297548, 41.9581373, -85.6295596, 41.9581416], "geometry": {"coordinates": [[-85.6295596, 41.9581416], [-85.6297548, 41.9581373]], "type": "LineString"}, "id": "668", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341313250, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6397719, 41.9638513, -85.634832, 41.9638663], "geometry": {"coordinates": [[-85.6397719, 41.9638513], [-85.638825, 41.963855], [-85.6365609, 41.963866], [-85.6364975, 41.9638663], [-85.6362597, 41.9638663], [-85.6361179, 41.9638663], [-85.634832, 41.963866]], "type": "LineString"}, "id": "669", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Clifton Drive", "oneway": null, "osm_id": 17965733, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345981, 41.9671412, -85.6340408, 41.9674736], "geometry": {"coordinates": [[-85.6340488, 41.9674736], [-85.6340437, 41.967263], [-85.6340408, 41.9671412], [-85.6342173, 41.9671412], [-85.6344659, 41.9671452], [-85.6345981, 41.9671726]], "type": "LineString"}, "id": "670", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870652352, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6281089, 41.9561288, -85.6280568, 41.9563134], "geometry": {"coordinates": [[-85.6280568, 41.9563134], [-85.6281089, 41.9561288]], "type": "LineString"}, "id": "671", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699280, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346384, 41.944007, -85.6345563, 41.9440523], "geometry": {"coordinates": [[-85.6346384, 41.944007], [-85.6345563, 41.9440523]], "type": "LineString"}, "id": "672", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974056, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344154, 41.9457778, -85.6340746, 41.9461956], "geometry": {"coordinates": [[-85.6344154, 41.9457778], [-85.6343769, 41.9457874], [-85.6343555, 41.9458014], [-85.6340746, 41.9461956]], "type": "LineString"}, "id": "673", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427785, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514321, 41.932543, -85.6514001, 41.9425113], "geometry": {"coordinates": [[-85.6514073, 41.932543], [-85.6514053, 41.9340249], [-85.6514001, 41.934237], [-85.6514038, 41.9345922], [-85.6514071, 41.9349069], [-85.6514146, 41.9356218], [-85.651426, 41.9364304], [-85.6514241, 41.9369195], [-85.651425, 41.9371055], [-85.6514295, 41.938015], [-85.6514321, 41.9385351], [-85.651418, 41.9397681], [-85.6514237, 41.9400273], [-85.6514281, 41.9402239], [-85.6514252, 41.9404998], [-85.6514188, 41.9408949], [-85.6514106, 41.9414082], [-85.6514254, 41.9419837], [-85.6514226, 41.9425113]], "type": "LineString"}, "id": "674", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131/M-60", "oneway": "yes", "osm_id": 41260273, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462305, 41.9447586, -85.6461709, 41.9449194], "geometry": {"coordinates": [[-85.6461709, 41.9447586], [-85.6462218, 41.9447953], [-85.6462305, 41.9449194]], "type": "LineString"}, "id": "675", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907663748, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6415366, 41.942783, -85.6413388, 41.9427862], "geometry": {"coordinates": [[-85.6415366, 41.942783], [-85.6413388, 41.9427862]], "type": "LineString"}, "id": "676", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 904632321, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453506, 41.9399002, -85.6443194, 41.9400924], "geometry": {"coordinates": [[-85.6443194, 41.9399444], [-85.6443284, 41.9400333], [-85.6443897, 41.9400924], [-85.6452278, 41.9400901], [-85.6453449, 41.9400053], [-85.6453506, 41.9399002]], "type": "LineString"}, "id": "677", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 203968032, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462572, 41.9374104, -85.6461265, 41.9379524], "geometry": {"coordinates": [[-85.6461265, 41.9379524], [-85.6462572, 41.9374104]], "type": "LineString"}, "id": "678", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 330877841, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394548, 41.940078, -85.6393662, 41.94261], "geometry": {"coordinates": [[-85.6393662, 41.940078], [-85.639402, 41.941344], [-85.6394516, 41.9425322], [-85.6394548, 41.94261]], "type": "LineString"}, "id": "679", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Hooker Avenue", "oneway": null, "osm_id": 17966879, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637424, 41.938692, -85.6357638, 41.9387029], "geometry": {"coordinates": [[-85.637424, 41.938692], [-85.6357638, 41.9387029]], "type": "LineString"}, "id": "680", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Lafayette Street", "oneway": null, "osm_id": 17966229, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6403832, 41.942199, -85.6401039, 41.9426034], "geometry": {"coordinates": [[-85.6403442, 41.9426034], [-85.6403436, 41.9425163], [-85.6403377, 41.9424458], [-85.6401471, 41.9424477], [-85.6401277, 41.9424412], [-85.6401145, 41.9424318], [-85.6401083, 41.9424176], [-85.6401039, 41.9422314], [-85.6401118, 41.9422129], [-85.6401256, 41.942204], [-85.6403582, 41.942199], [-85.640374, 41.9422082], [-85.6403832, 41.9422228], [-85.6403826, 41.942416], [-85.6403729, 41.9424299], [-85.6403594, 41.9424382], [-85.6403377, 41.9424458]], "type": "LineString"}, "id": "681", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942131, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637113, 41.947382, -85.636163, 41.9486], "geometry": {"coordinates": [[-85.636163, 41.947382], [-85.637113, 41.9486]], "type": "LineString"}, "id": "682", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Rock River Avenue", "oneway": null, "osm_id": 17967764, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6390493, 41.9523857, -85.634686, 41.952415], "geometry": {"coordinates": [[-85.634686, 41.952415], [-85.636233, 41.952398], [-85.637432, 41.952399], [-85.638661, 41.952386], [-85.6390493, 41.9523857]], "type": "LineString"}, "id": "683", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Wheeler Street", "oneway": null, "osm_id": 17966975, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480185, 41.9447787, -85.6463238, 41.9458902], "geometry": {"coordinates": [[-85.6480185, 41.9447787], [-85.6475593, 41.9448337], [-85.6469955, 41.9449804], [-85.6469512, 41.9450063], [-85.6466646, 41.945174], [-85.6464255, 41.9454662], [-85.6463238, 41.9457504], [-85.6463269, 41.9458902]], "type": "LineString"}, "id": "684", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Heather Lane", "oneway": null, "osm_id": 203968027, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638724, 41.954649, -85.638694, 41.955913], "geometry": {"coordinates": [[-85.638694, 41.954649], [-85.638724, 41.955913]], "type": "LineString"}, "id": "685", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Oak Street", "oneway": null, "osm_id": 772282740, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347636, 41.9583738, -85.6340073, 41.9585672], "geometry": {"coordinates": [[-85.6347636, 41.9583968], [-85.6345847, 41.9584131], [-85.6344679, 41.9584853], [-85.6342409, 41.9585672], [-85.6341043, 41.9585606], [-85.6340139, 41.9585131], [-85.6340073, 41.9584344], [-85.6340668, 41.9583984], [-85.6341792, 41.9583738], [-85.6344833, 41.9583836], [-85.6345847, 41.9584131]], "type": "LineString"}, "id": "686", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870710883, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348133, 41.9622807, -85.6341497, 41.9626109], "geometry": {"coordinates": [[-85.634812, 41.9622807], [-85.6346338, 41.9622888], [-85.6345915, 41.9622907], [-85.6341838, 41.9622966], [-85.6341604, 41.9623115], [-85.6341497, 41.9623277], [-85.6341519, 41.9625929], [-85.6341684, 41.9626052], [-85.6341948, 41.9626109], [-85.6346263, 41.9625994], [-85.6346411, 41.9625981], [-85.6348133, 41.9625821]], "type": "LineString"}, "id": "687", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056603773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620076, 41.9462622, -85.6192127, 41.946538], "geometry": {"coordinates": [[-85.620072, 41.946538], [-85.6199223, 41.9465288], [-85.6194551, 41.9465245], [-85.6192843, 41.9465227], [-85.6192279, 41.9464719], [-85.6192127, 41.9463205], [-85.6192784, 41.9462622], [-85.6197808, 41.9462663], [-85.6199266, 41.9462742], [-85.620076, 41.9462726]], "type": "LineString"}, "id": "688", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 836365190, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322909, 41.9432542, -85.6321102, 41.9434696], "geometry": {"coordinates": [[-85.6321102, 41.9432542], [-85.632207, 41.9433696], [-85.6322909, 41.9434696]], "type": "LineString"}, "id": "689", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "secondary", "layer": "1", "name": "South Main Street", "oneway": null, "osm_id": 847427775, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322992, 41.9437929, -85.6318433, 41.9442766], "geometry": {"coordinates": [[-85.6318433, 41.9437929], [-85.6322243, 41.9441971], [-85.6322992, 41.9442766]], "type": "LineString"}, "id": "690", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17967734, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629067, 41.953725, -85.6290531, 41.954691], "geometry": {"coordinates": [[-85.629067, 41.954691], [-85.6290664, 41.9546079], [-85.6290649, 41.9544006], [-85.6290531, 41.9542277], [-85.6290597, 41.953725]], "type": "LineString"}, "id": "691", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871048835, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6527327, 41.9306345, -85.6527224, 41.9315678], "geometry": {"coordinates": [[-85.6527224, 41.9306345], [-85.6527327, 41.9315678]], "type": "LineString"}, "id": "692", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612689, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.65275, 41.9315676, -85.6525077, 41.9325249], "geometry": {"coordinates": [[-85.6525822, 41.9315676], [-85.6525915, 41.9316853], [-85.6525542, 41.9317384], [-85.6525077, 41.9317638], [-85.6527343, 41.9320317], [-85.6527488, 41.9323899], [-85.6527491, 41.9324308], [-85.65275, 41.9325249]], "type": "LineString"}, "id": "693", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206803381, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517487, 41.932543, -85.6514073, 41.9325437], "geometry": {"coordinates": [[-85.6517487, 41.9325437], [-85.6514073, 41.932543]], "type": "LineString"}, "id": "694", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Broadway Street", "oneway": null, "osm_id": 17965840, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6481372, 41.9363404, -85.6481146, 41.9367519], "geometry": {"coordinates": [[-85.6481146, 41.9367519], [-85.6481372, 41.9366676], [-85.6481354, 41.9363404]], "type": "LineString"}, "id": "695", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 216243993, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523723, 41.9339563, -85.652009, 41.9339563], "geometry": {"coordinates": [[-85.6523723, 41.9339563], [-85.652009, 41.9339563]], "type": "LineString"}, "id": "696", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237754, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523463, 41.939758, -85.651777, 41.9404534], "geometry": {"coordinates": [[-85.651777, 41.9404534], [-85.6519526, 41.9404529], [-85.6519949, 41.9404528], [-85.6519947, 41.9404103], [-85.6519919, 41.9399266], [-85.6523463, 41.9399301], [-85.6523339, 41.939758]], "type": "LineString"}, "id": "697", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942244, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523417, 41.9421625, -85.6523355, 41.9425909], "geometry": {"coordinates": [[-85.6523417, 41.9425909], [-85.6523355, 41.9421625]], "type": "LineString"}, "id": "698", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786586, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458674, 41.942381, -85.6455552, 41.9423817], "geometry": {"coordinates": [[-85.6455552, 41.9423817], [-85.6458674, 41.942381]], "type": "LineString"}, "id": "699", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 382527763, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6385705, 41.9511217, -85.634686, 41.9511591], "geometry": {"coordinates": [[-85.634686, 41.951158], [-85.6362059, 41.9511457], [-85.637412, 41.9511359], [-85.6384444, 41.9511217], [-85.6385191, 41.9511347], [-85.6385705, 41.9511591]], "type": "LineString"}, "id": "700", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Armitage Street", "oneway": null, "osm_id": 17966118, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627629, 41.946498, -85.626843, 41.947333], "geometry": {"coordinates": [[-85.627629, 41.946498], [-85.626843, 41.947333]], "type": "LineString"}, "id": "701", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "John Glenn Court", "oneway": null, "osm_id": 17966061, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641825, 41.941316, -85.6370124, 41.9413618], "geometry": {"coordinates": [[-85.6370124, 41.9413618], [-85.6382188, 41.9413554], [-85.639402, 41.941344], [-85.6406381, 41.9413339], [-85.641825, 41.941316]], "type": "LineString"}, "id": "702", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Street", "oneway": null, "osm_id": 17966102, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634235, 41.9437875, -85.633613, 41.9443913], "geometry": {"coordinates": [[-85.6341246, 41.9443913], [-85.634235, 41.9443259], [-85.633613, 41.9437875]], "type": "LineString"}, "id": "703", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970907, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344828, 41.9434716, -85.6341175, 41.9435986], "geometry": {"coordinates": [[-85.6344828, 41.9435125], [-85.6344244, 41.9435393], [-85.6343558, 41.9434716], [-85.6341175, 41.9435986]], "type": "LineString"}, "id": "704", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370291, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6196772, 41.9487125, -85.6179558, 41.9510452], "geometry": {"coordinates": [[-85.6180593, 41.9495102], [-85.6180094, 41.9500981], [-85.6179639, 41.9507107], [-85.6179558, 41.9507215], [-85.6180027, 41.9508711], [-85.6180811, 41.9509626], [-85.6182133, 41.9510347], [-85.6183664, 41.9510452], [-85.6191861, 41.9510302], [-85.6193492, 41.9509589], [-85.619449, 41.950856], [-85.6196772, 41.9507383], [-85.6195271, 41.9501875], [-85.6196094, 41.9493142], [-85.6196373, 41.9487125]], "type": "LineString"}, "id": "705", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528703, "osm_type": "ways_line", "smoothness": null, "surface": "dirt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6366901, 41.9427625, -85.6358136, 41.9427899], "geometry": {"coordinates": [[-85.6366901, 41.9427899], [-85.6362766, 41.9427854], [-85.6361208, 41.9427777], [-85.6358136, 41.9427625]], "type": "LineString"}, "id": "706", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998360, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6472886, 41.9425396, -85.6472723, 41.9429545], "geometry": {"coordinates": [[-85.6472723, 41.9425396], [-85.6472753, 41.942616], [-85.6472886, 41.9429545]], "type": "LineString"}, "id": "707", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942839, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558094, 41.9413153, -85.6543429, 41.9413213], "geometry": {"coordinates": [[-85.6543429, 41.9413213], [-85.6558094, 41.9413153]], "type": "LineString"}, "id": "708", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771090, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650247, 41.950953, -85.649086, 41.953213], "geometry": {"coordinates": [[-85.650247, 41.95096], [-85.6500618, 41.9509537], [-85.650041, 41.950953], [-85.649906, 41.950963], [-85.64978, 41.950992], [-85.649703, 41.951036], [-85.649622, 41.951123], [-85.649531, 41.95124], [-85.649445, 41.951394], [-85.6491, 41.951963], [-85.649086, 41.952073], [-85.649099, 41.952167], [-85.649152, 41.952255], [-85.649241, 41.952349], [-85.649974, 41.952969], [-85.6501222, 41.9530714], [-85.650237, 41.953213]], "type": "LineString"}, "id": "709", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Circle Drive", "oneway": null, "osm_id": 17966996, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6349963, 41.9434328, -85.6338922, 41.9444392], "geometry": {"coordinates": [[-85.6338922, 41.9434328], [-85.6339697, 41.9435053], [-85.6340871, 41.9436147], [-85.6342019, 41.9437218], [-85.6345563, 41.9440523], [-85.6349723, 41.9444207], [-85.6349963, 41.9444392]], "type": "LineString"}, "id": "710", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970897, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347551, 41.9440555, -85.6329761, 41.9459809], "geometry": {"coordinates": [[-85.6329761, 41.9440555], [-85.6329938, 41.9440821], [-85.6332661, 41.9443733], [-85.6336697, 41.9447663], [-85.6344851, 41.9454935], [-85.6345746, 41.9455744], [-85.6346782, 41.9456731], [-85.6347471, 41.9457555], [-85.6347551, 41.9459809]], "type": "LineString"}, "id": "711", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427758, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632724, 41.944042, -85.6326206, 41.9441622], "geometry": {"coordinates": [[-85.632724, 41.9441622], [-85.632685, 41.9441169], [-85.6326206, 41.944042]], "type": "LineString"}, "id": "712", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427761, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6352821, 41.9480429, -85.6352699, 41.9486214], "geometry": {"coordinates": [[-85.6352821, 41.9486214], [-85.6352778, 41.9484197], [-85.6352699, 41.9480429]], "type": "LineString"}, "id": "713", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 217907766, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6257292, 41.929295, -85.62567, 41.93319], "geometry": {"coordinates": [[-85.62567, 41.929295], [-85.625696, 41.929367], [-85.625711, 41.92948], [-85.6257282, 41.9301667], [-85.6257292, 41.9302058], [-85.625711, 41.9311836], [-85.625695, 41.932173], [-85.625694, 41.93319]], "type": "LineString"}, "id": "714", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Street", "oneway": null, "osm_id": 17967211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6374708, 41.9298799, -85.6359052, 41.9312703], "geometry": {"coordinates": [[-85.6359052, 41.9298799], [-85.6363116, 41.930866], [-85.6364884, 41.9310993], [-85.6368065, 41.9312703], [-85.6374708, 41.9311633]], "type": "LineString"}, "id": "715", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Home Street", "oneway": null, "osm_id": 203968035, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6197791, 41.9436175, -85.6121403, 41.9444292], "geometry": {"coordinates": [[-85.6197791, 41.9437998], [-85.619472, 41.9437848], [-85.6192967, 41.9437763], [-85.6192255, 41.9438116], [-85.6189487, 41.9437175], [-85.6187721, 41.9436799], [-85.6186719, 41.9436586], [-85.6183713, 41.9437822], [-85.6183318, 41.9439704], [-85.6182527, 41.9441233], [-85.6181731, 41.9442022], [-85.6180866, 41.9442881], [-85.6178731, 41.9443469], [-85.6176596, 41.9443939], [-85.6176121, 41.9442763], [-85.61762, 41.9439469], [-85.6176438, 41.943788], [-85.617446, 41.9437175], [-85.6171455, 41.9436528], [-85.616845, 41.9436292], [-85.616584, 41.9436175], [-85.6165019, 41.9436452], [-85.616323, 41.9437057], [-85.6159671, 41.9438528], [-85.6156824, 41.9440704], [-85.6155005, 41.9442292], [-85.6153248, 41.9442769], [-85.6150023, 41.9443939], [-85.6144882, 41.9443998], [-85.6142829, 41.9444024], [-85.6133498, 41.9444141], [-85.6131752, 41.9444162], [-85.6121403, 41.9444292]], "type": "LineString"}, "id": "716", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528691, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6198756, 41.9433383, -85.618795, 41.9435363], "geometry": {"coordinates": [[-85.618795, 41.943511], [-85.619017, 41.943391], [-85.619059, 41.943368], [-85.6193037, 41.9433383], [-85.6195022, 41.9433463], [-85.6197329, 41.9434121], [-85.6198756, 41.9435363]], "type": "LineString"}, "id": "717", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17963058, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628481, 41.945597, -85.615273, 41.945637], "geometry": {"coordinates": [[-85.628481, 41.945611], [-85.624893, 41.945616], [-85.6227157, 41.9456321], [-85.620172, 41.945627], [-85.618327, 41.945607], [-85.617231, 41.945603], [-85.6166335, 41.9456025], [-85.616136, 41.945602], [-85.615453, 41.945597], [-85.615273, 41.945637]], "type": "LineString"}, "id": "718", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "4th Avenue", "oneway": null, "osm_id": 17967107, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355084, 41.9655431, -85.634842, 41.9655929], "geometry": {"coordinates": [[-85.634842, 41.9655431], [-85.6349864, 41.9655502], [-85.635119, 41.9655827], [-85.6352501, 41.9655929], [-85.6354305, 41.9655888], [-85.6355084, 41.9655868]], "type": "LineString"}, "id": "719", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 901146726, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6363514, 41.9610634, -85.6348246, 41.961089], "geometry": {"coordinates": [[-85.6348246, 41.9610634], [-85.635064, 41.9610674], [-85.6357931, 41.9610796], [-85.6363514, 41.961089]], "type": "LineString"}, "id": "720", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 307186115, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346411, 41.9624745, -85.6346375, 41.9625981], "geometry": {"coordinates": [[-85.6346411, 41.9625981], [-85.6346375, 41.9624745]], "type": "LineString"}, "id": "721", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056603774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6583584, 41.925818, -85.6583049, 41.9258983], "geometry": {"coordinates": [[-85.6583584, 41.9258983], [-85.6583049, 41.925818]], "type": "LineString"}, "id": "722", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 895396431, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6428209, 41.9429856, -85.6423603, 41.9429999], "geometry": {"coordinates": [[-85.6423603, 41.9429856], [-85.6428209, 41.9429999]], "type": "LineString"}, "id": "723", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056571145, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470405, 41.9423642, -85.6469127, 41.9425427], "geometry": {"coordinates": [[-85.6469154, 41.9425427], [-85.646914, 41.942468], [-85.6469127, 41.9423949], [-85.646946, 41.9423676], [-85.6469803, 41.9423642], [-85.6470405, 41.9423643]], "type": "LineString"}, "id": "724", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907934018, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.646186, 41.9426891, -85.6458668, 41.9430811], "geometry": {"coordinates": [[-85.6458668, 41.9430771], [-85.646013, 41.9430811], [-85.646131, 41.9430761], [-85.646186, 41.9430482], [-85.6461833, 41.942723], [-85.6461243, 41.9426891], [-85.6460479, 41.9426931]], "type": "LineString"}, "id": "725", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 980237759, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513977, 41.9437343, -85.6504725, 41.9443392], "geometry": {"coordinates": [[-85.6513977, 41.9437597], [-85.6507601, 41.9437423], [-85.6504912, 41.9437343], [-85.6504881, 41.9438257], [-85.6504829, 41.9439764], [-85.6504772, 41.9441443], [-85.6504725, 41.9442815], [-85.650998, 41.9443198], [-85.6513297, 41.9443392]], "type": "LineString"}, "id": "726", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942178, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6499897, 41.9363248, -85.6498146, 41.9365734], "geometry": {"coordinates": [[-85.6499897, 41.9365732], [-85.6499024, 41.9365734], [-85.6498875, 41.9365725], [-85.6498737, 41.9365709], [-85.6498618, 41.9365676], [-85.6498496, 41.9365629], [-85.6498418, 41.9365574], [-85.6498344, 41.9365503], [-85.6498284, 41.9365424], [-85.6498234, 41.9365341], [-85.6498188, 41.9365233], [-85.6498163, 41.9365117], [-85.6498146, 41.936492], [-85.6498156, 41.9364817], [-85.6498184, 41.9364743], [-85.649823, 41.936468], [-85.6498304, 41.9364595], [-85.6498465, 41.9364432], [-85.649858, 41.9364297], [-85.6498648, 41.9364178], [-85.6498701, 41.9364031], [-85.649871, 41.9363874], [-85.649871, 41.9363248]], "type": "LineString"}, "id": "727", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 993698651, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433104, 41.9361655, -85.6423202, 41.9361767], "geometry": {"coordinates": [[-85.6433104, 41.9361767], [-85.642426, 41.9361667], [-85.6423202, 41.9361655]], "type": "LineString"}, "id": "728", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6442477, 41.9339216, -85.637688, 41.93398], "geometry": {"coordinates": [[-85.637688, 41.93398], [-85.6388308, 41.9339698], [-85.6400729, 41.9339588], [-85.6412249, 41.9339485], [-85.6423893, 41.9339381], [-85.6442477, 41.9339216]], "type": "LineString"}, "id": "729", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Swartz Street", "oneway": null, "osm_id": 17964972, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.646608, 41.9344371, -85.645838, 41.9349514], "geometry": {"coordinates": [[-85.645849, 41.9349514], [-85.645838, 41.9344575], [-85.646608, 41.9344371]], "type": "LineString"}, "id": "730", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243996, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6448712, 41.9478219, -85.6448278, 41.9479054], "geometry": {"coordinates": [[-85.6448712, 41.9479054], [-85.6448278, 41.9478219]], "type": "LineString"}, "id": "731", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 498942807, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430153, 41.9279688, -85.6430137, 41.9284512], "geometry": {"coordinates": [[-85.6430153, 41.9284512], [-85.6430137, 41.9279688]], "type": "LineString"}, "id": "732", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143988, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6425883, 41.9281333, -85.6419828, 41.9284475], "geometry": {"coordinates": [[-85.6425818, 41.9284393], [-85.6425883, 41.9281333], [-85.6419844, 41.9281383], [-85.6419828, 41.9284475]], "type": "LineString"}, "id": "733", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143992, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6502853, 41.9496851, -85.6499839, 41.9505436], "geometry": {"coordinates": [[-85.6499839, 41.9505436], [-85.6500635, 41.9504703], [-85.6500578, 41.9499276], [-85.6502853, 41.9496851]], "type": "LineString"}, "id": "734", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 782636429, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621459, 41.9447384, -85.6200474, 41.944756], "geometry": {"coordinates": [[-85.6200474, 41.9447384], [-85.620982, 41.944742], [-85.621459, 41.944756]], "type": "LineString"}, "id": "735", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 17966772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.611615, 41.951686, -85.610989, 41.953704], "geometry": {"coordinates": [[-85.611187, 41.951686], [-85.611087, 41.951741], [-85.611034, 41.951852], [-85.611016, 41.95196], [-85.610989, 41.95328], [-85.611021, 41.953484], [-85.611091, 41.953603], [-85.6112, 41.953661], [-85.611364, 41.953686], [-85.611615, 41.953704]], "type": "LineString"}, "id": "736", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Blossom Drive", "oneway": null, "osm_id": 17964508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6464503, 41.9299763, -85.6464324, 41.930763], "geometry": {"coordinates": [[-85.6464503, 41.930763], [-85.6464324, 41.9299763]], "type": "LineString"}, "id": "737", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310471, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6252249, 41.9607526, -85.6252071, 41.960756], "geometry": {"coordinates": [[-85.6252249, 41.960756], [-85.6252071, 41.9607526]], "type": "LineString"}, "id": "738", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550695, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6142772, 41.9454409, -85.6121448, 41.9454868], "geometry": {"coordinates": [[-85.6142772, 41.9454804], [-85.6133599, 41.9454832], [-85.6132045, 41.9454837], [-85.6122245, 41.9454868], [-85.6121448, 41.9454409]], "type": "LineString"}, "id": "739", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528695, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6353282, 41.9416773, -85.6351097, 41.9416973], "geometry": {"coordinates": [[-85.6351097, 41.9416973], [-85.6353282, 41.9416773]], "type": "LineString"}, "id": "740", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 382320150, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650657, 41.945804, -85.6502225, 41.9459986], "geometry": {"coordinates": [[-85.6503697, 41.9458179], [-85.6502225, 41.945804], [-85.6502272, 41.9459986], [-85.6503899, 41.94599], [-85.650657, 41.945976]], "type": "LineString"}, "id": "741", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942188, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6154103, 41.9442728, -85.6132496, 41.9444228], "geometry": {"coordinates": [[-85.6132496, 41.9442728], [-85.6142879, 41.9442839], [-85.6150952, 41.9442839], [-85.6153248, 41.9442769], [-85.6154103, 41.9444228]], "type": "LineString"}, "id": "742", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962830, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6411335, 41.9272048, -85.6410501, 41.9273876], "geometry": {"coordinates": [[-85.6410503, 41.9273876], [-85.6410501, 41.9272061], [-85.6411335, 41.9272048]], "type": "LineString"}, "id": "743", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143991, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467484, 41.9416139, -85.6463486, 41.9425472], "geometry": {"coordinates": [[-85.6467484, 41.9417337], [-85.6467446, 41.9416214], [-85.6463486, 41.9416139], [-85.6463796, 41.9424735], [-85.6463823, 41.9425472]], "type": "LineString"}, "id": "744", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6237302, 41.9326653, -85.6235091, 41.9328259], "geometry": {"coordinates": [[-85.6237302, 41.9326653], [-85.623519, 41.9328259], [-85.6235091, 41.9326665]], "type": "LineString"}, "id": "745", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1230945140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624776, 41.933205, -85.620035, 41.933297], "geometry": {"coordinates": [[-85.620035, 41.933297], [-85.620185, 41.933265], [-85.620722, 41.933245], [-85.62111, 41.933254], [-85.6214708, 41.9332507], [-85.6218248, 41.9332474], [-85.623501, 41.933232], [-85.624776, 41.933205]], "type": "LineString"}, "id": "746", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Broadway Street", "oneway": null, "osm_id": 17962489, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6237302, 41.9325146, -85.6235042, 41.9326665], "geometry": {"coordinates": [[-85.6235042, 41.9325177], [-85.623727, 41.9325146], [-85.6237302, 41.9326653], [-85.6235091, 41.9326665]], "type": "LineString"}, "id": "747", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377967, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6239421, 41.9542292, -85.6238228, 41.9542338], "geometry": {"coordinates": [[-85.6239421, 41.9542338], [-85.6238829, 41.9542315], [-85.6238228, 41.9542292]], "type": "LineString"}, "id": "748", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 758296774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6244542, 41.9547066, -85.6240991, 41.954708], "geometry": {"coordinates": [[-85.6244542, 41.9547066], [-85.6240991, 41.954708]], "type": "LineString"}, "id": "749", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "East Hoffman Street", "oneway": null, "osm_id": 201484345, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6240991, 41.9544535, -85.6180008, 41.9547403], "geometry": {"coordinates": [[-85.6240991, 41.954708], [-85.6238505, 41.9546684], [-85.622923, 41.954469], [-85.6226758, 41.9544535], [-85.622368, 41.954472], [-85.6206237, 41.9546878], [-85.6205024, 41.9547019], [-85.6201708, 41.9547403], [-85.6194958, 41.9547372], [-85.6187301, 41.9547339], [-85.6186424, 41.9547335], [-85.6180008, 41.9547387]], "type": "LineString"}, "id": "750", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 201484348, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6241697, 41.9530001, -85.6237809, 41.9530647], "geometry": {"coordinates": [[-85.6241697, 41.9530647], [-85.6237809, 41.9530001]], "type": "LineString"}, "id": "751", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 946763076, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6234008, 41.9488938, -85.6233971, 41.9492379], "geometry": {"coordinates": [[-85.6234008, 41.9488938], [-85.6233971, 41.9492379]], "type": "LineString"}, "id": "752", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964875, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478176, 41.950515, -85.6469634, 41.9508682], "geometry": {"coordinates": [[-85.6469634, 41.950515], [-85.6478176, 41.9508682]], "type": "LineString"}, "id": "753", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963531, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6442727, 41.9553112, -85.6408843, 41.9565243], "geometry": {"coordinates": [[-85.6408843, 41.9555822], [-85.6414548, 41.9557751], [-85.6435584, 41.9565243], [-85.6436741, 41.9563278], [-85.6437591, 41.9561834], [-85.6438578, 41.9560158], [-85.6439376, 41.9558803], [-85.6440239, 41.9557338], [-85.6441108, 41.9555861], [-85.6442727, 41.9553112]], "type": "LineString"}, "id": "754", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963182, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6265759, 41.9573635, -85.6262922, 41.9574545], "geometry": {"coordinates": [[-85.6265759, 41.9574545], [-85.6264246, 41.957406], [-85.6262922, 41.9573635]], "type": "LineString"}, "id": "755", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699292, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333607, 41.952426, -85.633287, 41.9582301], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.633307, 41.9537], [-85.6333107, 41.9545973], [-85.633311, 41.954679], [-85.6333121, 41.954751], [-85.6333181, 41.9551461], [-85.633322, 41.9554048], [-85.6333299, 41.9559271], [-85.6333496, 41.9573981], [-85.6333607, 41.9582301]], "type": "LineString"}, "id": "756", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": null, "osm_id": 775171420, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6233606, 41.9615118, -85.6225664, 41.961948], "geometry": {"coordinates": [[-85.6233606, 41.961948], [-85.6232263, 41.9619456], [-85.6230062, 41.9618558], [-85.622719, 41.9617121], [-85.6226224, 41.9616157], [-85.6225664, 41.9615118]], "type": "LineString"}, "id": "757", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 836725337, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6212813, 41.9546878, -85.6206237, 41.956026], "geometry": {"coordinates": [[-85.6206237, 41.9546878], [-85.6206885, 41.9549388], [-85.6206957, 41.9550661], [-85.6206912, 41.955367], [-85.6207144, 41.955449], [-85.6207506, 41.9555258], [-85.620832, 41.9556333], [-85.6212813, 41.956026]], "type": "LineString"}, "id": "758", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17964176, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6133841, 41.9555825, -85.6122448, 41.9561999], "geometry": {"coordinates": [[-85.6133841, 41.9561999], [-85.6122743, 41.9561884], [-85.6122609, 41.9560122], [-85.6122448, 41.9557994], [-85.612304, 41.9555825]], "type": "LineString"}, "id": "759", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179342, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624215, 41.940124, -85.61433, 41.940167], "geometry": {"coordinates": [[-85.61433, 41.940167], [-85.6159779, 41.9401637], [-85.617359, 41.940161], [-85.6186784, 41.9401557], [-85.6204461, 41.9401485], [-85.6213353, 41.9401443], [-85.621605, 41.940143], [-85.622643, 41.940128], [-85.623571, 41.940124], [-85.624215, 41.940134]], "type": "LineString"}, "id": "760", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "River Street", "oneway": null, "osm_id": 17967745, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630997, 41.929206, -85.62663, 41.929251], "geometry": {"coordinates": [[-85.62663, 41.929251], [-85.6283251, 41.9292335], [-85.6296503, 41.9292199], [-85.630997, 41.929206]], "type": "LineString"}, "id": "761", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Union Street", "oneway": null, "osm_id": 17966558, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521586, 41.9433803, -85.6517163, 41.943946], "geometry": {"coordinates": [[-85.6517163, 41.943931], [-85.651906, 41.9439423], [-85.6519507, 41.943946], [-85.6520942, 41.9439001], [-85.6521149, 41.9437332], [-85.6521586, 41.9433803]], "type": "LineString"}, "id": "762", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942241, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272188, 41.9400544, -85.6272188, 41.9401381], "geometry": {"coordinates": [[-85.6272188, 41.9400544], [-85.6272188, 41.9400832], [-85.6272188, 41.9401381]], "type": "LineString"}, "id": "763", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550663, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643102, 41.945103, -85.6375025, 41.9458685], "geometry": {"coordinates": [[-85.6375025, 41.9458685], [-85.6386033, 41.9455048], [-85.6389034, 41.9453872], [-85.6391279, 41.9453044], [-85.6393332, 41.9452388], [-85.6394802, 41.9451962], [-85.6396448, 41.9451666], [-85.6398249, 41.9451425], [-85.640683, 41.94513], [-85.641922, 41.945121], [-85.643102, 41.945103]], "type": "LineString"}, "id": "764", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Pealer Street", "oneway": null, "osm_id": 17966281, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635643, 41.945585, -85.6353839, 41.9460401], "geometry": {"coordinates": [[-85.6353839, 41.9460401], [-85.6353895, 41.9459347], [-85.6353997, 41.9457421], [-85.6354032, 41.9456763], [-85.635643, 41.945585]], "type": "LineString"}, "id": "765", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970911, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348313, 41.9647886, -85.6335028, 41.9648771], "geometry": {"coordinates": [[-85.6335028, 41.9647886], [-85.6337013, 41.9648173], [-85.633889, 41.9648572], [-85.6340232, 41.9648731], [-85.6348313, 41.9648771]], "type": "LineString"}, "id": "766", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "yes", "osm_id": 1033167061, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62478, 41.925597, -85.624703, 41.933205], "geometry": {"coordinates": [[-85.624703, 41.925597], [-85.624716, 41.927359], [-85.624721, 41.929278], [-85.624741, 41.93019], [-85.62475, 41.93119], [-85.62478, 41.93217], [-85.624776, 41.933205]], "type": "LineString"}, "id": "767", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 17966211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351097, 41.9416973, -85.6348113, 41.9418101], "geometry": {"coordinates": [[-85.6348113, 41.9418101], [-85.6349439, 41.94176], [-85.6351097, 41.9416973]], "type": "LineString"}, "id": "768", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974074, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638694, 41.9511591, -85.6385705, 41.954649], "geometry": {"coordinates": [[-85.6385705, 41.9511591], [-85.6385961, 41.9511842], [-85.6386095, 41.9512214], [-85.638661, 41.952386], [-85.638654, 41.953665], [-85.6386912, 41.9545803], [-85.638694, 41.954649]], "type": "LineString"}, "id": "769", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Oak Street", "oneway": null, "osm_id": 17965149, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191709, 41.9567483, -85.6186116, 41.9568717], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6186116, 41.9568717]], "type": "LineString"}, "id": "770", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 1056815666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633089, 41.9440586, -85.632801, 41.9443541], "geometry": {"coordinates": [[-85.632801, 41.9440586], [-85.63288, 41.9441396], [-85.6329845, 41.9442469], [-85.633089, 41.9443541]], "type": "LineString"}, "id": "771", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 143497377, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6538291, 41.9306308, -85.6538265, 41.9315711], "geometry": {"coordinates": [[-85.6538291, 41.9306308], [-85.6538265, 41.9315711]], "type": "LineString"}, "id": "772", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612684, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6554472, 41.9317842, -85.6549066, 41.9325], "geometry": {"coordinates": [[-85.6554472, 41.9325], [-85.655446, 41.9321896], [-85.6554446, 41.9318301], [-85.6554258, 41.9318022], [-85.6553883, 41.9317842], [-85.6549833, 41.9317862], [-85.6549322, 41.9318026], [-85.6549066, 41.9318345], [-85.6549066, 41.9321261], [-85.6549072, 41.9321903]], "type": "LineString"}, "id": "773", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771226856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.655446, 41.9321896, -85.6549072, 41.9321903], "geometry": {"coordinates": [[-85.655446, 41.9321896], [-85.6549072, 41.9321903]], "type": "LineString"}, "id": "774", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056615092, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543315, 41.9315747, -85.6543217, 41.9325147], "geometry": {"coordinates": [[-85.6543217, 41.9315747], [-85.6543244, 41.9318376], [-85.6543292, 41.9322932], [-85.6543315, 41.9325147]], "type": "LineString"}, "id": "775", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843132, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6586857, 41.9315733, -85.6556729, 41.9324768], "geometry": {"coordinates": [[-85.6556729, 41.9315833], [-85.6559588, 41.9315833], [-85.6568062, 41.9315802], [-85.6586775, 41.9315733], [-85.6586857, 41.9324768]], "type": "LineString"}, "id": "776", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 835952451, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567912, 41.9297418, -85.655939, 41.9297418], "geometry": {"coordinates": [[-85.6567912, 41.9297418], [-85.655939, 41.9297418]], "type": "LineString"}, "id": "777", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237751, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6538656, 41.9378713, -85.6517637, 41.9378819], "geometry": {"coordinates": [[-85.6517637, 41.9378819], [-85.6519447, 41.937881], [-85.6538656, 41.9378713]], "type": "LineString"}, "id": "778", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612667, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514321, 41.9385351, -85.6502585, 41.9397993], "geometry": {"coordinates": [[-85.6502878, 41.9397993], [-85.6502817, 41.9397147], [-85.6502625, 41.9395828], [-85.6502598, 41.9388906], [-85.6502592, 41.9387297], [-85.6502588, 41.9386272], [-85.6502585, 41.9385482], [-85.6510457, 41.9385379], [-85.6512584, 41.9385364], [-85.6514321, 41.9385351]], "type": "LineString"}, "id": "779", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 223349378, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523746, 41.9342932, -85.6520861, 41.9342943], "geometry": {"coordinates": [[-85.6523746, 41.9342943], [-85.6520861, 41.9342932]], "type": "LineString"}, "id": "780", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237756, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514001, 41.934237, -85.6510714, 41.9344638], "geometry": {"coordinates": [[-85.6514001, 41.934237], [-85.6513671, 41.9342986], [-85.6513448, 41.9343297], [-85.6513197, 41.9343577], [-85.6512798, 41.9343875], [-85.6512342, 41.9344138], [-85.6511694, 41.9344404], [-85.6510714, 41.9344638]], "type": "LineString"}, "id": "781", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892842, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651047, 41.9387297, -85.6502592, 41.9387331], "geometry": {"coordinates": [[-85.651047, 41.9387331], [-85.6502592, 41.9387297]], "type": "LineString"}, "id": "782", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488054998, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6349687, 41.9391788, -85.6347273, 41.9396563], "geometry": {"coordinates": [[-85.6347429, 41.9396563], [-85.6347273, 41.9392426], [-85.6347273, 41.9391828], [-85.6349687, 41.9391788]], "type": "LineString"}, "id": "783", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331305149, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6276, 41.937412, -85.627101, 41.9402001], "geometry": {"coordinates": [[-85.6276, 41.937412], [-85.627451, 41.937549], [-85.627375, 41.937618], [-85.627278, 41.937728], [-85.627199, 41.937842], [-85.627141, 41.937981], [-85.627109, 41.938153], [-85.627101, 41.938699], [-85.6271023, 41.9391445], [-85.627127, 41.940086], [-85.6271315, 41.9402001]], "type": "LineString"}, "id": "784", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Street", "oneway": null, "osm_id": 17966740, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.648338, 41.9367985, -85.6481929, 41.9372238], "geometry": {"coordinates": [[-85.6481929, 41.9372238], [-85.648338, 41.9367985]], "type": "LineString"}, "id": "785", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243991, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6488123, 41.934601, -85.6483349, 41.9346027], "geometry": {"coordinates": [[-85.6488123, 41.9346011], [-85.6484771, 41.934601], [-85.6483349, 41.9346027]], "type": "LineString"}, "id": "786", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243994, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.645155, 41.9384004, -85.6445762, 41.9385249], "geometry": {"coordinates": [[-85.6445762, 41.9385249], [-85.6448147, 41.9384748], [-85.645155, 41.9384004]], "type": "LineString"}, "id": "787", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643126, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493756, 41.9339026, -85.649169, 41.9339129], "geometry": {"coordinates": [[-85.6493756, 41.9339129], [-85.649169, 41.9339026]], "type": "LineString"}, "id": "788", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034086, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6410503, 41.9273876, -85.64077, 41.9273885], "geometry": {"coordinates": [[-85.6410503, 41.9273876], [-85.64077, 41.9273885]], "type": "LineString"}, "id": "789", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143995, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6553677, 41.9269356, -85.6517428, 41.9317494], "geometry": {"coordinates": [[-85.6517428, 41.9317494], [-85.6518092, 41.931266], [-85.6518285, 41.9311133], [-85.6518574, 41.9309425], [-85.6518969, 41.9307697], [-85.6519433, 41.9306021], [-85.6519956, 41.9304406], [-85.6520934, 41.9301825], [-85.6522031, 41.9299607], [-85.6523478, 41.9297009], [-85.6524875, 41.929452], [-85.6526545, 41.9292055], [-85.6528029, 41.9290018], [-85.652989, 41.9287672], [-85.653175, 41.9285643], [-85.6533698, 41.9283637], [-85.6535634, 41.9281763], [-85.6538866, 41.9278968], [-85.6541161, 41.9277202], [-85.65442, 41.9275043], [-85.6546853, 41.927335], [-85.6549325, 41.9271871], [-85.6553677, 41.9269356]], "type": "LineString"}, "id": "790", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 17967582, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517487, 41.9317494, -85.6517428, 41.9325437], "geometry": {"coordinates": [[-85.6517487, 41.9325437], [-85.6517428, 41.9317494]], "type": "LineString"}, "id": "791", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 1111894475, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467542, 41.9390937, -85.6457303, 41.9394142], "geometry": {"coordinates": [[-85.6457303, 41.9394142], [-85.6460371, 41.9394131], [-85.6467542, 41.9394103], [-85.6467516, 41.939336], [-85.6465816, 41.9392181], [-85.6464022, 41.9390937], [-85.6460397, 41.9393458], [-85.6460371, 41.9394131]], "type": "LineString"}, "id": "792", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208622588, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6471066, 41.9299668, -85.6470951, 41.9307432], "geometry": {"coordinates": [[-85.6471066, 41.9307432], [-85.6470951, 41.9299668]], "type": "LineString"}, "id": "793", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310403, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339163, 41.9435358, -85.6329761, 41.9440555], "geometry": {"coordinates": [[-85.6339163, 41.9435358], [-85.6337187, 41.9436482], [-85.6334771, 41.9437888], [-85.6329761, 41.9440555]], "type": "LineString"}, "id": "794", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370286, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506091, 41.9321698, -85.6500556, 41.9321713], "geometry": {"coordinates": [[-85.6506091, 41.9321698], [-85.6504356, 41.9321703], [-85.6500556, 41.9321713]], "type": "LineString"}, "id": "795", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 938116843, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6114576, 41.947489, -85.6109156, 41.948597], "geometry": {"coordinates": [[-85.6114576, 41.947489], [-85.6114165, 41.9475559], [-85.611398, 41.9478719], [-85.6113959, 41.9481802], [-85.6114123, 41.9485039], [-85.6113056, 41.948597], [-85.6109156, 41.9485894]], "type": "LineString"}, "id": "796", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871078454, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6213353, 41.9398154, -85.6209859, 41.9401443], "geometry": {"coordinates": [[-85.6213353, 41.9401443], [-85.6213222, 41.9400743], [-85.6213101, 41.9400099], [-85.6209859, 41.9398154]], "type": "LineString"}, "id": "797", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947885401, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159835, 41.9401637, -85.6158355, 41.9412878], "geometry": {"coordinates": [[-85.6159779, 41.9401637], [-85.6159835, 41.9408216], [-85.6159605, 41.9409403], [-85.6158814, 41.9411948], [-85.6158355, 41.9412878]], "type": "LineString"}, "id": "798", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 725036396, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6290427, 41.9342067, -85.6290391, 41.9351928], "geometry": {"coordinates": [[-85.6290427, 41.9351928], [-85.6290391, 41.9342067]], "type": "LineString"}, "id": "799", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771514375, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263821, 41.9321695, -85.6263674, 41.93319], "geometry": {"coordinates": [[-85.6263762, 41.93319], [-85.6263821, 41.9327245], [-85.6263674, 41.9321695]], "type": "LineString"}, "id": "800", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315379, 41.9420689, -85.6307497, 41.9427027], "geometry": {"coordinates": [[-85.631194, 41.9420689], [-85.6311251, 41.9421003], [-85.6307497, 41.9422559], [-85.6311102, 41.9427027], [-85.6314727, 41.9425648], [-85.6315379, 41.9425368]], "type": "LineString"}, "id": "801", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 780463204, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6312065, 41.9444675, -85.621459, 41.944756], "geometry": {"coordinates": [[-85.621459, 41.944756], [-85.6226744, 41.9447371], [-85.6248856, 41.9447242], [-85.6273993, 41.9446899], [-85.6286375, 41.9446764], [-85.629471, 41.9446718], [-85.6299942, 41.9446689], [-85.630139, 41.944661], [-85.630298, 41.944635], [-85.6312065, 41.9444675]], "type": "LineString"}, "id": "802", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 41074896, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6320827, 41.9537069, -85.628639, 41.9537314], "geometry": {"coordinates": [[-85.628639, 41.953725], [-85.6290597, 41.953725], [-85.629083, 41.953725], [-85.629676, 41.9537314], [-85.6302752, 41.9537226], [-85.6302845, 41.9537225], [-85.6308677, 41.9537139], [-85.6320827, 41.9537069]], "type": "LineString"}, "id": "803", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Cushman Street", "oneway": null, "osm_id": 17966787, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507766, 41.9413392, -85.6503944, 41.9415975], "geometry": {"coordinates": [[-85.6503969, 41.9415975], [-85.650396, 41.9414988], [-85.6503944, 41.9413432], [-85.6507766, 41.9413392]], "type": "LineString"}, "id": "804", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942144, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6571522, 41.9428016, -85.6541017, 41.9428137], "geometry": {"coordinates": [[-85.6541017, 41.9428133], [-85.654358, 41.9428137], [-85.655777, 41.9428041], [-85.6571522, 41.9428016]], "type": "LineString"}, "id": "805", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771081, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6440239, 41.9552083, -85.6425511, 41.9557338], "geometry": {"coordinates": [[-85.6425511, 41.9552083], [-85.6440239, 41.9557338]], "type": "LineString"}, "id": "806", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776878, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6195966, 41.9544848, -85.6195234, 41.954612], "geometry": {"coordinates": [[-85.6195234, 41.954612], [-85.6195966, 41.9544848]], "type": "LineString"}, "id": "807", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 871399920, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.613366, 41.9548559, -85.6133445, 41.9554045], "geometry": {"coordinates": [[-85.613366, 41.9554045], [-85.6133576, 41.9551912], [-85.6133445, 41.9548559]], "type": "LineString"}, "id": "808", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 354179343, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6171273, 41.954688, -85.610373, 41.954774], "geometry": {"coordinates": [[-85.6171273, 41.954688], [-85.616773, 41.954737], [-85.616699, 41.954742], [-85.6148042, 41.9547511], [-85.614195, 41.954754], [-85.613542, 41.954756], [-85.6118411, 41.9547642], [-85.611651, 41.954761], [-85.610373, 41.954774]], "type": "LineString"}, "id": "809", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 41074899, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6495361, 41.9306033, -85.6495102, 41.9314245], "geometry": {"coordinates": [[-85.6495361, 41.9314245], [-85.6495102, 41.9306033]], "type": "LineString"}, "id": "810", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497648, 41.9262607, -85.6497013, 41.9269716], "geometry": {"coordinates": [[-85.6497648, 41.9269716], [-85.6497013, 41.9265393], [-85.6497013, 41.9262607]], "type": "LineString"}, "id": "811", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 903726421, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497648, 41.9269716, -85.6497553, 41.9277635], "geometry": {"coordinates": [[-85.6497648, 41.9269716], [-85.6497605, 41.9273083], [-85.6497593, 41.9274166], [-85.6497574, 41.9275806], [-85.6497553, 41.9277635]], "type": "LineString"}, "id": "812", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "KDF Drive", "oneway": null, "osm_id": 259782253, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470323, 41.9333044, -85.6458467, 41.9334491], "geometry": {"coordinates": [[-85.6470323, 41.9333044], [-85.6468995, 41.9333094], [-85.6465039, 41.9333124], [-85.6464744, 41.9333284], [-85.646469, 41.9333643], [-85.6464677, 41.9334162], [-85.6464408, 41.9334391], [-85.6463724, 41.9334491], [-85.6461109, 41.9334421], [-85.6460573, 41.9334221], [-85.6460358, 41.9334012], [-85.646005, 41.9333912], [-85.6458467, 41.9333932]], "type": "LineString"}, "id": "813", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 904632317, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517642, 41.9371055, -85.651425, 41.9376145], "geometry": {"coordinates": [[-85.651425, 41.9371055], [-85.6514514, 41.9372492], [-85.6514679, 41.9373643], [-85.6514743, 41.9374748], [-85.6514797, 41.9375145], [-85.6514847, 41.9375415], [-85.6514917, 41.9375644], [-85.651513, 41.9375876], [-85.6515367, 41.9376031], [-85.6515648, 41.937608], [-85.651602, 41.9376145], [-85.6516428, 41.9376136], [-85.6516774, 41.9376081], [-85.6517141, 41.937595], [-85.6517642, 41.9375686]], "type": "LineString"}, "id": "814", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892839, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493883, 41.9346687, -85.6491767, 41.9346705], "geometry": {"coordinates": [[-85.6493883, 41.9346687], [-85.6491767, 41.9346705]], "type": "LineString"}, "id": "815", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034084, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6492242, 41.9325853, -85.649169, 41.9350984], "geometry": {"coordinates": [[-85.6492242, 41.9325853], [-85.6492211, 41.9326584], [-85.649169, 41.9339026], [-85.6491733, 41.934331], [-85.6491767, 41.9346705], [-85.649181, 41.9350984]], "type": "LineString"}, "id": "816", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034082, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510831, 41.933755, -85.6508491, 41.9351167], "geometry": {"coordinates": [[-85.650876, 41.9344656], [-85.6508586, 41.9337563], [-85.6510587, 41.933755], [-85.6510714, 41.9344638], [-85.6510831, 41.9351167], [-85.6508598, 41.9351167], [-85.6508491, 41.9344658]], "type": "LineString"}, "id": "817", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034079, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6365328, 41.9329312, -85.6355692, 41.9330969], "geometry": {"coordinates": [[-85.6365328, 41.9329312], [-85.6355692, 41.9330969]], "type": "LineString"}, "id": "818", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "West Broadway Street", "oneway": null, "osm_id": 134150815, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650778, 41.9415477, -85.6490317, 41.9422759], "geometry": {"coordinates": [[-85.6490317, 41.9422759], [-85.6497534, 41.9421402], [-85.6499948, 41.9420784], [-85.650381, 41.9418469], [-85.6504915, 41.9417636], [-85.6507207, 41.9415908], [-85.650778, 41.9415477]], "type": "LineString"}, "id": "819", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942141, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517841, 41.9397681, -85.646656, 41.939869], "geometry": {"coordinates": [[-85.6517841, 41.9397701], [-85.651418, 41.9397681], [-85.6512494, 41.9397769], [-85.6502878, 41.9397993], [-85.648941, 41.939829], [-85.6478296, 41.9398349], [-85.6477024, 41.9398356], [-85.647488, 41.939838], [-85.6469804, 41.9398569], [-85.646656, 41.939869]], "type": "LineString"}, "id": "820", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Road", "oneway": null, "osm_id": 379694336, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6318349, 41.9375304, -85.6271946, 41.943049], "geometry": {"coordinates": [[-85.6318349, 41.943049], [-85.6314727, 41.9425648], [-85.6311251, 41.9421003], [-85.6309539, 41.9418715], [-85.6308492, 41.9417316], [-85.6296408, 41.9401162], [-85.6296113, 41.940079], [-85.6295657, 41.9400125], [-85.6289595, 41.9391765], [-85.6289353, 41.9391307], [-85.6288791, 41.9390747], [-85.6281109, 41.9380345], [-85.6280422, 41.9379415], [-85.627825, 41.9376422], [-85.6278042, 41.9376286], [-85.6276882, 41.9375524], [-85.6276211, 41.9375304], [-85.6275594, 41.9375524], [-85.62742, 41.9376681], [-85.6273073, 41.9378058], [-85.6272456, 41.9379235], [-85.6272027, 41.9380612], [-85.6271946, 41.9381629], [-85.6272081, 41.9391437], [-85.6272188, 41.9400544]], "type": "LineString"}, "id": "821", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370300, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517626, 41.9348429, -85.6514071, 41.9352599], "geometry": {"coordinates": [[-85.6517626, 41.9352599], [-85.6516994, 41.9349378], [-85.6516849, 41.9348936], [-85.6516665, 41.934871], [-85.651633, 41.9348528], [-85.6515969, 41.934845], [-85.6515501, 41.9348429], [-85.651509, 41.9348463], [-85.6514713, 41.9348546], [-85.6514382, 41.9348765], [-85.6514071, 41.9349069]], "type": "LineString"}, "id": "822", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892845, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6398429, 41.9536507, -85.6398159, 41.954651], "geometry": {"coordinates": [[-85.6398159, 41.9536507], [-85.6398429, 41.954651]], "type": "LineString"}, "id": "823", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 793896305, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6200474, 41.94413, -85.618711, 41.9447384], "geometry": {"coordinates": [[-85.618711, 41.94413], [-85.6191189, 41.9441922], [-85.6194384, 41.9442405], [-85.6196543, 41.9443252], [-85.6197862, 41.9444539], [-85.6198296, 41.94473], [-85.6200474, 41.9447384]], "type": "LineString"}, "id": "824", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17964040, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517776, 41.9423425, -85.6514226, 41.9425152], "geometry": {"coordinates": [[-85.6514226, 41.9425113], [-85.6515073, 41.9425152], [-85.6515696, 41.9425097], [-85.6516223, 41.9424985], [-85.6516696, 41.9424729], [-85.6517053, 41.942446], [-85.6517415, 41.9424007], [-85.6517776, 41.9423425]], "type": "LineString"}, "id": "825", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": "yes", "osm_id": 945352903, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6413388, 41.9425955, -85.641113, 41.9427862], "geometry": {"coordinates": [[-85.6413388, 41.9427862], [-85.6412508, 41.9427677], [-85.6411944, 41.9427248], [-85.6411629, 41.9426785], [-85.641113, 41.9425955]], "type": "LineString"}, "id": "826", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 904632320, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6177994, 41.9545412, -85.6171273, 41.954688], "geometry": {"coordinates": [[-85.6177994, 41.9545412], [-85.6174545, 41.9546309], [-85.6171273, 41.954688]], "type": "LineString"}, "id": "827", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 652550661, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6533246, 41.9306338, -85.6533195, 41.9315687], "geometry": {"coordinates": [[-85.6533195, 41.9315687], [-85.6533246, 41.9306338]], "type": "LineString"}, "id": "828", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612686, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430792, 41.9353947, -85.6423397, 41.9356281], "geometry": {"coordinates": [[-85.6423397, 41.9354097], [-85.6425443, 41.9354036], [-85.6429342, 41.9353947], [-85.6430333, 41.9354029], [-85.6430727, 41.9354568], [-85.6430792, 41.9356281]], "type": "LineString"}, "id": "829", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871060227, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529491, 41.9346549, -85.6521859, 41.9350206], "geometry": {"coordinates": [[-85.6529491, 41.935014], [-85.6528371, 41.9350206], [-85.6528088, 41.9349689], [-85.6527856, 41.9347257], [-85.6524613, 41.9347257], [-85.6524108, 41.9347009], [-85.6523172, 41.9346549], [-85.6521859, 41.9347085], [-85.6521962, 41.9349804], [-85.6528088, 41.9349689]], "type": "LineString"}, "id": "830", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612671, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470582, 41.9415652, -85.6469608, 41.9425415], "geometry": {"coordinates": [[-85.6470582, 41.9425415], [-85.6470506, 41.9424655], [-85.6470405, 41.9423643], [-85.6469608, 41.9415652]], "type": "LineString"}, "id": "831", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942137, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6473667, 41.9431332, -85.6469224, 41.943225], "geometry": {"coordinates": [[-85.6469224, 41.9431332], [-85.6472638, 41.943141], [-85.6473667, 41.943225]], "type": "LineString"}, "id": "832", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488290766, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6358136, 41.9381878, -85.63576, 41.9427625], "geometry": {"coordinates": [[-85.63576, 41.9381878], [-85.6357638, 41.9387029], [-85.635779, 41.9401184], [-85.6357953, 41.9411097], [-85.6357985, 41.9413906], [-85.6357991, 41.9414384], [-85.6357992, 41.9414854], [-85.6358037, 41.9418913], [-85.6358044, 41.9419514], [-85.6358088, 41.9423413], [-85.6358125, 41.9426692], [-85.6358127, 41.9426829], [-85.6358136, 41.9427625]], "type": "LineString"}, "id": "833", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Spring Street", "oneway": null, "osm_id": 237686060, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6399801, 41.9426061, -85.6394544, 41.9431246], "geometry": {"coordinates": [[-85.6394544, 41.9431246], [-85.6399506, 41.9431241], [-85.6399614, 41.9427986], [-85.6399644, 41.9427436], [-85.6399785, 41.9426897], [-85.6399801, 41.9426061]], "type": "LineString"}, "id": "834", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 486385872, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347276, 41.9552379, -85.634539, 41.9552431], "geometry": {"coordinates": [[-85.6347276, 41.9552431], [-85.634539, 41.9552379]], "type": "LineString"}, "id": "835", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416373, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6484295, 41.9539683, -85.648055, 41.9541728], "geometry": {"coordinates": [[-85.648055, 41.9541728], [-85.6480798, 41.9540678], [-85.6481214, 41.953994], [-85.6482783, 41.9539708], [-85.6484295, 41.9539683]], "type": "LineString"}, "id": "836", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907935962, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6314327, 41.9500612, -85.6312754, 41.950124], "geometry": {"coordinates": [[-85.6314327, 41.950124], [-85.6312754, 41.9500612]], "type": "LineString"}, "id": "837", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 322012756, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6499942, 41.9306038, -85.6499941, 41.9314203], "geometry": {"coordinates": [[-85.6499942, 41.9314203], [-85.6499941, 41.9306038]], "type": "LineString"}, "id": "838", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612679, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543244, 41.9318336, -85.6535382, 41.9318376], "geometry": {"coordinates": [[-85.6543244, 41.9318376], [-85.6539313, 41.9318356], [-85.6535382, 41.9318336]], "type": "LineString"}, "id": "839", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843133, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650276, 41.9363246, -85.649989, 41.9370354], "geometry": {"coordinates": [[-85.650276, 41.9370354], [-85.6500891, 41.9370342], [-85.6500613, 41.937032], [-85.6500322, 41.9370263], [-85.6500091, 41.9370135], [-85.6499933, 41.9369916], [-85.649989, 41.9369607], [-85.6499897, 41.9365732], [-85.6499901, 41.9363246]], "type": "LineString"}, "id": "840", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 993698650, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642363, 41.9427701, -85.6422589, 41.9429856], "geometry": {"coordinates": [[-85.642363, 41.9427701], [-85.6423027, 41.9427875], [-85.6422619, 41.9428388], [-85.6422589, 41.9429206], [-85.6422988, 41.9429619], [-85.6423603, 41.9429856]], "type": "LineString"}, "id": "841", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056571141, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614617, 41.951639, -85.611187, 41.951686], "geometry": {"coordinates": [[-85.611187, 41.951686], [-85.611323, 41.951653], [-85.611892, 41.951642], [-85.612216, 41.951641], [-85.613111, 41.951639], [-85.613396, 41.95164], [-85.614221, 41.95164], [-85.614617, 41.951639]], "type": "LineString"}, "id": "842", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bates Avenue", "oneway": null, "osm_id": 17965307, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6515855, 41.9483563, -85.6508224, 41.9484171], "geometry": {"coordinates": [[-85.6515855, 41.9484171], [-85.6513166, 41.9483956], [-85.6508224, 41.9483563]], "type": "LineString"}, "id": "843", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942225, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6474185, 41.9468354, -85.6472526, 41.9468536], "geometry": {"coordinates": [[-85.6474185, 41.9468536], [-85.6472526, 41.9468354]], "type": "LineString"}, "id": "844", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942815, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6466913, 41.929973, -85.6466655, 41.9307557], "geometry": {"coordinates": [[-85.6466913, 41.9307557], [-85.6466655, 41.929973]], "type": "LineString"}, "id": "845", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310429, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462315, 41.9299795, -85.6462097, 41.9307696], "geometry": {"coordinates": [[-85.6462315, 41.9307696], [-85.6462097, 41.9299795]], "type": "LineString"}, "id": "846", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310484, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453358, 41.9442455, -85.6451333, 41.9444995], "geometry": {"coordinates": [[-85.6453358, 41.9444995], [-85.6453333, 41.9444205], [-85.6452123, 41.9442501], [-85.6451333, 41.9442455]], "type": "LineString"}, "id": "847", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 314867415, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634787, 41.933145, -85.624776, 41.933205], "geometry": {"coordinates": [[-85.624776, 41.933205], [-85.625694, 41.93319], [-85.6263762, 41.93319], [-85.627073, 41.93319], [-85.6274992, 41.9331816], [-85.628365, 41.933177], [-85.6290268, 41.9331722], [-85.6296891, 41.9331674], [-85.6303635, 41.9331643], [-85.6310242, 41.9331609], [-85.6316975, 41.9331564], [-85.6322101, 41.933153], [-85.632424, 41.9331516], [-85.6326939, 41.9331508], [-85.6339197, 41.9331474], [-85.634787, 41.933145]], "type": "LineString"}, "id": "848", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Broadway Street", "oneway": null, "osm_id": 379694384, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.645044, 41.9545612, -85.6428264, 41.955581], "geometry": {"coordinates": [[-85.6428264, 41.9545612], [-85.642894, 41.9547842], [-85.642987, 41.95486], [-85.6442727, 41.9553112], [-85.6448804, 41.9555238], [-85.645044, 41.955581]], "type": "LineString"}, "id": "849", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Manufacturing Way", "oneway": null, "osm_id": 17966415, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517686, 41.9379471, -85.6514295, 41.9384994], "geometry": {"coordinates": [[-85.6517686, 41.9384994], [-85.6517277, 41.9382441], [-85.651722, 41.9381689], [-85.651717, 41.9380856], [-85.6517145, 41.9380341], [-85.6517074, 41.9380041], [-85.6516916, 41.9379879], [-85.6516709, 41.9379704], [-85.6516402, 41.9379553], [-85.6516044, 41.9379471], [-85.6515687, 41.9379476], [-85.6515284, 41.9379521], [-85.6514809, 41.9379723], [-85.6514577, 41.9379899], [-85.6514295, 41.938015]], "type": "LineString"}, "id": "850", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892838, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339967, 41.9434899, -85.6339163, 41.9435358], "geometry": {"coordinates": [[-85.6339967, 41.9434899], [-85.6339697, 41.9435053], [-85.6339163, 41.9435358]], "type": "LineString"}, "id": "851", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370285, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6248366, 41.9391615, -85.624215, 41.940134], "geometry": {"coordinates": [[-85.6248366, 41.9391615], [-85.624835, 41.939318], [-85.624811, 41.939435], [-85.624635, 41.939703], [-85.624366, 41.940055], [-85.624287, 41.940113], [-85.624215, 41.940134]], "type": "LineString"}, "id": "852", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 1080064916, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187338, 41.9547339, -85.6186943, 41.9550001], "geometry": {"coordinates": [[-85.6186943, 41.9550001], [-85.6187338, 41.9549561], [-85.6187301, 41.9547339]], "type": "LineString"}, "id": "853", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": "yes", "osm_id": 1068082269, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6507341, 41.9473812, -85.650478, 41.9479747], "geometry": {"coordinates": [[-85.6505912, 41.9479747], [-85.6507192, 41.9475705], [-85.6507324, 41.9475092], [-85.6507341, 41.9474735], [-85.6507318, 41.9474429], [-85.6507193, 41.9474198], [-85.6506989, 41.9474055], [-85.6506639, 41.9473902], [-85.6506333, 41.9473838], [-85.650589, 41.9473812], [-85.6505327, 41.9473827], [-85.650478, 41.9474008]], "type": "LineString"}, "id": "854", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892833, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517817, 41.9423425, -85.6517776, 41.9427717], "geometry": {"coordinates": [[-85.6517803, 41.9427717], [-85.6517801, 41.9426175], [-85.6517817, 41.9425652], [-85.6517776, 41.9423425]], "type": "LineString"}, "id": "855", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 945352907, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.611651, 41.953704, -85.611615, 41.954761], "geometry": {"coordinates": [[-85.611615, 41.953704], [-85.611636, 41.953938], [-85.611651, 41.954761]], "type": "LineString"}, "id": "856", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Blossom Drive", "oneway": null, "osm_id": 17964507, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6138453, 41.9556723, -85.6137873, 41.9556787], "geometry": {"coordinates": [[-85.6137873, 41.9556787], [-85.6138453, 41.9556723]], "type": "LineString"}, "id": "857", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652967186, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186943, 41.9547335, -85.6186424, 41.9550001], "geometry": {"coordinates": [[-85.6186424, 41.9547335], [-85.6186457, 41.9549562], [-85.6186943, 41.9550001]], "type": "LineString"}, "id": "858", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": "yes", "osm_id": 1068082268, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6558091, 41.9414769, -85.6543434, 41.9414809], "geometry": {"coordinates": [[-85.6543434, 41.9414809], [-85.6558091, 41.9414769]], "type": "LineString"}, "id": "859", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 628771091, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508384, 41.9491244, -85.650831, 41.9493712], "geometry": {"coordinates": [[-85.650831, 41.9491244], [-85.6508384, 41.9493712]], "type": "LineString"}, "id": "860", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636428, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508338, 41.9497937, -85.6507612, 41.9498205], "geometry": {"coordinates": [[-85.6508338, 41.9497937], [-85.6507612, 41.9498205]], "type": "LineString"}, "id": "861", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 848056396, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644429, 41.9476126, -85.6420148, 41.9476567], "geometry": {"coordinates": [[-85.6420148, 41.9476126], [-85.642067, 41.9476391], [-85.6421288, 41.9476532], [-85.6422024, 41.9476567], [-85.6432019, 41.9476499], [-85.644429, 41.947633]], "type": "LineString"}, "id": "862", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pierson Street", "oneway": null, "osm_id": 17967618, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517795, 41.9422097, -85.6517776, 41.9423425], "geometry": {"coordinates": [[-85.6517776, 41.9423425], [-85.6517795, 41.9422097]], "type": "LineString"}, "id": "863", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 41260270, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6526531, 41.9352599, -85.6517626, 41.9356869], "geometry": {"coordinates": [[-85.6517626, 41.9352599], [-85.6519391, 41.9352649], [-85.6521347, 41.9352706], [-85.6526499, 41.9352778], [-85.6526531, 41.9356853], [-85.6521345, 41.9356869], [-85.6521347, 41.9352706]], "type": "LineString"}, "id": "864", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612669, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6559588, 41.9295599, -85.655939, 41.9315833], "geometry": {"coordinates": [[-85.6559588, 41.9315833], [-85.6559565, 41.9313701], [-85.6559545, 41.9311823], [-85.6559525, 41.9309979], [-85.6559506, 41.9308261], [-85.6559486, 41.9306335], [-85.6559467, 41.9304616], [-85.6559448, 41.9302851], [-85.6559428, 41.9300926], [-85.6559408, 41.9299115], [-85.655939, 41.9297418], [-85.6559398, 41.9295599]], "type": "LineString"}, "id": "865", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 884351100, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6547072, 41.9217072, -85.6516716, 41.9230441], "geometry": {"coordinates": [[-85.6516716, 41.9217173], [-85.6545435, 41.9217072], [-85.6546272, 41.9217291], [-85.6546772, 41.9217769], [-85.6547072, 41.9218439], [-85.6546959, 41.9221559], [-85.6546637, 41.9230441]], "type": "LineString"}, "id": "866", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17963154, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443453, 41.9419191, -85.6430868, 41.9423074], "geometry": {"coordinates": [[-85.6443453, 41.9423074], [-85.6442318, 41.9423045], [-85.6437669, 41.9423073], [-85.6436611, 41.942293], [-85.6436134, 41.9422667], [-85.6435784, 41.9422473], [-85.6435245, 41.9421443], [-85.6435149, 41.9420613], [-85.6434894, 41.9420033], [-85.643438, 41.9419573], [-85.6433528, 41.9419269], [-85.6432974, 41.9419225], [-85.6432535, 41.9419191], [-85.6430868, 41.9419198]], "type": "LineString"}, "id": "867", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643101, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6428053, 41.9427582, -85.642363, 41.9427701], "geometry": {"coordinates": [[-85.6428053, 41.9427582], [-85.642363, 41.9427701]], "type": "LineString"}, "id": "868", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056571143, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514254, 41.9419832, -85.6506441, 41.9425048], "geometry": {"coordinates": [[-85.6514254, 41.9419837], [-85.6510679, 41.9419832], [-85.6506441, 41.9419852], [-85.6506551, 41.9423577], [-85.6506547, 41.9425048]], "type": "LineString"}, "id": "869", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942161, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469648, 41.93494, -85.636516, 41.935036], "geometry": {"coordinates": [[-85.636516, 41.935036], [-85.6376468, 41.9350232], [-85.6388186, 41.9350099], [-85.6400709, 41.9349957], [-85.6412214, 41.9349827], [-85.6423509, 41.934974], [-85.6442915, 41.9349794], [-85.6448698, 41.934969], [-85.6454067, 41.9349594], [-85.6455841, 41.9349562], [-85.6457364, 41.9349534], [-85.645849, 41.9349514], [-85.6464864, 41.93494], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "870", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hill Street", "oneway": null, "osm_id": 17965641, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490397, 41.9312317, -85.6478031, 41.9321363], "geometry": {"coordinates": [[-85.6484226, 41.9321345], [-85.6479139, 41.9321363], [-85.6478154, 41.9321363], [-85.6478031, 41.9312355], [-85.6490294, 41.9312317], [-85.6490397, 41.9320715], [-85.6489661, 41.9321313], [-85.6487918, 41.9321332]], "type": "LineString"}, "id": "871", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 767768420, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341323, 41.9419538, -85.6337601, 41.9424723], "geometry": {"coordinates": [[-85.6341323, 41.9419538], [-85.6340321, 41.9420376], [-85.6337854, 41.9422236], [-85.6337695, 41.9422374], [-85.6337626, 41.9422474], [-85.6337601, 41.9422556], [-85.6337607, 41.9422652], [-85.6337682, 41.9422928], [-85.6338474, 41.9424723]], "type": "LineString"}, "id": "872", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203974068, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351097, 41.9416651, -85.6343414, 41.9418611], "geometry": {"coordinates": [[-85.6343414, 41.9418611], [-85.634518, 41.9418301], [-85.6345666, 41.9418285], [-85.6345979, 41.9418253], [-85.6346336, 41.9418125], [-85.6346682, 41.9417956], [-85.6347306, 41.9417449], [-85.6348391, 41.9416651], [-85.6351097, 41.9416973]], "type": "LineString"}, "id": "873", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 300732978, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336824, 41.9437132, -85.6333999, 41.9439899], "geometry": {"coordinates": [[-85.6333999, 41.9437132], [-85.6334771, 41.9437888], [-85.6336824, 41.9439899]], "type": "LineString"}, "id": "874", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Drive", "oneway": null, "osm_id": 17967752, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62575, 41.93319, -85.625688, 41.938166], "geometry": {"coordinates": [[-85.625694, 41.93319], [-85.625688, 41.934214], [-85.6257179, 41.9352095], [-85.6257389, 41.936196], [-85.6257369, 41.9371694], [-85.6257465, 41.9377376], [-85.62575, 41.937945], [-85.62574, 41.938059], [-85.62569, 41.938166]], "type": "LineString"}, "id": "875", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Street", "oneway": null, "osm_id": 379694409, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.615273, 41.945637, -85.615188, 41.947468], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.615208, 41.946468], [-85.615188, 41.945796], [-85.615212, 41.945701], [-85.615273, 41.945637]], "type": "LineString"}, "id": "876", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Evans Street", "oneway": null, "osm_id": 17964647, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167553, 41.9493531, -85.6165433, 41.9494886], "geometry": {"coordinates": [[-85.6167553, 41.9494886], [-85.6165433, 41.9493531]], "type": "LineString"}, "id": "877", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839095, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6568001, 41.9308261, -85.6559506, 41.9308283], "geometry": {"coordinates": [[-85.6568001, 41.9308283], [-85.6559506, 41.9308261]], "type": "LineString"}, "id": "878", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237745, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513133, 41.9326424, -85.6378393, 41.9397072], "geometry": {"coordinates": [[-85.6378393, 41.9328353], [-85.6387723, 41.9328218], [-85.6387947, 41.9328225], [-85.6388737, 41.9328197], [-85.6389449, 41.9328185], [-85.6389806, 41.9328165], [-85.6400392, 41.9328005], [-85.6401324, 41.9327998], [-85.6402108, 41.9328006], [-85.6411093, 41.9327867], [-85.6412041, 41.9327907], [-85.6412869, 41.93279], [-85.6413471, 41.9327893], [-85.6414097, 41.9327813], [-85.6423127, 41.9327687], [-85.6424184, 41.9327641], [-85.6425219, 41.9327627], [-85.6441629, 41.9327355], [-85.644228, 41.9327325], [-85.6443811, 41.932729], [-85.6444295, 41.9327167], [-85.6455145, 41.932703], [-85.6455686, 41.9327016], [-85.6456343, 41.9327003], [-85.6461287, 41.9326936], [-85.6462338, 41.932693], [-85.6463084, 41.9326916], [-85.6467688, 41.9326843], [-85.6468278, 41.9326883], [-85.6469147, 41.9326882], [-85.6470139, 41.932688], [-85.6471068, 41.9326877], [-85.6471461, 41.9326797], [-85.647671, 41.9326717], [-85.6477505, 41.932681], [-85.6478377, 41.932677], [-85.6479132, 41.932675], [-85.6486017, 41.9326677], [-85.648675, 41.9326644], [-85.6487277, 41.9326637], [-85.648911, 41.9326624], [-85.6489897, 41.9326597], [-85.6490952, 41.9326591], [-85.6492211, 41.9326584], [-85.6492883, 41.9326577], [-85.6495253, 41.9326544], [-85.6496656, 41.9326524], [-85.6502915, 41.9326424], [-85.6503527, 41.9326518], [-85.6504144, 41.9326665], [-85.6505002, 41.932682], [-85.6512289, 41.9326984], [-85.6512399, 41.9343549], [-85.6512342, 41.9344138], [-85.6512357, 41.9344942], [-85.6512352, 41.9345739], [-85.651244, 41.9355737], [-85.6512405, 41.9356261], [-85.6512407, 41.935699], [-85.6512462, 41.9363598], [-85.6512453, 41.9364341], [-85.6512451, 41.936508], [-85.6512561, 41.9384723], [-85.6512584, 41.9385364], [-85.6512594, 41.9386229], [-85.6512627, 41.9395449], [-85.6513133, 41.9396202], [-85.6513023, 41.9396677], [-85.6512487, 41.9397072]], "type": "LineString"}, "id": "879", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1193144007, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470403, 41.9326207, -85.6469521, 41.9349544], "geometry": {"coordinates": [[-85.6469648, 41.9349544], [-85.6470349, 41.9349027], [-85.6470403, 41.9348658], [-85.6470391, 41.9347799], [-85.6470377, 41.934581], [-85.6470336, 41.9344224], [-85.6470323, 41.9342522], [-85.6470323, 41.9333044], [-85.6470376, 41.9327138], [-85.6470139, 41.932688], [-85.6469521, 41.9326207]], "type": "LineString"}, "id": "880", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": "yes", "osm_id": 904632318, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6586363, 41.9477139, -85.6585585, 41.9477199], "geometry": {"coordinates": [[-85.6586363, 41.9477199], [-85.6585585, 41.9477139]], "type": "LineString"}, "id": "881", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942231, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6162826, 41.9352693, -85.6159968, 41.9377496], "geometry": {"coordinates": [[-85.616246, 41.9377496], [-85.6160848, 41.9369619], [-85.616235, 41.936384], [-85.6162826, 41.9360488], [-85.6161947, 41.935471], [-85.6161507, 41.9353347], [-85.6159968, 41.9352693]], "type": "LineString"}, "id": "882", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "15th Street", "oneway": null, "osm_id": 17968106, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6437353, 41.9498047, -85.6432033, 41.950383], "geometry": {"coordinates": [[-85.6432033, 41.9498047], [-85.6435645, 41.9498105], [-85.6435954, 41.9498118], [-85.6436278, 41.9498169], [-85.6436573, 41.949825], [-85.6436829, 41.9498374], [-85.6437035, 41.9498535], [-85.6437163, 41.9498696], [-85.6437248, 41.9498886], [-85.6437281, 41.9499156], [-85.6437353, 41.950338], [-85.6437276, 41.9503558], [-85.6437156, 41.9503695], [-85.6436948, 41.9503785], [-85.6436696, 41.950383], [-85.643575, 41.9503826], [-85.6432121, 41.9503811]], "type": "LineString"}, "id": "883", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225610190, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6524095, 41.9437332, -85.6521149, 41.9437545], "geometry": {"coordinates": [[-85.6521149, 41.9437332], [-85.6524095, 41.9437545]], "type": "LineString"}, "id": "884", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942242, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6193733, 41.936695, -85.6186561, 41.9366989], "geometry": {"coordinates": [[-85.6186561, 41.936695], [-85.6193733, 41.9366989]], "type": "LineString"}, "id": "885", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Sunnycrest Court", "oneway": null, "osm_id": 17966299, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.652784, 41.9259759, -85.6514577, 41.926101], "geometry": {"coordinates": [[-85.6514577, 41.926101], [-85.6516457, 41.9260922], [-85.652784, 41.9259759]], "type": "LineString"}, "id": "886", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612691, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458319, 41.9398831, -85.6453514, 41.9412425], "geometry": {"coordinates": [[-85.645806, 41.9398831], [-85.6458319, 41.9411841], [-85.6457458, 41.9412425], [-85.6454506, 41.9412421], [-85.6453514, 41.9412419]], "type": "LineString"}, "id": "887", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Matthew Drive", "oneway": null, "osm_id": 203968033, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.647423, 41.9458833, -85.6474022, 41.9471251], "geometry": {"coordinates": [[-85.647423, 41.9471251], [-85.6474211, 41.9470126], [-85.6474185, 41.9468536], [-85.6474165, 41.9467381], [-85.6474159, 41.9467008], [-85.6474022, 41.9458833]], "type": "LineString"}, "id": "888", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bentwaters Avenue", "oneway": null, "osm_id": 203968030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462904, 41.9548499, -85.6461305, 41.955097], "geometry": {"coordinates": [[-85.6461305, 41.955097], [-85.6462904, 41.9548499]], "type": "LineString"}, "id": "889", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "trunk", "layer": "1", "name": "US-131", "oneway": "yes", "osm_id": 134151789, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6484519, 41.9418177, -85.6480756, 41.9418203], "geometry": {"coordinates": [[-85.6480756, 41.9418177], [-85.6484519, 41.9418203]], "type": "LineString"}, "id": "890", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942156, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6513369, 41.9424136, -85.6431887, 41.9426639], "geometry": {"coordinates": [[-85.6513369, 41.9426489], [-85.6512685, 41.9426514], [-85.6511629, 41.9426294], [-85.6511045, 41.9426221], [-85.6510417, 41.9426128], [-85.6509309, 41.9426191], [-85.6509202, 41.9426194], [-85.6507994, 41.9426231], [-85.6506895, 41.942625], [-85.6506539, 41.9426241], [-85.6505956, 41.942626], [-85.6504843, 41.942625], [-85.6504462, 41.9426261], [-85.650385, 41.942626], [-85.6501383, 41.942627], [-85.6500631, 41.9426282], [-85.649976, 41.942628], [-85.6498513, 41.94263], [-85.649774, 41.9426271], [-85.6497265, 41.94263], [-85.6494047, 41.94263], [-85.6493653, 41.942628], [-85.6493242, 41.94263], [-85.6490654, 41.942634], [-85.6490064, 41.9426051], [-85.6489596, 41.9426051], [-85.6488495, 41.9426071], [-85.648769, 41.9426081], [-85.6486738, 41.942615], [-85.6485946, 41.9426141], [-85.6481105, 41.9426121], [-85.6480536, 41.9426127], [-85.6479992, 41.9426111], [-85.6475338, 41.9426151], [-85.6474906, 41.9426181], [-85.6474333, 41.9426171], [-85.6473635, 41.9426191], [-85.6472753, 41.942616], [-85.6471945, 41.9426211], [-85.6469961, 41.942624], [-85.6469164, 41.942623], [-85.6468204, 41.9426201], [-85.6466836, 41.942624], [-85.6463148, 41.942629], [-85.6462575, 41.942623], [-85.6462263, 41.942627], [-85.6461927, 41.942638], [-85.6461042, 41.942641], [-85.6460424, 41.942643], [-85.645946, 41.942646], [-85.6455798, 41.942647], [-85.6450279, 41.942649], [-85.6443622, 41.942653], [-85.6441542, 41.94265], [-85.6438671, 41.9426529], [-85.643194, 41.9426639], [-85.64319, 41.9425748], [-85.6431887, 41.9424874], [-85.6443561, 41.9424865], [-85.6455551, 41.9424794], [-85.6458694, 41.9424834], [-85.646181, 41.9424776], [-85.6462316, 41.9424724], [-85.646351, 41.9424714], [-85.6463796, 41.9424735], [-85.6464475, 41.9424694], [-85.6466796, 41.9424684], [-85.6467466, 41.9424694], [-85.6468029, 41.9424674], [-85.6468686, 41.9424674], [-85.646914, 41.942468], [-85.6469464, 41.9424684], [-85.6470108, 41.9424674], [-85.6470506, 41.9424655], [-85.6471436, 41.9424654], [-85.6474078, 41.9424615], [-85.6474605, 41.9424645], [-85.6475244, 41.9424615], [-85.6477189, 41.9424595], [-85.6477899, 41.9424602], [-85.6478544, 41.9424605], [-85.6479777, 41.9424595], [-85.648067, 41.9424565], [-85.6481239, 41.9424605], [-85.6481709, 41.9424585], [-85.6482402, 41.9424606], [-85.6482768, 41.9424605], [-85.6484954, 41.9424605], [-85.6486912, 41.9424485], [-85.6488535, 41.9424325], [-85.6489675, 41.9424136]], "type": "LineString"}, "id": "891", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550682, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6475245, 41.9427563, -85.6475152, 41.942977], "geometry": {"coordinates": [[-85.6475152, 41.9427563], [-85.6475245, 41.942977]], "type": "LineString"}, "id": "892", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942836, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6408832, 41.9431057, -85.6406657, 41.943107], "geometry": {"coordinates": [[-85.6408832, 41.9431057], [-85.6407923, 41.9431062], [-85.6406657, 41.943107]], "type": "LineString"}, "id": "893", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615984, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642363, 41.9427701, -85.6423603, 41.9429856], "geometry": {"coordinates": [[-85.642363, 41.9427701], [-85.6423603, 41.9429856]], "type": "LineString"}, "id": "894", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 486385873, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6409572, 41.9420264, -85.6409356, 41.9425974], "geometry": {"coordinates": [[-85.6409572, 41.9425974], [-85.6409542, 41.9425184], [-85.6409356, 41.9420264]], "type": "LineString"}, "id": "895", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942127, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643071, 41.941288, -85.641825, 41.941316], "geometry": {"coordinates": [[-85.643071, 41.941288], [-85.6427798, 41.9412945], [-85.6418494, 41.9413154], [-85.641825, 41.941316]], "type": "LineString"}, "id": "896", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Street", "oneway": "yes", "osm_id": 204000205, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512595, 41.9397072, -85.6399212, 41.9424181], "geometry": {"coordinates": [[-85.6491367, 41.9424181], [-85.649336, 41.9423703], [-85.6494503, 41.9423088], [-85.6496903, 41.942234], [-85.649917, 41.9421502], [-85.650094, 41.9420744], [-85.650263, 41.9419816], [-85.6505473, 41.9417901], [-85.6507847, 41.9415906], [-85.6508155, 41.9415477], [-85.6508732, 41.9414759], [-85.6509067, 41.9414529], [-85.651014, 41.9413113], [-85.651136, 41.9411337], [-85.6512554, 41.9409163], [-85.6512595, 41.9407447], [-85.6512554, 41.9405771], [-85.6512529, 41.9404989], [-85.6512541, 41.9404354], [-85.6512554, 41.9402266], [-85.6512541, 41.9398758], [-85.6512494, 41.9397769], [-85.6512487, 41.9397072], [-85.6503609, 41.9397122], [-85.6502817, 41.9397147], [-85.6501611, 41.9397142], [-85.6497118, 41.9397311], [-85.6484596, 41.9397556], [-85.6477967, 41.939767], [-85.6477033, 41.939772], [-85.647617, 41.939774], [-85.6469277, 41.939792], [-85.6457931, 41.9398149], [-85.6457469, 41.9398168], [-85.6456576, 41.9398269], [-85.6455664, 41.9398349], [-85.645368, 41.9398319], [-85.6452633, 41.9398289], [-85.6442656, 41.9398688], [-85.6437224, 41.9398937], [-85.6432839, 41.9399157], [-85.6432463, 41.9399456], [-85.6431954, 41.9399446], [-85.6431042, 41.9399307], [-85.6422888, 41.9399686], [-85.6422153, 41.9399715], [-85.6421198, 41.9399735], [-85.641126, 41.9399815], [-85.6410946, 41.9399845], [-85.6409986, 41.9399835], [-85.6400035, 41.9399885], [-85.6399212, 41.9399845]], "type": "LineString"}, "id": "897", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550669, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321742, 41.943049, -85.6318349, 41.943454], "geometry": {"coordinates": [[-85.6321742, 41.943454], [-85.6318349, 41.943049]], "type": "LineString"}, "id": "898", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 847370301, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6325485, 41.9442766, -85.6322992, 41.9445625], "geometry": {"coordinates": [[-85.6322992, 41.9442766], [-85.632447, 41.9444461], [-85.6325485, 41.9445625]], "type": "LineString"}, "id": "899", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "no", "osm_id": 847427787, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6331258, 41.9443541, -85.633089, 41.944392], "geometry": {"coordinates": [[-85.633089, 41.9443541], [-85.6331258, 41.944392]], "type": "LineString"}, "id": "900", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427771, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336697, 41.9447663, -85.6336397, 41.9447832], "geometry": {"coordinates": [[-85.6336697, 41.9447663], [-85.6336397, 41.9447832]], "type": "LineString"}, "id": "901", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427765, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354227, 41.943052, -85.6349641, 41.9438906], "geometry": {"coordinates": [[-85.6353859, 41.9432898], [-85.6354227, 41.9434326], [-85.635271, 41.943654], [-85.6352657, 41.9437437], [-85.635277, 41.94378], [-85.635271, 41.9438195], [-85.6351563, 41.9438906], [-85.6351384, 41.9438882], [-85.6351514, 41.9438034], [-85.6351237, 41.9436641], [-85.6351498, 41.9436108], [-85.6351058, 41.9435345], [-85.6349641, 41.9432051], [-85.6349658, 41.9431481], [-85.6350081, 41.9431287], [-85.6350021, 41.9431107], [-85.6352192, 41.943052]], "type": "LineString"}, "id": "902", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972940, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342864, 41.9433363, -85.6342341, 41.9433662], "geometry": {"coordinates": [[-85.6342864, 41.9433363], [-85.6342341, 41.9433662]], "type": "LineString"}, "id": "903", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370289, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6329761, 41.9438989, -85.632842, 41.9440555], "geometry": {"coordinates": [[-85.6329761, 41.9440555], [-85.6329202, 41.9439902], [-85.632842, 41.9438989]], "type": "LineString"}, "id": "904", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427757, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339256, 41.9432984, -85.632842, 41.9438989], "geometry": {"coordinates": [[-85.632842, 41.9438989], [-85.633547, 41.9435025], [-85.6336585, 41.9434434], [-85.6337044, 41.9434191], [-85.6339256, 41.9432984]], "type": "LineString"}, "id": "905", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427763, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6343414, 41.9418611, -85.6342037, 41.9418842], "geometry": {"coordinates": [[-85.6343414, 41.9418611], [-85.6342037, 41.9418842]], "type": "LineString"}, "id": "906", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 203974061, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636798, 41.9428127, -85.6367949, 41.9430509], "geometry": {"coordinates": [[-85.636798, 41.9430509], [-85.6367949, 41.9428127]], "type": "LineString"}, "id": "907", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998356, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370277, 41.9413618, -85.6370124, 41.9426234], "geometry": {"coordinates": [[-85.6370124, 41.9413618], [-85.6370167, 41.942365], [-85.6370244, 41.9425463], [-85.6370277, 41.9426234]], "type": "LineString"}, "id": "908", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "South Constantine Street", "oneway": null, "osm_id": 17966400, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430089, 41.9424994, -85.6348245, 41.9431193], "geometry": {"coordinates": [[-85.6348245, 41.9429852], [-85.6351392, 41.9428838], [-85.635311, 41.9428285], [-85.6357402, 41.9427019], [-85.6358127, 41.9426829], [-85.6359078, 41.942653], [-85.6362337, 41.9425602], [-85.6369981, 41.9425472], [-85.6370244, 41.9425463], [-85.6370933, 41.9425462], [-85.6381488, 41.9425403], [-85.6382337, 41.9425383], [-85.6383137, 41.9425383], [-85.639392, 41.9425313], [-85.6394516, 41.9425322], [-85.6395704, 41.9425313], [-85.6402704, 41.9425213], [-85.6403436, 41.9425163], [-85.6404085, 41.9425183], [-85.640595, 41.9425173], [-85.6406574, 41.9425183], [-85.6407519, 41.9425213], [-85.6409542, 41.9425184], [-85.6410818, 41.9425173], [-85.641872, 41.9425043], [-85.6429955, 41.9424994], [-85.6430036, 41.9425763], [-85.6430089, 41.94266], [-85.6423052, 41.9426651], [-85.6419851, 41.9426698], [-85.6418758, 41.9426709], [-85.6416457, 41.9426726], [-85.6411629, 41.9426785], [-85.6407478, 41.9426829], [-85.6406598, 41.9426764], [-85.6405789, 41.9426819], [-85.6400546, 41.9426892], [-85.6399785, 41.9426897], [-85.639888, 41.9426902], [-85.6395315, 41.9426919], [-85.6394547, 41.9426899], [-85.6393719, 41.9426919], [-85.6383191, 41.9427029], [-85.6382354, 41.9427058], [-85.6381488, 41.9427029], [-85.6376325, 41.9427039], [-85.6375513, 41.9427048], [-85.637438, 41.9427029], [-85.6373495, 41.9427019], [-85.6372319, 41.9427018], [-85.6371872, 41.9427029], [-85.6371094, 41.9427078], [-85.6370323, 41.9427058], [-85.6369552, 41.9427068], [-85.6366092, 41.9427188], [-85.6362981, 41.9427467], [-85.6361208, 41.9427777], [-85.6359749, 41.9428146], [-85.6358045, 41.9428605], [-85.6357339, 41.9428779], [-85.6356597, 41.9428934], [-85.6355216, 41.9429413], [-85.6354622, 41.9429562], [-85.6353982, 41.9429792], [-85.6352122, 41.9430357], [-85.634904, 41.9431193]], "type": "LineString"}, "id": "909", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550687, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351619, 41.9473145, -85.6346438, 41.9476764], "geometry": {"coordinates": [[-85.6346438, 41.9476764], [-85.6351619, 41.9476656], [-85.6351542, 41.9474813], [-85.6351474, 41.9474705], [-85.6351286, 41.9474553], [-85.6351113, 41.9474369], [-85.6351064, 41.9474209], [-85.6351132, 41.9473145]], "type": "LineString"}, "id": "910", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 217907771, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354214, 41.9476656, -85.6351619, 41.9476656], "geometry": {"coordinates": [[-85.6351619, 41.9476656], [-85.6354214, 41.9476656]], "type": "LineString"}, "id": "911", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1081142868, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346449, 41.9456229, -85.6344386, 41.9460571], "geometry": {"coordinates": [[-85.6344386, 41.9456229], [-85.6345572, 41.9457377], [-85.634573, 41.945764], [-85.634616, 41.945849], [-85.634629, 41.945893], [-85.6346449, 41.9460571]], "type": "LineString"}, "id": "912", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427781, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6332218, 41.9453585, -85.6328885, 41.9455614], "geometry": {"coordinates": [[-85.6332218, 41.9453585], [-85.6329898, 41.9454997], [-85.6328885, 41.9455614]], "type": "LineString"}, "id": "913", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970902, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450908, 41.9488957, -85.644697, 41.9489013], "geometry": {"coordinates": [[-85.644697, 41.9489013], [-85.6450908, 41.9488957]], "type": "LineString"}, "id": "914", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 218004775, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6334246, 41.9447133, -85.6320913, 41.945541], "geometry": {"coordinates": [[-85.6320913, 41.9449492], [-85.6322786, 41.94485], [-85.6325366, 41.9447133], [-85.6332218, 41.9453585], [-85.6334246, 41.945541]], "type": "LineString"}, "id": "915", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203970903, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361908, 41.9429637, -85.6354652, 41.9431825], "geometry": {"coordinates": [[-85.6354652, 41.9429637], [-85.6355015, 41.9431705], [-85.635767, 41.9431751], [-85.6361908, 41.9431825]], "type": "LineString"}, "id": "916", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998361, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6364697, 41.9608012, -85.6357842, 41.961089], "geometry": {"coordinates": [[-85.6363514, 41.961089], [-85.6364598, 41.96095], [-85.6364697, 41.9608012], [-85.6357842, 41.960811]], "type": "LineString"}, "id": "917", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 307186116, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382347, 41.9400924, -85.6381941, 41.9426146], "geometry": {"coordinates": [[-85.6381941, 41.9400924], [-85.6382188, 41.9413554], [-85.6382337, 41.9425383], [-85.6382347, 41.9426146]], "type": "LineString"}, "id": "918", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Andrews Street", "oneway": null, "osm_id": 17967315, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370321, 41.9459913, -85.6364433, 41.9460423], "geometry": {"coordinates": [[-85.6364433, 41.9460423], [-85.6366156, 41.9460282], [-85.6368316, 41.9460046], [-85.6370321, 41.9459913]], "type": "LineString"}, "id": "919", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Moore Street", "oneway": null, "osm_id": 134150840, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6437591, 41.9554262, -85.6416526, 41.9561834], "geometry": {"coordinates": [[-85.6437591, 41.9561834], [-85.6416526, 41.9554262]], "type": "LineString"}, "id": "920", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776875, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6343843, 41.9432884, -85.6342864, 41.9433363], "geometry": {"coordinates": [[-85.6343843, 41.9432884], [-85.6343389, 41.9433106], [-85.6342864, 41.9433363]], "type": "LineString"}, "id": "921", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847370290, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310486, 41.9578161, -85.631045, 41.9586044], "geometry": {"coordinates": [[-85.6310486, 41.9586044], [-85.631045, 41.9578161]], "type": "LineString"}, "id": "922", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 1214775664, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480819, 41.941345, -85.648066, 41.9425328], "geometry": {"coordinates": [[-85.648066, 41.9425328], [-85.648067, 41.9424565], [-85.6480756, 41.9418177], [-85.6480819, 41.941345]], "type": "LineString"}, "id": "923", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942155, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467484, 41.9417337, -85.6467464, 41.9425441], "geometry": {"coordinates": [[-85.6467464, 41.9425441], [-85.6467466, 41.9424694], [-85.6467484, 41.9417337]], "type": "LineString"}, "id": "924", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331307681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469334, 41.9425427, -85.6469154, 41.944059], "geometry": {"coordinates": [[-85.6469154, 41.9425427], [-85.6469164, 41.942623], [-85.6469224, 41.9431332], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "925", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Benjamin Drive", "oneway": null, "osm_id": 203968024, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6454762, 41.9384748, -85.6448147, 41.9389498], "geometry": {"coordinates": [[-85.6454762, 41.9389498], [-85.6452037, 41.9388166], [-85.6449204, 41.9386622], [-85.6448666, 41.9386136], [-85.6448147, 41.9384748]], "type": "LineString"}, "id": "926", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643125, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6460483, 41.9515342, -85.6450827, 41.9519157], "geometry": {"coordinates": [[-85.6460483, 41.9519157], [-85.6457908, 41.9518807], [-85.6452882, 41.9518821], [-85.6451781, 41.9518616], [-85.6451359, 41.9518275], [-85.6451176, 41.9517811], [-85.6450827, 41.9515342]], "type": "LineString"}, "id": "927", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871113045, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6451964, 41.9461743, -85.6444166, 41.9463601], "geometry": {"coordinates": [[-85.6444166, 41.9463259], [-85.6445702, 41.9463363], [-85.6448312, 41.9463601], [-85.6450782, 41.9463234], [-85.6451679, 41.9462477], [-85.6451964, 41.9461743]], "type": "LineString"}, "id": "928", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871082209, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6475835, 41.9467381, -85.6474165, 41.9470126], "geometry": {"coordinates": [[-85.6474165, 41.9467381], [-85.6474655, 41.9467416], [-85.6475185, 41.9467647], [-85.6475584, 41.9467995], [-85.6475809, 41.9468421], [-85.6475835, 41.9468878], [-85.6475658, 41.9469316], [-85.6475299, 41.9469687], [-85.6474802, 41.9469948], [-85.6474211, 41.9470126]], "type": "LineString"}, "id": "929", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 498942814, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467698, 41.9540853, -85.6465551, 41.9540915], "geometry": {"coordinates": [[-85.6465551, 41.9540853], [-85.6467698, 41.9540915]], "type": "LineString"}, "id": "930", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 652550667, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345079, 41.9457778, -85.6344154, 41.9461817], "geometry": {"coordinates": [[-85.6345079, 41.9461817], [-85.634507, 41.9458632], [-85.634499, 41.9458283], [-85.6344596, 41.9457898], [-85.6344154, 41.9457778]], "type": "LineString"}, "id": "931", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427768, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344851, 41.9454935, -85.6342315, 41.9456026], "geometry": {"coordinates": [[-85.6344851, 41.9454935], [-85.6343577, 41.9455483], [-85.6342315, 41.9456026]], "type": "LineString"}, "id": "932", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427766, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346782, 41.9456731, -85.6344596, 41.9457898], "geometry": {"coordinates": [[-85.6346782, 41.9456731], [-85.6345572, 41.9457377], [-85.6344596, 41.9457898]], "type": "LineString"}, "id": "933", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640907, 41.9435689, -85.640672, 41.9435717], "geometry": {"coordinates": [[-85.640907, 41.9435689], [-85.6408013, 41.9435702], [-85.640672, 41.9435717]], "type": "LineString"}, "id": "934", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615985, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6438794, 41.9426991, -85.64372, 41.9429932], "geometry": {"coordinates": [[-85.6438794, 41.9429932], [-85.6437259, 41.9429909], [-85.64372, 41.9427013], [-85.6438688, 41.9426991]], "type": "LineString"}, "id": "935", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486385876, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6430697, 41.9405521, -85.6428388, 41.9411732], "geometry": {"coordinates": [[-85.6430624, 41.9405521], [-85.6428388, 41.9407211], [-85.6428411, 41.9409974], [-85.6430697, 41.9411732]], "type": "LineString"}, "id": "936", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 204003419, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.639924, 41.9399021, -85.6393311, 41.9400784], "geometry": {"coordinates": [[-85.639924, 41.939903], [-85.6393844, 41.9399021], [-85.6393607, 41.9399208], [-85.6393457, 41.9400127], [-85.6393311, 41.9400784]], "type": "LineString"}, "id": "937", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907723401, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6406588, 41.9400627, -85.6406114, 41.942601], "geometry": {"coordinates": [[-85.6406114, 41.9400627], [-85.6406381, 41.9413339], [-85.6406574, 41.9425183], [-85.6406588, 41.942601]], "type": "LineString"}, "id": "938", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Lincoln Avenue", "oneway": null, "osm_id": 17966041, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6352459, 41.9401088, -85.6346806, 41.9402478], "geometry": {"coordinates": [[-85.6352459, 41.9402446], [-85.6350643, 41.9402383], [-85.6348423, 41.9402478], [-85.6347731, 41.9402099], [-85.6346806, 41.9401088]], "type": "LineString"}, "id": "939", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947116510, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345671, 41.9379656, -85.6339783, 41.9382273], "geometry": {"coordinates": [[-85.6339783, 41.9382273], [-85.6339905, 41.9380467], [-85.6340346, 41.9379718], [-85.6341022, 41.9379656], [-85.6341449, 41.9380056], [-85.6341205, 41.9380746], [-85.6342104, 41.9380985], [-85.6343181, 41.9381645], [-85.6345113, 41.9381598], [-85.6345671, 41.9381816]], "type": "LineString"}, "id": "940", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336397, 41.9447832, -85.633475, 41.9448816], "geometry": {"coordinates": [[-85.633475, 41.9448816], [-85.633567, 41.9448266], [-85.6336397, 41.9447832]], "type": "LineString"}, "id": "941", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427755, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6359415, 41.9439899, -85.6336824, 41.9459797], "geometry": {"coordinates": [[-85.6336824, 41.9439899], [-85.6338478, 41.9441519], [-85.6341246, 41.9443913], [-85.635094, 41.9451026], [-85.6351753, 41.9451672], [-85.635374, 41.945325], [-85.635643, 41.945585], [-85.635853, 41.94586], [-85.6359415, 41.9459797]], "type": "LineString"}, "id": "942", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Drive", "oneway": null, "osm_id": 847427777, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351431, 41.9439117, -85.6348853, 41.9439217], "geometry": {"coordinates": [[-85.6351431, 41.9439217], [-85.6348853, 41.9439117]], "type": "LineString"}, "id": "943", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "path", "layer": "1", "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974058, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6329938, 41.9440821, -85.632971, 41.944093], "geometry": {"coordinates": [[-85.6329938, 41.9440821], [-85.632971, 41.944093]], "type": "LineString"}, "id": "944", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427759, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634904, 41.9431193, -85.6347357, 41.9431737], "geometry": {"coordinates": [[-85.634904, 41.9431193], [-85.6347357, 41.9431737]], "type": "LineString"}, "id": "945", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550713, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6384724, 41.9443605, -85.6382523, 41.9444134], "geometry": {"coordinates": [[-85.6382523, 41.9444134], [-85.6384724, 41.9443605]], "type": "LineString"}, "id": "946", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972939, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633258, 41.947315, -85.633183, 41.949893], "geometry": {"coordinates": [[-85.633183, 41.947315], [-85.633214, 41.948618], [-85.633258, 41.949893]], "type": "LineString"}, "id": "947", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": null, "osm_id": 17967444, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6419999, 41.9383384, -85.6418243, 41.938951], "geometry": {"coordinates": [[-85.6419807, 41.938951], [-85.6419999, 41.938342], [-85.6418243, 41.9383384]], "type": "LineString"}, "id": "948", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 221397311, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361494, 41.946142, -85.6354163, 41.946757], "geometry": {"coordinates": [[-85.6354163, 41.946142], [-85.6355644, 41.9461768], [-85.6357546, 41.9462214], [-85.6357937, 41.9462542], [-85.6358654, 41.9464843], [-85.635869, 41.9465971], [-85.6358723, 41.9467048], [-85.6359549, 41.9467499], [-85.6361494, 41.946757]], "type": "LineString"}, "id": "949", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643140, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6434709, 41.9284393, -85.63928, 41.929221], "geometry": {"coordinates": [[-85.63928, 41.929221], [-85.6393194, 41.9291139], [-85.6393602, 41.9286062], [-85.6394451, 41.9285197], [-85.6397677, 41.9284907], [-85.640513, 41.928473], [-85.6410582, 41.9284601], [-85.6416273, 41.9284523], [-85.6419828, 41.9284475], [-85.6425818, 41.9284393], [-85.6430153, 41.9284512], [-85.6434709, 41.9284638]], "type": "LineString"}, "id": "950", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1178149220, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632488, 41.941063, -85.6323502, 41.941103], "geometry": {"coordinates": [[-85.6323502, 41.941103], [-85.632488, 41.941063]], "type": "LineString"}, "id": "951", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203985744, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638724, 41.955913, -85.6382746, 41.9560876], "geometry": {"coordinates": [[-85.6382746, 41.9560876], [-85.6384392, 41.9560629], [-85.6386374, 41.9560366], [-85.638724, 41.955913]], "type": "LineString"}, "id": "952", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 772282739, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382838, 41.9560876, -85.6374707, 41.9563685], "geometry": {"coordinates": [[-85.6374707, 41.9563685], [-85.6382838, 41.9563633], [-85.6382746, 41.9560876], [-85.6374721, 41.9560979]], "type": "LineString"}, "id": "953", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 770145167, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6349874, 41.9619315, -85.6348207, 41.9619375], "geometry": {"coordinates": [[-85.6349874, 41.9619375], [-85.6349769, 41.9619328], [-85.6348207, 41.9619315]], "type": "LineString"}, "id": "954", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 779892030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6424237, 41.9317372, -85.6423202, 41.9361655], "geometry": {"coordinates": [[-85.6424219, 41.9317372], [-85.6424237, 41.9318871], [-85.64242, 41.932699], [-85.6424184, 41.9327641], [-85.6423893, 41.9339381], [-85.6423509, 41.934974], [-85.6423397, 41.9354097], [-85.6423321, 41.9357026], [-85.6423229, 41.9360597], [-85.6423202, 41.9361655]], "type": "LineString"}, "id": "955", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 17966325, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436134, 41.9419225, -85.6432974, 41.9423887], "geometry": {"coordinates": [[-85.6432974, 41.9419225], [-85.6433055, 41.9421632], [-85.6433538, 41.9422849], [-85.6434718, 41.9423887], [-85.6436134, 41.9422667]], "type": "LineString"}, "id": "956", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643102, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483351, 41.9344216, -85.6469648, 41.9349544], "geometry": {"coordinates": [[-85.6483351, 41.9344216], [-85.6483349, 41.9345756], [-85.6483349, 41.9346027], [-85.6483346, 41.9347803], [-85.6483344, 41.9348885], [-85.6482412, 41.9349448], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "957", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800862, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6316975, 41.9331564, -85.631591, 41.934167], "geometry": {"coordinates": [[-85.631591, 41.934167], [-85.6316587, 41.9340647], [-85.6316768, 41.9339666], [-85.6316923, 41.9336992], [-85.6316975, 41.9331564]], "type": "LineString"}, "id": "958", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199688, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6432741, 41.9294683, -85.6397046, 41.9302911], "geometry": {"coordinates": [[-85.6397046, 41.9302911], [-85.6400447, 41.9302383], [-85.6404145, 41.9301628], [-85.640661, 41.9300769], [-85.6410292, 41.9299202], [-85.6412241, 41.9298217], [-85.6419185, 41.9294683], [-85.6425638, 41.9294705], [-85.643072, 41.9295673], [-85.6432603, 41.9297063], [-85.6432741, 41.9298347], [-85.6430048, 41.9300157], [-85.6424558, 41.9301956], [-85.641949, 41.9302513], [-85.64163, 41.9301856]], "type": "LineString"}, "id": "959", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331310837, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6476037, 41.9307343, -85.6461498, 41.9326317], "geometry": {"coordinates": [[-85.6476037, 41.9326155], [-85.6476005, 41.9325159], [-85.6475446, 41.9307842], [-85.6473984, 41.9307343], [-85.6471066, 41.9307432], [-85.6468732, 41.9307502], [-85.6466913, 41.9307557], [-85.6464503, 41.930763], [-85.6462315, 41.9307696], [-85.6462088, 41.9307703], [-85.6461498, 41.930874], [-85.6461703, 41.9325357], [-85.6461715, 41.9326317]], "type": "LineString"}, "id": "960", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607644868, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6448659, 41.9544732, -85.6433323, 41.9553044], "geometry": {"coordinates": [[-85.6433323, 41.9544732], [-85.6435153, 41.9546522], [-85.6441611, 41.9550095], [-85.6444331, 41.9551578], [-85.6448659, 41.9553044]], "type": "LineString"}, "id": "961", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768508834, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336155, 41.9665182, -85.632652, 41.9677035], "geometry": {"coordinates": [[-85.6336155, 41.9677035], [-85.6336142, 41.967487], [-85.633613, 41.9672979], [-85.6336109, 41.9669663], [-85.6335987, 41.966603], [-85.6335702, 41.9665576], [-85.6335295, 41.9665379], [-85.6334664, 41.9665228], [-85.6331712, 41.9665182], [-85.6327518, 41.9665334], [-85.6326927, 41.9665515], [-85.6326581, 41.9665924], [-85.632652, 41.966656], [-85.6326622, 41.9672857], [-85.6326626, 41.9673067], [-85.632666, 41.9674796], [-85.6326704, 41.9676989]], "type": "LineString"}, "id": "962", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766819275, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635601, 41.9583025, -85.6355981, 41.9584676], "geometry": {"coordinates": [[-85.6355981, 41.9583025], [-85.635601, 41.9584676]], "type": "LineString"}, "id": "963", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454968, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6423063, 41.9425816, -85.6423027, 41.9427875], "geometry": {"coordinates": [[-85.6423063, 41.9425816], [-85.6423052, 41.9426651], [-85.6423027, 41.9427875]], "type": "LineString"}, "id": "964", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1056571142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350256, 41.9619375, -85.6349874, 41.9625681], "geometry": {"coordinates": [[-85.6350256, 41.9625681], [-85.6350114, 41.9619585], [-85.6350034, 41.9619447], [-85.6349874, 41.9619375]], "type": "LineString"}, "id": "965", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 777996087, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6427798, 41.9411572, -85.6418494, 41.9413154], "geometry": {"coordinates": [[-85.6427798, 41.9412945], [-85.6427701, 41.9411777], [-85.6427323, 41.9411572], [-85.6418766, 41.9411644], [-85.6418543, 41.9411921], [-85.6418494, 41.9413154]], "type": "LineString"}, "id": "966", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 204003421, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346358, 41.947315, -85.633183, 41.947323], "geometry": {"coordinates": [[-85.633183, 41.947315], [-85.6339169, 41.9473191], [-85.6344097, 41.9473218], [-85.6346358, 41.947323]], "type": "LineString"}, "id": "967", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Prutzman Street", "oneway": null, "osm_id": 17965349, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6495916, 41.9491631, -85.643195, 41.949261], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.644466, 41.949246], [-85.6450946, 41.949233], [-85.6460234, 41.9492137], [-85.6469834, 41.949197], [-85.6474524, 41.9491881], [-85.6483619, 41.9491709], [-85.6486579, 41.9491678], [-85.6490788, 41.9491652], [-85.6494003, 41.9491647], [-85.6495916, 41.9491631]], "type": "LineString"}, "id": "968", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Arnold Street", "oneway": null, "osm_id": 17965839, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348195, 41.9630124, -85.6342668, 41.9630307], "geometry": {"coordinates": [[-85.6348195, 41.9630124], [-85.6342668, 41.9630307]], "type": "LineString"}, "id": "969", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871038029, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6338879, 41.9612014, -85.6338772, 41.9614886], "geometry": {"coordinates": [[-85.6338772, 41.9612014], [-85.6338879, 41.9614886]], "type": "LineString"}, "id": "970", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 337683153, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6448702, 41.934969, -85.6442957, 41.9354807], "geometry": {"coordinates": [[-85.6448698, 41.934969], [-85.6448702, 41.9353961], [-85.644849, 41.9354414], [-85.6447988, 41.935465], [-85.6442957, 41.9354807]], "type": "LineString"}, "id": "971", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907670909, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453514, 41.9412419, -85.644727, 41.9417126], "geometry": {"coordinates": [[-85.644727, 41.941262], [-85.6447421, 41.9416621], [-85.6448419, 41.9417126], [-85.6451269, 41.9417075], [-85.6451545, 41.9416625], [-85.6451706, 41.9412509], [-85.6453514, 41.9412419]], "type": "LineString"}, "id": "972", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962613, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6263691, 41.9301644, -85.6257282, 41.9311792], "geometry": {"coordinates": [[-85.6263682, 41.9311792], [-85.626366, 41.9307083], [-85.6263691, 41.9305143], [-85.6263567, 41.9303893], [-85.6263321, 41.9302952], [-85.6262827, 41.9302206], [-85.6262256, 41.9301873], [-85.6261084, 41.9301644], [-85.6257282, 41.9301667]], "type": "LineString"}, "id": "973", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199683, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347658, 41.9461525, -85.6347645, 41.9461774], "geometry": {"coordinates": [[-85.6347645, 41.9461525], [-85.6347658, 41.9461774]], "type": "LineString"}, "id": "974", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427783, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6438578, 41.9552874, -85.6417453, 41.9560158], "geometry": {"coordinates": [[-85.6417453, 41.9552874], [-85.6438578, 41.9560158]], "type": "LineString"}, "id": "975", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 781776876, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6461839, 41.9414164, -85.646138, 41.9425489], "geometry": {"coordinates": [[-85.6461839, 41.9425489], [-85.646181, 41.9424776], [-85.646138, 41.9414164]], "type": "LineString"}, "id": "976", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942139, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357147, 41.9624166, -85.6350256, 41.9627708], "geometry": {"coordinates": [[-85.6350256, 41.9625681], [-85.6350331, 41.9625874], [-85.6350536, 41.9626408], [-85.6350597, 41.9626665], [-85.635074, 41.9627307], [-85.6350984, 41.9627511], [-85.6351482, 41.9627708], [-85.6352122, 41.9627708], [-85.6356318, 41.9627708], [-85.6356598, 41.962769], [-85.6356948, 41.9627569], [-85.6357147, 41.9627274], [-85.63571, 41.9624522], [-85.6356983, 41.9624296], [-85.6356505, 41.9624166], [-85.6353808, 41.9624218], [-85.6353586, 41.9624279], [-85.6353422, 41.9624522], [-85.6353306, 41.962499], [-85.6353306, 41.9625355], [-85.6353095, 41.9625581], [-85.6352745, 41.9625772], [-85.6352313, 41.9625893], [-85.6350331, 41.9625874]], "type": "LineString"}, "id": "977", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 777996089, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6276806, 41.9572739, -85.6276661, 41.9574468], "geometry": {"coordinates": [[-85.6276806, 41.9574468], [-85.6276661, 41.9572739]], "type": "LineString"}, "id": "978", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699288, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6442537, 41.950829, -85.643219, 41.9513714], "geometry": {"coordinates": [[-85.643219, 41.950829], [-85.6433237, 41.950936], [-85.6433583, 41.9509821], [-85.6434518, 41.9510425], [-85.6435204, 41.9510496], [-85.6436439, 41.9510622], [-85.6440972, 41.9510879], [-85.6441775, 41.9511204], [-85.6442415, 41.9511862], [-85.6442537, 41.9512557], [-85.6441907, 41.9513373], [-85.6441033, 41.9513714], [-85.6439762, 41.95136], [-85.6438106, 41.9512209], [-85.643654, 41.9511227], [-85.6435204, 41.9510496]], "type": "LineString"}, "id": "979", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 765893030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6463243, 41.9448393, -85.646281, 41.9450817], "geometry": {"coordinates": [[-85.6463243, 41.9450817], [-85.6463089, 41.9449953], [-85.646281, 41.9448393]], "type": "LineString"}, "id": "980", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 314867475, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6473736, 41.943225, -85.6473667, 41.9435109], "geometry": {"coordinates": [[-85.6473667, 41.943225], [-85.6473684, 41.943295], [-85.6473736, 41.9435109]], "type": "LineString"}, "id": "981", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488290767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394655, 41.9296875, -85.6391223, 41.9297465], "geometry": {"coordinates": [[-85.6394655, 41.9296875], [-85.6391223, 41.9297465]], "type": "LineString"}, "id": "982", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": null, "oneway": null, "osm_id": 340939538, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6487713, 41.9427003, -85.6486026, 41.9430643], "geometry": {"coordinates": [[-85.6487713, 41.9427003], [-85.648677, 41.9427009], [-85.6486026, 41.9427027], [-85.6486081, 41.9430643]], "type": "LineString"}, "id": "983", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 614445405, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510144, 41.9423537, -85.650727, 41.9423566], "geometry": {"coordinates": [[-85.650727, 41.9423537], [-85.6510144, 41.9423566]], "type": "LineString"}, "id": "984", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550673, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6498494, 41.9454987, -85.6493275, 41.9455066], "geometry": {"coordinates": [[-85.6498494, 41.9455066], [-85.6493275, 41.9454987]], "type": "LineString"}, "id": "985", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942206, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650727, 41.9423537, -85.6505996, 41.9423607], "geometry": {"coordinates": [[-85.6505996, 41.9423607], [-85.6506551, 41.9423577], [-85.650727, 41.9423537]], "type": "LineString"}, "id": "986", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550674, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6491367, 41.9424136, -85.6489675, 41.9424181], "geometry": {"coordinates": [[-85.6489675, 41.9424136], [-85.6490355, 41.9424178], [-85.6491367, 41.9424181]], "type": "LineString"}, "id": "987", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550670, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500847, 41.942509, -85.6500179, 41.9433006], "geometry": {"coordinates": [[-85.6500847, 41.9433006], [-85.6500179, 41.9431902], [-85.6500239, 41.9431138], [-85.6500501, 41.9427802], [-85.6500631, 41.9426282], [-85.6500601, 41.942509]], "type": "LineString"}, "id": "988", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942220, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489023, 41.950344, -85.6486721, 41.9508623], "geometry": {"coordinates": [[-85.6488505, 41.950344], [-85.6487099, 41.9506527], [-85.6486819, 41.9507199], [-85.6486721, 41.9507622], [-85.6486728, 41.9507877], [-85.6486825, 41.9508092], [-85.6487047, 41.9508255], [-85.6487363, 41.9508418], [-85.6487681, 41.9508518], [-85.6488006, 41.9508582], [-85.6488518, 41.9508623], [-85.6489023, 41.9508564]], "type": "LineString"}, "id": "989", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892832, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489419, 41.9541815, -85.6481696, 41.9547995], "geometry": {"coordinates": [[-85.6481696, 41.9541815], [-85.6481938, 41.9544237], [-85.6489419, 41.9544804], [-85.6489172, 41.9546369], [-85.648894, 41.9547995], [-85.6483657, 41.9547665], [-85.6483693, 41.954607], [-85.6481938, 41.9544237]], "type": "LineString"}, "id": "990", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612654, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489172, 41.954607, -85.6483693, 41.9546369], "geometry": {"coordinates": [[-85.6489172, 41.9546369], [-85.6483693, 41.954607]], "type": "LineString"}, "id": "991", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612655, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489696, 41.9409351, -85.6485651, 41.9409372], "geometry": {"coordinates": [[-85.6489696, 41.9409351], [-85.6485651, 41.9409372]], "type": "LineString"}, "id": "992", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942147, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6486512, 41.9477038, -85.6486445, 41.9485674], "geometry": {"coordinates": [[-85.6486512, 41.9485674], [-85.6486445, 41.9477038]], "type": "LineString"}, "id": "993", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225611122, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501904, 41.9445072, -85.6496059, 41.9445098], "geometry": {"coordinates": [[-85.6501904, 41.9445072], [-85.6496059, 41.9445098]], "type": "LineString"}, "id": "994", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942201, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504772, 41.9441392, -85.6496566, 41.9441443], "geometry": {"coordinates": [[-85.6504772, 41.9441443], [-85.6496566, 41.9441392]], "type": "LineString"}, "id": "995", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942182, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6512719, 41.9423509, -85.6511293, 41.9423923], "geometry": {"coordinates": [[-85.6511293, 41.9423597], [-85.6512718, 41.9423509], [-85.6512719, 41.9423923]], "type": "LineString"}, "id": "996", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550675, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510714, 41.9419832, -85.6510679, 41.9425026], "geometry": {"coordinates": [[-85.6510705, 41.9425026], [-85.6510714, 41.9423578], [-85.6510679, 41.9419832]], "type": "LineString"}, "id": "997", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942162, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6433256, 41.9358712, -85.6433104, 41.9361767], "geometry": {"coordinates": [[-85.6433104, 41.9361767], [-85.6433166, 41.9360524], [-85.6433256, 41.9358712]], "type": "LineString"}, "id": "998", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 766158514, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489524, 41.9344104, -85.6469128, 41.9356328], "geometry": {"coordinates": [[-85.6469128, 41.9344104], [-85.6470336, 41.9344224], [-85.6472728, 41.9344163], [-85.6481164, 41.9344163], [-85.6482899, 41.9344163], [-85.6483351, 41.9344216], [-85.6484154, 41.9344309], [-85.6484582, 41.9344359], [-85.6489209, 41.9344378], [-85.6489524, 41.9344613], [-85.648947, 41.9347131], [-85.6489376, 41.9351415], [-85.6489342, 41.9352966], [-85.6489288, 41.9355467], [-85.6488473, 41.9355976], [-85.6487684, 41.935623], [-85.6486711, 41.9356328], [-85.6485866, 41.935614], [-85.648537, 41.9355761], [-85.6484927, 41.9355082], [-85.6484947, 41.9354499], [-85.6485061, 41.9353865], [-85.6485417, 41.9353426], [-85.6486081, 41.9353067], [-85.6486974, 41.9352905], [-85.6489342, 41.9352966]], "type": "LineString"}, "id": "999", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800857, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271414, 41.9407274, -85.6269868, 41.941035], "geometry": {"coordinates": [[-85.6271414, 41.9407274], [-85.6271243, 41.9408034], [-85.627101, 41.9408633], [-85.6270633, 41.9409278], [-85.6270257, 41.940981], [-85.6269868, 41.941035]], "type": "LineString"}, "id": "1000", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Street", "oneway": null, "osm_id": 134150833, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6361996, 41.9447967, -85.6359942, 41.9450097], "geometry": {"coordinates": [[-85.6359942, 41.9450097], [-85.6361996, 41.9447967]], "type": "LineString"}, "id": "1001", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203988290, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633062, 41.928335, -85.630973, 41.931065], "geometry": {"coordinates": [[-85.630973, 41.928387], [-85.632019, 41.928335], [-85.632416, 41.928359], [-85.632739, 41.928486], [-85.632893, 41.928624], [-85.632973, 41.928822], [-85.632949, 41.929036], [-85.632804, 41.929894], [-85.632759, 41.930075], [-85.632684, 41.930239], [-85.632625, 41.930415], [-85.632668, 41.930591], [-85.633062, 41.931065]], "type": "LineString"}, "id": "1002", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 17962965, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6248366, 41.933205, -85.624776, 41.9391615], "geometry": {"coordinates": [[-85.624776, 41.933205], [-85.624782, 41.934218], [-85.624792, 41.935214], [-85.6248039, 41.9362012], [-85.6247949, 41.9371708], [-85.6248019, 41.9381684], [-85.6248366, 41.9391615]], "type": "LineString"}, "id": "1003", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 379694388, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501987, 41.9448311, -85.6495428, 41.9448418], "geometry": {"coordinates": [[-85.6501987, 41.9448418], [-85.6495428, 41.9448311]], "type": "LineString"}, "id": "1004", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942203, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637113, 41.9486, -85.6346517, 41.948626], "geometry": {"coordinates": [[-85.6346517, 41.948626], [-85.6351983, 41.9486221], [-85.6352821, 41.9486214], [-85.6354294, 41.9486201], [-85.6361818, 41.9486135], [-85.637113, 41.9486]], "type": "LineString"}, "id": "1005", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Kelsey Street", "oneway": null, "osm_id": 17965856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6464864, 41.93494, -85.6457364, 41.9353368], "geometry": {"coordinates": [[-85.6464864, 41.93494], [-85.6464479, 41.9351644], [-85.6463463, 41.9352416], [-85.6462019, 41.9353126], [-85.6460617, 41.9353368], [-85.6459377, 41.9352945], [-85.6458462, 41.9352264], [-85.6457568, 41.9351523], [-85.6457364, 41.9349534]], "type": "LineString"}, "id": "1006", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755837734, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6319408, 41.9656501, -85.6302304, 41.9657359], "geometry": {"coordinates": [[-85.6302304, 41.9657359], [-85.6316583, 41.9657277], [-85.6317614, 41.9657168], [-85.6318497, 41.9656949], [-85.6319408, 41.9656501]], "type": "LineString"}, "id": "1007", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bush Boulevard", "oneway": "no", "osm_id": 203968021, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637468, 41.956901, -85.636279, 41.956906], "geometry": {"coordinates": [[-85.637468, 41.956906], [-85.636279, 41.956901]], "type": "LineString"}, "id": "1008", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Lyman Street", "oneway": null, "osm_id": 17967437, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6479014, 41.9418019, -85.6474447, 41.942538], "geometry": {"coordinates": [[-85.6477792, 41.9425353], [-85.6477899, 41.9424602], [-85.6477969, 41.9424115], [-85.6478996, 41.9423957], [-85.6479014, 41.9418019], [-85.6474447, 41.9418019], [-85.6474605, 41.9424645], [-85.6474623, 41.942538]], "type": "LineString"}, "id": "1009", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942158, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6229619, 41.9326647, -85.6225756, 41.9328244], "geometry": {"coordinates": [[-85.6229586, 41.9326701], [-85.6229619, 41.9328244], [-85.6225789, 41.9328213], [-85.6225756, 41.9326647]], "type": "LineString"}, "id": "1010", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "Huss Farm Walkways", "oneway": null, "osm_id": 1231377976, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6268359, 41.94183, -85.6263447, 41.9418317], "geometry": {"coordinates": [[-85.6263447, 41.9418317], [-85.6268359, 41.94183]], "type": "LineString"}, "id": "1011", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 765371921, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6299489, 41.9422477, -85.6264, 41.9437872], "geometry": {"coordinates": [[-85.6264, 41.942263], [-85.62737, 41.942261], [-85.6274266, 41.9422605], [-85.6290399, 41.9422477], [-85.6291216, 41.9423021], [-85.6291778, 41.9423603], [-85.6292288, 41.9424224], [-85.6292595, 41.9424832], [-85.6292782, 41.942568], [-85.6292385, 41.9436111], [-85.6299489, 41.9437872]], "type": "LineString"}, "id": "1012", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "1st Avenue", "oneway": null, "osm_id": 17967539, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6282418, 41.94325, -85.6273949, 41.943668], "geometry": {"coordinates": [[-85.6273949, 41.9432543], [-85.6274479, 41.94325], [-85.6275576, 41.9432795], [-85.6282418, 41.9432952], [-85.6282382, 41.943668]], "type": "LineString"}, "id": "1013", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 771570029, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6282665, 41.9572713, -85.6282582, 41.9574418], "geometry": {"coordinates": [[-85.6282582, 41.9574418], [-85.6282625, 41.9573629], [-85.6282665, 41.9572713]], "type": "LineString"}, "id": "1014", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 341699287, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6292143, 41.9432952, -85.6282418, 41.9445114], "geometry": {"coordinates": [[-85.6282418, 41.9432952], [-85.6286323, 41.9433802], [-85.6289917, 41.9436375], [-85.629091, 41.9439228], [-85.629091, 41.9442879], [-85.6292143, 41.9445034], [-85.6286342, 41.9445114]], "type": "LineString"}, "id": "1015", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 884351103, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6250824, 41.9605482, -85.6245406, 41.9607317], "geometry": {"coordinates": [[-85.6250824, 41.9607317], [-85.6250677, 41.9607297], [-85.6250288, 41.9607222], [-85.6245406, 41.9605482]], "type": "LineString"}, "id": "1016", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550692, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622786, 41.951885, -85.6219849, 41.9529929], "geometry": {"coordinates": [[-85.622687, 41.951885], [-85.622786, 41.9520362], [-85.622786, 41.9521221], [-85.6226782, 41.9522023], [-85.6225703, 41.9523799], [-85.6224933, 41.9525174], [-85.6225549, 41.952695], [-85.622578, 41.9528153], [-85.622501, 41.9529012], [-85.6223624, 41.9529528], [-85.6221775, 41.9529699], [-85.6219849, 41.9529929]], "type": "LineString"}, "id": "1017", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "FootPath to Campsite", "oneway": null, "osm_id": 845444313, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622759, 41.951845, -85.620141, 41.951913], "geometry": {"coordinates": [[-85.622759, 41.951845], [-85.622687, 41.951885], [-85.622492, 41.951901], [-85.621032, 41.951913], [-85.620141, 41.951901]], "type": "LineString"}, "id": "1018", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "11th Avenue", "oneway": null, "osm_id": 17964707, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227688, 41.950119, -85.6201059, 41.950132], "geometry": {"coordinates": [[-85.6201059, 41.950132], [-85.6227688, 41.950119]], "type": "LineString"}, "id": "1019", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "9th Avenue", "oneway": null, "osm_id": 17966129, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6250811, 41.9609999, -85.6250569, 41.9610069], "geometry": {"coordinates": [[-85.6250569, 41.9609999], [-85.6250811, 41.9610069]], "type": "LineString"}, "id": "1020", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550718, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6192256, 41.9474562, -85.6173027, 41.9515959], "geometry": {"coordinates": [[-85.6174371, 41.9474562], [-85.617375, 41.947559], [-85.617391, 41.9481204], [-85.6174135, 41.9489136], [-85.61745, 41.9501974], [-85.6174641, 41.9506942], [-85.6174164, 41.9510804], [-85.6173027, 41.9512895], [-85.6176304, 41.9515154], [-85.6177355, 41.9515717], [-85.6180362, 41.9515719], [-85.6189204, 41.9515727], [-85.6192256, 41.9515959]], "type": "LineString"}, "id": "1021", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Collins Drive", "oneway": null, "osm_id": 17966364, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191709, 41.955596, -85.6182033, 41.9567483], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6191305, 41.9566955], [-85.6189389, 41.9565414], [-85.6188216, 41.9564439], [-85.6187656, 41.9563224], [-85.6187562, 41.9562043], [-85.6187236, 41.9560098], [-85.6188123, 41.9557841], [-85.6188496, 41.9556104], [-85.618838, 41.9555989], [-85.6182033, 41.955596]], "type": "LineString"}, "id": "1022", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 571308438, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180008, 41.9545412, -85.6177994, 41.9547387], "geometry": {"coordinates": [[-85.6180008, 41.9547387], [-85.6179337, 41.9547022], [-85.61787, 41.9546654], [-85.6178275, 41.954614], [-85.6177994, 41.9545412]], "type": "LineString"}, "id": "1023", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary_link", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 614445618, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6169836, 41.949197, -85.6169831, 41.9501612], "geometry": {"coordinates": [[-85.6169831, 41.949197], [-85.6169836, 41.9501612]], "type": "LineString"}, "id": "1024", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 203837939, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6193752, 41.9519432, -85.6177286, 41.9535545], "geometry": {"coordinates": [[-85.6189367, 41.9519432], [-85.6191318, 41.9520425], [-85.6193752, 41.9521695], [-85.6189421, 41.9526483], [-85.6185158, 41.9531194], [-85.6184408, 41.953201], [-85.6181374, 41.9535376], [-85.6179898, 41.9535545], [-85.6179141, 41.9535163], [-85.6177286, 41.9534228]], "type": "LineString"}, "id": "1025", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203837933, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620172, 41.9447384, -85.62001, 41.945627], "geometry": {"coordinates": [[-85.620172, 41.945627], [-85.620088, 41.945571], [-85.620051, 41.945505], [-85.62001, 41.94541], [-85.6200474, 41.9447384]], "type": "LineString"}, "id": "1026", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 652967187, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620035, 41.933297, -85.619915, 41.9381814], "geometry": {"coordinates": [[-85.620035, 41.933297], [-85.619945, 41.933378], [-85.619915, 41.933529], [-85.619964, 41.934759], [-85.619972, 41.935062], [-85.6200011, 41.9362282], [-85.620004, 41.936782], [-85.620007, 41.937206], [-85.6200097, 41.9376523], [-85.620013, 41.9381814]], "type": "LineString"}, "id": "1027", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "12th Street", "oneway": null, "osm_id": 17967518, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227785, 41.9447371, -85.6226744, 41.951845], "geometry": {"coordinates": [[-85.6226744, 41.9447371], [-85.6227157, 41.9456321], [-85.622721, 41.946535], [-85.6227578, 41.9474276], [-85.622761, 41.9483333], [-85.622769, 41.9492383], [-85.6227688, 41.950119], [-85.6227785, 41.9510005], [-85.622759, 41.951845]], "type": "LineString"}, "id": "1028", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Washington Street", "oneway": null, "osm_id": 17968192, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6153187, 41.9481265, -85.6153081, 41.9485899], "geometry": {"coordinates": [[-85.6153081, 41.9485899], [-85.6153097, 41.9484555], [-85.6153154, 41.9481697], [-85.6153187, 41.9481265]], "type": "LineString"}, "id": "1029", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839090, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62232, 41.9351903, -85.6222684, 41.9381751], "geometry": {"coordinates": [[-85.6222684, 41.9351903], [-85.6222867, 41.9362155], [-85.62232, 41.9381751]], "type": "LineString"}, "id": "1030", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "10th Street", "oneway": null, "osm_id": 17965370, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271604, 41.9262769, -85.6257845, 41.9264872], "geometry": {"coordinates": [[-85.6271604, 41.9262769], [-85.6263206, 41.9263876], [-85.6257845, 41.9264872]], "type": "LineString"}, "id": "1031", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hart Street", "oneway": null, "osm_id": 17967891, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296112, 41.9273547, -85.626047, 41.9273948], "geometry": {"coordinates": [[-85.6296112, 41.9273948], [-85.6295143, 41.9273547], [-85.6278389, 41.9273577], [-85.626047, 41.92737]], "type": "LineString"}, "id": "1032", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Forest Street", "oneway": null, "osm_id": 17965016, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6165019, 41.9433493, -85.6142597, 41.9454804], "geometry": {"coordinates": [[-85.6165019, 41.9436452], [-85.6162955, 41.9434789], [-85.6160608, 41.9433692], [-85.6158274, 41.9433493], [-85.6155579, 41.9433971], [-85.615311, 41.94353], [-85.6151006, 41.9436126], [-85.6143688, 41.9435919], [-85.6142763, 41.943672], [-85.6142879, 41.9442839], [-85.6142829, 41.9444024], [-85.6142597, 41.9449623], [-85.6142772, 41.9454804]], "type": "LineString"}, "id": "1033", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962828, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.617231, 41.944156, -85.61536, 41.945603], "geometry": {"coordinates": [[-85.615453, 41.945597], [-85.6154361, 41.9454794], [-85.6153721, 41.9449581], [-85.61536, 41.944893], [-85.6154103, 41.9444228], [-85.6158667, 41.9442319], [-85.616166, 41.944156], [-85.6164685, 41.9442121], [-85.616748, 41.944453], [-85.616813, 41.944646], [-85.6168377, 41.9449408], [-85.616859, 41.945196], [-85.616941, 41.945352], [-85.6170866, 41.945478], [-85.617231, 41.945603]], "type": "LineString"}, "id": "1034", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 17962823, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621605, 41.940143, -85.621591, 41.941075], "geometry": {"coordinates": [[-85.621605, 41.940143], [-85.621591, 41.941075]], "type": "LineString"}, "id": "1035", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jackson Street", "oneway": null, "osm_id": 17964489, "osm_type": "ways_line", "smoothness": null, "surface": "compacted", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6290391, 41.9331722, -85.6290227, 41.9342067], "geometry": {"coordinates": [[-85.6290391, 41.9342067], [-85.6290372, 41.9340742], [-85.6290268, 41.9336814], [-85.6290227, 41.9333934], [-85.6290268, 41.9331722]], "type": "LineString"}, "id": "1036", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199687, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297512, 41.9273948, -85.6296112, 41.939922], "geometry": {"coordinates": [[-85.6296112, 41.9273948], [-85.6296367, 41.927491], [-85.6296524, 41.928314], [-85.6296503, 41.9292199], [-85.6296598, 41.9301676], [-85.6296694, 41.931157], [-85.6296791, 41.9321485], [-85.6296891, 41.9331674], [-85.6296991, 41.9341973], [-85.6297088, 41.9351902], [-85.6297108, 41.9353939], [-85.6297382, 41.938203], [-85.6297512, 41.9395393], [-85.6297439, 41.939808], [-85.6296235, 41.939922]], "type": "LineString"}, "id": "1037", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "4th Street", "oneway": null, "osm_id": 17965023, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6257292, 41.93019, -85.624741, 41.9302058], "geometry": {"coordinates": [[-85.624741, 41.93019], [-85.6257292, 41.9302058]], "type": "LineString"}, "id": "1038", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Liberty Street", "oneway": null, "osm_id": 17962519, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6269868, 41.941035, -85.624873, 41.942022], "geometry": {"coordinates": [[-85.6269868, 41.941035], [-85.6268752, 41.9411026], [-85.6263984, 41.9413215], [-85.6256839, 41.9416496], [-85.624873, 41.942022]], "type": "LineString"}, "id": "1039", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Drive", "oneway": null, "osm_id": 378599359, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.613851, 41.954756, -85.613542, 41.9562795], "geometry": {"coordinates": [[-85.613542, 41.954756], [-85.613781, 41.955164], [-85.613815, 41.955237], [-85.613837, 41.955316], [-85.613851, 41.955415], [-85.6138494, 41.9554852], [-85.6138453, 41.9556723], [-85.6138327, 41.9562795]], "type": "LineString"}, "id": "1040", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": "Lockport Drive", "oneway": null, "osm_id": 17966756, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640003, 41.936988, -85.6351181, 41.937038], "geometry": {"coordinates": [[-85.640003, 41.936988], [-85.63876, 41.937002], [-85.637564, 41.937028], [-85.636453, 41.937038], [-85.6351181, 41.9370157]], "type": "LineString"}, "id": "1041", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Buck Street", "oneway": null, "osm_id": 17967780, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6183662, 41.9475582, -85.6175789, 41.9481282], "geometry": {"coordinates": [[-85.6175789, 41.9481282], [-85.6176946, 41.9481006], [-85.6181234, 41.9479906], [-85.6181636, 41.9476694], [-85.6183662, 41.9475582]], "type": "LineString"}, "id": "1042", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 652967181, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6294921, 41.9446718, -85.629471, 41.9452098], "geometry": {"coordinates": [[-85.629471, 41.9446718], [-85.6294856, 41.9449456], [-85.6294921, 41.9452098]], "type": "LineString"}, "id": "1043", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755772964, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310103, 41.931148, -85.62475, 41.93119], "geometry": {"coordinates": [[-85.62475, 41.93119], [-85.625711, 41.9311836], [-85.6263682, 41.9311792], [-85.626888, 41.9311757], [-85.6270379, 41.9311746], [-85.6277007, 41.9311702], [-85.6283399, 41.9311659], [-85.6289931, 41.9311615], [-85.6296694, 41.931157], [-85.6303008, 41.9311528], [-85.6310103, 41.931148]], "type": "LineString"}, "id": "1044", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Michigan Street", "oneway": null, "osm_id": 17967503, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6488847, 41.9485674, -85.6486512, 41.9491678], "geometry": {"coordinates": [[-85.6486579, 41.9491678], [-85.6486556, 41.948852], [-85.6487935, 41.9488239], [-85.6488847, 41.948718], [-85.6488402, 41.948627], [-85.6486512, 41.9485674], [-85.6486556, 41.948852]], "type": "LineString"}, "id": "1045", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 225611121, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6540221, 41.9306303, -85.6540093, 41.9315725], "geometry": {"coordinates": [[-85.6540221, 41.9315725], [-85.6540093, 41.9306303]], "type": "LineString"}, "id": "1046", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 764612683, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557584, 41.9330473, -85.6543214, 41.9350601], "geometry": {"coordinates": [[-85.6543214, 41.9350601], [-85.6555606, 41.9350556], [-85.6556344, 41.9350359], [-85.6556993, 41.9349876], [-85.6557377, 41.9349261], [-85.6557584, 41.9348536], [-85.6557421, 41.9330473]], "type": "LineString"}, "id": "1047", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 808234825, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490408, 41.939829, -85.648941, 41.9425185], "geometry": {"coordinates": [[-85.648941, 41.939829], [-85.648947, 41.940048], [-85.6489696, 41.9409351], [-85.648972, 41.941028], [-85.6489867, 41.9413359], [-85.6490095, 41.9418109], [-85.6490317, 41.9422759], [-85.6490355, 41.9424178], [-85.6490408, 41.9425185]], "type": "LineString"}, "id": "1048", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Day Drive", "oneway": null, "osm_id": 17967644, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6531091, 41.9397466, -85.6526098, 41.9400997], "geometry": {"coordinates": [[-85.6531091, 41.9397466], [-85.6530798, 41.9399278], [-85.6529365, 41.9400527], [-85.6526098, 41.9400997]], "type": "LineString"}, "id": "1049", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942246, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520286, 41.944641, -85.6516271, 41.944648], "geometry": {"coordinates": [[-85.6516271, 41.944641], [-85.6518087, 41.944643], [-85.6520286, 41.944648]], "type": "LineString"}, "id": "1050", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612658, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493647, 41.942707, -85.6491311, 41.9433174], "geometry": {"coordinates": [[-85.6493647, 41.942707], [-85.6491311, 41.9427175], [-85.6491631, 41.9433174]], "type": "LineString"}, "id": "1051", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942218, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.648677, 41.9425249, -85.6486708, 41.9427009], "geometry": {"coordinates": [[-85.6486708, 41.9425249], [-85.6486738, 41.942615], [-85.648677, 41.9427009]], "type": "LineString"}, "id": "1052", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 614445404, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514252, 41.9425113, -85.6514226, 41.9427707], "geometry": {"coordinates": [[-85.6514226, 41.9425113], [-85.6514252, 41.9426566], [-85.6514249, 41.9427707]], "type": "LineString"}, "id": "1053", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 41260269, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6465169, 41.9427004, -85.6462688, 41.9428685], "geometry": {"coordinates": [[-85.6462688, 41.9428685], [-85.6465169, 41.9428615], [-85.6465093, 41.9427004]], "type": "LineString"}, "id": "1054", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942840, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483929, 41.9491709, -85.6483619, 41.9493589], "geometry": {"coordinates": [[-85.6483929, 41.9493589], [-85.6483619, 41.9491709]], "type": "LineString"}, "id": "1055", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 909916185, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506524, 41.9465867, -85.6499239, 41.9469611], "geometry": {"coordinates": [[-85.6500083, 41.9465867], [-85.6499991, 41.9466316], [-85.6499239, 41.9469341], [-85.6503506, 41.9469453], [-85.6504672, 41.9469592], [-85.6506524, 41.9469611]], "type": "LineString"}, "id": "1056", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947694772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510964, 41.9495892, -85.6509596, 41.9496657], "geometry": {"coordinates": [[-85.6510964, 41.9495892], [-85.6509694, 41.9496262], [-85.6509596, 41.9496657]], "type": "LineString"}, "id": "1057", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 848056394, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6528326, 41.9421616, -85.6520608, 41.9425913], "geometry": {"coordinates": [[-85.6520639, 41.9424594], [-85.6520655, 41.9425398], [-85.6520732, 41.9425638], [-85.6520886, 41.9425822], [-85.6521194, 41.9425913], [-85.6523417, 41.9425909], [-85.6527602, 41.9425902], [-85.6527849, 41.9425867], [-85.6528142, 41.9425707], [-85.6528326, 41.9425524], [-85.6528234, 41.9422338], [-85.6528111, 41.9422029], [-85.6527926, 41.9421822], [-85.6527587, 41.9421708], [-85.6527171, 41.9421639], [-85.6523355, 41.9421625], [-85.6521009, 41.9421616], [-85.6520824, 41.9421674], [-85.652067, 41.9421811], [-85.6520608, 41.9422063]], "type": "LineString"}, "id": "1058", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 755786585, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462388, 41.9326304, -85.6462306, 41.932792], "geometry": {"coordinates": [[-85.6462388, 41.932792], [-85.6462338, 41.932693], [-85.6462306, 41.9326304]], "type": "LineString"}, "id": "1059", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870745193, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6518636, 41.9426175, -85.6513369, 41.9426566], "geometry": {"coordinates": [[-85.6518636, 41.942621], [-85.6517801, 41.9426175], [-85.6514252, 41.9426566], [-85.6513369, 41.9426489]], "type": "LineString"}, "id": "1060", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550677, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503194, 41.95096, -85.6502348, 41.954238], "geometry": {"coordinates": [[-85.650264, 41.954238], [-85.650237, 41.953213], [-85.6503194, 41.952225], [-85.6502348, 41.9511025], [-85.650247, 41.95096]], "type": "LineString"}, "id": "1061", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Church Drive", "oneway": null, "osm_id": 17964870, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6487225, 41.9385694, -85.6484596, 41.9397556], "geometry": {"coordinates": [[-85.6484596, 41.9397556], [-85.6484651, 41.9385814], [-85.6487225, 41.9385694]], "type": "LineString"}, "id": "1062", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 331307626, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510522, 41.9385379, -85.6502625, 41.9395878], "geometry": {"coordinates": [[-85.6502625, 41.9395828], [-85.650437, 41.9395839], [-85.6510522, 41.9395878], [-85.6510513, 41.9394457], [-85.6510479, 41.9388923], [-85.651047, 41.9387331], [-85.6510457, 41.9385379]], "type": "LineString"}, "id": "1063", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488054997, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510479, 41.9388906, -85.6502598, 41.9388923], "geometry": {"coordinates": [[-85.6510479, 41.9388923], [-85.6504371, 41.938891], [-85.6502598, 41.9388906]], "type": "LineString"}, "id": "1064", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 488054999, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504534, 41.9425064, -85.6500501, 41.9427886], "geometry": {"coordinates": [[-85.6504477, 41.9425064], [-85.6504462, 41.9426261], [-85.6504534, 41.9427886], [-85.6500501, 41.9427802]], "type": "LineString"}, "id": "1065", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942221, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520463, 41.942921, -85.6517775, 41.9429224], "geometry": {"coordinates": [[-85.6517775, 41.9429217], [-85.6519633, 41.942921], [-85.6520463, 41.9429224]], "type": "LineString"}, "id": "1066", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1111892829, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6451706, 41.9412509, -85.644283, 41.941271], "geometry": {"coordinates": [[-85.6451706, 41.9412509], [-85.644727, 41.941262], [-85.644283, 41.941271]], "type": "LineString"}, "id": "1067", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962736, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370184, 41.9401113, -85.6369542, 41.9411346], "geometry": {"coordinates": [[-85.6369542, 41.9401113], [-85.6369828, 41.9408789], [-85.6370184, 41.9411346]], "type": "LineString"}, "id": "1068", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17963021, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6323597, 41.943549, -85.6318433, 41.9437929], "geometry": {"coordinates": [[-85.6318433, 41.9437929], [-85.632244, 41.9436037], [-85.6323597, 41.943549]], "type": "LineString"}, "id": "1069", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 847427788, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633951, 41.9443666, -85.6317718, 41.946174], "geometry": {"coordinates": [[-85.6317718, 41.9443666], [-85.6318511, 41.9446409], [-85.6319048, 41.9447407], [-85.6319663, 41.9448112], [-85.632055, 41.9449128], [-85.6320913, 41.9449492], [-85.6324841, 41.9453438], [-85.6326558, 41.9454708], [-85.6328435, 41.9455473], [-85.6328885, 41.9455614], [-85.6332888, 41.9456871], [-85.6334199, 41.9457495], [-85.633564, 41.9458519], [-85.6336152, 41.9459804], [-85.633686, 41.946072], [-85.633815, 41.946131], [-85.6338843, 41.9461529], [-85.633951, 41.946174]], "type": "LineString"}, "id": "1070", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Joshua Drive", "oneway": null, "osm_id": 17964996, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6364328, 41.9428324, -85.63643, 41.9428631], "geometry": {"coordinates": [[-85.63643, 41.9428324], [-85.6364328, 41.9428631]], "type": "LineString"}, "id": "1071", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847371538, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6366671, 41.9428146, -85.6359749, 41.9428349], "geometry": {"coordinates": [[-85.6359749, 41.9428146], [-85.6360593, 41.9428349], [-85.63643, 41.9428324], [-85.6366671, 41.9428308]], "type": "LineString"}, "id": "1072", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847371537, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351983, 41.9486221, -85.6348564, 41.9488138], "geometry": {"coordinates": [[-85.6351983, 41.9486221], [-85.6351983, 41.9488118], [-85.6348564, 41.9488138]], "type": "LineString"}, "id": "1073", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 217907769, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6406657, 41.943107, -85.6399506, 41.9431378], "geometry": {"coordinates": [[-85.6399506, 41.9431241], [-85.6405146, 41.9431378], [-85.6405689, 41.9431345], [-85.640619, 41.9431225], [-85.6406657, 41.943107]], "type": "LineString"}, "id": "1074", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 486385871, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6375025, 41.9458685, -85.6370321, 41.9459913], "geometry": {"coordinates": [[-85.6370321, 41.9459913], [-85.6375025, 41.9458685]], "type": "LineString"}, "id": "1075", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "Moore Street", "oneway": null, "osm_id": 134150778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633258, 41.949893, -85.6313855, 41.9499125], "geometry": {"coordinates": [[-85.6313855, 41.9499125], [-85.6320344, 41.9499109], [-85.633258, 41.949893]], "type": "LineString"}, "id": "1076", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Bennett Street", "oneway": null, "osm_id": 17967844, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514338, 41.9427707, -85.6495916, 41.9491631], "geometry": {"coordinates": [[-85.6514249, 41.9427707], [-85.6514269, 41.9428331], [-85.6514293, 41.9429967], [-85.6514338, 41.9432233], [-85.6514284, 41.9433219], [-85.6514189, 41.9434961], [-85.6513977, 41.9437597], [-85.6513723, 41.9439835], [-85.6513297, 41.9443392], [-85.6512716, 41.9447154], [-85.6512162, 41.9450066], [-85.6511537, 41.945301], [-85.6510757, 41.9456171], [-85.6509763, 41.9460063], [-85.6509062, 41.9462527], [-85.6508001, 41.9465494], [-85.6507189, 41.9467913], [-85.6506524, 41.9469611], [-85.6505891, 41.9471195], [-85.650478, 41.9474008], [-85.650325, 41.9477483], [-85.6501292, 41.9481668], [-85.6498605, 41.9486809], [-85.6497327, 41.9489143], [-85.6495916, 41.9491631]], "type": "LineString"}, "id": "1077", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 945352908, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6506914, 41.9458179, -85.6503697, 41.9458667], "geometry": {"coordinates": [[-85.6503697, 41.9458179], [-85.6506914, 41.9458667]], "type": "LineString"}, "id": "1078", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1056570280, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.653554, 41.948114, -85.653537, 41.949065], "geometry": {"coordinates": [[-85.653554, 41.948114], [-85.653537, 41.949065]], "type": "LineString"}, "id": "1079", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pleasant View Court", "oneway": null, "osm_id": 17966284, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651611, 41.9458477, -85.6515735, 41.953639], "geometry": {"coordinates": [[-85.6515905, 41.9458477], [-85.6515806, 41.9460271], [-85.6515735, 41.9461213], [-85.6515753, 41.946257], [-85.651578, 41.946295], [-85.6515825, 41.9475468], [-85.6515836, 41.9478792], [-85.6515855, 41.9484171], [-85.651588, 41.949107], [-85.651587, 41.950958], [-85.651611, 41.953639]], "type": "LineString"}, "id": "1080", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kerr Creek Road", "oneway": null, "osm_id": 17966293, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6419005, 41.9598559, -85.6394695, 41.9613776], "geometry": {"coordinates": [[-85.6413484, 41.9613776], [-85.6411932, 41.9612716], [-85.6408965, 41.9611666], [-85.6395016, 41.9606785], [-85.6394741, 41.9606529], [-85.6394695, 41.9606171], [-85.6394786, 41.9605846], [-85.6395843, 41.9604173], [-85.6399355, 41.9598878], [-85.6399821, 41.9598559], [-85.6400399, 41.95986], [-85.6401257, 41.9598836], [-85.6419005, 41.9605114]], "type": "LineString"}, "id": "1081", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 870747319, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644156, 41.9565243, -85.6435035, 41.9569753], "geometry": {"coordinates": [[-85.6435584, 41.9565243], [-85.6435805, 41.9566049], [-85.6435035, 41.9567438], [-85.644156, 41.9569753]], "type": "LineString"}, "id": "1082", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208627212, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6465551, 41.9540785, -85.6450995, 41.9541831], "geometry": {"coordinates": [[-85.6450995, 41.9541831], [-85.6455882, 41.9541138], [-85.64609, 41.9540815], [-85.6462222, 41.9540789], [-85.6463856, 41.9540785], [-85.6465551, 41.9540853]], "type": "LineString"}, "id": "1083", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 134151786, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6340877, 41.9557655, -85.6340831, 41.9559238], "geometry": {"coordinates": [[-85.6340877, 41.9559238], [-85.6340831, 41.9557655]], "type": "LineString"}, "id": "1084", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 735416364, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420011, 41.9546557, -85.6383956, 41.9603536], "geometry": {"coordinates": [[-85.6420011, 41.9603536], [-85.6383956, 41.9590576], [-85.6385522, 41.9585167], [-85.6387369, 41.9581583], [-85.63892, 41.957957], [-85.6396089, 41.9576192], [-85.639848, 41.957229], [-85.640066, 41.956854], [-85.6408843, 41.9555822], [-85.6409795, 41.9553892], [-85.6410004, 41.9552822], [-85.640983, 41.9546557]], "type": "LineString"}, "id": "1085", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208627214, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.635869, 41.9461768, -85.6355644, 41.9465971], "geometry": {"coordinates": [[-85.6355644, 41.9461768], [-85.6355655, 41.946528], [-85.6357055, 41.9465971], [-85.635869, 41.9465971]], "type": "LineString"}, "id": "1086", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643142, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6472728, 41.9339736, -85.6472728, 41.9344163], "geometry": {"coordinates": [[-85.6472728, 41.9344163], [-85.6472728, 41.9343419], [-85.6472728, 41.9339736]], "type": "LineString"}, "id": "1087", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800870, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6421426, 41.9423895, -85.6418683, 41.9424016], "geometry": {"coordinates": [[-85.6421426, 41.9423895], [-85.6418683, 41.9424016]], "type": "LineString"}, "id": "1088", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942129, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6452709, 41.9481441, -85.6448371, 41.94828], "geometry": {"coordinates": [[-85.6448371, 41.9481441], [-85.645088, 41.9481485], [-85.6452709, 41.94815], [-85.6452709, 41.94828]], "type": "LineString"}, "id": "1089", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942804, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6460272, 41.9491423, -85.6450935, 41.9491544], "geometry": {"coordinates": [[-85.6460272, 41.9491423], [-85.6450935, 41.9491544]], "type": "LineString"}, "id": "1090", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 498942812, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6407748, 41.9264228, -85.639395, 41.9285197], "geometry": {"coordinates": [[-85.6394451, 41.9285197], [-85.639405, 41.9283927], [-85.639404, 41.9282066], [-85.639395, 41.9265395], [-85.6394417, 41.9264687], [-85.6395468, 41.9264228], [-85.6407631, 41.9264253], [-85.6407687, 41.9272086], [-85.64077, 41.9273885], [-85.6407748, 41.9280501], [-85.6405128, 41.9282016], [-85.640513, 41.928473]], "type": "LineString"}, "id": "1091", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143993, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6410501, 41.9272061, -85.6407687, 41.9272086], "geometry": {"coordinates": [[-85.6410501, 41.9272061], [-85.6407687, 41.9272086]], "type": "LineString"}, "id": "1092", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1193143994, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6541026, 41.9397322, -85.6540885, 41.9429532], "geometry": {"coordinates": [[-85.6540885, 41.9397322], [-85.6540931, 41.9408025], [-85.6540968, 41.9416764], [-85.6541017, 41.9428133], [-85.6541026, 41.9429532]], "type": "LineString"}, "id": "1093", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Tolbert Drive", "oneway": null, "osm_id": 628771096, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6366287, 41.9583116, -85.6360261, 41.9585014], "geometry": {"coordinates": [[-85.6366287, 41.9583116], [-85.6366107, 41.9585014], [-85.6360261, 41.9584779]], "type": "LineString"}, "id": "1094", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454969, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6350498, 41.9586206, -85.6350104, 41.9590274], "geometry": {"coordinates": [[-85.6350104, 41.9590274], [-85.6350498, 41.9586206]], "type": "LineString"}, "id": "1095", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906454971, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6483349, 41.9345756, -85.6469152, 41.9345841], "geometry": {"coordinates": [[-85.6483349, 41.9345756], [-85.6482271, 41.9345756], [-85.6471564, 41.934578], [-85.6470377, 41.934581], [-85.6469152, 41.9345841]], "type": "LineString"}, "id": "1096", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800864, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.64079, 41.953638, -85.6362328, 41.9536856], "geometry": {"coordinates": [[-85.6362328, 41.9536856], [-85.637452, 41.953665], [-85.638654, 41.953665], [-85.6394045, 41.953658], [-85.6398159, 41.9536507], [-85.640532, 41.953638], [-85.64079, 41.953638]], "type": "LineString"}, "id": "1097", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Cushman Street", "oneway": null, "osm_id": 385299770, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6520022, 41.9380485, -85.6517676, 41.9384842], "geometry": {"coordinates": [[-85.6519959, 41.9384842], [-85.6520022, 41.9380485], [-85.6519479, 41.9380494], [-85.6517676, 41.9380523]], "type": "LineString"}, "id": "1098", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6522031, 41.9344576, -85.6517615, 41.9346114], "geometry": {"coordinates": [[-85.6517615, 41.9346114], [-85.6517866, 41.9345736], [-85.6518063, 41.9345514], [-85.6518368, 41.9345316], [-85.6518745, 41.9345118], [-85.6519276, 41.934493], [-85.6519869, 41.9344845], [-85.6520533, 41.9344801], [-85.6521237, 41.934468], [-85.6522031, 41.9344576]], "type": "LineString"}, "id": "1099", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892841, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651459, 41.925523, -85.6514551, 41.9269659], "geometry": {"coordinates": [[-85.6514551, 41.925523], [-85.6514577, 41.926101], [-85.651459, 41.9269659]], "type": "LineString"}, "id": "1100", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 1111894476, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6516294, 41.9241414, -85.651626, 41.9249078], "geometry": {"coordinates": [[-85.6516294, 41.9249078], [-85.651626, 41.9241414]], "type": "LineString"}, "id": "1101", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 17964924, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480077, 41.9376349, -85.6471505, 41.9377541], "geometry": {"coordinates": [[-85.6471505, 41.9376626], [-85.6473951, 41.9376349], [-85.6480077, 41.9377541]], "type": "LineString"}, "id": "1102", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243983, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6459917, 41.9373978, -85.6458952, 41.9379365], "geometry": {"coordinates": [[-85.6459917, 41.9373978], [-85.6458952, 41.9379365]], "type": "LineString"}, "id": "1103", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607644651, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6364433, 41.9460423, -85.6358187, 41.9460485], "geometry": {"coordinates": [[-85.6358187, 41.9460423], [-85.6360524, 41.9460485], [-85.636291, 41.9460461], [-85.6364433, 41.9460423]], "type": "LineString"}, "id": "1104", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "Moore Street", "oneway": null, "osm_id": 134150808, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345079, 41.9461817, -85.6340746, 41.9461956], "geometry": {"coordinates": [[-85.6345079, 41.9461817], [-85.6340746, 41.9461956]], "type": "LineString"}, "id": "1105", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": "River Row", "oneway": null, "osm_id": 738590017, "osm_type": "ways_line", "smoothness": null, "surface": "concrete", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634686, 41.952415, -85.633287, 41.952426], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.634686, 41.952415]], "type": "LineString"}, "id": "1106", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Wheeler Street", "oneway": null, "osm_id": 775171419, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633287, 41.951159, -85.633274, 41.952426], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.633274, 41.951159]], "type": "LineString"}, "id": "1107", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": "yes", "osm_id": 772835856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636233, 41.9459797, -85.6359415, 41.9536856], "geometry": {"coordinates": [[-85.6359415, 41.9459797], [-85.636058, 41.946201], [-85.636112, 41.946366], [-85.636143, 41.946551], [-85.6361494, 41.946757], [-85.6361542, 41.946915], [-85.636166, 41.947296], [-85.636163, 41.947382], [-85.6361818, 41.9486135], [-85.6361862, 41.94952], [-85.636188, 41.9498803], [-85.6362059, 41.9511457], [-85.636233, 41.952398], [-85.6362328, 41.9536856]], "type": "LineString"}, "id": "1108", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Street", "oneway": null, "osm_id": 17967183, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640734, 41.942601, -85.6406588, 41.945887], "geometry": {"coordinates": [[-85.6406588, 41.942601], [-85.6406598, 41.9426764], [-85.6406657, 41.943107], [-85.6406695, 41.9433904], [-85.640672, 41.9435717], [-85.640676, 41.943867], [-85.640683, 41.94513], [-85.640734, 41.945887]], "type": "LineString"}, "id": "1109", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Lincoln Avenue", "oneway": null, "osm_id": 17967073, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420893, 41.9431389, -85.641881, 41.943139], "geometry": {"coordinates": [[-85.641881, 41.9431389], [-85.6419914, 41.943139], [-85.6420893, 41.943139]], "type": "LineString"}, "id": "1110", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 1043615986, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6441644, 41.9429932, -85.6438794, 41.9431502], "geometry": {"coordinates": [[-85.6438794, 41.9429932], [-85.643885, 41.9431491], [-85.6441644, 41.9431502]], "type": "LineString"}, "id": "1111", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 486385875, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632842, 41.9438989, -85.6326206, 41.944042], "geometry": {"coordinates": [[-85.6326206, 41.944042], [-85.6327269, 41.9439731], [-85.632842, 41.9438989]], "type": "LineString"}, "id": "1112", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427764, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351783, 41.9438906, -85.6351431, 41.9439217], "geometry": {"coordinates": [[-85.6351563, 41.9438906], [-85.6351783, 41.9439117], [-85.6351431, 41.9439217]], "type": "LineString"}, "id": "1113", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974054, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345233, 41.9432605, -85.6342019, 41.9437218], "geometry": {"coordinates": [[-85.6342019, 41.9437218], [-85.6345188, 41.9435401], [-85.6345233, 41.9434933], [-85.6343389, 41.9433106], [-85.6342265, 41.9432605]], "type": "LineString"}, "id": "1114", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 847370288, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632971, 41.944093, -85.6327737, 41.944194], "geometry": {"coordinates": [[-85.632971, 41.944093], [-85.63288, 41.9441396], [-85.6327737, 41.944194]], "type": "LineString"}, "id": "1115", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427760, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333999, 41.9437132, -85.632801, 41.9440586], "geometry": {"coordinates": [[-85.6333999, 41.9437132], [-85.6329202, 41.9439902], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "1116", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 847427772, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6337366, 41.9430376, -85.633222, 41.9435193], "geometry": {"coordinates": [[-85.6337366, 41.9435193], [-85.6336585, 41.9434434], [-85.6334282, 41.9432237], [-85.6333609, 41.9431631], [-85.633222, 41.9430376]], "type": "LineString"}, "id": "1117", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 768439951, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347357, 41.9431737, -85.6343843, 41.9432884], "geometry": {"coordinates": [[-85.6347357, 41.9431737], [-85.6343843, 41.9432884]], "type": "LineString"}, "id": "1118", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652550716, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348245, 41.9429852, -85.6346535, 41.9430323], "geometry": {"coordinates": [[-85.6346535, 41.9430323], [-85.6348245, 41.9429852]], "type": "LineString"}, "id": "1119", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "footway", "layer": "1", "name": null, "oneway": null, "osm_id": 652550708, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6343528, 41.9422199, -85.6334991, 41.9432605], "geometry": {"coordinates": [[-85.6342265, 41.9432605], [-85.6341848, 41.9432268], [-85.634137, 41.9431881], [-85.6340846, 41.9431458], [-85.6339312, 41.9429108], [-85.6341561, 41.9428552], [-85.634294, 41.942821], [-85.634322, 41.9428102], [-85.6343358, 41.9427984], [-85.6343486, 41.9427834], [-85.6343528, 41.9427597], [-85.6341887, 41.9423478], [-85.6341527, 41.942254], [-85.6341163, 41.9422334], [-85.6340925, 41.9422199], [-85.6337682, 41.9422928], [-85.6335719, 41.9423321], [-85.6335427, 41.9423433], [-85.6335213, 41.9423569], [-85.6335094, 41.9423725], [-85.6335015, 41.942391], [-85.6334991, 41.9424175], [-85.6335062, 41.942447], [-85.6335261, 41.9424882], [-85.6335514, 41.9425294], [-85.6336296, 41.942665], [-85.6338939, 41.9428687], [-85.6339312, 41.9429108]], "type": "LineString"}, "id": "1120", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203974065, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6375545, 41.9426207, -85.6372304, 41.9431146], "geometry": {"coordinates": [[-85.6375506, 41.9426211], [-85.6375513, 41.9427048], [-85.6375545, 41.9431127], [-85.6372398, 41.9431146], [-85.6372319, 41.9427018], [-85.6372304, 41.9426207]], "type": "LineString"}, "id": "1121", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643128, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6449695, 41.9476224, -85.644429, 41.9481971], "geometry": {"coordinates": [[-85.644429, 41.947633], [-85.64469, 41.9476224], [-85.6449126, 41.9476324], [-85.6449451, 41.9476592], [-85.6449695, 41.9477042], [-85.6449634, 41.9477761], [-85.6449207, 41.9478359], [-85.6448712, 41.9479054], [-85.6448268, 41.9479676], [-85.6448371, 41.9481441], [-85.6448402, 41.9481971], [-85.6444419, 41.9481952]], "type": "LineString"}, "id": "1122", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942238, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6468732, 41.9299702, -85.6468592, 41.9307502], "geometry": {"coordinates": [[-85.6468732, 41.9307502], [-85.6468592, 41.9299702]], "type": "LineString"}, "id": "1123", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 331310415, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.648066, 41.9425328, -85.6474893, 41.9427565], "geometry": {"coordinates": [[-85.6474914, 41.9425378], [-85.6474906, 41.9426181], [-85.6474893, 41.9427565], [-85.6475152, 41.9427563], [-85.648032, 41.9427519], [-85.6480536, 41.9426127], [-85.648066, 41.9425328]], "type": "LineString"}, "id": "1124", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942834, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.65237, 41.9336106, -85.6520553, 41.9336125], "geometry": {"coordinates": [[-85.65237, 41.9336106], [-85.6520553, 41.9336125]], "type": "LineString"}, "id": "1125", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237757, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6328948, 41.9458703, -85.6321916, 41.9462374], "geometry": {"coordinates": [[-85.6328948, 41.9462374], [-85.6326413, 41.9461422], [-85.6321916, 41.9459733], [-85.6322598, 41.9458703], [-85.6327208, 41.9460358], [-85.6326413, 41.9461422]], "type": "LineString"}, "id": "1126", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 208643146, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630972, 41.950656, -85.630835, 41.9619135], "geometry": {"coordinates": [[-85.630962, 41.9619135], [-85.6309653, 41.961811], [-85.630972, 41.961495], [-85.6309589, 41.960954], [-85.630952, 41.960667], [-85.6309472, 41.9602135], [-85.630935, 41.959037], [-85.6309238, 41.9583889], [-85.6309162, 41.957419], [-85.630904, 41.955913], [-85.6308843, 41.9547669], [-85.630883, 41.954692], [-85.6308815, 41.9545993], [-85.6308677, 41.9537139], [-85.630855, 41.952452], [-85.6308395, 41.9511969], [-85.630835, 41.950656]], "type": "LineString"}, "id": "1127", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Elm Street", "oneway": null, "osm_id": 290758901, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6367013, 41.9624364, -85.6362597, 41.9638663], "geometry": {"coordinates": [[-85.6362597, 41.9638663], [-85.6363358, 41.963634], [-85.6367013, 41.9625422], [-85.6366952, 41.9625014], [-85.6366606, 41.962456], [-85.636439, 41.9624364]], "type": "LineString"}, "id": "1128", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 777996086, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6504912, 41.9433194, -85.6504837, 41.9437343], "geometry": {"coordinates": [[-85.6504912, 41.9437343], [-85.6504899, 41.9436641], [-85.6504866, 41.9434825], [-85.6504837, 41.9433194]], "type": "LineString"}, "id": "1129", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942192, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6493217, 41.9456249, -85.6492976, 41.9459632], "geometry": {"coordinates": [[-85.6492976, 41.9459632], [-85.6493217, 41.9456249]], "type": "LineString"}, "id": "1130", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942213, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500618, 41.9505436, -85.6499839, 41.9509537], "geometry": {"coordinates": [[-85.6499839, 41.9505436], [-85.6499991, 41.9506634], [-85.6500199, 41.9508029], [-85.6500389, 41.9508762], [-85.6500618, 41.9509537]], "type": "LineString"}, "id": "1131", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 782636434, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6487523, 41.942523, -85.6348719, 41.9430367], "geometry": {"coordinates": [[-85.6487523, 41.942523], [-85.6486708, 41.9425249], [-85.6482342, 41.9425314], [-85.648066, 41.9425328], [-85.6477792, 41.9425353], [-85.6474914, 41.9425378], [-85.6474623, 41.942538], [-85.6472723, 41.9425396], [-85.6470582, 41.9425415], [-85.6469154, 41.9425427], [-85.6467464, 41.9425441], [-85.6463823, 41.9425472], [-85.6462541, 41.9425483], [-85.6461839, 41.9425489], [-85.6460385, 41.9425502], [-85.6458708, 41.9425516], [-85.645555, 41.9425543], [-85.6450276, 41.9425588], [-85.6443608, 41.9425645], [-85.6441525, 41.9425687], [-85.6438642, 41.9425705], [-85.64319, 41.9425748], [-85.6431031, 41.9425754], [-85.6430036, 41.9425763], [-85.6423063, 41.9425816], [-85.6418749, 41.9425864], [-85.64167, 41.9425889], [-85.641113, 41.9425955], [-85.6409572, 41.9425974], [-85.6406588, 41.942601], [-85.6403442, 41.9426034], [-85.6399801, 41.9426061], [-85.6394548, 41.94261], [-85.6382347, 41.9426146], [-85.6381584, 41.9426151], [-85.6375506, 41.9426211], [-85.6372304, 41.9426207], [-85.6370277, 41.9426234], [-85.6368191, 41.9426307], [-85.6366609, 41.9426359], [-85.6364941, 41.9426463], [-85.6363512, 41.9426613], [-85.6362124, 41.9426809], [-85.6360534, 41.9427104], [-85.6359171, 41.9427389], [-85.6358136, 41.9427625], [-85.6356875, 41.9427985], [-85.6354213, 41.9428814], [-85.6351764, 41.9429527], [-85.6348719, 41.9430367]], "type": "LineString"}, "id": "1132", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 41785752, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514657, 41.9269659, -85.6514005, 41.932543], "geometry": {"coordinates": [[-85.651459, 41.9269659], [-85.6514655, 41.9274874], [-85.6514657, 41.92812], [-85.6514533, 41.928703], [-85.6514197, 41.9294376], [-85.6514093, 41.930032], [-85.6514005, 41.930756], [-85.6514073, 41.932543]], "type": "LineString"}, "id": "1133", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 17964919, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511986, 41.9355867, -85.6509084, 41.9360091], "geometry": {"coordinates": [[-85.6511892, 41.9356274], [-85.6511986, 41.9359536], [-85.6511869, 41.9359799], [-85.6511424, 41.9360036], [-85.6510809, 41.9360091], [-85.6509913, 41.9360017], [-85.6509433, 41.9359832], [-85.6509084, 41.9359363], [-85.6509151, 41.9358697], [-85.6510918, 41.9355867]], "type": "LineString"}, "id": "1134", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 944116887, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6427227, 41.9360551, -85.642441, 41.9360595], "geometry": {"coordinates": [[-85.642441, 41.9360595], [-85.6425854, 41.9360584], [-85.6427227, 41.9360551]], "type": "LineString"}, "id": "1135", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158509, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514281, 41.9397993, -85.6502878, 41.9402284], "geometry": {"coordinates": [[-85.6514281, 41.9402239], [-85.6512554, 41.9402266], [-85.6511162, 41.9402284], [-85.6510841, 41.9402185], [-85.6510526, 41.9401821], [-85.6510399, 41.9400159], [-85.6510182, 41.9399964], [-85.6509757, 41.9399824], [-85.6503565, 41.9399896], [-85.6503247, 41.9399741], [-85.6503056, 41.9399416], [-85.6502878, 41.9397993]], "type": "LineString"}, "id": "1136", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915314565, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6302845, 41.952461, -85.6302622, 41.9537225], "geometry": {"coordinates": [[-85.630275, 41.952461], [-85.6302622, 41.9527127], [-85.6302705, 41.9531057], [-85.6302695, 41.95339], [-85.6302845, 41.9537225]], "type": "LineString"}, "id": "1137", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907706349, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6523735, 41.9341201, -85.6520137, 41.9341224], "geometry": {"coordinates": [[-85.6523735, 41.9341224], [-85.6520137, 41.9341201]], "type": "LineString"}, "id": "1138", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237755, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651129, 41.9313995, -85.6506085, 41.9324035], "geometry": {"coordinates": [[-85.6506085, 41.9324035], [-85.6507287, 41.9323738], [-85.6508184, 41.9323231], [-85.6511041, 41.9319883], [-85.651129, 41.9318635], [-85.651107, 41.9313995]], "type": "LineString"}, "id": "1139", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "no", "osm_id": 767768418, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322992, 41.9442766, -85.6315778, 41.9443959], "geometry": {"coordinates": [[-85.6315778, 41.9443959], [-85.6317718, 41.9443666], [-85.6321585, 41.9443033], [-85.6322992, 41.9442766]], "type": "LineString"}, "id": "1140", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 134150836, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6197809, 41.9507383, -85.6196772, 41.9509646], "geometry": {"coordinates": [[-85.6196772, 41.9507383], [-85.6196829, 41.9508426], [-85.6197809, 41.9509646]], "type": "LineString"}, "id": "1141", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 469528704, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634686, 41.951158, -85.633274, 41.951159], "geometry": {"coordinates": [[-85.633274, 41.951159], [-85.634686, 41.951158]], "type": "LineString"}, "id": "1142", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Armitage Street", "oneway": null, "osm_id": 772835855, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6516484, 41.9249078, -85.6516294, 41.9269767], "geometry": {"coordinates": [[-85.6516484, 41.9269767], [-85.6516457, 41.9260922], [-85.65164, 41.9256613], [-85.6516374, 41.9253813], [-85.6516294, 41.9249078]], "type": "LineString"}, "id": "1143", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk", "layer": null, "name": "US-131", "oneway": "yes", "osm_id": 929692961, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517612, 41.9340249, -85.6514053, 41.9345195], "geometry": {"coordinates": [[-85.6514053, 41.9340249], [-85.6514379, 41.9342133], [-85.6514669, 41.9344205], [-85.6514801, 41.9344643], [-85.6514983, 41.9344886], [-85.6515236, 41.9345057], [-85.6515543, 41.9345169], [-85.6515949, 41.9345195], [-85.6516336, 41.9345186], [-85.6516755, 41.9345122], [-85.6517072, 41.9344986], [-85.6517305, 41.9344813], [-85.6517612, 41.9344482]], "type": "LineString"}, "id": "1144", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892846, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6239169, 41.9489097, -85.6239144, 41.9492376], "geometry": {"coordinates": [[-85.6239169, 41.9489097], [-85.6239149, 41.9491686], [-85.6239144, 41.9492376]], "type": "LineString"}, "id": "1145", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 907964877, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6459436, 41.9323899, -85.6444563, 41.9326688], "geometry": {"coordinates": [[-85.6444717, 41.9326688], [-85.6444658, 41.9325635], [-85.6444563, 41.9323946], [-85.6459343, 41.9323899], [-85.6459398, 41.9325414], [-85.6459436, 41.9326459]], "type": "LineString"}, "id": "1146", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 776984512, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557753, 41.942632, -85.654356, 41.942648], "geometry": {"coordinates": [[-85.654356, 41.942648], [-85.6557753, 41.942632]], "type": "LineString"}, "id": "1147", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 628771082, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453514, 41.940684, -85.644272, 41.9412419], "geometry": {"coordinates": [[-85.6453514, 41.9412419], [-85.6453371, 41.9407486], [-85.645247, 41.940684], [-85.6443423, 41.9407072], [-85.644272, 41.940795]], "type": "LineString"}, "id": "1148", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 203968031, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636834, 41.934223, -85.6363309, 41.9381805], "geometry": {"coordinates": [[-85.636834, 41.934223], [-85.636786, 41.93429], [-85.636516, 41.935036], [-85.636453, 41.937038], [-85.6363309, 41.9381805]], "type": "LineString"}, "id": "1149", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Spring Street", "oneway": null, "osm_id": 17965836, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357931, 41.960811, -85.6357842, 41.9610796], "geometry": {"coordinates": [[-85.6357842, 41.960811], [-85.6357931, 41.9610796]], "type": "LineString"}, "id": "1150", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 307186113, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6501851, 41.9442926, -85.6496103, 41.9443041], "geometry": {"coordinates": [[-85.6501851, 41.9442926], [-85.6496103, 41.9443041]], "type": "LineString"}, "id": "1151", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942200, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6347658, 41.9461774, -85.6345079, 41.9461817], "geometry": {"coordinates": [[-85.6345079, 41.9461817], [-85.6346405, 41.9461789], [-85.6347658, 41.9461774]], "type": "LineString"}, "id": "1152", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 847427784, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6593087, 41.9255834, -85.6583049, 41.925818], "geometry": {"coordinates": [[-85.6593087, 41.9255834], [-85.6588917, 41.9256758], [-85.6583049, 41.925818]], "type": "LineString"}, "id": "1153", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 41260271, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557383, 41.9328286, -85.6543143, 41.9328574], "geometry": {"coordinates": [[-85.6557383, 41.9328286], [-85.6555615, 41.9328551], [-85.6547305, 41.9328574], [-85.6543143, 41.9328458]], "type": "LineString"}, "id": "1154", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906545417, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6511523, 41.9294498, -85.6507517, 41.9306049], "geometry": {"coordinates": [[-85.6511523, 41.9306049], [-85.6511479, 41.9296817], [-85.6507518, 41.9296928], [-85.6507517, 41.9294498]], "type": "LineString"}, "id": "1155", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612674, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644224, 41.9273627, -85.6410503, 41.9284601], "geometry": {"coordinates": [[-85.644224, 41.9273627], [-85.6434492, 41.9273881], [-85.6429757, 41.9273707], [-85.642862, 41.9273717], [-85.6410503, 41.9273876], [-85.6410658, 41.9279548], [-85.6410644, 41.9280451], [-85.6410582, 41.9284601]], "type": "LineString"}, "id": "1156", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915583098, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467775, 41.9260708, -85.644224, 41.9273627], "geometry": {"coordinates": [[-85.6467775, 41.9260708], [-85.6466255, 41.9261099], [-85.6464931, 41.9261586], [-85.6463216, 41.926241], [-85.6451527, 41.9270506], [-85.6449129, 41.9271733], [-85.6446774, 41.9272583], [-85.6443966, 41.9273397], [-85.644224, 41.9273627]], "type": "LineString"}, "id": "1157", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "TekModo Way", "oneway": null, "osm_id": 1173386266, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6567971, 41.9304605, -85.6556692, 41.9304639], "geometry": {"coordinates": [[-85.6567971, 41.9304639], [-85.6559467, 41.9304616], [-85.6556692, 41.9304605]], "type": "LineString"}, "id": "1158", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 980237747, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62642, 41.9342098, -85.6264034, 41.9371684], "geometry": {"coordinates": [[-85.6264034, 41.9342098], [-85.6264049, 41.9352062], [-85.6264109, 41.9361922], [-85.62642, 41.9371684]], "type": "LineString"}, "id": "1159", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871019043, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6264034, 41.93319, -85.6263762, 41.9342098], "geometry": {"coordinates": [[-85.6264034, 41.9342098], [-85.6263924, 41.9340569], [-85.626385, 41.9338793], [-85.6263909, 41.933729], [-85.6263777, 41.933267], [-85.6263762, 41.93319]], "type": "LineString"}, "id": "1160", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 945199680, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6319731, 41.9377791, -85.6308712, 41.9381973], "geometry": {"coordinates": [[-85.6308937, 41.9381973], [-85.6308731, 41.9378614], [-85.6308712, 41.9378308], [-85.630957, 41.9378032], [-85.6315648, 41.9377791], [-85.6317852, 41.9377946], [-85.6319453, 41.9378809], [-85.6319731, 41.9380345], [-85.6319105, 41.9381501], [-85.6317528, 41.9381812]], "type": "LineString"}, "id": "1161", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 915501171, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321102, 41.9429465, -85.631852, 41.9432542], "geometry": {"coordinates": [[-85.631852, 41.9429465], [-85.6321102, 41.9432542]], "type": "LineString"}, "id": "1162", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "secondary", "layer": "1", "name": "South Main Street", "oneway": null, "osm_id": 134150830, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6412915, 41.931841, -85.6410939, 41.9400568], "geometry": {"coordinates": [[-85.6412224, 41.931841], [-85.6412907, 41.9319548], [-85.6412915, 41.9327042], [-85.6412869, 41.93279], [-85.6412249, 41.9339485], [-85.6412214, 41.9349827], [-85.641148, 41.936984], [-85.641112, 41.938169], [-85.6410946, 41.9399845], [-85.6410939, 41.9400568]], "type": "LineString"}, "id": "1163", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Grant Avenue", "oneway": null, "osm_id": 17965747, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6284837, 41.95532, -85.627582, 41.9553461], "geometry": {"coordinates": [[-85.6284837, 41.9553346], [-85.6276612, 41.9553461], [-85.6276342, 41.9553391], [-85.627582, 41.95532]], "type": "LineString"}, "id": "1164", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 800580149, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489401, 41.9339003, -85.6484154, 41.9344309], "geometry": {"coordinates": [[-85.6484154, 41.9344309], [-85.6484184, 41.9340727], [-85.6484198, 41.9339031], [-85.6489401, 41.9339003], [-85.6489382, 41.9340671], [-85.6484184, 41.9340727]], "type": "LineString"}, "id": "1165", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 206800868, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6097807, 41.9470374, -85.6093852, 41.947251], "geometry": {"coordinates": [[-85.6097807, 41.9470374], [-85.609538, 41.9470429], [-85.6094512, 41.9470483], [-85.6094084, 41.9470656], [-85.6093877, 41.9471056], [-85.6093852, 41.9471556], [-85.6094036, 41.9471965], [-85.6094488, 41.9472283], [-85.6095465, 41.9472419], [-85.6097788, 41.947251]], "type": "LineString"}, "id": "1166", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 905683520, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6462522, 41.9362823, -85.6443023, 41.9367503], "geometry": {"coordinates": [[-85.6462522, 41.9362823], [-85.6462119, 41.9363243], [-85.6459664, 41.9365804], [-85.6458481, 41.9367038], [-85.6457648, 41.9367503], [-85.6456315, 41.9367503], [-85.6447108, 41.9362885], [-85.6443023, 41.9362837]], "type": "LineString"}, "id": "1167", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 238879876, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6521346, 41.9356869, -85.6521345, 41.9359181], "geometry": {"coordinates": [[-85.6521345, 41.9356869], [-85.6521346, 41.9359181]], "type": "LineString"}, "id": "1168", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 764612670, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503211, 41.9348439, -85.650076, 41.9357623], "geometry": {"coordinates": [[-85.6503055, 41.9348439], [-85.6503096, 41.9352497], [-85.6503211, 41.9356991], [-85.6502168, 41.9357586], [-85.650076, 41.9357623]], "type": "LineString"}, "id": "1169", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 204034076, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6529405, 41.9339328, -85.6523749, 41.9343364], "geometry": {"coordinates": [[-85.6529405, 41.9339328], [-85.6527717, 41.9339403], [-85.6527295, 41.9339729], [-85.6527077, 41.9340012], [-85.6527059, 41.9340444], [-85.652711, 41.9342677], [-85.6527103, 41.9342958], [-85.6527008, 41.9343216], [-85.6526822, 41.9343345], [-85.6526548, 41.9343364], [-85.6525665, 41.9343359], [-85.6523749, 41.9343329]], "type": "LineString"}, "id": "1170", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 906545418, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6282245, 41.9375655, -85.6277816, 41.938051], "geometry": {"coordinates": [[-85.6282245, 41.938051], [-85.6281109, 41.9380345], [-85.6280282, 41.9380225], [-85.6277816, 41.9377156], [-85.6278042, 41.9376286], [-85.6278206, 41.9375655]], "type": "LineString"}, "id": "1171", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 758897089, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344386, 41.9454489, -85.6342487, 41.9456229], "geometry": {"coordinates": [[-85.6342487, 41.9454489], [-85.6343577, 41.9455483], [-85.6344386, 41.9456229]], "type": "LineString"}, "id": "1172", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427780, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6543234, 41.9350092, -85.6517574, 41.9359236], "geometry": {"coordinates": [[-85.6517574, 41.9359236], [-85.6519436, 41.9359209], [-85.6521346, 41.9359181], [-85.6539689, 41.9358867], [-85.6541223, 41.9358561], [-85.654242, 41.9357809], [-85.6542981, 41.9356696], [-85.6543214, 41.9350601], [-85.6543234, 41.9350092]], "type": "LineString"}, "id": "1173", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 203843135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348853, 41.9439105, -85.6348317, 41.9439117], "geometry": {"coordinates": [[-85.6348853, 41.9439117], [-85.6348317, 41.9439105]], "type": "LineString"}, "id": "1174", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974057, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296524, 41.928314, -85.6263285, 41.928331], "geometry": {"coordinates": [[-85.6263285, 41.928331], [-85.6280779, 41.928322], [-85.6296524, 41.928314]], "type": "LineString"}, "id": "1175", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bell Street", "oneway": null, "osm_id": 17964630, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6308585, 41.9547689, -85.6307808, 41.961972], "geometry": {"coordinates": [[-85.6308579, 41.961972], [-85.6308575, 41.9618493], [-85.630858, 41.9618094], [-85.6308585, 41.9617758], [-85.6308451, 41.960998], [-85.6308451, 41.9609551], [-85.6308451, 41.9609202], [-85.6308424, 41.9603338], [-85.630821, 41.9583392], [-85.6308103, 41.9574915], [-85.6308074, 41.9574199], [-85.6308103, 41.9573838], [-85.6307995, 41.9558101], [-85.6307888, 41.9557383], [-85.6307808, 41.9547689]], "type": "LineString"}, "id": "1176", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 652967185, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508611, 41.9411766, -85.6498901, 41.9415477], "geometry": {"coordinates": [[-85.650778, 41.9415477], [-85.6508611, 41.9414479], [-85.6508584, 41.9411766], [-85.6498901, 41.9411846]], "type": "LineString"}, "id": "1177", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942146, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6508106, 41.9433006, -85.6493217, 41.9456249], "geometry": {"coordinates": [[-85.6502031, 41.9450188], [-85.6498418, 41.9450118], [-85.6498444, 41.9451822], [-85.6498468, 41.9453368], [-85.6498494, 41.9455066], [-85.6498511, 41.9456164], [-85.6493217, 41.9456249], [-85.6493275, 41.9454987], [-85.6493354, 41.9453267], [-85.6493424, 41.9451743], [-85.649349, 41.9450535], [-85.6493899, 41.9450231], [-85.6494728, 41.9449614], [-85.6495428, 41.9448311], [-85.6495375, 41.9446778], [-85.6495319, 41.944516], [-85.6496059, 41.9445098], [-85.6495895, 41.9443134], [-85.6496103, 41.9443041], [-85.6496549, 41.9442839], [-85.6496566, 41.9441392], [-85.6496573, 41.9440807], [-85.6496532, 41.9439729], [-85.6496469, 41.9438065], [-85.6496414, 41.9436606], [-85.6496363, 41.9435247], [-85.6497338, 41.943476], [-85.6500847, 41.9433006], [-85.6504837, 41.9433194], [-85.6506931, 41.9433447], [-85.6507656, 41.9434456], [-85.6508106, 41.9435525], [-85.6507817, 41.943638], [-85.6507601, 41.9437423]], "type": "LineString"}, "id": "1178", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942191, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480294, 41.9440825, -85.6477466, 41.9458724], "geometry": {"coordinates": [[-85.6477466, 41.9458724], [-85.64793, 41.945805], [-85.6480183, 41.9456719], [-85.6480294, 41.9455996], [-85.6480185, 41.9447787], [-85.6480097, 41.9441136], [-85.6479747, 41.9440825]], "type": "LineString"}, "id": "1179", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Loren Avenue", "oneway": null, "osm_id": 203968026, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6167567, 41.9497018, -85.6165925, 41.9497032], "geometry": {"coordinates": [[-85.6167567, 41.9497018], [-85.6165925, 41.9497032]], "type": "LineString"}, "id": "1180", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 203839097, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6332888, 41.9456871, -85.626832, 41.954677], "geometry": {"coordinates": [[-85.6332888, 41.9456871], [-85.6328948, 41.9462374], [-85.631422, 41.948294], [-85.63102, 41.948805], [-85.6308961, 41.9490425], [-85.630773, 41.949209], [-85.63005, 41.95016], [-85.629423, 41.951016], [-85.629252, 41.951256], [-85.629126, 41.951489], [-85.628991, 41.951704], [-85.628689, 41.952112], [-85.628313, 41.952666], [-85.627687, 41.953529], [-85.627394, 41.953947], [-85.627287, 41.954128], [-85.626832, 41.954677]], "type": "LineString"}, "id": "1181", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Water Street", "oneway": null, "osm_id": 17967730, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631852, 41.9257224, -85.6255481, 41.9429465], "geometry": {"coordinates": [[-85.6255481, 41.9257224], [-85.6256655, 41.9261001], [-85.625685, 41.926163], [-85.6257845, 41.9264872], [-85.626047, 41.92737], [-85.6263285, 41.928331], [-85.62663, 41.929251], [-85.6269, 41.930199], [-85.627008, 41.930642], [-85.627029, 41.930775], [-85.627041, 41.930946], [-85.6270379, 41.9311746], [-85.6270421, 41.931671], [-85.6270441, 41.9321659], [-85.627073, 41.93319], [-85.627055, 41.934206], [-85.627053, 41.9352031], [-85.627089, 41.9361884], [-85.627084, 41.936804], [-85.627104, 41.936914], [-85.627156, 41.937026], [-85.6272406, 41.9371672], [-85.627317, 41.93723], [-85.627422, 41.937312], [-85.6276, 41.937412], [-85.627754, 41.937504], [-85.6278206, 41.9375655], [-85.627883, 41.937623], [-85.627984, 41.93773], [-85.6280534, 41.9378226], [-85.6282245, 41.938051], [-85.629033, 41.93913], [-85.6296235, 41.939922], [-85.6297342, 41.9400783], [-85.6302265, 41.9407499], [-85.6304899, 41.9411092], [-85.6309241, 41.9417016], [-85.630986, 41.941786], [-85.6310312, 41.9418474], [-85.631194, 41.9420689], [-85.6315379, 41.9425368], [-85.631594, 41.942613], [-85.631852, 41.9429465]], "type": "LineString"}, "id": "1182", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 17966462, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651777, 41.9400273, -85.6514237, 41.9405094], "geometry": {"coordinates": [[-85.6514237, 41.9400273], [-85.651458, 41.9401765], [-85.6514772, 41.940289], [-85.6514879, 41.9403869], [-85.6515005, 41.9404431], [-85.6515155, 41.9404662], [-85.6515329, 41.9404845], [-85.651565, 41.9404984], [-85.6516037, 41.9405072], [-85.6516451, 41.9405094], [-85.651683, 41.9405085], [-85.6517127, 41.9404967], [-85.6517403, 41.9404805], [-85.651777, 41.9404534]], "type": "LineString"}, "id": "1183", "properties": {"__folium_color": "purple", "bridge": null, "highway": "trunk_link", "layer": null, "name": null, "oneway": "yes", "osm_id": 1111892837, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6237455, 41.9543033, -85.6237453, 41.9543932], "geometry": {"coordinates": [[-85.6237453, 41.9543033], [-85.6237455, 41.9543932]], "type": "LineString"}, "id": "1184", "properties": {"__folium_color": "purple", "bridge": null, "highway": "footway", "layer": null, "name": null, "oneway": null, "osm_id": 758296779, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6456872, 41.9328206, -85.6455734, 41.9349562], "geometry": {"coordinates": [[-85.6455734, 41.9328206], [-85.6456615, 41.9335502], [-85.6456872, 41.9339626], [-85.6455841, 41.9349562]], "type": "LineString"}, "id": "1185", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 203984751, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651426, 41.9363235, -85.6493175, 41.9364802], "geometry": {"coordinates": [[-85.651426, 41.9364304], [-85.6512453, 41.9364341], [-85.6510621, 41.9364379], [-85.6509872, 41.9364379], [-85.6509535, 41.9364348], [-85.6509164, 41.9364272], [-85.6508889, 41.9364162], [-85.650864, 41.9364032], [-85.6507666, 41.9363445], [-85.6507439, 41.9363354], [-85.6507239, 41.9363289], [-85.6506973, 41.9363254], [-85.6506667, 41.9363235], [-85.6502712, 41.9363242], [-85.6499901, 41.9363246], [-85.649871, 41.9363248], [-85.6493175, 41.9363258], [-85.6493183, 41.9364802]], "type": "LineString"}, "id": "1186", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 993698649, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6426209, 41.9357026, -85.6423321, 41.9360584], "geometry": {"coordinates": [[-85.6425854, 41.9360584], [-85.6426209, 41.9359411], [-85.642619, 41.9358254], [-85.6425834, 41.9357612], [-85.6424673, 41.9357166], [-85.6423321, 41.9357026]], "type": "LineString"}, "id": "1187", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": "yes", "osm_id": 766158510, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632182, 41.9490123, -85.6320229, 41.961493], "geometry": {"coordinates": [[-85.632182, 41.961493], [-85.6321716, 41.9606811], [-85.6321612, 41.959859], [-85.6321505, 41.9590251], [-85.6321452, 41.958604], [-85.6321405, 41.9584004], [-85.6321351, 41.9581654], [-85.6321281, 41.9578611], [-85.6321178, 41.9574105], [-85.6321108, 41.95592], [-85.6320962, 41.9547609], [-85.6320952, 41.954685], [-85.6320941, 41.9545984], [-85.6320827, 41.9537069], [-85.6320668, 41.9524531], [-85.6320505, 41.951174], [-85.6320344, 41.9499109], [-85.6320229, 41.9490123]], "type": "LineString"}, "id": "1188", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Walnut Street", "oneway": null, "osm_id": 17965402, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6264809, 41.9590055, -85.6262616, 41.9590665], "geometry": {"coordinates": [[-85.6262616, 41.9590055], [-85.6264809, 41.9590665]], "type": "LineString"}, "id": "1189", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 607644649, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315628, 41.9602121, -85.6309472, 41.9602135], "geometry": {"coordinates": [[-85.6309472, 41.9602135], [-85.6315628, 41.9602121]], "type": "LineString"}, "id": "1190", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 947586798, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6309589, 41.960954, -85.6300416, 41.9611618], "geometry": {"coordinates": [[-85.6309589, 41.960954], [-85.6308451, 41.9609551], [-85.6305281, 41.9609581], [-85.6301491, 41.960966], [-85.63009, 41.9609849], [-85.6300758, 41.961002], [-85.6300484, 41.9610349], [-85.6300416, 41.9611618]], "type": "LineString"}, "id": "1191", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871047421, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614204, 41.953696, -85.614195, 41.954754], "geometry": {"coordinates": [[-85.614204, 41.953696], [-85.6142, 41.953978], [-85.614195, 41.954754]], "type": "LineString"}, "id": "1192", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Orchard Drive", "oneway": null, "osm_id": 17965151, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632801, 41.9440586, -85.6322992, 41.9442766], "geometry": {"coordinates": [[-85.6322992, 41.9442766], [-85.6323999, 41.9442471], [-85.6324925, 41.9442136], [-85.632685, 41.9441169], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "1193", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 847427773, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6363658, 41.9413894, -85.6357985, 41.9418959], "geometry": {"coordinates": [[-85.6358037, 41.9418913], [-85.6363658, 41.9418959], [-85.6363489, 41.9414593], [-85.6361578, 41.9413894], [-85.6357985, 41.9413906]], "type": "LineString"}, "id": "1194", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 487998359, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6214788, 41.9332507, -85.6211132, 41.9340459], "geometry": {"coordinates": [[-85.6214708, 41.9332507], [-85.6214788, 41.9338849], [-85.6214761, 41.933991], [-85.6214418, 41.9340322], [-85.6213706, 41.9340459], [-85.6211132, 41.9340341]], "type": "LineString"}, "id": "1195", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 871050338, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272406, 41.9371672, -85.6235488, 41.9371726], "geometry": {"coordinates": [[-85.6235488, 41.9371726], [-85.6247949, 41.9371708], [-85.6257369, 41.9371694], [-85.62642, 41.9371684], [-85.6265186, 41.9371683], [-85.6267423, 41.9371679], [-85.6272406, 41.9371672]], "type": "LineString"}, "id": "1196", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Buck Street", "oneway": null, "osm_id": 17966681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321452, 41.9584004, -85.6319404, 41.958604], "geometry": {"coordinates": [[-85.6321405, 41.9584004], [-85.63207, 41.9584107], [-85.6319666, 41.9584373], [-85.6319404, 41.9584825], [-85.6319472, 41.9585207], [-85.6319755, 41.9585605], [-85.632017, 41.9585885], [-85.6321452, 41.958604]], "type": "LineString"}, "id": "1197", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 346578338, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159249, 41.9577578, -85.6157358, 41.959364], "geometry": {"coordinates": [[-85.6159142, 41.9577578], [-85.61592, 41.9581603], [-85.6159249, 41.9585901], [-85.6159249, 41.9589533], [-85.6158923, 41.959089], [-85.6157358, 41.959364]], "type": "LineString"}, "id": "1198", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Manistee River Road", "oneway": null, "osm_id": 17967743, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62569, 41.938166, -85.6173696, 41.9381886], "geometry": {"coordinates": [[-85.6173696, 41.9381886], [-85.6179654, 41.938187], [-85.6189467, 41.9381843], [-85.620013, 41.9381814], [-85.6211299, 41.9381784], [-85.62232, 41.9381751], [-85.6235512, 41.9381718], [-85.6248019, 41.9381684], [-85.62569, 41.938166]], "type": "LineString"}, "id": "1199", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Canal Street", "oneway": null, "osm_id": 17965778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6481146, 41.9367519, -85.6479642, 41.9371807], "geometry": {"coordinates": [[-85.6479642, 41.9371807], [-85.6481146, 41.9367519]], "type": "LineString"}, "id": "1200", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 216243992, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650914, 41.9443878, -85.6503781, 41.9447037], "geometry": {"coordinates": [[-85.6503781, 41.9443878], [-85.6505076, 41.9444362], [-85.6508042, 41.9445717], [-85.650914, 41.9446359], [-85.6508626, 41.9447037]], "type": "LineString"}, "id": "1201", "properties": {"__folium_color": "purple", "bridge": null, "highway": "service", "layer": null, "name": null, "oneway": null, "osm_id": 498942180, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500738, 41.926056, -85.6467775, 41.926996], "geometry": {"coordinates": [[-85.6500738, 41.92697], [-85.6497648, 41.9269716], [-85.648855, 41.926996], [-85.6486924, 41.9269809], [-85.6485578, 41.9269394], [-85.6484646, 41.926905], [-85.6483545, 41.9268411], [-85.6479012, 41.9264804], [-85.647809, 41.926407], [-85.6474852, 41.9261779], [-85.6473568, 41.9261167], [-85.6471952, 41.9260797], [-85.6469834, 41.926056], [-85.6467775, 41.9260708]], "type": "LineString"}, "id": "1202", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": null, "osm_id": 221671992, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " geo_json_15ac7569b612fcccd3796deed8e12659.bindTooltip(\n", + " geo_json_398e8cf600999750c150f002dd107ec4.bindTooltip(\n", " function(layer){\n", " let div = L.DomUtil.create('div');\n", " \n", @@ -417,13 +417,13 @@ " ,{"className": "foliumtooltip", "sticky": true});\n", " \n", " \n", - " geo_json_15ac7569b612fcccd3796deed8e12659.addTo(map_28ea3fea89f11eb83bd26e65904b45c8);\n", + " geo_json_398e8cf600999750c150f002dd107ec4.addTo(map_97a9b9cb014a1afacdd01afb6ef30f98);\n", " \n", "</script>\n", "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, "execution_count": 5, @@ -454,8 +454,8 @@ "text": [ "Before: (1203, 12)\n", "Before: ['footway', 'path', 'primary', 'residential', 'secondary', 'service', 'tertiary', 'tertiary_link', 'track', 'trunk', 'trunk_link', 'unclassified']\n", - "After: (242, 12)\n", - "After: ['path', 'residential', 'track', 'unclassified']\n" + "After: (280, 12)\n", + "After: ['primary', 'residential', 'secondary', 'tertiary', 'tertiary_link']\n" ] } ], @@ -464,7 +464,7 @@ "\n", "print(\"Before:\", gdf.shape)\n", "print(\"Before:\", sorted(gdf[\"highway\"].unique()))\n", - "gdf = remove_highways(gdf)\n", + "gdf = filter_by_highway_type(gdf)\n", "print(\"After:\", gdf.shape)\n", "print(\"After:\", sorted(gdf[\"highway\"].unique()))" ] @@ -504,7 +504,7 @@ " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_985e5e38d41657e0a041db13c65fc04c {\n", + " #map_1363a1a7a6772887a56e33105d61a7a6 {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", @@ -534,95 +534,95 @@ "<body>\n", " \n", " \n", - " <div class="folium-map" id="map_985e5e38d41657e0a041db13c65fc04c" ></div>\n", + " <div class="folium-map" id="map_1363a1a7a6772887a56e33105d61a7a6" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_985e5e38d41657e0a041db13c65fc04c = L.map(\n", - " "map_985e5e38d41657e0a041db13c65fc04c",\n", + " var map_1363a1a7a6772887a56e33105d61a7a6 = L.map(\n", + " "map_1363a1a7a6772887a56e33105d61a7a6",\n", " {\n", - " center: [41.946049900000006, -85.6322996],\n", + " center: [41.94594145, -85.6328279],\n", " crs: L.CRS.EPSG3857,\n", " zoom: 10,\n", " zoomControl: true,\n", " preferCanvas: false,\n", " }\n", " );\n", - " L.control.scale().addTo(map_985e5e38d41657e0a041db13c65fc04c);\n", + " L.control.scale().addTo(map_1363a1a7a6772887a56e33105d61a7a6);\n", "\n", " \n", "\n", " \n", " \n", - " var tile_layer_105aec9a92e77f29c9f4c16975414af9 = L.tileLayer(\n", + " var tile_layer_b802a1c1e82d2f4a40e0f764c30670b6 = L.tileLayer(\n", " "https://tile.openstreetmap.org/{z}/{x}/{y}.png",\n", " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", " );\n", " \n", " \n", - " tile_layer_105aec9a92e77f29c9f4c16975414af9.addTo(map_985e5e38d41657e0a041db13c65fc04c);\n", + " tile_layer_b802a1c1e82d2f4a40e0f764c30670b6.addTo(map_1363a1a7a6772887a56e33105d61a7a6);\n", " \n", " \n", - " map_985e5e38d41657e0a041db13c65fc04c.fitBounds(\n", - " [[41.925597, -85.658931], [41.9665028, -85.6056682]],\n", + " map_1363a1a7a6772887a56e33105d61a7a6.fitBounds(\n", + " [[41.9253801, -85.6599876], [41.9665028, -85.6056682]],\n", " {}\n", " );\n", " \n", " \n", - " function geo_json_752bbba6ad7e1a9487ed2629b174b7fe_styler(feature) {\n", + " function geo_json_e66724324d62300b102dc9a9ac6d809e_styler(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"color": "purple", "fillColor": "purple", "fillOpacity": 0.5, "weight": 2};\n", " }\n", " }\n", - " function geo_json_752bbba6ad7e1a9487ed2629b174b7fe_highlighter(feature) {\n", + " function geo_json_e66724324d62300b102dc9a9ac6d809e_highlighter(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.75};\n", " }\n", " }\n", - " function geo_json_752bbba6ad7e1a9487ed2629b174b7fe_pointToLayer(feature, latlng) {\n", + " function geo_json_e66724324d62300b102dc9a9ac6d809e_pointToLayer(feature, latlng) {\n", " var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};\n", " \n", - " let style = geo_json_752bbba6ad7e1a9487ed2629b174b7fe_styler(feature)\n", + " let style = geo_json_e66724324d62300b102dc9a9ac6d809e_styler(feature)\n", " Object.assign(opts, style)\n", " \n", " return new L.CircleMarker(latlng, opts)\n", " }\n", "\n", - " function geo_json_752bbba6ad7e1a9487ed2629b174b7fe_onEachFeature(feature, layer) {\n", + " function geo_json_e66724324d62300b102dc9a9ac6d809e_onEachFeature(feature, layer) {\n", " layer.on({\n", " mouseout: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " geo_json_752bbba6ad7e1a9487ed2629b174b7fe.resetStyle(e.target);\n", + " geo_json_e66724324d62300b102dc9a9ac6d809e.resetStyle(e.target);\n", " }\n", " },\n", " mouseover: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " const highlightStyle = geo_json_752bbba6ad7e1a9487ed2629b174b7fe_highlighter(e.target.feature)\n", + " const highlightStyle = geo_json_e66724324d62300b102dc9a9ac6d809e_highlighter(e.target.feature)\n", " e.target.setStyle(highlightStyle);\n", " }\n", " },\n", " });\n", " };\n", - " var geo_json_752bbba6ad7e1a9487ed2629b174b7fe = L.geoJson(null, {\n", - " onEachFeature: geo_json_752bbba6ad7e1a9487ed2629b174b7fe_onEachFeature,\n", + " var geo_json_e66724324d62300b102dc9a9ac6d809e = L.geoJson(null, {\n", + " onEachFeature: geo_json_e66724324d62300b102dc9a9ac6d809e_onEachFeature,\n", " \n", - " style: geo_json_752bbba6ad7e1a9487ed2629b174b7fe_styler,\n", - " pointToLayer: geo_json_752bbba6ad7e1a9487ed2629b174b7fe_pointToLayer,\n", + " style: geo_json_e66724324d62300b102dc9a9ac6d809e_styler,\n", + " pointToLayer: geo_json_e66724324d62300b102dc9a9ac6d809e_pointToLayer,\n", " });\n", "\n", - " function geo_json_752bbba6ad7e1a9487ed2629b174b7fe_add (data) {\n", - " geo_json_752bbba6ad7e1a9487ed2629b174b7fe\n", + " function geo_json_e66724324d62300b102dc9a9ac6d809e_add (data) {\n", + " geo_json_e66724324d62300b102dc9a9ac6d809e\n", " .addData(data);\n", " }\n", - " geo_json_752bbba6ad7e1a9487ed2629b174b7fe_add({"bbox": [-85.658931, 41.925597, -85.6056682, 41.9665028], "features": [{"bbox": [-85.651611, 41.953639, -85.651361, 41.954233], "geometry": {"coordinates": [[-85.651611, 41.953639], [-85.651361, 41.954233]], "type": "LineString"}, "id": "8", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kerr Road", "oneway": null, "osm_id": 17967640, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.656065, 41.948108, -85.656053, 41.949009], "geometry": {"coordinates": [[-85.656065, 41.948108], [-85.656053, 41.949009]], "type": "LineString"}, "id": "28", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Greenfield Court", "oneway": null, "osm_id": 17964573, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6557398, 41.9295578, -85.6556609, 41.9324981], "geometry": {"coordinates": [[-85.6557398, 41.9324981], [-85.6557276, 41.9321898], [-85.655692, 41.9319228], [-85.6556729, 41.9315833], [-85.6556741, 41.9309979], [-85.6556692, 41.9304605], [-85.6556609, 41.9295578]], "type": "LineString"}, "id": "29", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "Warner Drive", "oneway": null, "osm_id": 884351099, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651459, 41.9269659, -85.6500738, 41.9270207], "geometry": {"coordinates": [[-85.6500738, 41.92697], [-85.6501671, 41.9270097], [-85.6502567, 41.9270207], [-85.6512109, 41.9270103], [-85.651295, 41.9270065], [-85.6513722, 41.9269914], [-85.651459, 41.9269659]], "type": "LineString"}, "id": "32", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": "yes", "osm_id": 221671993, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.658931, 41.948961, -85.651611, 41.953646], "geometry": {"coordinates": [[-85.658931, 41.948961], [-85.658722, 41.949053], [-85.658635, 41.949102], [-85.656713, 41.94919], [-85.655629, 41.9495], [-85.654967, 41.950653], [-85.654458, 41.950987], [-85.654401, 41.951899], [-85.654222, 41.952272], [-85.653874, 41.952584], [-85.653121, 41.95305], [-85.652537, 41.953471], [-85.652072, 41.953646], [-85.651611, 41.953639]], "type": "LineString"}, "id": "43", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962750, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638777, 41.9354971, -85.633205, 41.9452631], "geometry": {"coordinates": [[-85.635178, 41.9356158], [-85.63533, 41.9355886], [-85.6353819, 41.93556], [-85.6353665, 41.9355157], [-85.6353165, 41.9354971], [-85.6352454, 41.9355328], [-85.635178, 41.9356158], [-85.6350184, 41.9357846], [-85.634978, 41.9359448], [-85.6347723, 41.9361523], [-85.6347165, 41.9362667], [-85.6346992, 41.9364312], [-85.634603, 41.9366329], [-85.6345973, 41.9367488], [-85.6345127, 41.9369734], [-85.634478, 41.9371923], [-85.6344838, 41.9373768], [-85.6346242, 41.9375299], [-85.6347723, 41.9376357], [-85.6347607, 41.9377788], [-85.6346204, 41.9379533], [-85.6344184, 41.9380105], [-85.6341627, 41.9380406], [-85.6341205, 41.9380746], [-85.634005, 41.9381679], [-85.6339783, 41.9382273], [-85.63393, 41.9383353], [-85.6338588, 41.9384597], [-85.6336627, 41.9387759], [-85.6335127, 41.9389361], [-85.633403, 41.9391006], [-85.6332973, 41.9393967], [-85.633205, 41.9396742], [-85.6332203, 41.9397772], [-85.6333453, 41.939936], [-85.6333761, 41.9400018], [-85.63328, 41.9402249], [-85.6332357, 41.9403523], [-85.6332838, 41.9405831], [-85.6333643, 41.9408744], [-85.6334394, 41.9410519], [-85.6335815, 41.9411717], [-85.6337478, 41.9412734], [-85.6343174, 41.9415268], [-85.6343886, 41.9417397], [-85.6344407, 41.9418015], [-85.634518, 41.9418301], [-85.6344846, 41.942005], [-85.6345775, 41.9422218], [-85.6348174, 41.94267], [-85.6348607, 41.9427515], [-85.6348813, 41.9427697], [-85.6349035, 41.9427806], [-85.6349306, 41.9427859], [-85.6350017, 41.9427871], [-85.6350342, 41.9427873], [-85.6350609, 41.942791], [-85.6350889, 41.9428043], [-85.635109, 41.9428278], [-85.6351392, 41.9428838], [-85.6351764, 41.9429527], [-85.6352122, 41.9430357], [-85.6352192, 41.943052], [-85.6352297, 41.9430765], [-85.6352908, 41.9432248], [-85.6353139, 41.943253], [-85.6353464, 41.9432757], [-85.6353859, 41.9432898], [-85.6356282, 41.9433182], [-85.6363128, 41.9433373], [-85.6365467, 41.9433779], [-85.6365876, 41.9433968], [-85.6368692, 41.9435265], [-85.637071, 41.943676], [-85.6371184, 41.9437128], [-85.6371856, 41.9437495], [-85.6372608, 41.9437732], [-85.6373938, 41.9437973], [-85.6374505, 41.9438091], [-85.6374857, 41.9438208], [-85.6375269, 41.9438442], [-85.6376164, 41.9439286], [-85.6376372, 41.9439585], [-85.637757, 41.9441311], [-85.6378627, 41.9441622], [-85.6382631, 41.9442724], [-85.6383346, 41.9442912], [-85.6384204, 41.9443137], [-85.6384724, 41.9443605], [-85.6385726, 41.9444506], [-85.638702, 41.9445739], [-85.6387179, 41.9446516], [-85.6387088, 41.9447985], [-85.6387656, 41.9449877], [-85.638777, 41.9451448], [-85.6387088, 41.9452631]], "type": "LineString"}, "id": "50", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972937, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": "3"}, "type": "Feature"}, {"bbox": [-85.6285815, 41.9470656, -85.6283312, 41.9471692], "geometry": {"coordinates": [[-85.6283312, 41.9470656], [-85.6285815, 41.9471692]], "type": "LineString"}, "id": "57", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "residential", "layer": "1", "name": "5th Avenue", "oneway": null, "osm_id": 134150826, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6251442, 41.9605648, -85.6242808, 41.9609203], "geometry": {"coordinates": [[-85.6242808, 41.9606501], [-85.6244356, 41.960705], [-85.6249689, 41.9608957], [-85.6250384, 41.9609203], [-85.6251442, 41.9609031], [-85.6250945, 41.9608344], [-85.6250193, 41.9608095], [-85.6244939, 41.9606183], [-85.6243433, 41.9605648]], "type": "LineString"}, "id": "60", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Arizona Boulevard", "oneway": "yes", "osm_id": 652550706, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624908, 41.947416, -85.615238, 41.947468], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.616136, 41.9474632], [-85.6169481, 41.9474588], [-85.6174371, 41.9474562], [-85.6177206, 41.9474481], [-85.6183715, 41.9474512], [-85.6200878, 41.9474419], [-85.6213182, 41.9474354], [-85.6227578, 41.9474276], [-85.624908, 41.947416]], "type": "LineString"}, "id": "62", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Avenue", "oneway": null, "osm_id": 17964788, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187082, 41.9550001, -85.6181431, 41.9588211], "geometry": {"coordinates": [[-85.6186943, 41.9550001], [-85.618683, 41.9550364], [-85.6186436, 41.9552022], [-85.6185127, 41.9553393], [-85.6182155, 41.9555703], [-85.6182033, 41.955596], [-85.6181431, 41.9557227], [-85.6181613, 41.9560879], [-85.6182372, 41.9563771], [-85.6184059, 41.9566188], [-85.6185905, 41.9568211], [-85.6186116, 41.9568717], [-85.6186688, 41.9570086], [-85.6186766, 41.9577468], [-85.6186924, 41.9581453], [-85.6186996, 41.9585513], [-85.6187082, 41.9588211]], "type": "LineString"}, "id": "67", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": null, "osm_id": 17965913, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6181613, 41.9560851, -85.6177201, 41.9560879], "geometry": {"coordinates": [[-85.6181613, 41.9560879], [-85.6177201, 41.9560851]], "type": "LineString"}, "id": "75", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sturgeon River Road", "oneway": null, "osm_id": 17965854, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627441, 41.9661399, -85.625905, 41.9665028], "geometry": {"coordinates": [[-85.625905, 41.9665028], [-85.6259099, 41.9664085], [-85.6259343, 41.9663141], [-85.625971, 41.966259], [-85.626021, 41.966219], [-85.626102, 41.966175], [-85.6262126, 41.9661508], [-85.6263493, 41.9661399], [-85.6269595, 41.9661399], [-85.6271597, 41.9661471], [-85.6272768, 41.9661689], [-85.627368, 41.966194], [-85.627441, 41.966232]], "type": "LineString"}, "id": "76", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bridgette Drive", "oneway": null, "osm_id": 17967080, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.613438, 41.95164, -85.613396, 41.953677], "geometry": {"coordinates": [[-85.613396, 41.95164], [-85.61341, 41.951919], [-85.613438, 41.953308], [-85.613438, 41.953677]], "type": "LineString"}, "id": "77", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Angell Avenue", "oneway": null, "osm_id": 17966056, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297548, 41.9561476, -85.6297488, 41.9581373], "geometry": {"coordinates": [[-85.6297548, 41.9581373], [-85.6297541, 41.9580741], [-85.6297492, 41.9579231], [-85.6297491, 41.9576616], [-85.6297488, 41.9576394], [-85.6297512, 41.957429], [-85.6297512, 41.9561476]], "type": "LineString"}, "id": "85", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine Street", "oneway": null, "osm_id": 341048353, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297512, 41.955878, -85.627267, 41.95615], "geometry": {"coordinates": [[-85.627267, 41.955878], [-85.627358, 41.9559081], [-85.6275063, 41.9559571], [-85.627751, 41.956038], [-85.6278017, 41.9560522], [-85.627908, 41.956082], [-85.6281089, 41.9561288], [-85.6282, 41.95615], [-85.6294697, 41.9561464], [-85.6297512, 41.9561476]], "type": "LineString"}, "id": "92", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Tulip Lane", "oneway": null, "osm_id": 17964513, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626336, 41.957291, -85.624495, 41.9586443], "geometry": {"coordinates": [[-85.6255197, 41.9586443], [-85.6254209, 41.9586115], [-85.62529, 41.958568], [-85.624962, 41.958453], [-85.624832, 41.958399], [-85.624707, 41.958325], [-85.624636, 41.958251], [-85.624578, 41.95818], [-85.624533, 41.958099], [-85.624507, 41.957985], [-85.624495, 41.957807], [-85.624514, 41.957663], [-85.624577, 41.957593], [-85.6246192, 41.9575723], [-85.624685, 41.95754], [-85.624802, 41.957523], [-85.624996, 41.957524], [-85.625409, 41.957515], [-85.625634, 41.957496], [-85.625832, 41.957453], [-85.626044, 41.957394], [-85.626336, 41.957291]], "type": "LineString"}, "id": "93", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Azaleamum Drive", "oneway": null, "osm_id": 17967809, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6269786, 41.9599637, -85.6250384, 41.9609203], "geometry": {"coordinates": [[-85.6269786, 41.9599637], [-85.6259162, 41.9599711], [-85.6258015, 41.9599861], [-85.6257101, 41.960013], [-85.6256315, 41.9600541], [-85.6255614, 41.9601078], [-85.6255104, 41.9601615], [-85.625453, 41.9602373], [-85.6251449, 41.9607414], [-85.6250945, 41.9608344], [-85.6250384, 41.9609203]], "type": "LineString"}, "id": "94", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Oklahoma Drive", "oneway": null, "osm_id": 203968017, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6331805, 41.96479, -85.633167, 41.9655042], "geometry": {"coordinates": [[-85.633167, 41.96479], [-85.6331805, 41.9655042]], "type": "LineString"}, "id": "95", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Garfield Court", "oneway": "no", "osm_id": 203968023, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333496, 41.9571608, -85.6264337, 41.9574481], "geometry": {"coordinates": [[-85.6264337, 41.9571608], [-85.6265551, 41.9572071], [-85.6266935, 41.9572599], [-85.6269223, 41.9573376], [-85.6271577, 41.9574119], [-85.6272777, 41.957435], [-85.6273887, 41.9574433], [-85.6275317, 41.9574481], [-85.6276806, 41.9574468], [-85.6282582, 41.9574418], [-85.6283101, 41.9574414], [-85.6287871, 41.9574373], [-85.6288456, 41.957435], [-85.6297512, 41.957429], [-85.6308074, 41.9574199], [-85.6309162, 41.957419], [-85.6321178, 41.9574105], [-85.6333496, 41.9573981]], "type": "LineString"}, "id": "99", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Flower Street", "oneway": null, "osm_id": 17965351, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272955, 41.9410331, -85.6272074, 41.9411396], "geometry": {"coordinates": [[-85.6272955, 41.9410331], [-85.6272074, 41.9411396]], "type": "LineString"}, "id": "100", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 378599360, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6335028, 41.9647886, -85.6304211, 41.9649323], "geometry": {"coordinates": [[-85.6335028, 41.9647886], [-85.633167, 41.96479], [-85.6320427, 41.9647947], [-85.6308178, 41.9647993], [-85.6307011, 41.9648138], [-85.6306195, 41.964834], [-85.6305222, 41.9648774], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "101", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "no", "osm_id": 203968018, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186766, 41.9577468, -85.6159142, 41.9577578], "geometry": {"coordinates": [[-85.6186766, 41.9577468], [-85.6159142, 41.9577578]], "type": "LineString"}, "id": "108", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine River Road", "oneway": null, "osm_id": 17965838, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6240991, 41.954708, -85.6238228, 41.9548826], "geometry": {"coordinates": [[-85.6240991, 41.954708], [-85.6239944, 41.9548095], [-85.6238228, 41.9548826]], "type": "LineString"}, "id": "110", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 758296776, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271414, 41.9402001, -85.6271315, 41.9407274], "geometry": {"coordinates": [[-85.6271315, 41.9402001], [-85.6271414, 41.9407274]], "type": "LineString"}, "id": "119", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "residential", "layer": "1", "name": "6th Street", "oneway": null, "osm_id": 134150842, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9361846, -85.617371, 41.936243], "geometry": {"coordinates": [[-85.617371, 41.936243], [-85.6174693, 41.9362424], [-85.6175894, 41.9362418], [-85.6186762, 41.9362357], [-85.6191081, 41.9362259], [-85.619587, 41.9362271], [-85.6200011, 41.9362282], [-85.621122, 41.9362218], [-85.6222867, 41.9362155], [-85.6235312, 41.9362084], [-85.6248039, 41.9362012], [-85.6257389, 41.936196], [-85.6264109, 41.9361922], [-85.627089, 41.9361884], [-85.6277618, 41.9361846]], "type": "LineString"}, "id": "121", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Madison Street", "oneway": null, "osm_id": 17965427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6423202, 41.9361655, -85.642213, 41.940043], "geometry": {"coordinates": [[-85.6423202, 41.9361655], [-85.6423154, 41.9363503], [-85.6423094, 41.936583], [-85.642299, 41.936988], [-85.6422621, 41.9381489], [-85.6422464, 41.9389558], [-85.642244, 41.939081], [-85.6422153, 41.9399715], [-85.642213, 41.940043]], "type": "LineString"}, "id": "124", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 766158515, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478782, 41.9398349, -85.6469804, 41.9408501], "geometry": {"coordinates": [[-85.6469804, 41.9398569], [-85.6470252, 41.9407193], [-85.6470776, 41.9408028], [-85.6472048, 41.9408501], [-85.6477248, 41.9408446], [-85.6478333, 41.9407973], [-85.6478782, 41.940711], [-85.6478296, 41.9398349]], "type": "LineString"}, "id": "126", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Millard Court", "oneway": null, "osm_id": 203968034, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638243, 41.9426234, -85.6370277, 41.943841], "geometry": {"coordinates": [[-85.638243, 41.943674], [-85.638228, 41.943747], [-85.638163, 41.943797], [-85.638089, 41.943832], [-85.637969, 41.943841], [-85.637841, 41.943833], [-85.6376655, 41.9438017], [-85.637342, 41.943734], [-85.637218, 41.943703], [-85.637151, 41.943663], [-85.637118, 41.943615], [-85.6370905, 41.9435511], [-85.6370755, 41.9434705], [-85.6370724, 41.943407], [-85.6370544, 41.9431149], [-85.6370518, 41.9430567], [-85.6370323, 41.9427058], [-85.6370277, 41.9426234]], "type": "LineString"}, "id": "131", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Constantine Street", "oneway": "no", "osm_id": 17967326, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443608, 41.940795, -85.644272, 41.9425645], "geometry": {"coordinates": [[-85.6443608, 41.9425645], [-85.6443561, 41.9424865], [-85.6443453, 41.9423074], [-85.6443102, 41.9417237], [-85.6442868, 41.9413334], [-85.644283, 41.941271], [-85.644272, 41.940795]], "type": "LineString"}, "id": "136", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Erie Street", "oneway": null, "osm_id": 17965125, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632278, 41.9471692, -85.6285815, 41.948613], "geometry": {"coordinates": [[-85.6285815, 41.9471692], [-85.6293702, 41.9474668], [-85.631422, 41.948294], [-85.6321713, 41.9485733], [-85.632278, 41.948613]], "type": "LineString"}, "id": "141", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Avenue", "oneway": null, "osm_id": 134150772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614204, 41.953677, -85.611615, 41.953704], "geometry": {"coordinates": [[-85.611615, 41.953704], [-85.61179, 41.953695], [-85.612232, 41.953685], [-85.613438, 41.953677], [-85.614204, 41.953696]], "type": "LineString"}, "id": "149", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Clausen Avenue", "oneway": null, "osm_id": 17965302, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186996, 41.9585513, -85.6159249, 41.9585901], "geometry": {"coordinates": [[-85.6186996, 41.9585513], [-85.6177383, 41.9585647], [-85.6170514, 41.9585743], [-85.6159249, 41.9585901]], "type": "LineString"}, "id": "175", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Raisin River Road", "oneway": null, "osm_id": 17965476, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6204461, 41.9401485, -85.6204416, 41.9408882], "geometry": {"coordinates": [[-85.6204461, 41.9401485], [-85.6204416, 41.9408882]], "type": "LineString"}, "id": "176", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Whipple Street", "oneway": null, "osm_id": 17964961, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629676, 41.9524346, -85.6295992, 41.95469], "geometry": {"coordinates": [[-85.6295992, 41.9524346], [-85.6296517, 41.952563], [-85.629676, 41.9537314], [-85.6296522, 41.9546072], [-85.62965, 41.95469]], "type": "LineString"}, "id": "177", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine Street", "oneway": null, "osm_id": 17964654, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6082831, 41.9437055, -85.6082658, 41.945652], "geometry": {"coordinates": [[-85.6082658, 41.9437055], [-85.6082831, 41.945652]], "type": "LineString"}, "id": "184", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Winterwood", "oneway": null, "osm_id": 203968005, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348298, 41.964783, -85.6335028, 41.9647886], "geometry": {"coordinates": [[-85.6348298, 41.964783], [-85.6335028, 41.9647886]], "type": "LineString"}, "id": "185", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "yes", "osm_id": 1033167062, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321281, 41.9578611, -85.6318944, 41.9578696], "geometry": {"coordinates": [[-85.6321281, 41.9578611], [-85.6318944, 41.9578696]], "type": "LineString"}, "id": "186", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 776693874, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469955, 41.944059, -85.6469334, 41.9449804], "geometry": {"coordinates": [[-85.6469955, 41.9449804], [-85.6469357, 41.9448568], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "192", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Heather Lane", "oneway": null, "osm_id": 203968029, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644244, 41.9379774, -85.6350366, 41.93819], "geometry": {"coordinates": [[-85.6350366, 41.9379774], [-85.6351743, 41.938083], [-85.6352756, 41.9381382], [-85.6353695, 41.9381676], [-85.6354659, 41.9381805], [-85.63576, 41.9381878], [-85.6363309, 41.9381805], [-85.6374603, 41.9381749], [-85.638682, 41.93819], [-85.639983, 41.938174], [-85.641112, 41.938169], [-85.6418226, 41.9381566], [-85.6422621, 41.9381489], [-85.644244, 41.938142]], "type": "LineString"}, "id": "196", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "King Street", "oneway": null, "osm_id": 17967502, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348317, 41.9439105, -85.6346384, 41.944007], "geometry": {"coordinates": [[-85.6348317, 41.9439105], [-85.6346384, 41.944007]], "type": "LineString"}, "id": "198", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "path", "layer": "1", "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974055, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.612232, 41.951641, -85.612211, 41.953685], "geometry": {"coordinates": [[-85.612216, 41.951641], [-85.612211, 41.951977], [-85.612232, 41.953685]], "type": "LineString"}, "id": "202", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Krum Avenue", "oneway": null, "osm_id": 17967957, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.63928, 41.929221, -85.636746, 41.929222], "geometry": {"coordinates": [[-85.636746, 41.929221], [-85.6376148, 41.929221], [-85.638032, 41.929221], [-85.63921, 41.929222], [-85.63928, 41.929221]], "type": "LineString"}, "id": "203", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wolf Road", "oneway": null, "osm_id": 17965610, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348174, 41.9422218, -85.6344819, 41.94267], "geometry": {"coordinates": [[-85.6348174, 41.94267], [-85.6346557, 41.9426157], [-85.6346294, 41.9425989], [-85.6346084, 41.9425744], [-85.6344938, 41.9423809], [-85.6344819, 41.9423345], [-85.6344856, 41.9422997], [-85.6345102, 41.9422723], [-85.6345775, 41.9422218]], "type": "LineString"}, "id": "209", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972941, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.619255, 41.9567483, -85.6187082, 41.9588211], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6192003, 41.9568176], [-85.6192126, 41.9569001], [-85.6192527, 41.9584292], [-85.619255, 41.9586845], [-85.6192387, 41.9587209], [-85.6191182, 41.9587553], [-85.6188487, 41.9588182], [-85.6187082, 41.9588211]], "type": "LineString"}, "id": "213", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": "yes", "osm_id": 571308436, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6249648, 41.9415903, -85.6238505, 41.9546684], "geometry": {"coordinates": [[-85.6248672, 41.9415903], [-85.624873, 41.942022], [-85.624884, 41.943508], [-85.624882, 41.94382], [-85.6248856, 41.9447242], [-85.624893, 41.945616], [-85.624912, 41.946524], [-85.624908, 41.947416], [-85.624924, 41.9483338], [-85.624937, 41.949237], [-85.6249648, 41.9502122], [-85.6249511, 41.9504121], [-85.6249267, 41.9505432], [-85.6249127, 41.9506181], [-85.624813, 41.950983], [-85.6246225, 41.951591], [-85.624366, 41.9524258], [-85.6241697, 41.9530647], [-85.623908, 41.9539165], [-85.6238903, 41.9540956], [-85.6238829, 41.9542315], [-85.6238886, 41.9543068], [-85.6239033, 41.9544982], [-85.6238505, 41.9546684]], "type": "LineString"}, "id": "214", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wood Street", "oneway": null, "osm_id": 17967092, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477139, 41.9349544, -85.6469648, 41.9398356], "geometry": {"coordinates": [[-85.6477024, 41.9398356], [-85.6477033, 41.939772], [-85.6477109, 41.9391655], [-85.6477139, 41.9389871], [-85.6477095, 41.9388622], [-85.6476602, 41.9386034], [-85.6476398, 41.938534], [-85.6476036, 41.9384423], [-85.6475325, 41.9382996], [-85.6474011, 41.9380961], [-85.6473179, 41.9379604], [-85.6472334, 41.9378237], [-85.6471505, 41.9376626], [-85.6470886, 41.9373589], [-85.6470671, 41.9372371], [-85.6470591, 41.9371653], [-85.6470551, 41.9370246], [-85.6470591, 41.936893], [-85.6470524, 41.9363932], [-85.6470406, 41.9363248], [-85.6470229, 41.9362734], [-85.6469947, 41.9362256], [-85.64698, 41.9361677], [-85.646972, 41.9354016], [-85.6469728, 41.9351882], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "219", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": null, "osm_id": 17965446, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394802, 41.94261, -85.639454, 41.9451962], "geometry": {"coordinates": [[-85.6394548, 41.94261], [-85.6394547, 41.9426899], [-85.6394544, 41.9431246], [-85.639454, 41.943871], [-85.6394802, 41.9451962]], "type": "LineString"}, "id": "220", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Hooker Avenue", "oneway": null, "osm_id": 17965792, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348181, 41.9606811, -85.6321716, 41.9606914], "geometry": {"coordinates": [[-85.6321716, 41.9606811], [-85.6348181, 41.9606914]], "type": "LineString"}, "id": "223", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Barnard Avenue", "oneway": null, "osm_id": 382604729, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6293702, 41.9474668, -85.628469, 41.948674], "geometry": {"coordinates": [[-85.6293702, 41.9474668], [-85.628469, 41.948674]], "type": "LineString"}, "id": "236", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Willow Drive", "oneway": null, "osm_id": 17964531, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624813, 41.950983, -85.620103, 41.9510005], "geometry": {"coordinates": [[-85.620103, 41.951], [-85.6227785, 41.9510005], [-85.6243726, 41.9509868], [-85.624813, 41.950983]], "type": "LineString"}, "id": "242", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "10th Avenue", "oneway": null, "osm_id": 17967535, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62567, 41.92926, -85.624721, 41.929295], "geometry": {"coordinates": [[-85.624721, 41.929278], [-85.625429, 41.92926], [-85.625601, 41.929264], [-85.62567, 41.929295]], "type": "LineString"}, "id": "246", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Union Street", "oneway": null, "osm_id": 17966561, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641583, 41.9521543, -85.63974, 41.95465], "geometry": {"coordinates": [[-85.63974, 41.9521543], [-85.6399012, 41.9523817], [-85.64079, 41.953638], [-85.641583, 41.95465]], "type": "LineString"}, "id": "247", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Rock River Avenue", "oneway": null, "osm_id": 17967763, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469648, 41.9326207, -85.6468995, 41.9349544], "geometry": {"coordinates": [[-85.6469521, 41.9326207], [-85.6469147, 41.9326882], [-85.6469022, 41.9327108], [-85.6468995, 41.9333094], [-85.6469128, 41.9344104], [-85.6469152, 41.9345841], [-85.646913, 41.9347757], [-85.6469116, 41.9348658], [-85.6469156, 41.9349027], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "254", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": "yes", "osm_id": 904632319, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6136071, 41.9547745, -85.6056682, 41.963752], "geometry": {"coordinates": [[-85.610238, 41.9547745], [-85.6102539, 41.9558449], [-85.6102652, 41.9566041], [-85.610325, 41.9568823], [-85.6105644, 41.9571383], [-85.6130784, 41.9590689], [-85.6133328, 41.9593805], [-85.6135946, 41.959948], [-85.6136071, 41.9629372], [-85.6134392, 41.9633182], [-85.6130151, 41.9636073], [-85.6122729, 41.9637125], [-85.6056682, 41.963752]], "type": "LineString"}, "id": "256", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hov Aire Drive", "oneway": null, "osm_id": 203839666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624924, 41.948333, -85.62156, 41.9483338], "geometry": {"coordinates": [[-85.62156, 41.948333], [-85.622761, 41.9483333], [-85.624924, 41.9483338]], "type": "LineString"}, "id": "258", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Avenue", "oneway": null, "osm_id": 17965699, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651587, 41.950958, -85.650247, 41.95096], "geometry": {"coordinates": [[-85.650247, 41.95096], [-85.651587, 41.950958]], "type": "LineString"}, "id": "266", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Church Drive", "oneway": null, "osm_id": 17964869, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651459, 41.9268846, -85.6500738, 41.92697], "geometry": {"coordinates": [[-85.651459, 41.9269659], [-85.6513417, 41.9269141], [-85.6512501, 41.9268925], [-85.6511755, 41.9268846], [-85.650251, 41.9269033], [-85.6501888, 41.9269168], [-85.6500738, 41.92697]], "type": "LineString"}, "id": "268", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": "yes", "osm_id": 17965581, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6388962, 41.9321266, -85.638682, 41.9400864], "geometry": {"coordinates": [[-85.6388962, 41.9321266], [-85.6388769, 41.9327334], [-85.6388737, 41.9328197], [-85.6388308, 41.9339698], [-85.6388186, 41.9350099], [-85.63876, 41.937002], [-85.638682, 41.93819], [-85.6386828, 41.9400864]], "type": "LineString"}, "id": "295", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Hooker Avenue", "oneway": null, "osm_id": 17966878, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636166, 41.947296, -85.6346358, 41.947323], "geometry": {"coordinates": [[-85.6346358, 41.947323], [-85.6351132, 41.9473145], [-85.6353441, 41.9473104], [-85.6354184, 41.9473091], [-85.636166, 41.947296]], "type": "LineString"}, "id": "297", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Prutzman Street", "oneway": null, "osm_id": 17965182, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6362328, 41.953681, -85.634723, 41.9536856], "geometry": {"coordinates": [[-85.634723, 41.953681], [-85.6362328, 41.9536856]], "type": "LineString"}, "id": "298", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Cushman Street", "oneway": null, "osm_id": 17966172, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470381, 41.949197, -85.6458693, 41.9522414], "geometry": {"coordinates": [[-85.6469834, 41.949197], [-85.6470279, 41.9500961], [-85.6470381, 41.950353], [-85.6470162, 41.9504183], [-85.6469634, 41.950515], [-85.6465834, 41.9511252], [-85.64641, 41.9514037], [-85.6463931, 41.9514276], [-85.6460483, 41.9519157], [-85.6458693, 41.9522414]], "type": "LineString"}, "id": "300", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "Webber Avenue", "oneway": null, "osm_id": 17967185, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638174, 41.958292, -85.634763, 41.958313], "geometry": {"coordinates": [[-85.634763, 41.958292], [-85.6350826, 41.958296], [-85.6355981, 41.9583025], [-85.6360278, 41.9583079], [-85.636271, 41.958311], [-85.6366287, 41.9583116], [-85.6370944, 41.9583124], [-85.637483, 41.958313], [-85.6376116, 41.9583124], [-85.638174, 41.95831]], "type": "LineString"}, "id": "303", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Armstrong Boulevard", "oneway": null, "osm_id": 17965468, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634723, 41.953681, -85.6320827, 41.9537069], "geometry": {"coordinates": [[-85.6320827, 41.9537069], [-85.633307, 41.9537], [-85.634723, 41.953681]], "type": "LineString"}, "id": "304", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Cushman Street", "oneway": null, "osm_id": 17964723, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.623571, 41.933232, -85.623501, 41.940124], "geometry": {"coordinates": [[-85.623501, 41.933232], [-85.623511, 41.934216], [-85.6235312, 41.9362084], [-85.6235488, 41.9371726], [-85.6235512, 41.9381718], [-85.6235609, 41.9391301], [-85.623562, 41.9392411], [-85.6235688, 41.9399111], [-85.623571, 41.940124]], "type": "LineString"}, "id": "321", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "9th Street", "oneway": null, "osm_id": 17965088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9351998, -85.6277374, 41.9361846], "geometry": {"coordinates": [[-85.6277618, 41.9361846], [-85.6277374, 41.9351998]], "type": "LineString"}, "id": "322", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Madison Place", "oneway": null, "osm_id": 17964837, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6270441, 41.9321659, -85.62478, 41.932173], "geometry": {"coordinates": [[-85.62478, 41.93217], [-85.625695, 41.932173], [-85.6263674, 41.9321695], [-85.6270441, 41.9321659]], "type": "LineString"}, "id": "324", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pearl Street", "oneway": null, "osm_id": 17966110, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6284109, 41.9268496, -85.6277991, 41.9351953], "geometry": {"coordinates": [[-85.6277991, 41.9268496], [-85.6278389, 41.9273577], [-85.6280779, 41.928322], [-85.6283251, 41.9292335], [-85.628329, 41.930182], [-85.6283399, 41.9311659], [-85.62834, 41.932161], [-85.628365, 41.933177], [-85.628389, 41.934216], [-85.6284109, 41.9351953]], "type": "LineString"}, "id": "325", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Street", "oneway": null, "osm_id": 17967773, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346517, 41.948613, -85.632278, 41.948626], "geometry": {"coordinates": [[-85.632278, 41.948613], [-85.633214, 41.948618], [-85.6336739, 41.9486209], [-85.6339222, 41.9486225], [-85.6346517, 41.948626]], "type": "LineString"}, "id": "327", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Kelsey Street", "oneway": null, "osm_id": 17966581, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632051, 41.9647947, -85.6319408, 41.9656501], "geometry": {"coordinates": [[-85.6320427, 41.9647947], [-85.632051, 41.9654321], [-85.632039, 41.965504], [-85.6320068, 41.9655744], [-85.6319408, 41.9656501]], "type": "LineString"}, "id": "331", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Nixon Lane", "oneway": "no", "osm_id": 203968022, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633274, 41.949893, -85.633258, 41.951159], "geometry": {"coordinates": [[-85.633274, 41.951159], [-85.633258, 41.949893]], "type": "LineString"}, "id": "332", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": "yes", "osm_id": 772835854, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6211299, 41.933254, -85.62111, 41.9381784], "geometry": {"coordinates": [[-85.62111, 41.933254], [-85.6211132, 41.9340341], [-85.6211143, 41.9343139], [-85.621122, 41.9362218], [-85.6211299, 41.9381784]], "type": "LineString"}, "id": "339", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "11th Street", "oneway": null, "osm_id": 17968119, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624937, 41.949237, -85.620087, 41.94924], "geometry": {"coordinates": [[-85.620087, 41.94924], [-85.6210164, 41.9492394], [-85.622769, 41.9492383], [-85.6231422, 41.9492381], [-85.6233971, 41.9492379], [-85.6236306, 41.9492378], [-85.6239144, 41.9492376], [-85.6241492, 41.9492375], [-85.624937, 41.949237]], "type": "LineString"}, "id": "342", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "8th Avenue", "oneway": null, "osm_id": 17965159, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6083939, 41.945652, -85.6082831, 41.9457493], "geometry": {"coordinates": [[-85.6082831, 41.945652], [-85.6083939, 41.9457493]], "type": "LineString"}, "id": "362", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 238879871, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620051, 41.9427278, -85.6194405, 41.9447384], "geometry": {"coordinates": [[-85.6200474, 41.9447384], [-85.620051, 41.94383], [-85.6199689, 41.9432106], [-85.6198622, 41.942836], [-85.6197195, 41.9427278], [-85.61958, 41.9427558], [-85.6194405, 41.9427837]], "type": "LineString"}, "id": "371", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 17964043, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624882, 41.943801, -85.620051, 41.94383], "geometry": {"coordinates": [[-85.620051, 41.94383], [-85.621219, 41.943801], [-85.6213466, 41.9438023], [-85.621812, 41.943807], [-85.624882, 41.94382]], "type": "LineString"}, "id": "373", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "2nd Avenue", "oneway": null, "osm_id": 17965846, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297088, 41.9351902, -85.624792, 41.935214], "geometry": {"coordinates": [[-85.624792, 41.935214], [-85.6257179, 41.9352095], [-85.6264049, 41.9352062], [-85.627053, 41.9352031], [-85.6277374, 41.9351998], [-85.62811, 41.935198], [-85.6284109, 41.9351953], [-85.6290427, 41.9351928], [-85.6297088, 41.9351902]], "type": "LineString"}, "id": "374", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pleasant Street", "oneway": null, "osm_id": 17964767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6303635, 41.9331643, -85.6303478, 41.9341918], "geometry": {"coordinates": [[-85.6303635, 41.9331643], [-85.6303504, 41.9338642], [-85.6303478, 41.9341918]], "type": "LineString"}, "id": "375", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 341657297, "osm_type": "ways_line", "smoothness": null, "surface": "unpaved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310036, 41.9301659, -85.6269, 41.930199], "geometry": {"coordinates": [[-85.6269, 41.930199], [-85.6276777, 41.9301897], [-85.628329, 41.930182], [-85.6296598, 41.9301676], [-85.6303132, 41.9301668], [-85.6310036, 41.9301659]], "type": "LineString"}, "id": "376", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Liberty Street", "oneway": null, "osm_id": 134150818, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310336, 41.929206, -85.630997, 41.9345237], "geometry": {"coordinates": [[-85.630997, 41.929206], [-85.6310036, 41.9301659], [-85.6310103, 41.931148], [-85.6310172, 41.932148], [-85.6310242, 41.9331609], [-85.6310313, 41.9341889], [-85.6310336, 41.9345237]], "type": "LineString"}, "id": "377", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "3rd Street", "oneway": null, "osm_id": 17966084, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6286497, 41.9446764, -85.627629, 41.946498], "geometry": {"coordinates": [[-85.6286375, 41.9446764], [-85.6286497, 41.9453531], [-85.6285942, 41.9454805], [-85.628481, 41.945611], [-85.627629, 41.946498]], "type": "LineString"}, "id": "381", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Garden Street", "oneway": null, "osm_id": 17967561, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6401808, 41.929221, -85.63928, 41.9400712], "geometry": {"coordinates": [[-85.63928, 41.929221], [-85.63935, 41.929396], [-85.6394655, 41.9296875], [-85.6397046, 41.9302911], [-85.6397659, 41.9304665], [-85.6400258, 41.9311016], [-85.640039, 41.931135], [-85.640143, 41.931462], [-85.6401808, 41.9318085], [-85.6401365, 41.9327199], [-85.6401324, 41.9327998], [-85.6400729, 41.9339588], [-85.6400709, 41.9349957], [-85.640003, 41.936988], [-85.639983, 41.938174], [-85.639924, 41.939903], [-85.6399212, 41.9399845], [-85.6399182, 41.9400712]], "type": "LineString"}, "id": "384", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Lincoln Avenue", "oneway": null, "osm_id": 17966039, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6311606, 41.9649323, -85.6304211, 41.9651812], "geometry": {"coordinates": [[-85.6311606, 41.9651699], [-85.6309068, 41.9651812], [-85.6308256, 41.9651723], [-85.6307439, 41.9651492], [-85.6306545, 41.9651145], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "385", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "McKinley Court", "oneway": "no", "osm_id": 203968020, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638243, 41.9426146, -85.6382347, 41.943674], "geometry": {"coordinates": [[-85.6382347, 41.9426146], [-85.6382354, 41.9427058], [-85.6382376, 41.942979], [-85.638243, 41.943674]], "type": "LineString"}, "id": "391", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Andrews Street", "oneway": null, "osm_id": 17967397, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6412224, 41.9317751, -85.6401808, 41.931841], "geometry": {"coordinates": [[-85.6412224, 41.931841], [-85.6410665, 41.9317907], [-85.6409052, 41.9317751], [-85.6403781, 41.931796], [-85.6401808, 41.9318085]], "type": "LineString"}, "id": "414", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Court", "oneway": null, "osm_id": 17967609, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638075, 41.949872, -85.634668, 41.9498803], "geometry": {"coordinates": [[-85.634668, 41.949875], [-85.6354595, 41.9498778], [-85.636188, 41.9498803], [-85.6374092, 41.9498755], [-85.638075, 41.949872]], "type": "LineString"}, "id": "421", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Bennett Street", "oneway": null, "osm_id": 17967208, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6399012, 41.9523817, -85.6392066, 41.9523886], "geometry": {"coordinates": [[-85.6392066, 41.9523886], [-85.6399012, 41.9523817]], "type": "LineString"}, "id": "422", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wheeler Street", "oneway": null, "osm_id": 818299135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6356282, 41.9433182, -85.6354227, 41.9434326], "geometry": {"coordinates": [[-85.6354227, 41.9434326], [-85.6355248, 41.9433702], [-85.6356282, 41.9433182]], "type": "LineString"}, "id": "432", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203988296, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6170655, 41.9585743, -85.6158923, 41.959089], "geometry": {"coordinates": [[-85.6170514, 41.9585743], [-85.6170655, 41.9586731], [-85.6170271, 41.9587457], [-85.61679, 41.9588546], [-85.6167132, 41.9588987], [-85.6165912, 41.9589117], [-85.6163784, 41.9589039], [-85.6162738, 41.9589117], [-85.6161552, 41.958961], [-85.6160506, 41.9590284], [-85.6158923, 41.959089]], "type": "LineString"}, "id": "436", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 907675124, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643219, 41.949261, -85.643195, 41.950829], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.6432033, 41.9498047], [-85.6432121, 41.9503811], [-85.643219, 41.950829]], "type": "LineString"}, "id": "449", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Douglas Avenue", "oneway": null, "osm_id": 379694370, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637473, 41.955919, -85.634726, 41.955921], "geometry": {"coordinates": [[-85.634726, 41.955921], [-85.636276, 41.955919], [-85.637473, 41.95592]], "type": "LineString"}, "id": "452", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Adams Street", "oneway": null, "osm_id": 17967465, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628469, 41.9485589, -85.6278505, 41.9487126], "geometry": {"coordinates": [[-85.628469, 41.948674], [-85.6284447, 41.9486874], [-85.6284179, 41.9486996], [-85.6283829, 41.9487091], [-85.6283303, 41.9487126], [-85.6282638, 41.9487057], [-85.6282112, 41.948697], [-85.6281657, 41.9486796], [-85.6281167, 41.9486596], [-85.6280641, 41.9486423], [-85.6280244, 41.9486249], [-85.6279567, 41.9485971], [-85.6278505, 41.9485589]], "type": "LineString"}, "id": "453", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": null, "oneway": null, "osm_id": 571300380, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622643, 41.940128, -85.622643, 41.940635], "geometry": {"coordinates": [[-85.622643, 41.940128], [-85.622643, 41.940635]], "type": "LineString"}, "id": "457", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Green Street", "oneway": null, "osm_id": 17968113, "osm_type": "ways_line", "smoothness": null, "surface": "compacted", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348319, 41.9614829, -85.630972, 41.961495], "geometry": {"coordinates": [[-85.630972, 41.961495], [-85.631421, 41.961494], [-85.632182, 41.961493], [-85.6338879, 41.9614886], [-85.6348319, 41.9614829]], "type": "LineString"}, "id": "460", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kellogg Avenue", "oneway": null, "osm_id": 17967215, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634726, 41.955921, -85.6333299, 41.9559271], "geometry": {"coordinates": [[-85.6333299, 41.9559271], [-85.6340877, 41.9559238], [-85.634726, 41.955921]], "type": "LineString"}, "id": "462", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Adams Street", "oneway": null, "osm_id": 17967970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642299, 41.936984, -85.640003, 41.936988], "geometry": {"coordinates": [[-85.640003, 41.936988], [-85.641148, 41.936984], [-85.642299, 41.936988]], "type": "LineString"}, "id": "479", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Buck Street", "oneway": null, "osm_id": 17965905, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186924, 41.9581453, -85.61592, 41.9581603], "geometry": {"coordinates": [[-85.6186924, 41.9581453], [-85.61592, 41.9581603]], "type": "LineString"}, "id": "484", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sable River Road", "oneway": null, "osm_id": 17966857, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627401, 41.943496, -85.624884, 41.943509], "geometry": {"coordinates": [[-85.624884, 41.943508], [-85.625191, 41.943509], [-85.627401, 41.943496]], "type": "LineString"}, "id": "485", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "2nd Avenue", "oneway": null, "osm_id": 17965845, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628439, 41.9391345, -85.6284289, 41.940086], "geometry": {"coordinates": [[-85.6284289, 41.9391345], [-85.628439, 41.940086]], "type": "LineString"}, "id": "493", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Street", "oneway": null, "osm_id": 17967776, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644381, 41.943831, -85.639454, 41.943871], "geometry": {"coordinates": [[-85.639454, 41.943871], [-85.640676, 41.943867], [-85.6408071, 41.9438654], [-85.641889, 41.943852], [-85.6420009, 41.943851], [-85.643106, 41.943841], [-85.644381, 41.943831]], "type": "LineString"}, "id": "499", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "French Street", "oneway": null, "osm_id": 17968193, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477466, 41.9458724, -85.6463269, 41.9458902], "geometry": {"coordinates": [[-85.6477466, 41.9458724], [-85.6474022, 41.9458833], [-85.6465402, 41.9458888], [-85.6463269, 41.9458902]], "type": "LineString"}, "id": "500", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sophie Street", "oneway": null, "osm_id": 203968028, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6479747, 41.9440571, -85.6469334, 41.9440825], "geometry": {"coordinates": [[-85.6479747, 41.9440825], [-85.6479167, 41.9440571], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "501", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hannah Street", "oneway": null, "osm_id": 203968025, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310172, 41.932148, -85.6272913, 41.932161], "geometry": {"coordinates": [[-85.6272913, 41.9321591], [-85.6276689, 41.9321598], [-85.62834, 41.932161], [-85.6290302, 41.9321546], [-85.6296791, 41.9321485], [-85.6310172, 41.932148]], "type": "LineString"}, "id": "503", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pearl Street", "oneway": null, "osm_id": 134150774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.617372, 41.9346369, -85.6173018, 41.940161], "geometry": {"coordinates": [[-85.6173018, 41.9346369], [-85.6173384, 41.9356126], [-85.617371, 41.936243], [-85.617337, 41.936299], [-85.617321, 41.936373], [-85.6173562, 41.9366969], [-85.6173635, 41.9377414], [-85.6173696, 41.9381886], [-85.617372, 41.938535], [-85.6173674, 41.9391092], [-85.617363, 41.9396617], [-85.617359, 41.940161]], "type": "LineString"}, "id": "504", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "14th Street", "oneway": null, "osm_id": 17965366, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420148, 41.9425864, -85.6418749, 41.9476126], "geometry": {"coordinates": [[-85.6418749, 41.9425864], [-85.6418758, 41.9426709], [-85.641878, 41.9428637], [-85.641881, 41.9431389], [-85.641889, 41.943852], [-85.641922, 41.945121], [-85.641946, 41.946413], [-85.6419503, 41.9474767], [-85.641957, 41.9475276], [-85.6419798, 41.9475745], [-85.6420148, 41.9476126]], "type": "LineString"}, "id": "521", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Grant Avenue", "oneway": null, "osm_id": 17965444, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6387088, 41.9442912, -85.6375859, 41.9455546], "geometry": {"coordinates": [[-85.6383346, 41.9442912], [-85.6382523, 41.9444134], [-85.6381286, 41.9445969], [-85.6380436, 41.9446706], [-85.6379763, 41.9446963], [-85.6379302, 41.9447564], [-85.6379225, 41.9450825], [-85.6378936, 41.9451712], [-85.6376686, 41.9453185], [-85.6375859, 41.9454544], [-85.6376571, 41.9455245], [-85.6377321, 41.9455546], [-85.6380506, 41.9455301], [-85.6383567, 41.9454039], [-85.6387088, 41.9452631]], "type": "LineString"}, "id": "529", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972938, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333299, 41.955913, -85.630904, 41.9559271], "geometry": {"coordinates": [[-85.6333299, 41.9559271], [-85.6321108, 41.95592], [-85.630904, 41.955913]], "type": "LineString"}, "id": "535", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Adams Street", "oneway": null, "osm_id": 17966214, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321351, 41.9581654, -85.631895, 41.9581691], "geometry": {"coordinates": [[-85.6321351, 41.9581654], [-85.631895, 41.9581691]], "type": "LineString"}, "id": "536", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 776693873, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6251435, 41.9609203, -85.6249415, 41.9614778], "geometry": {"coordinates": [[-85.6251435, 41.9614778], [-85.6249884, 41.9612984], [-85.6249589, 41.9612569], [-85.6249481, 41.9612108], [-85.6249415, 41.961166], [-85.6249466, 41.9611233], [-85.6249598, 41.9610811], [-85.6249846, 41.9610254], [-85.6250025, 41.9609909], [-85.6250384, 41.9609203]], "type": "LineString"}, "id": "552", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "New Jersey Court", "oneway": null, "osm_id": 203968016, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159142, 41.9577578, -85.6153676, 41.9593891], "geometry": {"coordinates": [[-85.6159142, 41.9577578], [-85.615506, 41.957833], [-85.6154119, 41.9578659], [-85.6153676, 41.9579194], [-85.6153786, 41.9582858], [-85.6153786, 41.9587057], [-85.6153897, 41.9591915], [-85.6154119, 41.9593479], [-85.6154783, 41.9593891], [-85.6157358, 41.959364]], "type": "LineString"}, "id": "554", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 907675123, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6466646, 41.9450813, -85.643102, 41.945174], "geometry": {"coordinates": [[-85.643102, 41.945103], [-85.644403, 41.945088], [-85.6452965, 41.9450847], [-85.645486, 41.945084], [-85.6463243, 41.9450817], [-85.6463419, 41.9450817], [-85.6464756, 41.9450813], [-85.6466646, 41.945174]], "type": "LineString"}, "id": "561", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pealer Street", "oneway": null, "osm_id": 379694344, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634668, 41.949875, -85.633258, 41.949893], "geometry": {"coordinates": [[-85.633258, 41.949893], [-85.634668, 41.949875]], "type": "LineString"}, "id": "562", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Bennett Street", "oneway": null, "osm_id": 772835853, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6418749, 41.941316, -85.641825, 41.9425864], "geometry": {"coordinates": [[-85.641825, 41.941316], [-85.641838, 41.941556], [-85.6418683, 41.9424016], [-85.641872, 41.9425043], [-85.6418749, 41.9425864]], "type": "LineString"}, "id": "564", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Grant Avenue", "oneway": null, "osm_id": 17965749, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634767, 41.959009, -85.630935, 41.959037], "geometry": {"coordinates": [[-85.630935, 41.959037], [-85.63137, 41.959033], [-85.6321505, 41.9590251], [-85.6329563, 41.9590221], [-85.634315, 41.959017], [-85.634767, 41.959009]], "type": "LineString"}, "id": "574", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Morris Avenue", "oneway": null, "osm_id": 17964793, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357554, 41.9361657, -85.6344047, 41.9395496], "geometry": {"coordinates": [[-85.6344047, 41.9395496], [-85.6344894, 41.938975], [-85.6345227, 41.9382009], [-85.6345671, 41.9381816], [-85.6350366, 41.9379774], [-85.6350681, 41.937909], [-85.6352147, 41.9375903], [-85.6351503, 41.937307], [-85.635142, 41.9372317], [-85.6351181, 41.9370157], [-85.6351235, 41.9368481], [-85.6352844, 41.9364211], [-85.6357554, 41.9361657]], "type": "LineString"}, "id": "577", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Thomas Street", "oneway": null, "osm_id": 170995908, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637732, 41.929221, -85.636746, 41.932761], "geometry": {"coordinates": [[-85.636746, 41.929221], [-85.636791, 41.929363], [-85.6374708, 41.9311633], [-85.6375975, 41.9314987], [-85.637669, 41.931667], [-85.637728, 41.931901], [-85.637724, 41.932187], [-85.637732, 41.932761]], "type": "LineString"}, "id": "579", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Constantine Street", "oneway": null, "osm_id": 17964497, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631591, 41.934167, -85.623511, 41.934218], "geometry": {"coordinates": [[-85.623511, 41.934216], [-85.624782, 41.934218], [-85.625688, 41.934214], [-85.6264034, 41.9342098], [-85.627055, 41.934206], [-85.6278177, 41.9342117], [-85.628389, 41.934216], [-85.6290391, 41.9342067], [-85.6296991, 41.9341973], [-85.6303478, 41.9341918], [-85.6310313, 41.9341889], [-85.631591, 41.934167]], "type": "LineString"}, "id": "582", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "State Street", "oneway": null, "osm_id": 17968171, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633274, 41.951159, -85.6304857, 41.9511969], "geometry": {"coordinates": [[-85.6304857, 41.9511945], [-85.6308395, 41.9511969], [-85.6320505, 41.951174], [-85.633274, 41.951159]], "type": "LineString"}, "id": "583", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Armitage Street", "oneway": null, "osm_id": 17967386, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443023, 41.932672, -85.6442279, 41.9363623], "geometry": {"coordinates": [[-85.644228, 41.932672], [-85.644228, 41.9327325], [-85.6442279, 41.9328387], [-85.6442477, 41.9339216], [-85.6442915, 41.9349794], [-85.6442957, 41.9354807], [-85.6443023, 41.9362837], [-85.6442999, 41.9363623]], "type": "LineString"}, "id": "587", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Erie Avenue", "oneway": null, "osm_id": 78480220, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637685, 41.934223, -85.636834, 41.934223], "geometry": {"coordinates": [[-85.637685, 41.934223], [-85.636834, 41.934223]], "type": "LineString"}, "id": "588", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Swartz Street", "oneway": null, "osm_id": 17964970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297342, 41.9400783, -85.627127, 41.940086], "geometry": {"coordinates": [[-85.627127, 41.940086], [-85.6272188, 41.9400832], [-85.627263, 41.940082], [-85.628439, 41.940086], [-85.6296113, 41.940079], [-85.6297342, 41.9400783]], "type": "LineString"}, "id": "605", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Street", "oneway": null, "osm_id": 17967751, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637483, 41.9486, -85.637113, 41.958313], "geometry": {"coordinates": [[-85.637113, 41.9486], [-85.6373958, 41.9489943], [-85.6374012, 41.9493523], [-85.6374067, 41.9497099], [-85.6374092, 41.9498755], [-85.637412, 41.9511359], [-85.637432, 41.952399], [-85.637452, 41.953665], [-85.6374593, 41.9545754], [-85.63746, 41.954658], [-85.6374608, 41.9547361], [-85.637473, 41.95592], [-85.6374721, 41.9560979], [-85.6374707, 41.9563685], [-85.637468, 41.956906], [-85.637483, 41.958313]], "type": "LineString"}, "id": "609", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Maple Street", "oneway": null, "osm_id": 17965097, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644466, 41.9425645, -85.6443608, 41.949246], "geometry": {"coordinates": [[-85.6443608, 41.9425645], [-85.6443622, 41.942653], [-85.6443702, 41.9431535], [-85.644381, 41.943831], [-85.644403, 41.945088], [-85.6444166, 41.9463259], [-85.644417, 41.946364], [-85.644429, 41.947633], [-85.6444365, 41.9479609], [-85.6444419, 41.9481952], [-85.6444506, 41.9485732], [-85.644466, 41.949246]], "type": "LineString"}, "id": "610", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Erie Street", "oneway": null, "osm_id": 17966729, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6431031, 41.94001, -85.643056, 41.9425754], "geometry": {"coordinates": [[-85.643056, 41.94001], [-85.6430624, 41.9405521], [-85.6430697, 41.9411732], [-85.643071, 41.941288], [-85.6430868, 41.9419198], [-85.6430981, 41.9423756], [-85.6431031, 41.9425754]], "type": "LineString"}, "id": "625", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 17966327, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6283312, 41.946498, -85.620072, 41.9470656], "geometry": {"coordinates": [[-85.620072, 41.946538], [-85.622721, 41.946535], [-85.624912, 41.946524], [-85.627629, 41.946498], [-85.6281401, 41.9469632], [-85.6282451, 41.9470314], [-85.6283312, 41.9470656]], "type": "LineString"}, "id": "634", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Avenue", "oneway": null, "osm_id": 17967603, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636279, 41.9536856, -85.6362328, 41.958311], "geometry": {"coordinates": [[-85.6362328, 41.9536856], [-85.6362358, 41.9545823], [-85.636236, 41.954656], [-85.6362388, 41.9547432], [-85.636276, 41.955919], [-85.6362782, 41.9566334], [-85.636279, 41.956901], [-85.636271, 41.958311]], "type": "LineString"}, "id": "637", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Street", "oneway": null, "osm_id": 385299769, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633287, 41.952426, -85.6295992, 41.9524688], "geometry": {"coordinates": [[-85.6295992, 41.9524346], [-85.6297681, 41.9524688], [-85.630275, 41.952461], [-85.630855, 41.952452], [-85.6320668, 41.9524531], [-85.633287, 41.952426]], "type": "LineString"}, "id": "640", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Wheeler Street", "oneway": null, "osm_id": 17967573, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644417, 41.946364, -85.641946, 41.946413], "geometry": {"coordinates": [[-85.641946, 41.946413], [-85.642185, 41.946411], [-85.643148, 41.946389], [-85.644417, 41.946364]], "type": "LineString"}, "id": "641", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Yauney Street", "oneway": null, "osm_id": 17965353, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637255, 41.940104, -85.633405, 41.9419564], "geometry": {"coordinates": [[-85.6358044, 41.9419514], [-85.6353886, 41.9419564], [-85.6352709, 41.9419441], [-85.6351843, 41.9419225], [-85.6350991, 41.9418921], [-85.6349439, 41.94176], [-85.6348391, 41.9416651], [-85.6346921, 41.9415489], [-85.6345862, 41.9414958], [-85.634476, 41.9414524], [-85.6338528, 41.9412282], [-85.6337312, 41.9411799], [-85.6336412, 41.941124], [-85.6335786, 41.9410619], [-85.6335358, 41.9409867], [-85.6334823, 41.9408547], [-85.633434, 41.9406778], [-85.633407, 41.9404582], [-85.633405, 41.9403452], [-85.6334276, 41.9402703], [-85.6334711, 41.9402064], [-85.6335473, 41.9401531], [-85.6336484, 41.9401261], [-85.6337802, 41.9401143], [-85.6345653, 41.9401078], [-85.6346806, 41.9401088], [-85.6350634, 41.9401122], [-85.6352544, 41.9401138], [-85.6355277, 41.9401162], [-85.635779, 41.9401184], [-85.6369542, 41.9401113], [-85.637255, 41.940104]], "type": "LineString"}, "id": "651", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 17966942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627403, 41.941035, -85.6269868, 41.9446899], "geometry": {"coordinates": [[-85.6269868, 41.941035], [-85.6272074, 41.9411396], [-85.6272566, 41.9411991], [-85.627295, 41.941304], [-85.627352, 41.94148], [-85.62737, 41.942261], [-85.6273949, 41.9432543], [-85.627401, 41.943496], [-85.627403, 41.943625], [-85.6274028, 41.9436719], [-85.6273993, 41.9446899]], "type": "LineString"}, "id": "653", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Middle Street", "oneway": null, "osm_id": 17964989, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629998, 41.9409278, -85.6270633, 41.9446689], "geometry": {"coordinates": [[-85.6299942, 41.9446689], [-85.6299948, 41.9445812], [-85.629998, 41.944078], [-85.629972, 41.943927], [-85.6299489, 41.9437872], [-85.629692, 41.943136], [-85.6295818, 41.9429178], [-85.6295123, 41.9427401], [-85.629472, 41.942578], [-85.629444, 41.942414], [-85.6294175, 41.9422323], [-85.629391, 41.94205], [-85.629369, 41.941858], [-85.6293419, 41.9417168], [-85.6293102, 41.9416173], [-85.629275, 41.9415768], [-85.629233, 41.941549], [-85.6291835, 41.9415244], [-85.6290357, 41.9414799], [-85.6272955, 41.9410331], [-85.6270633, 41.9409278]], "type": "LineString"}, "id": "656", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Drive", "oneway": null, "osm_id": 17965305, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634776, 41.959834, -85.6321612, 41.959859], "geometry": {"coordinates": [[-85.6321612, 41.959859], [-85.634776, 41.959834]], "type": "LineString"}, "id": "660", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Burke Avenue", "oneway": null, "osm_id": 17965196, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6304211, 41.9649323, -85.6302268, 41.965951], "geometry": {"coordinates": [[-85.6302318, 41.965951], [-85.6302304, 41.9657359], [-85.6302268, 41.9652189], [-85.6302539, 41.9651405], [-85.6302889, 41.9650625], [-85.6303472, 41.9649931], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "661", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kennedy Boulevard", "oneway": "no", "osm_id": 203968019, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614642, 41.951639, -85.614204, 41.953696], "geometry": {"coordinates": [[-85.614617, 41.951639], [-85.61463, 41.951852], [-85.614642, 41.953436], [-85.6146, 41.953551], [-85.614487, 41.95363], [-85.614354, 41.953672], [-85.614204, 41.953696]], "type": "LineString"}, "id": "665", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Orchard Drive", "oneway": null, "osm_id": 17965156, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6397719, 41.9638513, -85.634832, 41.9638663], "geometry": {"coordinates": [[-85.6397719, 41.9638513], [-85.638825, 41.963855], [-85.6365609, 41.963866], [-85.6364975, 41.9638663], [-85.6362597, 41.9638663], [-85.6361179, 41.9638663], [-85.634832, 41.963866]], "type": "LineString"}, "id": "669", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Clifton Drive", "oneway": null, "osm_id": 17965733, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346384, 41.944007, -85.6345563, 41.9440523], "geometry": {"coordinates": [[-85.6346384, 41.944007], [-85.6345563, 41.9440523]], "type": "LineString"}, "id": "672", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974056, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453506, 41.9399002, -85.6443194, 41.9400924], "geometry": {"coordinates": [[-85.6443194, 41.9399444], [-85.6443284, 41.9400333], [-85.6443897, 41.9400924], [-85.6452278, 41.9400901], [-85.6453449, 41.9400053], [-85.6453506, 41.9399002]], "type": "LineString"}, "id": "677", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 203968032, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394548, 41.940078, -85.6393662, 41.94261], "geometry": {"coordinates": [[-85.6393662, 41.940078], [-85.639402, 41.941344], [-85.6394516, 41.9425322], [-85.6394548, 41.94261]], "type": "LineString"}, "id": "679", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Hooker Avenue", "oneway": null, "osm_id": 17966879, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637424, 41.938692, -85.6357638, 41.9387029], "geometry": {"coordinates": [[-85.637424, 41.938692], [-85.6357638, 41.9387029]], "type": "LineString"}, "id": "680", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Lafayette Street", "oneway": null, "osm_id": 17966229, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637113, 41.947382, -85.636163, 41.9486], "geometry": {"coordinates": [[-85.636163, 41.947382], [-85.637113, 41.9486]], "type": "LineString"}, "id": "682", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Rock River Avenue", "oneway": null, "osm_id": 17967764, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6390493, 41.9523857, -85.634686, 41.952415], "geometry": {"coordinates": [[-85.634686, 41.952415], [-85.636233, 41.952398], [-85.637432, 41.952399], [-85.638661, 41.952386], [-85.6390493, 41.9523857]], "type": "LineString"}, "id": "683", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Wheeler Street", "oneway": null, "osm_id": 17966975, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480185, 41.9447787, -85.6463238, 41.9458902], "geometry": {"coordinates": [[-85.6480185, 41.9447787], [-85.6475593, 41.9448337], [-85.6469955, 41.9449804], [-85.6469512, 41.9450063], [-85.6466646, 41.945174], [-85.6464255, 41.9454662], [-85.6463238, 41.9457504], [-85.6463269, 41.9458902]], "type": "LineString"}, "id": "684", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Heather Lane", "oneway": null, "osm_id": 203968027, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6385705, 41.9511217, -85.634686, 41.9511591], "geometry": {"coordinates": [[-85.634686, 41.951158], [-85.6362059, 41.9511457], [-85.637412, 41.9511359], [-85.6384444, 41.9511217], [-85.6385191, 41.9511347], [-85.6385705, 41.9511591]], "type": "LineString"}, "id": "700", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Armitage Street", "oneway": null, "osm_id": 17966118, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627629, 41.946498, -85.626843, 41.947333], "geometry": {"coordinates": [[-85.627629, 41.946498], [-85.626843, 41.947333]], "type": "LineString"}, "id": "701", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "John Glenn Court", "oneway": null, "osm_id": 17966061, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641825, 41.941316, -85.6370124, 41.9413618], "geometry": {"coordinates": [[-85.6370124, 41.9413618], [-85.6382188, 41.9413554], [-85.639402, 41.941344], [-85.6406381, 41.9413339], [-85.641825, 41.941316]], "type": "LineString"}, "id": "702", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Street", "oneway": null, "osm_id": 17966102, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650247, 41.950953, -85.649086, 41.953213], "geometry": {"coordinates": [[-85.650247, 41.95096], [-85.6500618, 41.9509537], [-85.650041, 41.950953], [-85.649906, 41.950963], [-85.64978, 41.950992], [-85.649703, 41.951036], [-85.649622, 41.951123], [-85.649531, 41.95124], [-85.649445, 41.951394], [-85.6491, 41.951963], [-85.649086, 41.952073], [-85.649099, 41.952167], [-85.649152, 41.952255], [-85.649241, 41.952349], [-85.649974, 41.952969], [-85.6501222, 41.9530714], [-85.650237, 41.953213]], "type": "LineString"}, "id": "709", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Circle Drive", "oneway": null, "osm_id": 17966996, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6257292, 41.929295, -85.62567, 41.93319], "geometry": {"coordinates": [[-85.62567, 41.929295], [-85.625696, 41.929367], [-85.625711, 41.92948], [-85.6257282, 41.9301667], [-85.6257292, 41.9302058], [-85.625711, 41.9311836], [-85.625695, 41.932173], [-85.625694, 41.93319]], "type": "LineString"}, "id": "714", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Street", "oneway": null, "osm_id": 17967211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6374708, 41.9298799, -85.6359052, 41.9312703], "geometry": {"coordinates": [[-85.6359052, 41.9298799], [-85.6363116, 41.930866], [-85.6364884, 41.9310993], [-85.6368065, 41.9312703], [-85.6374708, 41.9311633]], "type": "LineString"}, "id": "715", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Home Street", "oneway": null, "osm_id": 203968035, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628481, 41.945597, -85.615273, 41.945637], "geometry": {"coordinates": [[-85.628481, 41.945611], [-85.624893, 41.945616], [-85.6227157, 41.9456321], [-85.620172, 41.945627], [-85.618327, 41.945607], [-85.617231, 41.945603], [-85.6166335, 41.9456025], [-85.616136, 41.945602], [-85.615453, 41.945597], [-85.615273, 41.945637]], "type": "LineString"}, "id": "718", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "4th Avenue", "oneway": null, "osm_id": 17967107, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6442477, 41.9339216, -85.637688, 41.93398], "geometry": {"coordinates": [[-85.637688, 41.93398], [-85.6388308, 41.9339698], [-85.6400729, 41.9339588], [-85.6412249, 41.9339485], [-85.6423893, 41.9339381], [-85.6442477, 41.9339216]], "type": "LineString"}, "id": "729", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Swartz Street", "oneway": null, "osm_id": 17964972, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621459, 41.9447384, -85.6200474, 41.944756], "geometry": {"coordinates": [[-85.6200474, 41.9447384], [-85.620982, 41.944742], [-85.621459, 41.944756]], "type": "LineString"}, "id": "735", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 17966772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.611615, 41.951686, -85.610989, 41.953704], "geometry": {"coordinates": [[-85.611187, 41.951686], [-85.611087, 41.951741], [-85.611034, 41.951852], [-85.611016, 41.95196], [-85.610989, 41.95328], [-85.611021, 41.953484], [-85.611091, 41.953603], [-85.6112, 41.953661], [-85.611364, 41.953686], [-85.611615, 41.953704]], "type": "LineString"}, "id": "736", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Blossom Drive", "oneway": null, "osm_id": 17964508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624776, 41.933205, -85.620035, 41.933297], "geometry": {"coordinates": [[-85.620035, 41.933297], [-85.620185, 41.933265], [-85.620722, 41.933245], [-85.62111, 41.933254], [-85.6214708, 41.9332507], [-85.6218248, 41.9332474], [-85.623501, 41.933232], [-85.624776, 41.933205]], "type": "LineString"}, "id": "746", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Broadway Street", "oneway": null, "osm_id": 17962489, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333607, 41.952426, -85.633287, 41.9582301], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.633307, 41.9537], [-85.6333107, 41.9545973], [-85.633311, 41.954679], [-85.6333121, 41.954751], [-85.6333181, 41.9551461], [-85.633322, 41.9554048], [-85.6333299, 41.9559271], [-85.6333496, 41.9573981], [-85.6333607, 41.9582301]], "type": "LineString"}, "id": "756", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": null, "osm_id": 775171420, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630997, 41.929206, -85.62663, 41.929251], "geometry": {"coordinates": [[-85.62663, 41.929251], [-85.6283251, 41.9292335], [-85.6296503, 41.9292199], [-85.630997, 41.929206]], "type": "LineString"}, "id": "761", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Union Street", "oneway": null, "osm_id": 17966558, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348313, 41.9647886, -85.6335028, 41.9648771], "geometry": {"coordinates": [[-85.6335028, 41.9647886], [-85.6337013, 41.9648173], [-85.633889, 41.9648572], [-85.6340232, 41.9648731], [-85.6348313, 41.9648771]], "type": "LineString"}, "id": "766", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "yes", "osm_id": 1033167061, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62478, 41.925597, -85.624703, 41.933205], "geometry": {"coordinates": [[-85.624703, 41.925597], [-85.624716, 41.927359], [-85.624721, 41.929278], [-85.624741, 41.93019], [-85.62475, 41.93119], [-85.62478, 41.93217], [-85.624776, 41.933205]], "type": "LineString"}, "id": "767", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 17966211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638694, 41.9511591, -85.6385705, 41.954649], "geometry": {"coordinates": [[-85.6385705, 41.9511591], [-85.6385961, 41.9511842], [-85.6386095, 41.9512214], [-85.638661, 41.952386], [-85.638654, 41.953665], [-85.6386912, 41.9545803], [-85.638694, 41.954649]], "type": "LineString"}, "id": "769", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Oak Street", "oneway": null, "osm_id": 17965149, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191709, 41.9567483, -85.6186116, 41.9568717], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6186116, 41.9568717]], "type": "LineString"}, "id": "770", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 1056815666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6276, 41.937412, -85.627101, 41.9402001], "geometry": {"coordinates": [[-85.6276, 41.937412], [-85.627451, 41.937549], [-85.627375, 41.937618], [-85.627278, 41.937728], [-85.627199, 41.937842], [-85.627141, 41.937981], [-85.627109, 41.938153], [-85.627101, 41.938699], [-85.6271023, 41.9391445], [-85.627127, 41.940086], [-85.6271315, 41.9402001]], "type": "LineString"}, "id": "784", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Street", "oneway": null, "osm_id": 17966740, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6320827, 41.9537069, -85.628639, 41.9537314], "geometry": {"coordinates": [[-85.628639, 41.953725], [-85.6290597, 41.953725], [-85.629083, 41.953725], [-85.629676, 41.9537314], [-85.6302752, 41.9537226], [-85.6302845, 41.9537225], [-85.6308677, 41.9537139], [-85.6320827, 41.9537069]], "type": "LineString"}, "id": "803", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Cushman Street", "oneway": null, "osm_id": 17966787, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6497648, 41.9269716, -85.6497553, 41.9277635], "geometry": {"coordinates": [[-85.6497648, 41.9269716], [-85.6497605, 41.9273083], [-85.6497593, 41.9274166], [-85.6497574, 41.9275806], [-85.6497553, 41.9277635]], "type": "LineString"}, "id": "812", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "KDF Drive", "oneway": null, "osm_id": 259782253, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6358136, 41.9381878, -85.63576, 41.9427625], "geometry": {"coordinates": [[-85.63576, 41.9381878], [-85.6357638, 41.9387029], [-85.635779, 41.9401184], [-85.6357953, 41.9411097], [-85.6357985, 41.9413906], [-85.6357991, 41.9414384], [-85.6357992, 41.9414854], [-85.6358037, 41.9418913], [-85.6358044, 41.9419514], [-85.6358088, 41.9423413], [-85.6358125, 41.9426692], [-85.6358127, 41.9426829], [-85.6358136, 41.9427625]], "type": "LineString"}, "id": "833", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Spring Street", "oneway": null, "osm_id": 237686060, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614617, 41.951639, -85.611187, 41.951686], "geometry": {"coordinates": [[-85.611187, 41.951686], [-85.611323, 41.951653], [-85.611892, 41.951642], [-85.612216, 41.951641], [-85.613111, 41.951639], [-85.613396, 41.95164], [-85.614221, 41.95164], [-85.614617, 41.951639]], "type": "LineString"}, "id": "842", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bates Avenue", "oneway": null, "osm_id": 17965307, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453358, 41.9442455, -85.6451333, 41.9444995], "geometry": {"coordinates": [[-85.6453358, 41.9444995], [-85.6453333, 41.9444205], [-85.6452123, 41.9442501], [-85.6451333, 41.9442455]], "type": "LineString"}, "id": "847", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 314867415, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187338, 41.9547339, -85.6186943, 41.9550001], "geometry": {"coordinates": [[-85.6186943, 41.9550001], [-85.6187338, 41.9549561], [-85.6187301, 41.9547339]], "type": "LineString"}, "id": "853", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": "yes", "osm_id": 1068082269, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.611651, 41.953704, -85.611615, 41.954761], "geometry": {"coordinates": [[-85.611615, 41.953704], [-85.611636, 41.953938], [-85.611651, 41.954761]], "type": "LineString"}, "id": "856", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Blossom Drive", "oneway": null, "osm_id": 17964507, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186943, 41.9547335, -85.6186424, 41.9550001], "geometry": {"coordinates": [[-85.6186424, 41.9547335], [-85.6186457, 41.9549562], [-85.6186943, 41.9550001]], "type": "LineString"}, "id": "858", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": "yes", "osm_id": 1068082268, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644429, 41.9476126, -85.6420148, 41.9476567], "geometry": {"coordinates": [[-85.6420148, 41.9476126], [-85.642067, 41.9476391], [-85.6421288, 41.9476532], [-85.6422024, 41.9476567], [-85.6432019, 41.9476499], [-85.644429, 41.947633]], "type": "LineString"}, "id": "862", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pierson Street", "oneway": null, "osm_id": 17967618, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469648, 41.93494, -85.636516, 41.935036], "geometry": {"coordinates": [[-85.636516, 41.935036], [-85.6376468, 41.9350232], [-85.6388186, 41.9350099], [-85.6400709, 41.9349957], [-85.6412214, 41.9349827], [-85.6423509, 41.934974], [-85.6442915, 41.9349794], [-85.6448698, 41.934969], [-85.6454067, 41.9349594], [-85.6455841, 41.9349562], [-85.6457364, 41.9349534], [-85.645849, 41.9349514], [-85.6464864, 41.93494], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "870", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hill Street", "oneway": null, "osm_id": 17965641, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336824, 41.9437132, -85.6333999, 41.9439899], "geometry": {"coordinates": [[-85.6333999, 41.9437132], [-85.6334771, 41.9437888], [-85.6336824, 41.9439899]], "type": "LineString"}, "id": "874", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Drive", "oneway": null, "osm_id": 17967752, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62575, 41.93319, -85.625688, 41.938166], "geometry": {"coordinates": [[-85.625694, 41.93319], [-85.625688, 41.934214], [-85.6257179, 41.9352095], [-85.6257389, 41.936196], [-85.6257369, 41.9371694], [-85.6257465, 41.9377376], [-85.62575, 41.937945], [-85.62574, 41.938059], [-85.62569, 41.938166]], "type": "LineString"}, "id": "875", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Street", "oneway": null, "osm_id": 379694409, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.615273, 41.945637, -85.615188, 41.947468], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.615208, 41.946468], [-85.615188, 41.945796], [-85.615212, 41.945701], [-85.615273, 41.945637]], "type": "LineString"}, "id": "876", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Evans Street", "oneway": null, "osm_id": 17964647, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6470403, 41.9326207, -85.6469521, 41.9349544], "geometry": {"coordinates": [[-85.6469648, 41.9349544], [-85.6470349, 41.9349027], [-85.6470403, 41.9348658], [-85.6470391, 41.9347799], [-85.6470377, 41.934581], [-85.6470336, 41.9344224], [-85.6470323, 41.9342522], [-85.6470323, 41.9333044], [-85.6470376, 41.9327138], [-85.6470139, 41.932688], [-85.6469521, 41.9326207]], "type": "LineString"}, "id": "880", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Health Parkway", "oneway": "yes", "osm_id": 904632318, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458319, 41.9398831, -85.6453514, 41.9412425], "geometry": {"coordinates": [[-85.645806, 41.9398831], [-85.6458319, 41.9411841], [-85.6457458, 41.9412425], [-85.6454506, 41.9412421], [-85.6453514, 41.9412419]], "type": "LineString"}, "id": "887", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Matthew Drive", "oneway": null, "osm_id": 203968033, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.647423, 41.9458833, -85.6474022, 41.9471251], "geometry": {"coordinates": [[-85.647423, 41.9471251], [-85.6474211, 41.9470126], [-85.6474185, 41.9468536], [-85.6474165, 41.9467381], [-85.6474159, 41.9467008], [-85.6474022, 41.9458833]], "type": "LineString"}, "id": "888", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bentwaters Avenue", "oneway": null, "osm_id": 203968030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643071, 41.941288, -85.641825, 41.941316], "geometry": {"coordinates": [[-85.643071, 41.941288], [-85.6427798, 41.9412945], [-85.6418494, 41.9413154], [-85.641825, 41.941316]], "type": "LineString"}, "id": "896", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Street", "oneway": "yes", "osm_id": 204000205, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6354227, 41.943052, -85.6349641, 41.9438906], "geometry": {"coordinates": [[-85.6353859, 41.9432898], [-85.6354227, 41.9434326], [-85.635271, 41.943654], [-85.6352657, 41.9437437], [-85.635277, 41.94378], [-85.635271, 41.9438195], [-85.6351563, 41.9438906], [-85.6351384, 41.9438882], [-85.6351514, 41.9438034], [-85.6351237, 41.9436641], [-85.6351498, 41.9436108], [-85.6351058, 41.9435345], [-85.6349641, 41.9432051], [-85.6349658, 41.9431481], [-85.6350081, 41.9431287], [-85.6350021, 41.9431107], [-85.6352192, 41.943052]], "type": "LineString"}, "id": "902", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203972940, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382347, 41.9400924, -85.6381941, 41.9426146], "geometry": {"coordinates": [[-85.6381941, 41.9400924], [-85.6382188, 41.9413554], [-85.6382337, 41.9425383], [-85.6382347, 41.9426146]], "type": "LineString"}, "id": "918", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Andrews Street", "oneway": null, "osm_id": 17967315, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469334, 41.9425427, -85.6469154, 41.944059], "geometry": {"coordinates": [[-85.6469154, 41.9425427], [-85.6469164, 41.942623], [-85.6469224, 41.9431332], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "925", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Benjamin Drive", "oneway": null, "osm_id": 203968024, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6406588, 41.9400627, -85.6406114, 41.942601], "geometry": {"coordinates": [[-85.6406114, 41.9400627], [-85.6406381, 41.9413339], [-85.6406574, 41.9425183], [-85.6406588, 41.942601]], "type": "LineString"}, "id": "938", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Lincoln Avenue", "oneway": null, "osm_id": 17966041, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6345671, 41.9379656, -85.6339783, 41.9382273], "geometry": {"coordinates": [[-85.6339783, 41.9382273], [-85.6339905, 41.9380467], [-85.6340346, 41.9379718], [-85.6341022, 41.9379656], [-85.6341449, 41.9380056], [-85.6341205, 41.9380746], [-85.6342104, 41.9380985], [-85.6343181, 41.9381645], [-85.6345113, 41.9381598], [-85.6345671, 41.9381816]], "type": "LineString"}, "id": "940", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6359415, 41.9439899, -85.6336824, 41.9459797], "geometry": {"coordinates": [[-85.6336824, 41.9439899], [-85.6338478, 41.9441519], [-85.6341246, 41.9443913], [-85.635094, 41.9451026], [-85.6351753, 41.9451672], [-85.635374, 41.945325], [-85.635643, 41.945585], [-85.635853, 41.94586], [-85.6359415, 41.9459797]], "type": "LineString"}, "id": "942", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Drive", "oneway": null, "osm_id": 847427777, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351431, 41.9439117, -85.6348853, 41.9439217], "geometry": {"coordinates": [[-85.6351431, 41.9439217], [-85.6348853, 41.9439117]], "type": "LineString"}, "id": "943", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "path", "layer": "1", "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974058, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6384724, 41.9443605, -85.6382523, 41.9444134], "geometry": {"coordinates": [[-85.6382523, 41.9444134], [-85.6384724, 41.9443605]], "type": "LineString"}, "id": "946", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 203972939, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633258, 41.947315, -85.633183, 41.949893], "geometry": {"coordinates": [[-85.633183, 41.947315], [-85.633214, 41.948618], [-85.633258, 41.949893]], "type": "LineString"}, "id": "947", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": null, "osm_id": 17967444, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6424237, 41.9317372, -85.6423202, 41.9361655], "geometry": {"coordinates": [[-85.6424219, 41.9317372], [-85.6424237, 41.9318871], [-85.64242, 41.932699], [-85.6424184, 41.9327641], [-85.6423893, 41.9339381], [-85.6423509, 41.934974], [-85.6423397, 41.9354097], [-85.6423321, 41.9357026], [-85.6423229, 41.9360597], [-85.6423202, 41.9361655]], "type": "LineString"}, "id": "955", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 17966325, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346358, 41.947315, -85.633183, 41.947323], "geometry": {"coordinates": [[-85.633183, 41.947315], [-85.6339169, 41.9473191], [-85.6344097, 41.9473218], [-85.6346358, 41.947323]], "type": "LineString"}, "id": "967", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Prutzman Street", "oneway": null, "osm_id": 17965349, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453514, 41.9412419, -85.644727, 41.9417126], "geometry": {"coordinates": [[-85.644727, 41.941262], [-85.6447421, 41.9416621], [-85.6448419, 41.9417126], [-85.6451269, 41.9417075], [-85.6451545, 41.9416625], [-85.6451706, 41.9412509], [-85.6453514, 41.9412419]], "type": "LineString"}, "id": "972", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962613, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6463243, 41.9448393, -85.646281, 41.9450817], "geometry": {"coordinates": [[-85.6463243, 41.9450817], [-85.6463089, 41.9449953], [-85.646281, 41.9448393]], "type": "LineString"}, "id": "980", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": null, "oneway": null, "osm_id": 314867475, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394655, 41.9296875, -85.6391223, 41.9297465], "geometry": {"coordinates": [[-85.6394655, 41.9296875], [-85.6391223, 41.9297465]], "type": "LineString"}, "id": "982", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": null, "oneway": null, "osm_id": 340939538, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271414, 41.9407274, -85.6269868, 41.941035], "geometry": {"coordinates": [[-85.6271414, 41.9407274], [-85.6271243, 41.9408034], [-85.627101, 41.9408633], [-85.6270633, 41.9409278], [-85.6270257, 41.940981], [-85.6269868, 41.941035]], "type": "LineString"}, "id": "1000", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Street", "oneway": null, "osm_id": 134150833, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637113, 41.9486, -85.6346517, 41.948626], "geometry": {"coordinates": [[-85.6346517, 41.948626], [-85.6351983, 41.9486221], [-85.6352821, 41.9486214], [-85.6354294, 41.9486201], [-85.6361818, 41.9486135], [-85.637113, 41.9486]], "type": "LineString"}, "id": "1005", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Kelsey Street", "oneway": null, "osm_id": 17965856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6319408, 41.9656501, -85.6302304, 41.9657359], "geometry": {"coordinates": [[-85.6302304, 41.9657359], [-85.6316583, 41.9657277], [-85.6317614, 41.9657168], [-85.6318497, 41.9656949], [-85.6319408, 41.9656501]], "type": "LineString"}, "id": "1007", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bush Boulevard", "oneway": "no", "osm_id": 203968021, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637468, 41.956901, -85.636279, 41.956906], "geometry": {"coordinates": [[-85.637468, 41.956906], [-85.636279, 41.956901]], "type": "LineString"}, "id": "1008", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Lyman Street", "oneway": null, "osm_id": 17967437, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6299489, 41.9422477, -85.6264, 41.9437872], "geometry": {"coordinates": [[-85.6264, 41.942263], [-85.62737, 41.942261], [-85.6274266, 41.9422605], [-85.6290399, 41.9422477], [-85.6291216, 41.9423021], [-85.6291778, 41.9423603], [-85.6292288, 41.9424224], [-85.6292595, 41.9424832], [-85.6292782, 41.942568], [-85.6292385, 41.9436111], [-85.6299489, 41.9437872]], "type": "LineString"}, "id": "1012", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "1st Avenue", "oneway": null, "osm_id": 17967539, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622759, 41.951845, -85.620141, 41.951913], "geometry": {"coordinates": [[-85.622759, 41.951845], [-85.622687, 41.951885], [-85.622492, 41.951901], [-85.621032, 41.951913], [-85.620141, 41.951901]], "type": "LineString"}, "id": "1018", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "11th Avenue", "oneway": null, "osm_id": 17964707, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227688, 41.950119, -85.6201059, 41.950132], "geometry": {"coordinates": [[-85.6201059, 41.950132], [-85.6227688, 41.950119]], "type": "LineString"}, "id": "1019", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "9th Avenue", "oneway": null, "osm_id": 17966129, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191709, 41.955596, -85.6182033, 41.9567483], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6191305, 41.9566955], [-85.6189389, 41.9565414], [-85.6188216, 41.9564439], [-85.6187656, 41.9563224], [-85.6187562, 41.9562043], [-85.6187236, 41.9560098], [-85.6188123, 41.9557841], [-85.6188496, 41.9556104], [-85.618838, 41.9555989], [-85.6182033, 41.955596]], "type": "LineString"}, "id": "1022", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 571308438, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620172, 41.9447384, -85.62001, 41.945627], "geometry": {"coordinates": [[-85.620172, 41.945627], [-85.620088, 41.945571], [-85.620051, 41.945505], [-85.62001, 41.94541], [-85.6200474, 41.9447384]], "type": "LineString"}, "id": "1026", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 652967187, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620035, 41.933297, -85.619915, 41.9381814], "geometry": {"coordinates": [[-85.620035, 41.933297], [-85.619945, 41.933378], [-85.619915, 41.933529], [-85.619964, 41.934759], [-85.619972, 41.935062], [-85.6200011, 41.9362282], [-85.620004, 41.936782], [-85.620007, 41.937206], [-85.6200097, 41.9376523], [-85.620013, 41.9381814]], "type": "LineString"}, "id": "1027", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "12th Street", "oneway": null, "osm_id": 17967518, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227785, 41.9447371, -85.6226744, 41.951845], "geometry": {"coordinates": [[-85.6226744, 41.9447371], [-85.6227157, 41.9456321], [-85.622721, 41.946535], [-85.6227578, 41.9474276], [-85.622761, 41.9483333], [-85.622769, 41.9492383], [-85.6227688, 41.950119], [-85.6227785, 41.9510005], [-85.622759, 41.951845]], "type": "LineString"}, "id": "1028", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Washington Street", "oneway": null, "osm_id": 17968192, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62232, 41.9351903, -85.6222684, 41.9381751], "geometry": {"coordinates": [[-85.6222684, 41.9351903], [-85.6222867, 41.9362155], [-85.62232, 41.9381751]], "type": "LineString"}, "id": "1030", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "10th Street", "oneway": null, "osm_id": 17965370, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271604, 41.9262769, -85.6257845, 41.9264872], "geometry": {"coordinates": [[-85.6271604, 41.9262769], [-85.6263206, 41.9263876], [-85.6257845, 41.9264872]], "type": "LineString"}, "id": "1031", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hart Street", "oneway": null, "osm_id": 17967891, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296112, 41.9273547, -85.626047, 41.9273948], "geometry": {"coordinates": [[-85.6296112, 41.9273948], [-85.6295143, 41.9273547], [-85.6278389, 41.9273577], [-85.626047, 41.92737]], "type": "LineString"}, "id": "1032", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Forest Street", "oneway": null, "osm_id": 17965016, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621605, 41.940143, -85.621591, 41.941075], "geometry": {"coordinates": [[-85.621605, 41.940143], [-85.621591, 41.941075]], "type": "LineString"}, "id": "1035", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jackson Street", "oneway": null, "osm_id": 17964489, "osm_type": "ways_line", "smoothness": null, "surface": "compacted", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297512, 41.9273948, -85.6296112, 41.939922], "geometry": {"coordinates": [[-85.6296112, 41.9273948], [-85.6296367, 41.927491], [-85.6296524, 41.928314], [-85.6296503, 41.9292199], [-85.6296598, 41.9301676], [-85.6296694, 41.931157], [-85.6296791, 41.9321485], [-85.6296891, 41.9331674], [-85.6296991, 41.9341973], [-85.6297088, 41.9351902], [-85.6297108, 41.9353939], [-85.6297382, 41.938203], [-85.6297512, 41.9395393], [-85.6297439, 41.939808], [-85.6296235, 41.939922]], "type": "LineString"}, "id": "1037", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "4th Street", "oneway": null, "osm_id": 17965023, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6257292, 41.93019, -85.624741, 41.9302058], "geometry": {"coordinates": [[-85.624741, 41.93019], [-85.6257292, 41.9302058]], "type": "LineString"}, "id": "1038", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Liberty Street", "oneway": null, "osm_id": 17962519, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6269868, 41.941035, -85.624873, 41.942022], "geometry": {"coordinates": [[-85.6269868, 41.941035], [-85.6268752, 41.9411026], [-85.6263984, 41.9413215], [-85.6256839, 41.9416496], [-85.624873, 41.942022]], "type": "LineString"}, "id": "1039", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Drive", "oneway": null, "osm_id": 378599359, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640003, 41.936988, -85.6351181, 41.937038], "geometry": {"coordinates": [[-85.640003, 41.936988], [-85.63876, 41.937002], [-85.637564, 41.937028], [-85.636453, 41.937038], [-85.6351181, 41.9370157]], "type": "LineString"}, "id": "1041", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Buck Street", "oneway": null, "osm_id": 17967780, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310103, 41.931148, -85.62475, 41.93119], "geometry": {"coordinates": [[-85.62475, 41.93119], [-85.625711, 41.9311836], [-85.6263682, 41.9311792], [-85.626888, 41.9311757], [-85.6270379, 41.9311746], [-85.6277007, 41.9311702], [-85.6283399, 41.9311659], [-85.6289931, 41.9311615], [-85.6296694, 41.931157], [-85.6303008, 41.9311528], [-85.6310103, 41.931148]], "type": "LineString"}, "id": "1044", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Michigan Street", "oneway": null, "osm_id": 17967503, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490408, 41.939829, -85.648941, 41.9425185], "geometry": {"coordinates": [[-85.648941, 41.939829], [-85.648947, 41.940048], [-85.6489696, 41.9409351], [-85.648972, 41.941028], [-85.6489867, 41.9413359], [-85.6490095, 41.9418109], [-85.6490317, 41.9422759], [-85.6490355, 41.9424178], [-85.6490408, 41.9425185]], "type": "LineString"}, "id": "1048", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Day Drive", "oneway": null, "osm_id": 17967644, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503194, 41.95096, -85.6502348, 41.954238], "geometry": {"coordinates": [[-85.650264, 41.954238], [-85.650237, 41.953213], [-85.6503194, 41.952225], [-85.6502348, 41.9511025], [-85.650247, 41.95096]], "type": "LineString"}, "id": "1061", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Church Drive", "oneway": null, "osm_id": 17964870, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6451706, 41.9412509, -85.644283, 41.941271], "geometry": {"coordinates": [[-85.6451706, 41.9412509], [-85.644727, 41.941262], [-85.644283, 41.941271]], "type": "LineString"}, "id": "1067", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962736, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370184, 41.9401113, -85.6369542, 41.9411346], "geometry": {"coordinates": [[-85.6369542, 41.9401113], [-85.6369828, 41.9408789], [-85.6370184, 41.9411346]], "type": "LineString"}, "id": "1068", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17963021, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633951, 41.9443666, -85.6317718, 41.946174], "geometry": {"coordinates": [[-85.6317718, 41.9443666], [-85.6318511, 41.9446409], [-85.6319048, 41.9447407], [-85.6319663, 41.9448112], [-85.632055, 41.9449128], [-85.6320913, 41.9449492], [-85.6324841, 41.9453438], [-85.6326558, 41.9454708], [-85.6328435, 41.9455473], [-85.6328885, 41.9455614], [-85.6332888, 41.9456871], [-85.6334199, 41.9457495], [-85.633564, 41.9458519], [-85.6336152, 41.9459804], [-85.633686, 41.946072], [-85.633815, 41.946131], [-85.6338843, 41.9461529], [-85.633951, 41.946174]], "type": "LineString"}, "id": "1070", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Joshua Drive", "oneway": null, "osm_id": 17964996, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633258, 41.949893, -85.6313855, 41.9499125], "geometry": {"coordinates": [[-85.6313855, 41.9499125], [-85.6320344, 41.9499109], [-85.633258, 41.949893]], "type": "LineString"}, "id": "1076", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Bennett Street", "oneway": null, "osm_id": 17967844, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.653554, 41.948114, -85.653537, 41.949065], "geometry": {"coordinates": [[-85.653554, 41.948114], [-85.653537, 41.949065]], "type": "LineString"}, "id": "1079", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pleasant View Court", "oneway": null, "osm_id": 17966284, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651611, 41.9458477, -85.6515735, 41.953639], "geometry": {"coordinates": [[-85.6515905, 41.9458477], [-85.6515806, 41.9460271], [-85.6515735, 41.9461213], [-85.6515753, 41.946257], [-85.651578, 41.946295], [-85.6515825, 41.9475468], [-85.6515836, 41.9478792], [-85.6515855, 41.9484171], [-85.651588, 41.949107], [-85.651587, 41.950958], [-85.651611, 41.953639]], "type": "LineString"}, "id": "1080", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kerr Creek Road", "oneway": null, "osm_id": 17966293, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6541026, 41.9397322, -85.6540885, 41.9429532], "geometry": {"coordinates": [[-85.6540885, 41.9397322], [-85.6540931, 41.9408025], [-85.6540968, 41.9416764], [-85.6541017, 41.9428133], [-85.6541026, 41.9429532]], "type": "LineString"}, "id": "1093", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "South Tolbert Drive", "oneway": null, "osm_id": 628771096, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.64079, 41.953638, -85.6362328, 41.9536856], "geometry": {"coordinates": [[-85.6362328, 41.9536856], [-85.637452, 41.953665], [-85.638654, 41.953665], [-85.6394045, 41.953658], [-85.6398159, 41.9536507], [-85.640532, 41.953638], [-85.64079, 41.953638]], "type": "LineString"}, "id": "1097", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Cushman Street", "oneway": null, "osm_id": 385299770, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634686, 41.952415, -85.633287, 41.952426], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.634686, 41.952415]], "type": "LineString"}, "id": "1106", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Wheeler Street", "oneway": null, "osm_id": 775171419, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633287, 41.951159, -85.633274, 41.952426], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.633274, 41.951159]], "type": "LineString"}, "id": "1107", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": "yes", "osm_id": 772835856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636233, 41.9459797, -85.6359415, 41.9536856], "geometry": {"coordinates": [[-85.6359415, 41.9459797], [-85.636058, 41.946201], [-85.636112, 41.946366], [-85.636143, 41.946551], [-85.6361494, 41.946757], [-85.6361542, 41.946915], [-85.636166, 41.947296], [-85.636163, 41.947382], [-85.6361818, 41.9486135], [-85.6361862, 41.94952], [-85.636188, 41.9498803], [-85.6362059, 41.9511457], [-85.636233, 41.952398], [-85.6362328, 41.9536856]], "type": "LineString"}, "id": "1108", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Street", "oneway": null, "osm_id": 17967183, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640734, 41.942601, -85.6406588, 41.945887], "geometry": {"coordinates": [[-85.6406588, 41.942601], [-85.6406598, 41.9426764], [-85.6406657, 41.943107], [-85.6406695, 41.9433904], [-85.640672, 41.9435717], [-85.640676, 41.943867], [-85.640683, 41.94513], [-85.640734, 41.945887]], "type": "LineString"}, "id": "1109", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Lincoln Avenue", "oneway": null, "osm_id": 17967073, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6351783, 41.9438906, -85.6351431, 41.9439217], "geometry": {"coordinates": [[-85.6351563, 41.9438906], [-85.6351783, 41.9439117], [-85.6351431, 41.9439217]], "type": "LineString"}, "id": "1113", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974054, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630972, 41.950656, -85.630835, 41.9619135], "geometry": {"coordinates": [[-85.630962, 41.9619135], [-85.6309653, 41.961811], [-85.630972, 41.961495], [-85.6309589, 41.960954], [-85.630952, 41.960667], [-85.6309472, 41.9602135], [-85.630935, 41.959037], [-85.6309238, 41.9583889], [-85.6309162, 41.957419], [-85.630904, 41.955913], [-85.6308843, 41.9547669], [-85.630883, 41.954692], [-85.6308815, 41.9545993], [-85.6308677, 41.9537139], [-85.630855, 41.952452], [-85.6308395, 41.9511969], [-85.630835, 41.950656]], "type": "LineString"}, "id": "1127", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Elm Street", "oneway": null, "osm_id": 290758901, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634686, 41.951158, -85.633274, 41.951159], "geometry": {"coordinates": [[-85.633274, 41.951159], [-85.634686, 41.951158]], "type": "LineString"}, "id": "1142", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Armitage Street", "oneway": null, "osm_id": 772835855, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453514, 41.940684, -85.644272, 41.9412419], "geometry": {"coordinates": [[-85.6453514, 41.9412419], [-85.6453371, 41.9407486], [-85.645247, 41.940684], [-85.6443423, 41.9407072], [-85.644272, 41.940795]], "type": "LineString"}, "id": "1148", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 203968031, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636834, 41.934223, -85.6363309, 41.9381805], "geometry": {"coordinates": [[-85.636834, 41.934223], [-85.636786, 41.93429], [-85.636516, 41.935036], [-85.636453, 41.937038], [-85.6363309, 41.9381805]], "type": "LineString"}, "id": "1149", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Spring Street", "oneway": null, "osm_id": 17965836, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467775, 41.9260708, -85.644224, 41.9273627], "geometry": {"coordinates": [[-85.6467775, 41.9260708], [-85.6466255, 41.9261099], [-85.6464931, 41.9261586], [-85.6463216, 41.926241], [-85.6451527, 41.9270506], [-85.6449129, 41.9271733], [-85.6446774, 41.9272583], [-85.6443966, 41.9273397], [-85.644224, 41.9273627]], "type": "LineString"}, "id": "1157", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "TekModo Way", "oneway": null, "osm_id": 1173386266, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6412915, 41.931841, -85.6410939, 41.9400568], "geometry": {"coordinates": [[-85.6412224, 41.931841], [-85.6412907, 41.9319548], [-85.6412915, 41.9327042], [-85.6412869, 41.93279], [-85.6412249, 41.9339485], [-85.6412214, 41.9349827], [-85.641148, 41.936984], [-85.641112, 41.938169], [-85.6410946, 41.9399845], [-85.6410939, 41.9400568]], "type": "LineString"}, "id": "1163", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Grant Avenue", "oneway": null, "osm_id": 17965747, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348853, 41.9439105, -85.6348317, 41.9439117], "geometry": {"coordinates": [[-85.6348853, 41.9439117], [-85.6348317, 41.9439105]], "type": "LineString"}, "id": "1174", "properties": {"__folium_color": "purple", "bridge": null, "highway": "path", "layer": null, "name": "Riverwalk Trail", "oneway": null, "osm_id": 203974057, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296524, 41.928314, -85.6263285, 41.928331], "geometry": {"coordinates": [[-85.6263285, 41.928331], [-85.6280779, 41.928322], [-85.6296524, 41.928314]], "type": "LineString"}, "id": "1175", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bell Street", "oneway": null, "osm_id": 17964630, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480294, 41.9440825, -85.6477466, 41.9458724], "geometry": {"coordinates": [[-85.6477466, 41.9458724], [-85.64793, 41.945805], [-85.6480183, 41.9456719], [-85.6480294, 41.9455996], [-85.6480185, 41.9447787], [-85.6480097, 41.9441136], [-85.6479747, 41.9440825]], "type": "LineString"}, "id": "1179", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Loren Avenue", "oneway": null, "osm_id": 203968026, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6332888, 41.9456871, -85.626832, 41.954677], "geometry": {"coordinates": [[-85.6332888, 41.9456871], [-85.6328948, 41.9462374], [-85.631422, 41.948294], [-85.63102, 41.948805], [-85.6308961, 41.9490425], [-85.630773, 41.949209], [-85.63005, 41.95016], [-85.629423, 41.951016], [-85.629252, 41.951256], [-85.629126, 41.951489], [-85.628991, 41.951704], [-85.628689, 41.952112], [-85.628313, 41.952666], [-85.627687, 41.953529], [-85.627394, 41.953947], [-85.627287, 41.954128], [-85.626832, 41.954677]], "type": "LineString"}, "id": "1181", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Water Street", "oneway": null, "osm_id": 17967730, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6456872, 41.9328206, -85.6455734, 41.9349562], "geometry": {"coordinates": [[-85.6455734, 41.9328206], [-85.6456615, 41.9335502], [-85.6456872, 41.9339626], [-85.6455841, 41.9349562]], "type": "LineString"}, "id": "1185", "properties": {"__folium_color": "purple", "bridge": null, "highway": "track", "layer": null, "name": null, "oneway": null, "osm_id": 203984751, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632182, 41.9490123, -85.6320229, 41.961493], "geometry": {"coordinates": [[-85.632182, 41.961493], [-85.6321716, 41.9606811], [-85.6321612, 41.959859], [-85.6321505, 41.9590251], [-85.6321452, 41.958604], [-85.6321405, 41.9584004], [-85.6321351, 41.9581654], [-85.6321281, 41.9578611], [-85.6321178, 41.9574105], [-85.6321108, 41.95592], [-85.6320962, 41.9547609], [-85.6320952, 41.954685], [-85.6320941, 41.9545984], [-85.6320827, 41.9537069], [-85.6320668, 41.9524531], [-85.6320505, 41.951174], [-85.6320344, 41.9499109], [-85.6320229, 41.9490123]], "type": "LineString"}, "id": "1188", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Walnut Street", "oneway": null, "osm_id": 17965402, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614204, 41.953696, -85.614195, 41.954754], "geometry": {"coordinates": [[-85.614204, 41.953696], [-85.6142, 41.953978], [-85.614195, 41.954754]], "type": "LineString"}, "id": "1192", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Orchard Drive", "oneway": null, "osm_id": 17965151, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272406, 41.9371672, -85.6235488, 41.9371726], "geometry": {"coordinates": [[-85.6235488, 41.9371726], [-85.6247949, 41.9371708], [-85.6257369, 41.9371694], [-85.62642, 41.9371684], [-85.6265186, 41.9371683], [-85.6267423, 41.9371679], [-85.6272406, 41.9371672]], "type": "LineString"}, "id": "1196", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Buck Street", "oneway": null, "osm_id": 17966681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159249, 41.9577578, -85.6157358, 41.959364], "geometry": {"coordinates": [[-85.6159142, 41.9577578], [-85.61592, 41.9581603], [-85.6159249, 41.9585901], [-85.6159249, 41.9589533], [-85.6158923, 41.959089], [-85.6157358, 41.959364]], "type": "LineString"}, "id": "1198", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Manistee River Road", "oneway": null, "osm_id": 17967743, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62569, 41.938166, -85.6173696, 41.9381886], "geometry": {"coordinates": [[-85.6173696, 41.9381886], [-85.6179654, 41.938187], [-85.6189467, 41.9381843], [-85.620013, 41.9381814], [-85.6211299, 41.9381784], [-85.62232, 41.9381751], [-85.6235512, 41.9381718], [-85.6248019, 41.9381684], [-85.62569, 41.938166]], "type": "LineString"}, "id": "1199", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Canal Street", "oneway": null, "osm_id": 17965778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6500738, 41.926056, -85.6467775, 41.926996], "geometry": {"coordinates": [[-85.6500738, 41.92697], [-85.6497648, 41.9269716], [-85.648855, 41.926996], [-85.6486924, 41.9269809], [-85.6485578, 41.9269394], [-85.6484646, 41.926905], [-85.6483545, 41.9268411], [-85.6479012, 41.9264804], [-85.647809, 41.926407], [-85.6474852, 41.9261779], [-85.6473568, 41.9261167], [-85.6471952, 41.9260797], [-85.6469834, 41.926056], [-85.6467775, 41.9260708]], "type": "LineString"}, "id": "1202", "properties": {"__folium_color": "purple", "bridge": null, "highway": "unclassified", "layer": null, "name": "William R Monroe Boulevard", "oneway": null, "osm_id": 221671992, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_e66724324d62300b102dc9a9ac6d809e_add({"bbox": [-85.6599876, 41.9253801, -85.6056682, 41.9665028], "features": [{"bbox": [-85.651611, 41.953639, -85.651361, 41.954233], "geometry": {"coordinates": [[-85.651611, 41.953639], [-85.651361, 41.954233]], "type": "LineString"}, "id": "8", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kerr Road", "oneway": null, "osm_id": 17967640, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6583049, 41.925818, -85.6528255, 41.9270754], "geometry": {"coordinates": [[-85.6583049, 41.925818], [-85.658036, 41.9258811], [-85.6576224, 41.9259888], [-85.657045, 41.9261585], [-85.65602, 41.9264658], [-85.6552159, 41.9267171], [-85.6548131, 41.9268422], [-85.654543, 41.9269223], [-85.6543465, 41.9269728], [-85.6541692, 41.9270133], [-85.6539864, 41.927042], [-85.6537839, 41.927061], [-85.6536326, 41.9270703], [-85.6534371, 41.9270754], [-85.653278, 41.9270676], [-85.6530945, 41.9270556], [-85.6528255, 41.9270544]], "type": "LineString"}, "id": "18", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 17962479, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514226, 41.9425026, -85.6510705, 41.9425113], "geometry": {"coordinates": [[-85.6510705, 41.9425026], [-85.6512697, 41.9425029], [-85.6514226, 41.9425113]], "type": "LineString"}, "id": "24", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 945352905, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.656065, 41.948108, -85.656053, 41.949009], "geometry": {"coordinates": [[-85.656065, 41.948108], [-85.656053, 41.949009]], "type": "LineString"}, "id": "28", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Greenfield Court", "oneway": null, "osm_id": 17964573, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.658931, 41.948961, -85.651611, 41.953646], "geometry": {"coordinates": [[-85.658931, 41.948961], [-85.658722, 41.949053], [-85.658635, 41.949102], [-85.656713, 41.94919], [-85.655629, 41.9495], [-85.654967, 41.950653], [-85.654458, 41.950987], [-85.654401, 41.951899], [-85.654222, 41.952272], [-85.653874, 41.952584], [-85.653121, 41.95305], [-85.652537, 41.953471], [-85.652072, 41.953646], [-85.651611, 41.953639]], "type": "LineString"}, "id": "43", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962750, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6285815, 41.9470656, -85.6283312, 41.9471692], "geometry": {"coordinates": [[-85.6283312, 41.9470656], [-85.6285815, 41.9471692]], "type": "LineString"}, "id": "57", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "residential", "layer": "1", "name": "5th Avenue", "oneway": null, "osm_id": 134150826, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6251442, 41.9605648, -85.6242808, 41.9609203], "geometry": {"coordinates": [[-85.6242808, 41.9606501], [-85.6244356, 41.960705], [-85.6249689, 41.9608957], [-85.6250384, 41.9609203], [-85.6251442, 41.9609031], [-85.6250945, 41.9608344], [-85.6250193, 41.9608095], [-85.6244939, 41.9606183], [-85.6243433, 41.9605648]], "type": "LineString"}, "id": "60", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Arizona Boulevard", "oneway": "yes", "osm_id": 652550706, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624908, 41.947416, -85.615238, 41.947468], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.616136, 41.9474632], [-85.6169481, 41.9474588], [-85.6174371, 41.9474562], [-85.6177206, 41.9474481], [-85.6183715, 41.9474512], [-85.6200878, 41.9474419], [-85.6213182, 41.9474354], [-85.6227578, 41.9474276], [-85.624908, 41.947416]], "type": "LineString"}, "id": "62", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Avenue", "oneway": null, "osm_id": 17964788, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187082, 41.9550001, -85.6181431, 41.9588211], "geometry": {"coordinates": [[-85.6186943, 41.9550001], [-85.618683, 41.9550364], [-85.6186436, 41.9552022], [-85.6185127, 41.9553393], [-85.6182155, 41.9555703], [-85.6182033, 41.955596], [-85.6181431, 41.9557227], [-85.6181613, 41.9560879], [-85.6182372, 41.9563771], [-85.6184059, 41.9566188], [-85.6185905, 41.9568211], [-85.6186116, 41.9568717], [-85.6186688, 41.9570086], [-85.6186766, 41.9577468], [-85.6186924, 41.9581453], [-85.6186996, 41.9585513], [-85.6187082, 41.9588211]], "type": "LineString"}, "id": "67", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": null, "osm_id": 17965913, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180008, 41.954688, -85.6171273, 41.9547595], "geometry": {"coordinates": [[-85.6171273, 41.954688], [-85.6173144, 41.9547258], [-85.6175519, 41.9547459], [-85.6178164, 41.9547595], [-85.6180008, 41.9547387]], "type": "LineString"}, "id": "69", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": "yes", "osm_id": 652550660, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6181613, 41.9560851, -85.6177201, 41.9560879], "geometry": {"coordinates": [[-85.6181613, 41.9560879], [-85.6177201, 41.9560851]], "type": "LineString"}, "id": "75", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sturgeon River Road", "oneway": null, "osm_id": 17965854, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627441, 41.9661399, -85.625905, 41.9665028], "geometry": {"coordinates": [[-85.625905, 41.9665028], [-85.6259099, 41.9664085], [-85.6259343, 41.9663141], [-85.625971, 41.966259], [-85.626021, 41.966219], [-85.626102, 41.966175], [-85.6262126, 41.9661508], [-85.6263493, 41.9661399], [-85.6269595, 41.9661399], [-85.6271597, 41.9661471], [-85.6272768, 41.9661689], [-85.627368, 41.966194], [-85.627441, 41.966232]], "type": "LineString"}, "id": "76", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bridgette Drive", "oneway": null, "osm_id": 17967080, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.613438, 41.95164, -85.613396, 41.953677], "geometry": {"coordinates": [[-85.613396, 41.95164], [-85.61341, 41.951919], [-85.613438, 41.953308], [-85.613438, 41.953677]], "type": "LineString"}, "id": "77", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Angell Avenue", "oneway": null, "osm_id": 17966056, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297548, 41.9561476, -85.6297488, 41.9581373], "geometry": {"coordinates": [[-85.6297548, 41.9581373], [-85.6297541, 41.9580741], [-85.6297492, 41.9579231], [-85.6297491, 41.9576616], [-85.6297488, 41.9576394], [-85.6297512, 41.957429], [-85.6297512, 41.9561476]], "type": "LineString"}, "id": "85", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine Street", "oneway": null, "osm_id": 341048353, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297512, 41.955878, -85.627267, 41.95615], "geometry": {"coordinates": [[-85.627267, 41.955878], [-85.627358, 41.9559081], [-85.6275063, 41.9559571], [-85.627751, 41.956038], [-85.6278017, 41.9560522], [-85.627908, 41.956082], [-85.6281089, 41.9561288], [-85.6282, 41.95615], [-85.6294697, 41.9561464], [-85.6297512, 41.9561476]], "type": "LineString"}, "id": "92", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Tulip Lane", "oneway": null, "osm_id": 17964513, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.626336, 41.957291, -85.624495, 41.9586443], "geometry": {"coordinates": [[-85.6255197, 41.9586443], [-85.6254209, 41.9586115], [-85.62529, 41.958568], [-85.624962, 41.958453], [-85.624832, 41.958399], [-85.624707, 41.958325], [-85.624636, 41.958251], [-85.624578, 41.95818], [-85.624533, 41.958099], [-85.624507, 41.957985], [-85.624495, 41.957807], [-85.624514, 41.957663], [-85.624577, 41.957593], [-85.6246192, 41.9575723], [-85.624685, 41.95754], [-85.624802, 41.957523], [-85.624996, 41.957524], [-85.625409, 41.957515], [-85.625634, 41.957496], [-85.625832, 41.957453], [-85.626044, 41.957394], [-85.626336, 41.957291]], "type": "LineString"}, "id": "93", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Azaleamum Drive", "oneway": null, "osm_id": 17967809, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6269786, 41.9599637, -85.6250384, 41.9609203], "geometry": {"coordinates": [[-85.6269786, 41.9599637], [-85.6259162, 41.9599711], [-85.6258015, 41.9599861], [-85.6257101, 41.960013], [-85.6256315, 41.9600541], [-85.6255614, 41.9601078], [-85.6255104, 41.9601615], [-85.625453, 41.9602373], [-85.6251449, 41.9607414], [-85.6250945, 41.9608344], [-85.6250384, 41.9609203]], "type": "LineString"}, "id": "94", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Oklahoma Drive", "oneway": null, "osm_id": 203968017, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6331805, 41.96479, -85.633167, 41.9655042], "geometry": {"coordinates": [[-85.633167, 41.96479], [-85.6331805, 41.9655042]], "type": "LineString"}, "id": "95", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Garfield Court", "oneway": "no", "osm_id": 203968023, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333496, 41.9571608, -85.6264337, 41.9574481], "geometry": {"coordinates": [[-85.6264337, 41.9571608], [-85.6265551, 41.9572071], [-85.6266935, 41.9572599], [-85.6269223, 41.9573376], [-85.6271577, 41.9574119], [-85.6272777, 41.957435], [-85.6273887, 41.9574433], [-85.6275317, 41.9574481], [-85.6276806, 41.9574468], [-85.6282582, 41.9574418], [-85.6283101, 41.9574414], [-85.6287871, 41.9574373], [-85.6288456, 41.957435], [-85.6297512, 41.957429], [-85.6308074, 41.9574199], [-85.6309162, 41.957419], [-85.6321178, 41.9574105], [-85.6333496, 41.9573981]], "type": "LineString"}, "id": "99", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Flower Street", "oneway": null, "osm_id": 17965351, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272955, 41.9410331, -85.6272074, 41.9411396], "geometry": {"coordinates": [[-85.6272955, 41.9410331], [-85.6272074, 41.9411396]], "type": "LineString"}, "id": "100", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 378599360, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6335028, 41.9647886, -85.6304211, 41.9649323], "geometry": {"coordinates": [[-85.6335028, 41.9647886], [-85.633167, 41.96479], [-85.6320427, 41.9647947], [-85.6308178, 41.9647993], [-85.6307011, 41.9648138], [-85.6306195, 41.964834], [-85.6305222, 41.9648774], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "101", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "no", "osm_id": 203968018, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634729, 41.954667, -85.6244542, 41.9547066], "geometry": {"coordinates": [[-85.634729, 41.954667], [-85.633311, 41.954679], [-85.6320952, 41.954685], [-85.630883, 41.954692], [-85.6302775, 41.954691], [-85.62965, 41.95469], [-85.6294656, 41.9546903], [-85.629067, 41.954691], [-85.627936, 41.954693], [-85.626832, 41.954677], [-85.6244542, 41.9547066]], "type": "LineString"}, "id": "106", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 17966553, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186766, 41.9577468, -85.6159142, 41.9577578], "geometry": {"coordinates": [[-85.6186766, 41.9577468], [-85.6159142, 41.9577578]], "type": "LineString"}, "id": "108", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine River Road", "oneway": null, "osm_id": 17965838, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271414, 41.9402001, -85.6271315, 41.9407274], "geometry": {"coordinates": [[-85.6271315, 41.9402001], [-85.6271414, 41.9407274]], "type": "LineString"}, "id": "119", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "residential", "layer": "1", "name": "6th Street", "oneway": null, "osm_id": 134150842, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9361846, -85.617371, 41.936243], "geometry": {"coordinates": [[-85.617371, 41.936243], [-85.6174693, 41.9362424], [-85.6175894, 41.9362418], [-85.6186762, 41.9362357], [-85.6191081, 41.9362259], [-85.619587, 41.9362271], [-85.6200011, 41.9362282], [-85.621122, 41.9362218], [-85.6222867, 41.9362155], [-85.6235312, 41.9362084], [-85.6248039, 41.9362012], [-85.6257389, 41.936196], [-85.6264109, 41.9361922], [-85.627089, 41.9361884], [-85.6277618, 41.9361846]], "type": "LineString"}, "id": "121", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Madison Street", "oneway": null, "osm_id": 17965427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6423202, 41.9361655, -85.642213, 41.940043], "geometry": {"coordinates": [[-85.6423202, 41.9361655], [-85.6423154, 41.9363503], [-85.6423094, 41.936583], [-85.642299, 41.936988], [-85.6422621, 41.9381489], [-85.6422464, 41.9389558], [-85.642244, 41.939081], [-85.6422153, 41.9399715], [-85.642213, 41.940043]], "type": "LineString"}, "id": "124", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 766158515, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6478782, 41.9398349, -85.6469804, 41.9408501], "geometry": {"coordinates": [[-85.6469804, 41.9398569], [-85.6470252, 41.9407193], [-85.6470776, 41.9408028], [-85.6472048, 41.9408501], [-85.6477248, 41.9408446], [-85.6478333, 41.9407973], [-85.6478782, 41.940711], [-85.6478296, 41.9398349]], "type": "LineString"}, "id": "126", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Millard Court", "oneway": null, "osm_id": 203968034, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638243, 41.9426234, -85.6370277, 41.943841], "geometry": {"coordinates": [[-85.638243, 41.943674], [-85.638228, 41.943747], [-85.638163, 41.943797], [-85.638089, 41.943832], [-85.637969, 41.943841], [-85.637841, 41.943833], [-85.6376655, 41.9438017], [-85.637342, 41.943734], [-85.637218, 41.943703], [-85.637151, 41.943663], [-85.637118, 41.943615], [-85.6370905, 41.9435511], [-85.6370755, 41.9434705], [-85.6370724, 41.943407], [-85.6370544, 41.9431149], [-85.6370518, 41.9430567], [-85.6370323, 41.9427058], [-85.6370277, 41.9426234]], "type": "LineString"}, "id": "131", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Constantine Street", "oneway": "no", "osm_id": 17967326, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6339673, 41.9433877, -85.6336351, 41.9435757], "geometry": {"coordinates": [[-85.6339673, 41.9433877], [-85.6338922, 41.9434328], [-85.6337366, 41.9435193], [-85.6336351, 41.9435757]], "type": "LineString"}, "id": "134", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150811, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443608, 41.940795, -85.644272, 41.9425645], "geometry": {"coordinates": [[-85.6443608, 41.9425645], [-85.6443561, 41.9424865], [-85.6443453, 41.9423074], [-85.6443102, 41.9417237], [-85.6442868, 41.9413334], [-85.644283, 41.941271], [-85.644272, 41.940795]], "type": "LineString"}, "id": "136", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Erie Street", "oneway": null, "osm_id": 17965125, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632278, 41.9471692, -85.6285815, 41.948613], "geometry": {"coordinates": [[-85.6285815, 41.9471692], [-85.6293702, 41.9474668], [-85.631422, 41.948294], [-85.6321713, 41.9485733], [-85.632278, 41.948613]], "type": "LineString"}, "id": "141", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Avenue", "oneway": null, "osm_id": 134150772, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6440766, 41.9543462, -85.6436023, 41.9544262], "geometry": {"coordinates": [[-85.6436023, 41.9544262], [-85.6440766, 41.9543462]], "type": "LineString"}, "id": "145", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "West Hoffman Street", "oneway": null, "osm_id": 134151784, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614204, 41.953677, -85.611615, 41.953704], "geometry": {"coordinates": [[-85.611615, 41.953704], [-85.61179, 41.953695], [-85.612232, 41.953685], [-85.613438, 41.953677], [-85.614204, 41.953696]], "type": "LineString"}, "id": "149", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Clausen Avenue", "oneway": null, "osm_id": 17965302, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642213, 41.940043, -85.637255, 41.940104], "geometry": {"coordinates": [[-85.637255, 41.940104], [-85.6381941, 41.9400924], [-85.6386828, 41.9400864], [-85.6393311, 41.9400784], [-85.6393662, 41.940078], [-85.6399182, 41.9400712], [-85.6406114, 41.9400627], [-85.6410939, 41.9400568], [-85.642213, 41.940043]], "type": "LineString"}, "id": "158", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 379694427, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186996, 41.9585513, -85.6159249, 41.9585901], "geometry": {"coordinates": [[-85.6186996, 41.9585513], [-85.6177383, 41.9585647], [-85.6170514, 41.9585743], [-85.6159249, 41.9585901]], "type": "LineString"}, "id": "175", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Raisin River Road", "oneway": null, "osm_id": 17965476, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6204461, 41.9401485, -85.6204416, 41.9408882], "geometry": {"coordinates": [[-85.6204461, 41.9401485], [-85.6204416, 41.9408882]], "type": "LineString"}, "id": "176", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Whipple Street", "oneway": null, "osm_id": 17964961, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629676, 41.9524346, -85.6295992, 41.95469], "geometry": {"coordinates": [[-85.6295992, 41.9524346], [-85.6296517, 41.952563], [-85.629676, 41.9537314], [-85.6296522, 41.9546072], [-85.62965, 41.95469]], "type": "LineString"}, "id": "177", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pine Street", "oneway": null, "osm_id": 17964654, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6082831, 41.9437055, -85.6082658, 41.945652], "geometry": {"coordinates": [[-85.6082658, 41.9437055], [-85.6082831, 41.945652]], "type": "LineString"}, "id": "184", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Winterwood", "oneway": null, "osm_id": 203968005, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348298, 41.964783, -85.6335028, 41.9647886], "geometry": {"coordinates": [[-85.6348298, 41.964783], [-85.6335028, 41.9647886]], "type": "LineString"}, "id": "185", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "yes", "osm_id": 1033167062, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321281, 41.9578611, -85.6318944, 41.9578696], "geometry": {"coordinates": [[-85.6321281, 41.9578611], [-85.6318944, 41.9578696]], "type": "LineString"}, "id": "186", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 776693874, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469955, 41.944059, -85.6469334, 41.9449804], "geometry": {"coordinates": [[-85.6469955, 41.9449804], [-85.6469357, 41.9448568], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "192", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Heather Lane", "oneway": null, "osm_id": 203968029, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644244, 41.9379774, -85.6350366, 41.93819], "geometry": {"coordinates": [[-85.6350366, 41.9379774], [-85.6351743, 41.938083], [-85.6352756, 41.9381382], [-85.6353695, 41.9381676], [-85.6354659, 41.9381805], [-85.63576, 41.9381878], [-85.6363309, 41.9381805], [-85.6374603, 41.9381749], [-85.638682, 41.93819], [-85.639983, 41.938174], [-85.641112, 41.938169], [-85.6418226, 41.9381566], [-85.6422621, 41.9381489], [-85.644244, 41.938142]], "type": "LineString"}, "id": "196", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "King Street", "oneway": null, "osm_id": 17967502, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.612232, 41.951641, -85.612211, 41.953685], "geometry": {"coordinates": [[-85.612216, 41.951641], [-85.612211, 41.951977], [-85.612232, 41.953685]], "type": "LineString"}, "id": "202", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Krum Avenue", "oneway": null, "osm_id": 17967957, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.63928, 41.929221, -85.636746, 41.929222], "geometry": {"coordinates": [[-85.636746, 41.929221], [-85.6376148, 41.929221], [-85.638032, 41.929221], [-85.63921, 41.929222], [-85.63928, 41.929221]], "type": "LineString"}, "id": "203", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wolf Road", "oneway": null, "osm_id": 17965610, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.619255, 41.9567483, -85.6187082, 41.9588211], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6192003, 41.9568176], [-85.6192126, 41.9569001], [-85.6192527, 41.9584292], [-85.619255, 41.9586845], [-85.6192387, 41.9587209], [-85.6191182, 41.9587553], [-85.6188487, 41.9588182], [-85.6187082, 41.9588211]], "type": "LineString"}, "id": "213", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": "yes", "osm_id": 571308436, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6249648, 41.9415903, -85.6238505, 41.9546684], "geometry": {"coordinates": [[-85.6248672, 41.9415903], [-85.624873, 41.942022], [-85.624884, 41.943508], [-85.624882, 41.94382], [-85.6248856, 41.9447242], [-85.624893, 41.945616], [-85.624912, 41.946524], [-85.624908, 41.947416], [-85.624924, 41.9483338], [-85.624937, 41.949237], [-85.6249648, 41.9502122], [-85.6249511, 41.9504121], [-85.6249267, 41.9505432], [-85.6249127, 41.9506181], [-85.624813, 41.950983], [-85.6246225, 41.951591], [-85.624366, 41.9524258], [-85.6241697, 41.9530647], [-85.623908, 41.9539165], [-85.6238903, 41.9540956], [-85.6238829, 41.9542315], [-85.6238886, 41.9543068], [-85.6239033, 41.9544982], [-85.6238505, 41.9546684]], "type": "LineString"}, "id": "214", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wood Street", "oneway": null, "osm_id": 17967092, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394802, 41.94261, -85.639454, 41.9451962], "geometry": {"coordinates": [[-85.6394548, 41.94261], [-85.6394547, 41.9426899], [-85.6394544, 41.9431246], [-85.639454, 41.943871], [-85.6394802, 41.9451962]], "type": "LineString"}, "id": "220", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Hooker Avenue", "oneway": null, "osm_id": 17965792, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348181, 41.9606811, -85.6321716, 41.9606914], "geometry": {"coordinates": [[-85.6321716, 41.9606811], [-85.6348181, 41.9606914]], "type": "LineString"}, "id": "223", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Barnard Avenue", "oneway": null, "osm_id": 382604729, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6510705, 41.9425026, -85.6489578, 41.9425201], "geometry": {"coordinates": [[-85.6489578, 41.9425201], [-85.6490408, 41.9425185], [-85.6497768, 41.9425122], [-85.6500601, 41.942509], [-85.6504477, 41.9425064], [-85.6506547, 41.9425048], [-85.65092, 41.9425034], [-85.6510705, 41.9425026]], "type": "LineString"}, "id": "233", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 614445260, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6293702, 41.9474668, -85.628469, 41.948674], "geometry": {"coordinates": [[-85.6293702, 41.9474668], [-85.628469, 41.948674]], "type": "LineString"}, "id": "236", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Willow Drive", "oneway": null, "osm_id": 17964531, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346811, 41.9431023, -85.6341901, 41.9432732], "geometry": {"coordinates": [[-85.6346811, 41.9431023], [-85.6342265, 41.9432605], [-85.6341901, 41.9432732]], "type": "LineString"}, "id": "238", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150789, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624813, 41.950983, -85.620103, 41.9510005], "geometry": {"coordinates": [[-85.620103, 41.951], [-85.6227785, 41.9510005], [-85.6243726, 41.9509868], [-85.624813, 41.950983]], "type": "LineString"}, "id": "242", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "10th Avenue", "oneway": null, "osm_id": 17967535, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62567, 41.92926, -85.624721, 41.929295], "geometry": {"coordinates": [[-85.624721, 41.929278], [-85.625429, 41.92926], [-85.625601, 41.929264], [-85.62567, 41.929295]], "type": "LineString"}, "id": "246", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Union Street", "oneway": null, "osm_id": 17966561, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641583, 41.9521543, -85.63974, 41.95465], "geometry": {"coordinates": [[-85.63974, 41.9521543], [-85.6399012, 41.9523817], [-85.64079, 41.953638], [-85.641583, 41.95465]], "type": "LineString"}, "id": "247", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Rock River Avenue", "oneway": null, "osm_id": 17967763, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6136071, 41.9547745, -85.6056682, 41.963752], "geometry": {"coordinates": [[-85.610238, 41.9547745], [-85.6102539, 41.9558449], [-85.6102652, 41.9566041], [-85.610325, 41.9568823], [-85.6105644, 41.9571383], [-85.6130784, 41.9590689], [-85.6133328, 41.9593805], [-85.6135946, 41.959948], [-85.6136071, 41.9629372], [-85.6134392, 41.9633182], [-85.6130151, 41.9636073], [-85.6122729, 41.9637125], [-85.6056682, 41.963752]], "type": "LineString"}, "id": "256", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hov Aire Drive", "oneway": null, "osm_id": 203839666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624924, 41.948333, -85.62156, 41.9483338], "geometry": {"coordinates": [[-85.62156, 41.948333], [-85.622761, 41.9483333], [-85.624924, 41.9483338]], "type": "LineString"}, "id": "258", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Avenue", "oneway": null, "osm_id": 17965699, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344386, 41.9456229, -85.623333, 41.961987], "geometry": {"coordinates": [[-85.6344386, 41.9456229], [-85.6343309, 41.9456978], [-85.633951, 41.946174], [-85.6336698, 41.9465918], [-85.633183, 41.947315], [-85.632278, 41.948613], [-85.6320229, 41.9490123], [-85.6313855, 41.9499125], [-85.6312754, 41.9500612], [-85.630835, 41.950656], [-85.6304857, 41.9511945], [-85.6295992, 41.9524346], [-85.628639, 41.953725], [-85.6279787, 41.9546342], [-85.627936, 41.954693], [-85.627582, 41.95532], [-85.627267, 41.955878], [-85.6268359, 41.9565339], [-85.6264337, 41.9571608], [-85.626336, 41.957291], [-85.6262922, 41.9573635], [-85.6256754, 41.9583862], [-85.6255197, 41.9586443], [-85.6252483, 41.9590965], [-85.624619, 41.960145], [-85.624494, 41.960338], [-85.6243433, 41.9605648], [-85.6242808, 41.9606501], [-85.6233606, 41.961948], [-85.623333, 41.961987]], "type": "LineString"}, "id": "263", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Portage Avenue", "oneway": null, "osm_id": 17966984, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6589146, 41.9257217, -85.6528255, 41.9273054], "geometry": {"coordinates": [[-85.6528255, 41.9270544], [-85.6532775, 41.9271085], [-85.6534176, 41.9271318], [-85.6535343, 41.9271577], [-85.6537209, 41.9272058], [-85.6539271, 41.9272575], [-85.6540503, 41.9272909], [-85.6541646, 41.9273041], [-85.6542955, 41.9273054], [-85.65441, 41.927297], [-85.6545537, 41.9272735], [-85.6546717, 41.9272424], [-85.6547921, 41.9271987], [-85.6549257, 41.927152], [-85.6553677, 41.9269356], [-85.6556482, 41.9267997], [-85.6558515, 41.926712], [-85.6560451, 41.9266312], [-85.6562865, 41.9265401], [-85.6566301, 41.9264212], [-85.6571798, 41.9262547], [-85.657626, 41.9261204], [-85.6576992, 41.9260938], [-85.6583584, 41.9258983], [-85.6585229, 41.9258437], [-85.6589146, 41.9257217]], "type": "LineString"}, "id": "264", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 124014670, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651587, 41.950958, -85.650247, 41.95096], "geometry": {"coordinates": [[-85.650247, 41.95096], [-85.651587, 41.950958]], "type": "LineString"}, "id": "266", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Church Drive", "oneway": null, "osm_id": 17964869, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638694, 41.954649, -85.634729, 41.954667], "geometry": {"coordinates": [[-85.634729, 41.954667], [-85.636236, 41.954656], [-85.63746, 41.954658], [-85.638694, 41.954649]], "type": "LineString"}, "id": "283", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 17965866, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6528255, 41.9269659, -85.651459, 41.9270544], "geometry": {"coordinates": [[-85.651459, 41.9269659], [-85.6516484, 41.9269767], [-85.6519641, 41.9269968], [-85.6523086, 41.9270197], [-85.6528255, 41.9270544]], "type": "LineString"}, "id": "290", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "no", "osm_id": 124014665, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6593087, 41.9255834, -85.6589146, 41.9257217], "geometry": {"coordinates": [[-85.6589146, 41.9257217], [-85.6593087, 41.9255834]], "type": "LineString"}, "id": "292", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 897575549, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6388962, 41.9321266, -85.638682, 41.9400864], "geometry": {"coordinates": [[-85.6388962, 41.9321266], [-85.6388769, 41.9327334], [-85.6388737, 41.9328197], [-85.6388308, 41.9339698], [-85.6388186, 41.9350099], [-85.63876, 41.937002], [-85.638682, 41.93819], [-85.6386828, 41.9400864]], "type": "LineString"}, "id": "295", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Hooker Avenue", "oneway": null, "osm_id": 17966878, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636166, 41.947296, -85.6346358, 41.947323], "geometry": {"coordinates": [[-85.6346358, 41.947323], [-85.6351132, 41.9473145], [-85.6353441, 41.9473104], [-85.6354184, 41.9473091], [-85.636166, 41.947296]], "type": "LineString"}, "id": "297", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Prutzman Street", "oneway": null, "osm_id": 17965182, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6362328, 41.953681, -85.634723, 41.9536856], "geometry": {"coordinates": [[-85.634723, 41.953681], [-85.6362328, 41.9536856]], "type": "LineString"}, "id": "298", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Cushman Street", "oneway": null, "osm_id": 17966172, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638174, 41.958292, -85.634763, 41.958313], "geometry": {"coordinates": [[-85.634763, 41.958292], [-85.6350826, 41.958296], [-85.6355981, 41.9583025], [-85.6360278, 41.9583079], [-85.636271, 41.958311], [-85.6366287, 41.9583116], [-85.6370944, 41.9583124], [-85.637483, 41.958313], [-85.6376116, 41.9583124], [-85.638174, 41.95831]], "type": "LineString"}, "id": "303", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Armstrong Boulevard", "oneway": null, "osm_id": 17965468, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634723, 41.953681, -85.6320827, 41.9537069], "geometry": {"coordinates": [[-85.6320827, 41.9537069], [-85.633307, 41.9537], [-85.634723, 41.953681]], "type": "LineString"}, "id": "304", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Cushman Street", "oneway": null, "osm_id": 17964723, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6436023, 41.9544262, -85.638694, 41.9546557], "geometry": {"coordinates": [[-85.638694, 41.954649], [-85.6394155, 41.9546493], [-85.6398429, 41.954651], [-85.640983, 41.9546557], [-85.641583, 41.95465], [-85.641871, 41.954652], [-85.6421344, 41.9546444], [-85.6428264, 41.9545612], [-85.6433323, 41.9544732], [-85.6436023, 41.9544262]], "type": "LineString"}, "id": "311", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 772282741, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.623571, 41.933232, -85.623501, 41.940124], "geometry": {"coordinates": [[-85.623501, 41.933232], [-85.623511, 41.934216], [-85.6235312, 41.9362084], [-85.6235488, 41.9371726], [-85.6235512, 41.9381718], [-85.6235609, 41.9391301], [-85.623562, 41.9392411], [-85.6235688, 41.9399111], [-85.623571, 41.940124]], "type": "LineString"}, "id": "321", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "9th Street", "oneway": null, "osm_id": 17965088, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9351998, -85.6277374, 41.9361846], "geometry": {"coordinates": [[-85.6277618, 41.9361846], [-85.6277374, 41.9351998]], "type": "LineString"}, "id": "322", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Madison Place", "oneway": null, "osm_id": 17964837, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6270441, 41.9321659, -85.62478, 41.932173], "geometry": {"coordinates": [[-85.62478, 41.93217], [-85.625695, 41.932173], [-85.6263674, 41.9321695], [-85.6270441, 41.9321659]], "type": "LineString"}, "id": "324", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pearl Street", "oneway": null, "osm_id": 17966110, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6284109, 41.9268496, -85.6277991, 41.9351953], "geometry": {"coordinates": [[-85.6277991, 41.9268496], [-85.6278389, 41.9273577], [-85.6280779, 41.928322], [-85.6283251, 41.9292335], [-85.628329, 41.930182], [-85.6283399, 41.9311659], [-85.62834, 41.932161], [-85.628365, 41.933177], [-85.628389, 41.934216], [-85.6284109, 41.9351953]], "type": "LineString"}, "id": "325", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Street", "oneway": null, "osm_id": 17967773, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346517, 41.948613, -85.632278, 41.948626], "geometry": {"coordinates": [[-85.632278, 41.948613], [-85.633214, 41.948618], [-85.6336739, 41.9486209], [-85.6339222, 41.9486225], [-85.6346517, 41.948626]], "type": "LineString"}, "id": "327", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Kelsey Street", "oneway": null, "osm_id": 17966581, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632051, 41.9647947, -85.6319408, 41.9656501], "geometry": {"coordinates": [[-85.6320427, 41.9647947], [-85.632051, 41.9654321], [-85.632039, 41.965504], [-85.6320068, 41.9655744], [-85.6319408, 41.9656501]], "type": "LineString"}, "id": "331", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Nixon Lane", "oneway": "no", "osm_id": 203968022, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633274, 41.949893, -85.633258, 41.951159], "geometry": {"coordinates": [[-85.633274, 41.951159], [-85.633258, 41.949893]], "type": "LineString"}, "id": "332", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": "yes", "osm_id": 772835854, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6211299, 41.933254, -85.62111, 41.9381784], "geometry": {"coordinates": [[-85.62111, 41.933254], [-85.6211132, 41.9340341], [-85.6211143, 41.9343139], [-85.621122, 41.9362218], [-85.6211299, 41.9381784]], "type": "LineString"}, "id": "339", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "11th Street", "oneway": null, "osm_id": 17968119, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624937, 41.949237, -85.620087, 41.94924], "geometry": {"coordinates": [[-85.620087, 41.94924], [-85.6210164, 41.9492394], [-85.622769, 41.9492383], [-85.6231422, 41.9492381], [-85.6233971, 41.9492379], [-85.6236306, 41.9492378], [-85.6239144, 41.9492376], [-85.6241492, 41.9492375], [-85.624937, 41.949237]], "type": "LineString"}, "id": "342", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "8th Avenue", "oneway": null, "osm_id": 17965159, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620172, 41.945627, -85.6177994, 41.9545412], "geometry": {"coordinates": [[-85.620172, 41.945627], [-85.620101, 41.945811], [-85.620081, 41.945937], [-85.620076, 41.9462726], [-85.620072, 41.946538], [-85.6200878, 41.9474419], [-85.620088, 41.94758], [-85.620087, 41.947701], [-85.620087, 41.9487445], [-85.620087, 41.94924], [-85.6201059, 41.950132], [-85.620103, 41.951], [-85.620133, 41.951538], [-85.620141, 41.951901], [-85.62013, 41.952104], [-85.6201163, 41.9522096], [-85.620104, 41.952305], [-85.620073, 41.9524484], [-85.620062, 41.952499], [-85.619993, 41.952702], [-85.619879, 41.952986], [-85.619689, 41.95329], [-85.619508, 41.953521], [-85.619286, 41.953728], [-85.618925, 41.954007], [-85.618638, 41.954189], [-85.61831, 41.954358], [-85.6180137, 41.954474], [-85.6177994, 41.9545412]], "type": "LineString"}, "id": "344", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 17967415, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6083939, 41.945652, -85.6082831, 41.9457493], "geometry": {"coordinates": [[-85.6082831, 41.945652], [-85.6083939, 41.9457493]], "type": "LineString"}, "id": "362", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 238879871, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6355692, 41.9330969, -85.634787, 41.933145], "geometry": {"coordinates": [[-85.6355692, 41.9330969], [-85.6352672, 41.9331314], [-85.634787, 41.933145]], "type": "LineString"}, "id": "365", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Broadway Street", "oneway": null, "osm_id": 134150782, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620051, 41.9427278, -85.6194405, 41.9447384], "geometry": {"coordinates": [[-85.6200474, 41.9447384], [-85.620051, 41.94383], [-85.6199689, 41.9432106], [-85.6198622, 41.942836], [-85.6197195, 41.9427278], [-85.61958, 41.9427558], [-85.6194405, 41.9427837]], "type": "LineString"}, "id": "371", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 17964043, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624882, 41.943801, -85.620051, 41.94383], "geometry": {"coordinates": [[-85.620051, 41.94383], [-85.621219, 41.943801], [-85.6213466, 41.9438023], [-85.621812, 41.943807], [-85.624882, 41.94382]], "type": "LineString"}, "id": "373", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "2nd Avenue", "oneway": null, "osm_id": 17965846, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297088, 41.9351902, -85.624792, 41.935214], "geometry": {"coordinates": [[-85.624792, 41.935214], [-85.6257179, 41.9352095], [-85.6264049, 41.9352062], [-85.627053, 41.9352031], [-85.6277374, 41.9351998], [-85.62811, 41.935198], [-85.6284109, 41.9351953], [-85.6290427, 41.9351928], [-85.6297088, 41.9351902]], "type": "LineString"}, "id": "374", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pleasant Street", "oneway": null, "osm_id": 17964767, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310036, 41.9301659, -85.6269, 41.930199], "geometry": {"coordinates": [[-85.6269, 41.930199], [-85.6276777, 41.9301897], [-85.628329, 41.930182], [-85.6296598, 41.9301676], [-85.6303132, 41.9301668], [-85.6310036, 41.9301659]], "type": "LineString"}, "id": "376", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Liberty Street", "oneway": null, "osm_id": 134150818, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310336, 41.929206, -85.630997, 41.9345237], "geometry": {"coordinates": [[-85.630997, 41.929206], [-85.6310036, 41.9301659], [-85.6310103, 41.931148], [-85.6310172, 41.932148], [-85.6310242, 41.9331609], [-85.6310313, 41.9341889], [-85.6310336, 41.9345237]], "type": "LineString"}, "id": "377", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "3rd Street", "oneway": null, "osm_id": 17966084, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6286497, 41.9446764, -85.627629, 41.946498], "geometry": {"coordinates": [[-85.6286375, 41.9446764], [-85.6286497, 41.9453531], [-85.6285942, 41.9454805], [-85.628481, 41.945611], [-85.627629, 41.946498]], "type": "LineString"}, "id": "381", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Garden Street", "oneway": null, "osm_id": 17967561, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637732, 41.932761, -85.6370124, 41.9413618], "geometry": {"coordinates": [[-85.637732, 41.932761], [-85.637688, 41.93398], [-85.637685, 41.934223], [-85.6376468, 41.9350232], [-85.637564, 41.937028], [-85.6374603, 41.9381749], [-85.637424, 41.938692], [-85.6373321, 41.9394599], [-85.6373179, 41.9395789], [-85.637255, 41.940104], [-85.6370184, 41.9411346], [-85.6370124, 41.9413618]], "type": "LineString"}, "id": "383", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Constantine Street", "oneway": null, "osm_id": 379694418, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6401808, 41.929221, -85.63928, 41.9400712], "geometry": {"coordinates": [[-85.63928, 41.929221], [-85.63935, 41.929396], [-85.6394655, 41.9296875], [-85.6397046, 41.9302911], [-85.6397659, 41.9304665], [-85.6400258, 41.9311016], [-85.640039, 41.931135], [-85.640143, 41.931462], [-85.6401808, 41.9318085], [-85.6401365, 41.9327199], [-85.6401324, 41.9327998], [-85.6400729, 41.9339588], [-85.6400709, 41.9349957], [-85.640003, 41.936988], [-85.639983, 41.938174], [-85.639924, 41.939903], [-85.6399212, 41.9399845], [-85.6399182, 41.9400712]], "type": "LineString"}, "id": "384", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Lincoln Avenue", "oneway": null, "osm_id": 17966039, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6311606, 41.9649323, -85.6304211, 41.9651812], "geometry": {"coordinates": [[-85.6311606, 41.9651699], [-85.6309068, 41.9651812], [-85.6308256, 41.9651723], [-85.6307439, 41.9651492], [-85.6306545, 41.9651145], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "385", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "McKinley Court", "oneway": "no", "osm_id": 203968020, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638243, 41.9426146, -85.6382347, 41.943674], "geometry": {"coordinates": [[-85.6382347, 41.9426146], [-85.6382354, 41.9427058], [-85.6382376, 41.942979], [-85.638243, 41.943674]], "type": "LineString"}, "id": "391", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Andrews Street", "oneway": null, "osm_id": 17967397, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.646656, 41.939869, -85.642213, 41.940043], "geometry": {"coordinates": [[-85.642213, 41.940043], [-85.643056, 41.94001], [-85.6441924, 41.939951], [-85.6443194, 41.9399444], [-85.644384, 41.939941], [-85.6453506, 41.9399002], [-85.6457497, 41.9398834], [-85.645806, 41.9398831], [-85.6461568, 41.9398809], [-85.646656, 41.939869]], "type": "LineString"}, "id": "399", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 382320149, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6412224, 41.9317751, -85.6401808, 41.931841], "geometry": {"coordinates": [[-85.6412224, 41.931841], [-85.6410665, 41.9317907], [-85.6409052, 41.9317751], [-85.6403781, 41.931796], [-85.6401808, 41.9318085]], "type": "LineString"}, "id": "414", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Court", "oneway": null, "osm_id": 17967609, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638075, 41.949872, -85.634668, 41.9498803], "geometry": {"coordinates": [[-85.634668, 41.949875], [-85.6354595, 41.9498778], [-85.636188, 41.9498803], [-85.6374092, 41.9498755], [-85.638075, 41.949872]], "type": "LineString"}, "id": "421", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Bennett Street", "oneway": null, "osm_id": 17967208, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6399012, 41.9523817, -85.6392066, 41.9523886], "geometry": {"coordinates": [[-85.6392066, 41.9523886], [-85.6399012, 41.9523817]], "type": "LineString"}, "id": "422", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Wheeler Street", "oneway": null, "osm_id": 818299135, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6599876, 41.9253801, -85.6593087, 41.9255834], "geometry": {"coordinates": [[-85.6599876, 41.9253801], [-85.6593087, 41.9255834]], "type": "LineString"}, "id": "428", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": null, "osm_id": 1010837499, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6170655, 41.9585743, -85.6158923, 41.959089], "geometry": {"coordinates": [[-85.6170514, 41.9585743], [-85.6170655, 41.9586731], [-85.6170271, 41.9587457], [-85.61679, 41.9588546], [-85.6167132, 41.9588987], [-85.6165912, 41.9589117], [-85.6163784, 41.9589039], [-85.6162738, 41.9589117], [-85.6161552, 41.958961], [-85.6160506, 41.9590284], [-85.6158923, 41.959089]], "type": "LineString"}, "id": "436", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 907675124, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629033, 41.93913, -85.6248366, 41.9391615], "geometry": {"coordinates": [[-85.629033, 41.93913], [-85.6289353, 41.9391307], [-85.6284289, 41.9391345], [-85.6272081, 41.9391437], [-85.6271023, 41.9391445], [-85.6249916, 41.9391603], [-85.6248366, 41.9391615]], "type": "LineString"}, "id": "438", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Mechanic Street", "oneway": null, "osm_id": 17964467, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632801, 41.9436973, -85.6324881, 41.9440586], "geometry": {"coordinates": [[-85.6324881, 41.9436973], [-85.6327269, 41.9439731], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "448", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 847427774, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643219, 41.949261, -85.643195, 41.950829], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.6432033, 41.9498047], [-85.6432121, 41.9503811], [-85.643219, 41.950829]], "type": "LineString"}, "id": "449", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Douglas Avenue", "oneway": null, "osm_id": 379694370, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637473, 41.955919, -85.634726, 41.955921], "geometry": {"coordinates": [[-85.634726, 41.955921], [-85.636276, 41.955919], [-85.637473, 41.95592]], "type": "LineString"}, "id": "452", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Adams Street", "oneway": null, "osm_id": 17967465, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6315778, 41.9443959, -85.6312065, 41.9444675], "geometry": {"coordinates": [[-85.6312065, 41.9444675], [-85.6315778, 41.9443959]], "type": "LineString"}, "id": "454", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "East Michigan Avenue", "oneway": null, "osm_id": 134150802, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622643, 41.940128, -85.622643, 41.940635], "geometry": {"coordinates": [[-85.622643, 41.940128], [-85.622643, 41.940635]], "type": "LineString"}, "id": "457", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Green Street", "oneway": null, "osm_id": 17968113, "osm_type": "ways_line", "smoothness": null, "surface": "compacted", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348319, 41.9614829, -85.630972, 41.961495], "geometry": {"coordinates": [[-85.630972, 41.961495], [-85.631421, 41.961494], [-85.632182, 41.961493], [-85.6338879, 41.9614886], [-85.6348319, 41.9614829]], "type": "LineString"}, "id": "460", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kellogg Avenue", "oneway": null, "osm_id": 17967215, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634726, 41.955921, -85.6333299, 41.9559271], "geometry": {"coordinates": [[-85.6333299, 41.9559271], [-85.6340877, 41.9559238], [-85.634726, 41.955921]], "type": "LineString"}, "id": "462", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Adams Street", "oneway": null, "osm_id": 17967970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6489578, 41.9425201, -85.6487523, 41.942523], "geometry": {"coordinates": [[-85.6487523, 41.942523], [-85.6489578, 41.9425201]], "type": "LineString"}, "id": "477", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 17965146, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.642299, 41.936984, -85.640003, 41.936988], "geometry": {"coordinates": [[-85.640003, 41.936988], [-85.641148, 41.936984], [-85.642299, 41.936988]], "type": "LineString"}, "id": "479", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Buck Street", "oneway": null, "osm_id": 17965905, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186924, 41.9581453, -85.61592, 41.9581603], "geometry": {"coordinates": [[-85.6186924, 41.9581453], [-85.61592, 41.9581603]], "type": "LineString"}, "id": "484", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sable River Road", "oneway": null, "osm_id": 17966857, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627401, 41.943496, -85.624884, 41.943509], "geometry": {"coordinates": [[-85.624884, 41.943508], [-85.625191, 41.943509], [-85.627401, 41.943496]], "type": "LineString"}, "id": "485", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "2nd Avenue", "oneway": null, "osm_id": 17965845, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628439, 41.9391345, -85.6284289, 41.940086], "geometry": {"coordinates": [[-85.6284289, 41.9391345], [-85.628439, 41.940086]], "type": "LineString"}, "id": "493", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Street", "oneway": null, "osm_id": 17967776, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336351, 41.9435757, -85.6333999, 41.9437132], "geometry": {"coordinates": [[-85.6336351, 41.9435757], [-85.6333999, 41.9437132]], "type": "LineString"}, "id": "494", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 847427776, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644381, 41.943831, -85.639454, 41.943871], "geometry": {"coordinates": [[-85.639454, 41.943871], [-85.640676, 41.943867], [-85.6408071, 41.9438654], [-85.641889, 41.943852], [-85.6420009, 41.943851], [-85.643106, 41.943841], [-85.644381, 41.943831]], "type": "LineString"}, "id": "499", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "French Street", "oneway": null, "osm_id": 17968193, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6477466, 41.9458724, -85.6463269, 41.9458902], "geometry": {"coordinates": [[-85.6477466, 41.9458724], [-85.6474022, 41.9458833], [-85.6465402, 41.9458888], [-85.6463269, 41.9458902]], "type": "LineString"}, "id": "500", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Sophie Street", "oneway": null, "osm_id": 203968028, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6479747, 41.9440571, -85.6469334, 41.9440825], "geometry": {"coordinates": [[-85.6479747, 41.9440825], [-85.6479167, 41.9440571], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "501", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hannah Street", "oneway": null, "osm_id": 203968025, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310172, 41.932148, -85.6272913, 41.932161], "geometry": {"coordinates": [[-85.6272913, 41.9321591], [-85.6276689, 41.9321598], [-85.62834, 41.932161], [-85.6290302, 41.9321546], [-85.6296791, 41.9321485], [-85.6310172, 41.932148]], "type": "LineString"}, "id": "503", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pearl Street", "oneway": null, "osm_id": 134150774, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.617372, 41.9346369, -85.6173018, 41.940161], "geometry": {"coordinates": [[-85.6173018, 41.9346369], [-85.6173384, 41.9356126], [-85.617371, 41.936243], [-85.617337, 41.936299], [-85.617321, 41.936373], [-85.6173562, 41.9366969], [-85.6173635, 41.9377414], [-85.6173696, 41.9381886], [-85.617372, 41.938535], [-85.6173674, 41.9391092], [-85.617363, 41.9396617], [-85.617359, 41.940161]], "type": "LineString"}, "id": "504", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "14th Street", "oneway": null, "osm_id": 17965366, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6420148, 41.9425864, -85.6418749, 41.9476126], "geometry": {"coordinates": [[-85.6418749, 41.9425864], [-85.6418758, 41.9426709], [-85.641878, 41.9428637], [-85.641881, 41.9431389], [-85.641889, 41.943852], [-85.641922, 41.945121], [-85.641946, 41.946413], [-85.6419503, 41.9474767], [-85.641957, 41.9475276], [-85.6419798, 41.9475745], [-85.6420148, 41.9476126]], "type": "LineString"}, "id": "521", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Grant Avenue", "oneway": null, "osm_id": 17965444, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6342487, 41.944392, -85.6331258, 41.9454489], "geometry": {"coordinates": [[-85.6331258, 41.944392], [-85.6333716, 41.9446443], [-85.633567, 41.9448266], [-85.6342487, 41.9454489]], "type": "LineString"}, "id": "528", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427770, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333299, 41.955913, -85.630904, 41.9559271], "geometry": {"coordinates": [[-85.6333299, 41.9559271], [-85.6321108, 41.95592], [-85.630904, 41.955913]], "type": "LineString"}, "id": "535", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Adams Street", "oneway": null, "osm_id": 17966214, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321351, 41.9581654, -85.631895, 41.9581691], "geometry": {"coordinates": [[-85.6321351, 41.9581654], [-85.631895, 41.9581691]], "type": "LineString"}, "id": "536", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 776693873, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6324881, 41.9434696, -85.6322909, 41.9436973], "geometry": {"coordinates": [[-85.6322909, 41.9434696], [-85.6323597, 41.943549], [-85.6324881, 41.9436973]], "type": "LineString"}, "id": "545", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 134150801, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621459, 41.944756, -85.620172, 41.945627], "geometry": {"coordinates": [[-85.621459, 41.944756], [-85.621305, 41.944782], [-85.621174, 41.944819], [-85.621029, 41.944871], [-85.620741, 41.945011], [-85.620616, 41.945085], [-85.620506, 41.945172], [-85.620394, 41.945273], [-85.620316, 41.94536], [-85.620257, 41.945452], [-85.620212, 41.945535], [-85.620172, 41.945627]], "type": "LineString"}, "id": "550", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 17966773, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6251435, 41.9609203, -85.6249415, 41.9614778], "geometry": {"coordinates": [[-85.6251435, 41.9614778], [-85.6249884, 41.9612984], [-85.6249589, 41.9612569], [-85.6249481, 41.9612108], [-85.6249415, 41.961166], [-85.6249466, 41.9611233], [-85.6249598, 41.9610811], [-85.6249846, 41.9610254], [-85.6250025, 41.9609909], [-85.6250384, 41.9609203]], "type": "LineString"}, "id": "552", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "New Jersey Court", "oneway": null, "osm_id": 203968016, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159142, 41.9577578, -85.6153676, 41.9593891], "geometry": {"coordinates": [[-85.6159142, 41.9577578], [-85.615506, 41.957833], [-85.6154119, 41.9578659], [-85.6153676, 41.9579194], [-85.6153786, 41.9582858], [-85.6153786, 41.9587057], [-85.6153897, 41.9591915], [-85.6154119, 41.9593479], [-85.6154783, 41.9593891], [-85.6157358, 41.959364]], "type": "LineString"}, "id": "554", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 907675123, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6466646, 41.9450813, -85.643102, 41.945174], "geometry": {"coordinates": [[-85.643102, 41.945103], [-85.644403, 41.945088], [-85.6452965, 41.9450847], [-85.645486, 41.945084], [-85.6463243, 41.9450817], [-85.6463419, 41.9450817], [-85.6464756, 41.9450813], [-85.6466646, 41.945174]], "type": "LineString"}, "id": "561", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pealer Street", "oneway": null, "osm_id": 379694344, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634668, 41.949875, -85.633258, 41.949893], "geometry": {"coordinates": [[-85.633258, 41.949893], [-85.634668, 41.949875]], "type": "LineString"}, "id": "562", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Bennett Street", "oneway": null, "osm_id": 772835853, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6418749, 41.941316, -85.641825, 41.9425864], "geometry": {"coordinates": [[-85.641825, 41.941316], [-85.641838, 41.941556], [-85.6418683, 41.9424016], [-85.641872, 41.9425043], [-85.6418749, 41.9425864]], "type": "LineString"}, "id": "564", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Grant Avenue", "oneway": null, "osm_id": 17965749, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6341901, 41.9432732, -85.6339673, 41.9433877], "geometry": {"coordinates": [[-85.6341901, 41.9432732], [-85.6339673, 41.9433877]], "type": "LineString"}, "id": "566", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150800, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348719, 41.9430367, -85.6346811, 41.9431023], "geometry": {"coordinates": [[-85.6348719, 41.9430367], [-85.6346811, 41.9431023]], "type": "LineString"}, "id": "567", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "primary", "layer": "1", "name": "West Michigan Avenue", "oneway": null, "osm_id": 134150795, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634767, 41.959009, -85.630935, 41.959037], "geometry": {"coordinates": [[-85.630935, 41.959037], [-85.63137, 41.959033], [-85.6321505, 41.9590251], [-85.6329563, 41.9590221], [-85.634315, 41.959017], [-85.634767, 41.959009]], "type": "LineString"}, "id": "574", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Morris Avenue", "oneway": null, "osm_id": 17964793, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6357554, 41.9361657, -85.6344047, 41.9395496], "geometry": {"coordinates": [[-85.6344047, 41.9395496], [-85.6344894, 41.938975], [-85.6345227, 41.9382009], [-85.6345671, 41.9381816], [-85.6350366, 41.9379774], [-85.6350681, 41.937909], [-85.6352147, 41.9375903], [-85.6351503, 41.937307], [-85.635142, 41.9372317], [-85.6351181, 41.9370157], [-85.6351235, 41.9368481], [-85.6352844, 41.9364211], [-85.6357554, 41.9361657]], "type": "LineString"}, "id": "577", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Thomas Street", "oneway": null, "osm_id": 170995908, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637732, 41.929221, -85.636746, 41.932761], "geometry": {"coordinates": [[-85.636746, 41.929221], [-85.636791, 41.929363], [-85.6374708, 41.9311633], [-85.6375975, 41.9314987], [-85.637669, 41.931667], [-85.637728, 41.931901], [-85.637724, 41.932187], [-85.637732, 41.932761]], "type": "LineString"}, "id": "579", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Constantine Street", "oneway": null, "osm_id": 17964497, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631591, 41.934167, -85.623511, 41.934218], "geometry": {"coordinates": [[-85.623511, 41.934216], [-85.624782, 41.934218], [-85.625688, 41.934214], [-85.6264034, 41.9342098], [-85.627055, 41.934206], [-85.6278177, 41.9342117], [-85.628389, 41.934216], [-85.6290391, 41.9342067], [-85.6296991, 41.9341973], [-85.6303478, 41.9341918], [-85.6310313, 41.9341889], [-85.631591, 41.934167]], "type": "LineString"}, "id": "582", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "State Street", "oneway": null, "osm_id": 17968171, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633274, 41.951159, -85.6304857, 41.9511969], "geometry": {"coordinates": [[-85.6304857, 41.9511945], [-85.6308395, 41.9511969], [-85.6320505, 41.951174], [-85.633274, 41.951159]], "type": "LineString"}, "id": "583", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Armitage Street", "oneway": null, "osm_id": 17967386, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6443023, 41.932672, -85.6442279, 41.9363623], "geometry": {"coordinates": [[-85.644228, 41.932672], [-85.644228, 41.9327325], [-85.6442279, 41.9328387], [-85.6442477, 41.9339216], [-85.6442915, 41.9349794], [-85.6442957, 41.9354807], [-85.6443023, 41.9362837], [-85.6442999, 41.9363623]], "type": "LineString"}, "id": "587", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Erie Avenue", "oneway": null, "osm_id": 78480220, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637685, 41.934223, -85.636834, 41.934223], "geometry": {"coordinates": [[-85.637685, 41.934223], [-85.636834, 41.934223]], "type": "LineString"}, "id": "588", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Swartz Street", "oneway": null, "osm_id": 17964970, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6450995, 41.9541831, -85.6440766, 41.9543462], "geometry": {"coordinates": [[-85.6440766, 41.9543462], [-85.6450995, 41.9541831]], "type": "LineString"}, "id": "602", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 652550668, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297342, 41.9400783, -85.627127, 41.940086], "geometry": {"coordinates": [[-85.627127, 41.940086], [-85.6272188, 41.9400832], [-85.627263, 41.940082], [-85.628439, 41.940086], [-85.6296113, 41.940079], [-85.6297342, 41.9400783]], "type": "LineString"}, "id": "605", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Street", "oneway": null, "osm_id": 17967751, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637483, 41.9486, -85.637113, 41.958313], "geometry": {"coordinates": [[-85.637113, 41.9486], [-85.6373958, 41.9489943], [-85.6374012, 41.9493523], [-85.6374067, 41.9497099], [-85.6374092, 41.9498755], [-85.637412, 41.9511359], [-85.637432, 41.952399], [-85.637452, 41.953665], [-85.6374593, 41.9545754], [-85.63746, 41.954658], [-85.6374608, 41.9547361], [-85.637473, 41.95592], [-85.6374721, 41.9560979], [-85.6374707, 41.9563685], [-85.637468, 41.956906], [-85.637483, 41.958313]], "type": "LineString"}, "id": "609", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Maple Street", "oneway": null, "osm_id": 17965097, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644466, 41.9425645, -85.6443608, 41.949246], "geometry": {"coordinates": [[-85.6443608, 41.9425645], [-85.6443622, 41.942653], [-85.6443702, 41.9431535], [-85.644381, 41.943831], [-85.644403, 41.945088], [-85.6444166, 41.9463259], [-85.644417, 41.946364], [-85.644429, 41.947633], [-85.6444365, 41.9479609], [-85.6444419, 41.9481952], [-85.6444506, 41.9485732], [-85.644466, 41.949246]], "type": "LineString"}, "id": "610", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Erie Street", "oneway": null, "osm_id": 17966729, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6432019, 41.9425754, -85.643102, 41.949261], "geometry": {"coordinates": [[-85.6431031, 41.9425754], [-85.6431035, 41.9427597], [-85.6431104, 41.9428543], [-85.6431041, 41.9430023], [-85.643106, 41.943841], [-85.643102, 41.945103], [-85.643148, 41.946389], [-85.6432019, 41.9476499], [-85.643195, 41.949261]], "type": "LineString"}, "id": "611", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "North Douglas Avenue", "oneway": null, "osm_id": 17967390, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.654898, 41.932505, -85.6517487, 41.9325437], "geometry": {"coordinates": [[-85.6517487, 41.9325437], [-85.6519167, 41.9325405], [-85.65275, 41.9325249], [-85.6529294, 41.9325248], [-85.653541, 41.9325282], [-85.654307, 41.9325151], [-85.6543315, 41.9325147], [-85.654898, 41.932505]], "type": "LineString"}, "id": "617", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Broadway Road", "oneway": null, "osm_id": 17965484, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6514073, 41.932543, -85.6365328, 41.9329312], "geometry": {"coordinates": [[-85.6514073, 41.932543], [-85.6506177, 41.9325595], [-85.650349, 41.9325604], [-85.649346, 41.9325803], [-85.6492242, 41.9325853], [-85.6490718, 41.932586], [-85.6484329, 41.932606], [-85.6478385, 41.9326128], [-85.6476037, 41.9326155], [-85.6469521, 41.9326207], [-85.6462306, 41.9326304], [-85.6461715, 41.9326317], [-85.6459436, 41.9326459], [-85.6455682, 41.9326543], [-85.6444717, 41.9326688], [-85.644228, 41.932672], [-85.64242, 41.932699], [-85.6412915, 41.9327042], [-85.6401365, 41.9327199], [-85.6388769, 41.9327334], [-85.637732, 41.932761], [-85.637353, 41.932792], [-85.6365328, 41.9329312]], "type": "LineString"}, "id": "620", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Broadway Street", "oneway": null, "osm_id": 17967984, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6431031, 41.94001, -85.643056, 41.9425754], "geometry": {"coordinates": [[-85.643056, 41.94001], [-85.6430624, 41.9405521], [-85.6430697, 41.9411732], [-85.643071, 41.941288], [-85.6430868, 41.9419198], [-85.6430981, 41.9423756], [-85.6431031, 41.9425754]], "type": "LineString"}, "id": "625", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 17966327, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6283312, 41.946498, -85.620072, 41.9470656], "geometry": {"coordinates": [[-85.620072, 41.946538], [-85.622721, 41.946535], [-85.624912, 41.946524], [-85.627629, 41.946498], [-85.6281401, 41.9469632], [-85.6282451, 41.9470314], [-85.6283312, 41.9470656]], "type": "LineString"}, "id": "634", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "5th Avenue", "oneway": null, "osm_id": 17967603, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636279, 41.9536856, -85.6362328, 41.958311], "geometry": {"coordinates": [[-85.6362328, 41.9536856], [-85.6362358, 41.9545823], [-85.636236, 41.954656], [-85.6362388, 41.9547432], [-85.636276, 41.955919], [-85.6362782, 41.9566334], [-85.636279, 41.956901], [-85.636271, 41.958311]], "type": "LineString"}, "id": "637", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Street", "oneway": null, "osm_id": 385299769, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633287, 41.952426, -85.6295992, 41.9524688], "geometry": {"coordinates": [[-85.6295992, 41.9524346], [-85.6297681, 41.9524688], [-85.630275, 41.952461], [-85.630855, 41.952452], [-85.6320668, 41.9524531], [-85.633287, 41.952426]], "type": "LineString"}, "id": "640", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Wheeler Street", "oneway": null, "osm_id": 17967573, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644417, 41.946364, -85.641946, 41.946413], "geometry": {"coordinates": [[-85.641946, 41.946413], [-85.642185, 41.946411], [-85.643148, 41.946389], [-85.644417, 41.946364]], "type": "LineString"}, "id": "641", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Yauney Street", "oneway": null, "osm_id": 17965353, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637255, 41.940104, -85.633405, 41.9419564], "geometry": {"coordinates": [[-85.6358044, 41.9419514], [-85.6353886, 41.9419564], [-85.6352709, 41.9419441], [-85.6351843, 41.9419225], [-85.6350991, 41.9418921], [-85.6349439, 41.94176], [-85.6348391, 41.9416651], [-85.6346921, 41.9415489], [-85.6345862, 41.9414958], [-85.634476, 41.9414524], [-85.6338528, 41.9412282], [-85.6337312, 41.9411799], [-85.6336412, 41.941124], [-85.6335786, 41.9410619], [-85.6335358, 41.9409867], [-85.6334823, 41.9408547], [-85.633434, 41.9406778], [-85.633407, 41.9404582], [-85.633405, 41.9403452], [-85.6334276, 41.9402703], [-85.6334711, 41.9402064], [-85.6335473, 41.9401531], [-85.6336484, 41.9401261], [-85.6337802, 41.9401143], [-85.6345653, 41.9401078], [-85.6346806, 41.9401088], [-85.6350634, 41.9401122], [-85.6352544, 41.9401138], [-85.6355277, 41.9401162], [-85.635779, 41.9401184], [-85.6369542, 41.9401113], [-85.637255, 41.940104]], "type": "LineString"}, "id": "651", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Millard Street", "oneway": null, "osm_id": 17966942, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627403, 41.941035, -85.6269868, 41.9446899], "geometry": {"coordinates": [[-85.6269868, 41.941035], [-85.6272074, 41.9411396], [-85.6272566, 41.9411991], [-85.627295, 41.941304], [-85.627352, 41.94148], [-85.62737, 41.942261], [-85.6273949, 41.9432543], [-85.627401, 41.943496], [-85.627403, 41.943625], [-85.6274028, 41.9436719], [-85.6273993, 41.9446899]], "type": "LineString"}, "id": "653", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Middle Street", "oneway": null, "osm_id": 17964989, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6358187, 41.9460401, -85.6346449, 41.9460571], "geometry": {"coordinates": [[-85.6346449, 41.9460571], [-85.6347591, 41.9460545], [-85.6353839, 41.9460401], [-85.6354162, 41.946044], [-85.6358187, 41.9460423]], "type": "LineString"}, "id": "655", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Moore Street", "oneway": null, "osm_id": 17967628, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.629998, 41.9409278, -85.6270633, 41.9446689], "geometry": {"coordinates": [[-85.6299942, 41.9446689], [-85.6299948, 41.9445812], [-85.629998, 41.944078], [-85.629972, 41.943927], [-85.6299489, 41.9437872], [-85.629692, 41.943136], [-85.6295818, 41.9429178], [-85.6295123, 41.9427401], [-85.629472, 41.942578], [-85.629444, 41.942414], [-85.6294175, 41.9422323], [-85.629391, 41.94205], [-85.629369, 41.941858], [-85.6293419, 41.9417168], [-85.6293102, 41.9416173], [-85.629275, 41.9415768], [-85.629233, 41.941549], [-85.6291835, 41.9415244], [-85.6290357, 41.9414799], [-85.6272955, 41.9410331], [-85.6270633, 41.9409278]], "type": "LineString"}, "id": "656", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Drive", "oneway": null, "osm_id": 17965305, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634776, 41.959834, -85.6321612, 41.959859], "geometry": {"coordinates": [[-85.6321612, 41.959859], [-85.634776, 41.959834]], "type": "LineString"}, "id": "660", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Burke Avenue", "oneway": null, "osm_id": 17965196, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6304211, 41.9649323, -85.6302268, 41.965951], "geometry": {"coordinates": [[-85.6302318, 41.965951], [-85.6302304, 41.9657359], [-85.6302268, 41.9652189], [-85.6302539, 41.9651405], [-85.6302889, 41.9650625], [-85.6303472, 41.9649931], [-85.6304211, 41.9649323]], "type": "LineString"}, "id": "661", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kennedy Boulevard", "oneway": "no", "osm_id": 203968019, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614642, 41.951639, -85.614204, 41.953696], "geometry": {"coordinates": [[-85.614617, 41.951639], [-85.61463, 41.951852], [-85.614642, 41.953436], [-85.6146, 41.953551], [-85.614487, 41.95363], [-85.614354, 41.953672], [-85.614204, 41.953696]], "type": "LineString"}, "id": "665", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Orchard Drive", "oneway": null, "osm_id": 17965156, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6397719, 41.9638513, -85.634832, 41.9638663], "geometry": {"coordinates": [[-85.6397719, 41.9638513], [-85.638825, 41.963855], [-85.6365609, 41.963866], [-85.6364975, 41.9638663], [-85.6362597, 41.9638663], [-85.6361179, 41.9638663], [-85.634832, 41.963866]], "type": "LineString"}, "id": "669", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Clifton Drive", "oneway": null, "osm_id": 17965733, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453506, 41.9399002, -85.6443194, 41.9400924], "geometry": {"coordinates": [[-85.6443194, 41.9399444], [-85.6443284, 41.9400333], [-85.6443897, 41.9400924], [-85.6452278, 41.9400901], [-85.6453449, 41.9400053], [-85.6453506, 41.9399002]], "type": "LineString"}, "id": "677", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 203968032, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6394548, 41.940078, -85.6393662, 41.94261], "geometry": {"coordinates": [[-85.6393662, 41.940078], [-85.639402, 41.941344], [-85.6394516, 41.9425322], [-85.6394548, 41.94261]], "type": "LineString"}, "id": "679", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Hooker Avenue", "oneway": null, "osm_id": 17966879, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637424, 41.938692, -85.6357638, 41.9387029], "geometry": {"coordinates": [[-85.637424, 41.938692], [-85.6357638, 41.9387029]], "type": "LineString"}, "id": "680", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Lafayette Street", "oneway": null, "osm_id": 17966229, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637113, 41.947382, -85.636163, 41.9486], "geometry": {"coordinates": [[-85.636163, 41.947382], [-85.637113, 41.9486]], "type": "LineString"}, "id": "682", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Rock River Avenue", "oneway": null, "osm_id": 17967764, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6390493, 41.9523857, -85.634686, 41.952415], "geometry": {"coordinates": [[-85.634686, 41.952415], [-85.636233, 41.952398], [-85.637432, 41.952399], [-85.638661, 41.952386], [-85.6390493, 41.9523857]], "type": "LineString"}, "id": "683", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Wheeler Street", "oneway": null, "osm_id": 17966975, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480185, 41.9447787, -85.6463238, 41.9458902], "geometry": {"coordinates": [[-85.6480185, 41.9447787], [-85.6475593, 41.9448337], [-85.6469955, 41.9449804], [-85.6469512, 41.9450063], [-85.6466646, 41.945174], [-85.6464255, 41.9454662], [-85.6463238, 41.9457504], [-85.6463269, 41.9458902]], "type": "LineString"}, "id": "684", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Heather Lane", "oneway": null, "osm_id": 203968027, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322909, 41.9432542, -85.6321102, 41.9434696], "geometry": {"coordinates": [[-85.6321102, 41.9432542], [-85.632207, 41.9433696], [-85.6322909, 41.9434696]], "type": "LineString"}, "id": "689", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "secondary", "layer": "1", "name": "South Main Street", "oneway": null, "osm_id": 847427775, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517487, 41.932543, -85.6514073, 41.9325437], "geometry": {"coordinates": [[-85.6517487, 41.9325437], [-85.6514073, 41.932543]], "type": "LineString"}, "id": "694", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Broadway Street", "oneway": null, "osm_id": 17965840, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6385705, 41.9511217, -85.634686, 41.9511591], "geometry": {"coordinates": [[-85.634686, 41.951158], [-85.6362059, 41.9511457], [-85.637412, 41.9511359], [-85.6384444, 41.9511217], [-85.6385191, 41.9511347], [-85.6385705, 41.9511591]], "type": "LineString"}, "id": "700", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Armitage Street", "oneway": null, "osm_id": 17966118, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.627629, 41.946498, -85.626843, 41.947333], "geometry": {"coordinates": [[-85.627629, 41.946498], [-85.626843, 41.947333]], "type": "LineString"}, "id": "701", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "John Glenn Court", "oneway": null, "osm_id": 17966061, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.641825, 41.941316, -85.6370124, 41.9413618], "geometry": {"coordinates": [[-85.6370124, 41.9413618], [-85.6382188, 41.9413554], [-85.639402, 41.941344], [-85.6406381, 41.9413339], [-85.641825, 41.941316]], "type": "LineString"}, "id": "702", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Street", "oneway": null, "osm_id": 17966102, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.650247, 41.950953, -85.649086, 41.953213], "geometry": {"coordinates": [[-85.650247, 41.95096], [-85.6500618, 41.9509537], [-85.650041, 41.950953], [-85.649906, 41.950963], [-85.64978, 41.950992], [-85.649703, 41.951036], [-85.649622, 41.951123], [-85.649531, 41.95124], [-85.649445, 41.951394], [-85.6491, 41.951963], [-85.649086, 41.952073], [-85.649099, 41.952167], [-85.649152, 41.952255], [-85.649241, 41.952349], [-85.649974, 41.952969], [-85.6501222, 41.9530714], [-85.650237, 41.953213]], "type": "LineString"}, "id": "709", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Circle Drive", "oneway": null, "osm_id": 17966996, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6257292, 41.929295, -85.62567, 41.93319], "geometry": {"coordinates": [[-85.62567, 41.929295], [-85.625696, 41.929367], [-85.625711, 41.92948], [-85.6257282, 41.9301667], [-85.6257292, 41.9302058], [-85.625711, 41.9311836], [-85.625695, 41.932173], [-85.625694, 41.93319]], "type": "LineString"}, "id": "714", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Street", "oneway": null, "osm_id": 17967211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6374708, 41.9298799, -85.6359052, 41.9312703], "geometry": {"coordinates": [[-85.6359052, 41.9298799], [-85.6363116, 41.930866], [-85.6364884, 41.9310993], [-85.6368065, 41.9312703], [-85.6374708, 41.9311633]], "type": "LineString"}, "id": "715", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Home Street", "oneway": null, "osm_id": 203968035, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.628481, 41.945597, -85.615273, 41.945637], "geometry": {"coordinates": [[-85.628481, 41.945611], [-85.624893, 41.945616], [-85.6227157, 41.9456321], [-85.620172, 41.945627], [-85.618327, 41.945607], [-85.617231, 41.945603], [-85.6166335, 41.9456025], [-85.616136, 41.945602], [-85.615453, 41.945597], [-85.615273, 41.945637]], "type": "LineString"}, "id": "718", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "4th Avenue", "oneway": null, "osm_id": 17967107, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6442477, 41.9339216, -85.637688, 41.93398], "geometry": {"coordinates": [[-85.637688, 41.93398], [-85.6388308, 41.9339698], [-85.6400729, 41.9339588], [-85.6412249, 41.9339485], [-85.6423893, 41.9339381], [-85.6442477, 41.9339216]], "type": "LineString"}, "id": "729", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Swartz Street", "oneway": null, "osm_id": 17964972, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.611615, 41.951686, -85.610989, 41.953704], "geometry": {"coordinates": [[-85.611187, 41.951686], [-85.611087, 41.951741], [-85.611034, 41.951852], [-85.611016, 41.95196], [-85.610989, 41.95328], [-85.611021, 41.953484], [-85.611091, 41.953603], [-85.6112, 41.953661], [-85.611364, 41.953686], [-85.611615, 41.953704]], "type": "LineString"}, "id": "736", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Blossom Drive", "oneway": null, "osm_id": 17964508, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624776, 41.933205, -85.620035, 41.933297], "geometry": {"coordinates": [[-85.620035, 41.933297], [-85.620185, 41.933265], [-85.620722, 41.933245], [-85.62111, 41.933254], [-85.6214708, 41.9332507], [-85.6218248, 41.9332474], [-85.623501, 41.933232], [-85.624776, 41.933205]], "type": "LineString"}, "id": "746", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Broadway Street", "oneway": null, "osm_id": 17962489, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6244542, 41.9547066, -85.6240991, 41.954708], "geometry": {"coordinates": [[-85.6244542, 41.9547066], [-85.6240991, 41.954708]], "type": "LineString"}, "id": "749", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "East Hoffman Street", "oneway": null, "osm_id": 201484345, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6240991, 41.9544535, -85.6180008, 41.9547403], "geometry": {"coordinates": [[-85.6240991, 41.954708], [-85.6238505, 41.9546684], [-85.622923, 41.954469], [-85.6226758, 41.9544535], [-85.622368, 41.954472], [-85.6206237, 41.9546878], [-85.6205024, 41.9547019], [-85.6201708, 41.9547403], [-85.6194958, 41.9547372], [-85.6187301, 41.9547339], [-85.6186424, 41.9547335], [-85.6180008, 41.9547387]], "type": "LineString"}, "id": "750", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 201484348, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333607, 41.952426, -85.633287, 41.9582301], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.633307, 41.9537], [-85.6333107, 41.9545973], [-85.633311, 41.954679], [-85.6333121, 41.954751], [-85.6333181, 41.9551461], [-85.633322, 41.9554048], [-85.6333299, 41.9559271], [-85.6333496, 41.9573981], [-85.6333607, 41.9582301]], "type": "LineString"}, "id": "756", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": null, "osm_id": 775171420, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.624215, 41.940124, -85.61433, 41.940167], "geometry": {"coordinates": [[-85.61433, 41.940167], [-85.6159779, 41.9401637], [-85.617359, 41.940161], [-85.6186784, 41.9401557], [-85.6204461, 41.9401485], [-85.6213353, 41.9401443], [-85.621605, 41.940143], [-85.622643, 41.940128], [-85.623571, 41.940124], [-85.624215, 41.940134]], "type": "LineString"}, "id": "760", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "River Street", "oneway": null, "osm_id": 17967745, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630997, 41.929206, -85.62663, 41.929251], "geometry": {"coordinates": [[-85.62663, 41.929251], [-85.6283251, 41.9292335], [-85.6296503, 41.9292199], [-85.630997, 41.929206]], "type": "LineString"}, "id": "761", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Union Street", "oneway": null, "osm_id": 17966558, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643102, 41.945103, -85.6375025, 41.9458685], "geometry": {"coordinates": [[-85.6375025, 41.9458685], [-85.6386033, 41.9455048], [-85.6389034, 41.9453872], [-85.6391279, 41.9453044], [-85.6393332, 41.9452388], [-85.6394802, 41.9451962], [-85.6396448, 41.9451666], [-85.6398249, 41.9451425], [-85.640683, 41.94513], [-85.641922, 41.945121], [-85.643102, 41.945103]], "type": "LineString"}, "id": "764", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Pealer Street", "oneway": null, "osm_id": 17966281, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6348313, 41.9647886, -85.6335028, 41.9648771], "geometry": {"coordinates": [[-85.6335028, 41.9647886], [-85.6337013, 41.9648173], [-85.633889, 41.9648572], [-85.6340232, 41.9648731], [-85.6348313, 41.9648771]], "type": "LineString"}, "id": "766", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Coolidge Place", "oneway": "yes", "osm_id": 1033167061, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62478, 41.925597, -85.624703, 41.933205], "geometry": {"coordinates": [[-85.624703, 41.925597], [-85.624716, 41.927359], [-85.624721, 41.929278], [-85.624741, 41.93019], [-85.62475, 41.93119], [-85.62478, 41.93217], [-85.624776, 41.933205]], "type": "LineString"}, "id": "767", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 17966211, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.638694, 41.9511591, -85.6385705, 41.954649], "geometry": {"coordinates": [[-85.6385705, 41.9511591], [-85.6385961, 41.9511842], [-85.6386095, 41.9512214], [-85.638661, 41.952386], [-85.638654, 41.953665], [-85.6386912, 41.9545803], [-85.638694, 41.954649]], "type": "LineString"}, "id": "769", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Oak Street", "oneway": null, "osm_id": 17965149, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191709, 41.9567483, -85.6186116, 41.9568717], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6186116, 41.9568717]], "type": "LineString"}, "id": "770", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 1056815666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633089, 41.9440586, -85.632801, 41.9443541], "geometry": {"coordinates": [[-85.632801, 41.9440586], [-85.63288, 41.9441396], [-85.6329845, 41.9442469], [-85.633089, 41.9443541]], "type": "LineString"}, "id": "771", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 143497377, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6276, 41.937412, -85.627101, 41.9402001], "geometry": {"coordinates": [[-85.6276, 41.937412], [-85.627451, 41.937549], [-85.627375, 41.937618], [-85.627278, 41.937728], [-85.627199, 41.937842], [-85.627141, 41.937981], [-85.627109, 41.938153], [-85.627101, 41.938699], [-85.6271023, 41.9391445], [-85.627127, 41.940086], [-85.6271315, 41.9402001]], "type": "LineString"}, "id": "784", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Street", "oneway": null, "osm_id": 17966740, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6312065, 41.9444675, -85.621459, 41.944756], "geometry": {"coordinates": [[-85.621459, 41.944756], [-85.6226744, 41.9447371], [-85.6248856, 41.9447242], [-85.6273993, 41.9446899], [-85.6286375, 41.9446764], [-85.629471, 41.9446718], [-85.6299942, 41.9446689], [-85.630139, 41.944661], [-85.630298, 41.944635], [-85.6312065, 41.9444675]], "type": "LineString"}, "id": "802", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 41074896, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6320827, 41.9537069, -85.628639, 41.9537314], "geometry": {"coordinates": [[-85.628639, 41.953725], [-85.6290597, 41.953725], [-85.629083, 41.953725], [-85.629676, 41.9537314], [-85.6302752, 41.9537226], [-85.6302845, 41.9537225], [-85.6308677, 41.9537139], [-85.6320827, 41.9537069]], "type": "LineString"}, "id": "803", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Cushman Street", "oneway": null, "osm_id": 17966787, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6171273, 41.954688, -85.610373, 41.954774], "geometry": {"coordinates": [[-85.6171273, 41.954688], [-85.616773, 41.954737], [-85.616699, 41.954742], [-85.6148042, 41.9547511], [-85.614195, 41.954754], [-85.613542, 41.954756], [-85.6118411, 41.9547642], [-85.611651, 41.954761], [-85.610373, 41.954774]], "type": "LineString"}, "id": "809", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 41074899, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6365328, 41.9329312, -85.6355692, 41.9330969], "geometry": {"coordinates": [[-85.6365328, 41.9329312], [-85.6355692, 41.9330969]], "type": "LineString"}, "id": "818", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "West Broadway Street", "oneway": null, "osm_id": 134150815, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517841, 41.9397681, -85.646656, 41.939869], "geometry": {"coordinates": [[-85.6517841, 41.9397701], [-85.651418, 41.9397681], [-85.6512494, 41.9397769], [-85.6502878, 41.9397993], [-85.648941, 41.939829], [-85.6478296, 41.9398349], [-85.6477024, 41.9398356], [-85.647488, 41.939838], [-85.6469804, 41.9398569], [-85.646656, 41.939869]], "type": "LineString"}, "id": "820", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Millard Road", "oneway": null, "osm_id": 379694336, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6517776, 41.9423425, -85.6514226, 41.9425152], "geometry": {"coordinates": [[-85.6514226, 41.9425113], [-85.6515073, 41.9425152], [-85.6515696, 41.9425097], [-85.6516223, 41.9424985], [-85.6516696, 41.9424729], [-85.6517053, 41.942446], [-85.6517415, 41.9424007], [-85.6517776, 41.9423425]], "type": "LineString"}, "id": "825", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": "yes", "osm_id": 945352903, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6177994, 41.9545412, -85.6171273, 41.954688], "geometry": {"coordinates": [[-85.6177994, 41.9545412], [-85.6174545, 41.9546309], [-85.6171273, 41.954688]], "type": "LineString"}, "id": "827", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 652550661, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6358136, 41.9381878, -85.63576, 41.9427625], "geometry": {"coordinates": [[-85.63576, 41.9381878], [-85.6357638, 41.9387029], [-85.635779, 41.9401184], [-85.6357953, 41.9411097], [-85.6357985, 41.9413906], [-85.6357991, 41.9414384], [-85.6357992, 41.9414854], [-85.6358037, 41.9418913], [-85.6358044, 41.9419514], [-85.6358088, 41.9423413], [-85.6358125, 41.9426692], [-85.6358127, 41.9426829], [-85.6358136, 41.9427625]], "type": "LineString"}, "id": "833", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Spring Street", "oneway": null, "osm_id": 237686060, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614617, 41.951639, -85.611187, 41.951686], "geometry": {"coordinates": [[-85.611187, 41.951686], [-85.611323, 41.951653], [-85.611892, 41.951642], [-85.612216, 41.951641], [-85.613111, 41.951639], [-85.613396, 41.95164], [-85.614221, 41.95164], [-85.614617, 41.951639]], "type": "LineString"}, "id": "842", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bates Avenue", "oneway": null, "osm_id": 17965307, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634787, 41.933145, -85.624776, 41.933205], "geometry": {"coordinates": [[-85.624776, 41.933205], [-85.625694, 41.93319], [-85.6263762, 41.93319], [-85.627073, 41.93319], [-85.6274992, 41.9331816], [-85.628365, 41.933177], [-85.6290268, 41.9331722], [-85.6296891, 41.9331674], [-85.6303635, 41.9331643], [-85.6310242, 41.9331609], [-85.6316975, 41.9331564], [-85.6322101, 41.933153], [-85.632424, 41.9331516], [-85.6326939, 41.9331508], [-85.6339197, 41.9331474], [-85.634787, 41.933145]], "type": "LineString"}, "id": "848", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "East Broadway Street", "oneway": null, "osm_id": 379694384, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6248366, 41.9391615, -85.624215, 41.940134], "geometry": {"coordinates": [[-85.6248366, 41.9391615], [-85.624835, 41.939318], [-85.624811, 41.939435], [-85.624635, 41.939703], [-85.624366, 41.940055], [-85.624287, 41.940113], [-85.624215, 41.940134]], "type": "LineString"}, "id": "852", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 1080064916, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6187338, 41.9547339, -85.6186943, 41.9550001], "geometry": {"coordinates": [[-85.6186943, 41.9550001], [-85.6187338, 41.9549561], [-85.6187301, 41.9547339]], "type": "LineString"}, "id": "853", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": "yes", "osm_id": 1068082269, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.611651, 41.953704, -85.611615, 41.954761], "geometry": {"coordinates": [[-85.611615, 41.953704], [-85.611636, 41.953938], [-85.611651, 41.954761]], "type": "LineString"}, "id": "856", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Blossom Drive", "oneway": null, "osm_id": 17964507, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6186943, 41.9547335, -85.6186424, 41.9550001], "geometry": {"coordinates": [[-85.6186424, 41.9547335], [-85.6186457, 41.9549562], [-85.6186943, 41.9550001]], "type": "LineString"}, "id": "858", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Shiawassee River Road", "oneway": "yes", "osm_id": 1068082268, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.644429, 41.9476126, -85.6420148, 41.9476567], "geometry": {"coordinates": [[-85.6420148, 41.9476126], [-85.642067, 41.9476391], [-85.6421288, 41.9476532], [-85.6422024, 41.9476567], [-85.6432019, 41.9476499], [-85.644429, 41.947633]], "type": "LineString"}, "id": "862", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pierson Street", "oneway": null, "osm_id": 17967618, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469648, 41.93494, -85.636516, 41.935036], "geometry": {"coordinates": [[-85.636516, 41.935036], [-85.6376468, 41.9350232], [-85.6388186, 41.9350099], [-85.6400709, 41.9349957], [-85.6412214, 41.9349827], [-85.6423509, 41.934974], [-85.6442915, 41.9349794], [-85.6448698, 41.934969], [-85.6454067, 41.9349594], [-85.6455841, 41.9349562], [-85.6457364, 41.9349534], [-85.645849, 41.9349514], [-85.6464864, 41.93494], [-85.6469648, 41.9349544]], "type": "LineString"}, "id": "870", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hill Street", "oneway": null, "osm_id": 17965641, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6336824, 41.9437132, -85.6333999, 41.9439899], "geometry": {"coordinates": [[-85.6333999, 41.9437132], [-85.6334771, 41.9437888], [-85.6336824, 41.9439899]], "type": "LineString"}, "id": "874", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Drive", "oneway": null, "osm_id": 17967752, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62575, 41.93319, -85.625688, 41.938166], "geometry": {"coordinates": [[-85.625694, 41.93319], [-85.625688, 41.934214], [-85.6257179, 41.9352095], [-85.6257389, 41.936196], [-85.6257369, 41.9371694], [-85.6257465, 41.9377376], [-85.62575, 41.937945], [-85.62574, 41.938059], [-85.62569, 41.938166]], "type": "LineString"}, "id": "875", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "7th Street", "oneway": null, "osm_id": 379694409, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.615273, 41.945637, -85.615188, 41.947468], "geometry": {"coordinates": [[-85.615238, 41.947468], [-85.615208, 41.946468], [-85.615188, 41.945796], [-85.615212, 41.945701], [-85.615273, 41.945637]], "type": "LineString"}, "id": "876", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Evans Street", "oneway": null, "osm_id": 17964647, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6458319, 41.9398831, -85.6453514, 41.9412425], "geometry": {"coordinates": [[-85.645806, 41.9398831], [-85.6458319, 41.9411841], [-85.6457458, 41.9412425], [-85.6454506, 41.9412421], [-85.6453514, 41.9412419]], "type": "LineString"}, "id": "887", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Matthew Drive", "oneway": null, "osm_id": 203968033, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.647423, 41.9458833, -85.6474022, 41.9471251], "geometry": {"coordinates": [[-85.647423, 41.9471251], [-85.6474211, 41.9470126], [-85.6474185, 41.9468536], [-85.6474165, 41.9467381], [-85.6474159, 41.9467008], [-85.6474022, 41.9458833]], "type": "LineString"}, "id": "888", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bentwaters Avenue", "oneway": null, "osm_id": 203968030, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.643071, 41.941288, -85.641825, 41.941316], "geometry": {"coordinates": [[-85.643071, 41.941288], [-85.6427798, 41.9412945], [-85.6418494, 41.9413154], [-85.641825, 41.941316]], "type": "LineString"}, "id": "896", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Street", "oneway": "yes", "osm_id": 204000205, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6331258, 41.9443541, -85.633089, 41.944392], "geometry": {"coordinates": [[-85.633089, 41.9443541], [-85.6331258, 41.944392]], "type": "LineString"}, "id": "900", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427771, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370277, 41.9413618, -85.6370124, 41.9426234], "geometry": {"coordinates": [[-85.6370124, 41.9413618], [-85.6370167, 41.942365], [-85.6370244, 41.9425463], [-85.6370277, 41.9426234]], "type": "LineString"}, "id": "908", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "South Constantine Street", "oneway": null, "osm_id": 17966400, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346449, 41.9456229, -85.6344386, 41.9460571], "geometry": {"coordinates": [[-85.6344386, 41.9456229], [-85.6345572, 41.9457377], [-85.634573, 41.945764], [-85.634616, 41.945849], [-85.634629, 41.945893], [-85.6346449, 41.9460571]], "type": "LineString"}, "id": "912", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427781, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6382347, 41.9400924, -85.6381941, 41.9426146], "geometry": {"coordinates": [[-85.6381941, 41.9400924], [-85.6382188, 41.9413554], [-85.6382337, 41.9425383], [-85.6382347, 41.9426146]], "type": "LineString"}, "id": "918", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Andrews Street", "oneway": null, "osm_id": 17967315, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370321, 41.9459913, -85.6364433, 41.9460423], "geometry": {"coordinates": [[-85.6364433, 41.9460423], [-85.6366156, 41.9460282], [-85.6368316, 41.9460046], [-85.6370321, 41.9459913]], "type": "LineString"}, "id": "919", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Moore Street", "oneway": null, "osm_id": 134150840, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6469334, 41.9425427, -85.6469154, 41.944059], "geometry": {"coordinates": [[-85.6469154, 41.9425427], [-85.6469164, 41.942623], [-85.6469224, 41.9431332], [-85.6469334, 41.944059]], "type": "LineString"}, "id": "925", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Benjamin Drive", "oneway": null, "osm_id": 203968024, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6467698, 41.9540853, -85.6465551, 41.9540915], "geometry": {"coordinates": [[-85.6465551, 41.9540853], [-85.6467698, 41.9540915]], "type": "LineString"}, "id": "930", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 652550667, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6406588, 41.9400627, -85.6406114, 41.942601], "geometry": {"coordinates": [[-85.6406114, 41.9400627], [-85.6406381, 41.9413339], [-85.6406574, 41.9425183], [-85.6406588, 41.942601]], "type": "LineString"}, "id": "938", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Lincoln Avenue", "oneway": null, "osm_id": 17966041, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6359415, 41.9439899, -85.6336824, 41.9459797], "geometry": {"coordinates": [[-85.6336824, 41.9439899], [-85.6338478, 41.9441519], [-85.6341246, 41.9443913], [-85.635094, 41.9451026], [-85.6351753, 41.9451672], [-85.635374, 41.945325], [-85.635643, 41.945585], [-85.635853, 41.94586], [-85.6359415, 41.9459797]], "type": "LineString"}, "id": "942", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Railroad Drive", "oneway": null, "osm_id": 847427777, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633258, 41.947315, -85.633183, 41.949893], "geometry": {"coordinates": [[-85.633183, 41.947315], [-85.633214, 41.948618], [-85.633258, 41.949893]], "type": "LineString"}, "id": "947", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": null, "osm_id": 17967444, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6424237, 41.9317372, -85.6423202, 41.9361655], "geometry": {"coordinates": [[-85.6424219, 41.9317372], [-85.6424237, 41.9318871], [-85.64242, 41.932699], [-85.6424184, 41.9327641], [-85.6423893, 41.9339381], [-85.6423509, 41.934974], [-85.6423397, 41.9354097], [-85.6423321, 41.9357026], [-85.6423229, 41.9360597], [-85.6423202, 41.9361655]], "type": "LineString"}, "id": "955", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Douglas Avenue", "oneway": null, "osm_id": 17966325, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6346358, 41.947315, -85.633183, 41.947323], "geometry": {"coordinates": [[-85.633183, 41.947315], [-85.6339169, 41.9473191], [-85.6344097, 41.9473218], [-85.6346358, 41.947323]], "type": "LineString"}, "id": "967", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Prutzman Street", "oneway": null, "osm_id": 17965349, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6495916, 41.9491631, -85.643195, 41.949261], "geometry": {"coordinates": [[-85.643195, 41.949261], [-85.644466, 41.949246], [-85.6450946, 41.949233], [-85.6460234, 41.9492137], [-85.6469834, 41.949197], [-85.6474524, 41.9491881], [-85.6483619, 41.9491709], [-85.6486579, 41.9491678], [-85.6490788, 41.9491652], [-85.6494003, 41.9491647], [-85.6495916, 41.9491631]], "type": "LineString"}, "id": "968", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Arnold Street", "oneway": null, "osm_id": 17965839, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453514, 41.9412419, -85.644727, 41.9417126], "geometry": {"coordinates": [[-85.644727, 41.941262], [-85.6447421, 41.9416621], [-85.6448419, 41.9417126], [-85.6451269, 41.9417075], [-85.6451545, 41.9416625], [-85.6451706, 41.9412509], [-85.6453514, 41.9412419]], "type": "LineString"}, "id": "972", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962613, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271414, 41.9407274, -85.6269868, 41.941035], "geometry": {"coordinates": [[-85.6271414, 41.9407274], [-85.6271243, 41.9408034], [-85.627101, 41.9408633], [-85.6270633, 41.9409278], [-85.6270257, 41.940981], [-85.6269868, 41.941035]], "type": "LineString"}, "id": "1000", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "6th Street", "oneway": null, "osm_id": 134150833, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6248366, 41.933205, -85.624776, 41.9391615], "geometry": {"coordinates": [[-85.624776, 41.933205], [-85.624782, 41.934218], [-85.624792, 41.935214], [-85.6248039, 41.9362012], [-85.6247949, 41.9371708], [-85.6248019, 41.9381684], [-85.6248366, 41.9391615]], "type": "LineString"}, "id": "1003", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "8th Street", "oneway": null, "osm_id": 379694388, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637113, 41.9486, -85.6346517, 41.948626], "geometry": {"coordinates": [[-85.6346517, 41.948626], [-85.6351983, 41.9486221], [-85.6352821, 41.9486214], [-85.6354294, 41.9486201], [-85.6361818, 41.9486135], [-85.637113, 41.9486]], "type": "LineString"}, "id": "1005", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Kelsey Street", "oneway": null, "osm_id": 17965856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6319408, 41.9656501, -85.6302304, 41.9657359], "geometry": {"coordinates": [[-85.6302304, 41.9657359], [-85.6316583, 41.9657277], [-85.6317614, 41.9657168], [-85.6318497, 41.9656949], [-85.6319408, 41.9656501]], "type": "LineString"}, "id": "1007", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bush Boulevard", "oneway": "no", "osm_id": 203968021, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.637468, 41.956901, -85.636279, 41.956906], "geometry": {"coordinates": [[-85.637468, 41.956906], [-85.636279, 41.956901]], "type": "LineString"}, "id": "1008", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Lyman Street", "oneway": null, "osm_id": 17967437, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6299489, 41.9422477, -85.6264, 41.9437872], "geometry": {"coordinates": [[-85.6264, 41.942263], [-85.62737, 41.942261], [-85.6274266, 41.9422605], [-85.6290399, 41.9422477], [-85.6291216, 41.9423021], [-85.6291778, 41.9423603], [-85.6292288, 41.9424224], [-85.6292595, 41.9424832], [-85.6292782, 41.942568], [-85.6292385, 41.9436111], [-85.6299489, 41.9437872]], "type": "LineString"}, "id": "1012", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "1st Avenue", "oneway": null, "osm_id": 17967539, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.622759, 41.951845, -85.620141, 41.951913], "geometry": {"coordinates": [[-85.622759, 41.951845], [-85.622687, 41.951885], [-85.622492, 41.951901], [-85.621032, 41.951913], [-85.620141, 41.951901]], "type": "LineString"}, "id": "1018", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "11th Avenue", "oneway": null, "osm_id": 17964707, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227688, 41.950119, -85.6201059, 41.950132], "geometry": {"coordinates": [[-85.6201059, 41.950132], [-85.6227688, 41.950119]], "type": "LineString"}, "id": "1019", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "9th Avenue", "oneway": null, "osm_id": 17966129, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6191709, 41.955596, -85.6182033, 41.9567483], "geometry": {"coordinates": [[-85.6191709, 41.9567483], [-85.6191305, 41.9566955], [-85.6189389, 41.9565414], [-85.6188216, 41.9564439], [-85.6187656, 41.9563224], [-85.6187562, 41.9562043], [-85.6187236, 41.9560098], [-85.6188123, 41.9557841], [-85.6188496, 41.9556104], [-85.618838, 41.9555989], [-85.6182033, 41.955596]], "type": "LineString"}, "id": "1022", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 571308438, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6180008, 41.9545412, -85.6177994, 41.9547387], "geometry": {"coordinates": [[-85.6180008, 41.9547387], [-85.6179337, 41.9547022], [-85.61787, 41.9546654], [-85.6178275, 41.954614], [-85.6177994, 41.9545412]], "type": "LineString"}, "id": "1023", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary_link", "layer": null, "name": "East Hoffman Street", "oneway": null, "osm_id": 614445618, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620172, 41.9447384, -85.62001, 41.945627], "geometry": {"coordinates": [[-85.620172, 41.945627], [-85.620088, 41.945571], [-85.620051, 41.945505], [-85.62001, 41.94541], [-85.6200474, 41.9447384]], "type": "LineString"}, "id": "1026", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jefferson Street", "oneway": null, "osm_id": 652967187, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.620035, 41.933297, -85.619915, 41.9381814], "geometry": {"coordinates": [[-85.620035, 41.933297], [-85.619945, 41.933378], [-85.619915, 41.933529], [-85.619964, 41.934759], [-85.619972, 41.935062], [-85.6200011, 41.9362282], [-85.620004, 41.936782], [-85.620007, 41.937206], [-85.6200097, 41.9376523], [-85.620013, 41.9381814]], "type": "LineString"}, "id": "1027", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "12th Street", "oneway": null, "osm_id": 17967518, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6227785, 41.9447371, -85.6226744, 41.951845], "geometry": {"coordinates": [[-85.6226744, 41.9447371], [-85.6227157, 41.9456321], [-85.622721, 41.946535], [-85.6227578, 41.9474276], [-85.622761, 41.9483333], [-85.622769, 41.9492383], [-85.6227688, 41.950119], [-85.6227785, 41.9510005], [-85.622759, 41.951845]], "type": "LineString"}, "id": "1028", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Washington Street", "oneway": null, "osm_id": 17968192, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62232, 41.9351903, -85.6222684, 41.9381751], "geometry": {"coordinates": [[-85.6222684, 41.9351903], [-85.6222867, 41.9362155], [-85.62232, 41.9381751]], "type": "LineString"}, "id": "1030", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "10th Street", "oneway": null, "osm_id": 17965370, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6271604, 41.9262769, -85.6257845, 41.9264872], "geometry": {"coordinates": [[-85.6271604, 41.9262769], [-85.6263206, 41.9263876], [-85.6257845, 41.9264872]], "type": "LineString"}, "id": "1031", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hart Street", "oneway": null, "osm_id": 17967891, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296112, 41.9273547, -85.626047, 41.9273948], "geometry": {"coordinates": [[-85.6296112, 41.9273948], [-85.6295143, 41.9273547], [-85.6278389, 41.9273577], [-85.626047, 41.92737]], "type": "LineString"}, "id": "1032", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Forest Street", "oneway": null, "osm_id": 17965016, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.621605, 41.940143, -85.621591, 41.941075], "geometry": {"coordinates": [[-85.621605, 41.940143], [-85.621591, 41.941075]], "type": "LineString"}, "id": "1035", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Jackson Street", "oneway": null, "osm_id": 17964489, "osm_type": "ways_line", "smoothness": null, "surface": "compacted", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6297512, 41.9273948, -85.6296112, 41.939922], "geometry": {"coordinates": [[-85.6296112, 41.9273948], [-85.6296367, 41.927491], [-85.6296524, 41.928314], [-85.6296503, 41.9292199], [-85.6296598, 41.9301676], [-85.6296694, 41.931157], [-85.6296791, 41.9321485], [-85.6296891, 41.9331674], [-85.6296991, 41.9341973], [-85.6297088, 41.9351902], [-85.6297108, 41.9353939], [-85.6297382, 41.938203], [-85.6297512, 41.9395393], [-85.6297439, 41.939808], [-85.6296235, 41.939922]], "type": "LineString"}, "id": "1037", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "4th Street", "oneway": null, "osm_id": 17965023, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6257292, 41.93019, -85.624741, 41.9302058], "geometry": {"coordinates": [[-85.624741, 41.93019], [-85.6257292, 41.9302058]], "type": "LineString"}, "id": "1038", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Liberty Street", "oneway": null, "osm_id": 17962519, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6269868, 41.941035, -85.624873, 41.942022], "geometry": {"coordinates": [[-85.6269868, 41.941035], [-85.6268752, 41.9411026], [-85.6263984, 41.9413215], [-85.6256839, 41.9416496], [-85.624873, 41.942022]], "type": "LineString"}, "id": "1039", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "River Drive", "oneway": null, "osm_id": 378599359, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640003, 41.936988, -85.6351181, 41.937038], "geometry": {"coordinates": [[-85.640003, 41.936988], [-85.63876, 41.937002], [-85.637564, 41.937028], [-85.636453, 41.937038], [-85.6351181, 41.9370157]], "type": "LineString"}, "id": "1041", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Buck Street", "oneway": null, "osm_id": 17967780, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6310103, 41.931148, -85.62475, 41.93119], "geometry": {"coordinates": [[-85.62475, 41.93119], [-85.625711, 41.9311836], [-85.6263682, 41.9311792], [-85.626888, 41.9311757], [-85.6270379, 41.9311746], [-85.6277007, 41.9311702], [-85.6283399, 41.9311659], [-85.6289931, 41.9311615], [-85.6296694, 41.931157], [-85.6303008, 41.9311528], [-85.6310103, 41.931148]], "type": "LineString"}, "id": "1044", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Michigan Street", "oneway": null, "osm_id": 17967503, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6490408, 41.939829, -85.648941, 41.9425185], "geometry": {"coordinates": [[-85.648941, 41.939829], [-85.648947, 41.940048], [-85.6489696, 41.9409351], [-85.648972, 41.941028], [-85.6489867, 41.9413359], [-85.6490095, 41.9418109], [-85.6490317, 41.9422759], [-85.6490355, 41.9424178], [-85.6490408, 41.9425185]], "type": "LineString"}, "id": "1048", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Day Drive", "oneway": null, "osm_id": 17967644, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6503194, 41.95096, -85.6502348, 41.954238], "geometry": {"coordinates": [[-85.650264, 41.954238], [-85.650237, 41.953213], [-85.6503194, 41.952225], [-85.6502348, 41.9511025], [-85.650247, 41.95096]], "type": "LineString"}, "id": "1061", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Church Drive", "oneway": null, "osm_id": 17964870, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6451706, 41.9412509, -85.644283, 41.941271], "geometry": {"coordinates": [[-85.6451706, 41.9412509], [-85.644727, 41.941262], [-85.644283, 41.941271]], "type": "LineString"}, "id": "1067", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17962736, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6370184, 41.9401113, -85.6369542, 41.9411346], "geometry": {"coordinates": [[-85.6369542, 41.9401113], [-85.6369828, 41.9408789], [-85.6370184, 41.9411346]], "type": "LineString"}, "id": "1068", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 17963021, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633951, 41.9443666, -85.6317718, 41.946174], "geometry": {"coordinates": [[-85.6317718, 41.9443666], [-85.6318511, 41.9446409], [-85.6319048, 41.9447407], [-85.6319663, 41.9448112], [-85.632055, 41.9449128], [-85.6320913, 41.9449492], [-85.6324841, 41.9453438], [-85.6326558, 41.9454708], [-85.6328435, 41.9455473], [-85.6328885, 41.9455614], [-85.6332888, 41.9456871], [-85.6334199, 41.9457495], [-85.633564, 41.9458519], [-85.6336152, 41.9459804], [-85.633686, 41.946072], [-85.633815, 41.946131], [-85.6338843, 41.9461529], [-85.633951, 41.946174]], "type": "LineString"}, "id": "1070", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Joshua Drive", "oneway": null, "osm_id": 17964996, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6375025, 41.9458685, -85.6370321, 41.9459913], "geometry": {"coordinates": [[-85.6370321, 41.9459913], [-85.6375025, 41.9458685]], "type": "LineString"}, "id": "1075", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "Moore Street", "oneway": null, "osm_id": 134150778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633258, 41.949893, -85.6313855, 41.9499125], "geometry": {"coordinates": [[-85.6313855, 41.9499125], [-85.6320344, 41.9499109], [-85.633258, 41.949893]], "type": "LineString"}, "id": "1076", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Bennett Street", "oneway": null, "osm_id": 17967844, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.653554, 41.948114, -85.653537, 41.949065], "geometry": {"coordinates": [[-85.653554, 41.948114], [-85.653537, 41.949065]], "type": "LineString"}, "id": "1079", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Pleasant View Court", "oneway": null, "osm_id": 17966284, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.651611, 41.9458477, -85.6515735, 41.953639], "geometry": {"coordinates": [[-85.6515905, 41.9458477], [-85.6515806, 41.9460271], [-85.6515735, 41.9461213], [-85.6515753, 41.946257], [-85.651578, 41.946295], [-85.6515825, 41.9475468], [-85.6515836, 41.9478792], [-85.6515855, 41.9484171], [-85.651588, 41.949107], [-85.651587, 41.950958], [-85.651611, 41.953639]], "type": "LineString"}, "id": "1080", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Kerr Creek Road", "oneway": null, "osm_id": 17966293, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6465551, 41.9540785, -85.6450995, 41.9541831], "geometry": {"coordinates": [[-85.6450995, 41.9541831], [-85.6455882, 41.9541138], [-85.64609, 41.9540815], [-85.6462222, 41.9540789], [-85.6463856, 41.9540785], [-85.6465551, 41.9540853]], "type": "LineString"}, "id": "1083", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "West Hoffman Street", "oneway": null, "osm_id": 134151786, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.64079, 41.953638, -85.6362328, 41.9536856], "geometry": {"coordinates": [[-85.6362328, 41.9536856], [-85.637452, 41.953665], [-85.638654, 41.953665], [-85.6394045, 41.953658], [-85.6398159, 41.9536507], [-85.640532, 41.953638], [-85.64079, 41.953638]], "type": "LineString"}, "id": "1097", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Cushman Street", "oneway": null, "osm_id": 385299770, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6364433, 41.9460423, -85.6358187, 41.9460485], "geometry": {"coordinates": [[-85.6358187, 41.9460423], [-85.6360524, 41.9460485], [-85.636291, 41.9460461], [-85.6364433, 41.9460423]], "type": "LineString"}, "id": "1104", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "tertiary", "layer": "1", "name": "Moore Street", "oneway": null, "osm_id": 134150808, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634686, 41.952415, -85.633287, 41.952426], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.634686, 41.952415]], "type": "LineString"}, "id": "1106", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Wheeler Street", "oneway": null, "osm_id": 775171419, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.633287, 41.951159, -85.633274, 41.952426], "geometry": {"coordinates": [[-85.633287, 41.952426], [-85.633274, 41.951159]], "type": "LineString"}, "id": "1107", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Street", "oneway": "yes", "osm_id": 772835856, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636233, 41.9459797, -85.6359415, 41.9536856], "geometry": {"coordinates": [[-85.6359415, 41.9459797], [-85.636058, 41.946201], [-85.636112, 41.946366], [-85.636143, 41.946551], [-85.6361494, 41.946757], [-85.6361542, 41.946915], [-85.636166, 41.947296], [-85.636163, 41.947382], [-85.6361818, 41.9486135], [-85.6361862, 41.94952], [-85.636188, 41.9498803], [-85.6362059, 41.9511457], [-85.636233, 41.952398], [-85.6362328, 41.9536856]], "type": "LineString"}, "id": "1108", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "West Street", "oneway": null, "osm_id": 17967183, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.640734, 41.942601, -85.6406588, 41.945887], "geometry": {"coordinates": [[-85.6406588, 41.942601], [-85.6406598, 41.9426764], [-85.6406657, 41.943107], [-85.6406695, 41.9433904], [-85.640672, 41.9435717], [-85.640676, 41.943867], [-85.640683, 41.94513], [-85.640734, 41.945887]], "type": "LineString"}, "id": "1109", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "North Lincoln Avenue", "oneway": null, "osm_id": 17967073, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6333999, 41.9437132, -85.632801, 41.9440586], "geometry": {"coordinates": [[-85.6333999, 41.9437132], [-85.6329202, 41.9439902], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "1116", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 847427772, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.630972, 41.950656, -85.630835, 41.9619135], "geometry": {"coordinates": [[-85.630962, 41.9619135], [-85.6309653, 41.961811], [-85.630972, 41.961495], [-85.6309589, 41.960954], [-85.630952, 41.960667], [-85.6309472, 41.9602135], [-85.630935, 41.959037], [-85.6309238, 41.9583889], [-85.6309162, 41.957419], [-85.630904, 41.955913], [-85.6308843, 41.9547669], [-85.630883, 41.954692], [-85.6308815, 41.9545993], [-85.6308677, 41.9537139], [-85.630855, 41.952452], [-85.6308395, 41.9511969], [-85.630835, 41.950656]], "type": "LineString"}, "id": "1127", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Elm Street", "oneway": null, "osm_id": 290758901, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6487523, 41.942523, -85.6348719, 41.9430367], "geometry": {"coordinates": [[-85.6487523, 41.942523], [-85.6486708, 41.9425249], [-85.6482342, 41.9425314], [-85.648066, 41.9425328], [-85.6477792, 41.9425353], [-85.6474914, 41.9425378], [-85.6474623, 41.942538], [-85.6472723, 41.9425396], [-85.6470582, 41.9425415], [-85.6469154, 41.9425427], [-85.6467464, 41.9425441], [-85.6463823, 41.9425472], [-85.6462541, 41.9425483], [-85.6461839, 41.9425489], [-85.6460385, 41.9425502], [-85.6458708, 41.9425516], [-85.645555, 41.9425543], [-85.6450276, 41.9425588], [-85.6443608, 41.9425645], [-85.6441525, 41.9425687], [-85.6438642, 41.9425705], [-85.64319, 41.9425748], [-85.6431031, 41.9425754], [-85.6430036, 41.9425763], [-85.6423063, 41.9425816], [-85.6418749, 41.9425864], [-85.64167, 41.9425889], [-85.641113, 41.9425955], [-85.6409572, 41.9425974], [-85.6406588, 41.942601], [-85.6403442, 41.9426034], [-85.6399801, 41.9426061], [-85.6394548, 41.94261], [-85.6382347, 41.9426146], [-85.6381584, 41.9426151], [-85.6375506, 41.9426211], [-85.6372304, 41.9426207], [-85.6370277, 41.9426234], [-85.6368191, 41.9426307], [-85.6366609, 41.9426359], [-85.6364941, 41.9426463], [-85.6363512, 41.9426613], [-85.6362124, 41.9426809], [-85.6360534, 41.9427104], [-85.6359171, 41.9427389], [-85.6358136, 41.9427625], [-85.6356875, 41.9427985], [-85.6354213, 41.9428814], [-85.6351764, 41.9429527], [-85.6348719, 41.9430367]], "type": "LineString"}, "id": "1132", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "West Michigan Avenue", "oneway": null, "osm_id": 41785752, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6322992, 41.9442766, -85.6315778, 41.9443959], "geometry": {"coordinates": [[-85.6315778, 41.9443959], [-85.6317718, 41.9443666], [-85.6321585, 41.9443033], [-85.6322992, 41.9442766]], "type": "LineString"}, "id": "1140", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 134150836, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.634686, 41.951158, -85.633274, 41.951159], "geometry": {"coordinates": [[-85.633274, 41.951159], [-85.634686, 41.951158]], "type": "LineString"}, "id": "1142", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Armitage Street", "oneway": null, "osm_id": 772835855, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6453514, 41.940684, -85.644272, 41.9412419], "geometry": {"coordinates": [[-85.6453514, 41.9412419], [-85.6453371, 41.9407486], [-85.645247, 41.940684], [-85.6443423, 41.9407072], [-85.644272, 41.940795]], "type": "LineString"}, "id": "1148", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": null, "oneway": null, "osm_id": 203968031, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.636834, 41.934223, -85.6363309, 41.9381805], "geometry": {"coordinates": [[-85.636834, 41.934223], [-85.636786, 41.93429], [-85.636516, 41.935036], [-85.636453, 41.937038], [-85.6363309, 41.9381805]], "type": "LineString"}, "id": "1149", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Spring Street", "oneway": null, "osm_id": 17965836, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6593087, 41.9255834, -85.6583049, 41.925818], "geometry": {"coordinates": [[-85.6593087, 41.9255834], [-85.6588917, 41.9256758], [-85.6583049, 41.925818]], "type": "LineString"}, "id": "1153", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "M-60", "oneway": "yes", "osm_id": 41260271, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6321102, 41.9429465, -85.631852, 41.9432542], "geometry": {"coordinates": [[-85.631852, 41.9429465], [-85.6321102, 41.9432542]], "type": "LineString"}, "id": "1162", "properties": {"__folium_color": "purple", "bridge": "yes", "highway": "secondary", "layer": "1", "name": "South Main Street", "oneway": null, "osm_id": 134150830, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6412915, 41.931841, -85.6410939, 41.9400568], "geometry": {"coordinates": [[-85.6412224, 41.931841], [-85.6412907, 41.9319548], [-85.6412915, 41.9327042], [-85.6412869, 41.93279], [-85.6412249, 41.9339485], [-85.6412214, 41.9349827], [-85.641148, 41.936984], [-85.641112, 41.938169], [-85.6410946, 41.9399845], [-85.6410939, 41.9400568]], "type": "LineString"}, "id": "1163", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "South Grant Avenue", "oneway": null, "osm_id": 17965747, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6344386, 41.9454489, -85.6342487, 41.9456229], "geometry": {"coordinates": [[-85.6342487, 41.9454489], [-85.6343577, 41.9455483], [-85.6344386, 41.9456229]], "type": "LineString"}, "id": "1172", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "North Main Street", "oneway": null, "osm_id": 847427780, "osm_type": "ways_line", "smoothness": null, "surface": "paved", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6296524, 41.928314, -85.6263285, 41.928331], "geometry": {"coordinates": [[-85.6263285, 41.928331], [-85.6280779, 41.928322], [-85.6296524, 41.928314]], "type": "LineString"}, "id": "1175", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Bell Street", "oneway": null, "osm_id": 17964630, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6480294, 41.9440825, -85.6477466, 41.9458724], "geometry": {"coordinates": [[-85.6477466, 41.9458724], [-85.64793, 41.945805], [-85.6480183, 41.9456719], [-85.6480294, 41.9455996], [-85.6480185, 41.9447787], [-85.6480097, 41.9441136], [-85.6479747, 41.9440825]], "type": "LineString"}, "id": "1179", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Loren Avenue", "oneway": null, "osm_id": 203968026, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6332888, 41.9456871, -85.626832, 41.954677], "geometry": {"coordinates": [[-85.6332888, 41.9456871], [-85.6328948, 41.9462374], [-85.631422, 41.948294], [-85.63102, 41.948805], [-85.6308961, 41.9490425], [-85.630773, 41.949209], [-85.63005, 41.95016], [-85.629423, 41.951016], [-85.629252, 41.951256], [-85.629126, 41.951489], [-85.628991, 41.951704], [-85.628689, 41.952112], [-85.628313, 41.952666], [-85.627687, 41.953529], [-85.627394, 41.953947], [-85.627287, 41.954128], [-85.626832, 41.954677]], "type": "LineString"}, "id": "1181", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Water Street", "oneway": null, "osm_id": 17967730, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.631852, 41.9257224, -85.6255481, 41.9429465], "geometry": {"coordinates": [[-85.6255481, 41.9257224], [-85.6256655, 41.9261001], [-85.625685, 41.926163], [-85.6257845, 41.9264872], [-85.626047, 41.92737], [-85.6263285, 41.928331], [-85.62663, 41.929251], [-85.6269, 41.930199], [-85.627008, 41.930642], [-85.627029, 41.930775], [-85.627041, 41.930946], [-85.6270379, 41.9311746], [-85.6270421, 41.931671], [-85.6270441, 41.9321659], [-85.627073, 41.93319], [-85.627055, 41.934206], [-85.627053, 41.9352031], [-85.627089, 41.9361884], [-85.627084, 41.936804], [-85.627104, 41.936914], [-85.627156, 41.937026], [-85.6272406, 41.9371672], [-85.627317, 41.93723], [-85.627422, 41.937312], [-85.6276, 41.937412], [-85.627754, 41.937504], [-85.6278206, 41.9375655], [-85.627883, 41.937623], [-85.627984, 41.93773], [-85.6280534, 41.9378226], [-85.6282245, 41.938051], [-85.629033, 41.93913], [-85.6296235, 41.939922], [-85.6297342, 41.9400783], [-85.6302265, 41.9407499], [-85.6304899, 41.9411092], [-85.6309241, 41.9417016], [-85.630986, 41.941786], [-85.6310312, 41.9418474], [-85.631194, 41.9420689], [-85.6315379, 41.9425368], [-85.631594, 41.942613], [-85.631852, 41.9429465]], "type": "LineString"}, "id": "1182", "properties": {"__folium_color": "purple", "bridge": null, "highway": "secondary", "layer": null, "name": "South Main Street", "oneway": null, "osm_id": 17966462, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632182, 41.9490123, -85.6320229, 41.961493], "geometry": {"coordinates": [[-85.632182, 41.961493], [-85.6321716, 41.9606811], [-85.6321612, 41.959859], [-85.6321505, 41.9590251], [-85.6321452, 41.958604], [-85.6321405, 41.9584004], [-85.6321351, 41.9581654], [-85.6321281, 41.9578611], [-85.6321178, 41.9574105], [-85.6321108, 41.95592], [-85.6320962, 41.9547609], [-85.6320952, 41.954685], [-85.6320941, 41.9545984], [-85.6320827, 41.9537069], [-85.6320668, 41.9524531], [-85.6320505, 41.951174], [-85.6320344, 41.9499109], [-85.6320229, 41.9490123]], "type": "LineString"}, "id": "1188", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Walnut Street", "oneway": null, "osm_id": 17965402, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.614204, 41.953696, -85.614195, 41.954754], "geometry": {"coordinates": [[-85.614204, 41.953696], [-85.6142, 41.953978], [-85.614195, 41.954754]], "type": "LineString"}, "id": "1192", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Orchard Drive", "oneway": null, "osm_id": 17965151, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.632801, 41.9440586, -85.6322992, 41.9442766], "geometry": {"coordinates": [[-85.6322992, 41.9442766], [-85.6323999, 41.9442471], [-85.6324925, 41.9442136], [-85.632685, 41.9441169], [-85.632801, 41.9440586]], "type": "LineString"}, "id": "1193", "properties": {"__folium_color": "purple", "bridge": null, "highway": "primary", "layer": null, "name": "East Michigan Avenue", "oneway": null, "osm_id": 847427773, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6272406, 41.9371672, -85.6235488, 41.9371726], "geometry": {"coordinates": [[-85.6235488, 41.9371726], [-85.6247949, 41.9371708], [-85.6257369, 41.9371694], [-85.62642, 41.9371684], [-85.6265186, 41.9371683], [-85.6267423, 41.9371679], [-85.6272406, 41.9371672]], "type": "LineString"}, "id": "1196", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "East Buck Street", "oneway": null, "osm_id": 17966681, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.6159249, 41.9577578, -85.6157358, 41.959364], "geometry": {"coordinates": [[-85.6159142, 41.9577578], [-85.61592, 41.9581603], [-85.6159249, 41.9585901], [-85.6159249, 41.9589533], [-85.6158923, 41.959089], [-85.6157358, 41.959364]], "type": "LineString"}, "id": "1198", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Manistee River Road", "oneway": null, "osm_id": 17967743, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}, {"bbox": [-85.62569, 41.938166, -85.6173696, 41.9381886], "geometry": {"coordinates": [[-85.6173696, 41.9381886], [-85.6179654, 41.938187], [-85.6189467, 41.9381843], [-85.620013, 41.9381814], [-85.6211299, 41.9381784], [-85.62232, 41.9381751], [-85.6235512, 41.9381718], [-85.6248019, 41.9381684], [-85.62569, 41.938166]], "type": "LineString"}, "id": "1199", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Canal Street", "oneway": null, "osm_id": 17965778, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " geo_json_752bbba6ad7e1a9487ed2629b174b7fe.bindTooltip(\n", + " geo_json_e66724324d62300b102dc9a9ac6d809e.bindTooltip(\n", " function(layer){\n", " let div = L.DomUtil.create('div');\n", " \n", @@ -646,13 +646,13 @@ " ,{"className": "foliumtooltip", "sticky": true});\n", " \n", " \n", - " geo_json_752bbba6ad7e1a9487ed2629b174b7fe.addTo(map_985e5e38d41657e0a041db13c65fc04c);\n", + " geo_json_e66724324d62300b102dc9a9ac6d809e.addTo(map_1363a1a7a6772887a56e33105d61a7a6);\n", " \n", "</script>\n", "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, "execution_count": 7, @@ -681,14 +681,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "Roads: (242, 12)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Points: (4960, 3)\n" + "Roads: (280, 12)\n", + "Points: (5996, 3)\n" ] }, { @@ -744,9 +738,9 @@ " \n", " \n", " 4\n", - " 17964573\n", - " residential\n", - " POINT (-85.65606 41.94811)\n", + " 17962479\n", + " primary\n", + " POINT (-85.65830 41.92582)\n", " \n", " \n", "\n", @@ -758,7 +752,7 @@ "1 17967640 residential POINT (-85.65155 41.95379)\n", "2 17967640 residential POINT (-85.65149 41.95394)\n", "3 17967640 residential POINT (-85.65142 41.95408)\n", - "4 17964573 residential POINT (-85.65606 41.94811)" + "4 17962479 primary POINT (-85.65830 41.92582)" ] }, "execution_count": 8, @@ -809,7 +803,7 @@ " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_ec33ee37b441a8c47086230ec967eadb {\n", + " #map_d49744d1341eec4132e73b3dc7651001 {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", @@ -839,95 +833,95 @@ "<body>\n", " \n", " \n", - " <div class="folium-map" id="map_ec33ee37b441a8c47086230ec967eadb" ></div>\n", + " <div class="folium-map" id="map_d49744d1341eec4132e73b3dc7651001" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_ec33ee37b441a8c47086230ec967eadb = L.map(\n", - " "map_ec33ee37b441a8c47086230ec967eadb",\n", + " var map_d49744d1341eec4132e73b3dc7651001 = L.map(\n", + " "map_d49744d1341eec4132e73b3dc7651001",\n", " {\n", - " center: [41.946049900000006, -85.63238944262436],\n", + " center: [41.94594145, -85.63291774262436],\n", " crs: L.CRS.EPSG3857,\n", " zoom: 10,\n", " zoomControl: true,\n", " preferCanvas: false,\n", " }\n", " );\n", - " L.control.scale().addTo(map_ec33ee37b441a8c47086230ec967eadb);\n", + " L.control.scale().addTo(map_d49744d1341eec4132e73b3dc7651001);\n", "\n", " \n", "\n", " \n", " \n", - " var tile_layer_5ed5d75866f44cbac4c1649991233fdd = L.tileLayer(\n", + " var tile_layer_929f2d4ec53d561e341222305876b2e7 = L.tileLayer(\n", " "https://tile.openstreetmap.org/{z}/{x}/{y}.png",\n", " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", " );\n", " \n", " \n", - " tile_layer_5ed5d75866f44cbac4c1649991233fdd.addTo(map_ec33ee37b441a8c47086230ec967eadb);\n", + " tile_layer_929f2d4ec53d561e341222305876b2e7.addTo(map_d49744d1341eec4132e73b3dc7651001);\n", " \n", " \n", - " map_ec33ee37b441a8c47086230ec967eadb.fitBounds(\n", - " [[41.925597, -85.65893099999998], [41.9665028, -85.60584788524874]],\n", + " map_d49744d1341eec4132e73b3dc7651001.fitBounds(\n", + " [[41.9253801, -85.6599876], [41.9665028, -85.60584788524874]],\n", " {}\n", " );\n", " \n", " \n", - " function geo_json_2cdcf49f814bc75c93779633485d3cb2_styler(feature) {\n", + " function geo_json_59a4635817baf5c4c25f789f1467dc68_styler(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"color": "red", "fillColor": "red", "fillOpacity": 0.5, "weight": 2};\n", " }\n", " }\n", - " function geo_json_2cdcf49f814bc75c93779633485d3cb2_highlighter(feature) {\n", + " function geo_json_59a4635817baf5c4c25f789f1467dc68_highlighter(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.75};\n", " }\n", " }\n", - " function geo_json_2cdcf49f814bc75c93779633485d3cb2_pointToLayer(feature, latlng) {\n", + " function geo_json_59a4635817baf5c4c25f789f1467dc68_pointToLayer(feature, latlng) {\n", " var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};\n", " \n", - " let style = geo_json_2cdcf49f814bc75c93779633485d3cb2_styler(feature)\n", + " let style = geo_json_59a4635817baf5c4c25f789f1467dc68_styler(feature)\n", " Object.assign(opts, style)\n", " \n", " return new L.CircleMarker(latlng, opts)\n", " }\n", "\n", - " function geo_json_2cdcf49f814bc75c93779633485d3cb2_onEachFeature(feature, layer) {\n", + " function geo_json_59a4635817baf5c4c25f789f1467dc68_onEachFeature(feature, layer) {\n", " layer.on({\n", " mouseout: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " geo_json_2cdcf49f814bc75c93779633485d3cb2.resetStyle(e.target);\n", + " geo_json_59a4635817baf5c4c25f789f1467dc68.resetStyle(e.target);\n", " }\n", " },\n", " mouseover: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " const highlightStyle = geo_json_2cdcf49f814bc75c93779633485d3cb2_highlighter(e.target.feature)\n", + " const highlightStyle = geo_json_59a4635817baf5c4c25f789f1467dc68_highlighter(e.target.feature)\n", " e.target.setStyle(highlightStyle);\n", " }\n", " },\n", " });\n", " };\n", - " var geo_json_2cdcf49f814bc75c93779633485d3cb2 = L.geoJson(null, {\n", - " onEachFeature: geo_json_2cdcf49f814bc75c93779633485d3cb2_onEachFeature,\n", + " var geo_json_59a4635817baf5c4c25f789f1467dc68 = L.geoJson(null, {\n", + " onEachFeature: geo_json_59a4635817baf5c4c25f789f1467dc68_onEachFeature,\n", " \n", - " style: geo_json_2cdcf49f814bc75c93779633485d3cb2_styler,\n", - " pointToLayer: geo_json_2cdcf49f814bc75c93779633485d3cb2_pointToLayer,\n", + " style: geo_json_59a4635817baf5c4c25f789f1467dc68_styler,\n", + " pointToLayer: geo_json_59a4635817baf5c4c25f789f1467dc68_pointToLayer,\n", " });\n", "\n", - " function geo_json_2cdcf49f814bc75c93779633485d3cb2_add (data) {\n", - " geo_json_2cdcf49f814bc75c93779633485d3cb2\n", + " function geo_json_59a4635817baf5c4c25f789f1467dc68_add (data) {\n", + " geo_json_59a4635817baf5c4c25f789f1467dc68\n", " .addData(data);\n", " }\n", - " geo_json_2cdcf49f814bc75c93779633485d3cb2_add({"bbox": [-85.65893099999998, 41.925597, -85.60584788524874, 41.9665028], "features": [{"bbox": [-85.651611, 41.953638999999995, -85.651611, 41.953638999999995], "geometry": {"coordinates": [-85.651611, 41.953638999999995], "type": "Point"}, "id": "0", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967640}, "type": "Feature"}, {"bbox": [-85.65154849999999, 41.953787500518985, -85.65154849999999, 41.953787500518985], "geometry": {"coordinates": [-85.65154849999999, 41.953787500518985], "type": "Point"}, "id": "1", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967640}, "type": "Feature"}, {"bbox": [-85.651486, 41.95393600069198, -85.651486, 41.95393600069198], "geometry": {"coordinates": [-85.651486, 41.95393600069198], "type": "Point"}, "id": "2", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967640}, "type": "Feature"}, {"bbox": [-85.65142349999998, 41.95408450051899, -85.65142349999998, 41.95408450051899], "geometry": {"coordinates": [-85.65142349999998, 41.95408450051899], "type": "Point"}, "id": "3", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967640}, "type": "Feature"}, {"bbox": [-85.656065, 41.948108000000005, -85.656065, 41.948108000000005], "geometry": {"coordinates": [-85.656065, 41.948108000000005], "type": "Point"}, "id": "4", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.65606299999999, 41.94825816755101, -85.65606299999999, 41.94825816755101], "geometry": {"coordinates": [-85.65606299999999, 41.94825816755101], "type": "Point"}, "id": "5", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.656061, 41.94840833474827, -85.656061, 41.94840833474827], "geometry": {"coordinates": [-85.656061, 41.94840833474827], "type": "Point"}, "id": "6", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.656059, 41.94855850159181, -85.656059, 41.94855850159181], "geometry": {"coordinates": [-85.656059, 41.94855850159181], "type": "Point"}, "id": "7", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.656057, 41.94870866808161, -85.656057, 41.94870866808161], "geometry": {"coordinates": [-85.656057, 41.94870866808161], "type": "Point"}, "id": "8", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.656055, 41.94885883421766, -85.656055, 41.94885883421766], "geometry": {"coordinates": [-85.656055, 41.94885883421766], "type": "Point"}, "id": "9", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.6557398, 41.93249809999999, -85.6557398, 41.93249809999999], "geometry": {"coordinates": [-85.6557398, 41.93249809999999], "type": "Point"}, "id": "10", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65573451043039, 41.93236443015765, -85.65573451043039, 41.93236443015765], "geometry": {"coordinates": [-85.65573451043039, 41.93236443015765], "type": "Point"}, "id": "11", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65572922086078, 41.93223076003517, -85.65572922086078, 41.93223076003517], "geometry": {"coordinates": [-85.65572922086078, 41.93223076003517], "type": "Point"}, "id": "12", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65571529363838, 41.93209750241432, -85.65571529363838, 41.93209750241432], "geometry": {"coordinates": [-85.65571529363838, 41.93209750241432], "type": "Point"}, "id": "13", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65569755024156, 41.93196442688527, -85.65569755024156, 41.93196442688527], "geometry": {"coordinates": [-85.65569755024156, 41.93196442688527], "type": "Point"}, "id": "14", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.6556868344206, 41.93183098268071, -85.6556868344206, 41.93183098268071], "geometry": {"coordinates": [-85.6556868344206, 41.93183098268071], "type": "Point"}, "id": "15", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.6556793175045, 41.9316973705044, -85.6556793175045, 41.9316973705044], "geometry": {"coordinates": [-85.6556793175045, 41.9316973705044], "type": "Point"}, "id": "16", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65567294009387, 41.93156374096243, -85.65567294009387, 41.93156374096243], "geometry": {"coordinates": [-85.65567294009387, 41.93156374096243], "type": "Point"}, "id": "17", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65567321422435, 41.93143001140691, -85.65567321422435, 41.93143001140691], "geometry": {"coordinates": [-85.65567321422435, 41.93143001140691], "type": "Point"}, "id": "18", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65567348835482, 41.93129628157102, -85.65567348835482, 41.93129628157102], "geometry": {"coordinates": [-85.65567348835482, 41.93129628157102], "type": "Point"}, "id": "19", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.6556737624853, 41.93116255145476, -85.6556737624853, 41.93116255145476], "geometry": {"coordinates": [-85.6556737624853, 41.93116255145476], "type": "Point"}, "id": "20", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65567403661579, 41.93102882105814, -85.65567403661579, 41.93102882105814], "geometry": {"coordinates": [-85.65567403661579, 41.93102882105814], "type": "Point"}, "id": "21", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.6556731626017, 41.930895092626855, -85.6556731626017, 41.930895092626855], "geometry": {"coordinates": [-85.6556731626017, 41.930895092626855], "type": "Point"}, "id": "22", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65567194327085, 41.930761364590644, -85.65567194327085, 41.930761364590644], "geometry": {"coordinates": [-85.65567194327085, 41.930761364590644], "type": "Point"}, "id": "23", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65567072394002, 41.930627636274075, -85.65567072394002, 41.930627636274075], "geometry": {"coordinates": [-85.65567072394002, 41.930627636274075], "type": "Point"}, "id": "24", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.6556695046092, 41.930493907677146, -85.6556695046092, 41.930493907677146], "geometry": {"coordinates": [-85.6556695046092, 41.930493907677146], "type": "Point"}, "id": "25", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65566827757742, 41.9303601788389, -85.65566827757742, 41.9303601788389], "geometry": {"coordinates": [-85.65566827757742, 41.9303601788389], "type": "Point"}, "id": "26", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65566704798118, 41.930226449733304, -85.65566704798118, 41.930226449733304], "geometry": {"coordinates": [-85.65566704798118, 41.930226449733304], "type": "Point"}, "id": "27", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65566581838495, 41.930092720347346, -85.65566581838495, 41.930092720347346], "geometry": {"coordinates": [-85.65566581838495, 41.930092720347346], "type": "Point"}, "id": "28", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65566458878871, 41.92995899068103, -85.65566458878871, 41.92995899068103], "geometry": {"coordinates": [-85.65566458878871, 41.92995899068103], "type": "Point"}, "id": "29", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65566335919247, 41.929825260734376, -85.65566335919247, 41.929825260734376], "geometry": {"coordinates": [-85.65566335919247, 41.929825260734376], "type": "Point"}, "id": "30", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.65566212959622, 41.929691530507355, -85.65566212959622, 41.929691530507355], "geometry": {"coordinates": [-85.65566212959622, 41.929691530507355], "type": "Point"}, "id": "31", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 884351099}, "type": "Feature"}, {"bbox": [-85.6500738, 41.92697, -85.6500738, 41.92697], "geometry": {"coordinates": [-85.6500738, 41.92697], "type": "Point"}, "id": "32", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671993}, "type": "Feature"}, {"bbox": [-85.6502598346439, 41.927020665834945, -85.6502598346439, 41.927020665834945], "geometry": {"coordinates": [-85.6502598346439, 41.927020665834945], "type": "Point"}, "id": "33", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671993}, "type": "Feature"}, {"bbox": [-85.65046124095275, 41.92701847067096, -85.65046124095275, 41.92701847067096], "geometry": {"coordinates": [-85.65046124095275, 41.92701847067096], "type": "Point"}, "id": "34", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671993}, "type": "Feature"}, {"bbox": [-85.65066264726158, 41.927016275506894, -85.65066264726158, 41.927016275506894], "geometry": {"coordinates": [-85.65066264726158, 41.927016275506894], "type": "Point"}, "id": "35", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671993}, "type": "Feature"}, {"bbox": [-85.65086405357042, 41.92701408034276, -85.65086405357042, 41.92701408034276], "geometry": {"coordinates": [-85.65086405357042, 41.92701408034276], "type": "Point"}, "id": "36", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671993}, "type": "Feature"}, {"bbox": [-85.65106545987925, 41.92701188517854, -85.65106545987925, 41.92701188517854], "geometry": {"coordinates": [-85.65106545987925, 41.92701188517854], "type": "Point"}, "id": "37", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671993}, "type": "Feature"}, {"bbox": [-85.65126676925505, 41.9270077755866, -85.65126676925505, 41.9270077755866], "geometry": {"coordinates": [-85.65126676925505, 41.9270077755866], "type": "Point"}, "id": "38", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671993}, "type": "Feature"}, {"bbox": [-85.65893099999998, 41.94896099999999, -85.65893099999998, 41.94896099999999], "geometry": {"coordinates": [-85.65893099999998, 41.94896099999999], "type": "Point"}, "id": "39", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65877489405366, 41.949029716505656, -85.65877489405366, 41.949029716505656], "geometry": {"coordinates": [-85.65877489405366, 41.949029716505656], "type": "Point"}, "id": "40", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65862421684606, 41.94910249371395, -85.65862421684606, 41.94910249371395], "geometry": {"coordinates": [-85.65862421684606, 41.94910249371395], "type": "Point"}, "id": "41", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65844316070255, 41.94911078349047, -85.65844316070255, 41.94911078349047], "geometry": {"coordinates": [-85.65844316070255, 41.94911078349047], "type": "Point"}, "id": "42", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.658262104559, 41.949119073265905, -85.658262104559, 41.949119073265905], "geometry": {"coordinates": [-85.658262104559, 41.949119073265905], "type": "Point"}, "id": "43", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6580810484155, 41.94912736304027, -85.6580810484155, 41.94912736304027], "geometry": {"coordinates": [-85.6580810484155, 41.94912736304027], "type": "Point"}, "id": "44", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65789999227196, 41.94913565281355, -85.65789999227196, 41.94913565281355], "geometry": {"coordinates": [-85.65789999227196, 41.94913565281355], "type": "Point"}, "id": "45", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65771893612843, 41.949143942585756, -85.65771893612843, 41.949143942585756], "geometry": {"coordinates": [-85.65771893612843, 41.949143942585756], "type": "Point"}, "id": "46", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6575378799849, 41.94915223235689, -85.6575378799849, 41.94915223235689], "geometry": {"coordinates": [-85.6575378799849, 41.94915223235689], "type": "Point"}, "id": "47", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65735682384138, 41.94916052212693, -85.65735682384138, 41.94916052212693], "geometry": {"coordinates": [-85.65735682384138, 41.94916052212693], "type": "Point"}, "id": "48", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65717576769785, 41.9491688118959, -85.65717576769785, 41.9491688118959], "geometry": {"coordinates": [-85.65717576769785, 41.9491688118959], "type": "Point"}, "id": "49", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65699471155433, 41.9491771016638, -85.65699471155433, 41.9491771016638], "geometry": {"coordinates": [-85.65699471155433, 41.9491771016638], "type": "Point"}, "id": "50", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6568136554108, 41.94918539143061, -85.6568136554108, 41.94918539143061], "geometry": {"coordinates": [-85.6568136554108, 41.94918539143061], "type": "Point"}, "id": "51", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65663781374397, 41.94921150165324, -85.65663781374397, 41.94921150165324], "geometry": {"coordinates": [-85.65663781374397, 41.94921150165324], "type": "Point"}, "id": "52", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65646850019297, 41.94925992166319, -85.65646850019297, 41.94925992166319], "geometry": {"coordinates": [-85.65646850019297, 41.94925992166319], "type": "Point"}, "id": "53", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65629918664197, 41.94930834163638, -85.65629918664197, 41.94930834163638], "geometry": {"coordinates": [-85.65629918664197, 41.94930834163638], "type": "Point"}, "id": "54", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65612987309095, 41.94935676157278, -85.65612987309095, 41.94935676157278], "geometry": {"coordinates": [-85.65612987309095, 41.94935676157278], "type": "Point"}, "id": "55", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65596055953995, 41.94940518147241, -85.65596055953995, 41.94940518147241], "geometry": {"coordinates": [-85.65596055953995, 41.94940518147241], "type": "Point"}, "id": "56", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65579124598894, 41.94945360133526, -85.65579124598894, 41.94945360133526], "geometry": {"coordinates": [-85.65579124598894, 41.94945360133526], "type": "Point"}, "id": "57", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6556260263921, 41.94950517915525, -85.6556260263921, 41.94950517915525], "geometry": {"coordinates": [-85.6556260263921, 41.94950517915525], "type": "Point"}, "id": "58", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65555478936473, 41.94962925309599, -85.65555478936473, 41.94962925309599], "geometry": {"coordinates": [-85.65555478936473, 41.94962925309599], "type": "Point"}, "id": "59", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65548355233737, 41.94975332679523, -85.65548355233737, 41.94975332679523], "geometry": {"coordinates": [-85.65548355233737, 41.94975332679523], "type": "Point"}, "id": "60", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65541231531, 41.949877400252994, -85.65541231531, 41.949877400252994], "geometry": {"coordinates": [-85.65541231531, 41.949877400252994], "type": "Point"}, "id": "61", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65534107828263, 41.95000147346925, -85.65534107828263, 41.95000147346925], "geometry": {"coordinates": [-85.65534107828263, 41.95000147346925], "type": "Point"}, "id": "62", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65526984125528, 41.95012554644401, -85.65526984125528, 41.95012554644401], "geometry": {"coordinates": [-85.65526984125528, 41.95012554644401], "type": "Point"}, "id": "63", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65519860422792, 41.950249619177285, -85.65519860422792, 41.950249619177285], "geometry": {"coordinates": [-85.65519860422792, 41.950249619177285], "type": "Point"}, "id": "64", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65512736720055, 41.95037369166906, -85.65512736720055, 41.95037369166906], "geometry": {"coordinates": [-85.65512736720055, 41.95037369166906], "type": "Point"}, "id": "65", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65505613017318, 41.950497763919344, -85.65505613017318, 41.950497763919344], "geometry": {"coordinates": [-85.65505613017318, 41.950497763919344], "type": "Point"}, "id": "66", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65498489314582, 41.95062183592812, -85.65498489314582, 41.95062183592812], "geometry": {"coordinates": [-85.65498489314582, 41.95062183592812], "type": "Point"}, "id": "67", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65486514304652, 41.95071983751229, -85.65486514304652, 41.95071983751229], "geometry": {"coordinates": [-85.65486514304652, 41.95071983751229], "type": "Point"}, "id": "68", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65472912020059, 41.95080909423159, -85.65472912020059, 41.95080909423159], "geometry": {"coordinates": [-85.65472912020059, 41.95080909423159], "type": "Point"}, "id": "69", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65459309735466, 41.95089835082591, -85.65459309735466, 41.95089835082591], "geometry": {"coordinates": [-85.65459309735466, 41.95089835082591], "type": "Point"}, "id": "70", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65445794269256, 41.950987916925726, -85.65445794269256, 41.950987916925726], "geometry": {"coordinates": [-85.65445794269256, 41.950987916925726], "type": "Point"}, "id": "71", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65444952000689, 41.951122680716246, -85.65444952000689, 41.951122680716246], "geometry": {"coordinates": [-85.65444952000689, 41.951122680716246], "type": "Point"}, "id": "72", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65444109732121, 41.95125744422185, -85.65444109732121, 41.95125744422185], "geometry": {"coordinates": [-85.65444109732121, 41.95125744422185], "type": "Point"}, "id": "73", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65443267463552, 41.95139220744253, -85.65443267463552, 41.95139220744253], "geometry": {"coordinates": [-85.65443267463552, 41.95139220744253], "type": "Point"}, "id": "74", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65442425194985, 41.9515269703783, -85.65442425194985, 41.9515269703783], "geometry": {"coordinates": [-85.65442425194985, 41.9515269703783], "type": "Point"}, "id": "75", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65441582926415, 41.95166173302916, -85.65441582926415, 41.95166173302916], "geometry": {"coordinates": [-85.65441582926415, 41.95166173302916], "type": "Point"}, "id": "76", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65440740657849, 41.9517964953951, -85.65440740657849, 41.9517964953951], "geometry": {"coordinates": [-85.65440740657849, 41.9517964953951], "type": "Point"}, "id": "77", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65438640488168, 41.951929413372966, -85.65438640488168, 41.951929413372966], "geometry": {"coordinates": [-85.65438640488168, 41.951929413372966], "type": "Point"}, "id": "78", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6543254308945, 41.9520564710838, -85.6543254308945, 41.9520564710838], "geometry": {"coordinates": [-85.6543254308945, 41.9520564710838], "type": "Point"}, "id": "79", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65426445690734, 41.95218352854136, -85.65426445690734, 41.95218352854136], "geometry": {"coordinates": [-85.65426445690734, 41.95218352854136], "type": "Point"}, "id": "80", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65418682878905, 41.95230353287919, -85.65418682878905, 41.95230353287919], "geometry": {"coordinates": [-85.65418682878905, 41.95230353287919], "type": "Point"}, "id": "81", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6540710152274, 41.95240736584577, -85.6540710152274, 41.95240736584577], "geometry": {"coordinates": [-85.6540710152274, 41.95240736584577], "type": "Point"}, "id": "82", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65395520166572, 41.9525111986432, -85.65395520166572, 41.9525111986432], "geometry": {"coordinates": [-85.65395520166572, 41.9525111986432], "type": "Point"}, "id": "83", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65383232821675, 41.952609789001386, -85.65383232821675, 41.952609789001386], "geometry": {"coordinates": [-85.65383232821675, 41.952609789001386], "type": "Point"}, "id": "84", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65369289183211, 41.95269608053194, -85.65369289183211, 41.95269608053194], "geometry": {"coordinates": [-85.65369289183211, 41.95269608053194], "type": "Point"}, "id": "85", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65355345544744, 41.95278237194567, -85.65355345544744, 41.95278237194567], "geometry": {"coordinates": [-85.65355345544744, 41.95278237194567], "type": "Point"}, "id": "86", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65341401906278, 41.95286866324258, -85.65341401906278, 41.95286866324258], "geometry": {"coordinates": [-85.65341401906278, 41.95286866324258], "type": "Point"}, "id": "87", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65327458267812, 41.952954954422665, -85.65327458267812, 41.952954954422665], "geometry": {"coordinates": [-85.65327458267812, 41.952954954422665], "type": "Point"}, "id": "88", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65313514629345, 41.95304124548592, -85.65313514629345, 41.95304124548592], "geometry": {"coordinates": [-85.65313514629345, 41.95304124548592], "type": "Point"}, "id": "89", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65300396480262, 41.95313436977434, -85.65300396480262, 41.95313436977434], "geometry": {"coordinates": [-85.65300396480262, 41.95313436977434], "type": "Point"}, "id": "90", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65287371535796, 41.95322826546668, -85.65287371535796, 41.95322826546668], "geometry": {"coordinates": [-85.65287371535796, 41.95322826546668], "type": "Point"}, "id": "91", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6527434659133, 41.95332216102069, -85.6527434659133, 41.95332216102069], "geometry": {"coordinates": [-85.6527434659133, 41.95332216102069], "type": "Point"}, "id": "92", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65261321646864, 41.95341605643637, -85.65261321646864, 41.95341605643637], "geometry": {"coordinates": [-85.65261321646864, 41.95341605643637], "type": "Point"}, "id": "93", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65246985594476, 41.95349626929779, -85.65246985594476, 41.95349626929779], "geometry": {"coordinates": [-85.65246985594476, 41.95349626929779], "type": "Point"}, "id": "94", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65230800152634, 41.953557182281315, -85.65230800152634, 41.953557182281315], "geometry": {"coordinates": [-85.65230800152634, 41.953557182281315], "type": "Point"}, "id": "95", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65214614710793, 41.953618095206636, -85.65214614710793, 41.953618095206636], "geometry": {"coordinates": [-85.65214614710793, 41.953618095206636], "type": "Point"}, "id": "96", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65197372220902, 41.95364450771256, -85.65197372220902, 41.95364450771256], "geometry": {"coordinates": [-85.65197372220902, 41.95364450771256], "type": "Point"}, "id": "97", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6517923611045, 41.95364175385635, -85.6517923611045, 41.95364175385635], "geometry": {"coordinates": [-85.6517923611045, 41.95364175385635], "type": "Point"}, "id": "98", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.63517799999998, 41.9356158, -85.63517799999998, 41.9356158], "geometry": {"coordinates": [-85.63517799999998, 41.9356158], "type": "Point"}, "id": "99", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63534885222681, 41.93557821129846, -85.63534885222681, 41.93557821129846], "geometry": {"coordinates": [-85.63534885222681, 41.93557821129846], "type": "Point"}, "id": "100", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63529888147761, 41.93550594643293, -85.63529888147761, 41.93550594643293], "geometry": {"coordinates": [-85.63529888147761, 41.93550594643293], "type": "Point"}, "id": "101", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63518579670773, 41.93560619871854, -85.63518579670773, 41.93560619871854], "geometry": {"coordinates": [-85.63518579670773, 41.93560619871854], "type": "Point"}, "id": "102", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63508323738054, 41.93571602518021, -85.63508323738054, 41.93571602518021], "geometry": {"coordinates": [-85.63508323738054, 41.93571602518021], "type": "Point"}, "id": "103", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63500602877261, 41.93583365624638, -85.63500602877261, 41.93583365624638], "geometry": {"coordinates": [-85.63500602877261, 41.93583365624638], "type": "Point"}, "id": "104", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63496151065982, 41.9359614336568, -85.63496151065982, 41.9359614336568], "geometry": {"coordinates": [-85.63496151065982, 41.9359614336568], "type": "Point"}, "id": "105", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63485479915629, 41.93606907900705, -85.63485479915629, 41.93606907900705], "geometry": {"coordinates": [-85.63485479915629, 41.93606907900705], "type": "Point"}, "id": "106", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63475838546648, 41.936180827306515, -85.63475838546648, 41.936180827306515], "geometry": {"coordinates": [-85.63475838546648, 41.936180827306515], "type": "Point"}, "id": "107", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63471205465082, 41.93630896940118, -85.63471205465082, 41.93630896940118], "geometry": {"coordinates": [-85.63471205465082, 41.93630896940118], "type": "Point"}, "id": "108", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63469419044675, 41.93644170341377, -85.63469419044675, 41.93644170341377], "geometry": {"coordinates": [-85.63469419044675, 41.93644170341377], "type": "Point"}, "id": "109", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63463407129302, 41.93656775371005, -85.63463407129302, 41.93656775371005], "geometry": {"coordinates": [-85.63463407129302, 41.93656775371005], "type": "Point"}, "id": "110", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63459982392617, 41.93669748019375, -85.63459982392617, 41.93669748019375], "geometry": {"coordinates": [-85.63459982392617, 41.93669748019375], "type": "Point"}, "id": "111", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63456741566552, 41.93682813840623, -85.63456741566552, 41.93682813840623], "geometry": {"coordinates": [-85.63456741566552, 41.93682813840623], "type": "Point"}, "id": "112", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63451890519012, 41.93695692620062, -85.63451890519012, 41.93695692620062], "geometry": {"coordinates": [-85.63451890519012, 41.93695692620062], "type": "Point"}, "id": "113", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63449433758431, 41.937089236773545, -85.63449433758431, 41.937089236773545], "geometry": {"coordinates": [-85.63449433758431, 41.937089236773545], "type": "Point"}, "id": "114", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63447894188886, 41.937222261845704, -85.63447894188886, 41.937222261845704], "geometry": {"coordinates": [-85.63447894188886, 41.937222261845704], "type": "Point"}, "id": "115", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63448314525462, 41.93735597234993, -85.63448314525462, 41.93735597234993], "geometry": {"coordinates": [-85.63448314525462, 41.93735597234993], "type": "Point"}, "id": "116", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63456933938062, 41.937470076960935, -85.63456933938062, 41.937470076960935], "geometry": {"coordinates": [-85.63456933938062, 41.937470076960935], "type": "Point"}, "id": "117", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63468366523864, 41.937572380927556, -85.63468366523864, 41.937572380927556], "geometry": {"coordinates": [-85.63468366523864, 41.937572380927556], "type": "Point"}, "id": "118", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63476887464705, 41.93767795589618, -85.63476887464705, 41.93767795589618], "geometry": {"coordinates": [-85.63476887464705, 41.93767795589618], "type": "Point"}, "id": "119", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63473812344753, 41.937806879921105, -85.63473812344753, 41.937806879921105], "geometry": {"coordinates": [-85.63473812344753, 41.937806879921105], "type": "Point"}, "id": "120", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63464583641367, 41.937921663156004, -85.63464583641367, 41.937921663156004], "geometry": {"coordinates": [-85.63464583641367, 41.937921663156004], "type": "Point"}, "id": "121", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63449867986296, 41.93798776729247, -85.63449867986296, 41.93798776729247], "geometry": {"coordinates": [-85.63449867986296, 41.93798776729247], "type": "Point"}, "id": "122", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63432565656024, 41.938021417395206, -85.63432565656024, 41.938021417395206], "geometry": {"coordinates": [-85.63432565656024, 41.938021417395206], "type": "Point"}, "id": "123", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63415265151923, 41.938048695934015, -85.63415265151923, 41.938048695934015], "geometry": {"coordinates": [-85.63415265151923, 41.938048695934015], "type": "Point"}, "id": "124", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63403081132904, 41.938147049821374, -85.63403081132904, 41.938147049821374], "geometry": {"coordinates": [-85.63403081132904, 41.938147049821374], "type": "Point"}, "id": "125", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63396015082623, 41.93826788202492, -85.63396015082623, 41.93826788202492], "geometry": {"coordinates": [-85.63396015082623, 41.93826788202492], "type": "Point"}, "id": "126", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63389698484355, 41.93839298381476, -85.63389698484355, 41.93839298381476], "geometry": {"coordinates": [-85.63389698484355, 41.93839298381476], "type": "Point"}, "id": "127", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63382431693465, 41.938515302078216, -85.63382431693465, 41.938515302078216], "geometry": {"coordinates": [-85.63382431693465, 41.938515302078216], "type": "Point"}, "id": "128", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63374900002518, 41.93863674635349, -85.63374900002518, 41.93863674635349], "geometry": {"coordinates": [-85.63374900002518, 41.93863674635349], "type": "Point"}, "id": "129", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63367368311569, 41.93875819039749, -85.63367368311569, 41.93875819039749], "geometry": {"coordinates": [-85.63367368311569, 41.93875819039749], "type": "Point"}, "id": "130", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6335749251652, 41.93886964357241, -85.6335749251652, 41.93886964357241], "geometry": {"coordinates": [-85.6335749251652, 41.93886964357241], "type": "Point"}, "id": "131", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63348118298948, 41.9389833611941, -85.63348118298948, 41.9389833611941], "geometry": {"coordinates": [-85.63348118298948, 41.9389833611941], "type": "Point"}, "id": "132", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6334020089082, 41.939103376376075, -85.6334020089082, 41.939103376376075], "geometry": {"coordinates": [-85.6334020089082, 41.939103376376075], "type": "Point"}, "id": "133", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63335586523256, 41.939232639948806, -85.63335586523256, 41.939232639948806], "geometry": {"coordinates": [-85.63335586523256, 41.939232639948806], "type": "Point"}, "id": "134", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6333097215569, 41.939361903259524, -85.6333097215569, 41.939361903259524], "geometry": {"coordinates": [-85.6333097215569, 41.939361903259524], "type": "Point"}, "id": "135", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63326574204198, 41.939491579153724, -85.63326574204198, 41.939491579153724], "geometry": {"coordinates": [-85.63326574204198, 41.939491579153724], "type": "Point"}, "id": "136", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63322255969659, 41.93962140685573, -85.63322255969659, 41.93962140685573], "geometry": {"coordinates": [-85.63322255969659, 41.93962140685573], "type": "Point"}, "id": "137", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63321671668004, 41.93975307701126, -85.63321671668004, 41.93975307701126], "geometry": {"coordinates": [-85.63321671668004, 41.93975307701126], "type": "Point"}, "id": "138", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63329466194978, 41.93987166946866, -85.63329466194978, 41.93987166946866], "geometry": {"coordinates": [-85.63329466194978, 41.93987166946866], "type": "Point"}, "id": "139", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63337146740574, 41.93999190309843, -85.63337146740574, 41.93999190309843], "geometry": {"coordinates": [-85.63337146740574, 41.93999190309843], "type": "Point"}, "id": "140", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63332553732941, 41.940119183362704, -85.63332553732941, 41.940119183362704], "geometry": {"coordinates": [-85.63332553732941, 41.940119183362704], "type": "Point"}, "id": "141", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63327234794525, 41.94024690615301, -85.63327234794525, 41.94024690615301], "geometry": {"coordinates": [-85.63327234794525, 41.94024690615301], "type": "Point"}, "id": "142", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63324082360879, 41.94037688484029, -85.63324082360879, 41.94037688484029], "geometry": {"coordinates": [-85.63324082360879, 41.94037688484029], "type": "Point"}, "id": "143", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63326836686296, 41.940509046701614, -85.63326836686296, 41.940509046701614], "geometry": {"coordinates": [-85.63326836686296, 41.940509046701614], "type": "Point"}, "id": "144", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63329971704918, 41.94064069807358, -85.63329971704918, 41.94064069807358], "geometry": {"coordinates": [-85.63329971704918, 41.94064069807358], "type": "Point"}, "id": "145", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6333359187908, 41.94077169895637, -85.6333359187908, 41.94077169895637], "geometry": {"coordinates": [-85.6333359187908, 41.94077169895637], "type": "Point"}, "id": "146", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63337596003365, 41.94090195870047, -85.63337596003365, 41.94090195870047], "geometry": {"coordinates": [-85.63337596003365, 41.94090195870047], "type": "Point"}, "id": "147", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63342993507042, 41.94102952952121, -85.63342993507042, 41.94102952952121], "geometry": {"coordinates": [-85.63342993507042, 41.94102952952121], "type": "Point"}, "id": "148", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63353749383378, 41.941134599821986, -85.63353749383378, 41.941134599821986], "geometry": {"coordinates": [-85.63353749383378, 41.941134599821986], "type": "Point"}, "id": "149", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63366900484485, 41.94122521320555, -85.63366900484485, 41.94122521320555], "geometry": {"coordinates": [-85.63366900484485, 41.94122521320555], "type": "Point"}, "id": "150", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63381456118302, 41.94130310033964, -85.63381456118302, 41.94130310033964], "geometry": {"coordinates": [-85.63381456118302, 41.94130310033964], "type": "Point"}, "id": "151", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63396886627098, 41.94137174666639, -85.63396886627098, 41.94137174666639], "geometry": {"coordinates": [-85.63396886627098, 41.94137174666639], "type": "Point"}, "id": "152", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63412317135895, 41.941440392919255, -85.63412317135895, 41.941440392919255], "geometry": {"coordinates": [-85.63412317135895, 41.941440392919255], "type": "Point"}, "id": "153", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63427747644693, 41.94150903909821, -85.63427747644693, 41.94150903909821], "geometry": {"coordinates": [-85.63427747644693, 41.94150903909821], "type": "Point"}, "id": "154", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63434957339614, 41.94162300396493, -85.63434957339614, 41.94162300396493], "geometry": {"coordinates": [-85.63434957339614, 41.94162300396493], "type": "Point"}, "id": "155", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63439823169416, 41.94175112493157, -85.63439823169416, 41.94175112493157], "geometry": {"coordinates": [-85.63439823169416, 41.94175112493157], "type": "Point"}, "id": "156", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63451609805237, 41.94184005961291, -85.63451609805237, 41.94184005961291], "geometry": {"coordinates": [-85.63451609805237, 41.94184005961291], "type": "Point"}, "id": "157", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63449081254602, 41.941972467871615, -85.63449081254602, 41.941972467871615], "geometry": {"coordinates": [-85.63449081254602, 41.941972467871615], "type": "Point"}, "id": "158", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63452578550189, 41.94210111437307, -85.63452578550189, 41.94210111437307], "geometry": {"coordinates": [-85.63452578550189, 41.94210111437307], "type": "Point"}, "id": "159", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6345810154533, 41.94222836786838, -85.6345810154533, 41.94222836786838], "geometry": {"coordinates": [-85.6345810154533, 41.94222836786838], "type": "Point"}, "id": "160", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63464752104767, 41.94235261913994, -85.63464752104767, 41.94235261913994], "geometry": {"coordinates": [-85.63464752104767, 41.94235261913994], "type": "Point"}, "id": "161", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63471402664206, 41.942476870169386, -85.63471402664206, 41.942476870169386], "geometry": {"coordinates": [-85.63471402664206, 41.942476870169386], "type": "Point"}, "id": "162", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63478053223642, 41.9426011209567, -85.63478053223642, 41.9426011209567], "geometry": {"coordinates": [-85.63478053223642, 41.9426011209567], "type": "Point"}, "id": "163", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63484684798561, 41.942725427513125, -85.63484684798561, 41.942725427513125], "geometry": {"coordinates": [-85.63484684798561, 41.942725427513125], "type": "Point"}, "id": "164", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63498608578605, 41.94278683646896, -85.63498608578605, 41.94278683646896], "geometry": {"coordinates": [-85.63498608578605, 41.94278683646896], "type": "Point"}, "id": "165", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63512160223503, 41.94285116838881, -85.63512160223503, 41.94285116838881], "geometry": {"coordinates": [-85.63512160223503, 41.94285116838881], "type": "Point"}, "id": "166", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6351863915985, 41.94297586489011, -85.6351863915985, 41.94297586489011], "geometry": {"coordinates": [-85.6351863915985, 41.94297586489011], "type": "Point"}, "id": "167", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63524075728391, 41.943103337917584, -85.63524075728391, 41.943103337917584], "geometry": {"coordinates": [-85.63524075728391, 41.943103337917584], "type": "Point"}, "id": "168", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63529548491675, 41.94323051925003, -85.63529548491675, 41.94323051925003], "geometry": {"coordinates": [-85.63529548491675, 41.94323051925003], "type": "Point"}, "id": "169", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6354412263595, 41.943296284807595, -85.6354412263595, 41.943296284807595], "geometry": {"coordinates": [-85.6354412263595, 41.943296284807595], "type": "Point"}, "id": "170", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63561883207542, 41.94331710198514, -85.63561883207542, 41.94331710198514], "geometry": {"coordinates": [-85.63561883207542, 41.94331710198514], "type": "Point"}, "id": "171", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63579839413006, 41.94332294833224, -85.63579839413006, 41.94332294833224], "geometry": {"coordinates": [-85.63579839413006, 41.94332294833224], "type": "Point"}, "id": "172", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6359780651188, 41.943327961063765, -85.6359780651188, 41.943327961063765], "geometry": {"coordinates": [-85.6359780651188, 41.943327961063765], "type": "Point"}, "id": "173", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63615773610756, 41.94333297379491, -85.63615773610756, 41.94333297379491], "geometry": {"coordinates": [-85.63615773610756, 41.94333297379491], "type": "Point"}, "id": "174", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63633678008668, 41.94334146242752, -85.63633678008668, 41.94334146242752], "geometry": {"coordinates": [-85.63633678008668, 41.94334146242752], "type": "Point"}, "id": "175", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63651187290655, 41.94337185476866, -85.63651187290655, 41.94337185476866], "geometry": {"coordinates": [-85.63651187290655, 41.94337185476866], "type": "Point"}, "id": "176", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6366691203383, 41.94343434685909, -85.6366691203383, 41.94343434685909], "geometry": {"coordinates": [-85.6366691203383, 41.94343434685909], "type": "Point"}, "id": "177", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63682198362093, 41.94350475298586, -85.63682198362093, 41.94350475298586], "geometry": {"coordinates": [-85.63682198362093, 41.94350475298586], "type": "Point"}, "id": "178", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63695724183619, 41.943591724297384, -85.63695724183619, 41.943591724297384], "geometry": {"coordinates": [-85.63695724183619, 41.943591724297384], "type": "Point"}, "id": "179", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63708431015858, 41.94368633362738, -85.63708431015858, 41.94368633362738], "geometry": {"coordinates": [-85.63708431015858, 41.94368633362738], "type": "Point"}, "id": "180", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63722901480132, 41.94376318259139, -85.63722901480132, 41.94376318259139], "geometry": {"coordinates": [-85.63722901480132, 41.94376318259139], "type": "Point"}, "id": "181", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6374018765439, 41.9437989808329, -85.6374018765439, 41.9437989808329], "geometry": {"coordinates": [-85.6374018765439, 41.9437989808329], "type": "Point"}, "id": "182", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63755099892839, 41.94386692570438, -85.63755099892839, 41.94386692570438], "geometry": {"coordinates": [-85.63755099892839, 41.94386692570438], "type": "Point"}, "id": "183", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.637650471087, 41.943977620136685, -85.637650471087, 41.943977620136685], "geometry": {"coordinates": [-85.637650471087, 41.943977620136685], "type": "Point"}, "id": "184", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63773295076298, 41.944096451470635, -85.63773295076298, 41.944096451470635], "geometry": {"coordinates": [-85.63773295076298, 41.944096451470635], "type": "Point"}, "id": "185", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63787555126616, 41.9441657369898, -85.63787555126616, 41.9441657369898], "geometry": {"coordinates": [-85.63787555126616, 41.9441657369898], "type": "Point"}, "id": "186", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63804417483145, 41.94421214639329, -85.63804417483145, 41.94421214639329], "geometry": {"coordinates": [-85.63804417483145, 41.94421214639329], "type": "Point"}, "id": "187", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63821279839671, 41.94425855576301, -85.63821279839671, 41.94425855576301], "geometry": {"coordinates": [-85.63821279839671, 41.94425855576301], "type": "Point"}, "id": "188", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63838206288817, 41.94430364656256, -85.63838206288817, 41.94430364656256], "geometry": {"coordinates": [-85.63838206288817, 41.94430364656256], "type": "Point"}, "id": "189", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63850906201748, 41.94439346655944, -85.63850906201748, 41.94439346655944], "geometry": {"coordinates": [-85.63850906201748, 41.94439346655944], "type": "Point"}, "id": "190", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63862189386747, 41.94449757015069, -85.63862189386747, 41.94449757015069], "geometry": {"coordinates": [-85.63862189386747, 41.94449757015069], "type": "Point"}, "id": "191", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63870946509913, 41.944610380401954, -85.63870946509913, 41.944610380401954], "geometry": {"coordinates": [-85.63870946509913, 41.944610380401954], "type": "Point"}, "id": "192", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63871220462224, 41.94474353970934, -85.63871220462224, 41.94474353970934], "geometry": {"coordinates": [-85.63871220462224, 41.94474353970934], "type": "Point"}, "id": "193", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63873186247159, 41.94487532083576, -85.63873186247159, 41.94487532083576], "geometry": {"coordinates": [-85.63873186247159, 41.94487532083576], "type": "Point"}, "id": "194", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63876694661344, 41.945006257298516, -85.63876694661344, 41.945006257298516], "geometry": {"coordinates": [-85.63876694661344, 41.945006257298516], "type": "Point"}, "id": "195", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.63877663671411, 41.94513979367147, -85.63877663671411, 41.94513979367147], "geometry": {"coordinates": [-85.63877663671411, 41.94513979367147], "type": "Point"}, "id": "196", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972937}, "type": "Feature"}, {"bbox": [-85.6283312, 41.947065599999995, -85.6283312, 41.947065599999995], "geometry": {"coordinates": [-85.6283312, 41.947065599999995], "type": "Point"}, "id": "197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150826}, "type": "Feature"}, {"bbox": [-85.6242808, 41.9606501, -85.6242808, 41.9606501], "geometry": {"coordinates": [-85.6242808, 41.9606501], "type": "Point"}, "id": "198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.6244511513517, 41.96071056093584, -85.6244511513517, 41.96071056093584], "geometry": {"coordinates": [-85.6244511513517, 41.96071056093584], "type": "Point"}, "id": "199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62462126491752, 41.96077139102627, -85.62462126491752, 41.96077139102627], "geometry": {"coordinates": [-85.62462126491752, 41.96077139102627], "type": "Point"}, "id": "200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62479137848332, 41.96083222105863, -85.62479137848332, 41.96083222105863], "geometry": {"coordinates": [-85.62479137848332, 41.96083222105863], "type": "Point"}, "id": "201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62496149204915, 41.960893051032926, -85.62496149204915, 41.960893051032926], "geometry": {"coordinates": [-85.62496149204915, 41.960893051032926], "type": "Point"}, "id": "202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62513957891947, 41.96090385125327, -85.62513957891947, 41.96090385125327], "geometry": {"coordinates": [-85.62513957891947, 41.96090385125327], "type": "Point"}, "id": "203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62502221951078, 41.9608104666999, -85.62502221951078, 41.9608104666999], "geometry": {"coordinates": [-85.62502221951078, 41.9608104666999], "type": "Point"}, "id": "204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62485262452687, 41.96074884465585, -85.62485262452687, 41.96074884465585], "geometry": {"coordinates": [-85.62485262452687, 41.96074884465585], "type": "Point"}, "id": "205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62468307850122, 41.960687144621545, -85.62468307850122, 41.960687144621545], "geometry": {"coordinates": [-85.62468307850122, 41.960687144621545], "type": "Point"}, "id": "206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62451353247558, 41.9606254445275, -85.62451353247558, 41.9606254445275], "geometry": {"coordinates": [-85.62451353247558, 41.9606254445275], "type": "Point"}, "id": "207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.61523799999999, 41.94746799999999, -85.61523799999999, 41.94746799999999], "geometry": {"coordinates": [-85.61523799999999, 41.94746799999999], "type": "Point"}, "id": "208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61542045662834, 41.94746702473074, -85.61542045662834, 41.94746702473074], "geometry": {"coordinates": [-85.61542045662834, 41.94746702473074], "type": "Point"}, "id": "209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61560291325668, 41.947466049461475, -85.61560291325668, 41.947466049461475], "geometry": {"coordinates": [-85.61560291325668, 41.947466049461475], "type": "Point"}, "id": "210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61578536988505, 41.947465074192195, -85.61578536988505, 41.947465074192195], "geometry": {"coordinates": [-85.61578536988505, 41.947465074192195], "type": "Point"}, "id": "211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6159678265134, 41.947464098922886, -85.6159678265134, 41.947464098922886], "geometry": {"coordinates": [-85.6159678265134, 41.947464098922886], "type": "Point"}, "id": "212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6161502831316, 41.94746312261324, -85.6161502831316, 41.94746312261324], "geometry": {"coordinates": [-85.6161502831316, 41.94746312261324], "type": "Point"}, "id": "213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61633273963066, 41.94746213405448, -85.61633273963066, 41.94746213405448], "geometry": {"coordinates": [-85.61633273963066, 41.94746213405448], "type": "Point"}, "id": "214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61651519612974, 41.94746114549571, -85.61651519612974, 41.94746114549571], "geometry": {"coordinates": [-85.61651519612974, 41.94746114549571], "type": "Point"}, "id": "215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61669765262879, 41.947460156936906, -85.61669765262879, 41.947460156936906], "geometry": {"coordinates": [-85.61669765262879, 41.947460156936906], "type": "Point"}, "id": "216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61688010912785, 41.947459168378096, -85.61688010912785, 41.947459168378096], "geometry": {"coordinates": [-85.61688010912785, 41.947459168378096], "type": "Point"}, "id": "217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61706256573919, 41.94745819138872, -85.61706256573919, 41.94745819138872], "geometry": {"coordinates": [-85.61706256573919, 41.94745819138872], "type": "Point"}, "id": "218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61724502241718, 41.94745722127142, -85.61724502241718, 41.94745722127142], "geometry": {"coordinates": [-85.61724502241718, 41.94745722127142], "type": "Point"}, "id": "219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61742747909518, 41.9474562511541, -85.61742747909518, 41.9474562511541], "geometry": {"coordinates": [-85.61742747909518, 41.9474562511541], "type": "Point"}, "id": "220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6176098127997, 41.9474512653487, -85.6176098127997, 41.9474512653487], "geometry": {"coordinates": [-85.6176098127997, 41.9474512653487], "type": "Point"}, "id": "221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61779219095749, 41.94744844096169, -85.61779219095749, 41.94744844096169], "geometry": {"coordinates": [-85.61779219095749, 41.94744844096169], "type": "Point"}, "id": "222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61797464855692, 41.94744930994091, -85.61797464855692, 41.94744930994091], "geometry": {"coordinates": [-85.61797464855692, 41.94744930994091], "type": "Point"}, "id": "223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61815710615636, 41.9474501789201, -85.61815710615636, 41.9474501789201], "geometry": {"coordinates": [-85.61815710615636, 41.9474501789201], "type": "Point"}, "id": "224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6183395637558, 41.94745104789929, -85.6183395637558, 41.94745104789929], "geometry": {"coordinates": [-85.6183395637558, 41.94745104789929], "type": "Point"}, "id": "225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6185220204466, 41.94745038438498, -85.6185220204466, 41.94745038438498], "geometry": {"coordinates": [-85.6185220204466, 41.94745038438498], "type": "Point"}, "id": "226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61870447694463, 41.94744939572021, -85.61870447694463, 41.94744939572021], "geometry": {"coordinates": [-85.61870447694463, 41.94744939572021], "type": "Point"}, "id": "227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61888693344265, 41.947448407055425, -85.61888693344265, 41.947448407055425], "geometry": {"coordinates": [-85.61888693344265, 41.947448407055425], "type": "Point"}, "id": "228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61906938994069, 41.94744741839063, -85.61906938994069, 41.94744741839063], "geometry": {"coordinates": [-85.61906938994069, 41.94744741839063], "type": "Point"}, "id": "229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61925184643871, 41.94744642972582, -85.61925184643871, 41.94744642972582], "geometry": {"coordinates": [-85.61925184643871, 41.94744642972582], "type": "Point"}, "id": "230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61943430293674, 41.947445441060985, -85.61943430293674, 41.947445441060985], "geometry": {"coordinates": [-85.61943430293674, 41.947445441060985], "type": "Point"}, "id": "231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61961675943476, 41.94744445239614, -85.61961675943476, 41.94744445239614], "geometry": {"coordinates": [-85.61961675943476, 41.94744445239614], "type": "Point"}, "id": "232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61979921593279, 41.947443463731275, -85.61979921593279, 41.947443463731275], "geometry": {"coordinates": [-85.61979921593279, 41.947443463731275], "type": "Point"}, "id": "233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6199816724308, 41.9474424750664, -85.6199816724308, 41.9474424750664], "geometry": {"coordinates": [-85.6199816724308, 41.9474424750664], "type": "Point"}, "id": "234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62016412902908, 41.94744149676637, -85.62016412902908, 41.94744149676637], "geometry": {"coordinates": [-85.62016412902908, 41.94744149676637], "type": "Point"}, "id": "235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62034658576677, 41.94744053287759, -85.62034658576677, 41.94744053287759], "geometry": {"coordinates": [-85.62034658576677, 41.94744053287759], "type": "Point"}, "id": "236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62052904250444, 41.947439568988806, -85.62052904250444, 41.947439568988806], "geometry": {"coordinates": [-85.62052904250444, 41.947439568988806], "type": "Point"}, "id": "237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6207114992421, 41.9474386051, -85.6207114992421, 41.9474386051], "geometry": {"coordinates": [-85.6207114992421, 41.9474386051], "type": "Point"}, "id": "238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6208939559798, 41.947437641211174, -85.6208939559798, 41.947437641211174], "geometry": {"coordinates": [-85.6208939559798, 41.947437641211174], "type": "Point"}, "id": "239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62107641271747, 41.947436677322344, -85.62107641271747, 41.947436677322344], "geometry": {"coordinates": [-85.62107641271747, 41.947436677322344], "type": "Point"}, "id": "240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62125886945515, 41.947435713433485, -85.62125886945515, 41.947435713433485], "geometry": {"coordinates": [-85.62125886945515, 41.947435713433485], "type": "Point"}, "id": "241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62144132603167, 41.94743473288205, -85.62144132603167, 41.94743473288205], "geometry": {"coordinates": [-85.62144132603167, 41.94743473288205], "type": "Point"}, "id": "242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6216237825305, 41.947433744301456, -85.6216237825305, 41.947433744301456], "geometry": {"coordinates": [-85.6216237825305, 41.947433744301456], "type": "Point"}, "id": "243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62180623902937, 41.94743275572084, -85.62180623902937, 41.94743275572084], "geometry": {"coordinates": [-85.62180623902937, 41.94743275572084], "type": "Point"}, "id": "244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62198869552822, 41.947431767140216, -85.62198869552822, 41.947431767140216], "geometry": {"coordinates": [-85.62198869552822, 41.947431767140216], "type": "Point"}, "id": "245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62217115202705, 41.94743077855956, -85.62217115202705, 41.94743077855956], "geometry": {"coordinates": [-85.62217115202705, 41.94743077855956], "type": "Point"}, "id": "246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62235360852591, 41.947429789978905, -85.62235360852591, 41.947429789978905], "geometry": {"coordinates": [-85.62235360852591, 41.947429789978905], "type": "Point"}, "id": "247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62253606502478, 41.947428801398225, -85.62253606502478, 41.947428801398225], "geometry": {"coordinates": [-85.62253606502478, 41.947428801398225], "type": "Point"}, "id": "248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62271852152362, 41.94742781281754, -85.62271852152362, 41.94742781281754], "geometry": {"coordinates": [-85.62271852152362, 41.94742781281754], "type": "Point"}, "id": "249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6229009780551, 41.947426827576365, -85.6229009780551, 41.947426827576365], "geometry": {"coordinates": [-85.6229009780551, 41.947426827576365], "type": "Point"}, "id": "250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62308343459557, 41.94742584325132, -85.62308343459557, 41.94742584325132], "geometry": {"coordinates": [-85.62308343459557, 41.94742584325132], "type": "Point"}, "id": "251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.623265891136, 41.94742485892625, -85.623265891136, 41.94742485892625], "geometry": {"coordinates": [-85.623265891136, 41.94742485892625], "type": "Point"}, "id": "252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62344834767644, 41.94742387460117, -85.62344834767644, 41.94742387460117], "geometry": {"coordinates": [-85.62344834767644, 41.94742387460117], "type": "Point"}, "id": "253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62363080421689, 41.94742289027608, -85.62363080421689, 41.94742289027608], "geometry": {"coordinates": [-85.62363080421689, 41.94742289027608], "type": "Point"}, "id": "254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62381326075733, 41.94742190595097, -85.62381326075733, 41.94742190595097], "geometry": {"coordinates": [-85.62381326075733, 41.94742190595097], "type": "Point"}, "id": "255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62399571729777, 41.94742092162584, -85.62399571729777, 41.94742092162584], "geometry": {"coordinates": [-85.62399571729777, 41.94742092162584], "type": "Point"}, "id": "256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62417817383822, 41.94741993730071, -85.62417817383822, 41.94741993730071], "geometry": {"coordinates": [-85.62417817383822, 41.94741993730071], "type": "Point"}, "id": "257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62436063037866, 41.94741895297555, -85.62436063037866, 41.94741895297555], "geometry": {"coordinates": [-85.62436063037866, 41.94741895297555], "type": "Point"}, "id": "258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62454308691912, 41.947417968650385, -85.62454308691912, 41.947417968650385], "geometry": {"coordinates": [-85.62454308691912, 41.947417968650385], "type": "Point"}, "id": "259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62472554345956, 41.947416984325194, -85.62472554345956, 41.947416984325194], "geometry": {"coordinates": [-85.62472554345956, 41.947416984325194], "type": "Point"}, "id": "260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6186943, 41.95500010000001, -85.6186943, 41.95500010000001], "geometry": {"coordinates": [-85.6186943, 41.95500010000001], "type": "Point"}, "id": "261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6186601960284, 41.9551323619432, -85.6186601960284, 41.9551323619432], "geometry": {"coordinates": [-85.6186601960284, 41.9551323619432], "type": "Point"}, "id": "262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61859394100807, 41.95525421109502, -85.61859394100807, 41.95525421109502], "geometry": {"coordinates": [-85.61859394100807, 41.95525421109502], "type": "Point"}, "id": "263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61848448431111, 41.95536123080357, -85.61848448431111, 41.95536123080357], "geometry": {"coordinates": [-85.61848448431111, 41.95536123080357], "type": "Point"}, "id": "264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61835925769218, 41.95545856380948, -85.61835925769218, 41.95545856380948], "geometry": {"coordinates": [-85.61835925769218, 41.95545856380948], "type": "Point"}, "id": "265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61823403107323, 41.95555589666676, -85.61823403107323, 41.95555589666676], "geometry": {"coordinates": [-85.61823403107323, 41.95555589666676], "type": "Point"}, "id": "266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61816409191071, 41.9556785193793, -85.61816409191071, 41.9556785193793], "geometry": {"coordinates": [-85.61816409191071, 41.9556785193793], "type": "Point"}, "id": "267", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61814747505196, 41.95581048969501, -85.61814747505196, 41.95581048969501], "geometry": {"coordinates": [-85.61814747505196, 41.95581048969501], "type": "Point"}, "id": "268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61815418367186, 41.95594510447826, -85.61815418367186, 41.95594510447826], "geometry": {"coordinates": [-85.61815418367186, 41.95594510447826], "type": "Point"}, "id": "269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6181608922918, 41.956079718977165, -85.6181608922918, 41.956079718977165], "geometry": {"coordinates": [-85.6181608922918, 41.956079718977165], "type": "Point"}, "id": "270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61819388998897, 41.95621207703575, -85.61819388998897, 41.95621207703575], "geometry": {"coordinates": [-85.61819388998897, 41.95621207703575], "type": "Point"}, "id": "271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61822858875301, 41.95634428883243, -85.61822858875301, 41.95634428883243], "geometry": {"coordinates": [-85.61822858875301, 41.95634428883243], "type": "Point"}, "id": "272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61829993969897, 41.95646698857916, -85.61829993969897, 41.95646698857916], "geometry": {"coordinates": [-85.61829993969897, 41.95646698857916], "type": "Point"}, "id": "273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61838338918963, 41.95658654834662, -85.61838338918963, 41.95658654834662], "geometry": {"coordinates": [-85.61838338918963, 41.95658654834662], "type": "Point"}, "id": "274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61848017501143, 41.956700196798856, -85.61848017501143, 41.956700196798856], "geometry": {"coordinates": [-85.61848017501143, 41.956700196798856], "type": "Point"}, "id": "275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61858188728752, 41.95681166148919, -85.61858188728752, 41.95681166148919], "geometry": {"coordinates": [-85.61858188728752, 41.95681166148919], "type": "Point"}, "id": "276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61863965874427, 41.95693885461878, -85.61863965874427, 41.95693885461878], "geometry": {"coordinates": [-85.61863965874427, 41.95693885461878], "type": "Point"}, "id": "277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61866945159966, 41.95707026838711, -85.61866945159966, 41.95707026838711], "geometry": {"coordinates": [-85.61866945159966, 41.95707026838711], "type": "Point"}, "id": "278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867087487111, 41.95720496876452, -85.61867087487111, 41.95720496876452], "geometry": {"coordinates": [-85.61867087487111, 41.95720496876452], "type": "Point"}, "id": "279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867229814254, 41.95733966885721, -85.61867229814254, 41.95733966885721], "geometry": {"coordinates": [-85.61867229814254, 41.95733966885721], "type": "Point"}, "id": "280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867372141401, 41.95747436866518, -85.61867372141401, 41.95747436866518], "geometry": {"coordinates": [-85.61867372141401, 41.95747436866518], "type": "Point"}, "id": "281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867514468547, 41.95760906818846, -85.61867514468547, 41.95760906818846], "geometry": {"coordinates": [-85.61867514468547, 41.95760906818846], "type": "Point"}, "id": "282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867656795691, 41.95774376742703, -85.61867656795691, 41.95774376742703], "geometry": {"coordinates": [-85.61867656795691, 41.95774376742703], "type": "Point"}, "id": "283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61868181828108, 41.95787841325108, -85.61868181828108, 41.95787841325108], "geometry": {"coordinates": [-85.61868181828108, 41.95787841325108], "type": "Point"}, "id": "284", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6186871567508, 41.95801305756694, -85.6186871567508, 41.95801305756694], "geometry": {"coordinates": [-85.6186871567508, 41.95801305756694], "type": "Point"}, "id": "285", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61869244260457, 41.958147702433074, -85.61869244260457, 41.958147702433074], "geometry": {"coordinates": [-85.61869244260457, 41.958147702433074], "type": "Point"}, "id": "286", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61869483120041, 41.95828239297965, -85.61869483120041, 41.95828239297965], "geometry": {"coordinates": [-85.61869483120041, 41.95828239297965], "type": "Point"}, "id": "287", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61869721979623, 41.95841708324154, -85.61869721979623, 41.95841708324154], "geometry": {"coordinates": [-85.61869721979623, 41.95841708324154], "type": "Point"}, "id": "288", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6186996150811, 41.95855177312702, -85.6186996150811, 41.95855177312702], "geometry": {"coordinates": [-85.6186996150811, 41.95855177312702], "type": "Point"}, "id": "289", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61870390754056, 41.95868643670579, -85.61870390754056, 41.95868643670579], "geometry": {"coordinates": [-85.61870390754056, 41.95868643670579], "type": "Point"}, "id": "290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6181613, 41.95608790000001, -85.6181613, 41.95608790000001], "geometry": {"coordinates": [-85.6181613, 41.95608790000001], "type": "Point"}, "id": "291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965854}, "type": "Feature"}, {"bbox": [-85.6179407, 41.95608650000001, -85.6179407, 41.95608650000001], "geometry": {"coordinates": [-85.6179407, 41.95608650000001], "type": "Point"}, "id": "292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965854}, "type": "Feature"}, {"bbox": [-85.62590499999999, 41.9665028, -85.62590499999999, 41.9665028], "geometry": {"coordinates": [-85.62590499999999, 41.9665028], "type": "Point"}, "id": "293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.6259214867995, 41.96636367239965, -85.6259214867995, 41.96636367239965], "geometry": {"coordinates": [-85.6259214867995, 41.96636367239965], "type": "Point"}, "id": "294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.6259966846127, 41.96623845231297, -85.6259966846127, 41.96623845231297], "geometry": {"coordinates": [-85.6259966846127, 41.96623845231297], "type": "Point"}, "id": "295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62615215686534, 41.96616402535249, -85.62615215686534, 41.96616402535249], "geometry": {"coordinates": [-85.62615215686534, 41.96616402535249], "type": "Point"}, "id": "296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.6263371935799, 41.96614086532545, -85.6263371935799, 41.96614086532545], "geometry": {"coordinates": [-85.6263371935799, 41.96614086532545], "type": "Point"}, "id": "297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62652543808014, 41.9661399, -85.62652543808014, 41.9661399], "geometry": {"coordinates": [-85.62652543808014, 41.9661399], "type": "Point"}, "id": "298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62671375199483, 41.9661399, -85.62671375199483, 41.9661399], "geometry": {"coordinates": [-85.62671375199483, 41.9661399], "type": "Point"}, "id": "299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62690206590948, 41.9661399, -85.62690206590948, 41.9661399], "geometry": {"coordinates": [-85.62690206590948, 41.9661399], "type": "Point"}, "id": "300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62709022699381, 41.9661446014704, -85.62709022699381, 41.9661446014704], "geometry": {"coordinates": [-85.62709022699381, 41.9661446014704], "type": "Point"}, "id": "301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62727490358138, 41.96616854695202, -85.62727490358138, 41.96616854695202], "geometry": {"coordinates": [-85.62727490358138, 41.96616854695202], "type": "Point"}, "id": "302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.61339599999998, 41.951640000000005, -85.61339599999998, 41.951640000000005], "geometry": {"coordinates": [-85.61339599999998, 41.951640000000005], "type": "Point"}, "id": "303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61340281086169, 41.95177573089629, -85.61340281086169, 41.95177573089629], "geometry": {"coordinates": [-85.61340281086169, 41.95177573089629], "type": "Point"}, "id": "304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61340962172338, 41.95191146150354, -85.61340962172338, 41.95191146150354], "geometry": {"coordinates": [-85.61340962172338, 41.95191146150354], "type": "Point"}, "id": "305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.6134125856231, 41.952047266642595, -85.6134125856231, 41.952047266642595], "geometry": {"coordinates": [-85.6134125856231, 41.952047266642595], "type": "Point"}, "id": "306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61341532329715, 41.952183075892236, -85.61341532329715, 41.952183075892236], "geometry": {"coordinates": [-85.61341532329715, 41.952183075892236], "type": "Point"}, "id": "307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61341806097118, 41.95231888485252, -85.61341806097118, 41.95231888485252], "geometry": {"coordinates": [-85.61341806097118, 41.95231888485252], "type": "Point"}, "id": "308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61342079864525, 41.95245469352343, -85.61342079864525, 41.95245469352343], "geometry": {"coordinates": [-85.61342079864525, 41.95245469352343], "type": "Point"}, "id": "309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61342353631929, 41.95259050190498, -85.61342353631929, 41.95259050190498], "geometry": {"coordinates": [-85.61342353631929, 41.95259050190498], "type": "Point"}, "id": "310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61342627399334, 41.95272630999716, -85.61342627399334, 41.95272630999716], "geometry": {"coordinates": [-85.61342627399334, 41.95272630999716], "type": "Point"}, "id": "311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.6134290116674, 41.952862117799974, -85.6134290116674, 41.952862117799974], "geometry": {"coordinates": [-85.6134290116674, 41.952862117799974], "type": "Point"}, "id": "312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343174934147, 41.95299792531344, -85.61343174934147, 41.95299792531344], "geometry": {"coordinates": [-85.61343174934147, 41.95299792531344], "type": "Point"}, "id": "313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343448701551, 41.95313373253752, -85.61343448701551, 41.95313373253752], "geometry": {"coordinates": [-85.61343448701551, 41.95313373253752], "type": "Point"}, "id": "314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343722468956, 41.95326953947225, -85.61343722468956, 41.95326953947225], "geometry": {"coordinates": [-85.61343722468956, 41.95326953947225], "type": "Point"}, "id": "315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343799999999, 41.9534053570564, -85.61343799999999, 41.9534053570564], "geometry": {"coordinates": [-85.61343799999999, 41.9534053570564], "type": "Point"}, "id": "316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343799999999, 41.953541178672914, -85.61343799999999, 41.953541178672914], "geometry": {"coordinates": [-85.61343799999999, 41.953541178672914], "type": "Point"}, "id": "317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.6297548, 41.9581373, -85.6297548, 41.9581373], "geometry": {"coordinates": [-85.6297548, 41.9581373], "type": "Point"}, "id": "318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.62975153972678, 41.957995201829206, -85.62975153972678, 41.957995201829206], "geometry": {"coordinates": [-85.62975153972678, 41.957995201829206], "type": "Point"}, "id": "319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.62974917323103, 41.95785309922216, -85.62974917323103, 41.95785309922216], "geometry": {"coordinates": [-85.62974917323103, 41.95785309922216], "type": "Point"}, "id": "320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.62974911888155, 41.95771097531115, -85.62974911888155, 41.95771097531115], "geometry": {"coordinates": [-85.62974911888155, 41.95771097531115], "type": "Point"}, "id": "321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.62974960469968, 41.95756885473832, -85.62974960469968, 41.95756885473832], "geometry": {"coordinates": [-85.62974960469968, 41.95756885473832], "type": "Point"}, "id": "322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.957426735219144, -85.6297512, 41.957426735219144], "geometry": {"coordinates": [-85.6297512, 41.957426735219144], "type": "Point"}, "id": "323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95728461035153, -85.6297512, 41.95728461035153], "geometry": {"coordinates": [-85.6297512, 41.95728461035153], "type": "Point"}, "id": "324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95714248516695, -85.6297512, 41.95714248516695], "geometry": {"coordinates": [-85.6297512, 41.95714248516695], "type": "Point"}, "id": "325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95700035966541, -85.6297512, 41.95700035966541], "geometry": {"coordinates": [-85.6297512, 41.95700035966541], "type": "Point"}, "id": "326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95685823384691, -85.6297512, 41.95685823384691], "geometry": {"coordinates": [-85.6297512, 41.95685823384691], "type": "Point"}, "id": "327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95671610771144, -85.6297512, 41.95671610771144], "geometry": {"coordinates": [-85.6297512, 41.95671610771144], "type": "Point"}, "id": "328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95657398125902, -85.6297512, 41.95657398125902], "geometry": {"coordinates": [-85.6297512, 41.95657398125902], "type": "Point"}, "id": "329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95643185448964, -85.6297512, 41.95643185448964], "geometry": {"coordinates": [-85.6297512, 41.95643185448964], "type": "Point"}, "id": "330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.9562897274033, -85.6297512, 41.9562897274033], "geometry": {"coordinates": [-85.6297512, 41.9562897274033], "type": "Point"}, "id": "331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.627267, 41.955878, -85.627267, 41.955878], "geometry": {"coordinates": [-85.627267, 41.955878], "type": "Point"}, "id": "332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62743373961109, 41.955933125230224, -85.62743373961109, 41.955933125230224], "geometry": {"coordinates": [-85.62743373961109, 41.955933125230224], "type": "Point"}, "id": "333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.6276004861674, 41.95598823879819, -85.6276004861674, 41.95598823879819], "geometry": {"coordinates": [-85.6276004861674, 41.95598823879819], "type": "Point"}, "id": "334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62776761727315, 41.95604265414785, -85.62776761727315, 41.95604265414785], "geometry": {"coordinates": [-85.62776761727315, 41.95604265414785], "type": "Point"}, "id": "335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62793896845608, 41.95608921415727, -85.62793896845608, 41.95608921415727], "geometry": {"coordinates": [-85.62793896845608, 41.95608921415727], "type": "Point"}, "id": "336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62811309971063, 41.956129777320314, -85.62811309971063, 41.956129777320314], "geometry": {"coordinates": [-85.62811309971063, 41.956129777320314], "type": "Point"}, "id": "337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62829141798291, 41.956149740801195, -85.62829141798291, 41.956149740801195], "geometry": {"coordinates": [-85.62829141798291, 41.956149740801195], "type": "Point"}, "id": "338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62847389105742, 41.95614922343248, -85.62847389105742, 41.95614922343248], "geometry": {"coordinates": [-85.62847389105742, 41.95614922343248], "type": "Point"}, "id": "339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62865636413193, 41.95614870606376, -85.62865636413193, 41.95614870606376], "geometry": {"coordinates": [-85.62865636413193, 41.95614870606376], "type": "Point"}, "id": "340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62883883720642, 41.956148188695046, -85.62883883720642, 41.956148188695046], "geometry": {"coordinates": [-85.62883883720642, 41.956148188695046], "type": "Point"}, "id": "341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62902131028092, 41.95614767132632, -85.62902131028092, 41.95614767132632], "geometry": {"coordinates": [-85.62902131028092, 41.95614767132632], "type": "Point"}, "id": "342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62920378335542, 41.95614715395759, -85.62920378335542, 41.95614715395759], "geometry": {"coordinates": [-85.62920378335542, 41.95614715395759], "type": "Point"}, "id": "343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62938625642994, 41.95614663658886, -85.62938625642994, 41.95614663658886], "geometry": {"coordinates": [-85.62938625642994, 41.95614663658886], "type": "Point"}, "id": "344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62956872859719, 41.956146822146785, -85.62956872859719, 41.956146822146785], "geometry": {"coordinates": [-85.62956872859719, 41.956146822146785], "type": "Point"}, "id": "345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62551969999998, 41.9586443, -85.62551969999998, 41.9586443], "geometry": {"coordinates": [-85.62551969999998, 41.9586443], "type": "Point"}, "id": "346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62535379265213, 41.95858919924258, -85.62535379265213, 41.95858919924258], "geometry": {"coordinates": [-85.62535379265213, 41.95858919924258], "type": "Point"}, "id": "347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62518884968182, 41.95853253573374, -85.62518884968182, 41.95853253573374], "geometry": {"coordinates": [-85.62518884968182, 41.95853253573374], "type": "Point"}, "id": "348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62502449904682, 41.958474912791566, -85.62502449904682, 41.958474912791566], "geometry": {"coordinates": [-85.62502449904682, 41.958474912791566], "type": "Point"}, "id": "349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62486369274504, 41.95841216468293, -85.62486369274504, 41.95841216468293], "geometry": {"coordinates": [-85.62486369274504, 41.95841216468293], "type": "Point"}, "id": "350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62471824518691, 41.95833165715419, -85.62471824518691, 41.95833165715419], "geometry": {"coordinates": [-85.62471824518691, 41.95833165715419], "type": "Point"}, "id": "351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62461259266304, 41.95822234620048, -85.62461259266304, 41.95822234620048], "geometry": {"coordinates": [-85.62461259266304, 41.95822234620048], "type": "Point"}, "id": "352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62453406175187, 41.95810091115455, -85.62453406175187, 41.95810091115455], "geometry": {"coordinates": [-85.62453406175187, 41.95810091115455], "type": "Point"}, "id": "353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62450582680675, 41.957967597655674, -85.62450582680675, 41.957967597655674], "geometry": {"coordinates": [-85.62450582680675, 41.957967597655674], "type": "Point"}, "id": "354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62449672900065, 41.957832646873584, -85.62449672900065, 41.957832646873584], "geometry": {"coordinates": [-85.62449672900065, 41.957832646873584], "type": "Point"}, "id": "355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.6245093711849, 41.95769808157599, -85.6245093711849, 41.95769808157599], "geometry": {"coordinates": [-85.6245093711849, 41.95769808157599], "type": "Point"}, "id": "356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62459455607885, 41.957584388369725, -85.62459455607885, 41.957584388369725], "geometry": {"coordinates": [-85.62459455607885, 41.957584388369725], "type": "Point"}, "id": "357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62475697557078, 41.95752954201162, -85.62475697557078, 41.95752954201162], "geometry": {"coordinates": [-85.62475697557078, 41.95752954201162], "type": "Point"}, "id": "358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62493782299349, 41.95752370011852, -85.62493782299349, 41.95752370011852], "geometry": {"coordinates": [-85.62493782299349, 41.95752370011852], "type": "Point"}, "id": "359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62511947067401, 41.95752130935591, -85.62511947067401, 41.95752130935591], "geometry": {"coordinates": [-85.62511947067401, 41.95752130935591], "type": "Point"}, "id": "360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62530109478836, 41.95751735144541, -85.62530109478836, 41.95751735144541], "geometry": {"coordinates": [-85.62530109478836, 41.95751735144541], "type": "Point"}, "id": "361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62548227959772, 41.95750881194571, -85.62548227959772, 41.95750881194571], "geometry": {"coordinates": [-85.62548227959772, 41.95750881194571], "type": "Point"}, "id": "362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.6256618435603, 41.95748995316795, -85.6256618435603, 41.95748995316795], "geometry": {"coordinates": [-85.6256618435603, 41.95748995316795], "type": "Point"}, "id": "363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62583615653327, 41.95745184322948, -85.62583615653327, 41.95745184322948], "geometry": {"coordinates": [-85.62583615653327, 41.95745184322948], "type": "Point"}, "id": "364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.6260063318739, 41.95740448311456, -85.6260063318739, 41.95740448311456], "geometry": {"coordinates": [-85.6260063318739, 41.95740448311456], "type": "Point"}, "id": "365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62617183064627, 41.95734890907333, -85.62617183064627, 41.95734890907333], "geometry": {"coordinates": [-85.62617183064627, 41.95734890907333], "type": "Point"}, "id": "366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62697859999999, 41.959963699999996, -85.62697859999999, 41.959963699999996], "geometry": {"coordinates": [-85.62697859999999, 41.959963699999996], "type": "Point"}, "id": "367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62678666328199, 41.95996503690868, -85.62678666328199, 41.95996503690868], "geometry": {"coordinates": [-85.62678666328199, 41.95996503690868], "type": "Point"}, "id": "368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.626594726564, 41.95996637381732, -85.626594726564, 41.95996637381732], "geometry": {"coordinates": [-85.626594726564, 41.95996637381732], "type": "Point"}, "id": "369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62640278984597, 41.959967710725955, -85.62640278984597, 41.959967710725955], "geometry": {"coordinates": [-85.62640278984597, 41.959967710725955], "type": "Point"}, "id": "370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62621085312797, 41.95996904763455, -85.62621085312797, 41.95996904763455], "geometry": {"coordinates": [-85.62621085312797, 41.95996904763455], "type": "Point"}, "id": "371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62601891640996, 41.959970384543105, -85.62601891640996, 41.959970384543105], "geometry": {"coordinates": [-85.62601891640996, 41.959970384543105], "type": "Point"}, "id": "372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62582832437299, 41.959982592017795, -85.62582832437299, 41.959982592017795], "geometry": {"coordinates": [-85.62582832437299, 41.959982592017795], "type": "Point"}, "id": "373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62565577579416, 41.96004140617153, -85.62565577579416, 41.96004140617153], "geometry": {"coordinates": [-85.62565577579416, 41.96004140617153], "type": "Point"}, "id": "374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62552585042232, 41.96014523161893, -85.62552585042232, 41.96014523161893], "geometry": {"coordinates": [-85.62552585042232, 41.96014523161893], "type": "Point"}, "id": "375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62543306663764, 41.96026991423279, -85.62543306663764, 41.96026991423279], "geometry": {"coordinates": [-85.62543306663764, 41.96026991423279], "type": "Point"}, "id": "376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62535364817582, 41.96039985562733, -85.62535364817582, 41.96039985562733], "geometry": {"coordinates": [-85.62535364817582, 41.96039985562733], "type": "Point"}, "id": "377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.625274229714, 41.9605297967569, -85.625274229714, 41.9605297967569], "geometry": {"coordinates": [-85.625274229714, 41.9605297967569], "type": "Point"}, "id": "378", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62519481125214, 41.9606597376215, -85.62519481125214, 41.9606597376215], "geometry": {"coordinates": [-85.62519481125214, 41.9606597376215], "type": "Point"}, "id": "379", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62511824399252, 41.9607905866974, -85.62511824399252, 41.9607905866974], "geometry": {"coordinates": [-85.62511824399252, 41.9607905866974], "type": "Point"}, "id": "380", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.63316700000001, 41.96479, -85.63316700000001, 41.96479], "geometry": {"coordinates": [-85.63316700000001, 41.96479], "type": "Point"}, "id": "381", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.63316970000001, 41.964932840640486, -85.63316970000001, 41.964932840640486], "geometry": {"coordinates": [-85.63316970000001, 41.964932840640486], "type": "Point"}, "id": "382", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.63317239999999, 41.96507568096074, -85.63317239999999, 41.96507568096074], "geometry": {"coordinates": [-85.63317239999999, 41.96507568096074], "type": "Point"}, "id": "383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.6331751, 41.96521852096074, -85.6331751, 41.96521852096074], "geometry": {"coordinates": [-85.6331751, 41.96521852096074], "type": "Point"}, "id": "384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.6331778, 41.96536136064049, -85.6331778, 41.96536136064049], "geometry": {"coordinates": [-85.6331778, 41.96536136064049], "type": "Point"}, "id": "385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.6264337, 41.9571608, -85.6264337, 41.9571608], "geometry": {"coordinates": [-85.6264337, 41.9571608], "type": "Point"}, "id": "386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62659752061784, 41.95722328359295, -85.62659752061784, 41.95722328359295], "geometry": {"coordinates": [-85.62659752061784, 41.95722328359295], "type": "Point"}, "id": "387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62676284985288, 41.95728345107455, -85.62676284985288, 41.95728345107455], "geometry": {"coordinates": [-85.62676284985288, 41.95728345107455], "type": "Point"}, "id": "388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62693042083407, 41.95734016320438, -85.62693042083407, 41.95734016320438], "geometry": {"coordinates": [-85.62693042083407, 41.95734016320438], "type": "Point"}, "id": "389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62709989860622, 41.95739365598271, -85.62709989860622, 41.95739365598271], "geometry": {"coordinates": [-85.62709989860622, 41.95739365598271], "type": "Point"}, "id": "390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6272751481085, 41.95743450876097, -85.6272751481085, 41.95743450876097], "geometry": {"coordinates": [-85.6272751481085, 41.95743450876097], "type": "Point"}, "id": "391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62745854489786, 41.95744564444417, -85.62745854489786, 41.95744564444417], "geometry": {"coordinates": [-85.62745854489786, 41.95744564444417], "type": "Point"}, "id": "392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62764257452402, 41.95744713198871, -85.62764257452402, 41.95744713198871], "geometry": {"coordinates": [-85.62764257452402, 41.95744713198871], "type": "Point"}, "id": "393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62782667376042, 41.95744553551111, -85.62782667376042, 41.95744553551111], "geometry": {"coordinates": [-85.62782667376042, 41.95744553551111], "type": "Point"}, "id": "394", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6280107730412, 41.95744394185391, -85.6280107730412, 41.95744394185391], "geometry": {"coordinates": [-85.6280107730412, 41.95744394185391], "type": "Point"}, "id": "395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62819487232194, 41.957442348196665, -85.62819487232194, 41.957442348196665], "geometry": {"coordinates": [-85.62819487232194, 41.957442348196665], "type": "Point"}, "id": "396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62837897239727, 41.95744080801504, -85.62837897239727, 41.95744080801504], "geometry": {"coordinates": [-85.62837897239727, 41.95744080801504], "type": "Point"}, "id": "397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62856307185352, 41.95743922560884, -85.62856307185352, 41.95743922560884], "geometry": {"coordinates": [-85.62856307185352, 41.95743922560884], "type": "Point"}, "id": "398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62874717130978, 41.95743764320258, -85.62874717130978, 41.95743764320258], "geometry": {"coordinates": [-85.62874717130978, 41.95743764320258], "type": "Point"}, "id": "399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62893119529589, 41.95743443289337, -85.62893119529589, 41.95743443289337], "geometry": {"coordinates": [-85.62893119529589, 41.95743443289337], "type": "Point"}, "id": "400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62911529974271, 41.95743321312013, -85.62911529974271, 41.95743321312013], "geometry": {"coordinates": [-85.62911529974271, 41.95743321312013], "type": "Point"}, "id": "401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6292994041895, 41.95743199334686, -85.6292994041895, 41.95743199334686], "geometry": {"coordinates": [-85.6292994041895, 41.95743199334686], "type": "Point"}, "id": "402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62948350863628, 41.95743077357358, -85.62948350863628, 41.95743077357358], "geometry": {"coordinates": [-85.62948350863628, 41.95743077357358], "type": "Point"}, "id": "403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62966761308309, 41.95742955380027, -85.62966761308309, 41.95742955380027], "geometry": {"coordinates": [-85.62966761308309, 41.95742955380027], "type": "Point"}, "id": "404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62985171477324, 41.95742813398562, -85.62985171477324, 41.95742813398562], "geometry": {"coordinates": [-85.62985171477324, 41.95742813398562], "type": "Point"}, "id": "405", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63003581417105, 41.95742654782349, -85.63003581417105, 41.95742654782349], "geometry": {"coordinates": [-85.63003581417105, 41.95742654782349], "type": "Point"}, "id": "406", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63021991356885, 41.957424961661324, -85.63021991356885, 41.957424961661324], "geometry": {"coordinates": [-85.63021991356885, 41.957424961661324], "type": "Point"}, "id": "407", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63040401296668, 41.95742337549911, -85.63040401296668, 41.95742337549911], "geometry": {"coordinates": [-85.63040401296668, 41.95742337549911], "type": "Point"}, "id": "408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63058811236448, 41.95742178933686, -85.63058811236448, 41.95742178933686], "geometry": {"coordinates": [-85.63058811236448, 41.95742178933686], "type": "Point"}, "id": "409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6307722117623, 41.957420203174564, -85.6307722117623, 41.957420203174564], "geometry": {"coordinates": [-85.6307722117623, 41.957420203174564], "type": "Point"}, "id": "410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63095631260835, 41.95741871624738, -85.63095631260835, 41.95741871624738], "geometry": {"coordinates": [-85.63095631260835, 41.95741871624738], "type": "Point"}, "id": "411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63114041603261, 41.95741741391796, -85.63114041603261, 41.95741741391796], "geometry": {"coordinates": [-85.63114041603261, 41.95741741391796], "type": "Point"}, "id": "412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63132451945683, 41.95741611158852, -85.63132451945683, 41.95741611158852], "geometry": {"coordinates": [-85.63132451945683, 41.95741611158852], "type": "Point"}, "id": "413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63150862288106, 41.957414809259056, -85.63150862288106, 41.957414809259056], "geometry": {"coordinates": [-85.63150862288106, 41.957414809259056], "type": "Point"}, "id": "414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6316927263053, 41.95741350692956, -85.6316927263053, 41.95741350692956], "geometry": {"coordinates": [-85.6316927263053, 41.95741350692956], "type": "Point"}, "id": "415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63187682972952, 41.95741220460004, -85.63187682972952, 41.95741220460004], "geometry": {"coordinates": [-85.63187682972952, 41.95741220460004], "type": "Point"}, "id": "416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63206093315377, 41.957410902270496, -85.63206093315377, 41.957410902270496], "geometry": {"coordinates": [-85.63206093315377, 41.957410902270496], "type": "Point"}, "id": "417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63224503067781, 41.957409219223685, -85.63224503067781, 41.957409219223685], "geometry": {"coordinates": [-85.63224503067781, 41.957409219223685], "type": "Point"}, "id": "418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63242912556484, 41.95740736601987, -85.63242912556484, 41.95740736601987], "geometry": {"coordinates": [-85.63242912556484, 41.95740736601987], "type": "Point"}, "id": "419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63261322045189, 41.95740551281601, -85.63261322045189, 41.95740551281601], "geometry": {"coordinates": [-85.63261322045189, 41.95740551281601], "type": "Point"}, "id": "420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6327973153389, 41.95740365961208, -85.6327973153389, 41.95740365961208], "geometry": {"coordinates": [-85.6327973153389, 41.95740365961208], "type": "Point"}, "id": "421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63298141022594, 41.95740180640811, -85.63298141022594, 41.95740180640811], "geometry": {"coordinates": [-85.63298141022594, 41.95740180640811], "type": "Point"}, "id": "422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63316550511296, 41.95739995320408, -85.63316550511296, 41.95739995320408], "geometry": {"coordinates": [-85.63316550511296, 41.95739995320408], "type": "Point"}, "id": "423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6335028, 41.964788600000006, -85.6335028, 41.964788600000006], "geometry": {"coordinates": [-85.6335028, 41.964788600000006], "type": "Point"}, "id": "424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6333188019897, 41.964789367115, -85.6333188019897, 41.964789367115], "geometry": {"coordinates": [-85.6333188019897, 41.964789367115], "type": "Point"}, "id": "425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63313480398214, 41.96479013459156, -85.63313480398214, 41.96479013459156], "geometry": {"coordinates": [-85.63313480398214, 41.96479013459156], "type": "Point"}, "id": "426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63295080598746, 41.964790903772915, -85.63295080598746, 41.964790903772915], "geometry": {"coordinates": [-85.63295080598746, 41.964790903772915], "type": "Point"}, "id": "427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6327668079928, 41.96479167295426, -85.6327668079928, 41.96479167295426], "geometry": {"coordinates": [-85.6327668079928, 41.96479167295426], "type": "Point"}, "id": "428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6325828099981, 41.964792442135604, -85.6325828099981, 41.964792442135604], "geometry": {"coordinates": [-85.6325828099981, 41.964792442135604], "type": "Point"}, "id": "429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63239881200342, 41.96479321131692, -85.63239881200342, 41.96479321131692], "geometry": {"coordinates": [-85.63239881200342, 41.96479321131692], "type": "Point"}, "id": "430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63221481400872, 41.96479398049825, -85.63221481400872, 41.96479398049825], "geometry": {"coordinates": [-85.63221481400872, 41.96479398049825], "type": "Point"}, "id": "431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6320308159778, 41.96479474462936, -85.6320308159778, 41.96479474462936], "geometry": {"coordinates": [-85.6320308159778, 41.96479474462936], "type": "Point"}, "id": "432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63184681742194, 41.964795435619145, -85.63184681742194, 41.964795435619145], "geometry": {"coordinates": [-85.63184681742194, 41.964795435619145], "type": "Point"}, "id": "433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63166281886609, 41.96479612660892, -85.63166281886609, 41.96479612660892], "geometry": {"coordinates": [-85.63166281886609, 41.96479612660892], "type": "Point"}, "id": "434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63147882031024, 41.96479681759868, -85.63147882031024, 41.96479681759868], "geometry": {"coordinates": [-85.63147882031024, 41.96479681759868], "type": "Point"}, "id": "435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63129482175438, 41.96479750858845, -85.63129482175438, 41.96479750858845], "geometry": {"coordinates": [-85.63129482175438, 41.96479750858845], "type": "Point"}, "id": "436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63111082319853, 41.9647981995782, -85.63111082319853, 41.9647981995782], "geometry": {"coordinates": [-85.63111082319853, 41.9647981995782], "type": "Point"}, "id": "437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63092682464267, 41.96479889056794, -85.63092682464267, 41.96479889056794], "geometry": {"coordinates": [-85.63092682464267, 41.96479889056794], "type": "Point"}, "id": "438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63074385048068, 41.964808488243996, -85.63074385048068, 41.964808488243996], "geometry": {"coordinates": [-85.63074385048068, 41.964808488243996], "type": "Point"}, "id": "439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63057263189822, 41.96485490520017, -85.63057263189822, 41.96485490520017], "geometry": {"coordinates": [-85.63057263189822, 41.96485490520017], "type": "Point"}, "id": "440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6186766, 41.95774680000001, -85.6186766, 41.95774680000001], "geometry": {"coordinates": [-85.6186766, 41.95774680000001], "type": "Point"}, "id": "441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61849244, 41.9577475333334, -85.61849244, 41.9577475333334], "geometry": {"coordinates": [-85.61849244, 41.9577475333334], "type": "Point"}, "id": "442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61830828, 41.95774826666678, -85.61830828, 41.95774826666678], "geometry": {"coordinates": [-85.61830828, 41.95774826666678], "type": "Point"}, "id": "443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61812411999999, 41.957749000000156, -85.61812411999999, 41.957749000000156], "geometry": {"coordinates": [-85.61812411999999, 41.957749000000156], "type": "Point"}, "id": "444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61793996000002, 41.95774973333352, -85.61793996000002, 41.95774973333352], "geometry": {"coordinates": [-85.61793996000002, 41.95774973333352], "type": "Point"}, "id": "445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.6177558, 41.95775046666688, -85.6177558, 41.95775046666688], "geometry": {"coordinates": [-85.6177558, 41.95775046666688], "type": "Point"}, "id": "446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61757164, 41.95775120000023, -85.61757164, 41.95775120000023], "geometry": {"coordinates": [-85.61757164, 41.95775120000023], "type": "Point"}, "id": "447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61738747999999, 41.957751933333576, -85.61738747999999, 41.957751933333576], "geometry": {"coordinates": [-85.61738747999999, 41.957751933333576], "type": "Point"}, "id": "448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61720332, 41.957752666666906, -85.61720332, 41.957752666666906], "geometry": {"coordinates": [-85.61720332, 41.957752666666906], "type": "Point"}, "id": "449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61701915999998, 41.957753400000236, -85.61701915999998, 41.957753400000236], "geometry": {"coordinates": [-85.61701915999998, 41.957753400000236], "type": "Point"}, "id": "450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61683499999998, 41.957754133333545, -85.61683499999998, 41.957754133333545], "geometry": {"coordinates": [-85.61683499999998, 41.957754133333545], "type": "Point"}, "id": "451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61665083999999, 41.95775486666685, -85.61665083999999, 41.95775486666685], "geometry": {"coordinates": [-85.61665083999999, 41.95775486666685], "type": "Point"}, "id": "452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61646668, 41.957755600000155, -85.61646668, 41.957755600000155], "geometry": {"coordinates": [-85.61646668, 41.957755600000155], "type": "Point"}, "id": "453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61628251999998, 41.95775633333345, -85.61628251999998, 41.95775633333345], "geometry": {"coordinates": [-85.61628251999998, 41.95775633333345], "type": "Point"}, "id": "454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61609836, 41.95775706666672, -85.61609836, 41.95775706666672], "geometry": {"coordinates": [-85.61609836, 41.95775706666672], "type": "Point"}, "id": "455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.6240991, 41.954708, -85.6240991, 41.954708], "geometry": {"coordinates": [-85.6240991, 41.954708], "type": "Point"}, "id": "456", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 758296776}, "type": "Feature"}, {"bbox": [-85.62398323190075, 41.95481425750871, -85.62398323190075, 41.95481425750871], "geometry": {"coordinates": [-85.62398323190075, 41.95481425750871], "type": "Point"}, "id": "457", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 758296776}, "type": "Feature"}, {"bbox": [-85.6271315, 41.9402001, -85.6271315, 41.9402001], "geometry": {"coordinates": [-85.6271315, 41.9402001], "type": "Point"}, "id": "458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150842}, "type": "Feature"}, {"bbox": [-85.62713480000001, 41.94037586715115, -85.62713480000001, 41.94037586715115], "geometry": {"coordinates": [-85.62713480000001, 41.94037586715115], "type": "Point"}, "id": "459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150842}, "type": "Feature"}, {"bbox": [-85.6271381, 41.94055163381782, -85.6271381, 41.94055163381782], "geometry": {"coordinates": [-85.6271381, 41.94055163381782], "type": "Point"}, "id": "460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150842}, "type": "Feature"}, {"bbox": [-85.61737099999999, 41.936243, -85.61737099999999, 41.936243], "geometry": {"coordinates": [-85.61737099999999, 41.936243], "type": "Point"}, "id": "461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61755329768398, 41.936241980361274, -85.61755329768398, 41.936241980361274], "geometry": {"coordinates": [-85.61755329768398, 41.936241980361274], "type": "Point"}, "id": "462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61773559559562, 41.936240979432185, -85.61773559559562, 41.936240979432185], "geometry": {"coordinates": [-85.61773559559562, 41.936240979432185], "type": "Point"}, "id": "463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61791789329378, 41.93623995623019, -85.61791789329378, 41.93623995623019], "geometry": {"coordinates": [-85.61791789329378, 41.93623995623019], "type": "Point"}, "id": "464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61810019099192, 41.93623893302818, -85.61810019099192, 41.93623893302818], "geometry": {"coordinates": [-85.61810019099192, 41.93623893302818], "type": "Point"}, "id": "465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61828248869008, 41.936237909826154, -85.61828248869008, 41.936237909826154], "geometry": {"coordinates": [-85.61828248869008, 41.936237909826154], "type": "Point"}, "id": "466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61846478638823, 41.9362368866241, -85.61846478638823, 41.9362368866241], "geometry": {"coordinates": [-85.61846478638823, 41.9362368866241], "type": "Point"}, "id": "467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61864708408638, 41.93623586342204, -85.61864708408638, 41.93623586342204], "geometry": {"coordinates": [-85.61864708408638, 41.93623586342204], "type": "Point"}, "id": "468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61882931493236, 41.93623222575535, -85.61882931493236, 41.93623222575535], "geometry": {"coordinates": [-85.61882931493236, 41.93623222575535], "type": "Point"}, "id": "469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61901153307147, 41.93622809114599, -85.61901153307147, 41.93622809114599], "geometry": {"coordinates": [-85.61901153307147, 41.93622809114599], "type": "Point"}, "id": "470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61919379056008, 41.93622611471846, -85.61919379056008, 41.93622611471846], "geometry": {"coordinates": [-85.61919379056008, 41.93622611471846], "type": "Point"}, "id": "471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61937609241308, 41.93622657151994, -85.61937609241308, 41.93622657151994], "geometry": {"coordinates": [-85.61937609241308, 41.93622657151994], "type": "Point"}, "id": "472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61955839426605, 41.936227028321404, -85.61955839426605, 41.936227028321404], "geometry": {"coordinates": [-85.61955839426605, 41.936227028321404], "type": "Point"}, "id": "473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61974069601106, 41.93622750827243, -85.61974069601106, 41.93622750827243], "geometry": {"coordinates": [-85.61974069601106, 41.93622750827243], "type": "Point"}, "id": "474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61992299773597, 41.93622799253202, -85.61992299773597, 41.93622799253202], "geometry": {"coordinates": [-85.61992299773597, 41.93622799253202], "type": "Point"}, "id": "475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.620105297056, 41.93622760506635, -85.620105297056, 41.93622760506635], "geometry": {"coordinates": [-85.620105297056, 41.93622760506635], "type": "Point"}, "id": "476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62028759457347, 41.93622656420269, -85.62028759457347, 41.93622656420269], "geometry": {"coordinates": [-85.62028759457347, 41.93622656420269], "type": "Point"}, "id": "477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62046989209094, 41.93622552333902, -85.62046989209094, 41.93622552333902], "geometry": {"coordinates": [-85.62046989209094, 41.93622552333902], "type": "Point"}, "id": "478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62065218960839, 41.936224482475325, -85.62065218960839, 41.936224482475325], "geometry": {"coordinates": [-85.62065218960839, 41.936224482475325], "type": "Point"}, "id": "479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62083448712586, 41.93622344161162, -85.62083448712586, 41.93622344161162], "geometry": {"coordinates": [-85.62083448712586, 41.93622344161162], "type": "Point"}, "id": "480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62101678464332, 41.936222400747894, -85.62101678464332, 41.936222400747894], "geometry": {"coordinates": [-85.62101678464332, 41.936222400747894], "type": "Point"}, "id": "481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62119908239353, 41.93622138305224, -85.62119908239353, 41.93622138305224], "geometry": {"coordinates": [-85.62119908239353, 41.93622138305224], "type": "Point"}, "id": "482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62138138046147, 41.936220396980474, -85.62138138046147, 41.936220396980474], "geometry": {"coordinates": [-85.62138138046147, 41.936220396980474], "type": "Point"}, "id": "483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62156367852938, 41.936219410908684, -85.62156367852938, 41.936219410908684], "geometry": {"coordinates": [-85.62156367852938, 41.936219410908684], "type": "Point"}, "id": "484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62174597659731, 41.936218424836895, -85.62174597659731, 41.936218424836895], "geometry": {"coordinates": [-85.62174597659731, 41.936218424836895], "type": "Point"}, "id": "485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62192827466524, 41.93621743876508, -85.62192827466524, 41.93621743876508], "geometry": {"coordinates": [-85.62192827466524, 41.93621743876508], "type": "Point"}, "id": "486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62211057273316, 41.93621645269325, -85.62211057273316, 41.93621645269325], "geometry": {"coordinates": [-85.62211057273316, 41.93621645269325], "type": "Point"}, "id": "487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62229287078277, 41.93621546479506, -85.62229287078277, 41.93621546479506], "geometry": {"coordinates": [-85.62229287078277, 41.93621546479506], "type": "Point"}, "id": "488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62247516830885, 41.93621442476904, -85.62247516830885, 41.93621442476904], "geometry": {"coordinates": [-85.62247516830885, 41.93621442476904], "type": "Point"}, "id": "489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62265746583496, 41.93621338474301, -85.62265746583496, 41.93621338474301], "geometry": {"coordinates": [-85.62265746583496, 41.93621338474301], "type": "Point"}, "id": "490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62283976336106, 41.936212344716964, -85.62283976336106, 41.936212344716964], "geometry": {"coordinates": [-85.62283976336106, 41.936212344716964], "type": "Point"}, "id": "491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62302206088717, 41.93621130469089, -85.62302206088717, 41.93621130469089], "geometry": {"coordinates": [-85.62302206088717, 41.93621130469089], "type": "Point"}, "id": "492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62320435841328, 41.936210264664815, -85.62320435841328, 41.936210264664815], "geometry": {"coordinates": [-85.62320435841328, 41.936210264664815], "type": "Point"}, "id": "493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62338665593938, 41.93620922463871, -85.62338665593938, 41.93620922463871], "geometry": {"coordinates": [-85.62338665593938, 41.93620922463871], "type": "Point"}, "id": "494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62356895348401, 41.93620818641858, -85.62356895348401, 41.93620818641858], "geometry": {"coordinates": [-85.62356895348401, 41.93620818641858], "type": "Point"}, "id": "495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62375125109965, 41.93620715511287, -85.62375125109965, 41.93620715511287], "geometry": {"coordinates": [-85.62375125109965, 41.93620715511287], "type": "Point"}, "id": "496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62393354871529, 41.936206123807146, -85.62393354871529, 41.936206123807146], "geometry": {"coordinates": [-85.62393354871529, 41.936206123807146], "type": "Point"}, "id": "497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62411584633092, 41.93620509250141, -85.62411584633092, 41.93620509250141], "geometry": {"coordinates": [-85.62411584633092, 41.93620509250141], "type": "Point"}, "id": "498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62429814394655, 41.936204061195646, -85.62429814394655, 41.936204061195646], "geometry": {"coordinates": [-85.62429814394655, 41.936204061195646], "type": "Point"}, "id": "499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62448044156217, 41.936203029889874, -85.62448044156217, 41.936203029889874], "geometry": {"coordinates": [-85.62448044156217, 41.936203029889874], "type": "Point"}, "id": "500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62466273917782, 41.93620199858408, -85.62466273917782, 41.93620199858408], "geometry": {"coordinates": [-85.62466273917782, 41.93620199858408], "type": "Point"}, "id": "501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62484503683338, 41.936200971217616, -85.62484503683338, 41.936200971217616], "geometry": {"coordinates": [-85.62484503683338, 41.936200971217616], "type": "Point"}, "id": "502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62502733462597, 41.936199957368956, -85.62502733462597, 41.936199957368956], "geometry": {"coordinates": [-85.62502733462597, 41.936199957368956], "type": "Point"}, "id": "503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62520963241856, 41.93619894352029, -85.62520963241856, 41.93619894352029], "geometry": {"coordinates": [-85.62520963241856, 41.93619894352029], "type": "Point"}, "id": "504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62539193021114, 41.93619792967161, -85.62539193021114, 41.93619792967161], "geometry": {"coordinates": [-85.62539193021114, 41.93619792967161], "type": "Point"}, "id": "505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62557422800374, 41.9361969158229, -85.62557422800374, 41.9361969158229], "geometry": {"coordinates": [-85.62557422800374, 41.9361969158229], "type": "Point"}, "id": "506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62575652577966, 41.93619590033041, -85.62575652577966, 41.93619590033041], "geometry": {"coordinates": [-85.62575652577966, 41.93619590033041], "type": "Point"}, "id": "507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62593882339996, 41.9361948694808, -85.62593882339996, 41.9361948694808], "geometry": {"coordinates": [-85.62593882339996, 41.9361948694808], "type": "Point"}, "id": "508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62612112102026, 41.93619383863116, -85.62612112102026, 41.93619383863116], "geometry": {"coordinates": [-85.62612112102026, 41.93619383863116], "type": "Point"}, "id": "509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62630341864056, 41.93619280778151, -85.62630341864056, 41.93619280778151], "geometry": {"coordinates": [-85.62630341864056, 41.93619280778151], "type": "Point"}, "id": "510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62648571629957, 41.93619178073746, -85.62648571629957, 41.93619178073746], "geometry": {"coordinates": [-85.62648571629957, 41.93619178073746], "type": "Point"}, "id": "511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62666801401419, 41.93619075916054, -85.62666801401419, 41.93619075916054], "geometry": {"coordinates": [-85.62666801401419, 41.93619075916054], "type": "Point"}, "id": "512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62685031172882, 41.93618973758361, -85.62685031172882, 41.93618973758361], "geometry": {"coordinates": [-85.62685031172882, 41.93618973758361], "type": "Point"}, "id": "513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62703260944343, 41.936188716006654, -85.62703260944343, 41.936188716006654], "geometry": {"coordinates": [-85.62703260944343, 41.936188716006654], "type": "Point"}, "id": "514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62721490710156, 41.93618768887191, -85.62721490710156, 41.93618768887191], "geometry": {"coordinates": [-85.62721490710156, 41.93618768887191], "type": "Point"}, "id": "515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62739720473436, 41.93618665924795, -85.62739720473436, 41.93618665924795], "geometry": {"coordinates": [-85.62739720473436, 41.93618665924795], "type": "Point"}, "id": "516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.6275795023672, 41.936185629623985, -85.6275795023672, 41.936185629623985], "geometry": {"coordinates": [-85.6275795023672, 41.936185629623985], "type": "Point"}, "id": "517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.64232019999999, 41.9361655, -85.64232019999999, 41.9361655], "geometry": {"coordinates": [-85.64232019999999, 41.9361655], "type": "Point"}, "id": "518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64231672688068, 41.93629921514745, -85.64231672688068, 41.93629921514745], "geometry": {"coordinates": [-85.64231672688068, 41.93629921514745], "type": "Point"}, "id": "519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64231326944197, 41.93643293023912, -85.64231326944197, 41.93643293023912], "geometry": {"coordinates": [-85.64231326944197, 41.93643293023912], "type": "Point"}, "id": "520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6423098216976, 41.93656664518926, -85.6423098216976, 41.93656664518926], "geometry": {"coordinates": [-85.6423098216976, 41.93656664518926], "type": "Point"}, "id": "521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.642306386317, 41.93670036003508, -85.642306386317, 41.93670036003508], "geometry": {"coordinates": [-85.642306386317, 41.93670036003508], "type": "Point"}, "id": "522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64230295265938, 41.9368340746251, -85.64230295265938, 41.9368340746251], "geometry": {"coordinates": [-85.64230295265938, 41.9368340746251], "type": "Point"}, "id": "523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64229951900174, 41.93696778893475, -85.64229951900174, 41.93696778893475], "geometry": {"coordinates": [-85.64229951900174, 41.93696778893475], "type": "Point"}, "id": "524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6422953926104, 41.937101491950216, -85.6422953926104, 41.937101491950216], "geometry": {"coordinates": [-85.6422953926104, 41.937101491950216], "type": "Point"}, "id": "525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64229114286658, 41.93723519272417, -85.64229114286658, 41.93723519272417], "geometry": {"coordinates": [-85.64229114286658, 41.93723519272417], "type": "Point"}, "id": "526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64228689312274, 41.93736889321782, -85.64228689312274, 41.93736889321782], "geometry": {"coordinates": [-85.64228689312274, 41.93736889321782], "type": "Point"}, "id": "527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64228264337892, 41.93750259343118, -85.64228264337892, 41.93750259343118], "geometry": {"coordinates": [-85.64228264337892, 41.93750259343118], "type": "Point"}, "id": "528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64227839363511, 41.937636293364235, -85.64227839363511, 41.937636293364235], "geometry": {"coordinates": [-85.64227839363511, 41.937636293364235], "type": "Point"}, "id": "529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64227414389129, 41.937769993016985, -85.64227414389129, 41.937769993016985], "geometry": {"coordinates": [-85.64227414389129, 41.937769993016985], "type": "Point"}, "id": "530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64226989414746, 41.937903692389426, -85.64226989414746, 41.937903692389426], "geometry": {"coordinates": [-85.64226989414746, 41.937903692389426], "type": "Point"}, "id": "531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64226564440364, 41.93803739148158, -85.64226564440364, 41.93803739148158], "geometry": {"coordinates": [-85.64226564440364, 41.93803739148158], "type": "Point"}, "id": "532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64226166816663, 41.93817109417094, -85.64226166816663, 41.93817109417094], "geometry": {"coordinates": [-85.64226166816663, 41.93817109417094], "type": "Point"}, "id": "533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64225906632826, 41.938304816064864, -85.64225906632826, 41.938304816064864], "geometry": {"coordinates": [-85.64225906632826, 41.938304816064864], "type": "Point"}, "id": "534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64225646448988, 41.93843853767838, -85.64225646448988, 41.93843853767838], "geometry": {"coordinates": [-85.64225646448988, 41.93843853767838], "type": "Point"}, "id": "535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64225386265153, 41.93857225901151, -85.64225386265153, 41.93857225901151], "geometry": {"coordinates": [-85.64225386265153, 41.93857225901151], "type": "Point"}, "id": "536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64225126081315, 41.93870598006423, -85.64225126081315, 41.93870598006423], "geometry": {"coordinates": [-85.64225126081315, 41.93870598006423], "type": "Point"}, "id": "537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64224865897478, 41.93883970083654, -85.64224865897478, 41.93883970083654], "geometry": {"coordinates": [-85.64224865897478, 41.93883970083654], "type": "Point"}, "id": "538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6422460622102, 41.93897342138268, -85.6422460622102, 41.93897342138268], "geometry": {"coordinates": [-85.6422460622102, 41.93897342138268], "type": "Point"}, "id": "539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64224315762918, 41.93910713715331, -85.64224315762918, 41.93910713715331], "geometry": {"coordinates": [-85.64224315762918, 41.93910713715331], "type": "Point"}, "id": "540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64223884876866, 41.9392408326754, -85.64223884876866, 41.9392408326754], "geometry": {"coordinates": [-85.64223884876866, 41.9392408326754], "type": "Point"}, "id": "541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64223453990815, 41.9393745279172, -85.64223453990815, 41.9393745279172], "geometry": {"coordinates": [-85.64223453990815, 41.9393745279172], "type": "Point"}, "id": "542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64223023104765, 41.93950822287871, -85.64223023104765, 41.93950822287871], "geometry": {"coordinates": [-85.64223023104765, 41.93950822287871], "type": "Point"}, "id": "543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64222592218712, 41.93964191755991, -85.64222592218712, 41.93964191755991], "geometry": {"coordinates": [-85.64222592218712, 41.93964191755991], "type": "Point"}, "id": "544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64222161332661, 41.9397756119608, -85.64222161332661, 41.9397756119608], "geometry": {"coordinates": [-85.64222161332661, 41.9397756119608], "type": "Point"}, "id": "545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6422173044661, 41.939909306081404, -85.6422173044661, 41.939909306081404], "geometry": {"coordinates": [-85.6422173044661, 41.939909306081404], "type": "Point"}, "id": "546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6469804, 41.9398569, -85.6469804, 41.9398569], "geometry": {"coordinates": [-85.6469804, 41.9398569], "type": "Point"}, "id": "547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64698764060181, 41.93999628237503, -85.64698764060181, 41.93999628237503], "geometry": {"coordinates": [-85.64698764060181, 41.93999628237503], "type": "Point"}, "id": "548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64699488120361, 41.9401356644454, -85.64699488120361, 41.9401356644454], "geometry": {"coordinates": [-85.64699488120361, 41.9401356644454], "type": "Point"}, "id": "549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64700212180543, 41.94027504621111, -85.64700212180543, 41.94027504621111], "geometry": {"coordinates": [-85.64700212180543, 41.94027504621111], "type": "Point"}, "id": "550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64700936240725, 41.94041442767216, -85.64700936240725, 41.94041442767216], "geometry": {"coordinates": [-85.64700936240725, 41.94041442767216], "type": "Point"}, "id": "551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64701660300905, 41.940553808828554, -85.64701660300905, 41.940553808828554], "geometry": {"coordinates": [-85.64701660300905, 41.940553808828554], "type": "Point"}, "id": "552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64702384361085, 41.94069318968028, -85.64702384361085, 41.94069318968028], "geometry": {"coordinates": [-85.64702384361085, 41.94069318968028], "type": "Point"}, "id": "553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64710309966048, 41.94081228218787, -85.64710309966048, 41.94081228218787], "geometry": {"coordinates": [-85.64710309966048, 41.94081228218787], "type": "Point"}, "id": "554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.6472786124486, 41.94084931929144, -85.6472786124486, 41.94084931929144], "geometry": {"coordinates": [-85.6472786124486, 41.94084931929144], "type": "Point"}, "id": "555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.6474661140254, 41.940847336101704, -85.6474661140254, 41.940847336101704], "geometry": {"coordinates": [-85.6474661140254, 41.940847336101704], "type": "Point"}, "id": "556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64765361560218, 41.94084535291192, -85.64765361560218, 41.94084535291192], "geometry": {"coordinates": [-85.64765361560218, 41.94084535291192], "type": "Point"}, "id": "557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64782516243791, 41.94080084752829, -85.64782516243791, 41.94080084752829], "geometry": {"coordinates": [-85.64782516243791, 41.94080084752829], "type": "Point"}, "id": "558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64787598674697, 41.94067110250506, -85.64787598674697, 41.94067110250506], "geometry": {"coordinates": [-85.64787598674697, 41.94067110250506], "type": "Point"}, "id": "559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64786825562247, 41.94053173618237, -85.64786825562247, 41.94053173618237], "geometry": {"coordinates": [-85.64786825562247, 41.94053173618237], "type": "Point"}, "id": "560", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64786052449797, 41.9403923695551, -85.64786052449797, 41.9403923695551], "geometry": {"coordinates": [-85.64786052449797, 41.9403923695551], "type": "Point"}, "id": "561", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64785279337349, 41.940253002623216, -85.64785279337349, 41.940253002623216], "geometry": {"coordinates": [-85.64785279337349, 41.940253002623216], "type": "Point"}, "id": "562", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64784506224898, 41.94011363538674, -85.64784506224898, 41.94011363538674], "geometry": {"coordinates": [-85.64784506224898, 41.94011363538674], "type": "Point"}, "id": "563", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64783733112448, 41.93997426784567, -85.64783733112448, 41.93997426784567], "geometry": {"coordinates": [-85.64783733112448, 41.93997426784567], "type": "Point"}, "id": "564", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.638243, 41.943674, -85.638243, 41.943674], "geometry": {"coordinates": [-85.638243, 41.943674], "type": "Point"}, "id": "565", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.6381642078965, 41.9437960708492, -85.6381642078965, 41.9437960708492], "geometry": {"coordinates": [-85.6381642078965, 41.9437960708492], "type": "Point"}, "id": "566", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63798788947989, 41.94383958328908, -85.63798788947989, 41.94383958328908], "geometry": {"coordinates": [-85.63798788947989, 41.94383958328908], "type": "Point"}, "id": "567", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63779858378115, 41.9438254351715, -85.63779858378115, 41.9438254351715], "geometry": {"coordinates": [-85.63779858378115, 41.9438254351715], "type": "Point"}, "id": "568", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63761332692538, 41.943790781559265, -85.63761332692538, 41.943790781559265], "geometry": {"coordinates": [-85.63761332692538, 41.943790781559265], "type": "Point"}, "id": "569", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63742941289885, 41.94375229321653, -85.63742941289885, 41.94375229321653], "geometry": {"coordinates": [-85.63742941289885, 41.94375229321653], "type": "Point"}, "id": "570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63724697589406, 41.94371024397486, -85.63724697589406, 41.94371024397486], "geometry": {"coordinates": [-85.63724697589406, 41.94371024397486], "type": "Point"}, "id": "571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.6371173623044, 41.943613518228034, -85.6371173623044, 41.943613518228034], "geometry": {"coordinates": [-85.6371173623044, 41.943613518228034], "type": "Point"}, "id": "572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63707638474074, 41.94347525400991, -85.63707638474074, 41.94347525400991], "geometry": {"coordinates": [-85.63707638474074, 41.94347525400991], "type": "Point"}, "id": "573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63706785906912, 41.94333331090903, -85.63706785906912, 41.94333331090903], "geometry": {"coordinates": [-85.63706785906912, 41.94333331090903], "type": "Point"}, "id": "574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63705911117232, 41.943191351986876, -85.63705911117232, 41.943191351986876], "geometry": {"coordinates": [-85.63705911117232, 41.943191351986876], "type": "Point"}, "id": "575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63705139223606, 41.94304936236038, -85.63705139223606, 41.94304936236038], "geometry": {"coordinates": [-85.63705139223606, 41.94304936236038], "type": "Point"}, "id": "576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63704350178986, 41.942907375008446, -85.63704350178986, 41.942907375008446], "geometry": {"coordinates": [-85.63704350178986, 41.942907375008446], "type": "Point"}, "id": "577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63703561134363, 41.94276538734034, -85.63703561134363, 41.94276538734034], "geometry": {"coordinates": [-85.63703561134363, 41.94276538734034], "type": "Point"}, "id": "578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.64436079999999, 41.9425645, -85.64436079999999, 41.9425645], "geometry": {"coordinates": [-85.64436079999999, 41.9425645], "type": "Point"}, "id": "579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64435259757187, 41.94242841812222, -85.64435259757187, 41.94242841812222], "geometry": {"coordinates": [-85.64435259757187, 41.94242841812222], "type": "Point"}, "id": "580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64434439414221, 41.9422923359875, -85.64434439414221, 41.9422923359875], "geometry": {"coordinates": [-85.64434439414221, 41.9422923359875], "type": "Point"}, "id": "581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64433621094464, 41.9421562528883, -85.64433621094464, 41.9421562528883], "geometry": {"coordinates": [-85.64433621094464, 41.9421562528883], "type": "Point"}, "id": "582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64432802774706, 41.942020169498655, -85.64432802774706, 41.942020169498655], "geometry": {"coordinates": [-85.64432802774706, 41.942020169498655], "type": "Point"}, "id": "583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.6443198445495, 41.941884085818586, -85.6443198445495, 41.941884085818586], "geometry": {"coordinates": [-85.6443198445495, 41.941884085818586], "type": "Point"}, "id": "584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64431166135192, 41.94174800184808, -85.64431166135192, 41.94174800184808], "geometry": {"coordinates": [-85.64431166135192, 41.94174800184808], "type": "Point"}, "id": "585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64430349815598, 41.94161191692268, -85.64430349815598, 41.94161191692268], "geometry": {"coordinates": [-85.64430349815598, 41.94161191692268], "type": "Point"}, "id": "586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64429533930843, 41.94147583156239, -85.64429533930843, 41.94147583156239], "geometry": {"coordinates": [-85.64429533930843, 41.94147583156239], "type": "Point"}, "id": "587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64428718046088, 41.94133974591167, -85.64428718046088, 41.94133974591167], "geometry": {"coordinates": [-85.64428718046088, 41.94133974591167], "type": "Point"}, "id": "588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64428144254673, 41.94120360496568, -85.64428144254673, 41.94120360496568], "geometry": {"coordinates": [-85.64428144254673, 41.94120360496568], "type": "Point"}, "id": "589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64427829503116, 41.94106740360138, -85.64427829503116, 41.94106740360138], "geometry": {"coordinates": [-85.64427829503116, 41.94106740360138], "type": "Point"}, "id": "590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64427514751557, 41.94093120194615, -85.64427514751557, 41.94093120194615], "geometry": {"coordinates": [-85.64427514751557, 41.94093120194615], "type": "Point"}, "id": "591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.62858149999998, 41.947169200000005, -85.62858149999998, 41.947169200000005], "geometry": {"coordinates": [-85.62858149999998, 41.947169200000005], "type": "Point"}, "id": "592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62874340745996, 41.94723029262009, -85.62874340745996, 41.94723029262009], "geometry": {"coordinates": [-85.62874340745996, 41.94723029262009], "type": "Point"}, "id": "593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62890531491993, 41.94729138518164, -85.62890531491993, 41.94729138518164], "geometry": {"coordinates": [-85.62890531491993, 41.94729138518164], "type": "Point"}, "id": "594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62906722237993, 41.94735247768465, -85.62906722237993, 41.94735247768465], "geometry": {"coordinates": [-85.62906722237993, 41.94735247768465], "type": "Point"}, "id": "595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62922912983991, 41.947413570129115, -85.62922912983991, 41.947413570129115], "geometry": {"coordinates": [-85.62922912983991, 41.947413570129115], "type": "Point"}, "id": "596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62939074171197, 41.94747508161288, -85.62939074171197, 41.94747508161288], "geometry": {"coordinates": [-85.62939074171197, 41.94747508161288], "type": "Point"}, "id": "597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62955035243063, 41.94753943035997, -85.62955035243063, 41.94753943035997], "geometry": {"coordinates": [-85.62955035243063, 41.94753943035997], "type": "Point"}, "id": "598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6297099631493, 41.947603779042105, -85.6297099631493, 41.947603779042105], "geometry": {"coordinates": [-85.6297099631493, 41.947603779042105], "type": "Point"}, "id": "599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62986957386794, 41.94766812765928, -85.62986957386794, 41.94766812765928], "geometry": {"coordinates": [-85.62986957386794, 41.94766812765928], "type": "Point"}, "id": "600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63002918458659, 41.94773247621151, -85.63002918458659, 41.94773247621151], "geometry": {"coordinates": [-85.63002918458659, 41.94773247621151], "type": "Point"}, "id": "601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63018879530526, 41.947796824698784, -85.63018879530526, 41.947796824698784], "geometry": {"coordinates": [-85.63018879530526, 41.947796824698784], "type": "Point"}, "id": "602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6303484060239, 41.94786117312111, -85.6303484060239, 41.94786117312111], "geometry": {"coordinates": [-85.6303484060239, 41.94786117312111], "type": "Point"}, "id": "603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63050801674254, 41.94792552147848, -85.63050801674254, 41.94792552147848], "geometry": {"coordinates": [-85.63050801674254, 41.94792552147848], "type": "Point"}, "id": "604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6306676274612, 41.9479898697709, -85.6306676274612, 41.9479898697709], "geometry": {"coordinates": [-85.6306676274612, 41.9479898697709], "type": "Point"}, "id": "605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63082723817986, 41.94805421799837, -85.63082723817986, 41.94805421799837], "geometry": {"coordinates": [-85.63082723817986, 41.94805421799837], "type": "Point"}, "id": "606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6309868488985, 41.94811856616088, -85.6309868488985, 41.94811856616088], "geometry": {"coordinates": [-85.6309868488985, 41.94811856616088], "type": "Point"}, "id": "607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63114645961716, 41.948182914258446, -85.63114645961716, 41.948182914258446], "geometry": {"coordinates": [-85.63114645961716, 41.948182914258446], "type": "Point"}, "id": "608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63130607033582, 41.948247262291055, -85.63130607033582, 41.948247262291055], "geometry": {"coordinates": [-85.63130607033582, 41.948247262291055], "type": "Point"}, "id": "609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63146641932825, 41.94831055724535, -85.63146641932825, 41.94831055724535], "geometry": {"coordinates": [-85.63146641932825, 41.94831055724535], "type": "Point"}, "id": "610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63162872770184, 41.94837105743856, -85.63162872770184, 41.94837105743856], "geometry": {"coordinates": [-85.63162872770184, 41.94837105743856], "type": "Point"}, "id": "611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6317910360754, 41.94843155757433, -85.6317910360754, 41.94843155757433], "geometry": {"coordinates": [-85.6317910360754, 41.94843155757433], "type": "Point"}, "id": "612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63195334444897, 41.94849205765269, -85.63195334444897, 41.94849205765269], "geometry": {"coordinates": [-85.63195334444897, 41.94849205765269], "type": "Point"}, "id": "613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63211565282256, 41.94855255767364, -85.63211565282256, 41.94855255767364], "geometry": {"coordinates": [-85.63211565282256, 41.94855255767364], "type": "Point"}, "id": "614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.611615, 41.953704, -85.611615, 41.953704], "geometry": {"coordinates": [-85.611615, 41.953704], "type": "Point"}, "id": "615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61179958450185, 41.95369478315608, -85.61179958450185, 41.95369478315608], "geometry": {"coordinates": [-85.61179958450185, 41.95369478315608], "type": "Point"}, "id": "616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61198450583136, 41.95369059941578, -85.61198450583136, 41.95369059941578], "geometry": {"coordinates": [-85.61198450583136, 41.95369059941578], "type": "Point"}, "id": "617", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61216942716086, 41.95368641567519, -85.61216942716086, 41.95368641567519], "geometry": {"coordinates": [-85.61216942716086, 41.95368641567519], "type": "Point"}, "id": "618", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61235440022499, 41.95368418805826, -85.61235440022499, 41.95368418805826], "geometry": {"coordinates": [-85.61235440022499, 41.95368418805826], "type": "Point"}, "id": "619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61253939974782, 41.95368296086413, -85.61253939974782, 41.95368296086413], "geometry": {"coordinates": [-85.61253939974782, 41.95368296086413], "type": "Point"}, "id": "620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61272439927065, 41.953681733669974, -85.61272439927065, 41.953681733669974], "geometry": {"coordinates": [-85.61272439927065, 41.953681733669974], "type": "Point"}, "id": "621", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61290939879346, 41.95368050647579, -85.61290939879346, 41.95368050647579], "geometry": {"coordinates": [-85.61290939879346, 41.95368050647579], "type": "Point"}, "id": "622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61309439831629, 41.95367927928159, -85.61309439831629, 41.95367927928159], "geometry": {"coordinates": [-85.61309439831629, 41.95367927928159], "type": "Point"}, "id": "623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61327939783912, 41.95367805208736, -85.61327939783912, 41.95367805208736], "geometry": {"coordinates": [-85.61327939783912, 41.95367805208736], "type": "Point"}, "id": "624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61346438374113, 41.953677654427096, -85.61346438374113, 41.953677654427096], "geometry": {"coordinates": [-85.61346438374113, 41.953677654427096], "type": "Point"}, "id": "625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61364928780586, 41.95368224082082, -85.61364928780586, 41.95368224082082], "geometry": {"coordinates": [-85.61364928780586, 41.95368224082082], "type": "Point"}, "id": "626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61383419187058, 41.9536868272142, -85.61383419187058, 41.9536868272142], "geometry": {"coordinates": [-85.61383419187058, 41.9536868272142], "type": "Point"}, "id": "627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61401909593526, 41.95369141360727, -85.61401909593526, 41.95369141360727], "geometry": {"coordinates": [-85.61401909593526, 41.95369141360727], "type": "Point"}, "id": "628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61869959999999, 41.9585513, -85.61869959999999, 41.9585513], "geometry": {"coordinates": [-85.61869959999999, 41.9585513], "type": "Point"}, "id": "629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61851461979415, 41.958553878523844, -85.61851461979415, 41.958553878523844], "geometry": {"coordinates": [-85.61851461979415, 41.958553878523844], "type": "Point"}, "id": "630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.6183296395883, 41.958556457047585, -85.6183296395883, 41.958556457047585], "geometry": {"coordinates": [-85.6183296395883, 41.958556457047585], "type": "Point"}, "id": "631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61814465938247, 41.958559035571206, -85.61814465938247, 41.958559035571206], "geometry": {"coordinates": [-85.61814465938247, 41.958559035571206], "type": "Point"}, "id": "632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61795967917661, 41.95856161409474, -85.61795967917661, 41.95856161409474], "geometry": {"coordinates": [-85.61795967917661, 41.95856161409474], "type": "Point"}, "id": "633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61777469897078, 41.95856419261816, -85.61777469897078, 41.95856419261816], "geometry": {"coordinates": [-85.61777469897078, 41.95856419261816], "type": "Point"}, "id": "634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61758971890133, 41.958566776544814, -85.61758971890133, 41.958566776544814], "geometry": {"coordinates": [-85.61758971890133, 41.958566776544814], "type": "Point"}, "id": "635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61740473886528, 41.95856936179505, -85.61740473886528, 41.95856936179505], "geometry": {"coordinates": [-85.61740473886528, 41.95856936179505], "type": "Point"}, "id": "636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61721975882924, 41.95857194704518, -85.61721975882924, 41.95857194704518], "geometry": {"coordinates": [-85.61721975882924, 41.95857194704518], "type": "Point"}, "id": "637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61703477881417, 41.95857453312451, -85.61703477881417, 41.95857453312451], "geometry": {"coordinates": [-85.61703477881417, 41.95857453312451], "type": "Point"}, "id": "638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61684979901182, 41.95857712760402, -85.61684979901182, 41.95857712760402], "geometry": {"coordinates": [-85.61684979901182, 41.95857712760402], "type": "Point"}, "id": "639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61666481920945, 41.95857972208343, -85.61666481920945, 41.95857972208343], "geometry": {"coordinates": [-85.61666481920945, 41.95857972208343], "type": "Point"}, "id": "640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61647983940709, 41.95858231656273, -85.61647983940709, 41.95858231656273], "geometry": {"coordinates": [-85.61647983940709, 41.95858231656273], "type": "Point"}, "id": "641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61629485960472, 41.95858491104193, -85.61629485960472, 41.95858491104193], "geometry": {"coordinates": [-85.61629485960472, 41.95858491104193], "type": "Point"}, "id": "642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61610987980237, 41.958587505521024, -85.61610987980237, 41.958587505521024], "geometry": {"coordinates": [-85.61610987980237, 41.958587505521024], "type": "Point"}, "id": "643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.6204461, 41.9401485, -85.6204461, 41.9401485], "geometry": {"coordinates": [-85.6204461, 41.9401485], "type": "Point"}, "id": "644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.62044519999999, 41.94029644068645, -85.62044519999999, 41.94029644068645], "geometry": {"coordinates": [-85.62044519999999, 41.94029644068645], "type": "Point"}, "id": "645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.62044429999999, 41.94044438102967, -85.62044429999999, 41.94044438102967], "geometry": {"coordinates": [-85.62044429999999, 41.94044438102967], "type": "Point"}, "id": "646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.6204434, 41.940592321029676, -85.6204434, 41.940592321029676], "geometry": {"coordinates": [-85.6204434, 41.940592321029676], "type": "Point"}, "id": "647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.6204425, 41.94074026068645, -85.6204425, 41.94074026068645], "geometry": {"coordinates": [-85.6204425, 41.94074026068645], "type": "Point"}, "id": "648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.6295992, 41.9524346, -85.6295992, 41.9524346], "geometry": {"coordinates": [-85.6295992, 41.9524346], "type": "Point"}, "id": "649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.6296518485486, 41.952570142624644, -85.6296518485486, 41.952570142624644], "geometry": {"coordinates": [-85.6296518485486, 41.952570142624644], "type": "Point"}, "id": "650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62965478788881, 41.952711473998576, -85.62965478788881, 41.952711473998576], "geometry": {"coordinates": [-85.62965478788881, 41.952711473998576], "type": "Point"}, "id": "651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62965772722902, 41.952852805059145, -85.62965772722902, 41.952852805059145], "geometry": {"coordinates": [-85.62965772722902, 41.952852805059145], "type": "Point"}, "id": "652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966066656924, 41.95299413580632, -85.62966066656924, 41.95299413580632], "geometry": {"coordinates": [-85.62966066656924, 41.95299413580632], "type": "Point"}, "id": "653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966360590944, 41.95313546624011, -85.62966360590944, 41.95313546624011], "geometry": {"coordinates": [-85.62966360590944, 41.95313546624011], "type": "Point"}, "id": "654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966654524968, 41.95327679636054, -85.62966654524968, 41.95327679636054], "geometry": {"coordinates": [-85.62966654524968, 41.95327679636054], "type": "Point"}, "id": "655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966948458988, 41.953418126167584, -85.62966948458988, 41.953418126167584], "geometry": {"coordinates": [-85.62966948458988, 41.953418126167584], "type": "Point"}, "id": "656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62967242393009, 41.953559455661235, -85.62967242393009, 41.953559455661235], "geometry": {"coordinates": [-85.62967242393009, 41.953559455661235], "type": "Point"}, "id": "657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.6296753632703, 41.95370078484152, -85.6296753632703, 41.95370078484152], "geometry": {"coordinates": [-85.6296753632703, 41.95370078484152], "type": "Point"}, "id": "658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.6296729916104, 41.953842104345554, -85.6296729916104, 41.953842104345554], "geometry": {"coordinates": [-85.6296729916104, 41.953842104345554], "type": "Point"}, "id": "659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966915132543, 41.95398342094719, -85.62966915132543, 41.95398342094719], "geometry": {"coordinates": [-85.62966915132543, 41.95398342094719], "type": "Point"}, "id": "660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966531104045, 41.954124737235496, -85.62966531104045, 41.954124737235496], "geometry": {"coordinates": [-85.62966531104045, 41.954124737235496], "type": "Point"}, "id": "661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966147075547, 41.954266053210475, -85.62966147075547, 41.954266053210475], "geometry": {"coordinates": [-85.62966147075547, 41.954266053210475], "type": "Point"}, "id": "662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62965763047049, 41.95440736887211, -85.62965763047049, 41.95440736887211], "geometry": {"coordinates": [-85.62965763047049, 41.95440736887211], "type": "Point"}, "id": "663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62965379018551, 41.954548684220434, -85.62965379018551, 41.954548684220434], "geometry": {"coordinates": [-85.62965379018551, 41.954548684220434], "type": "Point"}, "id": "664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.60826579999998, 41.9437055, -85.60826579999998, 41.9437055], "geometry": {"coordinates": [-85.60826579999998, 41.9437055], "type": "Point"}, "id": "665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60826703571426, 41.94384453768506, -85.60826703571426, 41.94384453768506], "geometry": {"coordinates": [-85.60826703571426, 41.94384453768506], "type": "Point"}, "id": "666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60826827142856, 41.94398357506693, -85.60826827142856, 41.94398357506693], "geometry": {"coordinates": [-85.60826827142856, 41.94398357506693], "type": "Point"}, "id": "667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60826950714285, 41.9441226121456, -85.60826950714285, 41.9441226121456], "geometry": {"coordinates": [-85.60826950714285, 41.9441226121456], "type": "Point"}, "id": "668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827074285714, 41.94426164892107, -85.60827074285714, 41.94426164892107], "geometry": {"coordinates": [-85.60827074285714, 41.94426164892107], "type": "Point"}, "id": "669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827197857141, 41.94440068539335, -85.60827197857141, 41.94440068539335], "geometry": {"coordinates": [-85.60827197857141, 41.94440068539335], "type": "Point"}, "id": "670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.6082732142857, 41.94453972156243, -85.6082732142857, 41.94453972156243], "geometry": {"coordinates": [-85.6082732142857, 41.94453972156243], "type": "Point"}, "id": "671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827445, 41.94467875742831, -85.60827445, 41.94467875742831], "geometry": {"coordinates": [-85.60827445, 41.94467875742831], "type": "Point"}, "id": "672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827568571428, 41.94481779299101, -85.60827568571428, 41.94481779299101], "geometry": {"coordinates": [-85.60827568571428, 41.94481779299101], "type": "Point"}, "id": "673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827692142855, 41.9449568282505, -85.60827692142855, 41.9449568282505], "geometry": {"coordinates": [-85.60827692142855, 41.9449568282505], "type": "Point"}, "id": "674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827815714283, 41.94509586320679, -85.60827815714283, 41.94509586320679], "geometry": {"coordinates": [-85.60827815714283, 41.94509586320679], "type": "Point"}, "id": "675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827939285713, 41.94523489785989, -85.60827939285713, 41.94523489785989], "geometry": {"coordinates": [-85.60827939285713, 41.94523489785989], "type": "Point"}, "id": "676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60828062857142, 41.94537393220979, -85.60828062857142, 41.94537393220979], "geometry": {"coordinates": [-85.60828062857142, 41.94537393220979], "type": "Point"}, "id": "677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60828186428571, 41.945512966256494, -85.60828186428571, 41.945512966256494], "geometry": {"coordinates": [-85.60828186428571, 41.945512966256494], "type": "Point"}, "id": "678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.63482979999999, 41.964783, -85.63482979999999, 41.964783], "geometry": {"coordinates": [-85.63482979999999, 41.964783], "type": "Point"}, "id": "679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63464022857141, 41.964783800000035, -85.63464022857141, 41.964783800000035], "geometry": {"coordinates": [-85.63464022857141, 41.964783800000035], "type": "Point"}, "id": "680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63445065714286, 41.96478460000005, -85.63445065714286, 41.96478460000005], "geometry": {"coordinates": [-85.63445065714286, 41.96478460000005], "type": "Point"}, "id": "681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63426108571427, 41.96478540000006, -85.63426108571427, 41.96478540000006], "geometry": {"coordinates": [-85.63426108571427, 41.96478540000006], "type": "Point"}, "id": "682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63407151428572, 41.964786200000056, -85.63407151428572, 41.964786200000056], "geometry": {"coordinates": [-85.63407151428572, 41.964786200000056], "type": "Point"}, "id": "683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63388194285714, 41.96478700000006, -85.63388194285714, 41.96478700000006], "geometry": {"coordinates": [-85.63388194285714, 41.96478700000006], "type": "Point"}, "id": "684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63369237142858, 41.96478780000003, -85.63369237142858, 41.96478780000003], "geometry": {"coordinates": [-85.63369237142858, 41.96478780000003], "type": "Point"}, "id": "685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.6321281, 41.957861099999995, -85.6321281, 41.957861099999995], "geometry": {"coordinates": [-85.6321281, 41.957861099999995], "type": "Point"}, "id": "686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 776693874}, "type": "Feature"}, {"bbox": [-85.64699549999999, 41.94498039999999, -85.64699549999999, 41.94498039999999], "geometry": {"coordinates": [-85.64699549999999, 41.94498039999999], "type": "Point"}, "id": "687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.64693563225137, 41.944833300199996, -85.64693563225137, 41.944833300199996], "geometry": {"coordinates": [-85.64693563225137, 41.944833300199996], "type": "Point"}, "id": "688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.6469351858011, 41.94467844091227, -85.6469351858011, 41.94467844091227], "geometry": {"coordinates": [-85.6469351858011, 41.94467844091227], "type": "Point"}, "id": "689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.64693473935081, 41.94452358124841, -85.64693473935081, 41.94452358124841], "geometry": {"coordinates": [-85.64693473935081, 41.94452358124841], "type": "Point"}, "id": "690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.64693429290054, 41.94436872120842, -85.64693429290054, 41.94436872120842], "geometry": {"coordinates": [-85.64693429290054, 41.94436872120842], "type": "Point"}, "id": "691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.64693384645027, 41.94421386079228, -85.64693384645027, 41.94421386079228], "geometry": {"coordinates": [-85.64693384645027, 41.94421386079228], "type": "Point"}, "id": "692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.63503659999999, 41.937977399999994, -85.63503659999999, 41.937977399999994], "geometry": {"coordinates": [-85.63503659999999, 41.937977399999994], "type": "Point"}, "id": "693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63516359452623, 41.93807479014405, -85.63516359452623, 41.93807479014405], "geometry": {"coordinates": [-85.63516359452623, 41.93807479014405], "type": "Point"}, "id": "694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63531380300842, 41.93815016132695, -85.63531380300842, 41.93815016132695], "geometry": {"coordinates": [-85.63531380300842, 41.93815016132695], "type": "Point"}, "id": "695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63548990661812, 41.93818109588004, -85.63548990661812, 41.93818109588004], "geometry": {"coordinates": [-85.63548990661812, 41.93818109588004], "type": "Point"}, "id": "696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63567220221428, 41.93818562072829, -85.63567220221428, 41.93818562072829], "geometry": {"coordinates": [-85.63567220221428, 41.93818562072829], "type": "Point"}, "id": "697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6358545364385, 41.9381865911789, -85.6358545364385, 41.9381865911789], "geometry": {"coordinates": [-85.6358545364385, 41.9381865911789], "type": "Point"}, "id": "698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63603690655195, 41.938184259243705, -85.63603690655195, 41.938184259243705], "geometry": {"coordinates": [-85.63603690655195, 41.938184259243705], "type": "Point"}, "id": "699", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63621927666541, 41.93818192730841, -85.63621927666541, 41.93818192730841], "geometry": {"coordinates": [-85.63621927666541, 41.93818192730841], "type": "Point"}, "id": "700", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63640165565853, 41.93818014916622, -85.63640165565853, 41.93818014916622], "geometry": {"coordinates": [-85.63640165565853, 41.93818014916622], "type": "Point"}, "id": "701", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6365840486619, 41.93817924479152, -85.6365840486619, 41.93817924479152], "geometry": {"coordinates": [-85.6365840486619, 41.93817924479152], "type": "Point"}, "id": "702", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63676644166529, 41.9381783404168, -85.63676644166529, 41.9381783404168], "geometry": {"coordinates": [-85.63676644166529, 41.9381783404168], "type": "Point"}, "id": "703", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63694883466863, 41.93817743604208, -85.63694883466863, 41.93817743604208], "geometry": {"coordinates": [-85.63694883466863, 41.93817743604208], "type": "Point"}, "id": "704", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63713122767201, 41.938176531667345, -85.63713122767201, 41.938176531667345], "geometry": {"coordinates": [-85.63713122767201, 41.938176531667345], "type": "Point"}, "id": "705", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63731362067536, 41.938175627292594, -85.63731362067536, 41.938175627292594], "geometry": {"coordinates": [-85.63731362067536, 41.938175627292594], "type": "Point"}, "id": "706", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63749600954313, 41.93817534136381, -85.63749600954313, 41.93817534136381], "geometry": {"coordinates": [-85.63749600954313, 41.93817534136381], "type": "Point"}, "id": "707", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63767838142556, 41.93817759544884, -85.63767838142556, 41.93817759544884], "geometry": {"coordinates": [-85.63767838142556, 41.93817759544884], "type": "Point"}, "id": "708", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63786075330799, 41.93817984953379, -85.63786075330799, 41.93817984953379], "geometry": {"coordinates": [-85.63786075330799, 41.93817984953379], "type": "Point"}, "id": "709", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63804312519044, 41.938182103618665, -85.63804312519044, 41.938182103618665], "geometry": {"coordinates": [-85.63804312519044, 41.938182103618665], "type": "Point"}, "id": "710", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63822549707287, 41.938184357703456, -85.63822549707287, 41.938184357703456], "geometry": {"coordinates": [-85.63822549707287, 41.938184357703456], "type": "Point"}, "id": "711", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6384078689553, 41.93818661178817, -85.6384078689553, 41.93818661178817], "geometry": {"coordinates": [-85.6384078689553, 41.93818661178817], "type": "Point"}, "id": "712", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63859024083773, 41.938188865872796, -85.63859024083773, 41.938188865872796], "geometry": {"coordinates": [-85.63859024083773, 41.938188865872796], "type": "Point"}, "id": "713", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6387726128445, 41.93818888562233, -85.6387726128445, 41.93818888562233], "geometry": {"coordinates": [-85.6387726128445, 41.93818888562233], "type": "Point"}, "id": "714", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63895498497715, 41.93818664276771, -85.63895498497715, 41.93818664276771], "geometry": {"coordinates": [-85.63895498497715, 41.93818664276771], "type": "Point"}, "id": "715", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63913735710982, 41.93818439991302, -85.63913735710982, 41.93818439991302], "geometry": {"coordinates": [-85.63913735710982, 41.93818439991302], "type": "Point"}, "id": "716", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63931972924246, 41.938182157058236, -85.63931972924246, 41.938182157058236], "geometry": {"coordinates": [-85.63931972924246, 41.938182157058236], "type": "Point"}, "id": "717", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63950210137511, 41.93817991420338, -85.63950210137511, 41.93817991420338], "geometry": {"coordinates": [-85.63950210137511, 41.93817991420338], "type": "Point"}, "id": "718", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63968447350777, 41.938177671348456, -85.63968447350777, 41.938177671348456], "geometry": {"coordinates": [-85.63968447350777, 41.938177671348456], "type": "Point"}, "id": "719", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63986684564043, 41.93817542849343, -85.63986684564043, 41.93817542849343], "geometry": {"coordinates": [-85.63986684564043, 41.93817542849343], "type": "Point"}, "id": "720", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6400492256486, 41.938173706706614, -85.6400492256486, 41.938173706706614], "geometry": {"coordinates": [-85.6400492256486, 41.938173706706614], "type": "Point"}, "id": "721", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64023161947141, 41.93817289893948, -85.64023161947141, 41.93817289893948], "geometry": {"coordinates": [-85.64023161947141, 41.93817289893948], "type": "Point"}, "id": "722", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64041401329422, 41.93817209117235, -85.64041401329422, 41.93817209117235], "geometry": {"coordinates": [-85.64041401329422, 41.93817209117235], "type": "Point"}, "id": "723", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64059640711703, 41.9381712834052, -85.64059640711703, 41.9381712834052], "geometry": {"coordinates": [-85.64059640711703, 41.9381712834052], "type": "Point"}, "id": "724", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64077880093986, 41.93817047563804, -85.64077880093986, 41.93817047563804], "geometry": {"coordinates": [-85.64077880093986, 41.93817047563804], "type": "Point"}, "id": "725", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64096119476267, 41.93816966787087, -85.64096119476267, 41.93816966787087], "geometry": {"coordinates": [-85.64096119476267, 41.93816966787087], "type": "Point"}, "id": "726", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64114358045707, 41.93816844891974, -85.64114358045707, 41.93816844891974], "geometry": {"coordinates": [-85.64114358045707, 41.93816844891974], "type": "Point"}, "id": "727", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64132592734614, 41.938165266959025, -85.64132592734614, 41.938165266959025], "geometry": {"coordinates": [-85.64132592734614, 41.938165266959025], "type": "Point"}, "id": "728", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64150827423524, 41.938162084998154, -85.64150827423524, 41.938162084998154], "geometry": {"coordinates": [-85.64150827423524, 41.938162084998154], "type": "Point"}, "id": "729", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64169062112431, 41.93815890303713, -85.64169062112431, 41.93815890303713], "geometry": {"coordinates": [-85.64169062112431, 41.93815890303713], "type": "Point"}, "id": "730", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64187296790224, 41.938155717558985, -85.64187296790224, 41.938155717558985], "geometry": {"coordinates": [-85.64187296790224, 41.938155717558985], "type": "Point"}, "id": "731", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.642055314389, 41.9381525228652, -85.642055314389, 41.9381525228652], "geometry": {"coordinates": [-85.642055314389, 41.9381525228652], "type": "Point"}, "id": "732", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64223766087575, 41.93814932817126, -85.64223766087575, 41.93814932817126], "geometry": {"coordinates": [-85.64223766087575, 41.93814932817126], "type": "Point"}, "id": "733", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64242004942362, 41.938148350097904, -85.64242004942362, 41.938148350097904], "geometry": {"coordinates": [-85.64242004942362, 41.938148350097904], "type": "Point"}, "id": "734", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64260244448127, 41.93814771508815, -85.64260244448127, 41.93814771508815], "geometry": {"coordinates": [-85.64260244448127, 41.93814771508815], "type": "Point"}, "id": "735", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64278483953889, 41.93814708007837, -85.64278483953889, 41.93814708007837], "geometry": {"coordinates": [-85.64278483953889, 41.93814708007837], "type": "Point"}, "id": "736", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64296723459654, 41.938146445068604, -85.64296723459654, 41.938146445068604], "geometry": {"coordinates": [-85.64296723459654, 41.938146445068604], "type": "Point"}, "id": "737", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64314962965418, 41.93814581005882, -85.64314962965418, 41.93814581005882], "geometry": {"coordinates": [-85.64314962965418, 41.93814581005882], "type": "Point"}, "id": "738", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64333202471181, 41.93814517504903, -85.64333202471181, 41.93814517504903], "geometry": {"coordinates": [-85.64333202471181, 41.93814517504903], "type": "Point"}, "id": "739", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64351441976946, 41.93814454003924, -85.64351441976946, 41.93814454003924], "geometry": {"coordinates": [-85.64351441976946, 41.93814454003924], "type": "Point"}, "id": "740", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64369681482708, 41.93814390502944, -85.64369681482708, 41.93814390502944], "geometry": {"coordinates": [-85.64369681482708, 41.93814390502944], "type": "Point"}, "id": "741", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64387920988473, 41.93814327001964, -85.64387920988473, 41.93814327001964], "geometry": {"coordinates": [-85.64387920988473, 41.93814327001964], "type": "Point"}, "id": "742", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64406160494237, 41.938142635009825, -85.64406160494237, 41.938142635009825], "geometry": {"coordinates": [-85.64406160494237, 41.938142635009825], "type": "Point"}, "id": "743", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63483169999999, 41.9439105, -85.63483169999999, 41.9439105], "geometry": {"coordinates": [-85.63483169999999, 41.9439105], "type": "Point"}, "id": "744", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203974055}, "type": "Feature"}, {"bbox": [-85.612216, 41.951641, -85.612216, 41.951641], "geometry": {"coordinates": [-85.612216, 41.951641], "type": "Point"}, "id": "745", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221397222798, 41.95177726649306, -85.61221397222798, 41.95177726649306], "geometry": {"coordinates": [-85.61221397222798, 41.95177726649306], "type": "Point"}, "id": "746", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221194445596, 41.95191353269482, -85.61221194445596, 41.95191353269482], "geometry": {"coordinates": [-85.61221194445596, 41.95191353269482], "type": "Point"}, "id": "747", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221189507073, 41.95204980002001, -85.61221189507073, 41.95204980002001], "geometry": {"coordinates": [-85.61221189507073, 41.95204980002001], "type": "Point"}, "id": "748", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.6122135704815, 41.95218606828728, -85.6122135704815, 41.95218606828728], "geometry": {"coordinates": [-85.6122135704815, 41.95218606828728], "type": "Point"}, "id": "749", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221524589227, 41.952322336263244, -85.61221524589227, 41.952322336263244], "geometry": {"coordinates": [-85.61221524589227, 41.952322336263244], "type": "Point"}, "id": "750", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221692130304, 41.952458603947875, -85.61221692130304, 41.952458603947875], "geometry": {"coordinates": [-85.61221692130304, 41.952458603947875], "type": "Point"}, "id": "751", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221859671382, 41.952594871341184, -85.61221859671382, 41.952594871341184], "geometry": {"coordinates": [-85.61221859671382, 41.952594871341184], "type": "Point"}, "id": "752", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222027212459, 41.95273113844317, -85.61222027212459, 41.95273113844317], "geometry": {"coordinates": [-85.61222027212459, 41.95273113844317], "type": "Point"}, "id": "753", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222194753536, 41.95286740525383, -85.61222194753536, 41.95286740525383], "geometry": {"coordinates": [-85.61222194753536, 41.95286740525383], "type": "Point"}, "id": "754", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222362294615, 41.95300367177317, -85.61222362294615, 41.95300367177317], "geometry": {"coordinates": [-85.61222362294615, 41.95300367177317], "type": "Point"}, "id": "755", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222529835689, 41.95313993800119, -85.61222529835689, 41.95313993800119], "geometry": {"coordinates": [-85.61222529835689, 41.95313993800119], "type": "Point"}, "id": "756", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222697376768, 41.953276203937875, -85.61222697376768, 41.953276203937875], "geometry": {"coordinates": [-85.61222697376768, 41.953276203937875], "type": "Point"}, "id": "757", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222864917845, 41.95341246958324, -85.61222864917845, 41.95341246958324], "geometry": {"coordinates": [-85.61222864917845, 41.95341246958324], "type": "Point"}, "id": "758", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.6122303245892, 41.953548734937286, -85.6122303245892, 41.953548734937286], "geometry": {"coordinates": [-85.6122303245892, 41.953548734937286], "type": "Point"}, "id": "759", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.63674599999999, 41.92922099999999, -85.63674599999999, 41.92922099999999], "geometry": {"coordinates": [-85.63674599999999, 41.92922099999999], "type": "Point"}, "id": "760", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63692700097647, 41.92922099999999, -85.63692700097647, 41.92922099999999], "geometry": {"coordinates": [-85.63692700097647, 41.92922099999999], "type": "Point"}, "id": "761", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63710800195295, 41.92922099999999, -85.63710800195295, 41.92922099999999], "geometry": {"coordinates": [-85.63710800195295, 41.92922099999999], "type": "Point"}, "id": "762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63728900292944, 41.92922099999999, -85.63728900292944, 41.92922099999999], "geometry": {"coordinates": [-85.63728900292944, 41.92922099999999], "type": "Point"}, "id": "763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63747000390592, 41.92922099999999, -85.63747000390592, 41.92922099999999], "geometry": {"coordinates": [-85.63747000390592, 41.92922099999999], "type": "Point"}, "id": "764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.6376510048824, 41.92922099999999, -85.6376510048824, 41.92922099999999], "geometry": {"coordinates": [-85.6376510048824, 41.92922099999999], "type": "Point"}, "id": "765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63783200585888, 41.92922099999999, -85.63783200585888, 41.92922099999999], "geometry": {"coordinates": [-85.63783200585888, 41.92922099999999], "type": "Point"}, "id": "766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63801300683537, 41.92922099999999, -85.63801300683537, 41.92922099999999], "geometry": {"coordinates": [-85.63801300683537, 41.92922099999999], "type": "Point"}, "id": "767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63819400770639, 41.929221137527755, -85.63819400770639, 41.929221137527755], "geometry": {"coordinates": [-85.63819400770639, 41.929221137527755], "type": "Point"}, "id": "768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63837500856502, 41.92922129117874, -85.63837500856502, 41.92922129117874], "geometry": {"coordinates": [-85.63837500856502, 41.92922129117874], "type": "Point"}, "id": "769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63855600942368, 41.92922144482973, -85.63855600942368, 41.92922144482973], "geometry": {"coordinates": [-85.63855600942368, 41.92922144482973], "type": "Point"}, "id": "770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63873701028234, 41.929221598480716, -85.63873701028234, 41.929221598480716], "geometry": {"coordinates": [-85.63873701028234, 41.929221598480716], "type": "Point"}, "id": "771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.638918011141, 41.9292217521317, -85.638918011141, 41.9292217521317], "geometry": {"coordinates": [-85.638918011141, 41.9292217521317], "type": "Point"}, "id": "772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63909901199963, 41.92922190578268, -85.63909901199963, 41.92922190578268], "geometry": {"coordinates": [-85.63909901199963, 41.92922190578268], "type": "Point"}, "id": "773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.6348174, 41.94267000000001, -85.6348174, 41.94267000000001], "geometry": {"coordinates": [-85.6348174, 41.94267000000001], "type": "Point"}, "id": "774", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972941}, "type": "Feature"}, {"bbox": [-85.63464127013083, 41.94260648244153, -85.63464127013083, 41.94260648244153], "geometry": {"coordinates": [-85.63464127013083, 41.94260648244153], "type": "Point"}, "id": "775", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972941}, "type": "Feature"}, {"bbox": [-85.63455126445524, 41.942477927753075, -85.63455126445524, 41.942477927753075], "geometry": {"coordinates": [-85.63455126445524, 41.942477927753075], "type": "Point"}, "id": "776", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972941}, "type": "Feature"}, {"bbox": [-85.6344837011092, 41.94234152281453, -85.6344837011092, 41.94234152281453], "geometry": {"coordinates": [-85.6344837011092, 41.94234152281453], "type": "Point"}, "id": "777", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972941}, "type": "Feature"}, {"bbox": [-85.61917089999999, 41.9567483, -85.61917089999999, 41.9567483], "geometry": {"coordinates": [-85.61917089999999, 41.9567483], "type": "Point"}, "id": "778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61921035887673, 41.956885068083665, -85.61921035887673, 41.956885068083665], "geometry": {"coordinates": [-85.61921035887673, 41.956885068083665], "type": "Point"}, "id": "779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61921588853407, 41.95702550032019, -85.61921588853407, 41.95702550032019], "geometry": {"coordinates": [-85.61921588853407, 41.95702550032019], "type": "Point"}, "id": "780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61921957360906, 41.957166021478976, -85.61921957360906, 41.957166021478976], "geometry": {"coordinates": [-85.61921957360906, 41.957166021478976], "type": "Point"}, "id": "781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61922325868406, 41.957306542327906, -85.61922325868406, 41.957306542327906], "geometry": {"coordinates": [-85.61922325868406, 41.957306542327906], "type": "Point"}, "id": "782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61922694375905, 41.95744706286698, -85.61922694375905, 41.95744706286698], "geometry": {"coordinates": [-85.61922694375905, 41.95744706286698], "type": "Point"}, "id": "783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61923062883403, 41.95758758309622, -85.61923062883403, 41.95758758309622], "geometry": {"coordinates": [-85.61923062883403, 41.95758758309622], "type": "Point"}, "id": "784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61923431390902, 41.957728103015626, -85.61923431390902, 41.957728103015626], "geometry": {"coordinates": [-85.61923431390902, 41.957728103015626], "type": "Point"}, "id": "785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.619237998984, 41.95786862262517, -85.619237998984, 41.95786862262517], "geometry": {"coordinates": [-85.619237998984, 41.95786862262517], "type": "Point"}, "id": "786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.619241684059, 41.958009141924876, -85.619241684059, 41.958009141924876], "geometry": {"coordinates": [-85.619241684059, 41.958009141924876], "type": "Point"}, "id": "787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61924536913399, 41.95814966091473, -85.61924536913399, 41.95814966091473], "geometry": {"coordinates": [-85.61924536913399, 41.95814966091473], "type": "Point"}, "id": "788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61924905420898, 41.95829017959475, -85.61924905420898, 41.95829017959475], "geometry": {"coordinates": [-85.61924905420898, 41.95829017959475], "type": "Point"}, "id": "789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61925271349742, 41.958430698216105, -85.61925271349742, 41.958430698216105], "geometry": {"coordinates": [-85.61925271349742, 41.958430698216105], "type": "Point"}, "id": "790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61925397963707, 41.958571239840474, -85.61925397963707, 41.958571239840474], "geometry": {"coordinates": [-85.61925397963707, 41.958571239840474], "type": "Point"}, "id": "791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61924340892692, 41.95871038436162, -85.61924340892692, 41.95871038436162], "geometry": {"coordinates": [-85.61924340892692, 41.95871038436162], "type": "Point"}, "id": "792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61907524642521, 41.958765325161316, -85.61907524642521, 41.958765325161316], "geometry": {"coordinates": [-85.61907524642521, 41.958765325161316], "type": "Point"}, "id": "793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61889492120174, 41.95880741219888, -85.61889492120174, 41.95880741219888], "geometry": {"coordinates": [-85.61889492120174, 41.95880741219888], "type": "Point"}, "id": "794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.62486719999998, 41.941590299999994, -85.62486719999998, 41.941590299999994], "geometry": {"coordinates": [-85.62486719999998, 41.941590299999994], "type": "Point"}, "id": "795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62486900562911, 41.94172469515712, -85.62486900562911, 41.94172469515712], "geometry": {"coordinates": [-85.62486900562911, 41.94172469515712], "type": "Point"}, "id": "796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487081125826, 41.941859090030974, -85.62487081125826, 41.941859090030974], "geometry": {"coordinates": [-85.62487081125826, 41.941859090030974], "type": "Point"}, "id": "797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487261688737, 41.94199348462156, -85.62487261688737, 41.94199348462156], "geometry": {"coordinates": [-85.62487261688737, 41.94199348462156], "type": "Point"}, "id": "798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487378377935, 41.94212788261081, -85.62487378377935, 41.94212788261081], "geometry": {"coordinates": [-85.62487378377935, 41.94212788261081], "type": "Point"}, "id": "799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487477864642, 41.9422622813084, -85.62487477864642, 41.9422622813084], "geometry": {"coordinates": [-85.62487477864642, 41.9422622813084], "type": "Point"}, "id": "800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6248757735135, 41.94239667972271, -85.6248757735135, 41.94239667972271], "geometry": {"coordinates": [-85.6248757735135, 41.94239667972271], "type": "Point"}, "id": "801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487676838053, 41.94253107785372, -85.62487676838053, 41.94253107785372], "geometry": {"coordinates": [-85.62487676838053, 41.94253107785372], "type": "Point"}, "id": "802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487776324761, 41.94266547570146, -85.62487776324761, 41.94266547570146], "geometry": {"coordinates": [-85.62487776324761, 41.94266547570146], "type": "Point"}, "id": "803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487875811468, 41.942799873265905, -85.62487875811468, 41.942799873265905], "geometry": {"coordinates": [-85.62487875811468, 41.942799873265905], "type": "Point"}, "id": "804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487975298174, 41.94293427054706, -85.62487975298174, 41.94293427054706], "geometry": {"coordinates": [-85.62487975298174, 41.94293427054706], "type": "Point"}, "id": "805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488074784879, 41.943068667544935, -85.62488074784879, 41.943068667544935], "geometry": {"coordinates": [-85.62488074784879, 41.943068667544935], "type": "Point"}, "id": "806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488174271586, 41.94320306425953, -85.62488174271586, 41.94320306425953], "geometry": {"coordinates": [-85.62488174271586, 41.94320306425953], "type": "Point"}, "id": "807", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488273758292, 41.94333746069083, -85.62488273758292, 41.94333746069083], "geometry": {"coordinates": [-85.62488273758292, 41.94333746069083], "type": "Point"}, "id": "808", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488373245, 41.94347185683885, -85.62488373245, 41.94347185683885], "geometry": {"coordinates": [-85.62488373245, 41.94347185683885], "type": "Point"}, "id": "809", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488337017363, 41.94360625307608, -85.62488337017363, 41.94360625307608], "geometry": {"coordinates": [-85.62488337017363, 41.94360625307608], "type": "Point"}, "id": "810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488250866011, 41.94374064916705, -85.62488250866011, 41.94374064916705], "geometry": {"coordinates": [-85.62488250866011, 41.94374064916705], "type": "Point"}, "id": "811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488221915723, 41.94387504535904, -85.62488221915723, 41.94387504535904], "geometry": {"coordinates": [-85.62488221915723, 41.94387504535904], "type": "Point"}, "id": "812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488275424322, 41.94400944182176, -85.62488275424322, 41.94400944182176], "geometry": {"coordinates": [-85.62488275424322, 41.94400944182176], "type": "Point"}, "id": "813", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488328932922, 41.944143838001196, -85.62488328932922, 41.944143838001196], "geometry": {"coordinates": [-85.62488328932922, 41.944143838001196], "type": "Point"}, "id": "814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488382441524, 41.94427823389732, -85.62488382441524, 41.94427823389732], "geometry": {"coordinates": [-85.62488382441524, 41.94427823389732], "type": "Point"}, "id": "815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488435950122, 41.94441262951016, -85.62488435950122, 41.94441262951016], "geometry": {"coordinates": [-85.62488435950122, 41.94441262951016], "type": "Point"}, "id": "816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488489458723, 41.94454702483971, -85.62488489458723, 41.94454702483971], "geometry": {"coordinates": [-85.62488489458723, 41.94454702483971], "type": "Point"}, "id": "817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488542967323, 41.94468141988597, -85.62488542967323, 41.94468141988597], "geometry": {"coordinates": [-85.62488542967323, 41.94468141988597], "type": "Point"}, "id": "818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488636018637, 41.94481581330582, -85.62488636018637, 41.94481581330582], "geometry": {"coordinates": [-85.62488636018637, 41.94481581330582], "type": "Point"}, "id": "819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488747534681, 41.94495020581524, -85.62488747534681, 41.94495020581524], "geometry": {"coordinates": [-85.62488747534681, 41.94495020581524], "type": "Point"}, "id": "820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488859050727, 41.94508459804137, -85.62488859050727, 41.94508459804137], "geometry": {"coordinates": [-85.62488859050727, 41.94508459804137], "type": "Point"}, "id": "821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488970566773, 41.94521898998421, -85.62488970566773, 41.94521898998421], "geometry": {"coordinates": [-85.62488970566773, 41.94521898998421], "type": "Point"}, "id": "822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489082082818, 41.94535338164377, -85.62489082082818, 41.94535338164377], "geometry": {"coordinates": [-85.62489082082818, 41.94535338164377], "type": "Point"}, "id": "823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489193598864, 41.945487773020034, -85.62489193598864, 41.945487773020034], "geometry": {"coordinates": [-85.62489193598864, 41.945487773020034], "type": "Point"}, "id": "824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489312897067, 41.94562216348399, -85.62489312897067, 41.94562216348399], "geometry": {"coordinates": [-85.62489312897067, 41.94562216348399], "type": "Point"}, "id": "825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489594080941, 41.945756540579495, -85.62489594080941, 41.945756540579495], "geometry": {"coordinates": [-85.62489594080941, 41.945756540579495], "type": "Point"}, "id": "826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489875264814, 41.94589091739178, -85.62489875264814, 41.94589091739178], "geometry": {"coordinates": [-85.62489875264814, 41.94589091739178], "type": "Point"}, "id": "827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62490156448688, 41.94602529392083, -85.62490156448688, 41.94602529392083], "geometry": {"coordinates": [-85.62490156448688, 41.94602529392083], "type": "Point"}, "id": "828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6249043763256, 41.94615967016666, -85.6249043763256, 41.94615967016666], "geometry": {"coordinates": [-85.6249043763256, 41.94615967016666], "type": "Point"}, "id": "829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62490718816434, 41.94629404612926, -85.62490718816434, 41.94629404612926], "geometry": {"coordinates": [-85.62490718816434, 41.94629404612926], "type": "Point"}, "id": "830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491000000307, 41.946428421808626, -85.62491000000307, 41.946428421808626], "geometry": {"coordinates": [-85.62491000000307, 41.946428421808626], "type": "Point"}, "id": "831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491182600256, 41.94656280168748, -85.62491182600256, 41.94656280168748], "geometry": {"coordinates": [-85.62491182600256, 41.94656280168748], "type": "Point"}, "id": "832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491122335719, 41.94669719232636, -85.62491122335719, 41.94669719232636], "geometry": {"coordinates": [-85.62491122335719, 41.94669719232636], "type": "Point"}, "id": "833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491062071177, 41.94683158268195, -85.62491062071177, 41.94683158268195], "geometry": {"coordinates": [-85.62491062071177, 41.94683158268195], "type": "Point"}, "id": "834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491001806639, 41.94696597275424, -85.62491001806639, 41.94696597275424], "geometry": {"coordinates": [-85.62491001806639, 41.94696597275424], "type": "Point"}, "id": "835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.624909415421, 41.947100362543246, -85.624909415421, 41.947100362543246], "geometry": {"coordinates": [-85.624909415421, 41.947100362543246], "type": "Point"}, "id": "836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6249088127756, 41.947234752048935, -85.6249088127756, 41.947234752048935], "geometry": {"coordinates": [-85.6249088127756, 41.947234752048935], "type": "Point"}, "id": "837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62490821013023, 41.94736914127135, -85.62490821013023, 41.94736914127135], "geometry": {"coordinates": [-85.62490821013023, 41.94736914127135], "type": "Point"}, "id": "838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62490952578375, 41.9475035233407, -85.62490952578375, 41.9475035233407], "geometry": {"coordinates": [-85.62490952578375, 41.9475035233407], "type": "Point"}, "id": "839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491186838506, 41.94763790144912, -85.62491186838506, 41.94763790144912], "geometry": {"coordinates": [-85.62491186838506, 41.94763790144912], "type": "Point"}, "id": "840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491421098635, 41.94777227927429, -85.62491421098635, 41.94777227927429], "geometry": {"coordinates": [-85.62491421098635, 41.94777227927429], "type": "Point"}, "id": "841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491655358765, 41.9479066568162, -85.62491655358765, 41.9479066568162], "geometry": {"coordinates": [-85.62491655358765, 41.9479066568162], "type": "Point"}, "id": "842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491889618896, 41.94804103407487, -85.62491889618896, 41.94804103407487], "geometry": {"coordinates": [-85.62491889618896, 41.94804103407487], "type": "Point"}, "id": "843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492123879025, 41.94817541105027, -85.62492123879025, 41.94817541105027], "geometry": {"coordinates": [-85.62492123879025, 41.94817541105027], "type": "Point"}, "id": "844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492358139156, 41.94830978774243, -85.62492358139156, 41.94830978774243], "geometry": {"coordinates": [-85.62492358139156, 41.94830978774243], "type": "Point"}, "id": "845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492558853346, 41.94844416710421, -85.62492558853346, 41.94844416710421], "geometry": {"coordinates": [-85.62492558853346, 41.94844416710421], "type": "Point"}, "id": "846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492752268854, 41.9485785468252, -85.62492752268854, 41.9485785468252], "geometry": {"coordinates": [-85.62492752268854, 41.9485785468252], "type": "Point"}, "id": "847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492945684362, 41.94871292626292, -85.62492945684362, 41.94871292626292], "geometry": {"coordinates": [-85.62492945684362, 41.94871292626292], "type": "Point"}, "id": "848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6249313909987, 41.948847305417374, -85.6249313909987, 41.948847305417374], "geometry": {"coordinates": [-85.6249313909987, 41.948847305417374], "type": "Point"}, "id": "849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62493332515376, 41.948981684288555, -85.62493332515376, 41.948981684288555], "geometry": {"coordinates": [-85.62493332515376, 41.948981684288555], "type": "Point"}, "id": "850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62493525930886, 41.94911606287648, -85.62493525930886, 41.94911606287648], "geometry": {"coordinates": [-85.62493525930886, 41.94911606287648], "type": "Point"}, "id": "851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62493738310036, 41.94925043893115, -85.62493738310036, 41.94925043893115], "geometry": {"coordinates": [-85.62493738310036, 41.94925043893115], "type": "Point"}, "id": "852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62494121314529, 41.94938479445847, -85.62494121314529, 41.94938479445847], "geometry": {"coordinates": [-85.62494121314529, 41.94938479445847], "type": "Point"}, "id": "853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62494504319021, 41.94951914970262, -85.62494504319021, 41.94951914970262], "geometry": {"coordinates": [-85.62494504319021, 41.94951914970262], "type": "Point"}, "id": "854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62494887323513, 41.94965350466358, -85.62494887323513, 41.94965350466358], "geometry": {"coordinates": [-85.62494887323513, 41.94965350466358], "type": "Point"}, "id": "855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62495270328006, 41.949787859341384, -85.62495270328006, 41.949787859341384], "geometry": {"coordinates": [-85.62495270328006, 41.949787859341384], "type": "Point"}, "id": "856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62495653332498, 41.949922213736, -85.62495653332498, 41.949922213736], "geometry": {"coordinates": [-85.62495653332498, 41.949922213736], "type": "Point"}, "id": "857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62496036336991, 41.950056567847454, -85.62496036336991, 41.950056567847454], "geometry": {"coordinates": [-85.62496036336991, 41.950056567847454], "type": "Point"}, "id": "858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62496419341484, 41.95019092167572, -85.62496419341484, 41.95019092167572], "geometry": {"coordinates": [-85.62496419341484, 41.95019092167572], "type": "Point"}, "id": "859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62495705878568, 41.950325153999636, -85.62495705878568, 41.950325153999636], "geometry": {"coordinates": [-85.62495705878568, 41.950325153999636], "type": "Point"}, "id": "860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62494237526052, 41.95045897762713, -85.62494237526052, 41.95045897762713], "geometry": {"coordinates": [-85.62494237526052, 41.95045897762713], "type": "Point"}, "id": "861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491756212013, 41.95059208766722, -85.62491756212013, 41.95059208766722], "geometry": {"coordinates": [-85.62491756212013, 41.95059208766722], "type": "Point"}, "id": "862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488375043822, 41.95072405503061, -85.62488375043822, 41.95072405503061], "geometry": {"coordinates": [-85.62488375043822, 41.95072405503061], "type": "Point"}, "id": "863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62484776902986, 41.95085574628538, -85.62484776902986, 41.95085574628538], "geometry": {"coordinates": [-85.62484776902986, 41.95085574628538], "type": "Point"}, "id": "864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62481161831444, 41.950987409809926, -85.62481161831444, 41.950987409809926], "geometry": {"coordinates": [-85.62481161831444, 41.950987409809926], "type": "Point"}, "id": "865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62477061214965, 41.95111828560933, -85.62477061214965, 41.95111828560933], "geometry": {"coordinates": [-85.62477061214965, 41.95111828560933], "type": "Point"}, "id": "866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62472960598483, 41.951249161140026, -85.62472960598483, 41.951249161140026], "geometry": {"coordinates": [-85.62472960598483, 41.951249161140026], "type": "Point"}, "id": "867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62468859982002, 41.951380036402, -85.62468859982002, 41.951380036402], "geometry": {"coordinates": [-85.62468859982002, 41.951380036402], "type": "Point"}, "id": "868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62464759365523, 41.95151091139527, -85.62464759365523, 41.95151091139527], "geometry": {"coordinates": [-85.62464759365523, 41.95151091139527], "type": "Point"}, "id": "869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62460688015916, 41.951641836348244, -85.62460688015916, 41.951641836348244], "geometry": {"coordinates": [-85.62460688015916, 41.951641836348244], "type": "Point"}, "id": "870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62456662819483, 41.95177284024119, -85.62456662819483, 41.95177284024119], "geometry": {"coordinates": [-85.62456662819483, 41.95177284024119], "type": "Point"}, "id": "871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62452637623049, 41.95190384386488, -85.62452637623049, 41.95190384386488], "geometry": {"coordinates": [-85.62452637623049, 41.95190384386488], "type": "Point"}, "id": "872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62448612426614, 41.95203484721934, -85.62448612426614, 41.95203484721934], "geometry": {"coordinates": [-85.62448612426614, 41.95203484721934], "type": "Point"}, "id": "873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6244458723018, 41.952165850304546, -85.6244458723018, 41.952165850304546], "geometry": {"coordinates": [-85.6244458723018, 41.952165850304546], "type": "Point"}, "id": "874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62440562033747, 41.95229685312051, -85.62440562033747, 41.95229685312051], "geometry": {"coordinates": [-85.62440562033747, 41.95229685312051], "type": "Point"}, "id": "875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62436536840428, 41.95242785567253, -85.62436536840428, 41.95242785567253], "geometry": {"coordinates": [-85.62436536840428, 41.95242785567253], "type": "Point"}, "id": "876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62432511842515, 41.95255885828736, -85.62432511842515, 41.95255885828736], "geometry": {"coordinates": [-85.62432511842515, 41.95255885828736], "type": "Point"}, "id": "877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62428486844603, 41.952689860632944, -85.62428486844603, 41.952689860632944], "geometry": {"coordinates": [-85.62428486844603, 41.952689860632944], "type": "Point"}, "id": "878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62424461846689, 41.952820862709295, -85.62424461846689, 41.952820862709295], "geometry": {"coordinates": [-85.62424461846689, 41.952820862709295], "type": "Point"}, "id": "879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62420436848777, 41.952951864516386, -85.62420436848777, 41.952951864516386], "geometry": {"coordinates": [-85.62420436848777, 41.952951864516386], "type": "Point"}, "id": "880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62416411883113, 41.95308286610903, -85.62416411883113, 41.95308286610903], "geometry": {"coordinates": [-85.62416411883113, 41.95308286610903], "type": "Point"}, "id": "881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62412387117753, 41.9532138677728, -85.62412387117753, 41.9532138677728], "geometry": {"coordinates": [-85.62412387117753, 41.9532138677728], "type": "Point"}, "id": "882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62408362352393, 41.953344869167324, -85.62408362352393, 41.953344869167324], "geometry": {"coordinates": [-85.62408362352393, 41.953344869167324], "type": "Point"}, "id": "883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62404337587036, 41.95347587029259, -85.62404337587036, 41.95347587029259], "geometry": {"coordinates": [-85.62404337587036, 41.95347587029259], "type": "Point"}, "id": "884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62400312821677, 41.95360687114862, -85.62400312821677, 41.95360687114862], "geometry": {"coordinates": [-85.62400312821677, 41.95360687114862], "type": "Point"}, "id": "885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62396288056317, 41.95373787173539, -85.62396288056317, 41.95373787173539], "geometry": {"coordinates": [-85.62396288056317, 41.95373787173539], "type": "Point"}, "id": "886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62392263290957, 41.953868872052915, -85.62392263290957, 41.953868872052915], "geometry": {"coordinates": [-85.62392263290957, 41.953868872052915], "type": "Point"}, "id": "887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62389957095233, 41.95400179059587, -85.62389957095233, 41.95400179059587], "geometry": {"coordinates": [-85.62389957095233, 41.95400179059587], "type": "Point"}, "id": "888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62388810666864, 41.95413588026393, -85.62388810666864, 41.95413588026393], "geometry": {"coordinates": [-85.62388810666864, 41.95413588026393], "type": "Point"}, "id": "889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62388582313609, 41.954270116177504, -85.62388582313609, 41.954270116177504], "geometry": {"coordinates": [-85.62388582313609, 41.954270116177504], "type": "Point"}, "id": "890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6238960862706, 41.95440427437087, -85.6238960862706, 41.95440427437087], "geometry": {"coordinates": [-85.6238960862706, 41.95440427437087], "type": "Point"}, "id": "891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62389111917038, 41.954537464760016, -85.62389111917038, 41.954537464760016], "geometry": {"coordinates": [-85.62389111917038, 41.954537464760016], "type": "Point"}, "id": "892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.64770239999999, 41.939835599999995, -85.64770239999999, 41.939835599999995], "geometry": {"coordinates": [-85.64770239999999, 41.939835599999995], "type": "Point"}, "id": "893", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64770418688774, 41.939701224322526, -85.64770418688774, 41.939701224322526], "geometry": {"coordinates": [-85.64770418688774, 41.939701224322526], "type": "Point"}, "id": "894", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64770587075537, 41.93956684760143, -85.64770587075537, 41.93956684760143], "geometry": {"coordinates": [-85.64770587075537, 41.93956684760143], "type": "Point"}, "id": "895", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64770755462304, 41.93943247059716, -85.64770755462304, 41.93943247059716], "geometry": {"coordinates": [-85.64770755462304, 41.93943247059716], "type": "Point"}, "id": "896", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64770923849068, 41.93929809330973, -85.64770923849068, 41.93929809330973], "geometry": {"coordinates": [-85.64770923849068, 41.93929809330973], "type": "Point"}, "id": "897", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64771093000338, 41.9391637158012, -85.64771093000338, 41.9391637158012], "geometry": {"coordinates": [-85.64771093000338, 41.9391637158012], "type": "Point"}, "id": "898", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64771318964277, 41.93902934262221, -85.64771318964277, 41.93902934262221], "geometry": {"coordinates": [-85.64771318964277, 41.93902934262221], "type": "Point"}, "id": "899", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64771065525709, 41.93889499357134, -85.64771065525709, 41.93889499357134], "geometry": {"coordinates": [-85.64771065525709, 41.93889499357134], "type": "Point"}, "id": "900", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64769034103736, 41.93876162528644, -85.64769034103736, 41.93876162528644], "geometry": {"coordinates": [-85.64769034103736, 41.93876162528644], "type": "Point"}, "id": "901", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64766499472792, 41.93862856993631, -85.64766499472792, 41.93862856993631], "geometry": {"coordinates": [-85.64766499472792, 41.93862856993631], "type": "Point"}, "id": "902", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64762543552192, 41.93849761265008, -85.64762543552192, 41.93849761265008], "geometry": {"coordinates": [-85.64762543552192, 41.93849761265008], "type": "Point"}, "id": "903", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.647567749097, 41.938370346117885, -85.647567749097, 41.938370346117885], "geometry": {"coordinates": [-85.647567749097, 41.938370346117885], "type": "Point"}, "id": "904", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64749819643299, 41.93824647391434, -85.64749819643299, 41.93824647391434], "geometry": {"coordinates": [-85.64749819643299, 41.93824647391434], "type": "Point"}, "id": "905", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64741997834928, 41.93812533705728, -85.64741997834928, 41.93812533705728], "geometry": {"coordinates": [-85.64741997834928, 41.93812533705728], "type": "Point"}, "id": "906", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64734422768029, 41.93800334073092, -85.64734422768029, 41.93800334073092], "geometry": {"coordinates": [-85.64734422768029, 41.93800334073092], "type": "Point"}, "id": "907", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64726893263547, 41.93788118300933, -85.64726893263547, 41.93788118300933], "geometry": {"coordinates": [-85.64726893263547, 41.93788118300933], "type": "Point"}, "id": "908", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64719922213256, 41.937757282022254, -85.64719922213256, 41.937757282022254], "geometry": {"coordinates": [-85.64719922213256, 41.937757282022254], "type": "Point"}, "id": "909", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64714384893614, 41.937629967951615, -85.64714384893614, 41.937629967951615], "geometry": {"coordinates": [-85.64714384893614, 41.937629967951615], "type": "Point"}, "id": "910", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64711676772576, 41.937497099505904, -85.64711676772576, 41.937497099505904], "geometry": {"coordinates": [-85.64711676772576, 41.937497099505904], "type": "Point"}, "id": "911", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64708968651536, 41.93736423078337, -85.64708968651536, 41.93736423078337], "geometry": {"coordinates": [-85.64708968651536, 41.93736423078337], "type": "Point"}, "id": "912", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64706641707846, 41.93723097078241, -85.64706641707846, 41.93723097078241], "geometry": {"coordinates": [-85.64706641707846, 41.93723097078241], "type": "Point"}, "id": "913", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64705715326146, 41.9370968235109, -85.64705715326146, 41.9370968235109], "geometry": {"coordinates": [-85.64705715326146, 41.9370968235109], "type": "Point"}, "id": "914", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64705698852708, 41.93696246749269, -85.64705698852708, 41.93696246749269], "geometry": {"coordinates": [-85.64705698852708, 41.93696246749269], "type": "Point"}, "id": "915", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64705822999098, 41.93682810014418, -85.64705822999098, 41.93682810014418], "geometry": {"coordinates": [-85.64705822999098, 41.93682810014418], "type": "Point"}, "id": "916", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64705642854918, 41.93669371821252, -85.64705642854918, 41.93669371821252], "geometry": {"coordinates": [-85.64705642854918, 41.93669371821252], "type": "Point"}, "id": "917", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64705462710738, 41.93655933599771, -85.64705462710738, 41.93655933599771], "geometry": {"coordinates": [-85.64705462710738, 41.93655933599771], "type": "Point"}, "id": "918", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.6470528256656, 41.93642495349973, -85.6470528256656, 41.93642495349973], "geometry": {"coordinates": [-85.6470528256656, 41.93642495349973], "type": "Point"}, "id": "919", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64702936697856, 41.93629217981824, -85.64702936697856, 41.93629217981824], "geometry": {"coordinates": [-85.64702936697856, 41.93629217981824], "type": "Point"}, "id": "920", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.6469799594907, 41.93616382075307, -85.6469799594907, 41.93616382075307], "geometry": {"coordinates": [-85.6469799594907, 41.93616382075307], "type": "Point"}, "id": "921", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64697855615834, 41.93602943479483, -85.64697855615834, 41.93602943479483], "geometry": {"coordinates": [-85.64697855615834, 41.93602943479483], "type": "Point"}, "id": "922", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64697715282598, 41.935895048553405, -85.64697715282598, 41.935895048553405], "geometry": {"coordinates": [-85.64697715282598, 41.935895048553405], "type": "Point"}, "id": "923", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64697574949362, 41.93576066202883, -85.64697574949362, 41.93576066202883], "geometry": {"coordinates": [-85.64697574949362, 41.93576066202883], "type": "Point"}, "id": "924", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64697434616124, 41.93562627522106, -85.64697434616124, 41.93562627522106], "geometry": {"coordinates": [-85.64697434616124, 41.93562627522106], "type": "Point"}, "id": "925", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64697294282888, 41.93549188813014, -85.64697294282888, 41.93549188813014], "geometry": {"coordinates": [-85.64697294282888, 41.93549188813014], "type": "Point"}, "id": "926", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64697216532507, 41.935357499596996, -85.64697216532507, 41.935357499596996], "geometry": {"coordinates": [-85.64697216532507, 41.935357499596996], "type": "Point"}, "id": "927", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64697266913454, 41.93522310840765, -85.64697266913454, 41.93522310840765], "geometry": {"coordinates": [-85.64697266913454, 41.93522310840765], "type": "Point"}, "id": "928", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.64696939704557, 41.935088748761444, -85.64696939704557, 41.935088748761444], "geometry": {"coordinates": [-85.64696939704557, 41.935088748761444], "type": "Point"}, "id": "929", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965446}, "type": "Feature"}, {"bbox": [-85.63945480000001, 41.942609999999995, -85.63945480000001, 41.942609999999995], "geometry": {"coordinates": [-85.63945480000001, 41.942609999999995], "type": "Point"}, "id": "930", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945466119685, 41.94274612591169, -85.63945466119685, 41.94274612591169], "geometry": {"coordinates": [-85.63945466119685, 41.94274612591169], "type": "Point"}, "id": "931", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945456725246, 41.94288225155686, -85.63945456725246, 41.94288225155686], "geometry": {"coordinates": [-85.63945456725246, 41.94288225155686], "type": "Point"}, "id": "932", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945447330805, 41.94301837691141, -85.63945447330805, 41.94301837691141], "geometry": {"coordinates": [-85.63945447330805, 41.94301837691141], "type": "Point"}, "id": "933", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945438397546, 41.94315450197691, -85.63945438397546, 41.94315450197691], "geometry": {"coordinates": [-85.63945438397546, 41.94315450197691], "type": "Point"}, "id": "934", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945431102574, 41.943290626757346, -85.63945431102574, 41.943290626757346], "geometry": {"coordinates": [-85.63945431102574, 41.943290626757346], "type": "Point"}, "id": "935", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.639454238076, 41.943426751247166, -85.639454238076, 41.943426751247166], "geometry": {"coordinates": [-85.639454238076, 41.943426751247166], "type": "Point"}, "id": "936", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945416512628, 41.94356287544637, -85.63945416512628, 41.94356287544637], "geometry": {"coordinates": [-85.63945416512628, 41.94356287544637], "type": "Point"}, "id": "937", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945409217654, 41.94369899935494, -85.63945409217654, 41.94369899935494], "geometry": {"coordinates": [-85.63945409217654, 41.94369899935494], "type": "Point"}, "id": "938", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945401922682, 41.9438351229729, -85.63945401922682, 41.9438351229729], "geometry": {"coordinates": [-85.63945401922682, 41.9438351229729], "type": "Point"}, "id": "939", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945598169643, 41.94397123547117, -85.63945598169643, 41.94397123547117], "geometry": {"coordinates": [-85.63945598169643, 41.94397123547117], "type": "Point"}, "id": "940", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945867261904, 41.94410734380327, -85.63945867261904, 41.94410734380327], "geometry": {"coordinates": [-85.63945867261904, 41.94410734380327], "type": "Point"}, "id": "941", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63946136354166, 41.94424345184481, -85.63946136354166, 41.94424345184481], "geometry": {"coordinates": [-85.63946136354166, 41.94424345184481], "type": "Point"}, "id": "942", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63946405446427, 41.944379559595795, -85.63946405446427, 41.944379559595795], "geometry": {"coordinates": [-85.63946405446427, 41.944379559595795], "type": "Point"}, "id": "943", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63946674538691, 41.94451566705622, -85.63946674538691, 41.94451566705622], "geometry": {"coordinates": [-85.63946674538691, 41.94451566705622], "type": "Point"}, "id": "944", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63946943630953, 41.94465177422609, -85.63946943630953, 41.94465177422609], "geometry": {"coordinates": [-85.63946943630953, 41.94465177422609], "type": "Point"}, "id": "945", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63947212723214, 41.944787881105405, -85.63947212723214, 41.944787881105405], "geometry": {"coordinates": [-85.63947212723214, 41.944787881105405], "type": "Point"}, "id": "946", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63947481815475, 41.94492398769417, -85.63947481815475, 41.94492398769417], "geometry": {"coordinates": [-85.63947481815475, 41.94492398769417], "type": "Point"}, "id": "947", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63947750907737, 41.94506009399236, -85.63947750907737, 41.94506009399236], "geometry": {"coordinates": [-85.63947750907737, 41.94506009399236], "type": "Point"}, "id": "948", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.6321716, 41.9606811, -85.6321716, 41.9606811], "geometry": {"coordinates": [-85.6321716, 41.9606811], "type": "Point"}, "id": "949", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.6323606357143, 41.96068183571434, -85.6323606357143, 41.96068183571434], "geometry": {"coordinates": [-85.6323606357143, 41.96068183571434], "type": "Point"}, "id": "950", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63254967142858, 41.96068257142868, -85.63254967142858, 41.96068257142868], "geometry": {"coordinates": [-85.63254967142858, 41.96068257142868], "type": "Point"}, "id": "951", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63273870714286, 41.960683307143, -85.63273870714286, 41.960683307143], "geometry": {"coordinates": [-85.63273870714286, 41.960683307143], "type": "Point"}, "id": "952", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63292774285716, 41.96068404285732, -85.63292774285716, 41.96068404285732], "geometry": {"coordinates": [-85.63292774285716, 41.96068404285732], "type": "Point"}, "id": "953", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63311677857142, 41.96068477857162, -85.63311677857142, 41.96068477857162], "geometry": {"coordinates": [-85.63311677857142, 41.96068477857162], "type": "Point"}, "id": "954", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63330581428572, 41.96068551428592, -85.63330581428572, 41.96068551428592], "geometry": {"coordinates": [-85.63330581428572, 41.96068551428592], "type": "Point"}, "id": "955", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63349485, 41.960686250000215, -85.63349485, 41.960686250000215], "geometry": {"coordinates": [-85.63349485, 41.960686250000215], "type": "Point"}, "id": "956", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63368388571429, 41.960686985714496, -85.63368388571429, 41.960686985714496], "geometry": {"coordinates": [-85.63368388571429, 41.960686985714496], "type": "Point"}, "id": "957", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63387292142858, 41.960687721428776, -85.63387292142858, 41.960687721428776], "geometry": {"coordinates": [-85.63387292142858, 41.960687721428776], "type": "Point"}, "id": "958", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63406195714285, 41.960688457143036, -85.63406195714285, 41.960688457143036], "geometry": {"coordinates": [-85.63406195714285, 41.960688457143036], "type": "Point"}, "id": "959", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63425099285715, 41.96068919285729, -85.63425099285715, 41.96068919285729], "geometry": {"coordinates": [-85.63425099285715, 41.96068919285729], "type": "Point"}, "id": "960", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63444002857143, 41.96068992857154, -85.63444002857143, 41.96068992857154], "geometry": {"coordinates": [-85.63444002857143, 41.96068992857154], "type": "Point"}, "id": "961", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.6346290642857, 41.96069066428578, -85.6346290642857, 41.96069066428578], "geometry": {"coordinates": [-85.6346290642857, 41.96069066428578], "type": "Point"}, "id": "962", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.6293702, 41.94746680000001, -85.6293702, 41.94746680000001], "geometry": {"coordinates": [-85.6293702, 41.94746680000001], "type": "Point"}, "id": "963", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62928007999997, 41.947587521028716, -85.62928007999997, 41.947587521028716], "geometry": {"coordinates": [-85.62928007999997, 41.947587521028716], "type": "Point"}, "id": "964", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62918995999999, 41.94770824182882, -85.62918995999999, 41.94770824182882], "geometry": {"coordinates": [-85.62918995999999, 41.94770824182882], "type": "Point"}, "id": "965", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62909984, 41.94782896240033, -85.62909984, 41.94782896240033], "geometry": {"coordinates": [-85.62909984, 41.94782896240033], "type": "Point"}, "id": "966", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62900971999998, 41.947949682743236, -85.62900971999998, 41.947949682743236], "geometry": {"coordinates": [-85.62900971999998, 41.947949682743236], "type": "Point"}, "id": "967", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62891959999999, 41.94807040285754, -85.62891959999999, 41.94807040285754], "geometry": {"coordinates": [-85.62891959999999, 41.94807040285754], "type": "Point"}, "id": "968", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62882948, 41.94819112274323, -85.62882948, 41.94819112274323], "geometry": {"coordinates": [-85.62882948, 41.94819112274323], "type": "Point"}, "id": "969", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62873935999998, 41.94831184240032, -85.62873935999998, 41.94831184240032], "geometry": {"coordinates": [-85.62873935999998, 41.94831184240032], "type": "Point"}, "id": "970", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62864923999999, 41.948432561828824, -85.62864923999999, 41.948432561828824], "geometry": {"coordinates": [-85.62864923999999, 41.948432561828824], "type": "Point"}, "id": "971", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62855911999999, 41.94855328102871, -85.62855911999999, 41.94855328102871], "geometry": {"coordinates": [-85.62855911999999, 41.94855328102871], "type": "Point"}, "id": "972", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.620103, 41.95099999999999, -85.620103, 41.95099999999999], "geometry": {"coordinates": [-85.620103, 41.95099999999999], "type": "Point"}, "id": "973", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62028415907713, 41.95100003385517, -85.62028415907713, 41.95100003385517], "geometry": {"coordinates": [-85.62028415907713, 41.95100003385517], "type": "Point"}, "id": "974", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62046531815423, 41.95100006771035, -85.62046531815423, 41.95100006771035], "geometry": {"coordinates": [-85.62046531815423, 41.95100006771035], "type": "Point"}, "id": "975", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62064647723136, 41.95100010156553, -85.62064647723136, 41.95100010156553], "geometry": {"coordinates": [-85.62064647723136, 41.95100010156553], "type": "Point"}, "id": "976", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62082763630845, 41.95100013542073, -85.62082763630845, 41.95100013542073], "geometry": {"coordinates": [-85.62082763630845, 41.95100013542073], "type": "Point"}, "id": "977", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62100879538556, 41.9510001692759, -85.62100879538556, 41.9510001692759], "geometry": {"coordinates": [-85.62100879538556, 41.9510001692759], "type": "Point"}, "id": "978", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62118995446268, 41.95100020313109, -85.62118995446268, 41.95100020313109], "geometry": {"coordinates": [-85.62118995446268, 41.95100020313109], "type": "Point"}, "id": "979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.6213711135398, 41.95100023698626, -85.6213711135398, 41.95100023698626], "geometry": {"coordinates": [-85.6213711135398, 41.95100023698626], "type": "Point"}, "id": "980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62155227261691, 41.95100027084145, -85.62155227261691, 41.95100027084145], "geometry": {"coordinates": [-85.62155227261691, 41.95100027084145], "type": "Point"}, "id": "981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62173343169401, 41.95100030469663, -85.62173343169401, 41.95100030469663], "geometry": {"coordinates": [-85.62173343169401, 41.95100030469663], "type": "Point"}, "id": "982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62191459077114, 41.95100033855181, -85.62191459077114, 41.95100033855181], "geometry": {"coordinates": [-85.62191459077114, 41.95100033855181], "type": "Point"}, "id": "983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62209574984824, 41.95100037240699, -85.62209574984824, 41.95100037240699], "geometry": {"coordinates": [-85.62209574984824, 41.95100037240699], "type": "Point"}, "id": "984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62227690892536, 41.951000406262175, -85.62227690892536, 41.951000406262175], "geometry": {"coordinates": [-85.62227690892536, 41.951000406262175], "type": "Point"}, "id": "985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62245806800247, 41.951000440117355, -85.62245806800247, 41.951000440117355], "geometry": {"coordinates": [-85.62245806800247, 41.951000440117355], "type": "Point"}, "id": "986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62263922707957, 41.951000473972535, -85.62263922707957, 41.951000473972535], "geometry": {"coordinates": [-85.62263922707957, 41.951000473972535], "type": "Point"}, "id": "987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62282038336167, 41.95100014004642, -85.62282038336167, 41.95100014004642], "geometry": {"coordinates": [-85.62282038336167, 41.95100014004642], "type": "Point"}, "id": "988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62300153035018, 41.95099858323472, -85.62300153035018, 41.95099858323472], "geometry": {"coordinates": [-85.62300153035018, 41.95099858323472], "type": "Point"}, "id": "989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62318267733869, 41.95099702642299, -85.62318267733869, 41.95099702642299], "geometry": {"coordinates": [-85.62318267733869, 41.95099702642299], "type": "Point"}, "id": "990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62336382432721, 41.95099546961123, -85.62336382432721, 41.95099546961123], "geometry": {"coordinates": [-85.62336382432721, 41.95099546961123], "type": "Point"}, "id": "991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62354497131572, 41.95099391279942, -85.62354497131572, 41.95099391279942], "geometry": {"coordinates": [-85.62354497131572, 41.95099391279942], "type": "Point"}, "id": "992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62372611830423, 41.95099235598757, -85.62372611830423, 41.95099235598757], "geometry": {"coordinates": [-85.62372611830423, 41.95099235598757], "type": "Point"}, "id": "993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62390726529274, 41.95099079917569, -85.62390726529274, 41.95099079917569], "geometry": {"coordinates": [-85.62390726529274, 41.95099079917569], "type": "Point"}, "id": "994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62408841228128, 41.950989242363775, -85.62408841228128, 41.950989242363775], "geometry": {"coordinates": [-85.62408841228128, 41.950989242363775], "type": "Point"}, "id": "995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62426955926979, 41.950987685551816, -85.62426955926979, 41.950987685551816], "geometry": {"coordinates": [-85.62426955926979, 41.950987685551816], "type": "Point"}, "id": "996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62445070621656, 41.950986126059, -85.62445070621656, 41.950986126059], "geometry": {"coordinates": [-85.62445070621656, 41.950986126059], "type": "Point"}, "id": "997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62463185310828, 41.95098456302952, -85.62463185310828, 41.95098456302952], "geometry": {"coordinates": [-85.62463185310828, 41.95098456302952], "type": "Point"}, "id": "998", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62472099999998, 41.929278, -85.62472099999998, 41.929278], "geometry": {"coordinates": [-85.62472099999998, 41.929278], "type": "Point"}, "id": "999", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.62491310842391, 41.92927311588803, -85.62491310842391, 41.92927311588803], "geometry": {"coordinates": [-85.62491310842391, 41.92927311588803], "type": "Point"}, "id": "1000", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.62510521684781, 41.92926823177568, -85.62510521684781, 41.92926823177568], "geometry": {"coordinates": [-85.62510521684781, 41.92926823177568], "type": "Point"}, "id": "1001", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.62529732527175, 41.92926334766297, -85.62529732527175, 41.92926334766297], "geometry": {"coordinates": [-85.62529732527175, 41.92926334766297], "type": "Point"}, "id": "1002", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.62548943945114, 41.92926140556866, -85.62548943945114, 41.92926140556866], "geometry": {"coordinates": [-85.62548943945114, 41.92926140556866], "type": "Point"}, "id": "1003", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.63974, 41.9521543, -85.63974, 41.9521543], "geometry": {"coordinates": [-85.63974, 41.9521543], "type": "Point"}, "id": "1004", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.63982504314639, 41.95227426791429, -85.63982504314639, 41.95227426791429], "geometry": {"coordinates": [-85.63982504314639, 41.95227426791429], "type": "Point"}, "id": "1005", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.63991007238465, 41.95239424105039, -85.63991007238465, 41.95239424105039], "geometry": {"coordinates": [-85.63991007238465, 41.95239424105039], "type": "Point"}, "id": "1006", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.63999498242836, 41.952514260647334, -85.63999498242836, 41.952514260647334], "geometry": {"coordinates": [-85.63999498242836, 41.952514260647334], "type": "Point"}, "id": "1007", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64007989247207, 41.95263428001829, -85.64007989247207, 41.95263428001829], "geometry": {"coordinates": [-85.64007989247207, 41.95263428001829], "type": "Point"}, "id": "1008", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.6401648025158, 41.95275429916326, -85.6401648025158, 41.95275429916326], "geometry": {"coordinates": [-85.6401648025158, 41.95275429916326], "type": "Point"}, "id": "1009", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64024971255951, 41.95287431808222, -85.64024971255951, 41.95287431808222], "geometry": {"coordinates": [-85.64024971255951, 41.95287431808222], "type": "Point"}, "id": "1010", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64033462260322, 41.952994336775205, -85.64033462260322, 41.952994336775205], "geometry": {"coordinates": [-85.64033462260322, 41.952994336775205], "type": "Point"}, "id": "1011", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64041953264693, 41.95311435524219, -85.64041953264693, 41.95311435524219], "geometry": {"coordinates": [-85.64041953264693, 41.95311435524219], "type": "Point"}, "id": "1012", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64050444269064, 41.95323437348318, -85.64050444269064, 41.95323437348318], "geometry": {"coordinates": [-85.64050444269064, 41.95323437348318], "type": "Point"}, "id": "1013", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64058935273435, 41.95335439149818, -85.64058935273435, 41.95335439149818], "geometry": {"coordinates": [-85.64058935273435, 41.95335439149818], "type": "Point"}, "id": "1014", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64067426277808, 41.95347440928719, -85.64067426277808, 41.95347440928719], "geometry": {"coordinates": [-85.64067426277808, 41.95347440928719], "type": "Point"}, "id": "1015", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64075917282179, 41.953594426850195, -85.64075917282179, 41.953594426850195], "geometry": {"coordinates": [-85.64075917282179, 41.953594426850195], "type": "Point"}, "id": "1016", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64084848086112, 41.95371263186213, -85.64084848086112, 41.95371263186213], "geometry": {"coordinates": [-85.64084848086112, 41.95371263186213], "type": "Point"}, "id": "1017", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64094029575348, 41.953829803633276, -85.64094029575348, 41.953829803633276], "geometry": {"coordinates": [-85.64094029575348, 41.953829803633276], "type": "Point"}, "id": "1018", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64103211064584, 41.95394697518903, -85.64103211064584, 41.95394697518903], "geometry": {"coordinates": [-85.64103211064584, 41.95394697518903], "type": "Point"}, "id": "1019", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.6411239255382, 41.95406414652937, -85.6411239255382, 41.95406414652937], "geometry": {"coordinates": [-85.6411239255382, 41.95406414652937], "type": "Point"}, "id": "1020", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64121574043055, 41.95418131765431, -85.64121574043055, 41.95418131765431], "geometry": {"coordinates": [-85.64121574043055, 41.95418131765431], "type": "Point"}, "id": "1021", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64130755532292, 41.954298488563836, -85.64130755532292, 41.954298488563836], "geometry": {"coordinates": [-85.64130755532292, 41.954298488563836], "type": "Point"}, "id": "1022", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64139937021527, 41.95441565925797, -85.64139937021527, 41.95441565925797], "geometry": {"coordinates": [-85.64139937021527, 41.95441565925797], "type": "Point"}, "id": "1023", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64149118510763, 41.954532829736685, -85.64149118510763, 41.954532829736685], "geometry": {"coordinates": [-85.64149118510763, 41.954532829736685], "type": "Point"}, "id": "1024", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.6469521, 41.9326207, -85.6469521, 41.9326207], "geometry": {"coordinates": [-85.6469521, 41.9326207], "type": "Point"}, "id": "1025", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64690201525329, 41.932751759210134, -85.64690201525329, 41.932751759210134], "geometry": {"coordinates": [-85.64690201525329, 41.932751759210134], "type": "Point"}, "id": "1026", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64690139097094, 41.93289016532718, -85.64690139097094, 41.93289016532718], "geometry": {"coordinates": [-85.64690139097094, 41.93289016532718], "type": "Point"}, "id": "1027", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64690076668862, 41.93302857114391, -85.64690076668862, 41.93302857114391], "geometry": {"coordinates": [-85.64690076668862, 41.93302857114391], "type": "Point"}, "id": "1028", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64690014240627, 41.9331669766603, -85.64690014240627, 41.9331669766603], "geometry": {"coordinates": [-85.64690014240627, 41.9331669766603], "type": "Point"}, "id": "1029", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64689951812393, 41.93330538187636, -85.64689951812393, 41.93330538187636], "geometry": {"coordinates": [-85.64689951812393, 41.93330538187636], "type": "Point"}, "id": "1030", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64690112331398, 41.93344378212264, -85.64690112331398, 41.93344378212264], "geometry": {"coordinates": [-85.64690112331398, 41.93344378212264], "type": "Point"}, "id": "1031", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.6469027951645, 41.933582181929, -85.6469027951645, 41.933582181929], "geometry": {"coordinates": [-85.6469027951645, 41.933582181929], "type": "Point"}, "id": "1032", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.646904467015, 41.93372058143504, -85.646904467015, 41.93372058143504], "geometry": {"coordinates": [-85.646904467015, 41.93372058143504], "type": "Point"}, "id": "1033", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.6469061388655, 41.93385898064078, -85.6469061388655, 41.93385898064078], "geometry": {"coordinates": [-85.6469061388655, 41.93385898064078], "type": "Point"}, "id": "1034", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64690781071603, 41.93399737954619, -85.64690781071603, 41.93399737954619], "geometry": {"coordinates": [-85.64690781071603, 41.93399737954619], "type": "Point"}, "id": "1035", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64690948256654, 41.9341357781513, -85.64690948256654, 41.9341357781513], "geometry": {"coordinates": [-85.64690948256654, 41.9341357781513], "type": "Point"}, "id": "1036", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64691115441705, 41.9342741764561, -85.64691115441705, 41.9342741764561], "geometry": {"coordinates": [-85.64691115441705, 41.9342741764561], "type": "Point"}, "id": "1037", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64691283004395, 41.93441257443352, -85.64691283004395, 41.93441257443352], "geometry": {"coordinates": [-85.64691283004395, 41.93441257443352], "type": "Point"}, "id": "1038", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64691474225047, 41.93455097041537, -85.64691474225047, 41.93455097041537], "geometry": {"coordinates": [-85.64691474225047, 41.93455097041537], "type": "Point"}, "id": "1039", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64691399128893, 41.93468936781721, -85.64691399128893, 41.93468936781721], "geometry": {"coordinates": [-85.64691399128893, 41.93468936781721], "type": "Point"}, "id": "1040", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.64691219101651, 41.934827763881444, -85.64691219101651, 41.934827763881444], "geometry": {"coordinates": [-85.64691219101651, 41.934827763881444], "type": "Point"}, "id": "1041", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632319}, "type": "Feature"}, {"bbox": [-85.610238, 41.95477449999999, -85.610238, 41.95477449999999], "geometry": {"coordinates": [-85.610238, 41.95477449999999], "type": "Point"}, "id": "1042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61023998485702, 41.9549081230546, -85.61023998485702, 41.9549081230546], "geometry": {"coordinates": [-85.61023998485702, 41.9549081230546], "type": "Point"}, "id": "1043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024196971402, 41.955041745829064, -85.61024196971402, 41.955041745829064], "geometry": {"coordinates": [-85.61024196971402, 41.955041745829064], "type": "Point"}, "id": "1044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024395457106, 41.955175368323374, -85.61024395457106, 41.955175368323374], "geometry": {"coordinates": [-85.61024395457106, 41.955175368323374], "type": "Point"}, "id": "1045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024593942808, 41.95530899053753, -85.61024593942808, 41.95530899053753], "geometry": {"coordinates": [-85.61024593942808, 41.95530899053753], "type": "Point"}, "id": "1046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024792428509, 41.95544261247154, -85.61024792428509, 41.95544261247154], "geometry": {"coordinates": [-85.61024792428509, 41.95544261247154], "type": "Point"}, "id": "1047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024990914211, 41.95557623412541, -85.61024990914211, 41.95557623412541], "geometry": {"coordinates": [-85.61024990914211, 41.95557623412541], "type": "Point"}, "id": "1048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025189399913, 41.955709855499116, -85.61025189399913, 41.955709855499116], "geometry": {"coordinates": [-85.61025189399913, 41.955709855499116], "type": "Point"}, "id": "1049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025387885616, 41.95584347659268, -85.61025387885616, 41.95584347659268], "geometry": {"coordinates": [-85.61025387885616, 41.95584347659268], "type": "Point"}, "id": "1050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025586762774, 41.9559770973739, -85.61025586762774, 41.9559770973739], "geometry": {"coordinates": [-85.61025586762774, 41.9559770973739], "type": "Point"}, "id": "1051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025785644146, 41.95611071787463, -85.61025785644146, 41.95611071787463], "geometry": {"coordinates": [-85.61025785644146, 41.95611071787463], "type": "Point"}, "id": "1052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025984525517, 41.95624433809521, -85.61025984525517, 41.95624433809521], "geometry": {"coordinates": [-85.61025984525517, 41.95624433809521], "type": "Point"}, "id": "1053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61026183406892, 41.95637795803564, -85.61026183406892, 41.95637795803564], "geometry": {"coordinates": [-85.61026183406892, 41.95637795803564], "type": "Point"}, "id": "1054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61026382288264, 41.956511577695906, -85.61026382288264, 41.956511577695906], "geometry": {"coordinates": [-85.61026382288264, 41.956511577695906], "type": "Point"}, "id": "1055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6102739237243, 41.95664468435825, -85.6102739237243, 41.95664468435825], "geometry": {"coordinates": [-85.6102739237243, 41.95664468435825], "type": "Point"}, "id": "1056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61030228724547, 41.95677663645899, -85.61030228724547, 41.95677663645899], "geometry": {"coordinates": [-85.61030228724547, 41.95677663645899], "type": "Point"}, "id": "1057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6103454391866, 41.956904156480284, -85.6103454391866, 41.956904156480284], "geometry": {"coordinates": [-85.6103454391866, 41.956904156480284], "type": "Point"}, "id": "1058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61044803186743, 41.957013863027626, -85.61044803186743, 41.957013863027626], "geometry": {"coordinates": [-85.61044803186743, 41.957013863027626], "type": "Point"}, "id": "1059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61055062454828, 41.957123569386106, -85.61055062454828, 41.957123569386106], "geometry": {"coordinates": [-85.61055062454828, 41.957123569386106], "type": "Point"}, "id": "1060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61067261715357, 41.95722140543561, -85.61067261715357, 41.95722140543561], "geometry": {"coordinates": [-85.61067261715357, 41.95722140543561], "type": "Point"}, "id": "1061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61079761866522, 41.95731740029536, -85.61079761866522, 41.95731740029536], "geometry": {"coordinates": [-85.61079761866522, 41.95731740029536], "type": "Point"}, "id": "1062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61092262017682, 41.95741339501049, -85.61092262017682, 41.95741339501049], "geometry": {"coordinates": [-85.61092262017682, 41.95741339501049], "type": "Point"}, "id": "1063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61104762168847, 41.957509389581034, -85.61104762168847, 41.957509389581034], "geometry": {"coordinates": [-85.61104762168847, 41.957509389581034], "type": "Point"}, "id": "1064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6111726232001, 41.95760538400698, -85.6111726232001, 41.95760538400698], "geometry": {"coordinates": [-85.6111726232001, 41.95760538400698], "type": "Point"}, "id": "1065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61129762471174, 41.957701378288334, -85.61129762471174, 41.957701378288334], "geometry": {"coordinates": [-85.61129762471174, 41.957701378288334], "type": "Point"}, "id": "1066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61142262622337, 41.957797372425084, -85.61142262622337, 41.957797372425084], "geometry": {"coordinates": [-85.61142262622337, 41.957797372425084], "type": "Point"}, "id": "1067", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61154762773499, 41.95789336641723, -85.61154762773499, 41.95789336641723], "geometry": {"coordinates": [-85.61154762773499, 41.95789336641723], "type": "Point"}, "id": "1068", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61167262924663, 41.95798936026479, -85.61167262924663, 41.95798936026479], "geometry": {"coordinates": [-85.61167262924663, 41.95798936026479], "type": "Point"}, "id": "1069", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61179763075826, 41.95808535396775, -85.61179763075826, 41.95808535396775], "geometry": {"coordinates": [-85.61179763075826, 41.95808535396775], "type": "Point"}, "id": "1070", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61192263226988, 41.958181347526114, -85.61192263226988, 41.958181347526114], "geometry": {"coordinates": [-85.61192263226988, 41.958181347526114], "type": "Point"}, "id": "1071", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61204763378151, 41.95827734093987, -85.61204763378151, 41.95827734093987], "geometry": {"coordinates": [-85.61204763378151, 41.95827734093987], "type": "Point"}, "id": "1072", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61217263529316, 41.95837333420904, -85.61217263529316, 41.95837333420904], "geometry": {"coordinates": [-85.61217263529316, 41.95837333420904], "type": "Point"}, "id": "1073", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61229763680478, 41.95846932733361, -85.61229763680478, 41.95846932733361], "geometry": {"coordinates": [-85.61229763680478, 41.95846932733361], "type": "Point"}, "id": "1074", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61242263831642, 41.958565320313575, -85.61242263831642, 41.958565320313575], "geometry": {"coordinates": [-85.61242263831642, 41.958565320313575], "type": "Point"}, "id": "1075", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61254763982805, 41.95866131314896, -85.61254763982805, 41.95866131314896], "geometry": {"coordinates": [-85.61254763982805, 41.95866131314896], "type": "Point"}, "id": "1076", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61267264133967, 41.95875730583973, -85.61267264133967, 41.95875730583973], "geometry": {"coordinates": [-85.61267264133967, 41.95875730583973], "type": "Point"}, "id": "1077", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61279764285132, 41.95885329838591, -85.61279764285132, 41.95885329838591], "geometry": {"coordinates": [-85.61279764285132, 41.95885329838591], "type": "Point"}, "id": "1078", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61292264436295, 41.958949290787494, -85.61292264436295, 41.958949290787494], "geometry": {"coordinates": [-85.61292264436295, 41.958949290787494], "type": "Point"}, "id": "1079", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61304764587457, 41.95904528304447, -85.61304764587457, 41.95904528304447], "geometry": {"coordinates": [-85.61304764587457, 41.95904528304447], "type": "Point"}, "id": "1080", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61314870969272, 41.95915501847097, -85.61314870969272, 41.95915501847097], "geometry": {"coordinates": [-85.61314870969272, 41.95915501847097], "type": "Point"}, "id": "1081", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61324196233588, 41.959269238319, -85.61324196233588, 41.959269238319], "geometry": {"coordinates": [-85.61324196233588, 41.959269238319], "type": "Point"}, "id": "1082", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61333430998337, 41.959383773183234, -85.61333430998337, 41.959383773183234], "geometry": {"coordinates": [-85.61333430998337, 41.959383773183234], "type": "Point"}, "id": "1083", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61339261688397, 41.9595101646229, -85.61339261688397, 41.9595101646229], "geometry": {"coordinates": [-85.61339261688397, 41.9595101646229], "type": "Point"}, "id": "1084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61345092378454, 41.95963655581187, -85.61345092378454, 41.95963655581187], "geometry": {"coordinates": [-85.61345092378454, 41.95963655581187], "type": "Point"}, "id": "1085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61350923068512, 41.95976294675015, -85.61350923068512, 41.95976294675015], "geometry": {"coordinates": [-85.61350923068512, 41.95976294675015], "type": "Point"}, "id": "1086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135675375857, 41.95988933743775, -85.6135675375857, 41.95988933743775], "geometry": {"coordinates": [-85.6135675375857, 41.95988933743775], "type": "Point"}, "id": "1087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359489941204, 41.960019601839484, -85.61359489941204, 41.960019601839484], "geometry": {"coordinates": [-85.61359489941204, 41.960019601839484], "type": "Point"}, "id": "1088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359545815985, 41.960153221402805, -85.61359545815985, 41.960153221402805], "geometry": {"coordinates": [-85.61359545815985, 41.960153221402805], "type": "Point"}, "id": "1089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359601690769, 41.960286840685946, -85.61359601690769, 41.960286840685946], "geometry": {"coordinates": [-85.61359601690769, 41.960286840685946], "type": "Point"}, "id": "1090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135965756555, 41.96042045968889, -85.6135965756555, 41.96042045968889], "geometry": {"coordinates": [-85.6135965756555, 41.96042045968889], "type": "Point"}, "id": "1091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359713440332, 41.96055407841166, -85.61359713440332, 41.96055407841166], "geometry": {"coordinates": [-85.61359713440332, 41.96055407841166], "type": "Point"}, "id": "1092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359769315115, 41.96068769685424, -85.61359769315115, 41.96068769685424], "geometry": {"coordinates": [-85.61359769315115, 41.96068769685424], "type": "Point"}, "id": "1093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359825189899, 41.96082131501664, -85.61359825189899, 41.96082131501664], "geometry": {"coordinates": [-85.61359825189899, 41.96082131501664], "type": "Point"}, "id": "1094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135988106468, 41.960954932898844, -85.6135988106468, 41.960954932898844], "geometry": {"coordinates": [-85.6135988106468, 41.960954932898844], "type": "Point"}, "id": "1095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359936939462, 41.96108855050086, -85.61359936939462, 41.96108855050086], "geometry": {"coordinates": [-85.61359936939462, 41.96108855050086], "type": "Point"}, "id": "1096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359992814245, 41.9612221678227, -85.61359992814245, 41.9612221678227], "geometry": {"coordinates": [-85.61359992814245, 41.9612221678227], "type": "Point"}, "id": "1097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360048689028, 41.96135578486434, -85.61360048689028, 41.96135578486434], "geometry": {"coordinates": [-85.61360048689028, 41.96135578486434], "type": "Point"}, "id": "1098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360104563809, 41.9614894016258, -85.61360104563809, 41.9614894016258], "geometry": {"coordinates": [-85.61360104563809, 41.9614894016258], "type": "Point"}, "id": "1099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360160438592, 41.96162301810707, -85.61360160438592, 41.96162301810707], "geometry": {"coordinates": [-85.61360160438592, 41.96162301810707], "type": "Point"}, "id": "1100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360216313373, 41.961756634308145, -85.61360216313373, 41.961756634308145], "geometry": {"coordinates": [-85.61360216313373, 41.961756634308145], "type": "Point"}, "id": "1101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360272188155, 41.96189025022904, -85.61360272188155, 41.96189025022904], "geometry": {"coordinates": [-85.61360272188155, 41.96189025022904], "type": "Point"}, "id": "1102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360328062938, 41.962023865869746, -85.61360328062938, 41.962023865869746], "geometry": {"coordinates": [-85.61360328062938, 41.962023865869746], "type": "Point"}, "id": "1103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6136038393772, 41.962157481230264, -85.6136038393772, 41.962157481230264], "geometry": {"coordinates": [-85.6136038393772, 41.962157481230264], "type": "Point"}, "id": "1104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360439812502, 41.9622910963106, -85.61360439812502, 41.9622910963106], "geometry": {"coordinates": [-85.61360439812502, 41.9622910963106], "type": "Point"}, "id": "1105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360495687285, 41.96242471111074, -85.61360495687285, 41.96242471111074], "geometry": {"coordinates": [-85.61360495687285, 41.96242471111074], "type": "Point"}, "id": "1106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360551562068, 41.962558325630695, -85.61360551562068, 41.962558325630695], "geometry": {"coordinates": [-85.61360551562068, 41.962558325630695], "type": "Point"}, "id": "1107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6136060743685, 41.96269193987045, -85.6136060743685, 41.96269193987045], "geometry": {"coordinates": [-85.6136060743685, 41.96269193987045], "type": "Point"}, "id": "1108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360663311632, 41.96282555383004, -85.61360663311632, 41.96282555383004], "geometry": {"coordinates": [-85.61360663311632, 41.96282555383004], "type": "Point"}, "id": "1109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359790058626, 41.962958075440895, -85.61359790058626, 41.962958075440895], "geometry": {"coordinates": [-85.61359790058626, 41.962958075440895], "type": "Point"}, "id": "1110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61354194674952, 41.96308504653867, -85.61354194674952, 41.96308504653867], "geometry": {"coordinates": [-85.61354194674952, 41.96308504653867], "type": "Point"}, "id": "1111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61348599291277, 41.96321201738344, -85.61348599291277, 41.96321201738344], "geometry": {"coordinates": [-85.61348599291277, 41.96321201738344], "type": "Point"}, "id": "1112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6134175143066, 41.963332982710355, -85.6134175143066, 41.963332982710355], "geometry": {"coordinates": [-85.6134175143066, 41.963332982710355], "type": "Point"}, "id": "1113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61328506066423, 41.96342327367679, -85.61328506066423, 41.96342327367679], "geometry": {"coordinates": [-85.61328506066423, 41.96342327367679], "type": "Point"}, "id": "1114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61315260702185, 41.96351356451528, -85.61315260702185, 41.96351356451528], "geometry": {"coordinates": [-85.61315260702185, 41.96351356451528], "type": "Point"}, "id": "1115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61302015337947, 41.96360385522582, -85.61302015337947, 41.96360385522582], "geometry": {"coordinates": [-85.61302015337947, 41.96360385522582], "type": "Point"}, "id": "1116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61284532160397, 41.96363136453602, -85.61284532160397, 41.96363136453602], "geometry": {"coordinates": [-85.61284532160397, 41.96363136453602], "type": "Point"}, "id": "1117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61266880888385, 41.9636563835913, -85.61266880888385, 41.9636563835913], "geometry": {"coordinates": [-85.61266880888385, 41.9636563835913], "type": "Point"}, "id": "1118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61249229616374, 41.96368140263676, -85.61249229616374, 41.96368140263676], "geometry": {"coordinates": [-85.61249229616374, 41.96368140263676], "type": "Point"}, "id": "1119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61231578344359, 41.96370642167239, -85.61231578344359, 41.96370642167239], "geometry": {"coordinates": [-85.61231578344359, 41.96370642167239], "type": "Point"}, "id": "1120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6121368689549, 41.9637133135461, -85.6121368689549, 41.9637133135461], "geometry": {"coordinates": [-85.6121368689549, 41.9637133135461], "type": "Point"}, "id": "1121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61195718370615, 41.963714388170146, -85.61195718370615, 41.963714388170146], "geometry": {"coordinates": [-85.61195718370615, 41.963714388170146], "type": "Point"}, "id": "1122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61177749845741, 41.963715462794156, -85.61177749845741, 41.963715462794156], "geometry": {"coordinates": [-85.61177749845741, 41.963715462794156], "type": "Point"}, "id": "1123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61159781320866, 41.963716537418165, -85.61159781320866, 41.963716537418165], "geometry": {"coordinates": [-85.61159781320866, 41.963716537418165], "type": "Point"}, "id": "1124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61141812795991, 41.96371761204214, -85.61141812795991, 41.96371761204214], "geometry": {"coordinates": [-85.61141812795991, 41.96371761204214], "type": "Point"}, "id": "1125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61123844271116, 41.9637186866661, -85.61123844271116, 41.9637186866661], "geometry": {"coordinates": [-85.61123844271116, 41.9637186866661], "type": "Point"}, "id": "1126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61105875746242, 41.963719761290044, -85.61105875746242, 41.963719761290044], "geometry": {"coordinates": [-85.61105875746242, 41.963719761290044], "type": "Point"}, "id": "1127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61087907221366, 41.963720835913975, -85.61087907221366, 41.963720835913975], "geometry": {"coordinates": [-85.61087907221366, 41.963720835913975], "type": "Point"}, "id": "1128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61069938696492, 41.963721910537885, -85.61069938696492, 41.963721910537885], "geometry": {"coordinates": [-85.61069938696492, 41.963721910537885], "type": "Point"}, "id": "1129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61051970171617, 41.96372298516177, -85.61051970171617, 41.96372298516177], "geometry": {"coordinates": [-85.61051970171617, 41.96372298516177], "type": "Point"}, "id": "1130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61034001646742, 41.96372405978565, -85.61034001646742, 41.96372405978565], "geometry": {"coordinates": [-85.61034001646742, 41.96372405978565], "type": "Point"}, "id": "1131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61016033121867, 41.96372513440951, -85.61016033121867, 41.96372513440951], "geometry": {"coordinates": [-85.61016033121867, 41.96372513440951], "type": "Point"}, "id": "1132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60998064596993, 41.96372620903334, -85.60998064596993, 41.96372620903334], "geometry": {"coordinates": [-85.60998064596993, 41.96372620903334], "type": "Point"}, "id": "1133", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60980096072117, 41.963727283657164, -85.60980096072117, 41.963727283657164], "geometry": {"coordinates": [-85.60980096072117, 41.963727283657164], "type": "Point"}, "id": "1134", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60962127547243, 41.96372835828097, -85.60962127547243, 41.96372835828097], "geometry": {"coordinates": [-85.60962127547243, 41.96372835828097], "type": "Point"}, "id": "1135", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60944159022368, 41.96372943290475, -85.60944159022368, 41.96372943290475], "geometry": {"coordinates": [-85.60944159022368, 41.96372943290475], "type": "Point"}, "id": "1136", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60926190497494, 41.96373050752851, -85.60926190497494, 41.96373050752851], "geometry": {"coordinates": [-85.60926190497494, 41.96373050752851], "type": "Point"}, "id": "1137", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60908221972619, 41.963731582152256, -85.60908221972619, 41.963731582152256], "geometry": {"coordinates": [-85.60908221972619, 41.963731582152256], "type": "Point"}, "id": "1138", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60890253447745, 41.96373265677599, -85.60890253447745, 41.96373265677599], "geometry": {"coordinates": [-85.60890253447745, 41.96373265677599], "type": "Point"}, "id": "1139", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60872284922868, 41.9637337313997, -85.60872284922868, 41.9637337313997], "geometry": {"coordinates": [-85.60872284922868, 41.9637337313997], "type": "Point"}, "id": "1140", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60854316397996, 41.96373480602339, -85.60854316397996, 41.96373480602339], "geometry": {"coordinates": [-85.60854316397996, 41.96373480602339], "type": "Point"}, "id": "1141", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60836347873119, 41.963735880647064, -85.60836347873119, 41.963735880647064], "geometry": {"coordinates": [-85.60836347873119, 41.963735880647064], "type": "Point"}, "id": "1142", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60818379348245, 41.96373695527072, -85.60818379348245, 41.96373695527072], "geometry": {"coordinates": [-85.60818379348245, 41.96373695527072], "type": "Point"}, "id": "1143", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6080041082337, 41.96373802989436, -85.6080041082337, 41.96373802989436], "geometry": {"coordinates": [-85.6080041082337, 41.96373802989436], "type": "Point"}, "id": "1144", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60782442298496, 41.96373910451798, -85.60782442298496, 41.96373910451798], "geometry": {"coordinates": [-85.60782442298496, 41.96373910451798], "type": "Point"}, "id": "1145", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6076447377362, 41.96374017914158, -85.6076447377362, 41.96374017914158], "geometry": {"coordinates": [-85.6076447377362, 41.96374017914158], "type": "Point"}, "id": "1146", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60746505248747, 41.96374125376516, -85.60746505248747, 41.96374125376516], "geometry": {"coordinates": [-85.60746505248747, 41.96374125376516], "type": "Point"}, "id": "1147", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6072853672387, 41.96374232838872, -85.6072853672387, 41.96374232838872], "geometry": {"coordinates": [-85.6072853672387, 41.96374232838872], "type": "Point"}, "id": "1148", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60710568198996, 41.96374340301227, -85.60710568198996, 41.96374340301227], "geometry": {"coordinates": [-85.60710568198996, 41.96374340301227], "type": "Point"}, "id": "1149", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60692599674121, 41.9637444776358, -85.60692599674121, 41.9637444776358], "geometry": {"coordinates": [-85.60692599674121, 41.9637444776358], "type": "Point"}, "id": "1150", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60674631149247, 41.96374555225931, -85.60674631149247, 41.96374555225931], "geometry": {"coordinates": [-85.60674631149247, 41.96374555225931], "type": "Point"}, "id": "1151", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60656662624372, 41.96374662688281, -85.60656662624372, 41.96374662688281], "geometry": {"coordinates": [-85.60656662624372, 41.96374662688281], "type": "Point"}, "id": "1152", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60638694099498, 41.96374770150628, -85.60638694099498, 41.96374770150628], "geometry": {"coordinates": [-85.60638694099498, 41.96374770150628], "type": "Point"}, "id": "1153", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60620725574623, 41.963748776129734, -85.60620725574623, 41.963748776129734], "geometry": {"coordinates": [-85.60620725574623, 41.963748776129734], "type": "Point"}, "id": "1154", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60602757049749, 41.963749850753175, -85.60602757049749, 41.963749850753175], "geometry": {"coordinates": [-85.60602757049749, 41.963749850753175], "type": "Point"}, "id": "1155", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60584788524874, 41.963750925376594, -85.60584788524874, 41.963750925376594], "geometry": {"coordinates": [-85.60584788524874, 41.963750925376594], "type": "Point"}, "id": "1156", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.62155999999999, 41.948333000000005, -85.62155999999999, 41.948333000000005], "geometry": {"coordinates": [-85.62155999999999, 41.948333000000005], "type": "Point"}, "id": "1157", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62174688888791, 41.948333046683324, -85.62174688888791, 41.948333046683324], "geometry": {"coordinates": [-85.62174688888791, 41.948333046683324], "type": "Point"}, "id": "1158", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62193377777582, 41.94833309336664, -85.62193377777582, 41.94833309336664], "geometry": {"coordinates": [-85.62193377777582, 41.94833309336664], "type": "Point"}, "id": "1159", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62212066666375, 41.94833314004997, -85.62212066666375, 41.94833314004997], "geometry": {"coordinates": [-85.62212066666375, 41.94833314004997], "type": "Point"}, "id": "1160", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62230755555166, 41.94833318673328, -85.62230755555166, 41.94833318673328], "geometry": {"coordinates": [-85.62230755555166, 41.94833318673328], "type": "Point"}, "id": "1161", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62249444443957, 41.948333233416605, -85.62249444443957, 41.948333233416605], "geometry": {"coordinates": [-85.62249444443957, 41.948333233416605], "type": "Point"}, "id": "1162", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62268133332748, 41.948333280099924, -85.62268133332748, 41.948333280099924], "geometry": {"coordinates": [-85.62268133332748, 41.948333280099924], "type": "Point"}, "id": "1163", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62286822221627, 41.94833332478554, -85.62286822221627, 41.94833332478554], "geometry": {"coordinates": [-85.62286822221627, 41.94833332478554], "type": "Point"}, "id": "1164", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.6230551111057, 41.94833336798686, -85.6230551111057, 41.94833336798686], "geometry": {"coordinates": [-85.6230551111057, 41.94833336798686], "type": "Point"}, "id": "1165", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62324199999513, 41.94833341118817, -85.62324199999513, 41.94833341118817], "geometry": {"coordinates": [-85.62324199999513, 41.94833341118817], "type": "Point"}, "id": "1166", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62342888888456, 41.94833345438949, -85.62342888888456, 41.94833345438949], "geometry": {"coordinates": [-85.62342888888456, 41.94833345438949], "type": "Point"}, "id": "1167", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62361577777399, 41.9483334975908, -85.62361577777399, 41.9483334975908], "geometry": {"coordinates": [-85.62361577777399, 41.9483334975908], "type": "Point"}, "id": "1168", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62380266666341, 41.94833354079211, -85.62380266666341, 41.94833354079211], "geometry": {"coordinates": [-85.62380266666341, 41.94833354079211], "type": "Point"}, "id": "1169", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62398955555284, 41.94833358399343, -85.62398955555284, 41.94833358399343], "geometry": {"coordinates": [-85.62398955555284, 41.94833358399343], "type": "Point"}, "id": "1170", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62417644444227, 41.94833362719474, -85.62417644444227, 41.94833362719474], "geometry": {"coordinates": [-85.62417644444227, 41.94833362719474], "type": "Point"}, "id": "1171", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.6243633333317, 41.94833367039606, -85.6243633333317, 41.94833367039606], "geometry": {"coordinates": [-85.6243633333317, 41.94833367039606], "type": "Point"}, "id": "1172", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62455022222113, 41.94833371359738, -85.62455022222113, 41.94833371359738], "geometry": {"coordinates": [-85.62455022222113, 41.94833371359738], "type": "Point"}, "id": "1173", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62473711111056, 41.94833375679869, -85.62473711111056, 41.94833375679869], "geometry": {"coordinates": [-85.62473711111056, 41.94833375679869], "type": "Point"}, "id": "1174", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.650247, 41.95096, -85.650247, 41.95096], "geometry": {"coordinates": [-85.650247, 41.95096], "type": "Point"}, "id": "1175", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65043842857143, 41.95095971428572, -85.65043842857143, 41.95095971428572], "geometry": {"coordinates": [-85.65043842857143, 41.95095971428572], "type": "Point"}, "id": "1176", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65062985714287, 41.950959428571444, -85.65062985714287, 41.950959428571444], "geometry": {"coordinates": [-85.65062985714287, 41.950959428571444], "type": "Point"}, "id": "1177", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65082128571429, 41.95095914285715, -85.65082128571429, 41.95095914285715], "geometry": {"coordinates": [-85.65082128571429, 41.95095914285715], "type": "Point"}, "id": "1178", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65101271428571, 41.95095885714286, -85.65101271428571, 41.95095885714286], "geometry": {"coordinates": [-85.65101271428571, 41.95095885714286], "type": "Point"}, "id": "1179", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65120414285714, 41.95095857142858, -85.65120414285714, 41.95095857142858], "geometry": {"coordinates": [-85.65120414285714, 41.95095857142858], "type": "Point"}, "id": "1180", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65139557142858, 41.95095828571429, -85.65139557142858, 41.95095828571429], "geometry": {"coordinates": [-85.65139557142858, 41.95095828571429], "type": "Point"}, "id": "1181", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.651459, 41.9269659, -85.651459, 41.9269659], "geometry": {"coordinates": [-85.651459, 41.9269659], "type": "Point"}, "id": "1182", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965581}, "type": "Feature"}, {"bbox": [-85.65127659810106, 41.92689874846126, -85.65127659810106, 41.92689874846126], "geometry": {"coordinates": [-85.65127659810106, 41.92689874846126], "type": "Point"}, "id": "1183", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965581}, "type": "Feature"}, {"bbox": [-85.65107398636344, 41.926886653331806, -85.65107398636344, 41.926886653331806], "geometry": {"coordinates": [-85.65107398636344, 41.926886653331806], "type": "Point"}, "id": "1184", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965581}, "type": "Feature"}, {"bbox": [-85.65086936173435, 41.92689079230517, -85.65086936173435, 41.92689079230517], "geometry": {"coordinates": [-85.65086936173435, 41.92689079230517], "type": "Point"}, "id": "1185", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965581}, "type": "Feature"}, {"bbox": [-85.65066473710525, 41.92689493127826, -85.65066473710525, 41.92689493127826], "geometry": {"coordinates": [-85.65066473710525, 41.92689493127826], "type": "Point"}, "id": "1186", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965581}, "type": "Feature"}, {"bbox": [-85.65046011247614, 41.926899070251096, -85.65046011247614, 41.926899070251096], "geometry": {"coordinates": [-85.65046011247614, 41.926899070251096], "type": "Point"}, "id": "1187", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965581}, "type": "Feature"}, {"bbox": [-85.65025548784703, 41.92690320922365, -85.65025548784703, 41.92690320922365], "geometry": {"coordinates": [-85.65025548784703, 41.92690320922365], "type": "Point"}, "id": "1188", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17965581}, "type": "Feature"}, {"bbox": [-85.6388962, 41.9321266, -85.6388962, 41.9321266], "geometry": {"coordinates": [-85.6388962, 41.9321266], "type": "Point"}, "id": "1189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63889190853068, 41.93226152607311, -85.63889190853068, 41.93226152607311], "geometry": {"coordinates": [-85.63889190853068, 41.93226152607311], "type": "Point"}, "id": "1190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63888761706137, 41.932396451860804, -85.63888761706137, 41.932396451860804], "geometry": {"coordinates": [-85.63888761706137, 41.932396451860804], "type": "Point"}, "id": "1191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63888332559206, 41.9325313773631, -85.63888332559206, 41.9325313773631], "geometry": {"coordinates": [-85.63888332559206, 41.9325313773631], "type": "Point"}, "id": "1192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63887903412275, 41.93266630257997, -85.63887903412275, 41.93266630257997], "geometry": {"coordinates": [-85.63887903412275, 41.93266630257997], "type": "Point"}, "id": "1193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63887438521203, 41.93280122069793, -85.63887438521203, 41.93280122069793], "geometry": {"coordinates": [-85.63887438521203, 41.93280122069793], "type": "Point"}, "id": "1194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63886935702057, 41.9329361312617, -85.63886935702057, 41.9329361312617], "geometry": {"coordinates": [-85.63886935702057, 41.9329361312617], "type": "Point"}, "id": "1195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63886432475219, 41.93307104145619, -85.63886432475219, 41.93307104145619], "geometry": {"coordinates": [-85.63886432475219, 41.93307104145619], "type": "Point"}, "id": "1196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63885929248383, 41.93320595136533, -85.63885929248383, 41.93320595136533], "geometry": {"coordinates": [-85.63885929248383, 41.93320595136533], "type": "Point"}, "id": "1197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63885426021545, 41.93334086098913, -85.63885426021545, 41.93334086098913], "geometry": {"coordinates": [-85.63885426021545, 41.93334086098913], "type": "Point"}, "id": "1198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63884922794708, 41.933475770327554, -85.63884922794708, 41.933475770327554], "geometry": {"coordinates": [-85.63884922794708, 41.933475770327554], "type": "Point"}, "id": "1199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63884419567871, 41.93361067938064, -85.63884419567871, 41.93361067938064], "geometry": {"coordinates": [-85.63884419567871, 41.93361067938064], "type": "Point"}, "id": "1200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63883916341035, 41.933745588148376, -85.63883916341035, 41.933745588148376], "geometry": {"coordinates": [-85.63883916341035, 41.933745588148376], "type": "Point"}, "id": "1201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63883413114199, 41.93388049663074, -85.63883413114199, 41.93388049663074], "geometry": {"coordinates": [-85.63883413114199, 41.93388049663074], "type": "Point"}, "id": "1202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63883026489034, 41.934015420645814, -85.63883026489034, 41.934015420645814], "geometry": {"coordinates": [-85.63883026489034, 41.934015420645814], "type": "Point"}, "id": "1203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882868193015, 41.93415037535028, -85.63882868193015, 41.93415037535028], "geometry": {"coordinates": [-85.63882868193015, 41.93415037535028], "type": "Point"}, "id": "1204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882709896998, 41.93428532976919, -85.63882709896998, 41.93428532976919], "geometry": {"coordinates": [-85.63882709896998, 41.93428532976919], "type": "Point"}, "id": "1205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882551600979, 41.93442028390254, -85.63882551600979, 41.93442028390254], "geometry": {"coordinates": [-85.63882551600979, 41.93442028390254], "type": "Point"}, "id": "1206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882393304961, 41.93455523775035, -85.63882393304961, 41.93455523775035], "geometry": {"coordinates": [-85.63882393304961, 41.93455523775035], "type": "Point"}, "id": "1207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882235008941, 41.9346901913126, -85.63882235008941, 41.9346901913126], "geometry": {"coordinates": [-85.63882235008941, 41.9346901913126], "type": "Point"}, "id": "1208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882076712922, 41.93482514458929, -85.63882076712922, 41.93482514458929], "geometry": {"coordinates": [-85.63882076712922, 41.93482514458929], "type": "Point"}, "id": "1209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63881918416904, 41.934960097580436, -85.63881918416904, 41.934960097580436], "geometry": {"coordinates": [-85.63881918416904, 41.934960097580436], "type": "Point"}, "id": "1210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63881609574426, 41.93509503314739, -85.63881609574426, 41.93509503314739], "geometry": {"coordinates": [-85.63881609574426, 41.93509503314739], "type": "Point"}, "id": "1211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63881212680919, 41.9352299584049, -85.63881212680919, 41.9352299584049], "geometry": {"coordinates": [-85.63881212680919, 41.9352299584049], "type": "Point"}, "id": "1212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63880815787414, 41.935364883376984, -85.63880815787414, 41.935364883376984], "geometry": {"coordinates": [-85.63880815787414, 41.935364883376984], "type": "Point"}, "id": "1213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63880418893909, 41.93549980806362, -85.63880418893909, 41.93549980806362], "geometry": {"coordinates": [-85.63880418893909, 41.93549980806362], "type": "Point"}, "id": "1214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63880022000403, 41.93563473246482, -85.63880022000403, 41.93563473246482], "geometry": {"coordinates": [-85.63880022000403, 41.93563473246482], "type": "Point"}, "id": "1215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63879625106898, 41.935769656580575, -85.63879625106898, 41.935769656580575], "geometry": {"coordinates": [-85.63879625106898, 41.935769656580575], "type": "Point"}, "id": "1216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63879228213392, 41.9359045804109, -85.63879228213392, 41.9359045804109], "geometry": {"coordinates": [-85.63879228213392, 41.9359045804109], "type": "Point"}, "id": "1217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63878831319887, 41.93603950395579, -85.63878831319887, 41.93603950395579], "geometry": {"coordinates": [-85.63878831319887, 41.93603950395579], "type": "Point"}, "id": "1218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63878434426381, 41.93617442721523, -85.63878434426381, 41.93617442721523], "geometry": {"coordinates": [-85.63878434426381, 41.93617442721523], "type": "Point"}, "id": "1219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63878037532876, 41.936309350189234, -85.63878037532876, 41.936309350189234], "geometry": {"coordinates": [-85.63878037532876, 41.936309350189234], "type": "Point"}, "id": "1220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6387764063937, 41.93644427287779, -85.6387764063937, 41.93644427287779], "geometry": {"coordinates": [-85.6387764063937, 41.93644427287779], "type": "Point"}, "id": "1221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63877243745867, 41.93657919528091, -85.63877243745867, 41.93657919528091], "geometry": {"coordinates": [-85.63877243745867, 41.93657919528091], "type": "Point"}, "id": "1222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6387684685236, 41.936714117398594, -85.6387684685236, 41.936714117398594], "geometry": {"coordinates": [-85.6387684685236, 41.936714117398594], "type": "Point"}, "id": "1223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63876449958855, 41.93684903923084, -85.63876449958855, 41.93684903923084], "geometry": {"coordinates": [-85.63876449958855, 41.93684903923084], "type": "Point"}, "id": "1224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6387605306535, 41.936983960777646, -85.6387605306535, 41.936983960777646], "geometry": {"coordinates": [-85.6387605306535, 41.936983960777646], "type": "Point"}, "id": "1225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63875233329259, 41.93711877083243, -85.63875233329259, 41.93711877083243], "geometry": {"coordinates": [-85.63875233329259, 41.93711877083243], "type": "Point"}, "id": "1226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63874348332983, 41.93725356343902, -85.63874348332983, 41.93725356343902], "geometry": {"coordinates": [-85.63874348332983, 41.93725356343902], "type": "Point"}, "id": "1227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63873463336706, 41.93738835576073, -85.63873463336706, 41.93738835576073], "geometry": {"coordinates": [-85.63873463336706, 41.93738835576073], "type": "Point"}, "id": "1228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63872578340433, 41.93752314779752, -85.63872578340433, 41.93752314779752], "geometry": {"coordinates": [-85.63872578340433, 41.93752314779752], "type": "Point"}, "id": "1229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63871693344159, 41.93765793954943, -85.63871693344159, 41.93765793954943], "geometry": {"coordinates": [-85.63871693344159, 41.93765793954943], "type": "Point"}, "id": "1230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6387080834788, 41.93779273101643, -85.6387080834788, 41.93779273101643], "geometry": {"coordinates": [-85.6387080834788, 41.93779273101643], "type": "Point"}, "id": "1231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63869923351606, 41.93792752219853, -85.63869923351606, 41.93792752219853], "geometry": {"coordinates": [-85.63869923351606, 41.93792752219853], "type": "Point"}, "id": "1232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63869038355332, 41.938062313095735, -85.63869038355332, 41.938062313095735], "geometry": {"coordinates": [-85.63869038355332, 41.938062313095735], "type": "Point"}, "id": "1233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868200300026, 41.93819711217509, -85.63868200300026, 41.93819711217509], "geometry": {"coordinates": [-85.63868200300026, 41.93819711217509], "type": "Point"}, "id": "1234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6386820599288, 41.93833206316172, -85.6386820599288, 41.93833206316172], "geometry": {"coordinates": [-85.6386820599288, 41.93833206316172], "type": "Point"}, "id": "1235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868211685737, 41.93846701386275, -85.63868211685737, 41.93846701386275], "geometry": {"coordinates": [-85.63868211685737, 41.93846701386275], "type": "Point"}, "id": "1236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868217378591, 41.9386019642782, -85.63868217378591, 41.9386019642782], "geometry": {"coordinates": [-85.63868217378591, 41.9386019642782], "type": "Point"}, "id": "1237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868223071445, 41.93873691440808, -85.63868223071445, 41.93873691440808], "geometry": {"coordinates": [-85.63868223071445, 41.93873691440808], "type": "Point"}, "id": "1238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868228764301, 41.93887186425238, -85.63868228764301, 41.93887186425238], "geometry": {"coordinates": [-85.63868228764301, 41.93887186425238], "type": "Point"}, "id": "1239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868234457156, 41.939006813811105, -85.63868234457156, 41.939006813811105], "geometry": {"coordinates": [-85.63868234457156, 41.939006813811105], "type": "Point"}, "id": "1240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868240150013, 41.93914176308424, -85.63868240150013, 41.93914176308424], "geometry": {"coordinates": [-85.63868240150013, 41.93914176308424], "type": "Point"}, "id": "1241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868245842868, 41.9392767120718, -85.63868245842868, 41.9392767120718], "geometry": {"coordinates": [-85.63868245842868, 41.9392767120718], "type": "Point"}, "id": "1242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868251535725, 41.939411660773786, -85.63868251535725, 41.939411660773786], "geometry": {"coordinates": [-85.63868251535725, 41.939411660773786], "type": "Point"}, "id": "1243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868257228579, 41.93954660919019, -85.63868257228579, 41.93954660919019], "geometry": {"coordinates": [-85.63868257228579, 41.93954660919019], "type": "Point"}, "id": "1244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868262921434, 41.93968155732101, -85.63868262921434, 41.93968155732101], "geometry": {"coordinates": [-85.63868262921434, 41.93968155732101], "type": "Point"}, "id": "1245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868268614289, 41.93981650516625, -85.63868268614289, 41.93981650516625], "geometry": {"coordinates": [-85.63868268614289, 41.93981650516625], "type": "Point"}, "id": "1246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868274307146, 41.939951452725914, -85.63868274307146, 41.939951452725914], "geometry": {"coordinates": [-85.63868274307146, 41.939951452725914], "type": "Point"}, "id": "1247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63463579999998, 41.94732299999999, -85.63463579999998, 41.94732299999999], "geometry": {"coordinates": [-85.63463579999998, 41.94732299999999], "type": "Point"}, "id": "1248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63482707402292, 41.947319594409024, -85.63482707402292, 41.947319594409024], "geometry": {"coordinates": [-85.63482707402292, 41.947319594409024], "type": "Point"}, "id": "1249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63501834804589, 41.94731618881787, -85.63501834804589, 41.94731618881787], "geometry": {"coordinates": [-85.63501834804589, 41.94731618881787], "type": "Point"}, "id": "1250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63520962221804, 41.94731278786883, -85.63520962221804, 41.94731278786883], "geometry": {"coordinates": [-85.63520962221804, 41.94731278786883], "type": "Point"}, "id": "1251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.6354008970072, 41.94730940624348, -85.6354008970072, 41.94730940624348], "geometry": {"coordinates": [-85.6354008970072, 41.94730940624348], "type": "Point"}, "id": "1252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63559217276625, 41.94730605502533, -85.63559217276625, 41.94730605502533], "geometry": {"coordinates": [-85.63559217276625, 41.94730605502533], "type": "Point"}, "id": "1253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63578344851082, 41.947302703350395, -85.63578344851082, 41.947302703350395], "geometry": {"coordinates": [-85.63578344851082, 41.947302703350395], "type": "Point"}, "id": "1254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63597472425542, 41.94729935167528, -85.63597472425542, 41.94729935167528], "geometry": {"coordinates": [-85.63597472425542, 41.94729935167528], "type": "Point"}, "id": "1255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.634723, 41.95368100000001, -85.634723, 41.95368100000001], "geometry": {"coordinates": [-85.634723, 41.95368100000001], "type": "Point"}, "id": "1256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.634911725, 41.953681575000026, -85.634911725, 41.953681575000026], "geometry": {"coordinates": [-85.634911725, 41.953681575000026], "type": "Point"}, "id": "1257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.63510044999998, 41.95368215000004, -85.63510044999998, 41.95368215000004], "geometry": {"coordinates": [-85.63510044999998, 41.95368215000004], "type": "Point"}, "id": "1258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.63528917499998, 41.95368272500004, -85.63528917499998, 41.95368272500004], "geometry": {"coordinates": [-85.63528917499998, 41.95368272500004], "type": "Point"}, "id": "1259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.63547789999998, 41.953683300000044, -85.63547789999998, 41.953683300000044], "geometry": {"coordinates": [-85.63547789999998, 41.953683300000044], "type": "Point"}, "id": "1260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.635666625, 41.95368387500004, -85.635666625, 41.95368387500004], "geometry": {"coordinates": [-85.635666625, 41.95368387500004], "type": "Point"}, "id": "1261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.63585535, 41.95368445000003, -85.63585535, 41.95368445000003], "geometry": {"coordinates": [-85.63585535, 41.95368445000003], "type": "Point"}, "id": "1262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.636044075, 41.95368502500002, -85.636044075, 41.95368502500002], "geometry": {"coordinates": [-85.636044075, 41.95368502500002], "type": "Point"}, "id": "1263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.6469834, 41.94919699999999, -85.6469834, 41.94919699999999], "geometry": {"coordinates": [-85.6469834, 41.94919699999999], "type": "Point"}, "id": "1264", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.6469900731278, 41.949331827981176, -85.6469900731278, 41.949331827981176], "geometry": {"coordinates": [-85.6469900731278, 41.949331827981176], "type": "Point"}, "id": "1265", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64699674625558, 41.94946665567718, -85.64699674625558, 41.94946665567718], "geometry": {"coordinates": [-85.64699674625558, 41.94946665567718], "type": "Point"}, "id": "1266", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64700341938335, 41.949601483088024, -85.64700341938335, 41.949601483088024], "geometry": {"coordinates": [-85.64700341938335, 41.949601483088024], "type": "Point"}, "id": "1267", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64701009251115, 41.94973631021371, -85.64701009251115, 41.94973631021371], "geometry": {"coordinates": [-85.64701009251115, 41.94973631021371], "type": "Point"}, "id": "1268", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64701676563895, 41.94987113705421, -85.64701676563895, 41.94987113705421], "geometry": {"coordinates": [-85.64701676563895, 41.94987113705421], "type": "Point"}, "id": "1269", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64702343876672, 41.95000596360954, -85.64702343876672, 41.95000596360954], "geometry": {"coordinates": [-85.64702343876672, 41.95000596360954], "type": "Point"}, "id": "1270", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64702967479951, 41.95014080066232, -85.64702967479951, 41.95014080066232], "geometry": {"coordinates": [-85.64702967479951, 41.95014080066232], "type": "Point"}, "id": "1271", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.6470350292429, 41.95027565917762, -85.6470350292429, 41.95027565917762], "geometry": {"coordinates": [-85.6470350292429, 41.95027565917762], "type": "Point"}, "id": "1272", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64701937535723, 41.95040883192984, -85.64701937535723, 41.95040883192984], "geometry": {"coordinates": [-85.64701937535723, 41.95040883192984], "type": "Point"}, "id": "1273", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.6469516522918, 41.950533864433666, -85.6469516522918, 41.950533864433666], "geometry": {"coordinates": [-85.6469516522918, 41.950533864433666], "type": "Point"}, "id": "1274", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.6468754136867, 41.950656288015374, -85.6468754136867, 41.950656288015374], "geometry": {"coordinates": [-85.6468754136867, 41.950656288015374], "type": "Point"}, "id": "1275", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64679917508161, 41.95077871136196, -85.64679917508161, 41.95077871136196], "geometry": {"coordinates": [-85.64679917508161, 41.95077871136196], "type": "Point"}, "id": "1276", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64672293647652, 41.95090113447344, -85.64672293647652, 41.95090113447344], "geometry": {"coordinates": [-85.64672293647652, 41.95090113447344], "type": "Point"}, "id": "1277", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64664669787143, 41.95102355734979, -85.64664669787143, 41.95102355734979], "geometry": {"coordinates": [-85.64664669787143, 41.95102355734979], "type": "Point"}, "id": "1278", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64657046148726, 41.95114598075594, -85.64657046148726, 41.95114598075594], "geometry": {"coordinates": [-85.64657046148726, 41.95114598075594], "type": "Point"}, "id": "1279", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64649423596641, 41.951268407668444, -85.64649423596641, 41.951268407668444], "geometry": {"coordinates": [-85.64649423596641, 41.951268407668444], "type": "Point"}, "id": "1280", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64641801044556, 41.95139083434581, -85.64641801044556, 41.95139083434581], "geometry": {"coordinates": [-85.64641801044556, 41.95139083434581], "type": "Point"}, "id": "1281", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64633448295537, 41.95151057874247, -85.64633448295537, 41.95151057874247], "geometry": {"coordinates": [-85.64633448295537, 41.95151057874247], "type": "Point"}, "id": "1282", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64625011271632, 41.95163001371684, -85.64625011271632, 41.95163001371684], "geometry": {"coordinates": [-85.64625011271632, 41.95163001371684], "type": "Point"}, "id": "1283", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64616574247728, 41.95174944846741, -85.64616574247728, 41.95174944846741], "geometry": {"coordinates": [-85.64616574247728, 41.95174944846741], "type": "Point"}, "id": "1284", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64608137223823, 41.95186888299419, -85.64608137223823, 41.95186888299419], "geometry": {"coordinates": [-85.64608137223823, 41.95186888299419], "type": "Point"}, "id": "1285", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64600656938, 41.95199163122659, -85.64600656938, 41.95199163122659], "geometry": {"coordinates": [-85.64600656938, 41.95199163122659], "type": "Point"}, "id": "1286", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.64593793469, 41.95211651573563, -85.64593793469, 41.95211651573563], "geometry": {"coordinates": [-85.64593793469, 41.95211651573563], "type": "Point"}, "id": "1287", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17967185}, "type": "Feature"}, {"bbox": [-85.634763, 41.95829199999999, -85.634763, 41.95829199999999], "geometry": {"coordinates": [-85.634763, 41.95829199999999], "type": "Point"}, "id": "1288", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63495248601049, 41.95829437153957, -85.63495248601049, 41.95829437153957], "geometry": {"coordinates": [-85.63495248601049, 41.95829437153957], "type": "Point"}, "id": "1289", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63514197189492, 41.95829674862722, -85.63514197189492, 41.95829674862722], "geometry": {"coordinates": [-85.63514197189492, 41.95829674862722], "type": "Point"}, "id": "1290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63533145750316, 41.958299137873546, -85.63533145750316, 41.958299137873546], "geometry": {"coordinates": [-85.63533145750316, 41.958299137873546], "type": "Point"}, "id": "1291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63552094311137, 41.95830152711978, -85.63552094311137, 41.95830152711978], "geometry": {"coordinates": [-85.63552094311137, 41.95830152711978], "type": "Point"}, "id": "1292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.6357104288275, 41.95830391162599, -85.6357104288275, 41.95830391162599], "geometry": {"coordinates": [-85.6357104288275, 41.95830391162599], "type": "Point"}, "id": "1293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63589991461774, 41.95830629287632, -85.63589991461774, 41.95830629287632], "geometry": {"coordinates": [-85.63589991461774, 41.95830629287632], "type": "Point"}, "id": "1294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63608940015455, 41.958308685199356, -85.63608940015455, 41.958308685199356], "geometry": {"coordinates": [-85.63608940015455, 41.958308685199356], "type": "Point"}, "id": "1295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63627888630347, 41.95831101322837, -85.63627888630347, 41.95831101322837], "geometry": {"coordinates": [-85.63627888630347, 41.95831101322837], "type": "Point"}, "id": "1296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63646839866716, 41.95831133111323, -85.63646839866716, 41.95831133111323], "geometry": {"coordinates": [-85.63646839866716, 41.95831133111323], "type": "Point"}, "id": "1297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63665791102723, 41.95831165018, -85.63665791102723, 41.95831165018], "geometry": {"coordinates": [-85.63665791102723, 41.95831165018], "type": "Point"}, "id": "1298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63684742336739, 41.95831197573265, -85.63684742336739, 41.95831197573265], "geometry": {"coordinates": [-85.63684742336739, 41.95831197573265], "type": "Point"}, "id": "1299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63703693570754, 41.95831230128531, -85.63703693570754, 41.95831230128531], "geometry": {"coordinates": [-85.63703693570754, 41.95831230128531], "type": "Point"}, "id": "1300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.6372264481154, 41.958312603882845, -85.6372264481154, 41.958312603882845], "geometry": {"coordinates": [-85.6372264481154, 41.958312603882845], "type": "Point"}, "id": "1301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63741596055272, 41.95831289649082, -85.63741596055272, 41.95831289649082], "geometry": {"coordinates": [-85.63741596055272, 41.95831289649082], "type": "Point"}, "id": "1302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63760547084357, 41.95831242859638, -85.63760547084357, 41.95831242859638], "geometry": {"coordinates": [-85.63760547084357, 41.95831242859638], "type": "Point"}, "id": "1303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63779498054923, 41.95831161743721, -85.63779498054923, 41.95831161743721], "geometry": {"coordinates": [-85.63779498054923, 41.95831161743721], "type": "Point"}, "id": "1304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63798449027462, 41.95831080871861, -85.63798449027462, 41.95831080871861], "geometry": {"coordinates": [-85.63798449027462, 41.95831080871861], "type": "Point"}, "id": "1305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63208269999998, 41.95370689999999, -85.63208269999998, 41.95370689999999], "geometry": {"coordinates": [-85.63208269999998, 41.95370689999999], "type": "Point"}, "id": "1306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63227130641404, 41.953705837038136, -85.63227130641404, 41.953705837038136], "geometry": {"coordinates": [-85.63227130641404, 41.953705837038136], "type": "Point"}, "id": "1307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63245991282807, 41.95370477407627, -85.63245991282807, 41.95370477407627], "geometry": {"coordinates": [-85.63245991282807, 41.95370477407627], "type": "Point"}, "id": "1308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63264851924212, 41.95370371111438, -85.63264851924212, 41.95370371111438], "geometry": {"coordinates": [-85.63264851924212, 41.95370371111438], "type": "Point"}, "id": "1309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63283712565615, 41.95370264815247, -85.63283712565615, 41.95370264815247], "geometry": {"coordinates": [-85.63283712565615, 41.95370264815247], "type": "Point"}, "id": "1310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63302573207021, 41.95370158519055, -85.63302573207021, 41.95370158519055], "geometry": {"coordinates": [-85.63302573207021, 41.95370158519055], "type": "Point"}, "id": "1311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63321433848425, 41.95370052222861, -85.63321433848425, 41.95370052222861], "geometry": {"coordinates": [-85.63321433848425, 41.95370052222861], "type": "Point"}, "id": "1312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63340293203984, 41.95369871277648, -85.63340293203984, 41.95369871277648], "geometry": {"coordinates": [-85.63340293203984, 41.95369871277648], "type": "Point"}, "id": "1313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.633591513177, 41.95369618238014, -85.633591513177, 41.95369618238014], "geometry": {"coordinates": [-85.633591513177, 41.95369618238014], "type": "Point"}, "id": "1314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63378009431416, 41.9536936519837, -85.63378009431416, 41.9536936519837], "geometry": {"coordinates": [-85.63378009431416, 41.9536936519837], "type": "Point"}, "id": "1315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63396867545133, 41.95369112158716, -85.63396867545133, 41.95369112158716], "geometry": {"coordinates": [-85.63396867545133, 41.95369112158716], "type": "Point"}, "id": "1316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.6341572565885, 41.95368859119053, -85.6341572565885, 41.95368859119053], "geometry": {"coordinates": [-85.6341572565885, 41.95368859119053], "type": "Point"}, "id": "1317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63434583772565, 41.953686060793785, -85.63434583772565, 41.953686060793785], "geometry": {"coordinates": [-85.63434583772565, 41.953686060793785], "type": "Point"}, "id": "1318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63453441886283, 41.95368353039695, -85.63453441886283, 41.95368353039695], "geometry": {"coordinates": [-85.63453441886283, 41.95368353039695], "type": "Point"}, "id": "1319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.62350099999999, 41.933232, -85.62350099999999, 41.933232], "geometry": {"coordinates": [-85.62350099999999, 41.933232], "type": "Point"}, "id": "1320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350237341643, 41.933367145077774, -85.62350237341643, 41.933367145077774], "geometry": {"coordinates": [-85.62350237341643, 41.933367145077774], "type": "Point"}, "id": "1321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235037468329, 41.93350228986921, -85.6235037468329, 41.93350228986921], "geometry": {"coordinates": [-85.6235037468329, 41.93350228986921], "type": "Point"}, "id": "1322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350512024932, 41.93363743437428, -85.62350512024932, 41.93363743437428], "geometry": {"coordinates": [-85.62350512024932, 41.93363743437428], "type": "Point"}, "id": "1323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350649366579, 41.93377257859301, -85.62350649366579, 41.93377257859301], "geometry": {"coordinates": [-85.62350649366579, 41.93377257859301], "type": "Point"}, "id": "1324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350786708222, 41.93390772252539, -85.62350786708222, 41.93390772252539], "geometry": {"coordinates": [-85.62350786708222, 41.93390772252539], "type": "Point"}, "id": "1325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350924049868, 41.93404286617141, -85.62350924049868, 41.93404286617141], "geometry": {"coordinates": [-85.62350924049868, 41.93404286617141], "type": "Point"}, "id": "1326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351061391512, 41.934178009531095, -85.62351061391512, 41.934178009531095], "geometry": {"coordinates": [-85.62351061391512, 41.934178009531095], "type": "Point"}, "id": "1327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351198496972, 41.934313152617676, -85.62351198496972, 41.934313152617676], "geometry": {"coordinates": [-85.62351198496972, 41.934313152617676], "type": "Point"}, "id": "1328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351335510077, 41.9344482954231, -85.62351335510077, 41.9344482954231], "geometry": {"coordinates": [-85.62351335510077, 41.9344482954231], "type": "Point"}, "id": "1329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351472523181, 41.93458343794218, -85.62351472523181, 41.93458343794218], "geometry": {"coordinates": [-85.62351472523181, 41.93458343794218], "type": "Point"}, "id": "1330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351609536286, 41.934718580174895, -85.62351609536286, 41.934718580174895], "geometry": {"coordinates": [-85.62351609536286, 41.934718580174895], "type": "Point"}, "id": "1331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351746549388, 41.93485372212126, -85.62351746549388, 41.93485372212126], "geometry": {"coordinates": [-85.62351746549388, 41.93485372212126], "type": "Point"}, "id": "1332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351883562492, 41.93498886378128, -85.62351883562492, 41.93498886378128], "geometry": {"coordinates": [-85.62351883562492, 41.93498886378128], "type": "Point"}, "id": "1333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352020575597, 41.93512400515493, -85.62352020575597, 41.93512400515493], "geometry": {"coordinates": [-85.62352020575597, 41.93512400515493], "type": "Point"}, "id": "1334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.623521575887, 41.935259146242245, -85.623521575887, 41.935259146242245], "geometry": {"coordinates": [-85.623521575887, 41.935259146242245], "type": "Point"}, "id": "1335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352294601804, 41.935394287043216, -85.62352294601804, 41.935394287043216], "geometry": {"coordinates": [-85.62352294601804, 41.935394287043216], "type": "Point"}, "id": "1336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352431614909, 41.93552942755781, -85.62352431614909, 41.93552942755781], "geometry": {"coordinates": [-85.62352431614909, 41.93552942755781], "type": "Point"}, "id": "1337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352568628013, 41.93566456778606, -85.62352568628013, 41.93566456778606], "geometry": {"coordinates": [-85.62352568628013, 41.93566456778606], "type": "Point"}, "id": "1338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352705641115, 41.93579970772795, -85.62352705641115, 41.93579970772795], "geometry": {"coordinates": [-85.62352705641115, 41.93579970772795], "type": "Point"}, "id": "1339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352842654221, 41.9359348473835, -85.62352842654221, 41.9359348473835], "geometry": {"coordinates": [-85.62352842654221, 41.9359348473835], "type": "Point"}, "id": "1340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352979667324, 41.93606998675269, -85.62352979667324, 41.93606998675269], "geometry": {"coordinates": [-85.62352979667324, 41.93606998675269], "type": "Point"}, "id": "1341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62353116680427, 41.93620512583553, -85.62353116680427, 41.93620512583553], "geometry": {"coordinates": [-85.62353116680427, 41.93620512583553], "type": "Point"}, "id": "1342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62353360681857, 41.93634025622746, -85.62353360681857, 41.93634025622746], "geometry": {"coordinates": [-85.62353360681857, 41.93634025622746], "type": "Point"}, "id": "1343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62353607339776, 41.93647538612439, -85.62353607339776, 41.93647538612439], "geometry": {"coordinates": [-85.62353607339776, 41.93647538612439], "type": "Point"}, "id": "1344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62353853997692, 41.936610515735005, -85.62353853997692, 41.936610515735005], "geometry": {"coordinates": [-85.62353853997692, 41.936610515735005], "type": "Point"}, "id": "1345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235410065561, 41.93674564505929, -85.6235410065561, 41.93674564505929], "geometry": {"coordinates": [-85.6235410065561, 41.93674564505929], "type": "Point"}, "id": "1346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354347313527, 41.93688077409727, -85.62354347313527, 41.93688077409727], "geometry": {"coordinates": [-85.62354347313527, 41.93688077409727], "type": "Point"}, "id": "1347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354593971446, 41.93701590284893, -85.62354593971446, 41.93701590284893], "geometry": {"coordinates": [-85.62354593971446, 41.93701590284893], "type": "Point"}, "id": "1348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354840629364, 41.937151031314265, -85.62354840629364, 41.937151031314265], "geometry": {"coordinates": [-85.62354840629364, 41.937151031314265], "type": "Point"}, "id": "1349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235490727838, 41.937286169780265, -85.6235490727838, 41.937286169780265], "geometry": {"coordinates": [-85.6235490727838, 41.937286169780265], "type": "Point"}, "id": "1350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354939737817, 41.937421309913724, -85.62354939737817, 41.937421309913724], "geometry": {"coordinates": [-85.62354939737817, 41.937421309913724], "type": "Point"}, "id": "1351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354972197255, 41.93755644976082, -85.62354972197255, 41.93755644976082], "geometry": {"coordinates": [-85.62354972197255, 41.93755644976082], "type": "Point"}, "id": "1352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355004656693, 41.93769158932154, -85.62355004656693, 41.93769158932154], "geometry": {"coordinates": [-85.62355004656693, 41.93769158932154], "type": "Point"}, "id": "1353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235503711613, 41.937826728595894, -85.6235503711613, 41.937826728595894], "geometry": {"coordinates": [-85.6235503711613, 41.937826728595894], "type": "Point"}, "id": "1354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355069575567, 41.93796186758387, -85.62355069575567, 41.93796186758387], "geometry": {"coordinates": [-85.62355069575567, 41.93796186758387], "type": "Point"}, "id": "1355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355102035004, 41.93809700628548, -85.62355102035004, 41.93809700628548], "geometry": {"coordinates": [-85.62355102035004, 41.93809700628548], "type": "Point"}, "id": "1356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355181079391, 41.93823214308657, -85.62355181079391, 41.93823214308657], "geometry": {"coordinates": [-85.62355181079391, 41.93823214308657], "type": "Point"}, "id": "1357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355317863025, 41.938367277600655, -85.62355317863025, 41.938367277600655], "geometry": {"coordinates": [-85.62355317863025, 41.938367277600655], "type": "Point"}, "id": "1358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235545464666, 41.938502411828395, -85.6235545464666, 41.938502411828395], "geometry": {"coordinates": [-85.6235545464666, 41.938502411828395], "type": "Point"}, "id": "1359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355591430293, 41.93863754576977, -85.62355591430293, 41.93863754576977], "geometry": {"coordinates": [-85.62355591430293, 41.93863754576977], "type": "Point"}, "id": "1360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355728213929, 41.93877267942479, -85.62355728213929, 41.93877267942479], "geometry": {"coordinates": [-85.62355728213929, 41.93877267942479], "type": "Point"}, "id": "1361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355864997564, 41.93890781279345, -85.62355864997564, 41.93890781279345], "geometry": {"coordinates": [-85.62355864997564, 41.93890781279345], "type": "Point"}, "id": "1362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356001781197, 41.93904294587576, -85.62356001781197, 41.93904294587576], "geometry": {"coordinates": [-85.62356001781197, 41.93904294587576], "type": "Point"}, "id": "1363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356137546462, 41.939178078728155, -85.62356137546462, 41.939178078728155], "geometry": {"coordinates": [-85.62356137546462, 41.939178078728155], "type": "Point"}, "id": "1364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356273187245, 41.939313211300956, -85.62356273187245, 41.939313211300956], "geometry": {"coordinates": [-85.62356273187245, 41.939313211300956], "type": "Point"}, "id": "1365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356410335927, 41.93944834350372, -85.62356410335927, 41.93944834350372], "geometry": {"coordinates": [-85.62356410335927, 41.93944834350372], "type": "Point"}, "id": "1366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356547484607, 41.93958347542013, -85.62356547484607, 41.93958347542013], "geometry": {"coordinates": [-85.62356547484607, 41.93958347542013], "type": "Point"}, "id": "1367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356684633289, 41.93971860705017, -85.62356684633289, 41.93971860705017], "geometry": {"coordinates": [-85.62356684633289, 41.93971860705017], "type": "Point"}, "id": "1368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356821781971, 41.939853738393865, -85.62356821781971, 41.939853738393865], "geometry": {"coordinates": [-85.62356821781971, 41.939853738393865], "type": "Point"}, "id": "1369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356960362813, 41.93998886937004, -85.62356960362813, 41.93998886937004], "geometry": {"coordinates": [-85.62356960362813, 41.93998886937004], "type": "Point"}, "id": "1370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9361846, -85.6277618, 41.9361846], "geometry": {"coordinates": [-85.6277618, 41.9361846], "type": "Point"}, "id": "1371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62775831428571, 41.93604391521673, -85.62775831428571, 41.93604391521673], "geometry": {"coordinates": [-85.62775831428571, 41.93604391521673], "type": "Point"}, "id": "1372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62775482857144, 41.93590323012312, -85.62775482857144, 41.93590323012312], "geometry": {"coordinates": [-85.62775482857144, 41.93590323012312], "type": "Point"}, "id": "1373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62775134285715, 41.93576254471917, -85.62775134285715, 41.93576254471917], "geometry": {"coordinates": [-85.62775134285715, 41.93576254471917], "type": "Point"}, "id": "1374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62774785714286, 41.93562185900488, -85.62774785714286, 41.93562185900488], "geometry": {"coordinates": [-85.62774785714286, 41.93562185900488], "type": "Point"}, "id": "1375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62774437142856, 41.93548117298025, -85.62774437142856, 41.93548117298025], "geometry": {"coordinates": [-85.62774437142856, 41.93548117298025], "type": "Point"}, "id": "1376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62774088571429, 41.9353404866453, -85.62774088571429, 41.9353404866453], "geometry": {"coordinates": [-85.62774088571429, 41.9353404866453], "type": "Point"}, "id": "1377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62478, 41.93217, -85.62478, 41.93217], "geometry": {"coordinates": [-85.62478, 41.93217], "type": "Point"}, "id": "1378", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62496867672156, 41.93217061861221, -85.62496867672156, 41.93217061861221], "geometry": {"coordinates": [-85.62496867672156, 41.93217061861221], "type": "Point"}, "id": "1379", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62515735344313, 41.93217123722442, -85.62515735344313, 41.93217123722442], "geometry": {"coordinates": [-85.62515735344313, 41.93217123722442], "type": "Point"}, "id": "1380", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62534603016469, 41.932171855836614, -85.62534603016469, 41.932171855836614], "geometry": {"coordinates": [-85.62534603016469, 41.932171855836614], "type": "Point"}, "id": "1381", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62553470688627, 41.93217247444882, -85.62553470688627, 41.93217247444882], "geometry": {"coordinates": [-85.62553470688627, 41.93217247444882], "type": "Point"}, "id": "1382", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62572338318874, 41.93217285225883, -85.62572338318874, 41.93217285225883], "geometry": {"coordinates": [-85.62572338318874, 41.93217285225883], "type": "Point"}, "id": "1383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62591205712435, 41.932171870166684, -85.62591205712435, 41.932171870166684], "geometry": {"coordinates": [-85.62591205712435, 41.932171870166684], "type": "Point"}, "id": "1384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62610073105996, 41.93217088807452, -85.62610073105996, 41.93217088807452], "geometry": {"coordinates": [-85.62610073105996, 41.93217088807452], "type": "Point"}, "id": "1385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62628940499556, 41.93216990598234, -85.62628940499556, 41.93216990598234], "geometry": {"coordinates": [-85.62628940499556, 41.93216990598234], "type": "Point"}, "id": "1386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62647807881046, 41.932168911195944, -85.62647807881046, 41.932168911195944], "geometry": {"coordinates": [-85.62647807881046, 41.932168911195944], "type": "Point"}, "id": "1387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62666675254032, 41.93216790746397, -85.62666675254032, 41.93216790746397], "geometry": {"coordinates": [-85.62666675254032, 41.93216790746397], "type": "Point"}, "id": "1388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62685542627017, 41.932166903731996, -85.62685542627017, 41.932166903731996], "geometry": {"coordinates": [-85.62685542627017, 41.932166903731996], "type": "Point"}, "id": "1389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.6277991, 41.92684959999999, -85.6277991, 41.92684959999999], "geometry": {"coordinates": [-85.6277991, 41.92684959999999], "type": "Point"}, "id": "1390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62780967216297, 41.926984568133484, -85.62780967216297, 41.926984568133484], "geometry": {"coordinates": [-85.62780967216297, 41.926984568133484], "type": "Point"}, "id": "1391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62782024432593, 41.92711953598142, -85.62782024432593, 41.92711953598142], "geometry": {"coordinates": [-85.62782024432593, 41.92711953598142], "type": "Point"}, "id": "1392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.6278308164889, 41.927254503543836, -85.6278308164889, 41.927254503543836], "geometry": {"coordinates": [-85.6278308164889, 41.927254503543836], "type": "Point"}, "id": "1393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62784665687144, 41.92738899709557, -85.62784665687144, 41.92738899709557], "geometry": {"coordinates": [-85.62784665687144, 41.92738899709557], "type": "Point"}, "id": "1394", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62787960921412, 41.92752195163738, -85.62787960921412, 41.92752195163738], "geometry": {"coordinates": [-85.62787960921412, 41.92752195163738], "type": "Point"}, "id": "1395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62791256155678, 41.927654905902095, -85.62791256155678, 41.927654905902095], "geometry": {"coordinates": [-85.62791256155678, 41.927654905902095], "type": "Point"}, "id": "1396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62794551389945, 41.927787859889726, -85.62794551389945, 41.927787859889726], "geometry": {"coordinates": [-85.62794551389945, 41.927787859889726], "type": "Point"}, "id": "1397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62797846624211, 41.927920813600274, -85.62797846624211, 41.927920813600274], "geometry": {"coordinates": [-85.62797846624211, 41.927920813600274], "type": "Point"}, "id": "1398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62801141858478, 41.92805376703373, -85.62801141858478, 41.92805376703373], "geometry": {"coordinates": [-85.62801141858478, 41.92805376703373], "type": "Point"}, "id": "1399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62804437092746, 41.9281867201901, -85.62804437092746, 41.9281867201901], "geometry": {"coordinates": [-85.62804437092746, 41.9281867201901], "type": "Point"}, "id": "1400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62807732327012, 41.92831967306938, -85.62807732327012, 41.92831967306938], "geometry": {"coordinates": [-85.62807732327012, 41.92831967306938], "type": "Point"}, "id": "1401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62811321127924, 41.92845220399736, -85.62811321127924, 41.92845220399736], "geometry": {"coordinates": [-85.62811321127924, 41.92845220399736], "type": "Point"}, "id": "1402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.6281491515835, 41.92858472713844, -85.6281491515835, 41.92858472713844], "geometry": {"coordinates": [-85.6281491515835, 41.92858472713844], "type": "Point"}, "id": "1403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62818509188774, 41.92871725000422, -85.62818509188774, 41.92871725000422], "geometry": {"coordinates": [-85.62818509188774, 41.92871725000422], "type": "Point"}, "id": "1404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62822103219199, 41.928849772594695, -85.62822103219199, 41.928849772594695], "geometry": {"coordinates": [-85.62822103219199, 41.928849772594695], "type": "Point"}, "id": "1405", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62825697249623, 41.928982294909865, -85.62825697249623, 41.928982294909865], "geometry": {"coordinates": [-85.62825697249623, 41.928982294909865], "type": "Point"}, "id": "1406", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.6282929128005, 41.92911481694974, -85.6282929128005, 41.92911481694974], "geometry": {"coordinates": [-85.6282929128005, 41.92911481694974], "type": "Point"}, "id": "1407", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832515804737, 41.92924761752553, -85.62832515804737, 41.92924761752553], "geometry": {"coordinates": [-85.62832515804737, 41.92924761752553], "type": "Point"}, "id": "1408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832571391802, 41.92938280894741, -85.62832571391802, 41.92938280894741], "geometry": {"coordinates": [-85.62832571391802, 41.92938280894741], "type": "Point"}, "id": "1409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832626978866, 41.929518000082794, -85.62832626978866, 41.929518000082794], "geometry": {"coordinates": [-85.62832626978866, 41.929518000082794], "type": "Point"}, "id": "1410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832682565929, 41.92965319093166, -85.62832682565929, 41.92965319093166], "geometry": {"coordinates": [-85.62832682565929, 41.92965319093166], "type": "Point"}, "id": "1411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832738152993, 41.92978838149403, -85.62832738152993, 41.92978838149403], "geometry": {"coordinates": [-85.62832738152993, 41.92978838149403], "type": "Point"}, "id": "1412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832793740056, 41.92992357176988, -85.62832793740056, 41.92992357176988], "geometry": {"coordinates": [-85.62832793740056, 41.92992357176988], "type": "Point"}, "id": "1413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832849327121, 41.93005876175923, -85.62832849327121, 41.93005876175923], "geometry": {"coordinates": [-85.62832849327121, 41.93005876175923], "type": "Point"}, "id": "1414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832913239772, 41.93019395111209, -85.62832913239772, 41.93019395111209], "geometry": {"coordinates": [-85.62832913239772, 41.93019395111209], "type": "Point"}, "id": "1415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833063002144, 41.93032913656964, -85.62833063002144, 41.93032913656964], "geometry": {"coordinates": [-85.62833063002144, 41.93032913656964], "type": "Point"}, "id": "1416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833212764514, 41.93046432174069, -85.62833212764514, 41.93046432174069], "geometry": {"coordinates": [-85.62833212764514, 41.93046432174069], "type": "Point"}, "id": "1417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833362526884, 41.93059950662526, -85.62833362526884, 41.93059950662526], "geometry": {"coordinates": [-85.62833362526884, 41.93059950662526], "type": "Point"}, "id": "1418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833512289255, 41.93073469122334, -85.62833512289255, 41.93073469122334], "geometry": {"coordinates": [-85.62833512289255, 41.93073469122334], "type": "Point"}, "id": "1419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833662051625, 41.930869875534924, -85.62833662051625, 41.930869875534924], "geometry": {"coordinates": [-85.62833662051625, 41.930869875534924], "type": "Point"}, "id": "1420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833811813995, 41.931005059560015, -85.62833811813995, 41.931005059560015], "geometry": {"coordinates": [-85.62833811813995, 41.931005059560015], "type": "Point"}, "id": "1421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833961576365, 41.931140243298614, -85.62833961576365, 41.931140243298614], "geometry": {"coordinates": [-85.62833961576365, 41.931140243298614], "type": "Point"}, "id": "1422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833991100692, 41.931275430470265, -85.62833991100692, 41.931275430470265], "geometry": {"coordinates": [-85.62833991100692, 41.931275430470265], "type": "Point"}, "id": "1423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833992459218, 41.931410618226714, -85.62833992459218, 41.931410618226714], "geometry": {"coordinates": [-85.62833992459218, 41.931410618226714], "type": "Point"}, "id": "1424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833993817746, 41.93154580569665, -85.62833993817746, 41.93154580569665], "geometry": {"coordinates": [-85.62833993817746, 41.93154580569665], "type": "Point"}, "id": "1425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833995176274, 41.93168099288007, -85.62833995176274, 41.93168099288007], "geometry": {"coordinates": [-85.62833995176274, 41.93168099288007], "type": "Point"}, "id": "1426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833996534802, 41.93181617977698, -85.62833996534802, 41.93181617977698], "geometry": {"coordinates": [-85.62833996534802, 41.93181617977698], "type": "Point"}, "id": "1427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833997893328, 41.93195136638738, -85.62833997893328, 41.93195136638738], "geometry": {"coordinates": [-85.62833997893328, 41.93195136638738], "type": "Point"}, "id": "1428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833999251855, 41.93208655271127, -85.62833999251855, 41.93208655271127], "geometry": {"coordinates": [-85.62833999251855, 41.93208655271127], "type": "Point"}, "id": "1429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62834149429429, 41.93222172857499, -85.62834149429429, 41.93222172857499], "geometry": {"coordinates": [-85.62834149429429, 41.93222172857499], "type": "Point"}, "id": "1430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62834482013837, 41.93235689168247, -85.62834482013837, 41.93235689168247], "geometry": {"coordinates": [-85.62834482013837, 41.93235689168247], "type": "Point"}, "id": "1431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62834814598241, 41.932492054503534, -85.62834814598241, 41.932492054503534], "geometry": {"coordinates": [-85.62834814598241, 41.932492054503534], "type": "Point"}, "id": "1432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62835147182649, 41.93262721703819, -85.62835147182649, 41.93262721703819], "geometry": {"coordinates": [-85.62835147182649, 41.93262721703819], "type": "Point"}, "id": "1433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62835479767055, 41.932762379286416, -85.62835479767055, 41.932762379286416], "geometry": {"coordinates": [-85.62835479767055, 41.932762379286416], "type": "Point"}, "id": "1434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62835812351463, 41.93289754124823, -85.62835812351463, 41.93289754124823], "geometry": {"coordinates": [-85.62835812351463, 41.93289754124823], "type": "Point"}, "id": "1435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62836144935869, 41.93303270292363, -85.62836144935869, 41.93303270292363], "geometry": {"coordinates": [-85.62836144935869, 41.93303270292363], "type": "Point"}, "id": "1436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62836477520275, 41.93316786431261, -85.62836477520275, 41.93316786431261], "geometry": {"coordinates": [-85.62836477520275, 41.93316786431261], "type": "Point"}, "id": "1437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62836791111499, 41.93330302792239, -85.62836791111499, 41.93330302792239], "geometry": {"coordinates": [-85.62836791111499, 41.93330302792239], "type": "Point"}, "id": "1438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62837103325893, 41.93343819142749, -85.62837103325893, 41.93343819142749], "geometry": {"coordinates": [-85.62837103325893, 41.93343819142749], "type": "Point"}, "id": "1439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62837415540288, 41.933573354646164, -85.62837415540288, 41.933573354646164], "geometry": {"coordinates": [-85.62837415540288, 41.933573354646164], "type": "Point"}, "id": "1440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.6283772775468, 41.93370851757841, -85.6283772775468, 41.93370851757841], "geometry": {"coordinates": [-85.6283772775468, 41.93370851757841], "type": "Point"}, "id": "1441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62838039969074, 41.93384368022422, -85.62838039969074, 41.93384368022422], "geometry": {"coordinates": [-85.62838039969074, 41.93384368022422], "type": "Point"}, "id": "1442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62838352183468, 41.933978842583606, -85.62838352183468, 41.933978842583606], "geometry": {"coordinates": [-85.62838352183468, 41.933978842583606], "type": "Point"}, "id": "1443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62838664397862, 41.934114004656564, -85.62838664397862, 41.934114004656564], "geometry": {"coordinates": [-85.62838664397862, 41.934114004656564], "type": "Point"}, "id": "1444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62838974169962, 41.93424916675031, -85.62838974169962, 41.93424916675031], "geometry": {"coordinates": [-85.62838974169962, 41.93424916675031], "type": "Point"}, "id": "1445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62839276431396, 41.93438432950243, -85.62839276431396, 41.93438432950243], "geometry": {"coordinates": [-85.62839276431396, 41.93438432950243], "type": "Point"}, "id": "1446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62839578692831, 41.93451949196812, -85.62839578692831, 41.93451949196812], "geometry": {"coordinates": [-85.62839578692831, 41.93451949196812], "type": "Point"}, "id": "1447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62839880954265, 41.934654654147366, -85.62839880954265, 41.934654654147366], "geometry": {"coordinates": [-85.62839880954265, 41.934654654147366], "type": "Point"}, "id": "1448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62840183215698, 41.93478981604017, -85.62840183215698, 41.93478981604017], "geometry": {"coordinates": [-85.62840183215698, 41.93478981604017], "type": "Point"}, "id": "1449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62840485477133, 41.934924977646546, -85.62840485477133, 41.934924977646546], "geometry": {"coordinates": [-85.62840485477133, 41.934924977646546], "type": "Point"}, "id": "1450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62840787738565, 41.93506013896649, -85.62840787738565, 41.93506013896649], "geometry": {"coordinates": [-85.62840787738565, 41.93506013896649], "type": "Point"}, "id": "1451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.632278, 41.948613, -85.632278, 41.948613], "geometry": {"coordinates": [-85.632278, 41.948613], "type": "Point"}, "id": "1452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63246059261107, 41.948613975387914, -85.63246059261107, 41.948613975387914], "geometry": {"coordinates": [-85.63246059261107, 41.948613975387914], "type": "Point"}, "id": "1453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63264318522212, 41.948614950775806, -85.63264318522212, 41.948614950775806], "geometry": {"coordinates": [-85.63264318522212, 41.948614950775806], "type": "Point"}, "id": "1454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63282577783318, 41.94861592616369, -85.63282577783318, 41.94861592616369], "geometry": {"coordinates": [-85.63282577783318, 41.94861592616369], "type": "Point"}, "id": "1455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63300837044423, 41.94861690155155, -85.63300837044423, 41.94861690155155], "geometry": {"coordinates": [-85.63300837044423, 41.94861690155155], "type": "Point"}, "id": "1456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63319096305527, 41.94861787693941, -85.63319096305527, 41.94861787693941], "geometry": {"coordinates": [-85.63319096305527, 41.94861787693941], "type": "Point"}, "id": "1457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63337355404732, 41.948619006102945, -85.63337355404732, 41.948619006102945], "geometry": {"coordinates": [-85.63337355404732, 41.948619006102945], "type": "Point"}, "id": "1458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63355614480565, 41.94862015746889, -85.63355614480565, 41.94862015746889], "geometry": {"coordinates": [-85.63355614480565, 41.94862015746889], "type": "Point"}, "id": "1459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63373873546077, 41.948621317787904, -85.63373873546077, 41.948621317787904], "geometry": {"coordinates": [-85.63373873546077, 41.948621317787904], "type": "Point"}, "id": "1460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.6339213259285, 41.94862249436764, -85.6339213259285, 41.94862249436764], "geometry": {"coordinates": [-85.6339213259285, 41.94862249436764], "type": "Point"}, "id": "1461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.6341039194354, 41.94862337185474, -85.6341039194354, 41.94862337185474], "geometry": {"coordinates": [-85.6341039194354, 41.94862337185474], "type": "Point"}, "id": "1462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63428651295695, 41.948624247903176, -85.63428651295695, 41.948624247903176], "geometry": {"coordinates": [-85.63428651295695, 41.948624247903176], "type": "Point"}, "id": "1463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63446910647846, 41.948625123951594, -85.63446910647846, 41.948625123951594], "geometry": {"coordinates": [-85.63446910647846, 41.948625123951594], "type": "Point"}, "id": "1464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63204269999999, 41.9647947, -85.63204269999999, 41.9647947], "geometry": {"coordinates": [-85.63204269999999, 41.9647947], "type": "Point"}, "id": "1465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63204459772524, 41.96494043671537, -85.63204459772524, 41.96494043671537], "geometry": {"coordinates": [-85.63204459772524, 41.96494043671537], "type": "Point"}, "id": "1466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63204649545048, 41.965086173097376, -85.63204649545048, 41.965086173097376], "geometry": {"coordinates": [-85.63204649545048, 41.965086173097376], "type": "Point"}, "id": "1467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63204839317572, 41.96523190914602, -85.63204839317572, 41.96523190914602], "geometry": {"coordinates": [-85.63204839317572, 41.96523190914602], "type": "Point"}, "id": "1468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63205029090096, 41.965377644861306, -85.63205029090096, 41.965377644861306], "geometry": {"coordinates": [-85.63205029090096, 41.965377644861306], "type": "Point"}, "id": "1469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63203084476066, 41.965521830095874, -85.63203084476066, 41.965521830095874], "geometry": {"coordinates": [-85.63203084476066, 41.965521830095874], "type": "Point"}, "id": "1470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.633274, 41.951159, -85.633274, 41.951159], "geometry": {"coordinates": [-85.633274, 41.951159], "type": "Point"}, "id": "1471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63327222222222, 41.95101833457499, -85.63327222222222, 41.95101833457499], "geometry": {"coordinates": [-85.63327222222222, 41.95101833457499], "type": "Point"}, "id": "1472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63327044444445, 41.950877668839574, -85.63327044444445, 41.950877668839574], "geometry": {"coordinates": [-85.63327044444445, 41.950877668839574], "type": "Point"}, "id": "1473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63326866666665, 41.95073700279374, -85.63326866666665, 41.95073700279374], "geometry": {"coordinates": [-85.63326866666665, 41.95073700279374], "type": "Point"}, "id": "1474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63326688888888, 41.95059633643748, -85.63326688888888, 41.95059633643748], "geometry": {"coordinates": [-85.63326688888888, 41.95059633643748], "type": "Point"}, "id": "1475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.6332651111111, 41.95045566977081, -85.6332651111111, 41.95045566977081], "geometry": {"coordinates": [-85.6332651111111, 41.95045566977081], "type": "Point"}, "id": "1476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63326333333333, 41.95031500279373, -85.63326333333333, 41.95031500279373], "geometry": {"coordinates": [-85.63326333333333, 41.95031500279373], "type": "Point"}, "id": "1477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63326155555555, 41.95017433550623, -85.63326155555555, 41.95017433550623], "geometry": {"coordinates": [-85.63326155555555, 41.95017433550623], "type": "Point"}, "id": "1478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63325977777778, 41.95003366790832, -85.63325977777778, 41.95003366790832], "geometry": {"coordinates": [-85.63325977777778, 41.95003366790832], "type": "Point"}, "id": "1479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.62111, 41.933254000000005, -85.62111, 41.933254000000005], "geometry": {"coordinates": [-85.62111, 41.933254000000005], "type": "Point"}, "id": "1480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211105611314, 41.933390794004325, -85.6211105611314, 41.933390794004325], "geometry": {"coordinates": [-85.6211105611314, 41.933390794004325], "type": "Point"}, "id": "1481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211111222628, 41.933527587715254, -85.6211111222628, 41.933527587715254], "geometry": {"coordinates": [-85.6211111222628, 41.933527587715254], "type": "Point"}, "id": "1482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211116833942, 41.93366438113282, -85.6211116833942, 41.93366438113282], "geometry": {"coordinates": [-85.6211116833942, 41.93366438113282], "type": "Point"}, "id": "1483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211122445256, 41.93380117425699, -85.6211122445256, 41.93380117425699], "geometry": {"coordinates": [-85.6211122445256, 41.93380117425699], "type": "Point"}, "id": "1484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.621112805657, 41.93393796708779, -85.621112805657, 41.93393796708779], "geometry": {"coordinates": [-85.621112805657, 41.93393796708779], "type": "Point"}, "id": "1485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111335984818, 41.93407475964063, -85.62111335984818, 41.93407475964063], "geometry": {"coordinates": [-85.62111335984818, 41.93407475964063], "type": "Point"}, "id": "1486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111389763035, 41.93421155193656, -85.62111389763035, 41.93421155193656], "geometry": {"coordinates": [-85.62111389763035, 41.93421155193656], "type": "Point"}, "id": "1487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111443900852, 41.93434834393118, -85.62111443900852, 41.93434834393118], "geometry": {"coordinates": [-85.62111443900852, 41.93434834393118], "type": "Point"}, "id": "1488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111499107198, 41.93448513560887, -85.62111499107198, 41.93448513560887], "geometry": {"coordinates": [-85.62111499107198, 41.93448513560887], "type": "Point"}, "id": "1489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111554313542, 41.93462192699317, -85.62111554313542, 41.93462192699317], "geometry": {"coordinates": [-85.62111554313542, 41.93462192699317], "type": "Point"}, "id": "1490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111609519887, 41.93475871808408, -85.62111609519887, 41.93475871808408], "geometry": {"coordinates": [-85.62111609519887, 41.93475871808408], "type": "Point"}, "id": "1491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111664726234, 41.934895508881624, -85.62111664726234, 41.934895508881624], "geometry": {"coordinates": [-85.62111664726234, 41.934895508881624], "type": "Point"}, "id": "1492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211171993258, 41.93503229938577, -85.6211171993258, 41.93503229938577], "geometry": {"coordinates": [-85.6211171993258, 41.93503229938577], "type": "Point"}, "id": "1493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111775138925, 41.935169089596535, -85.62111775138925, 41.935169089596535], "geometry": {"coordinates": [-85.62111775138925, 41.935169089596535], "type": "Point"}, "id": "1494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211183034527, 41.935305879513926, -85.6211183034527, 41.935305879513926], "geometry": {"coordinates": [-85.6211183034527, 41.935305879513926], "type": "Point"}, "id": "1495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111885551616, 41.93544266913792, -85.62111885551616, 41.93544266913792], "geometry": {"coordinates": [-85.62111885551616, 41.93544266913792], "type": "Point"}, "id": "1496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211194075796, 41.935579458468546, -85.6211194075796, 41.935579458468546], "geometry": {"coordinates": [-85.6211194075796, 41.935579458468546], "type": "Point"}, "id": "1497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111995964305, 41.93571624750578, -85.62111995964305, 41.93571624750578], "geometry": {"coordinates": [-85.62111995964305, 41.93571624750578], "type": "Point"}, "id": "1498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112051170651, 41.935853036249625, -85.62112051170651, 41.935853036249625], "geometry": {"coordinates": [-85.62112051170651, 41.935853036249625], "type": "Point"}, "id": "1499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112106376995, 41.935989824700094, -85.62112106376995, 41.935989824700094], "geometry": {"coordinates": [-85.62112106376995, 41.935989824700094], "type": "Point"}, "id": "1500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211216158334, 41.93612661285717, -85.6211216158334, 41.93612661285717], "geometry": {"coordinates": [-85.6211216158334, 41.93612661285717], "type": "Point"}, "id": "1501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112216796523, 41.936263400720726, -85.62112216796523, 41.936263400720726], "geometry": {"coordinates": [-85.62112216796523, 41.936263400720726], "type": "Point"}, "id": "1502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112272025341, 41.936400188290534, -85.62112272025341, 41.936400188290534], "geometry": {"coordinates": [-85.62112272025341, 41.936400188290534], "type": "Point"}, "id": "1503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112327254162, 41.93653697556696, -85.62112327254162, 41.93653697556696], "geometry": {"coordinates": [-85.62112327254162, 41.93653697556696], "type": "Point"}, "id": "1504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112382482981, 41.936673762549994, -85.62112382482981, 41.936673762549994], "geometry": {"coordinates": [-85.62112382482981, 41.936673762549994], "type": "Point"}, "id": "1505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112437711802, 41.93681054923965, -85.62112437711802, 41.93681054923965], "geometry": {"coordinates": [-85.62112437711802, 41.93681054923965], "type": "Point"}, "id": "1506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112492940621, 41.93694733563592, -85.62112492940621, 41.93694733563592], "geometry": {"coordinates": [-85.62112492940621, 41.93694733563592], "type": "Point"}, "id": "1507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112548169439, 41.937084121738806, -85.62112548169439, 41.937084121738806], "geometry": {"coordinates": [-85.62112548169439, 41.937084121738806], "type": "Point"}, "id": "1508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211260339826, 41.93722090754831, -85.6211260339826, 41.93722090754831], "geometry": {"coordinates": [-85.6211260339826, 41.93722090754831], "type": "Point"}, "id": "1509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112658627079, 41.93735769306442, -85.62112658627079, 41.93735769306442], "geometry": {"coordinates": [-85.62112658627079, 41.93735769306442], "type": "Point"}, "id": "1510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.621127138559, 41.93749447828715, -85.621127138559, 41.93749447828715], "geometry": {"coordinates": [-85.621127138559, 41.93749447828715], "type": "Point"}, "id": "1511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211276908472, 41.9376312632165, -85.6211276908472, 41.9376312632165], "geometry": {"coordinates": [-85.6211276908472, 41.9376312632165], "type": "Point"}, "id": "1512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211282431354, 41.937768047852444, -85.6211282431354, 41.937768047852444], "geometry": {"coordinates": [-85.6211282431354, 41.937768047852444], "type": "Point"}, "id": "1513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211287954236, 41.93790483219502, -85.6211287954236, 41.93790483219502], "geometry": {"coordinates": [-85.6211287954236, 41.93790483219502], "type": "Point"}, "id": "1514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211293477118, 41.9380416162442, -85.6211293477118, 41.9380416162442], "geometry": {"coordinates": [-85.6211293477118, 41.9380416162442], "type": "Point"}, "id": "1515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94924, -85.62008700000001, 41.94924], "geometry": {"coordinates": [-85.62008700000001, 41.94924], "type": "Point"}, "id": "1516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62027353845683, 41.94923987957492, -85.62027353845683, 41.94923987957492], "geometry": {"coordinates": [-85.62027353845683, 41.94923987957492], "type": "Point"}, "id": "1517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62046007691364, 41.94923975914983, -85.62046007691364, 41.94923975914983], "geometry": {"coordinates": [-85.62046007691364, 41.94923975914983], "type": "Point"}, "id": "1518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62064661537046, 41.949239638724755, -85.62064661537046, 41.949239638724755], "geometry": {"coordinates": [-85.62064661537046, 41.949239638724755], "type": "Point"}, "id": "1519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62083315382726, 41.949239518299656, -85.62083315382726, 41.949239518299656], "geometry": {"coordinates": [-85.62083315382726, 41.949239518299656], "type": "Point"}, "id": "1520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62101969228416, 41.94923939793364, -85.62101969228416, 41.94923939793364], "geometry": {"coordinates": [-85.62101969228416, 41.94923939793364], "type": "Point"}, "id": "1521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62120623074483, 41.94923928085483, -85.62120623074483, 41.94923928085483], "geometry": {"coordinates": [-85.62120623074483, 41.94923928085483], "type": "Point"}, "id": "1522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.6213927692055, 41.949239163776035, -85.6213927692055, 41.949239163776035], "geometry": {"coordinates": [-85.6213927692055, 41.949239163776035], "type": "Point"}, "id": "1523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62157930766617, 41.94923904669724, -85.62157930766617, 41.94923904669724], "geometry": {"coordinates": [-85.62157930766617, 41.94923904669724], "type": "Point"}, "id": "1524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62176584612685, 41.94923892961844, -85.62176584612685, 41.94923892961844], "geometry": {"coordinates": [-85.62176584612685, 41.94923892961844], "type": "Point"}, "id": "1525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.6219523845875, 41.94923881253963, -85.6219523845875, 41.94923881253963], "geometry": {"coordinates": [-85.6219523845875, 41.94923881253963], "type": "Point"}, "id": "1526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62213892304817, 41.949238695460835, -85.62213892304817, 41.949238695460835], "geometry": {"coordinates": [-85.62213892304817, 41.949238695460835], "type": "Point"}, "id": "1527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62232546150884, 41.94923857838203, -85.62232546150884, 41.94923857838203], "geometry": {"coordinates": [-85.62232546150884, 41.94923857838203], "type": "Point"}, "id": "1528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62251199996952, 41.949238461303224, -85.62251199996952, 41.949238461303224], "geometry": {"coordinates": [-85.62251199996952, 41.949238461303224], "type": "Point"}, "id": "1529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62269853843017, 41.949238344224426, -85.62269853843017, 41.949238344224426], "geometry": {"coordinates": [-85.62269853843017, 41.949238344224426], "type": "Point"}, "id": "1530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62288507690204, 41.94923823779373, -85.62288507690204, 41.94923823779373], "geometry": {"coordinates": [-85.62288507690204, 41.94923823779373], "type": "Point"}, "id": "1531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62307161538071, 41.949238137826704, -85.62307161538071, 41.949238137826704], "geometry": {"coordinates": [-85.62307161538071, 41.949238137826704], "type": "Point"}, "id": "1532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62325815382496, 41.94923800902014, -85.62325815382496, 41.94923800902014], "geometry": {"coordinates": [-85.62325815382496, 41.94923800902014], "type": "Point"}, "id": "1533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62344469226684, 41.949237879617876, -85.62344469226684, 41.949237879617876], "geometry": {"coordinates": [-85.62344469226684, 41.949237879617876], "type": "Point"}, "id": "1534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62363123076281, 41.94923779955548, -85.62363123076281, 41.94923779955548], "geometry": {"coordinates": [-85.62363123076281, 41.94923779955548], "type": "Point"}, "id": "1535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62381776920618, 41.94923766809781, -85.62381776920618, 41.94923766809781], "geometry": {"coordinates": [-85.62381776920618, 41.94923766809781], "type": "Point"}, "id": "1536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62400430767515, 41.94923756170883, -85.62400430767515, 41.94923756170883], "geometry": {"coordinates": [-85.62400430767515, 41.94923756170883], "type": "Point"}, "id": "1537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62419084616332, 41.94923747356806, -85.62419084616332, 41.94923747356806], "geometry": {"coordinates": [-85.62419084616332, 41.94923747356806], "type": "Point"}, "id": "1538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62437738462248, 41.949237355176045, -85.62437738462248, 41.949237355176045], "geometry": {"coordinates": [-85.62437738462248, 41.949237355176045], "type": "Point"}, "id": "1539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62456392308167, 41.94923723678402, -85.62456392308167, 41.94923723678402], "geometry": {"coordinates": [-85.62456392308167, 41.94923723678402], "type": "Point"}, "id": "1540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62475046154083, 41.949237118392006, -85.62475046154083, 41.949237118392006], "geometry": {"coordinates": [-85.62475046154083, 41.949237118392006], "type": "Point"}, "id": "1541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.6200474, 41.94473839999999, -85.6200474, 41.94473839999999], "geometry": {"coordinates": [-85.6200474, 41.94473839999999], "type": "Point"}, "id": "1542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004793155151, 41.94460427265143, -85.62004793155151, 41.94460427265143], "geometry": {"coordinates": [-85.62004793155151, 41.94460427265143], "type": "Point"}, "id": "1543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004846310302, 41.944470145020695, -85.62004846310302, 41.944470145020695], "geometry": {"coordinates": [-85.62004846310302, 41.944470145020695], "type": "Point"}, "id": "1544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004899465452, 41.9443360171078, -85.62004899465452, 41.9443360171078], "geometry": {"coordinates": [-85.62004899465452, 41.9443360171078], "type": "Point"}, "id": "1545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004952620602, 41.94420188891273, -85.62004952620602, 41.94420188891273], "geometry": {"coordinates": [-85.62004952620602, 41.94420188891273], "type": "Point"}, "id": "1546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62005005775752, 41.9440677604355, -85.62005005775752, 41.9440677604355], "geometry": {"coordinates": [-85.62005005775752, 41.9440677604355], "type": "Point"}, "id": "1547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62005058930902, 41.94393363167611, -85.62005058930902, 41.94393363167611], "geometry": {"coordinates": [-85.62005058930902, 41.94393363167611], "type": "Point"}, "id": "1548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004697711406, 41.94379964964632, -85.62004697711406, 41.94379964964632], "geometry": {"coordinates": [-85.62004697711406, 41.94379964964632], "type": "Point"}, "id": "1549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62002928423256, 41.943666166890466, -85.62002928423256, 41.943666166890466], "geometry": {"coordinates": [-85.62002928423256, 41.943666166890466], "type": "Point"}, "id": "1550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62001159135106, 41.94353268385515, -85.62001159135106, 41.94353268385515], "geometry": {"coordinates": [-85.62001159135106, 41.94353268385515], "type": "Point"}, "id": "1551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61999389846956, 41.943399200540384, -85.61999389846956, 41.943399200540384], "geometry": {"coordinates": [-85.61999389846956, 41.943399200540384], "type": "Point"}, "id": "1552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61997620558806, 41.943265716946165, -85.61997620558806, 41.943265716946165], "geometry": {"coordinates": [-85.61997620558806, 41.943265716946165], "type": "Point"}, "id": "1553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61994695698299, 41.94313356312099, -85.61994695698299, 41.94313356312099], "geometry": {"coordinates": [-85.61994695698299, 41.94313356312099], "type": "Point"}, "id": "1554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61990958100985, 41.94300234447313, -85.61990958100985, 41.94300234447313], "geometry": {"coordinates": [-85.61990958100985, 41.94300234447313], "type": "Point"}, "id": "1555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61987220503673, 41.94287112555522, -85.61987220503673, 41.94287112555522], "geometry": {"coordinates": [-85.61987220503673, 41.94287112555522], "type": "Point"}, "id": "1556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61976972149968, 41.942765879672415, -85.61976972149968, 41.942765879672415], "geometry": {"coordinates": [-85.61976972149968, 41.942765879672415], "type": "Point"}, "id": "1557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61961463643478, 41.942748847885206, -85.61961463643478, 41.942748847885206], "geometry": {"coordinates": [-85.61961463643478, 41.942748847885206], "type": "Point"}, "id": "1558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62005099999999, 41.94382999999999, -85.62005099999999, 41.94382999999999], "geometry": {"coordinates": [-85.62005099999999, 41.94382999999999], "type": "Point"}, "id": "1559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62023673328629, 41.94382538847237, -85.62023673328629, 41.94382538847237], "geometry": {"coordinates": [-85.62023673328629, 41.94382538847237], "type": "Point"}, "id": "1560", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62042246657258, 41.943820776944406, -85.62042246657258, 41.943820776944406], "geometry": {"coordinates": [-85.62042246657258, 41.943820776944406], "type": "Point"}, "id": "1561", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62060819985888, 41.94381616541611, -85.62060819985888, 41.94381616541611], "geometry": {"coordinates": [-85.62060819985888, 41.94381616541611], "type": "Point"}, "id": "1562", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62079393314517, 41.943811553887485, -85.62079393314517, 41.943811553887485], "geometry": {"coordinates": [-85.62079393314517, 41.943811553887485], "type": "Point"}, "id": "1563", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62097966643145, 41.94380694235852, -85.62097966643145, 41.94380694235852], "geometry": {"coordinates": [-85.62097966643145, 41.94380694235852], "type": "Point"}, "id": "1564", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62116539971774, 41.94380233082922, -85.62116539971774, 41.94380233082922], "geometry": {"coordinates": [-85.62116539971774, 41.94380233082922], "type": "Point"}, "id": "1565", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62135119420778, 41.94380234639617, -85.62135119420778, 41.94380234639617], "geometry": {"coordinates": [-85.62135119420778, 41.94380234639617], "type": "Point"}, "id": "1566", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62153701381878, 41.943804222958676, -85.62153701381878, 41.943804222958676], "geometry": {"coordinates": [-85.62153701381878, 41.943804222958676], "type": "Point"}, "id": "1567", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.6217228334298, 41.943806099521126, -85.6217228334298, 41.943806099521126], "geometry": {"coordinates": [-85.6217228334298, 41.943806099521126], "type": "Point"}, "id": "1568", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62190866038269, 41.943807409311106, -85.62190866038269, 41.943807409311106], "geometry": {"coordinates": [-85.62190866038269, 41.943807409311106], "type": "Point"}, "id": "1569", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62209449410877, 41.943808196229234, -85.62209449410877, 41.943808196229234], "geometry": {"coordinates": [-85.62209449410877, 41.943808196229234], "type": "Point"}, "id": "1570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62228032783486, 41.943808983147356, -85.62228032783486, 41.943808983147356], "geometry": {"coordinates": [-85.62228032783486, 41.943808983147356], "type": "Point"}, "id": "1571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62246616156092, 41.943809770065464, -85.62246616156092, 41.943809770065464], "geometry": {"coordinates": [-85.62246616156092, 41.943809770065464], "type": "Point"}, "id": "1572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62265199528701, 41.94381055698356, -85.62265199528701, 41.94381055698356], "geometry": {"coordinates": [-85.62265199528701, 41.94381055698356], "type": "Point"}, "id": "1573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.6228378290131, 41.94381134390165, -85.6228378290131, 41.94381134390165], "geometry": {"coordinates": [-85.6228378290131, 41.94381134390165], "type": "Point"}, "id": "1574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62302366273917, 41.94381213081973, -85.62302366273917, 41.94381213081973], "geometry": {"coordinates": [-85.62302366273917, 41.94381213081973], "type": "Point"}, "id": "1575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62320949646525, 41.9438129177378, -85.62320949646525, 41.9438129177378], "geometry": {"coordinates": [-85.62320949646525, 41.9438129177378], "type": "Point"}, "id": "1576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62339533019134, 41.94381370465586, -85.62339533019134, 41.94381370465586], "geometry": {"coordinates": [-85.62339533019134, 41.94381370465586], "type": "Point"}, "id": "1577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62358116391742, 41.94381449157391, -85.62358116391742, 41.94381449157391], "geometry": {"coordinates": [-85.62358116391742, 41.94381449157391], "type": "Point"}, "id": "1578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62376699764349, 41.943815278491954, -85.62376699764349, 41.943815278491954], "geometry": {"coordinates": [-85.62376699764349, 41.943815278491954], "type": "Point"}, "id": "1579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62395283136958, 41.94381606540999, -85.62395283136958, 41.94381606540999], "geometry": {"coordinates": [-85.62395283136958, 41.94381606540999], "type": "Point"}, "id": "1580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62413866509567, 41.94381685232801, -85.62413866509567, 41.94381685232801], "geometry": {"coordinates": [-85.62413866509567, 41.94381685232801], "type": "Point"}, "id": "1581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62432449882174, 41.94381763924602, -85.62432449882174, 41.94381763924602], "geometry": {"coordinates": [-85.62432449882174, 41.94381763924602], "type": "Point"}, "id": "1582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62451033254781, 41.94381842616402, -85.62451033254781, 41.94381842616402], "geometry": {"coordinates": [-85.62451033254781, 41.94381842616402], "type": "Point"}, "id": "1583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62469616627392, 41.943819213082016, -85.62469616627392, 41.943819213082016], "geometry": {"coordinates": [-85.62469616627392, 41.943819213082016], "type": "Point"}, "id": "1584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62479199999999, 41.935214, -85.62479199999999, 41.935214], "geometry": {"coordinates": [-85.62479199999999, 41.935214], "type": "Point"}, "id": "1585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62497410388058, 41.935213114950386, -85.62497410388058, 41.935213114950386], "geometry": {"coordinates": [-85.62497410388058, 41.935213114950386], "type": "Point"}, "id": "1586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62515620776115, 41.935212229900756, -85.62515620776115, 41.935212229900756], "geometry": {"coordinates": [-85.62515620776115, 41.935212229900756], "type": "Point"}, "id": "1587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62533831164174, 41.93521134485111, -85.62533831164174, 41.93521134485111], "geometry": {"coordinates": [-85.62533831164174, 41.93521134485111], "type": "Point"}, "id": "1588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62552041552233, 41.93521045980146, -85.62552041552233, 41.93521045980146], "geometry": {"coordinates": [-85.62552041552233, 41.93521045980146], "type": "Point"}, "id": "1589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.6257025194029, 41.935209574751795, -85.6257025194029, 41.935209574751795], "geometry": {"coordinates": [-85.6257025194029, 41.935209574751795], "type": "Point"}, "id": "1590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62588462336596, 41.93520869914541, -85.62588462336596, 41.93520869914541], "geometry": {"coordinates": [-85.62588462336596, 41.93520869914541], "type": "Point"}, "id": "1591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62606672733659, 41.9352078244102, -85.62606672733659, 41.9352078244102], "geometry": {"coordinates": [-85.62606672733659, 41.9352078244102], "type": "Point"}, "id": "1592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62624883130722, 41.93520694967496, -85.62624883130722, 41.93520694967496], "geometry": {"coordinates": [-85.62624883130722, 41.93520694967496], "type": "Point"}, "id": "1593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62643093528246, 41.93520607546772, -85.62643093528246, 41.93520607546772], "geometry": {"coordinates": [-85.62643093528246, 41.93520607546772], "type": "Point"}, "id": "1594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62661303928509, 41.9352052044256, -85.62661303928509, 41.9352052044256], "geometry": {"coordinates": [-85.62661303928509, 41.9352052044256], "type": "Point"}, "id": "1595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62679514328772, 41.93520433338347, -85.62679514328772, 41.93520433338347], "geometry": {"coordinates": [-85.62679514328772, 41.93520433338347], "type": "Point"}, "id": "1596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62697724729036, 41.93520346234133, -85.62697724729036, 41.93520346234133], "geometry": {"coordinates": [-85.62697724729036, 41.93520346234133], "type": "Point"}, "id": "1597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62715935125742, 41.93520258720173, -85.62715935125742, 41.93520258720173], "geometry": {"coordinates": [-85.62715935125742, 41.93520258720173], "type": "Point"}, "id": "1598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62734145519917, 41.93520170914358, -85.62734145519917, 41.93520170914358], "geometry": {"coordinates": [-85.62734145519917, 41.93520170914358], "type": "Point"}, "id": "1599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62752355914091, 41.9352008310854, -85.62752355914091, 41.9352008310854], "geometry": {"coordinates": [-85.62752355914091, 41.9352008310854], "type": "Point"}, "id": "1600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62770566308266, 41.93519995302722, -85.62770566308266, 41.93519995302722], "geometry": {"coordinates": [-85.62770566308266, 41.93519995302722], "type": "Point"}, "id": "1601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62788776701238, 41.93519907358932, -85.62788776701238, 41.93519907358932], "geometry": {"coordinates": [-85.62788776701238, 41.93519907358932], "type": "Point"}, "id": "1602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62806987093954, 41.935198193860195, -85.62806987093954, 41.935198193860195], "geometry": {"coordinates": [-85.62806987093954, 41.935198193860195], "type": "Point"}, "id": "1603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.6282519675329, 41.93519672611387, -85.6282519675329, 41.93519672611387], "geometry": {"coordinates": [-85.6282519675329, 41.93519672611387], "type": "Point"}, "id": "1604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62843406341058, 41.93519520834357, -85.62843406341058, 41.93519520834357], "geometry": {"coordinates": [-85.62843406341058, 41.93519520834357], "type": "Point"}, "id": "1605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.6286161686014, 41.935194487762736, -85.6286161686014, 41.935194487762736], "geometry": {"coordinates": [-85.6286161686014, 41.935194487762736], "type": "Point"}, "id": "1606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62879827379221, 41.9351937671819, -85.62879827379221, 41.9351937671819], "geometry": {"coordinates": [-85.62879827379221, 41.9351937671819], "type": "Point"}, "id": "1607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62898037898303, 41.93519304660105, -85.62898037898303, 41.93519304660105], "geometry": {"coordinates": [-85.62898037898303, 41.93519304660105], "type": "Point"}, "id": "1608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62916248421946, 41.935192332444124, -85.62916248421946, 41.935192332444124], "geometry": {"coordinates": [-85.62916248421946, 41.935192332444124], "type": "Point"}, "id": "1609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62934458947964, 41.93519162162942, -85.62934458947964, 41.93519162162942], "geometry": {"coordinates": [-85.62934458947964, 41.93519162162942], "type": "Point"}, "id": "1610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62952669473984, 41.93519091081471, -85.62952669473984, 41.93519091081471], "geometry": {"coordinates": [-85.62952669473984, 41.93519091081471], "type": "Point"}, "id": "1611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.63036349999999, 41.9331643, -85.63036349999999, 41.9331643], "geometry": {"coordinates": [-85.63036349999999, 41.9331643], "type": "Point"}, "id": "1612", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 341657297}, "type": "Feature"}, {"bbox": [-85.63036075268029, 41.93331108300723, -85.63036075268029, 41.93331108300723], "geometry": {"coordinates": [-85.63036075268029, 41.93331108300723], "type": "Point"}, "id": "1613", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 341657297}, "type": "Feature"}, {"bbox": [-85.63035800536059, 41.933457865676665, -85.63035800536059, 41.933457865676665], "geometry": {"coordinates": [-85.63035800536059, 41.933457865676665], "type": "Point"}, "id": "1614", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 341657297}, "type": "Feature"}, {"bbox": [-85.6303552580409, 41.93360464800831, -85.6303552580409, 41.93360464800831], "geometry": {"coordinates": [-85.6303552580409, 41.93360464800831], "type": "Point"}, "id": "1615", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 341657297}, "type": "Feature"}, {"bbox": [-85.6303525107212, 41.93375143000217, -85.6303525107212, 41.93375143000217], "geometry": {"coordinates": [-85.6303525107212, 41.93375143000217], "type": "Point"}, "id": "1616", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 341657297}, "type": "Feature"}, {"bbox": [-85.63035013004536, 41.933898214362245, -85.63035013004536, 41.933898214362245], "geometry": {"coordinates": [-85.63035013004536, 41.933898214362245], "type": "Point"}, "id": "1617", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 341657297}, "type": "Feature"}, {"bbox": [-85.63034896502268, 41.93404500735005, -85.63034896502268, 41.93404500735005], "geometry": {"coordinates": [-85.63034896502268, 41.93404500735005], "type": "Point"}, "id": "1618", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 341657297}, "type": "Feature"}, {"bbox": [-85.62689999999999, 41.930199, -85.62689999999999, 41.930199], "geometry": {"coordinates": [-85.62689999999999, 41.930199], "type": "Point"}, "id": "1619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62708651796946, 41.930196769555074, -85.62708651796946, 41.930196769555074], "geometry": {"coordinates": [-85.62708651796946, 41.930196769555074], "type": "Point"}, "id": "1620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62727303593891, 41.93019453911007, -85.62727303593891, 41.93019453911007], "geometry": {"coordinates": [-85.62727303593891, 41.93019453911007], "type": "Point"}, "id": "1621", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62745955390838, 41.93019230866498, -85.62745955390838, 41.93019230866498], "geometry": {"coordinates": [-85.62745955390838, 41.93019230866498], "type": "Point"}, "id": "1622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62764607187782, 41.93019007821982, -85.62764607187782, 41.93019007821982], "geometry": {"coordinates": [-85.62764607187782, 41.93019007821982], "type": "Point"}, "id": "1623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62783259029915, 41.930187868808154, -85.62783259029915, 41.930187868808154], "geometry": {"coordinates": [-85.62783259029915, 41.930187868808154], "type": "Point"}, "id": "1624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62801910881275, 41.93018566369141, -85.62801910881275, 41.93018566369141], "geometry": {"coordinates": [-85.62801910881275, 41.93018566369141], "type": "Point"}, "id": "1625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62820562732632, 41.9301834585746, -85.62820562732632, 41.9301834585746], "geometry": {"coordinates": [-85.62820562732632, 41.9301834585746], "type": "Point"}, "id": "1626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62839214713382, 41.93018131671278, -85.62839214713382, 41.93018131671278], "geometry": {"coordinates": [-85.62839214713382, 41.93018131671278], "type": "Point"}, "id": "1627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62857866946933, 41.93017929843701, -85.62857866946933, 41.93017929843701], "geometry": {"coordinates": [-85.62857866946933, 41.93017929843701], "type": "Point"}, "id": "1628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62876519180482, 41.930177280161175, -85.62876519180482, 41.930177280161175], "geometry": {"coordinates": [-85.62876519180482, 41.930177280161175], "type": "Point"}, "id": "1629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62895171414031, 41.930175261885275, -85.62895171414031, 41.930175261885275], "geometry": {"coordinates": [-85.62895171414031, 41.930175261885275], "type": "Point"}, "id": "1630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.6291382364758, 41.93017324360931, -85.6291382364758, 41.93017324360931], "geometry": {"coordinates": [-85.6291382364758, 41.93017324360931], "type": "Point"}, "id": "1631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62932475881128, 41.930171225333275, -85.62932475881128, 41.930171225333275], "geometry": {"coordinates": [-85.62932475881128, 41.930171225333275], "type": "Point"}, "id": "1632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62951128114679, 41.93016920705718, -85.62951128114679, 41.93016920705718], "geometry": {"coordinates": [-85.62951128114679, 41.93016920705718], "type": "Point"}, "id": "1633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.6296978074503, 41.93016755346502, -85.6296978074503, 41.93016755346502], "geometry": {"coordinates": [-85.6296978074503, 41.93016755346502], "type": "Point"}, "id": "1634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62988434926095, 41.930167325069775, -85.62988434926095, 41.930167325069775], "geometry": {"coordinates": [-85.62988434926095, 41.930167325069775], "type": "Point"}, "id": "1635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63007089107161, 41.93016709667454, -85.63007089107161, 41.93016709667454], "geometry": {"coordinates": [-85.63007089107161, 41.93016709667454], "type": "Point"}, "id": "1636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63025743288226, 41.9301668682793, -85.63025743288226, 41.9301668682793], "geometry": {"coordinates": [-85.63025743288226, 41.9301668682793], "type": "Point"}, "id": "1637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63044397466928, 41.93016662952317, -85.63044397466928, 41.93016662952317], "geometry": {"coordinates": [-85.63044397466928, 41.93016662952317], "type": "Point"}, "id": "1638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63063051644617, 41.93016638634878, -85.63063051644617, 41.93016638634878], "geometry": {"coordinates": [-85.63063051644617, 41.93016638634878], "type": "Point"}, "id": "1639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63081705822309, 41.93016614317438, -85.63081705822309, 41.93016614317438], "geometry": {"coordinates": [-85.63081705822309, 41.93016614317438], "type": "Point"}, "id": "1640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63099699999998, 41.92920600000001, -85.63099699999998, 41.92920600000001], "geometry": {"coordinates": [-85.63099699999998, 41.92920600000001], "type": "Point"}, "id": "1641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63099793754475, 41.92934235682351, -85.63099793754475, 41.92934235682351], "geometry": {"coordinates": [-85.63099793754475, 41.92934235682351], "type": "Point"}, "id": "1642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63099887508953, 41.929478713355536, -85.63099887508953, 41.929478713355536], "geometry": {"coordinates": [-85.63099887508953, 41.929478713355536], "type": "Point"}, "id": "1643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6309998126343, 41.9296150695961, -85.6309998126343, 41.9296150695961], "geometry": {"coordinates": [-85.6309998126343, 41.9296150695961], "type": "Point"}, "id": "1644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100075017907, 41.929751425545206, -85.63100075017907, 41.929751425545206], "geometry": {"coordinates": [-85.63100075017907, 41.929751425545206], "type": "Point"}, "id": "1645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100168772384, 41.92988778120284, -85.63100168772384, 41.92988778120284], "geometry": {"coordinates": [-85.63100168772384, 41.92988778120284], "type": "Point"}, "id": "1646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100262526862, 41.930024136568996, -85.63100262526862, 41.930024136568996], "geometry": {"coordinates": [-85.63100262526862, 41.930024136568996], "type": "Point"}, "id": "1647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6310035628134, 41.93016049164369, -85.6310035628134, 41.93016049164369], "geometry": {"coordinates": [-85.6310035628134, 41.93016049164369], "type": "Point"}, "id": "1648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100449332592, 41.930296846453565, -85.63100449332592, 41.930296846453565], "geometry": {"coordinates": [-85.63100449332592, 41.930296846453565], "type": "Point"}, "id": "1649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.631005423548, 41.930433200973084, -85.631005423548, 41.930433200973084], "geometry": {"coordinates": [-85.631005423548, 41.930433200973084], "type": "Point"}, "id": "1650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100635377006, 41.93056955520113, -85.63100635377006, 41.93056955520113], "geometry": {"coordinates": [-85.63100635377006, 41.93056955520113], "type": "Point"}, "id": "1651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100728399212, 41.9307059091377, -85.63100728399212, 41.9307059091377], "geometry": {"coordinates": [-85.63100728399212, 41.9307059091377], "type": "Point"}, "id": "1652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6310082142142, 41.930842262782804, -85.6310082142142, 41.930842262782804], "geometry": {"coordinates": [-85.6310082142142, 41.930842262782804], "type": "Point"}, "id": "1653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100914443629, 41.93097861613644, -85.63100914443629, 41.93097861613644], "geometry": {"coordinates": [-85.63100914443629, 41.93097861613644], "type": "Point"}, "id": "1654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101007465836, 41.93111496919861, -85.63101007465836, 41.93111496919861], "geometry": {"coordinates": [-85.63101007465836, 41.93111496919861], "type": "Point"}, "id": "1655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101101291636, 41.93125132193879, -85.63101101291636, 41.93125132193879], "geometry": {"coordinates": [-85.63101101291636, 41.93125132193879], "type": "Point"}, "id": "1656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101195374334, 41.931387674377746, -85.63101195374334, 41.931387674377746], "geometry": {"coordinates": [-85.63101195374334, 41.931387674377746], "type": "Point"}, "id": "1657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101289457033, 41.93152402652523, -85.63101289457033, 41.93152402652523], "geometry": {"coordinates": [-85.63101289457033, 41.93152402652523], "type": "Point"}, "id": "1658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101383539733, 41.93166037838125, -85.63101383539733, 41.93166037838125], "geometry": {"coordinates": [-85.63101383539733, 41.93166037838125], "type": "Point"}, "id": "1659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101477622429, 41.9317967299458, -85.63101477622429, 41.9317967299458], "geometry": {"coordinates": [-85.63101477622429, 41.9317967299458], "type": "Point"}, "id": "1660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101571705127, 41.93193308121887, -85.63101571705127, 41.93193308121887], "geometry": {"coordinates": [-85.63101571705127, 41.93193308121887], "type": "Point"}, "id": "1661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101665787826, 41.932069432200485, -85.63101665787826, 41.932069432200485], "geometry": {"coordinates": [-85.63101665787826, 41.932069432200485], "type": "Point"}, "id": "1662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101759932589, 41.93220578288824, -85.63101759932589, 41.93220578288824], "geometry": {"coordinates": [-85.63101759932589, 41.93220578288824], "type": "Point"}, "id": "1663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101854161738, 41.93234213328132, -85.63101854161738, 41.93234213328132], "geometry": {"coordinates": [-85.63101854161738, 41.93234213328132], "type": "Point"}, "id": "1664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101948390887, 41.9324784833829, -85.63101948390887, 41.9324784833829], "geometry": {"coordinates": [-85.63101948390887, 41.9324784833829], "type": "Point"}, "id": "1665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6310204262004, 41.932614833193036, -85.6310204262004, 41.932614833193036], "geometry": {"coordinates": [-85.6310204262004, 41.932614833193036], "type": "Point"}, "id": "1666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102136849187, 41.93275118271169, -85.63102136849187, 41.93275118271169], "geometry": {"coordinates": [-85.63102136849187, 41.93275118271169], "type": "Point"}, "id": "1667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102231078337, 41.932887531938874, -85.63102231078337, 41.932887531938874], "geometry": {"coordinates": [-85.63102231078337, 41.932887531938874], "type": "Point"}, "id": "1668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102325307486, 41.93302388087458, -85.63102325307486, 41.93302388087458], "geometry": {"coordinates": [-85.63102325307486, 41.93302388087458], "type": "Point"}, "id": "1669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102419536636, 41.93316022951882, -85.63102419536636, 41.93316022951882], "geometry": {"coordinates": [-85.63102419536636, 41.93316022951882], "type": "Point"}, "id": "1670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102513706825, 41.93329657787384, -85.63102513706825, 41.93329657787384], "geometry": {"coordinates": [-85.63102513706825, 41.93329657787384], "type": "Point"}, "id": "1671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102607876723, 41.9334329259374, -85.63102607876723, 41.9334329259374], "geometry": {"coordinates": [-85.63102607876723, 41.9334329259374], "type": "Point"}, "id": "1672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102702046619, 41.933569273709494, -85.63102702046619, 41.933569273709494], "geometry": {"coordinates": [-85.63102702046619, 41.933569273709494], "type": "Point"}, "id": "1673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102796216518, 41.933705621190114, -85.63102796216518, 41.933705621190114], "geometry": {"coordinates": [-85.63102796216518, 41.933705621190114], "type": "Point"}, "id": "1674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102890386413, 41.933841968379255, -85.63102890386413, 41.933841968379255], "geometry": {"coordinates": [-85.63102890386413, 41.933841968379255], "type": "Point"}, "id": "1675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6310298455631, 41.933978315276924, -85.6310298455631, 41.933978315276924], "geometry": {"coordinates": [-85.6310298455631, 41.933978315276924], "type": "Point"}, "id": "1676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63103078726208, 41.93411466188312, -85.63103078726208, 41.93411466188312], "geometry": {"coordinates": [-85.63103078726208, 41.93411466188312], "type": "Point"}, "id": "1677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63103172666835, 41.934251008206594, -85.63103172666835, 41.934251008206594], "geometry": {"coordinates": [-85.63103172666835, 41.934251008206594], "type": "Point"}, "id": "1678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63103266333417, 41.93438735424903, -85.63103266333417, 41.93438735424903], "geometry": {"coordinates": [-85.63103266333417, 41.93438735424903], "type": "Point"}, "id": "1679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.62863749999998, 41.9446764, -85.62863749999998, 41.9446764], "geometry": {"coordinates": [-85.62863749999998, 41.9446764], "type": "Point"}, "id": "1680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62863997104559, 41.94481346259269, -85.62863997104559, 41.94481346259269], "geometry": {"coordinates": [-85.62863997104559, 41.94481346259269], "type": "Point"}, "id": "1681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62864244209118, 41.944950524890736, -85.62864244209118, 41.944950524890736], "geometry": {"coordinates": [-85.62864244209118, 41.944950524890736], "type": "Point"}, "id": "1682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62864491313678, 41.94508758689412, -85.62864491313678, 41.94508758689412], "geometry": {"coordinates": [-85.62864491313678, 41.94508758689412], "type": "Point"}, "id": "1683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62864738418237, 41.94522464860285, -85.62864738418237, 41.94522464860285], "geometry": {"coordinates": [-85.62864738418237, 41.94522464860285], "type": "Point"}, "id": "1684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62864613148537, 41.94536129151687, -85.62864613148537, 41.94536129151687], "geometry": {"coordinates": [-85.62864613148537, 41.94536129151687], "type": "Point"}, "id": "1685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62858562572129, 41.945490384668105, -85.62858562572129, 41.945490384668105], "geometry": {"coordinates": [-85.62858562572129, 41.945490384668105], "type": "Point"}, "id": "1686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62848571376949, 41.94560556584523, -85.62848571376949, 41.94560556584523], "geometry": {"coordinates": [-85.62848571376949, 41.94560556584523], "type": "Point"}, "id": "1687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62837892259685, 41.94571727137437, -85.62837892259685, 41.94571727137437], "geometry": {"coordinates": [-85.62837892259685, 41.94571727137437], "type": "Point"}, "id": "1688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.6282717907973, 41.94582880462053, -85.6282717907973, 41.94582880462053], "geometry": {"coordinates": [-85.6282717907973, 41.94582880462053], "type": "Point"}, "id": "1689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62816465899776, 41.94594033767157, -85.62816465899776, 41.94594033767157], "geometry": {"coordinates": [-85.62816465899776, 41.94594033767157], "type": "Point"}, "id": "1690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62805752719821, 41.94605187052749, -85.62805752719821, 41.94605187052749], "geometry": {"coordinates": [-85.62805752719821, 41.94605187052749], "type": "Point"}, "id": "1691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62795039539866, 41.946163403188294, -85.62795039539866, 41.946163403188294], "geometry": {"coordinates": [-85.62795039539866, 41.946163403188294], "type": "Point"}, "id": "1692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.6278432635991, 41.946274935653975, -85.6278432635991, 41.946274935653975], "geometry": {"coordinates": [-85.6278432635991, 41.946274935653975], "type": "Point"}, "id": "1693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62773613179957, 41.946386467924555, -85.62773613179957, 41.946386467924555], "geometry": {"coordinates": [-85.62773613179957, 41.946386467924555], "type": "Point"}, "id": "1694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.63928000000001, 41.92922099999999, -85.63928000000001, 41.92922099999999], "geometry": {"coordinates": [-85.63928000000001, 41.92922099999999], "type": "Point"}, "id": "1695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63933180797066, 41.92935051997282, -85.63933180797066, 41.92935051997282], "geometry": {"coordinates": [-85.63933180797066, 41.92935051997282], "type": "Point"}, "id": "1696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63938332416284, 41.92948010397628, -85.63938332416284, 41.92948010397628], "geometry": {"coordinates": [-85.63938332416284, 41.92948010397628], "type": "Point"}, "id": "1697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63943468245247, 41.92960972251038, -85.63943468245247, 41.92960972251038], "geometry": {"coordinates": [-85.63943468245247, 41.92960972251038], "type": "Point"}, "id": "1698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6394860356893, 41.92973934188906, -85.6394860356893, 41.92973934188906], "geometry": {"coordinates": [-85.6394860356893, 41.92973934188906], "type": "Point"}, "id": "1699", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63953738134533, 41.929868962666646, -85.63953738134533, 41.929868962666646], "geometry": {"coordinates": [-85.63953738134533, 41.929868962666646], "type": "Point"}, "id": "1700", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63958872700132, 41.929998583180854, -85.63958872700132, 41.929998583180854], "geometry": {"coordinates": [-85.63958872700132, 41.929998583180854], "type": "Point"}, "id": "1701", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63964007265734, 41.93012820343167, -85.63964007265734, 41.93012820343167], "geometry": {"coordinates": [-85.63964007265734, 41.93012820343167], "type": "Point"}, "id": "1702", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63969141831335, 41.9302578234191, -85.63969141831335, 41.9302578234191], "geometry": {"coordinates": [-85.63969141831335, 41.9302578234191], "type": "Point"}, "id": "1703", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63973857279565, 41.93038830769996, -85.63973857279565, 41.93038830769996], "geometry": {"coordinates": [-85.63973857279565, 41.93038830769996], "type": "Point"}, "id": "1704", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63978717280733, 41.93051848315388, -85.63978717280733, 41.93051848315388], "geometry": {"coordinates": [-85.63978717280733, 41.93051848315388], "type": "Point"}, "id": "1705", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63984007439693, 41.93064775558707, -85.63984007439693, 41.93064775558707], "geometry": {"coordinates": [-85.63984007439693, 41.93064775558707], "type": "Point"}, "id": "1706", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63989297598653, 41.930777027758275, -85.63989297598653, 41.930777027758275], "geometry": {"coordinates": [-85.63989297598653, 41.930777027758275], "type": "Point"}, "id": "1707", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63994587757612, 41.93090629966749, -85.63994587757612, 41.93090629966749], "geometry": {"coordinates": [-85.63994587757612, 41.93090629966749], "type": "Point"}, "id": "1708", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999877916574, 41.93103557131473, -85.63999877916574, 41.93103557131473], "geometry": {"coordinates": [-85.63999877916574, 41.93103557131473], "type": "Point"}, "id": "1709", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64004868568186, 41.93116545408978, -85.64004868568186, 41.93116545408978], "geometry": {"coordinates": [-85.64004868568186, 41.93116545408978], "type": "Point"}, "id": "1710", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64009050780777, 41.9312969526436, -85.64009050780777, 41.9312969526436], "geometry": {"coordinates": [-85.64009050780777, 41.9312969526436], "type": "Point"}, "id": "1711", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64013232993366, 41.93142845092633, -85.64013232993366, 41.93142845092633], "geometry": {"coordinates": [-85.64013232993366, 41.93142845092633], "type": "Point"}, "id": "1712", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64015394435863, 41.9315623234811, -85.64015394435863, 41.9315623234811], "geometry": {"coordinates": [-85.64015394435863, 41.9315623234811], "type": "Point"}, "id": "1713", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64016863733082, 41.931697009071236, -85.64016863733082, 41.931697009071236], "geometry": {"coordinates": [-85.64016863733082, 41.931697009071236], "type": "Point"}, "id": "1714", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64017966964151, 41.93183175543782, -85.64017966964151, 41.93183175543782], "geometry": {"coordinates": [-85.64017966964151, 41.93183175543782], "type": "Point"}, "id": "1715", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64017310587198, 41.9319667950266, -85.64017310587198, 41.9319667950266], "geometry": {"coordinates": [-85.64017310587198, 41.9319667950266], "type": "Point"}, "id": "1716", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64016654210243, 41.93210183432949, -85.64016654210243, 41.93210183432949], "geometry": {"coordinates": [-85.64016654210243, 41.93210183432949], "type": "Point"}, "id": "1717", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6401599783329, 41.93223687334648, -85.6401599783329, 41.93223687334648], "geometry": {"coordinates": [-85.6401599783329, 41.93223687334648], "type": "Point"}, "id": "1718", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64015341456336, 41.93237191207759, -85.64015341456336, 41.93237191207759], "geometry": {"coordinates": [-85.64015341456336, 41.93237191207759], "type": "Point"}, "id": "1719", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64014685079381, 41.9325069505228, -85.64014685079381, 41.9325069505228], "geometry": {"coordinates": [-85.64014685079381, 41.9325069505228], "type": "Point"}, "id": "1720", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64014028702428, 41.93264198868213, -85.64014028702428, 41.93264198868213], "geometry": {"coordinates": [-85.64014028702428, 41.93264198868213], "type": "Point"}, "id": "1721", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64013356881941, 41.93277702228547, -85.64013356881941, 41.93277702228547], "geometry": {"coordinates": [-85.64013356881941, 41.93277702228547], "type": "Point"}, "id": "1722", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64012663744369, 41.93291204970693, -85.64012663744369, 41.93291204970693], "geometry": {"coordinates": [-85.64012663744369, 41.93291204970693], "type": "Point"}, "id": "1723", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64011970555126, 41.93304707682786, -85.64011970555126, 41.93304707682786], "geometry": {"coordinates": [-85.64011970555126, 41.93304707682786], "type": "Point"}, "id": "1724", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6401127736588, 41.93318210366294, -85.6401127736588, 41.93318210366294], "geometry": {"coordinates": [-85.6401127736588, 41.93318210366294], "type": "Point"}, "id": "1725", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64010584176636, 41.93331713021218, -85.64010584176636, 41.93331713021218], "geometry": {"coordinates": [-85.64010584176636, 41.93331713021218], "type": "Point"}, "id": "1726", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64009890987391, 41.933452156475575, -85.64009890987391, 41.933452156475575], "geometry": {"coordinates": [-85.64009890987391, 41.933452156475575], "type": "Point"}, "id": "1727", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64009197798147, 41.9335871824531, -85.64009197798147, 41.9335871824531], "geometry": {"coordinates": [-85.64009197798147, 41.9335871824531], "type": "Point"}, "id": "1728", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64008504608903, 41.933722208144786, -85.64008504608903, 41.933722208144786], "geometry": {"coordinates": [-85.64008504608903, 41.933722208144786], "type": "Point"}, "id": "1729", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007811419657, 41.93385723355063, -85.64007811419657, 41.93385723355063], "geometry": {"coordinates": [-85.64007811419657, 41.93385723355063], "type": "Point"}, "id": "1730", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007283541758, 41.93399228302789, -85.64007283541758, 41.93399228302789], "geometry": {"coordinates": [-85.64007283541758, 41.93399228302789], "type": "Point"}, "id": "1731", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007257479024, 41.93412740615735, -85.64007257479024, 41.93412740615735], "geometry": {"coordinates": [-85.64007257479024, 41.93412740615735], "type": "Point"}, "id": "1732", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007231416288, 41.934262529000534, -85.64007231416288, 41.934262529000534], "geometry": {"coordinates": [-85.64007231416288, 41.934262529000534], "type": "Point"}, "id": "1733", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007205353553, 41.934397651557475, -85.64007205353553, 41.934397651557475], "geometry": {"coordinates": [-85.64007205353553, 41.934397651557475], "type": "Point"}, "id": "1734", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007179290819, 41.93453277382813, -85.64007179290819, 41.93453277382813], "geometry": {"coordinates": [-85.64007179290819, 41.93453277382813], "type": "Point"}, "id": "1735", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007153228086, 41.93466789581254, -85.64007153228086, 41.93466789581254], "geometry": {"coordinates": [-85.64007153228086, 41.93466789581254], "type": "Point"}, "id": "1736", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007127165351, 41.93480301751066, -85.64007127165351, 41.93480301751066], "geometry": {"coordinates": [-85.64007127165351, 41.93480301751066], "type": "Point"}, "id": "1737", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007101102617, 41.93493813892253, -85.64007101102617, 41.93493813892253], "geometry": {"coordinates": [-85.64007101102617, 41.93493813892253], "type": "Point"}, "id": "1738", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64006825754554, 41.935073235213665, -85.64006825754554, 41.935073235213665], "geometry": {"coordinates": [-85.64006825754554, 41.935073235213665], "type": "Point"}, "id": "1739", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64006365399946, 41.93520831278786, -85.64006365399946, 41.93520831278786], "geometry": {"coordinates": [-85.64006365399946, 41.93520831278786], "type": "Point"}, "id": "1740", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64005905045335, 41.93534339007596, -85.64005905045335, 41.93534339007596], "geometry": {"coordinates": [-85.64005905045335, 41.93534339007596], "type": "Point"}, "id": "1741", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64005444690726, 41.93547846707797, -85.64005444690726, 41.93547846707797], "geometry": {"coordinates": [-85.64005444690726, 41.93547846707797], "type": "Point"}, "id": "1742", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64004984336115, 41.9356135437939, -85.64004984336115, 41.9356135437939], "geometry": {"coordinates": [-85.64004984336115, 41.9356135437939], "type": "Point"}, "id": "1743", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64004523981505, 41.935748620223755, -85.64004523981505, 41.935748620223755], "geometry": {"coordinates": [-85.64004523981505, 41.935748620223755], "type": "Point"}, "id": "1744", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64004063626895, 41.93588369636752, -85.64004063626895, 41.93588369636752], "geometry": {"coordinates": [-85.64004063626895, 41.93588369636752], "type": "Point"}, "id": "1745", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64003603272285, 41.9360187722252, -85.64003603272285, 41.9360187722252], "geometry": {"coordinates": [-85.64003603272285, 41.9360187722252], "type": "Point"}, "id": "1746", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64003142917674, 41.9361538477968, -85.64003142917674, 41.9361538477968], "geometry": {"coordinates": [-85.64003142917674, 41.9361538477968], "type": "Point"}, "id": "1747", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64002682563064, 41.936288923082316, -85.64002682563064, 41.936288923082316], "geometry": {"coordinates": [-85.64002682563064, 41.936288923082316], "type": "Point"}, "id": "1748", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64002222208455, 41.936423998081736, -85.64002222208455, 41.936423998081736], "geometry": {"coordinates": [-85.64002222208455, 41.936423998081736], "type": "Point"}, "id": "1749", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64001761853844, 41.93655907279508, -85.64001761853844, 41.93655907279508], "geometry": {"coordinates": [-85.64001761853844, 41.93655907279508], "type": "Point"}, "id": "1750", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64001301499233, 41.93669414722233, -85.64001301499233, 41.93669414722233], "geometry": {"coordinates": [-85.64001301499233, 41.93669414722233], "type": "Point"}, "id": "1751", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64000841144625, 41.93682922136351, -85.64000841144625, 41.93682922136351], "geometry": {"coordinates": [-85.64000841144625, 41.93682922136351], "type": "Point"}, "id": "1752", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64000380790014, 41.9369642952186, -85.64000380790014, 41.9369642952186], "geometry": {"coordinates": [-85.64000380790014, 41.9369642952186], "type": "Point"}, "id": "1753", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.640001121503, 41.93709939580944, -85.640001121503, 41.93709939580944], "geometry": {"coordinates": [-85.640001121503, 41.93709939580944], "type": "Point"}, "id": "1754", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999884316945, 41.937234501865646, -85.63999884316945, 41.937234501865646], "geometry": {"coordinates": [-85.63999884316945, 41.937234501865646], "type": "Point"}, "id": "1755", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999656483591, 41.937369607635624, -85.63999656483591, 41.937369607635624], "geometry": {"coordinates": [-85.63999656483591, 41.937369607635624], "type": "Point"}, "id": "1756", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999428650239, 41.93750471311939, -85.63999428650239, 41.93750471311939], "geometry": {"coordinates": [-85.63999428650239, 41.93750471311939], "type": "Point"}, "id": "1757", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999200816883, 41.93763981831692, -85.63999200816883, 41.93763981831692], "geometry": {"coordinates": [-85.63999200816883, 41.93763981831692], "type": "Point"}, "id": "1758", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6399897298353, 41.93777492322822, -85.6399897298353, 41.93777492322822], "geometry": {"coordinates": [-85.6399897298353, 41.93777492322822], "type": "Point"}, "id": "1759", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63998745150175, 41.9379100278533, -85.63998745150175, 41.9379100278533], "geometry": {"coordinates": [-85.63998745150175, 41.9379100278533], "type": "Point"}, "id": "1760", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63998517316823, 41.93804513219216, -85.63998517316823, 41.93804513219216], "geometry": {"coordinates": [-85.63998517316823, 41.93804513219216], "type": "Point"}, "id": "1761", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63998278725046, 41.93818023472722, -85.63998278725046, 41.93818023472722], "geometry": {"coordinates": [-85.63998278725046, 41.93818023472722], "type": "Point"}, "id": "1762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63997817817953, 41.938315305616584, -85.63997817817953, 41.938315305616584], "geometry": {"coordinates": [-85.63997817817953, 41.938315305616584], "type": "Point"}, "id": "1763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63997356910858, 41.938450376219855, -85.63997356910858, 41.938450376219855], "geometry": {"coordinates": [-85.63997356910858, 41.938450376219855], "type": "Point"}, "id": "1764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63996896003763, 41.938585446537054, -85.63996896003763, 41.938585446537054], "geometry": {"coordinates": [-85.63996896003763, 41.938585446537054], "type": "Point"}, "id": "1765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63996435096671, 41.938720516568154, -85.63996435096671, 41.938720516568154], "geometry": {"coordinates": [-85.63996435096671, 41.938720516568154], "type": "Point"}, "id": "1766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63995974189577, 41.938855586313174, -85.63995974189577, 41.938855586313174], "geometry": {"coordinates": [-85.63995974189577, 41.938855586313174], "type": "Point"}, "id": "1767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63995513282482, 41.93899065577211, -85.63995513282482, 41.93899065577211], "geometry": {"coordinates": [-85.63995513282482, 41.93899065577211], "type": "Point"}, "id": "1768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63995052375388, 41.93912572494495, -85.63995052375388, 41.93912572494495], "geometry": {"coordinates": [-85.63995052375388, 41.93912572494495], "type": "Point"}, "id": "1769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63994591468293, 41.93926079383171, -85.63994591468293, 41.93926079383171], "geometry": {"coordinates": [-85.63994591468293, 41.93926079383171], "type": "Point"}, "id": "1770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.639941305612, 41.93939586243238, -85.639941305612, 41.93939586243238], "geometry": {"coordinates": [-85.639941305612, 41.93939586243238], "type": "Point"}, "id": "1771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63993669654104, 41.939530930746955, -85.63993669654104, 41.939530930746955], "geometry": {"coordinates": [-85.63993669654104, 41.939530930746955], "type": "Point"}, "id": "1772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6399320874701, 41.93966599877545, -85.6399320874701, 41.93966599877545], "geometry": {"coordinates": [-85.6399320874701, 41.93966599877545], "type": "Point"}, "id": "1773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63992747839917, 41.93980106651786, -85.63992747839917, 41.93980106651786], "geometry": {"coordinates": [-85.63992747839917, 41.93980106651786], "type": "Point"}, "id": "1774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6399228616603, 41.93993613382891, -85.6399228616603, 41.93993613382891], "geometry": {"coordinates": [-85.6399228616603, 41.93993613382891], "type": "Point"}, "id": "1775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63116059999999, 41.9651699, -85.63116059999999, 41.9651699], "geometry": {"coordinates": [-85.63116059999999, 41.9651699], "type": "Point"}, "id": "1776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968020}, "type": "Feature"}, {"bbox": [-85.63094523695844, 41.96517948866195, -85.63094523695844, 41.96517948866195], "geometry": {"coordinates": [-85.63094523695844, 41.96517948866195], "type": "Point"}, "id": "1777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968020}, "type": "Feature"}, {"bbox": [-85.63073702255205, 41.96514653056617, -85.63073702255205, 41.96514653056617], "geometry": {"coordinates": [-85.63073702255205, 41.96514653056617], "type": "Point"}, "id": "1778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968020}, "type": "Feature"}, {"bbox": [-85.63056990193465, 41.96504845992521, -85.63056990193465, 41.96504845992521], "geometry": {"coordinates": [-85.63056990193465, 41.96504845992521], "type": "Point"}, "id": "1779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968020}, "type": "Feature"}, {"bbox": [-85.6382347, 41.9426146, -85.6382347, 41.9426146], "geometry": {"coordinates": [-85.6382347, 41.9426146], "type": "Point"}, "id": "1780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63823588432082, 41.94276594394016, -85.63823588432082, 41.94276594394016], "geometry": {"coordinates": [-85.63823588432082, 41.94276594394016], "type": "Point"}, "id": "1781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63823710304536, 41.9429172873714, -85.63823710304536, 41.9429172873714], "geometry": {"coordinates": [-85.63823710304536, 41.9429172873714], "type": "Point"}, "id": "1782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63823829640675, 41.94306863055444, -85.63823829640675, 41.94306863055444], "geometry": {"coordinates": [-85.63823829640675, 41.94306863055444], "type": "Point"}, "id": "1783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63823947230507, 41.94321997345468, -85.63823947230507, 41.94321997345468], "geometry": {"coordinates": [-85.63823947230507, 41.94321997345468], "type": "Point"}, "id": "1784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63824064820338, 41.943371315995684, -85.63824064820338, 41.943371315995684], "geometry": {"coordinates": [-85.63824064820338, 41.943371315995684], "type": "Point"}, "id": "1785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63824182410168, 41.94352265817746, -85.63824182410168, 41.94352265817746], "geometry": {"coordinates": [-85.63824182410168, 41.94352265817746], "type": "Point"}, "id": "1786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.6412224, 41.931841000000006, -85.6412224, 41.931841000000006], "geometry": {"coordinates": [-85.6412224, 41.931841000000006], "type": "Point"}, "id": "1787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.64102508880983, 41.93178669495036, -85.64102508880983, 41.93178669495036], "geometry": {"coordinates": [-85.64102508880983, 41.93178669495036], "type": "Point"}, "id": "1788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.64081453635467, 41.93177869489745, -85.64081453635467, 41.93177869489745], "geometry": {"coordinates": [-85.64081453635467, 41.93177869489745], "type": "Point"}, "id": "1789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.64060314639825, 41.931787076704076, -85.64060314639825, 41.931787076704076], "geometry": {"coordinates": [-85.64060314639825, 41.931787076704076], "type": "Point"}, "id": "1790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.64039175644184, 41.9317954585096, -85.64039175644184, 41.9317954585096], "geometry": {"coordinates": [-85.64039175644184, 41.9317954585096], "type": "Point"}, "id": "1791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.63466799999999, 41.94987499999999, -85.63466799999999, 41.94987499999999], "geometry": {"coordinates": [-85.63466799999999, 41.94987499999999], "type": "Point"}, "id": "1792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63485727843627, 41.94987566958891, -85.63485727843627, 41.94987566958891], "geometry": {"coordinates": [-85.63485727843627, 41.94987566958891], "type": "Point"}, "id": "1793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63504655687257, 41.949876339177834, -85.63504655687257, 41.949876339177834], "geometry": {"coordinates": [-85.63504655687257, 41.949876339177834], "type": "Point"}, "id": "1794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63523583530883, 41.94987700876674, -85.63523583530883, 41.94987700876674], "geometry": {"coordinates": [-85.63523583530883, 41.94987700876674], "type": "Point"}, "id": "1795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63542511374513, 41.94987767835565, -85.63542511374513, 41.94987767835565], "geometry": {"coordinates": [-85.63542511374513, 41.94987767835565], "type": "Point"}, "id": "1796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63561439228474, 41.94987833154525, -85.63561439228474, 41.94987833154525], "geometry": {"coordinates": [-85.63561439228474, 41.94987833154525], "type": "Point"}, "id": "1797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63580367084727, 41.9498789810942, -85.63580367084727, 41.9498789810942], "geometry": {"coordinates": [-85.63580367084727, 41.9498789810942], "type": "Point"}, "id": "1798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.6359929494098, 41.94987963064313, -85.6359929494098, 41.94987963064313], "geometry": {"coordinates": [-85.6359929494098, 41.94987963064313], "type": "Point"}, "id": "1799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63618222797234, 41.949880280192076, -85.63618222797234, 41.949880280192076], "geometry": {"coordinates": [-85.63618222797234, 41.949880280192076], "type": "Point"}, "id": "1800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63637150592567, 41.94987957871894, -85.63637150592567, 41.94987957871894], "geometry": {"coordinates": [-85.63637150592567, 41.94987957871894], "type": "Point"}, "id": "1801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63656078385985, 41.94987883475066, -85.63656078385985, 41.94987883475066], "geometry": {"coordinates": [-85.63656078385985, 41.94987883475066], "type": "Point"}, "id": "1802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.636750061794, 41.94987809078238, -85.636750061794, 41.94987809078238], "geometry": {"coordinates": [-85.636750061794, 41.94987809078238], "type": "Point"}, "id": "1803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63693933972819, 41.94987734681408, -85.63693933972819, 41.94987734681408], "geometry": {"coordinates": [-85.63693933972819, 41.94987734681408], "type": "Point"}, "id": "1804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63712861766236, 41.94987660284577, -85.63712861766236, 41.94987660284577], "geometry": {"coordinates": [-85.63712861766236, 41.94987660284577], "type": "Point"}, "id": "1805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63731789559654, 41.94987585887745, -85.63731789559654, 41.94987585887745], "geometry": {"coordinates": [-85.63731789559654, 41.94987585887745], "type": "Point"}, "id": "1806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63750717245162, 41.949874984975104, -85.63750717245162, 41.949874984975104], "geometry": {"coordinates": [-85.63750717245162, 41.949874984975104], "type": "Point"}, "id": "1807", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63769644830107, 41.949873989983416, -85.63769644830107, 41.949873989983416], "geometry": {"coordinates": [-85.63769644830107, 41.949873989983416], "type": "Point"}, "id": "1808", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63788572415054, 41.94987299499172, -85.63788572415054, 41.94987299499172], "geometry": {"coordinates": [-85.63788572415054, 41.94987299499172], "type": "Point"}, "id": "1809", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.6392066, 41.952388600000006, -85.6392066, 41.952388600000006], "geometry": {"coordinates": [-85.6392066, 41.952388600000006], "type": "Point"}, "id": "1810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 818299135}, "type": "Feature"}, {"bbox": [-85.63943813333333, 41.952386300000086, -85.63943813333333, 41.952386300000086], "geometry": {"coordinates": [-85.63943813333333, 41.952386300000086], "type": "Point"}, "id": "1811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 818299135}, "type": "Feature"}, {"bbox": [-85.63966966666668, 41.95238400000009, -85.63966966666668, 41.95238400000009], "geometry": {"coordinates": [-85.63966966666668, 41.95238400000009], "type": "Point"}, "id": "1812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 818299135}, "type": "Feature"}, {"bbox": [-85.6354227, 41.943432599999994, -85.6354227, 41.943432599999994], "geometry": {"coordinates": [-85.6354227, 41.943432599999994], "type": "Point"}, "id": "1813", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203988296}, "type": "Feature"}, {"bbox": [-85.61705139999998, 41.9585743, -85.61705139999998, 41.9585743], "geometry": {"coordinates": [-85.61705139999998, 41.9585743], "type": "Point"}, "id": "1814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.61704540887621, 41.95871108479123, -85.61704540887621, 41.95871108479123], "geometry": {"coordinates": [-85.61704540887621, 41.95871108479123], "type": "Point"}, "id": "1815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.61690928381944, 41.95879981298008, -85.61690928381944, 41.95879981298008], "geometry": {"coordinates": [-85.61690928381944, 41.95879981298008], "type": "Point"}, "id": "1816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.61675177462422, 41.95887654973132, -85.61675177462422, 41.95887654973132], "geometry": {"coordinates": [-85.61675177462422, 41.95887654973132], "type": "Point"}, "id": "1817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.6165747050343, 41.95891109539132, -85.6165747050343, 41.95891109539132], "geometry": {"coordinates": [-85.6165747050343, 41.95891109539132], "type": "Point"}, "id": "1818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.6163864358025, 41.95890419454541, -85.6163864358025, 41.95890419454541], "geometry": {"coordinates": [-85.6163864358025, 41.95890419454541], "type": "Point"}, "id": "1819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.61620804805712, 41.95893903196748, -85.61620804805712, 41.95893903196748], "geometry": {"coordinates": [-85.61620804805712, 41.95893903196748], "type": "Point"}, "id": "1820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.6160584997431, 41.95902330972826, -85.6160584997431, 41.95902330972826], "geometry": {"coordinates": [-85.6160584997431, 41.95902330972826], "type": "Point"}, "id": "1821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.643195, 41.949261, -85.643195, 41.949261], "geometry": {"coordinates": [-85.643195, 41.949261], "type": "Point"}, "id": "1822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64319717608457, 41.94940354709696, -85.64319717608457, 41.94940354709696], "geometry": {"coordinates": [-85.64319717608457, 41.94940354709696], "type": "Point"}, "id": "1823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64319935216915, 41.94954609387517, -85.64319935216915, 41.94954609387517], "geometry": {"coordinates": [-85.64319935216915, 41.94954609387517], "type": "Point"}, "id": "1824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64320152825373, 41.94968864033462, -85.64320152825373, 41.94968864033462], "geometry": {"coordinates": [-85.64320152825373, 41.94968864033462], "type": "Point"}, "id": "1825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64320370437193, 41.94983118647504, -85.64320370437193, 41.94983118647504], "geometry": {"coordinates": [-85.64320370437193, 41.94983118647504], "type": "Point"}, "id": "1826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64320588063748, 41.94997373229545, -85.64320588063748, 41.94997373229545], "geometry": {"coordinates": [-85.64320588063748, 41.94997373229545], "type": "Point"}, "id": "1827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64320805690305, 41.95011627779709, -85.64320805690305, 41.95011627779709], "geometry": {"coordinates": [-85.64320805690305, 41.95011627779709], "type": "Point"}, "id": "1828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64321023316862, 41.95025882297999, -85.64321023316862, 41.95025882297999], "geometry": {"coordinates": [-85.64321023316862, 41.95025882297999], "type": "Point"}, "id": "1829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64321241222929, 41.95040136782041, -85.64321241222929, 41.95040136782041], "geometry": {"coordinates": [-85.64321241222929, 41.95040136782041], "type": "Point"}, "id": "1830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64321460815286, 41.95054391219903, -85.64321460815286, 41.95054391219903], "geometry": {"coordinates": [-85.64321460815286, 41.95054391219903], "type": "Point"}, "id": "1831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64321680407643, 41.9506864562589, -85.64321680407643, 41.9506864562589], "geometry": {"coordinates": [-85.64321680407643, 41.9506864562589], "type": "Point"}, "id": "1832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.63472599999999, 41.955921, -85.63472599999999, 41.955921], "geometry": {"coordinates": [-85.63472599999999, 41.955921], "type": "Point"}, "id": "1833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63490913326356, 41.95592076369901, -85.63490913326356, 41.95592076369901], "geometry": {"coordinates": [-85.63490913326356, 41.95592076369901], "type": "Point"}, "id": "1834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63509226652714, 41.955920527398035, -85.63509226652714, 41.955920527398035], "geometry": {"coordinates": [-85.63509226652714, 41.955920527398035], "type": "Point"}, "id": "1835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63527539979069, 41.95592029109705, -85.63527539979069, 41.95592029109705], "geometry": {"coordinates": [-85.63527539979069, 41.95592029109705], "type": "Point"}, "id": "1836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63545853305426, 41.95592005479606, -85.63545853305426, 41.95592005479606], "geometry": {"coordinates": [-85.63545853305426, 41.95592005479606], "type": "Point"}, "id": "1837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63564166631782, 41.95591981849508, -85.63564166631782, 41.95591981849508], "geometry": {"coordinates": [-85.63564166631782, 41.95591981849508], "type": "Point"}, "id": "1838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63582479958139, 41.95591958219409, -85.63582479958139, 41.95591958219409], "geometry": {"coordinates": [-85.63582479958139, 41.95591958219409], "type": "Point"}, "id": "1839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63600793284496, 41.9559193458931, -85.63600793284496, 41.9559193458931], "geometry": {"coordinates": [-85.63600793284496, 41.9559193458931], "type": "Point"}, "id": "1840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63619106610854, 41.95591910959212, -85.63619106610854, 41.95591910959212], "geometry": {"coordinates": [-85.63619106610854, 41.95591910959212], "type": "Point"}, "id": "1841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63637419945795, 41.95591908203798, -85.63637419945795, 41.95591908203798], "geometry": {"coordinates": [-85.63637419945795, 41.95591908203798], "type": "Point"}, "id": "1842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63655733288162, 41.955919235031644, -85.63655733288162, 41.955919235031644], "geometry": {"coordinates": [-85.63655733288162, 41.955919235031644], "type": "Point"}, "id": "1843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63674046630531, 41.955919388025315, -85.63674046630531, 41.955919388025315], "geometry": {"coordinates": [-85.63674046630531, 41.955919388025315], "type": "Point"}, "id": "1844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63692359972896, 41.955919541018986, -85.63692359972896, 41.955919541018986], "geometry": {"coordinates": [-85.63692359972896, 41.955919541018986], "type": "Point"}, "id": "1845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63710673315265, 41.955919694012664, -85.63710673315265, 41.955919694012664], "geometry": {"coordinates": [-85.63710673315265, 41.955919694012664], "type": "Point"}, "id": "1846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63728986657631, 41.955919847006335, -85.63728986657631, 41.955919847006335], "geometry": {"coordinates": [-85.63728986657631, 41.955919847006335], "type": "Point"}, "id": "1847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.62846899999998, 41.948674, -85.62846899999998, 41.948674], "geometry": {"coordinates": [-85.62846899999998, 41.948674], "type": "Point"}, "id": "1848", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 571300380}, "type": "Feature"}, {"bbox": [-85.6282566193382, 41.94870451232407, -85.6282566193382, 41.94870451232407], "geometry": {"coordinates": [-85.6282566193382, 41.94870451232407], "type": "Point"}, "id": "1849", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 571300380}, "type": "Feature"}, {"bbox": [-85.62805105500398, 41.94863658254634, -85.62805105500398, 41.94863658254634], "geometry": {"coordinates": [-85.62805105500398, 41.94863658254634], "type": "Point"}, "id": "1850", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 571300380}, "type": "Feature"}, {"bbox": [-85.622643, 41.940128, -85.622643, 41.940128], "geometry": {"coordinates": [-85.622643, 41.940128], "type": "Point"}, "id": "1851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968113}, "type": "Feature"}, {"bbox": [-85.622643, 41.9402970004479, -85.622643, 41.9402970004479], "geometry": {"coordinates": [-85.622643, 41.9402970004479], "type": "Point"}, "id": "1852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968113}, "type": "Feature"}, {"bbox": [-85.622643, 41.9404660004479, -85.622643, 41.9404660004479], "geometry": {"coordinates": [-85.622643, 41.9404660004479], "type": "Point"}, "id": "1853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968113}, "type": "Feature"}, {"bbox": [-85.63097199999999, 41.961495, -85.63097199999999, 41.961495], "geometry": {"coordinates": [-85.63097199999999, 41.961495], "type": "Point"}, "id": "1854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63115580606062, 41.96149459063238, -85.63115580606062, 41.96149459063238], "geometry": {"coordinates": [-85.63115580606062, 41.96149459063238], "type": "Point"}, "id": "1855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63133961212124, 41.96149418126476, -85.63133961212124, 41.96149418126476], "geometry": {"coordinates": [-85.63133961212124, 41.96149418126476], "type": "Point"}, "id": "1856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63152341848135, 41.96149386541592, -85.63152341848135, 41.96149386541592], "geometry": {"coordinates": [-85.63152341848135, 41.96149386541592], "type": "Point"}, "id": "1857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63170722507942, 41.96149362388295, -85.63170722507942, 41.96149362388295], "geometry": {"coordinates": [-85.63170722507942, 41.96149362388295], "type": "Point"}, "id": "1858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.6318910316775, 41.961493382349964, -85.6318910316775, 41.961493382349964], "geometry": {"coordinates": [-85.6318910316775, 41.961493382349964], "type": "Point"}, "id": "1859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63207483827559, 41.961493140816984, -85.63207483827559, 41.961493140816984], "geometry": {"coordinates": [-85.63207483827559, 41.961493140816984], "type": "Point"}, "id": "1860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63225864453224, 41.961492802312016, -85.63225864453224, 41.961492802312016], "geometry": {"coordinates": [-85.63225864453224, 41.961492802312016], "type": "Point"}, "id": "1861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63244245031157, 41.96149232822479, -85.63244245031157, 41.96149232822479], "geometry": {"coordinates": [-85.63244245031157, 41.96149232822479], "type": "Point"}, "id": "1862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63262625609093, 41.961491854137556, -85.63262625609093, 41.961491854137556], "geometry": {"coordinates": [-85.63262625609093, 41.961491854137556], "type": "Point"}, "id": "1863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63281006187026, 41.96149138005032, -85.63281006187026, 41.96149138005032], "geometry": {"coordinates": [-85.63281006187026, 41.96149138005032], "type": "Point"}, "id": "1864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.6329938676496, 41.961490905963075, -85.6329938676496, 41.961490905963075], "geometry": {"coordinates": [-85.6329938676496, 41.961490905963075], "type": "Point"}, "id": "1865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63317767342893, 41.96149043187583, -85.63317767342893, 41.96149043187583], "geometry": {"coordinates": [-85.63317767342893, 41.96149043187583], "type": "Point"}, "id": "1866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63336147920828, 41.96148995778858, -85.63336147920828, 41.96148995778858], "geometry": {"coordinates": [-85.63336147920828, 41.96148995778858], "type": "Point"}, "id": "1867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.6335452849876, 41.961489483701335, -85.6335452849876, 41.961489483701335], "geometry": {"coordinates": [-85.6335452849876, 41.961489483701335], "type": "Point"}, "id": "1868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63372909076693, 41.961489009614084, -85.63372909076693, 41.961489009614084], "geometry": {"coordinates": [-85.63372909076693, 41.961489009614084], "type": "Point"}, "id": "1869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63391289587258, 41.961488449071545, -85.63391289587258, 41.961488449071545], "geometry": {"coordinates": [-85.63391289587258, 41.961488449071545], "type": "Point"}, "id": "1870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63409669669807, 41.961487339257275, -85.63409669669807, 41.961487339257275], "geometry": {"coordinates": [-85.63409669669807, 41.961487339257275], "type": "Point"}, "id": "1871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63428049752353, 41.96148622944298, -85.63428049752353, 41.96148622944298], "geometry": {"coordinates": [-85.63428049752353, 41.96148622944298], "type": "Point"}, "id": "1872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63446429834902, 41.96148511962867, -85.63446429834902, 41.96148511962867], "geometry": {"coordinates": [-85.63446429834902, 41.96148511962867], "type": "Point"}, "id": "1873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63464809917451, 41.96148400981435, -85.63464809917451, 41.96148400981435], "geometry": {"coordinates": [-85.63464809917451, 41.96148400981435], "type": "Point"}, "id": "1874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63332989999999, 41.955927100000004, -85.63332989999999, 41.955927100000004], "geometry": {"coordinates": [-85.63332989999999, 41.955927100000004], "type": "Point"}, "id": "1875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63352934288014, 41.95592623148391, -85.63352934288014, 41.95592623148391], "geometry": {"coordinates": [-85.63352934288014, 41.95592623148391], "type": "Point"}, "id": "1876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63372878576033, 41.95592536296781, -85.63372878576033, 41.95592536296781], "geometry": {"coordinates": [-85.63372878576033, 41.95592536296781], "type": "Point"}, "id": "1877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63392822864047, 41.95592449445169, -85.63392822864047, 41.95592449445169], "geometry": {"coordinates": [-85.63392822864047, 41.95592449445169], "type": "Point"}, "id": "1878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63412767151054, 41.95592362465889, -85.63412767151054, 41.95592362465889], "geometry": {"coordinates": [-85.63412767151054, 41.95592362465889], "type": "Point"}, "id": "1879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63432711434037, 41.9559227497726, -85.63432711434037, 41.9559227497726], "geometry": {"coordinates": [-85.63432711434037, 41.9559227497726], "type": "Point"}, "id": "1880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63452655717016, 41.95592187488631, -85.63452655717016, 41.95592187488631], "geometry": {"coordinates": [-85.63452655717016, 41.95592187488631], "type": "Point"}, "id": "1881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.64000299999998, 41.93698800000001, -85.64000299999998, 41.93698800000001], "geometry": {"coordinates": [-85.64000299999998, 41.93698800000001], "type": "Point"}, "id": "1882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64019433332231, 41.936987331586664, -85.64019433332231, 41.936987331586664], "geometry": {"coordinates": [-85.64019433332231, 41.936987331586664], "type": "Point"}, "id": "1883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64038566664466, 41.93698666317332, -85.64038566664466, 41.93698666317332], "geometry": {"coordinates": [-85.64038566664466, 41.93698666317332], "type": "Point"}, "id": "1884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64057699996698, 41.93698599475997, -85.64057699996698, 41.93698599475997], "geometry": {"coordinates": [-85.64057699996698, 41.93698599475997], "type": "Point"}, "id": "1885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64076833328932, 41.936985326346615, -85.64076833328932, 41.936985326346615], "geometry": {"coordinates": [-85.64076833328932, 41.936985326346615], "type": "Point"}, "id": "1886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64095966661166, 41.936984657933245, -85.64095966661166, 41.936984657933245], "geometry": {"coordinates": [-85.64095966661166, 41.936984657933245], "type": "Point"}, "id": "1887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64115099993433, 41.936984010425476, -85.64115099993433, 41.936984010425476], "geometry": {"coordinates": [-85.64115099993433, 41.936984010425476], "type": "Point"}, "id": "1888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64134233327862, 41.93698467535459, -85.64134233327862, 41.93698467535459], "geometry": {"coordinates": [-85.64134233327862, 41.93698467535459], "type": "Point"}, "id": "1889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64153366662289, 41.936985340283684, -85.64153366662289, 41.936985340283684], "geometry": {"coordinates": [-85.64153366662289, 41.936985340283684], "type": "Point"}, "id": "1890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64172499996715, 41.93698600521278, -85.64172499996715, 41.93698600521278], "geometry": {"coordinates": [-85.64172499996715, 41.93698600521278], "type": "Point"}, "id": "1891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64191633331143, 41.93698667014185, -85.64191633331143, 41.93698667014185], "geometry": {"coordinates": [-85.64191633331143, 41.93698667014185], "type": "Point"}, "id": "1892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64210766665572, 41.93698733507093, -85.64210766665572, 41.93698733507093], "geometry": {"coordinates": [-85.64210766665572, 41.93698733507093], "type": "Point"}, "id": "1893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.61869239999999, 41.95814529999999, -85.61869239999999, 41.95814529999999], "geometry": {"coordinates": [-85.61869239999999, 41.95814529999999], "type": "Point"}, "id": "1894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61850757333332, 41.9581463000001, -85.61850757333332, 41.9581463000001], "geometry": {"coordinates": [-85.61850757333332, 41.9581463000001], "type": "Point"}, "id": "1895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61832274666666, 41.958147300000206, -85.61832274666666, 41.958147300000206], "geometry": {"coordinates": [-85.61832274666666, 41.958147300000206], "type": "Point"}, "id": "1896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61813791999998, 41.958148300000275, -85.61813791999998, 41.958148300000275], "geometry": {"coordinates": [-85.61813791999998, 41.958148300000275], "type": "Point"}, "id": "1897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61795309333333, 41.958149300000336, -85.61795309333333, 41.958149300000336], "geometry": {"coordinates": [-85.61795309333333, 41.958149300000336], "type": "Point"}, "id": "1898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61776826666666, 41.95815030000039, -85.61776826666666, 41.95815030000039], "geometry": {"coordinates": [-85.61776826666666, 41.95815030000039], "type": "Point"}, "id": "1899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61758344, 41.95815130000042, -85.61758344, 41.95815130000042], "geometry": {"coordinates": [-85.61758344, 41.95815130000042], "type": "Point"}, "id": "1900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61739861333331, 41.958152300000435, -85.61739861333331, 41.958152300000435], "geometry": {"coordinates": [-85.61739861333331, 41.958152300000435], "type": "Point"}, "id": "1901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61721378666667, 41.95815330000044, -85.61721378666667, 41.95815330000044], "geometry": {"coordinates": [-85.61721378666667, 41.95815330000044], "type": "Point"}, "id": "1902", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61702895999998, 41.95815430000042, -85.61702895999998, 41.95815430000042], "geometry": {"coordinates": [-85.61702895999998, 41.95815430000042], "type": "Point"}, "id": "1903", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61684413333333, 41.95815530000039, -85.61684413333333, 41.95815530000039], "geometry": {"coordinates": [-85.61684413333333, 41.95815530000039], "type": "Point"}, "id": "1904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61665930666665, 41.958156300000354, -85.61665930666665, 41.958156300000354], "geometry": {"coordinates": [-85.61665930666665, 41.958156300000354], "type": "Point"}, "id": "1905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61647448, 41.95815730000028, -85.61647448, 41.95815730000028], "geometry": {"coordinates": [-85.61647448, 41.95815730000028], "type": "Point"}, "id": "1906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61628965333333, 41.9581583000002, -85.61628965333333, 41.9581583000002], "geometry": {"coordinates": [-85.61628965333333, 41.9581583000002], "type": "Point"}, "id": "1907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61610482666666, 41.95815930000011, -85.61610482666666, 41.95815930000011], "geometry": {"coordinates": [-85.61610482666666, 41.95815930000011], "type": "Point"}, "id": "1908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.62488399999998, 41.94350800000001, -85.62488399999998, 41.94350800000001], "geometry": {"coordinates": [-85.62488399999998, 41.94350800000001], "type": "Point"}, "id": "1909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62506378913696, 41.943508585632365, -85.62506378913696, 41.943508585632365], "geometry": {"coordinates": [-85.62506378913696, 41.943508585632365], "type": "Point"}, "id": "1910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62524357713396, 41.943508690722766, -85.62524357713396, 41.943508690722766], "geometry": {"coordinates": [-85.62524357713396, 41.943508690722766], "type": "Point"}, "id": "1911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.6254233623728, 41.94350763316264, -85.6254233623728, 41.94350763316264], "geometry": {"coordinates": [-85.6254233623728, 41.94350763316264], "type": "Point"}, "id": "1912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62560314761164, 41.943506575602484, -85.62560314761164, 41.943506575602484], "geometry": {"coordinates": [-85.62560314761164, 41.943506575602484], "type": "Point"}, "id": "1913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62578293285047, 41.94350551804232, -85.62578293285047, 41.94350551804232], "geometry": {"coordinates": [-85.62578293285047, 41.94350551804232], "type": "Point"}, "id": "1914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.6259627180893, 41.94350446048213, -85.6259627180893, 41.94350446048213], "geometry": {"coordinates": [-85.6259627180893, 41.94350446048213], "type": "Point"}, "id": "1915", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62614250332814, 41.94350340292193, -85.62614250332814, 41.94350340292193], "geometry": {"coordinates": [-85.62614250332814, 41.94350340292193], "type": "Point"}, "id": "1916", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62632228856697, 41.9435023453617, -85.62632228856697, 41.9435023453617], "geometry": {"coordinates": [-85.62632228856697, 41.9435023453617], "type": "Point"}, "id": "1917", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62650207380581, 41.94350128780147, -85.62650207380581, 41.94350128780147], "geometry": {"coordinates": [-85.62650207380581, 41.94350128780147], "type": "Point"}, "id": "1918", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62668185904465, 41.943500230241206, -85.62668185904465, 41.943500230241206], "geometry": {"coordinates": [-85.62668185904465, 41.943500230241206], "type": "Point"}, "id": "1919", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.6268616442835, 41.94349917268094, -85.6268616442835, 41.94349917268094], "geometry": {"coordinates": [-85.6268616442835, 41.94349917268094], "type": "Point"}, "id": "1920", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62704142952232, 41.94349811512064, -85.62704142952232, 41.94349811512064], "geometry": {"coordinates": [-85.62704142952232, 41.94349811512064], "type": "Point"}, "id": "1921", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62722121476116, 41.943497057560336, -85.62722121476116, 41.943497057560336], "geometry": {"coordinates": [-85.62722121476116, 41.943497057560336], "type": "Point"}, "id": "1922", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62842889999999, 41.9391345, -85.62842889999999, 41.9391345], "geometry": {"coordinates": [-85.62842889999999, 41.9391345], "type": "Point"}, "id": "1923", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843034285713, 41.939270429440654, -85.62843034285713, 41.939270429440654], "geometry": {"coordinates": [-85.62843034285713, 41.939270429440654], "type": "Point"}, "id": "1924", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843178571428, 41.939406358591576, -85.62843178571428, 41.939406358591576], "geometry": {"coordinates": [-85.62843178571428, 41.939406358591576], "type": "Point"}, "id": "1925", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843322857144, 41.93954228745275, -85.62843322857144, 41.93954228745275], "geometry": {"coordinates": [-85.62843322857144, 41.93954228745275], "type": "Point"}, "id": "1926", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843467142856, 41.939678216024184, -85.62843467142856, 41.939678216024184], "geometry": {"coordinates": [-85.62843467142856, 41.939678216024184], "type": "Point"}, "id": "1927", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.6284361142857, 41.93981414430587, -85.6284361142857, 41.93981414430587], "geometry": {"coordinates": [-85.6284361142857, 41.93981414430587], "type": "Point"}, "id": "1928", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843755714285, 41.93995007229781, -85.62843755714285, 41.93995007229781], "geometry": {"coordinates": [-85.62843755714285, 41.93995007229781], "type": "Point"}, "id": "1929", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.639454, 41.943871, -85.639454, 41.943871], "geometry": {"coordinates": [-85.639454, 41.943871], "type": "Point"}, "id": "1930", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.63963649231441, 41.94387040264383, -85.63963649231441, 41.94387040264383], "geometry": {"coordinates": [-85.63963649231441, 41.94387040264383], "type": "Point"}, "id": "1931", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.63981898462882, 41.943869805287655, -85.63981898462882, 41.943869805287655], "geometry": {"coordinates": [-85.63981898462882, 41.943869805287655], "type": "Point"}, "id": "1932", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64000147694323, 41.94386920793147, -85.64000147694323, 41.94386920793147], "geometry": {"coordinates": [-85.64000147694323, 41.94386920793147], "type": "Point"}, "id": "1933", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64018396925763, 41.94386861057528, -85.64018396925763, 41.94386861057528], "geometry": {"coordinates": [-85.64018396925763, 41.94386861057528], "type": "Point"}, "id": "1934", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64036646157203, 41.943868013219095, -85.64036646157203, 41.943868013219095], "geometry": {"coordinates": [-85.64036646157203, 41.943868013219095], "type": "Point"}, "id": "1935", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64054895388644, 41.9438674158629, -85.64054895388644, 41.9438674158629], "geometry": {"coordinates": [-85.64054895388644, 41.9438674158629], "type": "Point"}, "id": "1936", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64073143927531, 41.943866323395575, -85.64073143927531, 41.943866323395575], "geometry": {"coordinates": [-85.64073143927531, 41.943866323395575], "type": "Point"}, "id": "1937", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64091390836552, 41.94386407711252, -85.64091390836552, 41.94386407711252], "geometry": {"coordinates": [-85.64091390836552, 41.94386407711252], "type": "Point"}, "id": "1938", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64109637715111, 41.94386181712401, -85.64109637715111, 41.94386181712401], "geometry": {"coordinates": [-85.64109637715111, 41.94386181712401], "type": "Point"}, "id": "1939", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64127884593671, 41.943859557135426, -85.64127884593671, 41.943859557135426], "geometry": {"coordinates": [-85.64127884593671, 41.943859557135426], "type": "Point"}, "id": "1940", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64146131472232, 41.943857297146764, -85.64146131472232, 41.943857297146764], "geometry": {"coordinates": [-85.64146131472232, 41.943857297146764], "type": "Point"}, "id": "1941", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64164378350792, 41.94385503715802, -85.64164378350792, 41.94385503715802], "geometry": {"coordinates": [-85.64164378350792, 41.94385503715802], "type": "Point"}, "id": "1942", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64182625229351, 41.94385277716919, -85.64182625229351, 41.94385277716919], "geometry": {"coordinates": [-85.64182625229351, 41.94385277716919], "type": "Point"}, "id": "1943", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64200872902063, 41.94385092915555, -85.64200872902063, 41.94385092915555], "geometry": {"coordinates": [-85.64200872902063, 41.94385092915555], "type": "Point"}, "id": "1944", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64219120959842, 41.94384927789715, -85.64219120959842, 41.94384927789715], "geometry": {"coordinates": [-85.64219120959842, 41.94384927789715], "type": "Point"}, "id": "1945", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64237369017624, 41.94384762663871, -85.64237369017624, 41.94384762663871], "geometry": {"coordinates": [-85.64237369017624, 41.94384762663871], "type": "Point"}, "id": "1946", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64255617075405, 41.94384597538022, -85.64255617075405, 41.94384597538022], "geometry": {"coordinates": [-85.64255617075405, 41.94384597538022], "type": "Point"}, "id": "1947", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64273865133187, 41.943844324121685, -85.64273865133187, 41.943844324121685], "geometry": {"coordinates": [-85.64273865133187, 41.943844324121685], "type": "Point"}, "id": "1948", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64292113190967, 41.94384267286311, -85.64292113190967, 41.94384267286311], "geometry": {"coordinates": [-85.64292113190967, 41.94384267286311], "type": "Point"}, "id": "1949", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.6431036124875, 41.94384102160449, -85.6431036124875, 41.94384102160449], "geometry": {"coordinates": [-85.6431036124875, 41.94384102160449], "type": "Point"}, "id": "1950", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64328609638018, 41.94383958747946, -85.64328609638018, 41.94383958747946], "geometry": {"coordinates": [-85.64328609638018, 41.94383958747946], "type": "Point"}, "id": "1951", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64346858031682, 41.943838156232964, -85.64346858031682, 41.943838156232964], "geometry": {"coordinates": [-85.64346858031682, 41.943838156232964], "type": "Point"}, "id": "1952", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64365106425343, 41.94383672498644, -85.64365106425343, 41.94383672498644], "geometry": {"coordinates": [-85.64365106425343, 41.94383672498644], "type": "Point"}, "id": "1953", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64383354819009, 41.94383529373987, -85.64383354819009, 41.94383529373987], "geometry": {"coordinates": [-85.64383354819009, 41.94383529373987], "type": "Point"}, "id": "1954", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64401603212671, 41.94383386249328, -85.64401603212671, 41.94383386249328], "geometry": {"coordinates": [-85.64401603212671, 41.94383386249328], "type": "Point"}, "id": "1955", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64419851606335, 41.943832431246655, -85.64419851606335, 41.943832431246655], "geometry": {"coordinates": [-85.64419851606335, 41.943832431246655], "type": "Point"}, "id": "1956", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.6477466, 41.94587239999999, -85.6477466, 41.94587239999999], "geometry": {"coordinates": [-85.6477466, 41.94587239999999], "type": "Point"}, "id": "1957", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64754391888658, 41.94587881470445, -85.64754391888658, 41.94587881470445], "geometry": {"coordinates": [-85.64754391888658, 41.94587881470445], "type": "Point"}, "id": "1958", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64734118485163, 41.945883689307806, -85.64734118485163, 41.945883689307806], "geometry": {"coordinates": [-85.64734118485163, 41.945883689307806], "type": "Point"}, "id": "1959", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64713832778997, 41.94588498363944, -85.64713832778997, 41.94588498363944], "geometry": {"coordinates": [-85.64713832778997, 41.94588498363944], "type": "Point"}, "id": "1960", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64693547072831, 41.94588627797104, -85.64693547072831, 41.94588627797104], "geometry": {"coordinates": [-85.64693547072831, 41.94588627797104], "type": "Point"}, "id": "1961", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64673261366666, 41.945887572302624, -85.64673261366666, 41.945887572302624], "geometry": {"coordinates": [-85.64673261366666, 41.945887572302624], "type": "Point"}, "id": "1962", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64652975662734, 41.945888868545346, -85.64652975662734, 41.945888868545346], "geometry": {"coordinates": [-85.64652975662734, 41.945888868545346], "type": "Point"}, "id": "1963", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64797469999999, 41.9440825, -85.64797469999999, 41.9440825], "geometry": {"coordinates": [-85.64797469999999, 41.9440825], "type": "Point"}, "id": "1964", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.64777388498388, 41.944057375957016, -85.64777388498388, 41.944057375957016], "geometry": {"coordinates": [-85.64777388498388, 41.944057375957016], "type": "Point"}, "id": "1965", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.6475637637379, 41.94405778196778, -85.6475637637379, 41.94405778196778], "geometry": {"coordinates": [-85.6475637637379, 41.94405778196778], "type": "Point"}, "id": "1966", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.64735364249195, 41.94405818797852, -85.64735364249195, 41.94405818797852], "geometry": {"coordinates": [-85.64735364249195, 41.94405818797852], "type": "Point"}, "id": "1967", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.64714352124597, 41.94405859398927, -85.64714352124597, 41.94405859398927], "geometry": {"coordinates": [-85.64714352124597, 41.94405859398927], "type": "Point"}, "id": "1968", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.6272913, 41.9321591, -85.6272913, 41.9321591], "geometry": {"coordinates": [-85.6272913, 41.9321591], "type": "Point"}, "id": "1969", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62747759985639, 41.9321594453652, -85.62747759985639, 41.9321594453652], "geometry": {"coordinates": [-85.62747759985639, 41.9321594453652], "type": "Point"}, "id": "1970", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62766389971277, 41.932159790730395, -85.62766389971277, 41.932159790730395], "geometry": {"coordinates": [-85.62766389971277, 41.932159790730395], "type": "Point"}, "id": "1971", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62785019960836, 41.932160124183476, -85.62785019960836, 41.932160124183476], "geometry": {"coordinates": [-85.62785019960836, 41.932160124183476], "type": "Point"}, "id": "1972", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62803649950501, 41.932160457308015, -85.62803649950501, 41.932160457308015], "geometry": {"coordinates": [-85.62803649950501, 41.932160457308015], "type": "Point"}, "id": "1973", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62822279940168, 41.93216079043255, -85.62822279940168, 41.93216079043255], "geometry": {"coordinates": [-85.62822279940168, 41.93216079043255], "type": "Point"}, "id": "1974", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62840909413094, 41.932160359312626, -85.62840909413094, 41.932160359312626], "geometry": {"coordinates": [-85.62840909413094, 41.932160359312626], "type": "Point"}, "id": "1975", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62859538009565, 41.932158631943544, -85.62859538009565, 41.932158631943544], "geometry": {"coordinates": [-85.62859538009565, 41.932158631943544], "type": "Point"}, "id": "1976", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62878166606036, 41.93215690457443, -85.62878166606036, 41.93215690457443], "geometry": {"coordinates": [-85.62878166606036, 41.93215690457443], "type": "Point"}, "id": "1977", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62896795202505, 41.932155177205246, -85.62896795202505, 41.932155177205246], "geometry": {"coordinates": [-85.62896795202505, 41.932155177205246], "type": "Point"}, "id": "1978", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62915423772229, 41.93215343398047, -85.62915423772229, 41.93215343398047], "geometry": {"coordinates": [-85.62915423772229, 41.93215343398047], "type": "Point"}, "id": "1979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62934052328528, 41.93215168279858, -85.62934052328528, 41.93215168279858], "geometry": {"coordinates": [-85.62934052328528, 41.93215168279858], "type": "Point"}, "id": "1980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62952680884825, 41.932149931616664, -85.62952680884825, 41.932149931616664], "geometry": {"coordinates": [-85.62952680884825, 41.932149931616664], "type": "Point"}, "id": "1981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62971309712084, 41.93214848729649, -85.62971309712084, 41.93214848729649], "geometry": {"coordinates": [-85.62971309712084, 41.93214848729649], "type": "Point"}, "id": "1982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62989939753216, 41.932148417682704, -85.62989939753216, 41.932148417682704], "geometry": {"coordinates": [-85.62989939753216, 41.932148417682704], "type": "Point"}, "id": "1983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63008569794347, 41.93214834806893, -85.63008569794347, 41.93214834806893], "geometry": {"coordinates": [-85.63008569794347, 41.93214834806893], "type": "Point"}, "id": "1984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63027199835477, 41.93214827845513, -85.63027199835477, 41.93214827845513], "geometry": {"coordinates": [-85.63027199835477, 41.93214827845513], "type": "Point"}, "id": "1985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63045829876609, 41.932148208841355, -85.63045829876609, 41.932148208841355], "geometry": {"coordinates": [-85.63045829876609, 41.932148208841355], "type": "Point"}, "id": "1986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63064459917737, 41.932148139227564, -85.63064459917737, 41.932148139227564], "geometry": {"coordinates": [-85.63064459917737, 41.932148139227564], "type": "Point"}, "id": "1987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63083089958869, 41.93214806961378, -85.63083089958869, 41.93214806961378], "geometry": {"coordinates": [-85.63083089958869, 41.93214806961378], "type": "Point"}, "id": "1988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.61730179999999, 41.9346369, -85.61730179999999, 41.9346369], "geometry": {"coordinates": [-85.61730179999999, 41.9346369], "type": "Point"}, "id": "1989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61730685995349, 41.93477179150707, -85.61730685995349, 41.93477179150707], "geometry": {"coordinates": [-85.61730685995349, 41.93477179150707], "type": "Point"}, "id": "1990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61731191990697, 41.93490668272885, -85.61731191990697, 41.93490668272885], "geometry": {"coordinates": [-85.61731191990697, 41.93490668272885], "type": "Point"}, "id": "1991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61731697986045, 41.93504157366533, -85.61731697986045, 41.93504157366533], "geometry": {"coordinates": [-85.61731697986045, 41.93504157366533], "type": "Point"}, "id": "1992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61732203981393, 41.93517646431652, -85.61732203981393, 41.93517646431652], "geometry": {"coordinates": [-85.61732203981393, 41.93517646431652], "type": "Point"}, "id": "1993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61732709976742, 41.93531135468242, -85.61732709976742, 41.93531135468242], "geometry": {"coordinates": [-85.61732709976742, 41.93531135468242], "type": "Point"}, "id": "1994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61733215972089, 41.935446244763035, -85.61733215972089, 41.935446244763035], "geometry": {"coordinates": [-85.61733215972089, 41.935446244763035], "type": "Point"}, "id": "1995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173372196744, 41.93558113455835, -85.6173372196744, 41.93558113455835], "geometry": {"coordinates": [-85.6173372196744, 41.93558113455835], "type": "Point"}, "id": "1996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61734374649456, 41.935715987855914, -85.61734374649456, 41.935715987855914], "geometry": {"coordinates": [-85.61734374649456, 41.935715987855914], "type": "Point"}, "id": "1997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735071958957, 41.935850829851205, -85.61735071958957, 41.935850829851205], "geometry": {"coordinates": [-85.61735071958957, 41.935850829851205], "type": "Point"}, "id": "1998", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735769268458, 41.93598567156139, -85.61735769268458, 41.93598567156139], "geometry": {"coordinates": [-85.61735769268458, 41.93598567156139], "type": "Point"}, "id": "1999", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173646657796, 41.936120512986484, -85.6173646657796, 41.936120512986484], "geometry": {"coordinates": [-85.6173646657796, 41.936120512986484], "type": "Point"}, "id": "2000", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736415909733, 41.936254267373045, -85.61736415909733, 41.936254267373045], "geometry": {"coordinates": [-85.61736415909733, 41.936254267373045], "type": "Point"}, "id": "2001", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61732218136972, 41.93638387064173, -85.61732218136972, 41.93638387064173], "geometry": {"coordinates": [-85.61732218136972, 41.93638387064173], "type": "Point"}, "id": "2002", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173367983729, 41.9365183721632, -85.6173367983729, 41.9365183721632], "geometry": {"coordinates": [-85.6173367983729, 41.9365183721632], "type": "Point"}, "id": "2003", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735141537608, 41.936652873401016, -85.61735141537608, 41.936652873401016], "geometry": {"coordinates": [-85.61735141537608, 41.936652873401016], "type": "Point"}, "id": "2004", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735683437394, 41.93678766829224, -85.61735683437394, 41.93678766829224], "geometry": {"coordinates": [-85.61735683437394, 41.93678766829224], "type": "Point"}, "id": "2005", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735777744636, 41.93692260593365, -85.61735777744636, 41.93692260593365], "geometry": {"coordinates": [-85.61735777744636, 41.93692260593365], "type": "Point"}, "id": "2006", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735872051881, 41.937057543289555, -85.61735872051881, 41.937057543289555], "geometry": {"coordinates": [-85.61735872051881, 41.937057543289555], "type": "Point"}, "id": "2007", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735966359124, 41.93719248035996, -85.61735966359124, 41.93719248035996], "geometry": {"coordinates": [-85.61735966359124, 41.93719248035996], "type": "Point"}, "id": "2008", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173606066637, 41.93732741714484, -85.6173606066637, 41.93732741714484], "geometry": {"coordinates": [-85.6173606066637, 41.93732741714484], "type": "Point"}, "id": "2009", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736154973612, 41.93746235364422, -85.61736154973612, 41.93746235364422], "geometry": {"coordinates": [-85.61736154973612, 41.93746235364422], "type": "Point"}, "id": "2010", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736249280855, 41.937597289858104, -85.61736249280855, 41.937597289858104], "geometry": {"coordinates": [-85.61736249280855, 41.937597289858104], "type": "Point"}, "id": "2011", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736343588099, 41.93773222578646, -85.61736343588099, 41.93773222578646], "geometry": {"coordinates": [-85.61736343588099, 41.93773222578646], "type": "Point"}, "id": "2012", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736521537046, 41.93786715665543, -85.61736521537046, 41.93786715665543], "geometry": {"coordinates": [-85.61736521537046, 41.93786715665543], "type": "Point"}, "id": "2013", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173670558759, 41.93800208689065, -85.6173670558759, 41.93800208689065], "geometry": {"coordinates": [-85.6173670558759, 41.93800208689065], "type": "Point"}, "id": "2014", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736889638136, 41.93813701684039, -85.61736889638136, 41.93813701684039], "geometry": {"coordinates": [-85.61736889638136, 41.93813701684039], "type": "Point"}, "id": "2015", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61737017747933, 41.93827194968807, -85.61737017747933, 41.93827194968807], "geometry": {"coordinates": [-85.61737017747933, 41.93827194968807], "type": "Point"}, "id": "2016", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173711123603, 41.93840688422047, -85.6173711123603, 41.93840688422047], "geometry": {"coordinates": [-85.6173711123603, 41.93840688422047], "type": "Point"}, "id": "2017", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61737194537676, 41.93854181843684, -85.61737194537676, 41.93854181843684], "geometry": {"coordinates": [-85.61737194537676, 41.93854181843684], "type": "Point"}, "id": "2018", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61737086440954, 41.93867675179441, -85.61737086440954, 41.93867675179441], "geometry": {"coordinates": [-85.61737086440954, 41.93867675179441], "type": "Point"}, "id": "2019", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736978344234, 41.93881168486646, -85.61736978344234, 41.93881168486646], "geometry": {"coordinates": [-85.61736978344234, 41.93881168486646], "type": "Point"}, "id": "2020", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736870247512, 41.938946617653, -85.61736870247512, 41.938946617653], "geometry": {"coordinates": [-85.61736870247512, 41.938946617653], "type": "Point"}, "id": "2021", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736762150791, 41.93908155015405, -85.61736762150791, 41.93908155015405], "geometry": {"coordinates": [-85.61736762150791, 41.93908155015405], "type": "Point"}, "id": "2022", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736654562738, 41.93921648239206, -85.61736654562738, 41.93921648239206], "geometry": {"coordinates": [-85.61736654562738, 41.93921648239206], "type": "Point"}, "id": "2023", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736547105784, 41.93935141435036, -85.61736547105784, 41.93935141435036], "geometry": {"coordinates": [-85.61736547105784, 41.93935141435036], "type": "Point"}, "id": "2024", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736439648828, 41.93948634602316, -85.61736439648828, 41.93948634602316], "geometry": {"coordinates": [-85.61736439648828, 41.93948634602316], "type": "Point"}, "id": "2025", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736332191873, 41.93962127741044, -85.61736332191873, 41.93962127741044], "geometry": {"coordinates": [-85.61736332191873, 41.93962127741044], "type": "Point"}, "id": "2026", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736224287448, 41.93975620849243, -85.61736224287448, 41.93975620849243], "geometry": {"coordinates": [-85.61736224287448, 41.93975620849243], "type": "Point"}, "id": "2027", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736116191632, 41.93989113928047, -85.61736116191632, 41.93989113928047], "geometry": {"coordinates": [-85.61736116191632, 41.93989113928047], "type": "Point"}, "id": "2028", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736008095815, 41.940026069782995, -85.61736008095815, 41.940026069782995], "geometry": {"coordinates": [-85.61736008095815, 41.940026069782995], "type": "Point"}, "id": "2029", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6418749, 41.94258640000001, -85.6418749, 41.94258640000001], "geometry": {"coordinates": [-85.6418749, 41.94258640000001], "type": "Point"}, "id": "2030", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64187638947276, 41.94272255930541, -85.64187638947276, 41.94272255930541], "geometry": {"coordinates": [-85.64187638947276, 41.94272255930541], "type": "Point"}, "id": "2031", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64187794315056, 41.942858717928225, -85.64187794315056, 41.942858717928225], "geometry": {"coordinates": [-85.64187794315056, 41.942858717928225], "type": "Point"}, "id": "2032", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64187942997665, 41.942994876672884, -85.64187942997665, 41.942994876672884], "geometry": {"coordinates": [-85.64187942997665, 41.942994876672884], "type": "Point"}, "id": "2033", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188091426372, 41.943131035142464, -85.64188091426372, 41.943131035142464], "geometry": {"coordinates": [-85.64188091426372, 41.943131035142464], "type": "Point"}, "id": "2034", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188243926499, 41.943267193072145, -85.64188243926499, 41.943267193072145], "geometry": {"coordinates": [-85.64188243926499, 41.943267193072145], "type": "Point"}, "id": "2035", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188396676218, 41.9434033506958, -85.64188396676218, 41.9434033506958], "geometry": {"coordinates": [-85.64188396676218, 41.9434033506958], "type": "Point"}, "id": "2036", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188549425938, 41.9435395080287, -85.64188549425938, 41.9435395080287], "geometry": {"coordinates": [-85.64188549425938, 41.9435395080287], "type": "Point"}, "id": "2037", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188702175659, 41.943675665070835, -85.64188702175659, 41.943675665070835], "geometry": {"coordinates": [-85.64188702175659, 41.943675665070835], "type": "Point"}, "id": "2038", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188854925379, 41.94381182182221, -85.64188854925379, 41.94381182182221], "geometry": {"coordinates": [-85.64188854925379, 41.94381182182221], "type": "Point"}, "id": "2039", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.6418914954863, 41.94394796367507, -85.6418914954863, 41.94394796367507], "geometry": {"coordinates": [-85.6418914954863, 41.94394796367507], "type": "Point"}, "id": "2040", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64189503562548, 41.9440840991222, -85.64189503562548, 41.9440840991222], "geometry": {"coordinates": [-85.64189503562548, 41.9440840991222], "type": "Point"}, "id": "2041", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64189857576464, 41.94422023427865, -85.64189857576464, 41.94422023427865], "geometry": {"coordinates": [-85.64189857576464, 41.94422023427865], "type": "Point"}, "id": "2042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64190211590382, 41.94435636914442, -85.64190211590382, 41.94435636914442], "geometry": {"coordinates": [-85.64190211590382, 41.94435636914442], "type": "Point"}, "id": "2043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.641905656043, 41.94449250371953, -85.641905656043, 41.94449250371953], "geometry": {"coordinates": [-85.641905656043, 41.94449250371953], "type": "Point"}, "id": "2044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64190919618217, 41.94462863800398, -85.64190919618217, 41.94462863800398], "geometry": {"coordinates": [-85.64190919618217, 41.94462863800398], "type": "Point"}, "id": "2045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64191273632134, 41.94476477199773, -85.64191273632134, 41.94476477199773], "geometry": {"coordinates": [-85.64191273632134, 41.94476477199773], "type": "Point"}, "id": "2046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.6419162764605, 41.94490090570082, -85.6419162764605, 41.94490090570082], "geometry": {"coordinates": [-85.6419162764605, 41.94490090570082], "type": "Point"}, "id": "2047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64191981659968, 41.94503703911323, -85.64191981659968, 41.94503703911323], "geometry": {"coordinates": [-85.64191981659968, 41.94503703911323], "type": "Point"}, "id": "2048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64192296922302, 41.94517317701354, -85.64192296922302, 41.94517317701354], "geometry": {"coordinates": [-85.64192296922302, 41.94517317701354], "type": "Point"}, "id": "2049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64192549821703, 41.945309322313285, -85.64192549821703, 41.945309322313285], "geometry": {"coordinates": [-85.64192549821703, 41.945309322313285], "type": "Point"}, "id": "2050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64192802721101, 41.9454454673223, -85.64192802721101, 41.9454454673223], "geometry": {"coordinates": [-85.64192802721101, 41.9454454673223], "type": "Point"}, "id": "2051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64193055620503, 41.945581612040584, -85.64193055620503, 41.945581612040584], "geometry": {"coordinates": [-85.64193055620503, 41.945581612040584], "type": "Point"}, "id": "2052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64193308519901, 41.94571775646814, -85.64193308519901, 41.94571775646814], "geometry": {"coordinates": [-85.64193308519901, 41.94571775646814], "type": "Point"}, "id": "2053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64193561419303, 41.94585390060497, -85.64193561419303, 41.94585390060497], "geometry": {"coordinates": [-85.64193561419303, 41.94585390060497], "type": "Point"}, "id": "2054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64193814318702, 41.94599004445108, -85.64193814318702, 41.94599004445108], "geometry": {"coordinates": [-85.64193814318702, 41.94599004445108], "type": "Point"}, "id": "2055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194067218102, 41.94612618800645, -85.64194067218102, 41.94612618800645], "geometry": {"coordinates": [-85.64194067218102, 41.94612618800645], "type": "Point"}, "id": "2056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194320117502, 41.9462623312711, -85.64194320117502, 41.9462623312711], "geometry": {"coordinates": [-85.64194320117502, 41.9462623312711], "type": "Point"}, "id": "2057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194573016903, 41.94639847424503, -85.64194573016903, 41.94639847424503], "geometry": {"coordinates": [-85.64194573016903, 41.94639847424503], "type": "Point"}, "id": "2058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194649167666, 41.94653462798564, -85.64194649167666, 41.94653462798564], "geometry": {"coordinates": [-85.64194649167666, 41.94653462798564], "type": "Point"}, "id": "2059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194704207844, 41.946670782756165, -85.64194704207844, 41.946670782756165], "geometry": {"coordinates": [-85.64194704207844, 41.946670782756165], "type": "Point"}, "id": "2060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194759248024, 41.9468069372359, -85.64194759248024, 41.9468069372359], "geometry": {"coordinates": [-85.64194759248024, 41.9468069372359], "type": "Point"}, "id": "2061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194814288201, 41.94694309142486, -85.64194814288201, 41.94694309142486], "geometry": {"coordinates": [-85.64194814288201, 41.94694309142486], "type": "Point"}, "id": "2062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194869328378, 41.94707924532304, -85.64194869328378, 41.94707924532304], "geometry": {"coordinates": [-85.64194869328378, 41.94707924532304], "type": "Point"}, "id": "2063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194924368556, 41.94721539893043, -85.64194924368556, 41.94721539893043], "geometry": {"coordinates": [-85.64194924368556, 41.94721539893043], "type": "Point"}, "id": "2064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194979408734, 41.94735155224705, -85.64194979408734, 41.94735155224705], "geometry": {"coordinates": [-85.64194979408734, 41.94735155224705], "type": "Point"}, "id": "2065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64195174174446, 41.94748765295759, -85.64195174174446, 41.94748765295759], "geometry": {"coordinates": [-85.64195174174446, 41.94748765295759], "type": "Point"}, "id": "2066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.6383346, 41.944291199999995, -85.6383346, 41.944291199999995], "geometry": {"coordinates": [-85.6383346, 41.944291199999995], "type": "Point"}, "id": "2067", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63825309183544, 41.9444122242746, -85.63825309183544, 41.9444122242746], "geometry": {"coordinates": [-85.63825309183544, 41.9444122242746], "type": "Point"}, "id": "2068", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63817152364186, 41.94453322594276, -85.63817152364186, 41.94453322594276], "geometry": {"coordinates": [-85.63817152364186, 41.94453322594276], "type": "Point"}, "id": "2069", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63807246275655, 41.94464557430182, -85.63807246275655, 41.94464557430182], "geometry": {"coordinates": [-85.63807246275655, 41.94464557430182], "type": "Point"}, "id": "2070", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63794557386079, 41.944736357294076, -85.63794557386079, 41.944736357294076], "geometry": {"coordinates": [-85.63794557386079, 41.944736357294076], "type": "Point"}, "id": "2071", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.637927549127, 41.94486866638071, -85.637927549127, 41.94486866638071], "geometry": {"coordinates": [-85.637927549127, 41.94486866638071], "type": "Point"}, "id": "2072", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63792435347757, 41.945004004173256, -85.63792435347757, 41.945004004173256], "geometry": {"coordinates": [-85.63792435347757, 41.945004004173256], "type": "Point"}, "id": "2073", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63790449820465, 41.94513775119949, -85.63790449820465, 41.94513775119949], "geometry": {"coordinates": [-85.63790449820465, 41.94513775119949], "type": "Point"}, "id": "2074", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63779172777907, 41.945237892389464, -85.63779172777907, 41.945237892389464], "geometry": {"coordinates": [-85.63779172777907, 41.945237892389464], "type": "Point"}, "id": "2075", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63766119574662, 41.9453306673399, -85.63766119574662, 41.9453306673399], "geometry": {"coordinates": [-85.63766119574662, 41.9453306673399], "type": "Point"}, "id": "2076", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63758615447448, 41.94545398182533, -85.63758615447448, 41.94545398182533], "geometry": {"coordinates": [-85.63758615447448, 41.94545398182533], "type": "Point"}, "id": "2077", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63771276301593, 41.94554683942509, -85.63771276301593, 41.94554683942509], "geometry": {"coordinates": [-85.63771276301593, 41.94554683942509], "type": "Point"}, "id": "2078", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63789126430045, 41.94554235659345, -85.63789126430045, 41.94554235659345], "geometry": {"coordinates": [-85.63789126430045, 41.94554235659345], "type": "Point"}, "id": "2079", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63806966680049, 41.94552223907876, -85.63806966680049, 41.94552223907876], "geometry": {"coordinates": [-85.63806966680049, 41.94552223907876], "type": "Point"}, "id": "2080", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63822883514634, 41.945456616608396, -85.63822883514634, 41.945456616608396], "geometry": {"coordinates": [-85.63822883514634, 41.945456616608396], "type": "Point"}, "id": "2081", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63838822372097, 41.945391294105505, -85.63838822372097, 41.945391294105505], "geometry": {"coordinates": [-85.63838822372097, 41.945391294105505], "type": "Point"}, "id": "2082", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63854851186048, 41.945327197084964, -85.63854851186048, 41.945327197084964], "geometry": {"coordinates": [-85.63854851186048, 41.945327197084964], "type": "Point"}, "id": "2083", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972938}, "type": "Feature"}, {"bbox": [-85.63332989999999, 41.955927100000004, -85.63332989999999, 41.955927100000004], "geometry": {"coordinates": [-85.63332989999999, 41.955927100000004], "type": "Point"}, "id": "2084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63314329233062, 41.95592601320287, -85.63314329233062, 41.95592601320287], "geometry": {"coordinates": [-85.63314329233062, 41.95592601320287], "type": "Point"}, "id": "2085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63295668466125, 41.9559249264057, -85.63295668466125, 41.9559249264057], "geometry": {"coordinates": [-85.63295668466125, 41.9559249264057], "type": "Point"}, "id": "2086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63277007699186, 41.95592383960853, -85.63277007699186, 41.95592383960853], "geometry": {"coordinates": [-85.63277007699186, 41.95592383960853], "type": "Point"}, "id": "2087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.6325834693225, 41.95592275281135, -85.6325834693225, 41.95592275281135], "geometry": {"coordinates": [-85.6325834693225, 41.95592275281135], "type": "Point"}, "id": "2088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63239686165312, 41.955921666014135, -85.63239686165312, 41.955921666014135], "geometry": {"coordinates": [-85.63239686165312, 41.955921666014135], "type": "Point"}, "id": "2089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63221025398374, 41.9559205792169, -85.63221025398374, 41.9559205792169], "geometry": {"coordinates": [-85.63221025398374, 41.9559205792169], "type": "Point"}, "id": "2090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63202364629282, 41.955919494468084, -85.63202364629282, 41.955919494468084], "geometry": {"coordinates": [-85.63202364629282, 41.955919494468084], "type": "Point"}, "id": "2091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63183703857736, 41.95591841205678, -85.63183703857736, 41.95591841205678], "geometry": {"coordinates": [-85.63183703857736, 41.95591841205678], "type": "Point"}, "id": "2092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.6316504308619, 41.95591732964546, -85.6316504308619, 41.95591732964546], "geometry": {"coordinates": [-85.6316504308619, 41.95591732964546], "type": "Point"}, "id": "2093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.6314638231464, 41.95591624723413, -85.6314638231464, 41.95591624723413], "geometry": {"coordinates": [-85.6314638231464, 41.95591624723413], "type": "Point"}, "id": "2094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63127721543094, 41.95591516482276, -85.63127721543094, 41.95591516482276], "geometry": {"coordinates": [-85.63127721543094, 41.95591516482276], "type": "Point"}, "id": "2095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63109060771546, 41.9559140824114, -85.63109060771546, 41.9559140824114], "geometry": {"coordinates": [-85.63109060771546, 41.9559140824114], "type": "Point"}, "id": "2096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.6321351, 41.9581654, -85.6321351, 41.9581654], "geometry": {"coordinates": [-85.6321351, 41.9581654], "type": "Point"}, "id": "2097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 776693873}, "type": "Feature"}, {"bbox": [-85.6251435, 41.961477800000004, -85.6251435, 41.961477800000004], "geometry": {"coordinates": [-85.6251435, 41.961477800000004], "type": "Point"}, "id": "2098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968016}, "type": "Feature"}, {"bbox": [-85.62503270585798, 41.96134964744622, -85.62503270585798, 41.96134964744622], "geometry": {"coordinates": [-85.62503270585798, 41.96134964744622], "type": "Point"}, "id": "2099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968016}, "type": "Feature"}, {"bbox": [-85.62494863283227, 41.96121307440526, -85.62494863283227, 41.96121307440526], "geometry": {"coordinates": [-85.62494863283227, 41.96121307440526], "type": "Point"}, "id": "2100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968016}, "type": "Feature"}, {"bbox": [-85.62496773767555, 41.961063272242036, -85.62496773767555, 41.961063272242036], "geometry": {"coordinates": [-85.62496773767555, 41.961063272242036], "type": "Point"}, "id": "2101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968016}, "type": "Feature"}, {"bbox": [-85.61591419999999, 41.957757799999996, -85.61591419999999, 41.957757799999996], "geometry": {"coordinates": [-85.61591419999999, 41.957757799999996], "type": "Point"}, "id": "2102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61573962923315, 41.957789960034546, -85.61573962923315, 41.957789960034546], "geometry": {"coordinates": [-85.61573962923315, 41.957789960034546], "type": "Point"}, "id": "2103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61556505846629, 41.95782212005285, -85.61556505846629, 41.95782212005285], "geometry": {"coordinates": [-85.61556505846629, 41.95782212005285], "type": "Point"}, "id": "2104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.6154040232548, 41.957875412551076, -85.6154040232548, 41.957875412551076], "geometry": {"coordinates": [-85.6154040232548, 41.957875412551076], "type": "Point"}, "id": "2105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537006367809, 41.95800146306048, -85.61537006367809, 41.95800146306048], "geometry": {"coordinates": [-85.61537006367809, 41.95800146306048], "type": "Point"}, "id": "2106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537407782676, 41.95813517077555, -85.61537407782676, 41.95813517077555], "geometry": {"coordinates": [-85.61537407782676, 41.95813517077555], "type": "Point"}, "id": "2107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537809197542, 41.958268878210085, -85.61537809197542, 41.958268878210085], "geometry": {"coordinates": [-85.61537809197542, 41.958268878210085], "type": "Point"}, "id": "2108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537859999999, 41.958402614464326, -85.61537859999999, 41.958402614464326], "geometry": {"coordinates": [-85.61537859999999, 41.958402614464326], "type": "Point"}, "id": "2109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537859999999, 41.95853635465443, -85.61537859999999, 41.95853635465443], "geometry": {"coordinates": [-85.61537859999999, 41.95853635465443], "type": "Point"}, "id": "2110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537859999999, 41.95867009456385, -85.61537859999999, 41.95867009456385], "geometry": {"coordinates": [-85.61537859999999, 41.95867009456385], "type": "Point"}, "id": "2111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61538084192881, 41.9588038200303, -85.61538084192881, 41.9588038200303], "geometry": {"coordinates": [-85.61538084192881, 41.9588038200303], "type": "Point"}, "id": "2112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61538389728229, 41.95893754007772, -85.61538389728229, 41.95893754007772], "geometry": {"coordinates": [-85.61538389728229, 41.95893754007772], "type": "Point"}, "id": "2113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61538695263575, 41.95907125984455, -85.61538695263575, 41.95907125984455], "geometry": {"coordinates": [-85.61538695263575, 41.95907125984455], "type": "Point"}, "id": "2114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61539160300894, 41.959204906798796, -85.61539160300894, 41.959204906798796], "geometry": {"coordinates": [-85.61539160300894, 41.959204906798796], "type": "Point"}, "id": "2115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.6154104814787, 41.95933790646513, -85.6154104814787, 41.95933790646513], "geometry": {"coordinates": [-85.6154104814787, 41.95933790646513], "type": "Point"}, "id": "2116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61555747766022, 41.959381382100965, -85.61555747766022, 41.959381382100965], "geometry": {"coordinates": [-85.61555747766022, 41.959381382100965], "type": "Point"}, "id": "2117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.643102, 41.945102999999996, -85.643102, 41.945102999999996], "geometry": {"coordinates": [-85.643102, 41.945102999999996], "type": "Point"}, "id": "2118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64328198690713, 41.94510092482449, -85.64328198690713, 41.94510092482449], "geometry": {"coordinates": [-85.64328198690713, 41.94510092482449], "type": "Point"}, "id": "2119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64346197381424, 41.945098849648915, -85.64346197381424, 41.945098849648915], "geometry": {"coordinates": [-85.64346197381424, 41.945098849648915], "type": "Point"}, "id": "2120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64364196072137, 41.94509677447327, -85.64364196072137, 41.94509677447327], "geometry": {"coordinates": [-85.64364196072137, 41.94509677447327], "type": "Point"}, "id": "2121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64382194762848, 41.94509469929756, -85.64382194762848, 41.94509469929756], "geometry": {"coordinates": [-85.64382194762848, 41.94509469929756], "type": "Point"}, "id": "2122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.6440019345356, 41.94509262412179, -85.6440019345356, 41.94509262412179], "geometry": {"coordinates": [-85.6440019345356, 41.94509262412179], "type": "Point"}, "id": "2123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64418192144272, 41.94509054894594, -85.64418192144272, 41.94509054894594], "geometry": {"coordinates": [-85.64418192144272, 41.94509054894594], "type": "Point"}, "id": "2124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64436190834984, 41.945088473770035, -85.64436190834984, 41.945088473770035], "geometry": {"coordinates": [-85.64436190834984, 41.945088473770035], "type": "Point"}, "id": "2125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64454191023084, 41.94508748695718, -85.64454191023084, 41.94508748695718], "geometry": {"coordinates": [-85.64454191023084, 41.94508748695718], "type": "Point"}, "id": "2126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64472191654183, 41.94508682213254, -85.64472191654183, 41.94508682213254], "geometry": {"coordinates": [-85.64472191654183, 41.94508682213254], "type": "Point"}, "id": "2127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.6449019228528, 41.94508615730789, -85.6449019228528, 41.94508615730789], "geometry": {"coordinates": [-85.6449019228528, 41.94508615730789], "type": "Point"}, "id": "2128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64508192916375, 41.94508549248324, -85.64508192916375, 41.94508549248324], "geometry": {"coordinates": [-85.64508192916375, 41.94508549248324], "type": "Point"}, "id": "2129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64526193547472, 41.945084827658576, -85.64526193547472, 41.945084827658576], "geometry": {"coordinates": [-85.64526193547472, 41.945084827658576], "type": "Point"}, "id": "2130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64544194178512, 41.94508416274803, -85.64544194178512, 41.94508416274803], "geometry": {"coordinates": [-85.64544194178512, 41.94508416274803], "type": "Point"}, "id": "2131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64562194884704, 41.945083627004244, -85.64562194884704, 41.945083627004244], "geometry": {"coordinates": [-85.64562194884704, 41.945083627004244], "type": "Point"}, "id": "2132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64580195615255, 41.94508313312759, -85.64580195615255, 41.94508313312759], "geometry": {"coordinates": [-85.64580195615255, 41.94508313312759], "type": "Point"}, "id": "2133", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64598196345806, 41.945082639250934, -85.64598196345806, 41.945082639250934], "geometry": {"coordinates": [-85.64598196345806, 41.945082639250934], "type": "Point"}, "id": "2134", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64616197076356, 41.94508214537427, -85.64616197076356, 41.94508214537427], "geometry": {"coordinates": [-85.64616197076356, 41.94508214537427], "type": "Point"}, "id": "2135", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.6463419781887, 41.94508169976608, -85.6463419781887, 41.94508169976608], "geometry": {"coordinates": [-85.6463419781887, 41.94508169976608], "type": "Point"}, "id": "2136", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64651432399029, 41.945100293206224, -85.64651432399029, 41.945100293206224], "geometry": {"coordinates": [-85.64651432399029, 41.945100293206224], "type": "Point"}, "id": "2137", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.63325799999998, 41.949892999999996, -85.63325799999998, 41.949892999999996], "geometry": {"coordinates": [-85.63325799999998, 41.949892999999996], "type": "Point"}, "id": "2138", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63345942857143, 41.949890428571734, -85.63345942857143, 41.949890428571734], "geometry": {"coordinates": [-85.63345942857143, 41.949890428571734], "type": "Point"}, "id": "2139", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63366085714284, 41.94988785714337, -85.63366085714284, 41.94988785714337], "geometry": {"coordinates": [-85.63366085714284, 41.94988785714337], "type": "Point"}, "id": "2140", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63386228571427, 41.949885285714906, -85.63386228571427, 41.949885285714906], "geometry": {"coordinates": [-85.63386228571427, 41.949885285714906], "type": "Point"}, "id": "2141", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.6340637142857, 41.94988271428633, -85.6340637142857, 41.94988271428633], "geometry": {"coordinates": [-85.6340637142857, 41.94988271428633], "type": "Point"}, "id": "2142", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63426514285715, 41.94988014285766, -85.63426514285715, 41.94988014285766], "geometry": {"coordinates": [-85.63426514285715, 41.94988014285766], "type": "Point"}, "id": "2143", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63446657142856, 41.94987757142888, -85.63446657142856, 41.94987757142888], "geometry": {"coordinates": [-85.63446657142856, 41.94987757142888], "type": "Point"}, "id": "2144", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.641825, 41.94131600000001, -85.641825, 41.94131600000001], "geometry": {"coordinates": [-85.641825, 41.94131600000001], "type": "Point"}, "id": "2145", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.6418326431582, 41.941457104568684, -85.6418326431582, 41.941457104568684], "geometry": {"coordinates": [-85.6418326431582, 41.941457104568684], "type": "Point"}, "id": "2146", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64183951312982, 41.94159822807444, -85.64183951312982, 41.94159822807444], "geometry": {"coordinates": [-85.64183951312982, 41.94159822807444], "type": "Point"}, "id": "2147", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64184457152452, 41.94173939636898, -85.64184457152452, 41.94173939636898], "geometry": {"coordinates": [-85.64184457152452, 41.94173939636898], "type": "Point"}, "id": "2148", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64184962991918, 41.94188056435099, -85.64184962991918, 41.94188056435099], "geometry": {"coordinates": [-85.64184962991918, 41.94188056435099], "type": "Point"}, "id": "2149", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64185468831384, 41.942021732020464, -85.64185468831384, 41.942021732020464], "geometry": {"coordinates": [-85.64185468831384, 41.942021732020464], "type": "Point"}, "id": "2150", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.6418597467085, 41.942162899377394, -85.6418597467085, 41.942162899377394], "geometry": {"coordinates": [-85.6418597467085, 41.942162899377394], "type": "Point"}, "id": "2151", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64186480510318, 41.94230406642179, -85.64186480510318, 41.94230406642179], "geometry": {"coordinates": [-85.64186480510318, 41.94230406642179], "type": "Point"}, "id": "2152", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64186987197634, 41.94244523298511, -85.64186987197634, 41.94244523298511], "geometry": {"coordinates": [-85.64186987197634, 41.94244523298511], "type": "Point"}, "id": "2153", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.630935, 41.959037, -85.630935, 41.959037], "geometry": {"coordinates": [-85.630935, 41.959037], "type": "Point"}, "id": "2154", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63111747466718, 41.959035322072054, -85.63111747466718, 41.959035322072054], "geometry": {"coordinates": [-85.63111747466718, 41.959035322072054], "type": "Point"}, "id": "2155", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63129994933438, 41.959033644144064, -85.63129994933438, 41.959033644144064], "geometry": {"coordinates": [-85.63129994933438, 41.959033644144064], "type": "Point"}, "id": "2156", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63148242218291, 41.959031862094555, -85.63148242218291, 41.959031862094555], "geometry": {"coordinates": [-85.63148242218291, 41.959031862094555], "type": "Point"}, "id": "2157", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63166489389828, 41.95903001516757, -85.63166489389828, 41.95903001516757], "geometry": {"coordinates": [-85.63166489389828, 41.95903001516757], "type": "Point"}, "id": "2158", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63184736561364, 41.959028168240536, -85.63184736561364, 41.959028168240536], "geometry": {"coordinates": [-85.63184736561364, 41.959028168240536], "type": "Point"}, "id": "2159", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63202983732901, 41.95902632131345, -85.63202983732901, 41.95902632131345], "geometry": {"coordinates": [-85.63202983732901, 41.95902632131345], "type": "Point"}, "id": "2160", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63221231399504, 41.959024869865985, -85.63221231399504, 41.959024869865985], "geometry": {"coordinates": [-85.63221231399504, 41.959024869865985], "type": "Point"}, "id": "2161", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63239480032573, 41.9590241904679, -85.63239480032573, 41.9590241904679], "geometry": {"coordinates": [-85.63239480032573, 41.9590241904679], "type": "Point"}, "id": "2162", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.6325772866564, 41.959023511069795, -85.6325772866564, 41.959023511069795], "geometry": {"coordinates": [-85.6325772866564, 41.959023511069795], "type": "Point"}, "id": "2163", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63275977298709, 41.95902283167168, -85.63275977298709, 41.95902283167168], "geometry": {"coordinates": [-85.63275977298709, 41.95902283167168], "type": "Point"}, "id": "2164", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63294225931774, 41.95902215227357, -85.63294225931774, 41.95902215227357], "geometry": {"coordinates": [-85.63294225931774, 41.95902215227357], "type": "Point"}, "id": "2165", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63312474561361, 41.95902146772458, -85.63312474561361, 41.95902146772458], "geometry": {"coordinates": [-85.63312474561361, 41.95902146772458], "type": "Point"}, "id": "2166", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63330723190657, 41.959020782746244, -85.63330723190657, 41.959020782746244], "geometry": {"coordinates": [-85.63330723190657, 41.959020782746244], "type": "Point"}, "id": "2167", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63348971819953, 41.9590200977679, -85.63348971819953, 41.9590200977679], "geometry": {"coordinates": [-85.63348971819953, 41.9590200977679], "type": "Point"}, "id": "2168", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63367220449247, 41.959019412789544, -85.63367220449247, 41.959019412789544], "geometry": {"coordinates": [-85.63367220449247, 41.959019412789544], "type": "Point"}, "id": "2169", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63385469078544, 41.959018727811184, -85.63385469078544, 41.959018727811184], "geometry": {"coordinates": [-85.63385469078544, 41.959018727811184], "type": "Point"}, "id": "2170", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63403717707838, 41.95901804283281, -85.63403717707838, 41.95901804283281], "geometry": {"coordinates": [-85.63403717707838, 41.95901804283281], "type": "Point"}, "id": "2171", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63421966337134, 41.95901735785444, -85.63421966337134, 41.95901735785444], "geometry": {"coordinates": [-85.63421966337134, 41.95901735785444], "type": "Point"}, "id": "2172", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63440212609973, 41.95901545794521, -85.63440212609973, 41.95901545794521], "geometry": {"coordinates": [-85.63440212609973, 41.95901545794521], "type": "Point"}, "id": "2173", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63458456304986, 41.95901222897269, -85.63458456304986, 41.95901222897269], "geometry": {"coordinates": [-85.63458456304986, 41.95901222897269], "type": "Point"}, "id": "2174", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.6344047, 41.93954960000001, -85.6344047, 41.93954960000001], "geometry": {"coordinates": [-85.6344047, 41.93954960000001], "type": "Point"}, "id": "2175", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63442473621903, 41.93941367589305, -85.63442473621903, 41.93941367589305], "geometry": {"coordinates": [-85.63442473621903, 41.93941367589305], "type": "Point"}, "id": "2176", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63444477243807, 41.93927775149637, -85.63444477243807, 41.93927775149637], "geometry": {"coordinates": [-85.63444477243807, 41.93927775149637], "type": "Point"}, "id": "2177", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.6344648086571, 41.939141826809966, -85.6344648086571, 41.939141826809966], "geometry": {"coordinates": [-85.6344648086571, 41.939141826809966], "type": "Point"}, "id": "2178", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63448484487613, 41.93900590183384, -85.63448484487613, 41.93900590183384], "geometry": {"coordinates": [-85.63448484487613, 41.93900590183384], "type": "Point"}, "id": "2179", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63449394264288, 41.938869401158755, -85.63449394264288, 41.938869401158755], "geometry": {"coordinates": [-85.63449394264288, 41.938869401158755], "type": "Point"}, "id": "2180", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63449982190312, 41.93873273088398, -85.63449982190312, 41.93873273088398], "geometry": {"coordinates": [-85.63449982190312, 41.93873273088398], "type": "Point"}, "id": "2181", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63450570116339, 41.93859606031628, -85.63450570116339, 41.93859606031628], "geometry": {"coordinates": [-85.63450570116339, 41.93859606031628], "type": "Point"}, "id": "2182", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63451158042362, 41.93845938945568, -85.63451158042362, 41.93845938945568], "geometry": {"coordinates": [-85.63451158042362, 41.93845938945568], "type": "Point"}, "id": "2183", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63451745968388, 41.938322718302175, -85.63451745968388, 41.938322718302175], "geometry": {"coordinates": [-85.63451745968388, 41.938322718302175], "type": "Point"}, "id": "2184", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63453994862593, 41.93819340228717, -85.63453994862593, 41.93819340228717], "geometry": {"coordinates": [-85.63453994862593, 41.93819340228717], "type": "Point"}, "id": "2185", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63469864338508, 41.9381243877992, -85.63469864338508, 41.9381243877992], "geometry": {"coordinates": [-85.63469864338508, 41.9381243877992], "type": "Point"}, "id": "2186", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63485733424322, 41.938055368272124, -85.63485733424322, 41.938055368272124], "geometry": {"coordinates": [-85.63485733424322, 41.938055368272124], "type": "Point"}, "id": "2187", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63501602510136, 41.93798634867035, -85.63501602510136, 41.93798634867035], "geometry": {"coordinates": [-85.63501602510136, 41.93798634867035], "type": "Point"}, "id": "2188", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63508842948774, 41.93786480495363, -85.63508842948774, 41.93786480495363], "geometry": {"coordinates": [-85.63508842948774, 41.93786480495363], "type": "Point"}, "id": "2189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63514794255721, 41.93773542705297, -85.63514794255721, 41.93773542705297], "geometry": {"coordinates": [-85.63514794255721, 41.93773542705297], "type": "Point"}, "id": "2190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.6352074556267, 41.93760604888984, -85.6352074556267, 41.93760604888984], "geometry": {"coordinates": [-85.6352074556267, 41.93760604888984], "type": "Point"}, "id": "2191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63518778142412, 41.93747188349864, -85.63518778142412, 41.93747188349864], "geometry": {"coordinates": [-85.63518778142412, 41.93747188349864], "type": "Point"}, "id": "2192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63515713196865, 41.93733705435655, -85.63515713196865, 41.93733705435655], "geometry": {"coordinates": [-85.63515713196865, 41.93733705435655], "type": "Point"}, "id": "2193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63513861346523, 41.93720109370517, -85.63513861346523, 41.93720109370517], "geometry": {"coordinates": [-85.63513861346523, 41.93720109370517], "type": "Point"}, "id": "2194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63512353400765, 41.937064810761136, -85.63512353400765, 41.937064810761136], "geometry": {"coordinates": [-85.63512353400765, 41.937064810761136], "type": "Point"}, "id": "2195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63512091735025, 41.93692825785039, -85.63512091735025, 41.93692825785039], "geometry": {"coordinates": [-85.63512091735025, 41.93692825785039], "type": "Point"}, "id": "2196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.6351440230222, 41.9367936357061, -85.6351440230222, 41.9367936357061], "geometry": {"coordinates": [-85.6351440230222, 41.9367936357061], "type": "Point"}, "id": "2197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63519363821405, 41.93666196599848, -85.63519363821405, 41.93666196599848], "geometry": {"coordinates": [-85.63519363821405, 41.93666196599848], "type": "Point"}, "id": "2198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63524325340587, 41.936530296019036, -85.63524325340587, 41.936530296019036], "geometry": {"coordinates": [-85.63524325340587, 41.936530296019036], "type": "Point"}, "id": "2199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63530975505509, 41.936407351233974, -85.63530975505509, 41.936407351233974], "geometry": {"coordinates": [-85.63530975505509, 41.936407351233974], "type": "Point"}, "id": "2200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63545830337006, 41.936326800924384, -85.63545830337006, 41.936326800924384], "geometry": {"coordinates": [-85.63545830337006, 41.936326800924384], "type": "Point"}, "id": "2201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63560685168501, 41.93624625051306, -85.63560685168501, 41.93624625051306], "geometry": {"coordinates": [-85.63560685168501, 41.93624625051306], "type": "Point"}, "id": "2202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63674599999999, 41.92922099999999, -85.63674599999999, 41.92922099999999], "geometry": {"coordinates": [-85.63674599999999, 41.92922099999999], "type": "Point"}, "id": "2203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63678757155473, 41.92935218136161, -85.63678757155473, 41.92935218136161], "geometry": {"coordinates": [-85.63678757155473, 41.92935218136161], "type": "Point"}, "id": "2204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63683595460998, 41.92948205391423, -85.63683595460998, 41.92948205391423], "geometry": {"coordinates": [-85.63683595460998, 41.92948205391423], "type": "Point"}, "id": "2205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63688494990838, 41.929611808586294, -85.63688494990838, 41.929611808586294], "geometry": {"coordinates": [-85.63688494990838, 41.929611808586294], "type": "Point"}, "id": "2206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63693394520676, 41.92974156299441, -85.63693394520676, 41.92974156299441], "geometry": {"coordinates": [-85.63693394520676, 41.92974156299441], "type": "Point"}, "id": "2207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63698294050518, 41.92987131713861, -85.63698294050518, 41.92987131713861], "geometry": {"coordinates": [-85.63698294050518, 41.92987131713861], "type": "Point"}, "id": "2208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63703193580356, 41.93000107101888, -85.63703193580356, 41.93000107101888], "geometry": {"coordinates": [-85.63703193580356, 41.93000107101888], "type": "Point"}, "id": "2209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63708093110193, 41.93013082463522, -85.63708093110193, 41.93013082463522], "geometry": {"coordinates": [-85.63708093110193, 41.93013082463522], "type": "Point"}, "id": "2210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63712992640033, 41.93026057798764, -85.63712992640033, 41.93026057798764], "geometry": {"coordinates": [-85.63712992640033, 41.93026057798764], "type": "Point"}, "id": "2211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63717892169873, 41.93039033107611, -85.63717892169873, 41.93039033107611], "geometry": {"coordinates": [-85.63717892169873, 41.93039033107611], "type": "Point"}, "id": "2212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63722791699712, 41.93052008390066, -85.63722791699712, 41.93052008390066], "geometry": {"coordinates": [-85.63722791699712, 41.93052008390066], "type": "Point"}, "id": "2213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63727691229552, 41.930649836461285, -85.63727691229552, 41.930649836461285], "geometry": {"coordinates": [-85.63727691229552, 41.930649836461285], "type": "Point"}, "id": "2214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.6373259075939, 41.93077958875797, -85.6373259075939, 41.93077958875797], "geometry": {"coordinates": [-85.6373259075939, 41.93077958875797], "type": "Point"}, "id": "2215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.6373749028923, 41.930909340790734, -85.6373749028923, 41.930909340790734], "geometry": {"coordinates": [-85.6373749028923, 41.930909340790734], "type": "Point"}, "id": "2216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63742389819068, 41.931039092559566, -85.63742389819068, 41.931039092559566], "geometry": {"coordinates": [-85.63742389819068, 41.931039092559566], "type": "Point"}, "id": "2217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63747289424876, 41.93116884390567, -85.63747289424876, 41.93116884390567], "geometry": {"coordinates": [-85.63747289424876, 41.93116884390567], "type": "Point"}, "id": "2218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63752190732653, 41.93129859143019, -85.63752190732653, 41.93129859143019], "geometry": {"coordinates": [-85.63752190732653, 41.93129859143019], "type": "Point"}, "id": "2219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.6375709204043, 41.93142833869079, -85.6375709204043, 41.93142833869079], "geometry": {"coordinates": [-85.6375709204043, 41.93142833869079], "type": "Point"}, "id": "2220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63762248820684, 41.93155751844506, -85.63762248820684, 41.93155751844506], "geometry": {"coordinates": [-85.63762248820684, 41.93155751844506], "type": "Point"}, "id": "2221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63767394476402, 41.93168661146992, -85.63767394476402, 41.93168661146992], "geometry": {"coordinates": [-85.63767394476402, 41.93168661146992], "type": "Point"}, "id": "2222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63770734342756, 41.931819074030706, -85.63770734342756, 41.931819074030706], "geometry": {"coordinates": [-85.63770734342756, 41.931819074030706], "type": "Point"}, "id": "2223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63772728091195, 41.93195241489078, -85.63772728091195, 41.93195241489078], "geometry": {"coordinates": [-85.63772728091195, 41.93195241489078], "type": "Point"}, "id": "2224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63772539608942, 41.93208717975139, -85.63772539608942, 41.93208717975139], "geometry": {"coordinates": [-85.63772539608942, 41.93208717975139], "type": "Point"}, "id": "2225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63772448702707, 41.93222194434044, -85.63772448702707, 41.93222194434044], "geometry": {"coordinates": [-85.63772448702707, 41.93222194434044], "type": "Point"}, "id": "2226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.6377263652703, 41.932356708682434, -85.6377263652703, 41.932356708682434], "geometry": {"coordinates": [-85.6377263652703, 41.932356708682434], "type": "Point"}, "id": "2227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63772824351354, 41.932491472739684, -85.63772824351354, 41.932491472739684], "geometry": {"coordinates": [-85.63772824351354, 41.932491472739684], "type": "Point"}, "id": "2228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63773012175676, 41.9326262365122, -85.63773012175676, 41.9326262365122], "geometry": {"coordinates": [-85.63773012175676, 41.9326262365122], "type": "Point"}, "id": "2229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.62351099999998, 41.934216, -85.62351099999998, 41.934216], "geometry": {"coordinates": [-85.62351099999998, 41.934216], "type": "Point"}, "id": "2230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62369466315471, 41.934216289005754, -85.62369466315471, 41.934216289005754], "geometry": {"coordinates": [-85.62369466315471, 41.934216289005754], "type": "Point"}, "id": "2231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62387832630942, 41.9342165780115, -85.62387832630942, 41.9342165780115], "geometry": {"coordinates": [-85.62387832630942, 41.9342165780115], "type": "Point"}, "id": "2232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62406198946415, 41.934216867017255, -85.62406198946415, 41.934216867017255], "geometry": {"coordinates": [-85.62406198946415, 41.934216867017255], "type": "Point"}, "id": "2233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6242456526189, 41.93421715602302, -85.6242456526189, 41.93421715602302], "geometry": {"coordinates": [-85.6242456526189, 41.93421715602302], "type": "Point"}, "id": "2234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62442931577361, 41.93421744502875, -85.62442931577361, 41.93421744502875], "geometry": {"coordinates": [-85.62442931577361, 41.93421744502875], "type": "Point"}, "id": "2235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62461297892833, 41.934217734034505, -85.62461297892833, 41.934217734034505], "geometry": {"coordinates": [-85.62461297892833, 41.934217734034505], "type": "Point"}, "id": "2236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62479664185796, 41.93421793535603, -85.62479664185796, 41.93421793535603], "geometry": {"coordinates": [-85.62479664185796, 41.93421793535603], "type": "Point"}, "id": "2237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6249803021891, 41.934217124493664, -85.6249803021891, 41.934217124493664], "geometry": {"coordinates": [-85.6249803021891, 41.934217124493664], "type": "Point"}, "id": "2238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62516396252026, 41.93421631363128, -85.62516396252026, 41.93421631363128], "geometry": {"coordinates": [-85.62516396252026, 41.93421631363128], "type": "Point"}, "id": "2239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6253476228514, 41.93421550276889, -85.6253476228514, 41.93421550276889], "geometry": {"coordinates": [-85.6253476228514, 41.93421550276889], "type": "Point"}, "id": "2240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62553128318257, 41.93421469190649, -85.62553128318257, 41.93421469190649], "geometry": {"coordinates": [-85.62553128318257, 41.93421469190649], "type": "Point"}, "id": "2241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62571494314919, 41.934213841821034, -85.62571494314919, 41.934213841821034], "geometry": {"coordinates": [-85.62571494314919, 41.934213841821034], "type": "Point"}, "id": "2242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62589860099567, 41.934212763594964, -85.62589860099567, 41.934212763594964], "geometry": {"coordinates": [-85.62589860099567, 41.934212763594964], "type": "Point"}, "id": "2243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62608225884216, 41.934211685368865, -85.62608225884216, 41.934211685368865], "geometry": {"coordinates": [-85.62608225884216, 41.934211685368865], "type": "Point"}, "id": "2244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62626591668865, 41.934210607142745, -85.62626591668865, 41.934210607142745], "geometry": {"coordinates": [-85.62626591668865, 41.934210607142745], "type": "Point"}, "id": "2245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62644957455419, 41.9342095307193, -85.62644957455419, 41.9342095307193], "geometry": {"coordinates": [-85.62644957455419, 41.9342095307193], "type": "Point"}, "id": "2246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62663323247648, 41.934208459663296, -85.62663323247648, 41.934208459663296], "geometry": {"coordinates": [-85.62663323247648, 41.934208459663296], "type": "Point"}, "id": "2247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62681689039877, 41.93420738860727, -85.62681689039877, 41.93420738860727], "geometry": {"coordinates": [-85.62681689039877, 41.93420738860727], "type": "Point"}, "id": "2248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62700054832106, 41.93420631755124, -85.62700054832106, 41.93420631755124], "geometry": {"coordinates": [-85.62700054832106, 41.93420631755124], "type": "Point"}, "id": "2249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62718420369376, 41.934206965597326, -85.62718420369376, 41.934206965597326], "geometry": {"coordinates": [-85.62718420369376, 41.934206965597326], "type": "Point"}, "id": "2250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62736785799196, 41.934208338128485, -85.62736785799196, 41.934208338128485], "geometry": {"coordinates": [-85.62736785799196, 41.934208338128485], "type": "Point"}, "id": "2251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62755151229013, 41.93420971065963, -85.62755151229013, 41.93420971065963], "geometry": {"coordinates": [-85.62755151229013, 41.93420971065963], "type": "Point"}, "id": "2252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62773516658832, 41.93421108319074, -85.62773516658832, 41.93421108319074], "geometry": {"coordinates": [-85.62773516658832, 41.93421108319074], "type": "Point"}, "id": "2253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62791882081358, 41.934212461105396, -85.62791882081358, 41.934212461105396], "geometry": {"coordinates": [-85.62791882081358, 41.934212461105396], "type": "Point"}, "id": "2254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62810247497926, 41.93421384341403, -85.62810247497926, 41.93421384341403], "geometry": {"coordinates": [-85.62810247497926, 41.93421384341403], "type": "Point"}, "id": "2255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62828612914493, 41.934215225722625, -85.62828612914493, 41.934215225722625], "geometry": {"coordinates": [-85.62828612914493, 41.934215225722625], "type": "Point"}, "id": "2256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62846977251206, 41.9342148445096, -85.62846977251206, 41.9342148445096], "geometry": {"coordinates": [-85.62846977251206, 41.9342148445096], "type": "Point"}, "id": "2257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62865340212808, 41.93421221759777, -85.62865340212808, 41.93421221759777], "geometry": {"coordinates": [-85.62865340212808, 41.93421221759777], "type": "Point"}, "id": "2258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62883703174414, 41.934209590685846, -85.62883703174414, 41.934209590685846], "geometry": {"coordinates": [-85.62883703174414, 41.934209590685846], "type": "Point"}, "id": "2259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62902066136016, 41.93420696377382, -85.62902066136016, 41.93420696377382], "geometry": {"coordinates": [-85.62902066136016, 41.93420696377382], "type": "Point"}, "id": "2260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62920429124483, 41.934204347276335, -85.62920429124483, 41.934204347276335], "geometry": {"coordinates": [-85.62920429124483, 41.934204347276335], "type": "Point"}, "id": "2261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62938792115948, 41.934201731941236, -85.62938792115948, 41.934201731941236], "geometry": {"coordinates": [-85.62938792115948, 41.934201731941236], "type": "Point"}, "id": "2262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62957155107412, 41.93419911660602, -85.62957155107412, 41.93419911660602], "geometry": {"coordinates": [-85.62957155107412, 41.93419911660602], "type": "Point"}, "id": "2263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6297551876232, 41.93419682446136, -85.6297551876232, 41.93419682446136], "geometry": {"coordinates": [-85.6297551876232, 41.93419682446136], "type": "Point"}, "id": "2264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62993883926146, 41.93419526737182, -85.62993883926146, 41.93419526737182], "geometry": {"coordinates": [-85.62993883926146, 41.93419526737182], "type": "Point"}, "id": "2265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6301224908997, 41.93419371028224, -85.6301224908997, 41.93419371028224], "geometry": {"coordinates": [-85.6301224908997, 41.93419371028224], "type": "Point"}, "id": "2266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63030614253795, 41.93419215319262, -85.63030614253795, 41.93419215319262], "geometry": {"coordinates": [-85.63030614253795, 41.93419215319262], "type": "Point"}, "id": "2267", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63048980108852, 41.93419119750819, -85.63048980108852, 41.93419119750819], "geometry": {"coordinates": [-85.63048980108852, 41.93419119750819], "type": "Point"}, "id": "2268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63067346166697, 41.93419041826068, -85.63067346166697, 41.93419041826068], "geometry": {"coordinates": [-85.63067346166697, 41.93419041826068], "type": "Point"}, "id": "2269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63085712224542, 41.934189639013155, -85.63085712224542, 41.934189639013155], "geometry": {"coordinates": [-85.63085712224542, 41.934189639013155], "type": "Point"}, "id": "2270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63104076988786, 41.934188529461295, -85.63104076988786, 41.934188529461295], "geometry": {"coordinates": [-85.63104076988786, 41.934188529461295], "type": "Point"}, "id": "2271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63122417992524, 41.934181352975, -85.63122417992524, 41.934181352975], "geometry": {"coordinates": [-85.63122417992524, 41.934181352975], "type": "Point"}, "id": "2272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63140758996262, 41.93417417648791, -85.63140758996262, 41.93417417648791], "geometry": {"coordinates": [-85.63140758996262, 41.93417417648791], "type": "Point"}, "id": "2273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6304857, 41.95119449999999, -85.6304857, 41.95119449999999], "geometry": {"coordinates": [-85.6304857, 41.95119449999999], "type": "Point"}, "id": "2274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63067161708915, 41.95119576116738, -85.63067161708915, 41.95119576116738], "geometry": {"coordinates": [-85.63067161708915, 41.95119576116738], "type": "Point"}, "id": "2275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63085752910148, 41.95119655906989, -85.63085752910148, 41.95119655906989], "geometry": {"coordinates": [-85.63085752910148, 41.95119655906989], "type": "Point"}, "id": "2276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.6310433938528, 41.951193044369504, -85.6310433938528, 41.951193044369504], "geometry": {"coordinates": [-85.6310433938528, 41.951193044369504], "type": "Point"}, "id": "2277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63122925860418, 41.95118952966891, -85.63122925860418, 41.95118952966891], "geometry": {"coordinates": [-85.63122925860418, 41.95118952966891], "type": "Point"}, "id": "2278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63141512335551, 41.95118601496812, -85.63141512335551, 41.95118601496812], "geometry": {"coordinates": [-85.63141512335551, 41.95118601496812], "type": "Point"}, "id": "2279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63160098810685, 41.95118250026715, -85.63160098810685, 41.95118250026715], "geometry": {"coordinates": [-85.63160098810685, 41.95118250026715], "type": "Point"}, "id": "2280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63178685285821, 41.95117898556599, -85.63178685285821, 41.95117898556599], "geometry": {"coordinates": [-85.63178685285821, 41.95117898556599], "type": "Point"}, "id": "2281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63197271760954, 41.95117547086461, -85.63197271760954, 41.95117547086461], "geometry": {"coordinates": [-85.63197271760954, 41.95117547086461], "type": "Point"}, "id": "2282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63215860260581, 41.951172674671916, -85.63215860260581, 41.951172674671916], "geometry": {"coordinates": [-85.63215860260581, 41.951172674671916], "type": "Point"}, "id": "2283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63234450217152, 41.95117039556014, -85.63234450217152, 41.95117039556014], "geometry": {"coordinates": [-85.63234450217152, 41.95117039556014], "type": "Point"}, "id": "2284", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.6325304017372, 41.95116811644827, -85.6325304017372, 41.95116811644827], "geometry": {"coordinates": [-85.6325304017372, 41.95116811644827], "type": "Point"}, "id": "2285", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.6327163013029, 41.951165837336326, -85.6327163013029, 41.951165837336326], "geometry": {"coordinates": [-85.6327163013029, 41.951165837336326], "type": "Point"}, "id": "2286", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63290220086861, 41.951163558224295, -85.63290220086861, 41.951163558224295], "geometry": {"coordinates": [-85.63290220086861, 41.951163558224295], "type": "Point"}, "id": "2287", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63308810043429, 41.95116127911219, -85.63308810043429, 41.95116127911219], "geometry": {"coordinates": [-85.63308810043429, 41.95116127911219], "type": "Point"}, "id": "2288", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.644228, 41.932672, -85.644228, 41.932672], "geometry": {"coordinates": [-85.644228, 41.932672], "type": "Point"}, "id": "2289", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64422792824341, 41.93280870552756, -85.64422792824341, 41.93280870552756], "geometry": {"coordinates": [-85.64422792824341, 41.93280870552756], "type": "Point"}, "id": "2290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64422985092965, 41.93294540090325, -85.64422985092965, 41.93294540090325], "geometry": {"coordinates": [-85.64422985092965, 41.93294540090325], "type": "Point"}, "id": "2291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64423235022997, 41.93308209321901, -85.64423235022997, 41.93308209321901], "geometry": {"coordinates": [-85.64423235022997, 41.93308209321901], "type": "Point"}, "id": "2292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64423484953028, 41.93321878524183, -85.64423484953028, 41.93321878524183], "geometry": {"coordinates": [-85.64423484953028, 41.93321878524183], "type": "Point"}, "id": "2293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64423734883057, 41.933355476971705, -85.64423734883057, 41.933355476971705], "geometry": {"coordinates": [-85.64423734883057, 41.933355476971705], "type": "Point"}, "id": "2294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64423984813088, 41.93349216840864, -85.64423984813088, 41.93349216840864], "geometry": {"coordinates": [-85.64423984813088, 41.93349216840864], "type": "Point"}, "id": "2295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64424234743119, 41.933628859552634, -85.64424234743119, 41.933628859552634], "geometry": {"coordinates": [-85.64424234743119, 41.933628859552634], "type": "Point"}, "id": "2296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64424484673151, 41.933765550403685, -85.64424484673151, 41.933765550403685], "geometry": {"coordinates": [-85.64424484673151, 41.933765550403685], "type": "Point"}, "id": "2297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.6442473460318, 41.93390224096179, -85.6442473460318, 41.93390224096179], "geometry": {"coordinates": [-85.6442473460318, 41.93390224096179], "type": "Point"}, "id": "2298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64425255640833, 41.93403888645215, -85.64425255640833, 41.93403888645215], "geometry": {"coordinates": [-85.64425255640833, 41.93403888645215], "type": "Point"}, "id": "2299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64425821409773, 41.93417552426219, -85.64425821409773, 41.93417552426219], "geometry": {"coordinates": [-85.64425821409773, 41.93417552426219], "type": "Point"}, "id": "2300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64426387178716, 41.9343121617795, -85.64426387178716, 41.9343121617795], "geometry": {"coordinates": [-85.64426387178716, 41.9343121617795], "type": "Point"}, "id": "2301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64426952947659, 41.93444879900409, -85.64426952947659, 41.93444879900409], "geometry": {"coordinates": [-85.64426952947659, 41.93444879900409], "type": "Point"}, "id": "2302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64427518716599, 41.934585435935965, -85.64427518716599, 41.934585435935965], "geometry": {"coordinates": [-85.64427518716599, 41.934585435935965], "type": "Point"}, "id": "2303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64428084485542, 41.93472207257511, -85.64428084485542, 41.93472207257511], "geometry": {"coordinates": [-85.64428084485542, 41.93472207257511], "type": "Point"}, "id": "2304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64428650254483, 41.93485870892154, -85.64428650254483, 41.93485870892154], "geometry": {"coordinates": [-85.64428650254483, 41.93485870892154], "type": "Point"}, "id": "2305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429163365072, 41.93499535222804, -85.64429163365072, 41.93499535222804], "geometry": {"coordinates": [-85.64429163365072, 41.93499535222804], "type": "Point"}, "id": "2306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429277893245, 41.935132050139664, -85.64429277893245, 41.935132050139664], "geometry": {"coordinates": [-85.64429277893245, 41.935132050139664], "type": "Point"}, "id": "2307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429392421417, 41.9352687477583, -85.64429392421417, 41.9352687477583], "geometry": {"coordinates": [-85.64429392421417, 41.9352687477583], "type": "Point"}, "id": "2308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.6442950694959, 41.935405445083944, -85.6442950694959, 41.935405445083944], "geometry": {"coordinates": [-85.6442950694959, 41.935405445083944], "type": "Point"}, "id": "2309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429620500113, 41.935542142161495, -85.64429620500113, 41.935542142161495], "geometry": {"coordinates": [-85.64429620500113, 41.935542142161495], "type": "Point"}, "id": "2310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429732853199, 41.935678839001056, -85.64429732853199, 41.935678839001056], "geometry": {"coordinates": [-85.64429732853199, 41.935678839001056], "type": "Point"}, "id": "2311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429845206288, 41.93581553554761, -85.64429845206288, 41.93581553554761], "geometry": {"coordinates": [-85.64429845206288, 41.93581553554761], "type": "Point"}, "id": "2312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429957559378, 41.935952231801195, -85.64429957559378, 41.935952231801195], "geometry": {"coordinates": [-85.64429957559378, 41.935952231801195], "type": "Point"}, "id": "2313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64430069912466, 41.936088927761794, -85.64430069912466, 41.936088927761794], "geometry": {"coordinates": [-85.64430069912466, 41.936088927761794], "type": "Point"}, "id": "2314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64430182265555, 41.93622562342939, -85.64430182265555, 41.93622562342939], "geometry": {"coordinates": [-85.64430182265555, 41.93622562342939], "type": "Point"}, "id": "2315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.637685, 41.934223, -85.637685, 41.934223], "geometry": {"coordinates": [-85.637685, 41.934223], "type": "Point"}, "id": "2316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964970}, "type": "Feature"}, {"bbox": [-85.63747225, 41.934223, -85.63747225, 41.934223], "geometry": {"coordinates": [-85.63747225, 41.934223], "type": "Point"}, "id": "2317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964970}, "type": "Feature"}, {"bbox": [-85.6372595, 41.934223, -85.6372595, 41.934223], "geometry": {"coordinates": [-85.6372595, 41.934223], "type": "Point"}, "id": "2318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964970}, "type": "Feature"}, {"bbox": [-85.63704674999998, 41.934223, -85.63704674999998, 41.934223], "geometry": {"coordinates": [-85.63704674999998, 41.934223], "type": "Point"}, "id": "2319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964970}, "type": "Feature"}, {"bbox": [-85.627127, 41.940086, -85.627127, 41.940086], "geometry": {"coordinates": [-85.627127, 41.940086], "type": "Point"}, "id": "2320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62731313291931, 41.940082170520135, -85.62731313291931, 41.940082170520135], "geometry": {"coordinates": [-85.62731313291931, 41.940082170520135], "type": "Point"}, "id": "2321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62749937098955, 41.940082803982975, -85.62749937098955, 41.940082803982975], "geometry": {"coordinates": [-85.62749937098955, 41.940082803982975], "type": "Point"}, "id": "2322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62768560905981, 41.9400834374458, -85.62768560905981, 41.9400834374458], "geometry": {"coordinates": [-85.62768560905981, 41.9400834374458], "type": "Point"}, "id": "2323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62787184713005, 41.94008407090863, -85.62787184713005, 41.94008407090863], "geometry": {"coordinates": [-85.62787184713005, 41.94008407090863], "type": "Point"}, "id": "2324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62805808520031, 41.94008470437146, -85.62805808520031, 41.94008470437146], "geometry": {"coordinates": [-85.62805808520031, 41.94008470437146], "type": "Point"}, "id": "2325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62824432327054, 41.940085337834276, -85.62824432327054, 41.940085337834276], "geometry": {"coordinates": [-85.62824432327054, 41.940085337834276], "type": "Point"}, "id": "2326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62843056134076, 41.94008597129707, -85.62843056134076, 41.94008597129707], "geometry": {"coordinates": [-85.62843056134076, 41.94008597129707], "type": "Point"}, "id": "2327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62861679554139, 41.94008493835304, -85.62861679554139, 41.94008493835304], "geometry": {"coordinates": [-85.62861679554139, 41.94008493835304], "type": "Point"}, "id": "2328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62880302955834, 41.94008382631851, -85.62880302955834, 41.94008382631851], "geometry": {"coordinates": [-85.62880302955834, 41.94008382631851], "type": "Point"}, "id": "2329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62898926357529, 41.94008271428396, -85.62898926357529, 41.94008271428396], "geometry": {"coordinates": [-85.62898926357529, 41.94008271428396], "type": "Point"}, "id": "2330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62917549759223, 41.940081602249386, -85.62917549759223, 41.940081602249386], "geometry": {"coordinates": [-85.62917549759223, 41.940081602249386], "type": "Point"}, "id": "2331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62936173160918, 41.9400804902148, -85.62936173160918, 41.9400804902148], "geometry": {"coordinates": [-85.62936173160918, 41.9400804902148], "type": "Point"}, "id": "2332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62954796562612, 41.94007937818019, -85.62954796562612, 41.94007937818019], "geometry": {"coordinates": [-85.62954796562612, 41.94007937818019], "type": "Point"}, "id": "2333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.63711299999999, 41.9486, -85.63711299999999, 41.9486], "geometry": {"coordinates": [-85.63711299999999, 41.9486], "type": "Point"}, "id": "2334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63719766430333, 41.94871804528692, -85.63719766430333, 41.94871804528692], "geometry": {"coordinates": [-85.63719766430333, 41.94871804528692], "type": "Point"}, "id": "2335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63728232860666, 41.94883609035525, -85.63728232860666, 41.94883609035525], "geometry": {"coordinates": [-85.63728232860666, 41.94883609035525], "type": "Point"}, "id": "2336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63736699290999, 41.948954135204986, -85.63736699290999, 41.948954135204986], "geometry": {"coordinates": [-85.63736699290999, 41.948954135204986], "type": "Point"}, "id": "2337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63739713131886, 41.949082561696926, -85.63739713131886, 41.949082561696926], "geometry": {"coordinates": [-85.63739713131886, 41.949082561696926], "type": "Point"}, "id": "2338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63739914923522, 41.94921634212775, -85.63739914923522, 41.94921634212775], "geometry": {"coordinates": [-85.63739914923522, 41.94921634212775], "type": "Point"}, "id": "2339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374011671516, 41.949350122277814, -85.6374011671516, 41.949350122277814], "geometry": {"coordinates": [-85.6374011671516, 41.949350122277814], "type": "Point"}, "id": "2340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374032240736, 41.94948390181849, -85.6374032240736, 41.94948390181849], "geometry": {"coordinates": [-85.6374032240736, 41.94948390181849], "type": "Point"}, "id": "2341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740528164107, 41.94961768107297, -85.63740528164107, 41.94961768107297], "geometry": {"coordinates": [-85.63740528164107, 41.94961768107297], "type": "Point"}, "id": "2342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740732741705, 41.949751460146096, -85.63740732741705, 41.949751460146096], "geometry": {"coordinates": [-85.63740732741705, 41.949751460146096], "type": "Point"}, "id": "2343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740922163683, 41.94988523975957, -85.63740922163683, 41.94988523975957], "geometry": {"coordinates": [-85.63740922163683, 41.94988523975957], "type": "Point"}, "id": "2344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740951884428, 41.95001902674119, -85.63740951884428, 41.95001902674119], "geometry": {"coordinates": [-85.63740951884428, 41.95001902674119], "type": "Point"}, "id": "2345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740981605176, 41.95015281344202, -85.63740981605176, 41.95015281344202], "geometry": {"coordinates": [-85.63740981605176, 41.95015281344202], "type": "Point"}, "id": "2346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741011325924, 41.950286599862046, -85.63741011325924, 41.950286599862046], "geometry": {"coordinates": [-85.63741011325924, 41.950286599862046], "type": "Point"}, "id": "2347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741041046669, 41.95042038600129, -85.63741041046669, 41.95042038600129], "geometry": {"coordinates": [-85.63741041046669, 41.95042038600129], "type": "Point"}, "id": "2348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741070767418, 41.95055417185976, -85.63741070767418, 41.95055417185976], "geometry": {"coordinates": [-85.63741070767418, 41.95055417185976], "type": "Point"}, "id": "2349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741100488163, 41.95068795743742, -85.63741100488163, 41.95068795743742], "geometry": {"coordinates": [-85.63741100488163, 41.95068795743742], "type": "Point"}, "id": "2350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374113020891, 41.9508217427343, -85.6374113020891, 41.9508217427343], "geometry": {"coordinates": [-85.6374113020891, 41.9508217427343], "type": "Point"}, "id": "2351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741159929658, 41.9509555277504, -85.63741159929658, 41.9509555277504], "geometry": {"coordinates": [-85.63741159929658, 41.9509555277504], "type": "Point"}, "id": "2352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741189650403, 41.9510893124857, -85.63741189650403, 41.9510893124857], "geometry": {"coordinates": [-85.63741189650403, 41.9510893124857], "type": "Point"}, "id": "2353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741338057491, 41.95122309101395, -85.63741338057491, 41.95122309101395], "geometry": {"coordinates": [-85.63741338057491, 41.95122309101395], "type": "Point"}, "id": "2354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374154987616, 41.951356866095175, -85.6374154987616, 41.951356866095175], "geometry": {"coordinates": [-85.6374154987616, 41.951356866095175], "type": "Point"}, "id": "2355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741761694826, 41.95149064089565, -85.63741761694826, 41.95149064089565], "geometry": {"coordinates": [-85.63741761694826, 41.95149064089565], "type": "Point"}, "id": "2356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741973513493, 41.95162441541537, -85.63741973513493, 41.95162441541537], "geometry": {"coordinates": [-85.63741973513493, 41.95162441541537], "type": "Point"}, "id": "2357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374218533216, 41.95175818965433, -85.6374218533216, 41.95175818965433], "geometry": {"coordinates": [-85.6374218533216, 41.95175818965433], "type": "Point"}, "id": "2358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63742397150827, 41.951891963612546, -85.63742397150827, 41.951891963612546], "geometry": {"coordinates": [-85.63742397150827, 41.951891963612546], "type": "Point"}, "id": "2359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63742608969493, 41.952025737290015, -85.63742608969493, 41.952025737290015], "geometry": {"coordinates": [-85.63742608969493, 41.952025737290015], "type": "Point"}, "id": "2360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63742820788161, 41.95215951068671, -85.63742820788161, 41.95215951068671], "geometry": {"coordinates": [-85.63742820788161, 41.95215951068671], "type": "Point"}, "id": "2361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743032606827, 41.95229328380268, -85.63743032606827, 41.95229328380268], "geometry": {"coordinates": [-85.63743032606827, 41.95229328380268], "type": "Point"}, "id": "2362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743244322866, 41.95242705664686, -85.63743244322866, 41.95242705664686], "geometry": {"coordinates": [-85.63743244322866, 41.95242705664686], "type": "Point"}, "id": "2363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743455652198, 41.95256082924411, -85.63743455652198, 41.95256082924411], "geometry": {"coordinates": [-85.63743455652198, 41.95256082924411], "type": "Point"}, "id": "2364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743666981532, 41.952694601560616, -85.63743666981532, 41.952694601560616], "geometry": {"coordinates": [-85.63743666981532, 41.952694601560616], "type": "Point"}, "id": "2365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743878310865, 41.95282837359637, -85.63743878310865, 41.95282837359637], "geometry": {"coordinates": [-85.63743878310865, 41.95282837359637], "type": "Point"}, "id": "2366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.637440896402, 41.952962145351364, -85.637440896402, 41.952962145351364], "geometry": {"coordinates": [-85.637440896402, 41.952962145351364], "type": "Point"}, "id": "2367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63744300969533, 41.9530959168256, -85.63744300969533, 41.9530959168256], "geometry": {"coordinates": [-85.63744300969533, 41.9530959168256], "type": "Point"}, "id": "2368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63744512298865, 41.95322968801909, -85.63744512298865, 41.95322968801909], "geometry": {"coordinates": [-85.63744512298865, 41.95322968801909], "type": "Point"}, "id": "2369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63744723628199, 41.953363458931825, -85.63744723628199, 41.953363458931825], "geometry": {"coordinates": [-85.63744723628199, 41.953363458931825], "type": "Point"}, "id": "2370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63744934957532, 41.9534972295638, -85.63744934957532, 41.9534972295638], "geometry": {"coordinates": [-85.63744934957532, 41.9534972295638], "type": "Point"}, "id": "2371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745146286865, 41.953630999915035, -85.63745146286865, 41.953630999915035], "geometry": {"coordinates": [-85.63745146286865, 41.953630999915035], "type": "Point"}, "id": "2372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745280003687, 41.95376477509703, -85.63745280003687, 41.95376477509703], "geometry": {"coordinates": [-85.63745280003687, 41.95376477509703], "type": "Point"}, "id": "2373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745387271379, 41.95389855174019, -85.63745387271379, 41.95389855174019], "geometry": {"coordinates": [-85.63745387271379, 41.95389855174019], "type": "Point"}, "id": "2374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745494539073, 41.95403232810257, -85.63745494539073, 41.95403232810257], "geometry": {"coordinates": [-85.63745494539073, 41.95403232810257], "type": "Point"}, "id": "2375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745601806765, 41.954166104184154, -85.63745601806765, 41.954166104184154], "geometry": {"coordinates": [-85.63745601806765, 41.954166104184154], "type": "Point"}, "id": "2376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745709074458, 41.954299879984966, -85.63745709074458, 41.954299879984966], "geometry": {"coordinates": [-85.63745709074458, 41.954299879984966], "type": "Point"}, "id": "2377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745816342151, 41.95443365550498, -85.63745816342151, 41.95443365550498], "geometry": {"coordinates": [-85.63745816342151, 41.95443365550498], "type": "Point"}, "id": "2378", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745923609845, 41.95456743074422, -85.63745923609845, 41.95456743074422], "geometry": {"coordinates": [-85.63745923609845, 41.95456743074422], "type": "Point"}, "id": "2379", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746044256115, 41.9547012050455, -85.63746044256115, 41.9547012050455], "geometry": {"coordinates": [-85.63746044256115, 41.9547012050455], "type": "Point"}, "id": "2380", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746181892355, 41.954834978185765, -85.63746181892355, 41.954834978185765], "geometry": {"coordinates": [-85.63746181892355, 41.954834978185765], "type": "Point"}, "id": "2381", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746319743342, 41.95496875103304, -85.63746319743342, 41.95496875103304], "geometry": {"coordinates": [-85.63746319743342, 41.95496875103304], "type": "Point"}, "id": "2382", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746457594327, 41.95510252359955, -85.63746457594327, 41.95510252359955], "geometry": {"coordinates": [-85.63746457594327, 41.95510252359955], "type": "Point"}, "id": "2383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746595445313, 41.95523629588527, -85.63746595445313, 41.95523629588527], "geometry": {"coordinates": [-85.63746595445313, 41.95523629588527], "type": "Point"}, "id": "2384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.637467332963, 41.95537006789022, -85.637467332963, 41.95537006789022], "geometry": {"coordinates": [-85.637467332963, 41.95537006789022], "type": "Point"}, "id": "2385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746871147286, 41.95550383961439, -85.63746871147286, 41.95550383961439], "geometry": {"coordinates": [-85.63746871147286, 41.95550383961439], "type": "Point"}, "id": "2386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747008998271, 41.955637611057774, -85.63747008998271, 41.955637611057774], "geometry": {"coordinates": [-85.63747008998271, 41.955637611057774], "type": "Point"}, "id": "2387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747146849256, 41.955771382220384, -85.63747146849256, 41.955771382220384], "geometry": {"coordinates": [-85.63747146849256, 41.955771382220384], "type": "Point"}, "id": "2388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747284700244, 41.955905153102215, -85.63747284700244, 41.955905153102215], "geometry": {"coordinates": [-85.63747284700244, 41.955905153102215], "type": "Point"}, "id": "2389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747239834923, 41.956038926353656, -85.63747239834923, 41.956038926353656], "geometry": {"coordinates": [-85.63747239834923, 41.956038926353656], "type": "Point"}, "id": "2390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747171301063, 41.95617269963091, -85.63747171301063, 41.95617269963091], "geometry": {"coordinates": [-85.63747171301063, 41.95617269963091], "type": "Point"}, "id": "2391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747102091088, 41.95630647260826, -85.63747102091088, 41.95630647260826], "geometry": {"coordinates": [-85.63747102091088, 41.95630647260826], "type": "Point"}, "id": "2392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747033960612, 41.95644024533526, -85.63747033960612, 41.95644024533526], "geometry": {"coordinates": [-85.63747033960612, 41.95644024533526], "type": "Point"}, "id": "2393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746966763416, 41.95657401780777, -85.63746966763416, 41.95657401780777], "geometry": {"coordinates": [-85.63746966763416, 41.95657401780777], "type": "Point"}, "id": "2394", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746899566218, 41.956707789999484, -85.63746899566218, 41.956707789999484], "geometry": {"coordinates": [-85.63746899566218, 41.956707789999484], "type": "Point"}, "id": "2395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374683236902, 41.956841561910416, -85.6374683236902, 41.956841561910416], "geometry": {"coordinates": [-85.6374683236902, 41.956841561910416], "type": "Point"}, "id": "2396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746873913772, 41.95697533184551, -85.63746873913772, 41.95697533184551], "geometry": {"coordinates": [-85.63746873913772, 41.95697533184551], "type": "Point"}, "id": "2397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747016522393, 41.957109099924466, -85.63747016522393, 41.957109099924466], "geometry": {"coordinates": [-85.63747016522393, 41.957109099924466], "type": "Point"}, "id": "2398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747159131017, 41.95724286772265, -85.63747159131017, 41.95724286772265], "geometry": {"coordinates": [-85.63747159131017, 41.95724286772265], "type": "Point"}, "id": "2399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374730173964, 41.957376635240045, -85.6374730173964, 41.957376635240045], "geometry": {"coordinates": [-85.6374730173964, 41.957376635240045], "type": "Point"}, "id": "2400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747444348262, 41.957510402476665, -85.63747444348262, 41.957510402476665], "geometry": {"coordinates": [-85.63747444348262, 41.957510402476665], "type": "Point"}, "id": "2401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747586956885, 41.9576441694325, -85.63747586956885, 41.9576441694325], "geometry": {"coordinates": [-85.63747586956885, 41.9576441694325], "type": "Point"}, "id": "2402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747729565509, 41.95777793610756, -85.63747729565509, 41.95777793610756], "geometry": {"coordinates": [-85.63747729565509, 41.95777793610756], "type": "Point"}, "id": "2403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374787217413, 41.95791170250184, -85.6374787217413, 41.95791170250184], "geometry": {"coordinates": [-85.6374787217413, 41.95791170250184], "type": "Point"}, "id": "2404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63748014782755, 41.958045468615346, -85.63748014782755, 41.958045468615346], "geometry": {"coordinates": [-85.63748014782755, 41.958045468615346], "type": "Point"}, "id": "2405", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63748157391376, 41.95817923444807, -85.63748157391376, 41.95817923444807], "geometry": {"coordinates": [-85.63748157391376, 41.95817923444807], "type": "Point"}, "id": "2406", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.64436079999999, 41.9425645, -85.64436079999999, 41.9425645], "geometry": {"coordinates": [-85.64436079999999, 41.9425645], "type": "Point"}, "id": "2407", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64436292147803, 41.942698137631005, -85.64436292147803, 41.942698137631005], "geometry": {"coordinates": [-85.64436292147803, 41.942698137631005], "type": "Point"}, "id": "2408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64436505753291, 41.94283177485368, -85.64436505753291, 41.94283177485368], "geometry": {"coordinates": [-85.64436505753291, 41.94283177485368], "type": "Point"}, "id": "2409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64436719358777, 41.94296541179626, -85.64436719358777, 41.94296541179626], "geometry": {"coordinates": [-85.64436719358777, 41.94296541179626], "type": "Point"}, "id": "2410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64436932964264, 41.943099048458755, -85.64436932964264, 41.943099048458755], "geometry": {"coordinates": [-85.64436932964264, 41.943099048458755], "type": "Point"}, "id": "2411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64437146227691, 41.94323268487136, -85.64437146227691, 41.94323268487136], "geometry": {"coordinates": [-85.64437146227691, 41.94323268487136], "type": "Point"}, "id": "2412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64437359255895, 41.943366321024655, -85.64437359255895, 41.943366321024655], "geometry": {"coordinates": [-85.64437359255895, 41.943366321024655], "type": "Point"}, "id": "2413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.644375722841, 41.94349995689786, -85.644375722841, 41.94349995689786], "geometry": {"coordinates": [-85.644375722841, 41.94349995689786], "type": "Point"}, "id": "2414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64437785312305, 41.94363359249097, -85.64437785312305, 41.94363359249097], "geometry": {"coordinates": [-85.64437785312305, 41.94363359249097], "type": "Point"}, "id": "2415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6443799834051, 41.94376722780399, -85.6443799834051, 41.94376722780399], "geometry": {"coordinates": [-85.6443799834051, 41.94376722780399], "type": "Point"}, "id": "2416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64438222270954, 41.94390086182836, -85.64438222270954, 41.94390086182836], "geometry": {"coordinates": [-85.64438222270954, 41.94390086182836], "type": "Point"}, "id": "2417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6443845615317, 41.94403449465201, -85.6443845615317, 41.94403449465201], "geometry": {"coordinates": [-85.6443845615317, 41.94403449465201], "type": "Point"}, "id": "2418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64438690035385, 41.94416812719559, -85.64438690035385, 41.94416812719559], "geometry": {"coordinates": [-85.64438690035385, 41.94416812719559], "type": "Point"}, "id": "2419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.644389239176, 41.94430175945907, -85.644389239176, 41.94430175945907], "geometry": {"coordinates": [-85.644389239176, 41.94430175945907], "type": "Point"}, "id": "2420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64439157799815, 41.944435391442475, -85.64439157799815, 41.944435391442475], "geometry": {"coordinates": [-85.64439157799815, 41.944435391442475], "type": "Point"}, "id": "2421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6443939168203, 41.944569023145796, -85.6443939168203, 41.944569023145796], "geometry": {"coordinates": [-85.6443939168203, 41.944569023145796], "type": "Point"}, "id": "2422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64439625564245, 41.94470265456903, -85.64439625564245, 41.94470265456903], "geometry": {"coordinates": [-85.64439625564245, 41.94470265456903], "type": "Point"}, "id": "2423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64439859446459, 41.94483628571219, -85.64439859446459, 41.94483628571219], "geometry": {"coordinates": [-85.64439859446459, 41.94483628571219], "type": "Point"}, "id": "2424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64440093328675, 41.94496991657525, -85.64440093328675, 41.94496991657525], "geometry": {"coordinates": [-85.64440093328675, 41.94496991657525], "type": "Point"}, "id": "2425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6444031708136, 41.94510354795646, -85.6444031708136, 41.94510354795646], "geometry": {"coordinates": [-85.6444031708136, 41.94510354795646], "type": "Point"}, "id": "2426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6444046389856, 41.94523718512014, -85.6444046389856, 41.94523718512014], "geometry": {"coordinates": [-85.6444046389856, 41.94523718512014], "type": "Point"}, "id": "2427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64440610715762, 41.94537082200372, -85.64440610715762, 41.94537082200372], "geometry": {"coordinates": [-85.64440610715762, 41.94537082200372], "type": "Point"}, "id": "2428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64440757532964, 41.94550445860717, -85.64440757532964, 41.94550445860717], "geometry": {"coordinates": [-85.64440757532964, 41.94550445860717], "type": "Point"}, "id": "2429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64440904350165, 41.945638094930516, -85.64440904350165, 41.945638094930516], "geometry": {"coordinates": [-85.64440904350165, 41.945638094930516], "type": "Point"}, "id": "2430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441051167364, 41.945771730973746, -85.64441051167364, 41.945771730973746], "geometry": {"coordinates": [-85.64441051167364, 41.945771730973746], "type": "Point"}, "id": "2431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441197984566, 41.94590536673686, -85.64441197984566, 41.94590536673686], "geometry": {"coordinates": [-85.64441197984566, 41.94590536673686], "type": "Point"}, "id": "2432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441344801766, 41.94603900221987, -85.64441344801766, 41.94603900221987], "geometry": {"coordinates": [-85.64441344801766, 41.94603900221987], "type": "Point"}, "id": "2433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441491618967, 41.946172637422755, -85.64441491618967, 41.946172637422755], "geometry": {"coordinates": [-85.64441491618967, 41.946172637422755], "type": "Point"}, "id": "2434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441638436169, 41.94630627234554, -85.64441638436169, 41.94630627234554], "geometry": {"coordinates": [-85.64441638436169, 41.94630627234554], "type": "Point"}, "id": "2435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441771779711, 41.94643990775541, -85.64441771779711, 41.94643990775541], "geometry": {"coordinates": [-85.64441771779711, 41.94643990775541], "type": "Point"}, "id": "2436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441898148021, 41.946573543274205, -85.64441898148021, 41.946573543274205], "geometry": {"coordinates": [-85.64441898148021, 41.946573543274205], "type": "Point"}, "id": "2437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442024516333, 41.94670717851289, -85.64442024516333, 41.94670717851289], "geometry": {"coordinates": [-85.64442024516333, 41.94670717851289], "type": "Point"}, "id": "2438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442150884642, 41.946840813471454, -85.64442150884642, 41.946840813471454], "geometry": {"coordinates": [-85.64442150884642, 41.946840813471454], "type": "Point"}, "id": "2439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442277252951, 41.94697444814989, -85.64442277252951, 41.94697444814989], "geometry": {"coordinates": [-85.64442277252951, 41.94697444814989], "type": "Point"}, "id": "2440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442403621261, 41.94710808254821, -85.64442403621261, 41.94710808254821], "geometry": {"coordinates": [-85.64442403621261, 41.94710808254821], "type": "Point"}, "id": "2441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442529989573, 41.94724171666642, -85.64442529989573, 41.94724171666642], "geometry": {"coordinates": [-85.64442529989573, 41.94724171666642], "type": "Point"}, "id": "2442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442656357883, 41.9473753505045, -85.64442656357883, 41.9473753505045], "geometry": {"coordinates": [-85.64442656357883, 41.9473753505045], "type": "Point"}, "id": "2443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442782726192, 41.94750898406246, -85.64442782726192, 41.94750898406246], "geometry": {"coordinates": [-85.64442782726192, 41.94750898406246], "type": "Point"}, "id": "2444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442921994883, 41.947642616186805, -85.64442921994883, 41.947642616186805], "geometry": {"coordinates": [-85.64442921994883, 41.947642616186805], "type": "Point"}, "id": "2445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64443227614248, 41.947776233156674, -85.64443227614248, 41.947776233156674], "geometry": {"coordinates": [-85.64443227614248, 41.947776233156674], "type": "Point"}, "id": "2446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64443533233613, 41.94790984984651, -85.64443533233613, 41.94790984984651], "geometry": {"coordinates": [-85.64443533233613, 41.94790984984651], "type": "Point"}, "id": "2447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.644438402929, 41.94804346607341, -85.644438402929, 41.94804346607341], "geometry": {"coordinates": [-85.644438402929, 41.94804346607341], "type": "Point"}, "id": "2448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6444414824248, 41.94817708190718, -85.6444414824248, 41.94817708190718], "geometry": {"coordinates": [-85.6444414824248, 41.94817708190718], "type": "Point"}, "id": "2449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64444455827048, 41.9483106975074, -85.64444455827048, 41.9483106975074], "geometry": {"coordinates": [-85.64444455827048, 41.9483106975074], "type": "Point"}, "id": "2450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64444763354358, 41.948444312834866, -85.64444763354358, 41.948444312834866], "geometry": {"coordinates": [-85.64444763354358, 41.948444312834866], "type": "Point"}, "id": "2451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64445070821806, 41.94857792788987, -85.64445070821806, 41.94857792788987], "geometry": {"coordinates": [-85.64445070821806, 41.94857792788987], "type": "Point"}, "id": "2452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64445376657444, 41.948711542872, -85.64445376657444, 41.948711542872], "geometry": {"coordinates": [-85.64445376657444, 41.948711542872], "type": "Point"}, "id": "2453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64445682493083, 41.94884515757408, -85.64445682493083, 41.94884515757408], "geometry": {"coordinates": [-85.64445682493083, 41.94884515757408], "type": "Point"}, "id": "2454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64445988328721, 41.9489787719961, -85.64445988328721, 41.9489787719961], "geometry": {"coordinates": [-85.64445988328721, 41.9489787719961], "type": "Point"}, "id": "2455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6444629416436, 41.94911238613808, -85.6444629416436, 41.94911238613808], "geometry": {"coordinates": [-85.6444629416436, 41.94911238613808], "type": "Point"}, "id": "2456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.643056, 41.94001, -85.643056, 41.94001], "geometry": {"coordinates": [-85.643056, 41.94001], "type": "Point"}, "id": "2457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.6430575941821, 41.940145032635726, -85.6430575941821, 41.940145032635726], "geometry": {"coordinates": [-85.6430575941821, 41.940145032635726], "type": "Point"}, "id": "2458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64305918836418, 41.94028006498552, -85.64305918836418, 41.94028006498552], "geometry": {"coordinates": [-85.64305918836418, 41.94028006498552], "type": "Point"}, "id": "2459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306078254627, 41.94041509704937, -85.64306078254627, 41.94041509704937], "geometry": {"coordinates": [-85.64306078254627, 41.94041509704937], "type": "Point"}, "id": "2460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306237672835, 41.940550128827276, -85.64306237672835, 41.940550128827276], "geometry": {"coordinates": [-85.64306237672835, 41.940550128827276], "type": "Point"}, "id": "2461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306396389784, 41.94068516036495, -85.64306396389784, 41.94068516036495], "geometry": {"coordinates": [-85.64306396389784, 41.94068516036495], "type": "Point"}, "id": "2462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306555096344, 41.94082019161735, -85.64306555096344, 41.94082019161735], "geometry": {"coordinates": [-85.64306555096344, 41.94082019161735], "type": "Point"}, "id": "2463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306713802902, 41.94095522258381, -85.64306713802902, 41.94095522258381], "geometry": {"coordinates": [-85.64306713802902, 41.94095522258381], "type": "Point"}, "id": "2464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306872509462, 41.94109025326432, -85.64306872509462, 41.94109025326432], "geometry": {"coordinates": [-85.64306872509462, 41.94109025326432], "type": "Point"}, "id": "2465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64307028979886, 41.94122528380165, -85.64307028979886, 41.94122528380165], "geometry": {"coordinates": [-85.64307028979886, 41.94122528380165], "type": "Point"}, "id": "2466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.6430728081727, 41.941360304337486, -85.6430728081727, 41.941360304337486], "geometry": {"coordinates": [-85.6430728081727, 41.941360304337486], "type": "Point"}, "id": "2467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64307618452251, 41.94149531596424, -85.64307618452251, 41.94149531596424], "geometry": {"coordinates": [-85.64307618452251, 41.94149531596424], "type": "Point"}, "id": "2468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64307956087234, 41.941630327305134, -85.64307956087234, 41.941630327305134], "geometry": {"coordinates": [-85.64307956087234, 41.941630327305134], "type": "Point"}, "id": "2469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64308293722216, 41.941765338360156, -85.64308293722216, 41.941765338360156], "geometry": {"coordinates": [-85.64308293722216, 41.941765338360156], "type": "Point"}, "id": "2470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64308631357197, 41.941900349129305, -85.64308631357197, 41.941900349129305], "geometry": {"coordinates": [-85.64308631357197, 41.941900349129305], "type": "Point"}, "id": "2471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64308966490573, 41.942035359957224, -85.64308966490573, 41.942035359957224], "geometry": {"coordinates": [-85.64308966490573, 41.942035359957224], "type": "Point"}, "id": "2472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64309301202883, 41.94217037055728, -85.64309301202883, 41.94217037055728], "geometry": {"coordinates": [-85.64309301202883, 41.94217037055728], "type": "Point"}, "id": "2473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64309635915193, 41.94230538087146, -85.64309635915193, 41.94230538087146], "geometry": {"coordinates": [-85.64309635915193, 41.94230538087146], "type": "Point"}, "id": "2474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64309972138696, 41.94244039069152, -85.64309972138696, 41.94244039069152], "geometry": {"coordinates": [-85.64309972138696, 41.94244039069152], "type": "Point"}, "id": "2475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.62007199999998, 41.946538, -85.62007199999998, 41.946538], "geometry": {"coordinates": [-85.62007199999998, 41.946538], "type": "Point"}, "id": "2476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62025502151498, 41.94653779272762, -85.62025502151498, 41.94653779272762], "geometry": {"coordinates": [-85.62025502151498, 41.94653779272762], "type": "Point"}, "id": "2477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62043804302995, 41.94653758545524, -85.62043804302995, 41.94653758545524], "geometry": {"coordinates": [-85.62043804302995, 41.94653758545524], "type": "Point"}, "id": "2478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62062106454495, 41.94653737818286, -85.62062106454495, 41.94653737818286], "geometry": {"coordinates": [-85.62062106454495, 41.94653737818286], "type": "Point"}, "id": "2479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62080408605992, 41.94653717091048, -85.62080408605992, 41.94653717091048], "geometry": {"coordinates": [-85.62080408605992, 41.94653717091048], "type": "Point"}, "id": "2480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6209871075749, 41.946536963638096, -85.6209871075749, 41.946536963638096], "geometry": {"coordinates": [-85.6209871075749, 41.946536963638096], "type": "Point"}, "id": "2481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6211701290899, 41.94653675636572, -85.6211701290899, 41.94653675636572], "geometry": {"coordinates": [-85.6211701290899, 41.94653675636572], "type": "Point"}, "id": "2482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62135315060488, 41.94653654909333, -85.62135315060488, 41.94653654909333], "geometry": {"coordinates": [-85.62135315060488, 41.94653654909333], "type": "Point"}, "id": "2483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62153617211986, 41.946536341820945, -85.62153617211986, 41.946536341820945], "geometry": {"coordinates": [-85.62153617211986, 41.946536341820945], "type": "Point"}, "id": "2484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62171919363486, 41.946536134548566, -85.62171919363486, 41.946536134548566], "geometry": {"coordinates": [-85.62171919363486, 41.946536134548566], "type": "Point"}, "id": "2485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62190221514983, 41.94653592727617, -85.62190221514983, 41.94653592727617], "geometry": {"coordinates": [-85.62190221514983, 41.94653592727617], "type": "Point"}, "id": "2486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62208523666483, 41.946535720003794, -85.62208523666483, 41.946535720003794], "geometry": {"coordinates": [-85.62208523666483, 41.946535720003794], "type": "Point"}, "id": "2487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6222682581798, 41.94653551273141, -85.6222682581798, 41.94653551273141], "geometry": {"coordinates": [-85.6222682581798, 41.94653551273141], "type": "Point"}, "id": "2488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62245127969479, 41.94653530545902, -85.62245127969479, 41.94653530545902], "geometry": {"coordinates": [-85.62245127969479, 41.94653530545902], "type": "Point"}, "id": "2489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62263430120977, 41.94653509818663, -85.62263430120977, 41.94653509818663], "geometry": {"coordinates": [-85.62263430120977, 41.94653509818663], "type": "Point"}, "id": "2490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62281732064206, 41.946534516418545, -85.62281732064206, 41.946534516418545], "geometry": {"coordinates": [-85.62281732064206, 41.946534516418545], "type": "Point"}, "id": "2491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62300033819973, 41.94653359757191, -85.62300033819973, 41.94653359757191], "geometry": {"coordinates": [-85.62300033819973, 41.94653359757191], "type": "Point"}, "id": "2492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62318335575738, 41.94653267872524, -85.62318335575738, 41.94653267872524], "geometry": {"coordinates": [-85.62318335575738, 41.94653267872524], "type": "Point"}, "id": "2493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62336637331505, 41.94653175987858, -85.62336637331505, 41.94653175987858], "geometry": {"coordinates": [-85.62336637331505, 41.94653175987858], "type": "Point"}, "id": "2494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62354939087272, 41.9465308410319, -85.62354939087272, 41.9465308410319], "geometry": {"coordinates": [-85.62354939087272, 41.9465308410319], "type": "Point"}, "id": "2495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62373240843039, 41.946529922185206, -85.62373240843039, 41.946529922185206], "geometry": {"coordinates": [-85.62373240843039, 41.946529922185206], "type": "Point"}, "id": "2496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62391542598805, 41.94652900333849, -85.62391542598805, 41.94652900333849], "geometry": {"coordinates": [-85.62391542598805, 41.94652900333849], "type": "Point"}, "id": "2497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6240984435457, 41.946528084491774, -85.6240984435457, 41.946528084491774], "geometry": {"coordinates": [-85.6240984435457, 41.946528084491774], "type": "Point"}, "id": "2498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62428146110338, 41.94652716564504, -85.62428146110338, 41.94652716564504], "geometry": {"coordinates": [-85.62428146110338, 41.94652716564504], "type": "Point"}, "id": "2499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62446447866105, 41.94652624679829, -85.62446447866105, 41.94652624679829], "geometry": {"coordinates": [-85.62446447866105, 41.94652624679829], "type": "Point"}, "id": "2500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62464749621871, 41.946525327951534, -85.62464749621871, 41.946525327951534], "geometry": {"coordinates": [-85.62464749621871, 41.946525327951534], "type": "Point"}, "id": "2501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62483051377637, 41.946524409104754, -85.62483051377637, 41.946524409104754], "geometry": {"coordinates": [-85.62483051377637, 41.946524409104754], "type": "Point"}, "id": "2502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62501352524446, 41.94652302846674, -85.62501352524446, 41.94652302846674], "geometry": {"coordinates": [-85.62501352524446, 41.94652302846674], "type": "Point"}, "id": "2503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62519653182518, 41.94652127720791, -85.62519653182518, 41.94652127720791], "geometry": {"coordinates": [-85.62519653182518, 41.94652127720791], "type": "Point"}, "id": "2504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62537953840592, 41.94651952594902, -85.62537953840592, 41.94651952594902], "geometry": {"coordinates": [-85.62537953840592, 41.94651952594902], "type": "Point"}, "id": "2505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62556254498666, 41.946517774690086, -85.62556254498666, 41.946517774690086], "geometry": {"coordinates": [-85.62556254498666, 41.946517774690086], "type": "Point"}, "id": "2506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6257455515674, 41.9465160234311, -85.6257455515674, 41.9465160234311], "geometry": {"coordinates": [-85.6257455515674, 41.9465160234311], "type": "Point"}, "id": "2507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62592855814813, 41.94651427217207, -85.62592855814813, 41.94651427217207], "geometry": {"coordinates": [-85.62592855814813, 41.94651427217207], "type": "Point"}, "id": "2508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62611156472887, 41.94651252091299, -85.62611156472887, 41.94651252091299], "geometry": {"coordinates": [-85.62611156472887, 41.94651252091299], "type": "Point"}, "id": "2509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62629457130961, 41.94651076965386, -85.62629457130961, 41.94651076965386], "geometry": {"coordinates": [-85.62629457130961, 41.94651076965386], "type": "Point"}, "id": "2510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62647757789034, 41.94650901839469, -85.62647757789034, 41.94650901839469], "geometry": {"coordinates": [-85.62647757789034, 41.94650901839469], "type": "Point"}, "id": "2511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62666058447107, 41.94650726713546, -85.62666058447107, 41.94650726713546], "geometry": {"coordinates": [-85.62666058447107, 41.94650726713546], "type": "Point"}, "id": "2512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62684359105182, 41.94650551587619, -85.62684359105182, 41.94650551587619], "geometry": {"coordinates": [-85.62684359105182, 41.94650551587619], "type": "Point"}, "id": "2513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62702659763255, 41.94650376461687, -85.62702659763255, 41.94650376461687], "geometry": {"coordinates": [-85.62702659763255, 41.94650376461687], "type": "Point"}, "id": "2514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62720960421329, 41.94650201335751, -85.62720960421329, 41.94650201335751], "geometry": {"coordinates": [-85.62720960421329, 41.94650201335751], "type": "Point"}, "id": "2515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62739261079403, 41.94650026209809, -85.62739261079403, 41.94650026209809], "geometry": {"coordinates": [-85.62739261079403, 41.94650026209809], "type": "Point"}, "id": "2516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62757561737477, 41.94649851083862, -85.62757561737477, 41.94649851083862], "geometry": {"coordinates": [-85.62757561737477, 41.94649851083862], "type": "Point"}, "id": "2517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62771102764273, 41.94657266127231, -85.62771102764273, 41.94657266127231], "geometry": {"coordinates": [-85.62771102764273, 41.94657266127231], "type": "Point"}, "id": "2518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62782683647114, 41.94667806991232, -85.62782683647114, 41.94667806991232], "geometry": {"coordinates": [-85.62782683647114, 41.94667806991232], "type": "Point"}, "id": "2519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62794264529958, 41.94678347837805, -85.62794264529958, 41.94678347837805], "geometry": {"coordinates": [-85.62794264529958, 41.94678347837805], "type": "Point"}, "id": "2520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.628058454128, 41.946888886669505, -85.628058454128, 41.946888886669505], "geometry": {"coordinates": [-85.628058454128, 41.946888886669505], "type": "Point"}, "id": "2521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62818076627885, 41.946989613725016, -85.62818076627885, 41.946989613725016], "geometry": {"coordinates": [-85.62818076627885, 41.946989613725016], "type": "Point"}, "id": "2522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6362328, 41.9536856, -85.6362328, 41.9536856], "geometry": {"coordinates": [-85.6362328, 41.9536856], "type": "Point"}, "id": "2523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623325518758, 41.95382165637853, -85.63623325518758, 41.95382165637853], "geometry": {"coordinates": [-85.63623325518758, 41.95382165637853], "type": "Point"}, "id": "2524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623371037514, 41.95395771246662, -85.63623371037514, 41.95395771246662], "geometry": {"coordinates": [-85.63623371037514, 41.95395771246662], "type": "Point"}, "id": "2525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623416556271, 41.95409376826427, -85.63623416556271, 41.95409376826427], "geometry": {"coordinates": [-85.63623416556271, 41.95409376826427], "type": "Point"}, "id": "2526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362346207503, 41.9542298237715, -85.6362346207503, 41.9542298237715], "geometry": {"coordinates": [-85.6362346207503, 41.9542298237715], "type": "Point"}, "id": "2527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623507593786, 41.954365878988284, -85.63623507593786, 41.954365878988284], "geometry": {"coordinates": [-85.63623507593786, 41.954365878988284], "type": "Point"}, "id": "2528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623553112545, 41.95450193391464, -85.63623553112545, 41.95450193391464], "geometry": {"coordinates": [-85.63623553112545, 41.95450193391464], "type": "Point"}, "id": "2529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623595112237, 41.95463798860952, -85.63623595112237, 41.95463798860952], "geometry": {"coordinates": [-85.63623595112237, 41.95463798860952], "type": "Point"}, "id": "2530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623977475761, 41.954774009954505, -85.63623977475761, 41.954774009954505], "geometry": {"coordinates": [-85.63623977475761, 41.954774009954505], "type": "Point"}, "id": "2531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63624407802976, 41.95491002678835, -85.63624407802976, 41.95491002678835], "geometry": {"coordinates": [-85.63624407802976, 41.95491002678835], "type": "Point"}, "id": "2532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63624838130191, 41.955046043331905, -85.63624838130191, 41.955046043331905], "geometry": {"coordinates": [-85.63624838130191, 41.955046043331905], "type": "Point"}, "id": "2533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63625268457405, 41.95518205958519, -85.63625268457405, 41.95518205958519], "geometry": {"coordinates": [-85.63625268457405, 41.95518205958519], "type": "Point"}, "id": "2534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63625698784621, 41.9553180755482, -85.63625698784621, 41.9553180755482], "geometry": {"coordinates": [-85.63625698784621, 41.9553180755482], "type": "Point"}, "id": "2535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63626129111834, 41.955454091220936, -85.63626129111834, 41.955454091220936], "geometry": {"coordinates": [-85.63626129111834, 41.955454091220936], "type": "Point"}, "id": "2536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362655943905, 41.955590106603395, -85.6362655943905, 41.955590106603395], "geometry": {"coordinates": [-85.6362655943905, 41.955590106603395], "type": "Point"}, "id": "2537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63626989766266, 41.95572612169557, -85.63626989766266, 41.95572612169557], "geometry": {"coordinates": [-85.63626989766266, 41.95572612169557], "type": "Point"}, "id": "2538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362742009348, 41.95586213649747, -85.6362742009348, 41.95586213649747], "geometry": {"coordinates": [-85.6362742009348, 41.95586213649747], "type": "Point"}, "id": "2539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627624381172, 41.95599817270638, -85.63627624381172, 41.95599817270638], "geometry": {"coordinates": [-85.63627624381172, 41.95599817270638], "type": "Point"}, "id": "2540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627666278194, 41.95613422421258, -85.63627666278194, 41.95613422421258], "geometry": {"coordinates": [-85.63627666278194, 41.95613422421258], "type": "Point"}, "id": "2541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627708175216, 41.95627027542835, -85.63627708175216, 41.95627027542835], "geometry": {"coordinates": [-85.63627708175216, 41.95627027542835], "type": "Point"}, "id": "2542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627750072237, 41.956406326353694, -85.63627750072237, 41.956406326353694], "geometry": {"coordinates": [-85.63627750072237, 41.956406326353694], "type": "Point"}, "id": "2543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362779196926, 41.95654237698859, -85.6362779196926, 41.95654237698859], "geometry": {"coordinates": [-85.6362779196926, 41.95654237698859], "type": "Point"}, "id": "2544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627833461064, 41.95667842733984, -85.63627833461064, 41.95667842733984], "geometry": {"coordinates": [-85.63627833461064, 41.95667842733984], "type": "Point"}, "id": "2545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627874133718, 41.95681447741441, -85.63627874133718, 41.95681447741441], "geometry": {"coordinates": [-85.63627874133718, 41.95681447741441], "type": "Point"}, "id": "2546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362787189994, 41.95695052688011, -85.6362787189994, 41.95695052688011], "geometry": {"coordinates": [-85.6362787189994, 41.95695052688011], "type": "Point"}, "id": "2547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627794709947, 41.95708657549905, -85.63627794709947, 41.95708657549905], "geometry": {"coordinates": [-85.63627794709947, 41.95708657549905], "type": "Point"}, "id": "2548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627717519952, 41.95722262382756, -85.63627717519952, 41.95722262382756], "geometry": {"coordinates": [-85.63627717519952, 41.95722262382756], "type": "Point"}, "id": "2549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627640329959, 41.95735867186564, -85.63627640329959, 41.95735867186564], "geometry": {"coordinates": [-85.63627640329959, 41.95735867186564], "type": "Point"}, "id": "2550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627563139966, 41.95749471961328, -85.63627563139966, 41.95749471961328], "geometry": {"coordinates": [-85.63627563139966, 41.95749471961328], "type": "Point"}, "id": "2551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627485949971, 41.9576307670705, -85.63627485949971, 41.9576307670705], "geometry": {"coordinates": [-85.63627485949971, 41.9576307670705], "type": "Point"}, "id": "2552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627408759976, 41.95776681423727, -85.63627408759976, 41.95776681423727], "geometry": {"coordinates": [-85.63627408759976, 41.95776681423727], "type": "Point"}, "id": "2553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627331569981, 41.9579028611136, -85.63627331569981, 41.9579028611136], "geometry": {"coordinates": [-85.63627331569981, 41.9579028611136], "type": "Point"}, "id": "2554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627254379988, 41.9580389076995, -85.63627254379988, 41.9580389076995], "geometry": {"coordinates": [-85.63627254379988, 41.9580389076995], "type": "Point"}, "id": "2555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627177189993, 41.95817495399498, -85.63627177189993, 41.95817495399498], "geometry": {"coordinates": [-85.63627177189993, 41.95817495399498], "type": "Point"}, "id": "2556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6295992, 41.9524346, -85.6295992, 41.9524346], "geometry": {"coordinates": [-85.6295992, 41.9524346], "type": "Point"}, "id": "2557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.6297777859091, 41.952468650956625, -85.6297777859091, 41.952468650956625], "geometry": {"coordinates": [-85.6297777859091, 41.952468650956625], "type": "Point"}, "id": "2558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.62996248278021, 41.95246580890584, -85.62996248278021, 41.95246580890584], "geometry": {"coordinates": [-85.62996248278021, 41.95246580890584], "type": "Point"}, "id": "2559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63014717965135, 41.95246296685494, -85.63014717965135, 41.95246296685494], "geometry": {"coordinates": [-85.63014717965135, 41.95246296685494], "type": "Point"}, "id": "2560", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63033187631662, 41.95246011743652, -85.63033187631662, 41.95246011743652], "geometry": {"coordinates": [-85.63033187631662, 41.95246011743652], "type": "Point"}, "id": "2561", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63051657251934, 41.95245725146106, -85.63051657251934, 41.95245725146106], "geometry": {"coordinates": [-85.63051657251934, 41.95245725146106], "type": "Point"}, "id": "2562", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63070126872205, 41.95245438548547, -85.63070126872205, 41.95245438548547], "geometry": {"coordinates": [-85.63070126872205, 41.95245438548547], "type": "Point"}, "id": "2563", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63088597164118, 41.952452028114216, -85.63088597164118, 41.952452028114216], "geometry": {"coordinates": [-85.63088597164118, 41.952452028114216], "type": "Point"}, "id": "2564", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.6310707079052, 41.95245219580681, -85.6310707079052, 41.95245219580681], "geometry": {"coordinates": [-85.6310707079052, 41.95245219580681], "type": "Point"}, "id": "2565", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63125544416921, 41.95245236349941, -85.63125544416921, 41.95245236349941], "geometry": {"coordinates": [-85.63125544416921, 41.95245236349941], "type": "Point"}, "id": "2566", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63144018043324, 41.95245253119201, -85.63144018043324, 41.95245253119201], "geometry": {"coordinates": [-85.63144018043324, 41.95245253119201], "type": "Point"}, "id": "2567", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63162491669728, 41.9524526988846, -85.63162491669728, 41.9524526988846], "geometry": {"coordinates": [-85.63162491669728, 41.9524526988846], "type": "Point"}, "id": "2568", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.6318096529613, 41.952452866577204, -85.6318096529613, 41.952452866577204], "geometry": {"coordinates": [-85.6318096529613, 41.952452866577204], "type": "Point"}, "id": "2569", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63199438922533, 41.95245303426981, -85.63199438922533, 41.95245303426981], "geometry": {"coordinates": [-85.63199438922533, 41.95245303426981], "type": "Point"}, "id": "2570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63217907551896, 41.95245060642028, -85.63217907551896, 41.95245060642028], "geometry": {"coordinates": [-85.63217907551896, 41.95245060642028], "type": "Point"}, "id": "2571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63236372959915, 41.952446505350885, -85.63236372959915, 41.952446505350885], "geometry": {"coordinates": [-85.63236372959915, 41.952446505350885], "type": "Point"}, "id": "2572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.6325483836793, 41.952442404281236, -85.6325483836793, 41.952442404281236], "geometry": {"coordinates": [-85.6325483836793, 41.952442404281236], "type": "Point"}, "id": "2573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63273303775948, 41.95243830321132, -85.63273303775948, 41.95243830321132], "geometry": {"coordinates": [-85.63273303775948, 41.95243830321132], "type": "Point"}, "id": "2574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63291769183965, 41.95243420214115, -85.63291769183965, 41.95243420214115], "geometry": {"coordinates": [-85.63291769183965, 41.95243420214115], "type": "Point"}, "id": "2575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63310234591982, 41.95243010107071, -85.63310234591982, 41.95243010107071], "geometry": {"coordinates": [-85.63310234591982, 41.95243010107071], "type": "Point"}, "id": "2576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.64194599999999, 41.94641300000001, -85.64194599999999, 41.94641300000001], "geometry": {"coordinates": [-85.64194599999999, 41.94641300000001], "type": "Point"}, "id": "2577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64213613522477, 41.946411408910265, -85.64213613522477, 41.946411408910265], "geometry": {"coordinates": [-85.64213613522477, 41.946411408910265], "type": "Point"}, "id": "2578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.6423262127934, 41.94640777395536, -85.6423262127934, 41.94640777395536], "geometry": {"coordinates": [-85.6423262127934, 41.94640777395536], "type": "Point"}, "id": "2579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.6425162704191, 41.94640343203698, -85.6425162704191, 41.94640343203698], "geometry": {"coordinates": [-85.6425162704191, 41.94640343203698], "type": "Point"}, "id": "2580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64270632804475, 41.946399090118305, -85.64270632804475, 41.946399090118305], "geometry": {"coordinates": [-85.64270632804475, 41.946399090118305], "type": "Point"}, "id": "2581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64289638567041, 41.94639474819933, -85.64289638567041, 41.94639474819933], "geometry": {"coordinates": [-85.64289638567041, 41.94639474819933], "type": "Point"}, "id": "2582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64308644329607, 41.94639040628007, -85.64308644329607, 41.94639040628007], "geometry": {"coordinates": [-85.64308644329607, 41.94639040628007], "type": "Point"}, "id": "2583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64327651644948, 41.946386468155495, -85.64327651644948, 41.946386468155495], "geometry": {"coordinates": [-85.64327651644948, 41.946386468155495], "type": "Point"}, "id": "2584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64346659704123, 41.946382723463465, -85.64346659704123, 41.946382723463465], "geometry": {"coordinates": [-85.64346659704123, 41.946382723463465], "type": "Point"}, "id": "2585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64365667763299, 41.94637897877121, -85.64365667763299, 41.94637897877121], "geometry": {"coordinates": [-85.64365667763299, 41.94637897877121], "type": "Point"}, "id": "2586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64384675822474, 41.94637523407873, -85.64384675822474, 41.94637523407873], "geometry": {"coordinates": [-85.64384675822474, 41.94637523407873], "type": "Point"}, "id": "2587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64403683881649, 41.946371489386046, -85.64403683881649, 41.946371489386046], "geometry": {"coordinates": [-85.64403683881649, 41.946371489386046], "type": "Point"}, "id": "2588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64422691940824, 41.946367744693134, -85.64422691940824, 41.946367744693134], "geometry": {"coordinates": [-85.64422691940824, 41.946367744693134], "type": "Point"}, "id": "2589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.63580439999998, 41.941951399999994, -85.63580439999998, 41.941951399999994], "geometry": {"coordinates": [-85.63580439999998, 41.941951399999994], "type": "Point"}, "id": "2590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63562238283758, 41.941953588758615, -85.63562238283758, 41.941953588758615], "geometry": {"coordinates": [-85.63562238283758, 41.941953588758615], "type": "Point"}, "id": "2591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63544036567521, 41.94195577751716, -85.63544036567521, 41.94195577751716], "geometry": {"coordinates": [-85.63544036567521, 41.94195577751716], "type": "Point"}, "id": "2592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63526007957874, 41.94194140114244, -85.63526007957874, 41.94194140114244], "geometry": {"coordinates": [-85.63526007957874, 41.94194140114244], "type": "Point"}, "id": "2593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63509408649381, 41.94188783270936, -85.63509408649381, 41.94188783270936], "geometry": {"coordinates": [-85.63509408649381, 41.94188783270936], "type": "Point"}, "id": "2594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63497429754415, 41.94178587318898, -85.63497429754415, 41.94178587318898], "geometry": {"coordinates": [-85.63497429754415, 41.94178587318898], "type": "Point"}, "id": "2595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6348576734017, 41.941681918863566, -85.6348576734017, 41.941681918863566], "geometry": {"coordinates": [-85.6348576734017, 41.941681918863566], "type": "Point"}, "id": "2596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63473440172605, 41.94158233852896, -85.63473440172605, 41.94158233852896], "geometry": {"coordinates": [-85.63473440172605, 41.94158233852896], "type": "Point"}, "id": "2597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6345923374202, 41.94149887740454, -85.6345923374202, 41.94149887740454], "geometry": {"coordinates": [-85.6345923374202, 41.94149887740454], "type": "Point"}, "id": "2598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63443103675107, 41.941436224223416, -85.63443103675107, 41.941436224223416], "geometry": {"coordinates": [-85.63443103675107, 41.941436224223416], "type": "Point"}, "id": "2599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63426715696953, 41.94137726753417, -85.63426715696953, 41.94137726753417], "geometry": {"coordinates": [-85.63426715696953, 41.94137726753417], "type": "Point"}, "id": "2600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63410327718799, 41.94131831079042, -85.63410327718799, 41.94131831079042], "geometry": {"coordinates": [-85.63410327718799, 41.94131831079042], "type": "Point"}, "id": "2601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63393939740645, 41.94125935399216, -85.63393939740645, 41.94125935399216], "geometry": {"coordinates": [-85.63393939740645, 41.94125935399216], "type": "Point"}, "id": "2602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63377707370755, 41.941198121222016, -85.63377707370755, 41.941198121222016], "geometry": {"coordinates": [-85.63377707370755, 41.941198121222016], "type": "Point"}, "id": "2603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63363352976937, 41.941116391036466, -85.63363352976937, 41.941116391036466], "geometry": {"coordinates": [-85.63363352976937, 41.941116391036466], "type": "Point"}, "id": "2604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6335433269688, 41.940999924960956, -85.6335433269688, 41.940999924960956], "geometry": {"coordinates": [-85.6335433269688, 41.940999924960956], "type": "Point"}, "id": "2605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6334888275033, 41.940870805256445, -85.6334888275033, 41.940870805256445], "geometry": {"coordinates": [-85.6334888275033, 41.940870805256445], "type": "Point"}, "id": "2606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63345056921065, 41.94073848521812, -85.63345056921065, 41.94073848521812], "geometry": {"coordinates": [-85.63345056921065, 41.94073848521812], "type": "Point"}, "id": "2607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63342500253157, 41.94060462067412, -85.63342500253157, 41.94060462067412], "geometry": {"coordinates": [-85.63342500253157, 41.94060462067412], "type": "Point"}, "id": "2608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63340842306792, 41.940469774304596, -85.63340842306792, 41.940469774304596], "geometry": {"coordinates": [-85.63340842306792, 41.940469774304596], "type": "Point"}, "id": "2609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.633408172877, 41.940334684585515, -85.633408172877, 41.940334684585515], "geometry": {"coordinates": [-85.633408172877, 41.940334684585515], "type": "Point"}, "id": "2610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.633469762653, 41.940208364517574, -85.633469762653, 41.940208364517574], "geometry": {"coordinates": [-85.633469762653, 41.940208364517574], "type": "Point"}, "id": "2611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63361740083563, 41.9401343787098, -85.63361740083563, 41.9401343787098], "geometry": {"coordinates": [-85.63361740083563, 41.9401343787098], "type": "Point"}, "id": "2612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63379655213151, 41.94011416461743, -85.63379655213151, 41.94011416461743], "geometry": {"coordinates": [-85.63379655213151, 41.94011416461743], "type": "Point"}, "id": "2613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63397858180312, 41.94011265755741, -85.63397858180312, 41.94011265755741], "geometry": {"coordinates": [-85.63397858180312, 41.94011265755741], "type": "Point"}, "id": "2614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63416061147471, 41.94011115049735, -85.63416061147471, 41.94011115049735], "geometry": {"coordinates": [-85.63416061147471, 41.94011115049735], "type": "Point"}, "id": "2615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63434264114632, 41.94010964343727, -85.63434264114632, 41.94010964343727], "geometry": {"coordinates": [-85.63434264114632, 41.94010964343727], "type": "Point"}, "id": "2616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63452467081791, 41.94010813637713, -85.63452467081791, 41.94010813637713], "geometry": {"coordinates": [-85.63452467081791, 41.94010813637713], "type": "Point"}, "id": "2617", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63470669955007, 41.94010903181419, -85.63470669955007, 41.94010903181419], "geometry": {"coordinates": [-85.63470669955007, 41.94010903181419], "type": "Point"}, "id": "2618", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63488872752048, 41.94011064857257, -85.63488872752048, 41.94011064857257], "geometry": {"coordinates": [-85.63488872752048, 41.94011064857257], "type": "Point"}, "id": "2619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63507075554882, 41.94011226161718, -85.63507075554882, 41.94011226161718], "geometry": {"coordinates": [-85.63507075554882, 41.94011226161718], "type": "Point"}, "id": "2620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63525278495261, 41.94011378647081, -85.63525278495261, 41.94011378647081], "geometry": {"coordinates": [-85.63525278495261, 41.94011378647081], "type": "Point"}, "id": "2621", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6354348132247, 41.94011538430934, -85.6354348132247, 41.94011538430934], "geometry": {"coordinates": [-85.6354348132247, 41.94011538430934], "type": "Point"}, "id": "2622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63561684152495, 41.940116980387415, -85.63561684152495, 41.940116980387415], "geometry": {"coordinates": [-85.63561684152495, 41.940116980387415], "type": "Point"}, "id": "2623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63579887058572, 41.94011827995138, -85.63579887058572, 41.94011827995138], "geometry": {"coordinates": [-85.63579887058572, 41.94011827995138], "type": "Point"}, "id": "2624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63598090552811, 41.940117180182796, -85.63598090552811, 41.940117180182796], "geometry": {"coordinates": [-85.63598090552811, 41.940117180182796], "type": "Point"}, "id": "2625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63616294047051, 41.94011608041419, -85.63616294047051, 41.94011608041419], "geometry": {"coordinates": [-85.63616294047051, 41.94011608041419], "type": "Point"}, "id": "2626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6363449754129, 41.94011498064558, -85.6363449754129, 41.94011498064558], "geometry": {"coordinates": [-85.6363449754129, 41.94011498064558], "type": "Point"}, "id": "2627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63652701035528, 41.94011388087695, -85.63652701035528, 41.94011388087695], "geometry": {"coordinates": [-85.63652701035528, 41.94011388087695], "type": "Point"}, "id": "2628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63670904529768, 41.94011278110829, -85.63670904529768, 41.94011278110829], "geometry": {"coordinates": [-85.63670904529768, 41.94011278110829], "type": "Point"}, "id": "2629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63689108024008, 41.94011168133962, -85.63689108024008, 41.94011168133962], "geometry": {"coordinates": [-85.63689108024008, 41.94011168133962], "type": "Point"}, "id": "2630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63707305586324, 41.94010841553268, -85.63707305586324, 41.94010841553268], "geometry": {"coordinates": [-85.63707305586324, 41.94010841553268], "type": "Point"}, "id": "2631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6269868, 41.941035, -85.6269868, 41.941035], "geometry": {"coordinates": [-85.6269868, 41.941035], "type": "Point"}, "id": "2632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62713921663176, 41.94110727009846, -85.62713921663176, 41.94110727009846], "geometry": {"coordinates": [-85.62713921663176, 41.94110727009846], "type": "Point"}, "id": "2633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62725817139669, 41.941203392699116, -85.62725817139669, 41.941203392699116], "geometry": {"coordinates": [-85.62725817139669, 41.941203392699116], "type": "Point"}, "id": "2634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6273045015589, 41.94133333818054, -85.6273045015589, 41.94133333818054], "geometry": {"coordinates": [-85.6273045015589, 41.94133333818054], "type": "Point"}, "id": "2635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62734683319809, 41.94146404638603, -85.62734683319809, 41.94146404638603], "geometry": {"coordinates": [-85.62734683319809, 41.94146404638603], "type": "Point"}, "id": "2636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62735472003149, 41.941598019758146, -85.62735472003149, 41.941598019758146], "geometry": {"coordinates": [-85.62735472003149, 41.941598019758146], "type": "Point"}, "id": "2637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62735781821249, 41.94173244682137, -85.62735781821249, 41.94173244682137], "geometry": {"coordinates": [-85.62735781821249, 41.94173244682137], "type": "Point"}, "id": "2638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62736091639346, 41.94186687360119, -85.62736091639346, 41.94186687360119], "geometry": {"coordinates": [-85.62736091639346, 41.94186687360119], "type": "Point"}, "id": "2639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62736401457445, 41.94200130009761, -85.62736401457445, 41.94200130009761], "geometry": {"coordinates": [-85.62736401457445, 41.94200130009761], "type": "Point"}, "id": "2640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62736711275542, 41.94213572631064, -85.62736711275542, 41.94213572631064], "geometry": {"coordinates": [-85.62736711275542, 41.94213572631064], "type": "Point"}, "id": "2641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62737022942001, 41.94227015199424, -85.62737022942001, 41.94227015199424], "geometry": {"coordinates": [-85.62737022942001, 41.94227015199424], "type": "Point"}, "id": "2642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6273735990833, 41.94240457402696, -85.6273735990833, 41.94240457402696], "geometry": {"coordinates": [-85.6273735990833, 41.94240457402696], "type": "Point"}, "id": "2643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6273769687466, 41.94253899577631, -85.6273769687466, 41.94253899577631], "geometry": {"coordinates": [-85.6273769687466, 41.94253899577631], "type": "Point"}, "id": "2644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62738033840989, 41.94267341724226, -85.62738033840989, 41.94267341724226], "geometry": {"coordinates": [-85.62738033840989, 41.94267341724226], "type": "Point"}, "id": "2645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6273837080732, 41.942807838424834, -85.6273837080732, 41.942807838424834], "geometry": {"coordinates": [-85.6273837080732, 41.942807838424834], "type": "Point"}, "id": "2646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62738707773649, 41.94294225932402, -85.62738707773649, 41.94294225932402], "geometry": {"coordinates": [-85.62738707773649, 41.94294225932402], "type": "Point"}, "id": "2647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62739044739979, 41.94307667993983, -85.62739044739979, 41.94307667993983], "geometry": {"coordinates": [-85.62739044739979, 41.94307667993983], "type": "Point"}, "id": "2648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62739381706308, 41.94321110027224, -85.62739381706308, 41.94321110027224], "geometry": {"coordinates": [-85.62739381706308, 41.94321110027224], "type": "Point"}, "id": "2649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62739720220104, 41.94334552010592, -85.62739720220104, 41.94334552010592], "geometry": {"coordinates": [-85.62739720220104, 41.94334552010592], "type": "Point"}, "id": "2650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740059466738, 41.94347993955425, -85.62740059466738, 41.94347993955425], "geometry": {"coordinates": [-85.62740059466738, 41.94347993955425], "type": "Point"}, "id": "2651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740283522002, 41.94361437170117, -85.62740283522002, 41.94361437170117], "geometry": {"coordinates": [-85.62740283522002, 41.94361437170117], "type": "Point"}, "id": "2652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740253556603, 41.94374881307055, -85.62740253556603, 41.94374881307055], "geometry": {"coordinates": [-85.62740253556603, 41.94374881307055], "type": "Point"}, "id": "2653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740207334232, 41.94388325491092, -85.62740207334232, 41.94388325491092], "geometry": {"coordinates": [-85.62740207334232, 41.94388325491092], "type": "Point"}, "id": "2654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740161111859, 41.9440176964678, -85.62740161111859, 41.9440176964678], "geometry": {"coordinates": [-85.62740161111859, 41.9440176964678], "type": "Point"}, "id": "2655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740114889486, 41.94415213774121, -85.62740114889486, 41.94415213774121], "geometry": {"coordinates": [-85.62740114889486, 41.94415213774121], "type": "Point"}, "id": "2656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740068667115, 41.94428657873114, -85.62740068667115, 41.94428657873114], "geometry": {"coordinates": [-85.62740068667115, 41.94428657873114], "type": "Point"}, "id": "2657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740022444743, 41.94442101943757, -85.62740022444743, 41.94442101943757], "geometry": {"coordinates": [-85.62740022444743, 41.94442101943757], "type": "Point"}, "id": "2658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62739976222369, 41.94455545986053, -85.62739976222369, 41.94455545986053], "geometry": {"coordinates": [-85.62739976222369, 41.94455545986053], "type": "Point"}, "id": "2659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6299942, 41.9446689, -85.6299942, 41.9446689], "geometry": {"coordinates": [-85.6299942, 41.9446689], "type": "Point"}, "id": "2660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62999511475546, 41.944531704879346, -85.62999511475546, 41.944531704879346], "geometry": {"coordinates": [-85.62999511475546, 41.944531704879346], "type": "Point"}, "id": "2661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62999598722516, 41.94439450930906, -85.62999598722516, 41.94439450930906], "geometry": {"coordinates": [-85.62999598722516, 41.94439450930906], "type": "Point"}, "id": "2662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62999685969483, 41.94425731344354, -85.62999685969483, 41.94425731344354], "geometry": {"coordinates": [-85.62999685969483, 41.94425731344354], "type": "Point"}, "id": "2663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6299977321645, 41.944120117282814, -85.6299977321645, 41.944120117282814], "geometry": {"coordinates": [-85.6299977321645, 41.944120117282814], "type": "Point"}, "id": "2664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62998176119609, 41.9439836900654, -85.62998176119609, 41.9439836900654], "geometry": {"coordinates": [-85.62998176119609, 41.9439836900654], "type": "Point"}, "id": "2665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62995887241797, 41.94384755259309, -85.62995887241797, 41.94384755259309], "geometry": {"coordinates": [-85.62995887241797, 41.94384755259309], "type": "Point"}, "id": "2666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62991998232418, 41.94371389869542, -85.62991998232418, 41.94371389869542], "geometry": {"coordinates": [-85.62991998232418, 41.94371389869542], "type": "Point"}, "id": "2667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62986804662137, 41.94358225046352, -85.62986804662137, 41.94358225046352], "geometry": {"coordinates": [-85.62986804662137, 41.94358225046352], "type": "Point"}, "id": "2668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62981611091853, 41.943450601959796, -85.62981611091853, 41.943450601959796], "geometry": {"coordinates": [-85.62981611091853, 41.943450601959796], "type": "Point"}, "id": "2669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62976417521568, 41.94331895318425, -85.62976417521568, 41.94331895318425], "geometry": {"coordinates": [-85.62976417521568, 41.94331895318425], "type": "Point"}, "id": "2670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62971223951284, 41.94318730413688, -85.62971223951284, 41.94318730413688], "geometry": {"coordinates": [-85.62971223951284, 41.94318730413688], "type": "Point"}, "id": "2671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62965241253869, 41.94305761547565, -85.62965241253869, 41.94305761547565], "geometry": {"coordinates": [-85.62965241253869, 41.94305761547565], "type": "Point"}, "id": "2672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62958754661553, 41.94292917852578, -85.62958754661553, 41.94292917852578], "geometry": {"coordinates": [-85.62958754661553, 41.94292917852578], "type": "Point"}, "id": "2673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6295348402793, 41.94279773181881, -85.6295348402793, 41.94279773181881], "geometry": {"coordinates": [-85.6295348402793, 41.94279773181881], "type": "Point"}, "id": "2674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6294934320407, 41.94266420684528, -85.6294934320407, 41.94266420684528], "geometry": {"coordinates": [-85.6294934320407, 41.94266420684528], "type": "Point"}, "id": "2675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62946361056687, 41.94252886193597, -85.62946361056687, 41.94252886193597], "geometry": {"coordinates": [-85.62946361056687, 41.94252886193597], "type": "Point"}, "id": "2676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62944089465977, 41.942392707939234, -85.62944089465977, 41.942392707939234], "geometry": {"coordinates": [-85.62944089465977, 41.942392707939234], "type": "Point"}, "id": "2677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.629421001218, 41.94225630649426, -85.629421001218, 41.94225630649426], "geometry": {"coordinates": [-85.629421001218, 41.94225630649426], "type": "Point"}, "id": "2678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62940116105702, 41.94211990046527, -85.62940116105702, 41.94211990046527], "geometry": {"coordinates": [-85.62940116105702, 41.94211990046527], "type": "Point"}, "id": "2679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6293833626968, 41.94198334723747, -85.6293833626968, 41.94198334723747], "geometry": {"coordinates": [-85.6293833626968, 41.94198334723747], "type": "Point"}, "id": "2680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62936683382554, 41.94184671352318, -85.62936683382554, 41.94184671352318], "geometry": {"coordinates": [-85.62936683382554, 41.94184671352318], "type": "Point"}, "id": "2681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62934004857452, 41.941710988747666, -85.62934004857452, 41.941710988747666], "geometry": {"coordinates": [-85.62934004857452, 41.941710988747666], "type": "Point"}, "id": "2682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6292803331141, 41.941582936113015, -85.6292803331141, 41.941582936113015], "geometry": {"coordinates": [-85.6292803331141, 41.941582936113015], "type": "Point"}, "id": "2683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62912892174575, 41.94150796744398, -85.62912892174575, 41.94150796744398], "geometry": {"coordinates": [-85.62912892174575, 41.94150796744398], "type": "Point"}, "id": "2684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62895640403485, 41.94145954066271, -85.62895640403485, 41.94145954066271], "geometry": {"coordinates": [-85.62895640403485, 41.94145954066271], "type": "Point"}, "id": "2685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62878204300844, 41.9414147732303, -85.62878204300844, 41.9414147732303], "geometry": {"coordinates": [-85.62878204300844, 41.9414147732303], "type": "Point"}, "id": "2686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62860768198203, 41.94137000576645, -85.62860768198203, 41.94137000576645], "geometry": {"coordinates": [-85.62860768198203, 41.94137000576645], "type": "Point"}, "id": "2687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62843332095561, 41.94132523827118, -85.62843332095561, 41.94132523827118], "geometry": {"coordinates": [-85.62843332095561, 41.94132523827118], "type": "Point"}, "id": "2688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6282589599292, 41.941280470744466, -85.6282589599292, 41.941280470744466], "geometry": {"coordinates": [-85.6282589599292, 41.941280470744466], "type": "Point"}, "id": "2689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62808459890277, 41.94123570318634, -85.62808459890277, 41.94123570318634], "geometry": {"coordinates": [-85.62808459890277, 41.94123570318634], "type": "Point"}, "id": "2690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62791023787636, 41.94119093559679, -85.62791023787636, 41.94119093559679], "geometry": {"coordinates": [-85.62791023787636, 41.94119093559679], "type": "Point"}, "id": "2691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62773587684995, 41.94114616797578, -85.62773587684995, 41.94114616797578], "geometry": {"coordinates": [-85.62773587684995, 41.94114616797578], "type": "Point"}, "id": "2692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62756151582354, 41.94110140032336, -85.62756151582354, 41.94110140032336], "geometry": {"coordinates": [-85.62756151582354, 41.94110140032336], "type": "Point"}, "id": "2693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62738715479712, 41.9410566326395, -85.62738715479712, 41.9410566326395], "geometry": {"coordinates": [-85.62738715479712, 41.9410566326395], "type": "Point"}, "id": "2694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62722079431107, 41.9409992218577, -85.62722079431107, 41.9409992218577], "geometry": {"coordinates": [-85.62722079431107, 41.9409992218577], "type": "Point"}, "id": "2695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6321612, 41.959859, -85.6321612, 41.959859], "geometry": {"coordinates": [-85.6321612, 41.959859], "type": "Point"}, "id": "2696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63234797142856, 41.95985721428604, -85.63234797142856, 41.95985721428604], "geometry": {"coordinates": [-85.63234797142856, 41.95985721428604], "type": "Point"}, "id": "2697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63253474285715, 41.95985542857203, -85.63253474285715, 41.95985542857203], "geometry": {"coordinates": [-85.63253474285715, 41.95985542857203], "type": "Point"}, "id": "2698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63272151428572, 41.95985364285797, -85.63272151428572, 41.95985364285797], "geometry": {"coordinates": [-85.63272151428572, 41.95985364285797], "type": "Point"}, "id": "2699", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63290828571428, 41.95985185714387, -85.63290828571428, 41.95985185714387], "geometry": {"coordinates": [-85.63290828571428, 41.95985185714387], "type": "Point"}, "id": "2700", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63309505714285, 41.95985007142969, -85.63309505714285, 41.95985007142969], "geometry": {"coordinates": [-85.63309505714285, 41.95985007142969], "type": "Point"}, "id": "2701", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63328182857143, 41.95984828571549, -85.63328182857143, 41.95984828571549], "geometry": {"coordinates": [-85.63328182857143, 41.95984828571549], "type": "Point"}, "id": "2702", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.6334686, 41.95984650000123, -85.6334686, 41.95984650000123], "geometry": {"coordinates": [-85.6334686, 41.95984650000123], "type": "Point"}, "id": "2703", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63365537142856, 41.959844714286916, -85.63365537142856, 41.959844714286916], "geometry": {"coordinates": [-85.63365537142856, 41.959844714286916], "type": "Point"}, "id": "2704", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63384214285715, 41.959842928572556, -85.63384214285715, 41.959842928572556], "geometry": {"coordinates": [-85.63384214285715, 41.959842928572556], "type": "Point"}, "id": "2705", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63402891428572, 41.959841142858146, -85.63402891428572, 41.959841142858146], "geometry": {"coordinates": [-85.63402891428572, 41.959841142858146], "type": "Point"}, "id": "2706", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63421568571428, 41.95983935714368, -85.63421568571428, 41.95983935714368], "geometry": {"coordinates": [-85.63421568571428, 41.95983935714368], "type": "Point"}, "id": "2707", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63440245714284, 41.95983757142918, -85.63440245714284, 41.95983757142918], "geometry": {"coordinates": [-85.63440245714284, 41.95983757142918], "type": "Point"}, "id": "2708", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63458922857143, 41.95983578571461, -85.63458922857143, 41.95983578571461], "geometry": {"coordinates": [-85.63458922857143, 41.95983578571461], "type": "Point"}, "id": "2709", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.6302318, 41.965951, -85.6302318, 41.965951], "geometry": {"coordinates": [-85.6302318, 41.965951], "type": "Point"}, "id": "2710", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63023081530234, 41.96579970831323, -85.63023081530234, 41.96579970831323], "geometry": {"coordinates": [-85.63023081530234, 41.96579970831323], "type": "Point"}, "id": "2711", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63022979082791, 41.96564841641529, -85.63022979082791, 41.96564841641529], "geometry": {"coordinates": [-85.63022979082791, 41.96564841641529], "type": "Point"}, "id": "2712", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63022873734135, 41.96549712426614, -85.63022873734135, 41.96549712426614], "geometry": {"coordinates": [-85.63022873734135, 41.96549712426614], "type": "Point"}, "id": "2713", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63022768385478, 41.965345831757716, -85.63022768385478, 41.965345831757716], "geometry": {"coordinates": [-85.63022768385478, 41.965345831757716], "type": "Point"}, "id": "2714", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63023495578553, 41.96519530541286, -85.63023495578553, 41.96519530541286], "geometry": {"coordinates": [-85.63023495578553, 41.96519530541286], "type": "Point"}, "id": "2715", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.6302977930373, 41.965051913782105, -85.6302977930373, 41.965051913782105], "geometry": {"coordinates": [-85.6302977930373, 41.965051913782105], "type": "Point"}, "id": "2716", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.614617, 41.95163900000001, -85.614617, 41.95163900000001], "geometry": {"coordinates": [-85.614617, 41.95163900000001], "type": "Point"}, "id": "2717", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61462558668069, 41.95177968954043, -85.61462558668069, 41.95177968954043], "geometry": {"coordinates": [-85.61462558668069, 41.95177968954043], "type": "Point"}, "id": "2718", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463051853995, 41.95192044808841, -85.61463051853995, 41.95192044808841], "geometry": {"coordinates": [-85.61463051853995, 41.95192044808841], "type": "Point"}, "id": "2719", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463158543464, 41.95206127962909, -85.61463158543464, 41.95206127962909], "geometry": {"coordinates": [-85.61463158543464, 41.95206127962909], "type": "Point"}, "id": "2720", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.6146326523293, 41.95220211085862, -85.6146326523293, 41.95220211085862], "geometry": {"coordinates": [-85.6146326523293, 41.95220211085862], "type": "Point"}, "id": "2721", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.614633719224, 41.95234294177699, -85.614633719224, 41.95234294177699], "geometry": {"coordinates": [-85.614633719224, 41.95234294177699], "type": "Point"}, "id": "2722", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463478611867, 41.9524837723842, -85.61463478611867, 41.9524837723842], "geometry": {"coordinates": [-85.61463478611867, 41.9524837723842], "type": "Point"}, "id": "2723", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463585301335, 41.952624602680245, -85.61463585301335, 41.952624602680245], "geometry": {"coordinates": [-85.61463585301335, 41.952624602680245], "type": "Point"}, "id": "2724", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463691990802, 41.95276543266514, -85.61463691990802, 41.95276543266514], "geometry": {"coordinates": [-85.61463691990802, 41.95276543266514], "type": "Point"}, "id": "2725", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463798680272, 41.95290626233886, -85.61463798680272, 41.95290626233886], "geometry": {"coordinates": [-85.61463798680272, 41.95290626233886], "type": "Point"}, "id": "2726", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463905369739, 41.95304709170143, -85.61463905369739, 41.95304709170143], "geometry": {"coordinates": [-85.61463905369739, 41.95304709170143], "type": "Point"}, "id": "2727", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61464012059206, 41.95318792075283, -85.61464012059206, 41.95318792075283], "geometry": {"coordinates": [-85.61464012059206, 41.95318792075283], "type": "Point"}, "id": "2728", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61464118748674, 41.95332874949308, -85.61464118748674, 41.95332874949308], "geometry": {"coordinates": [-85.61464118748674, 41.95332874949308], "type": "Point"}, "id": "2729", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463016533138, 41.95346840447079, -85.61463016533138, 41.95346840447079], "geometry": {"coordinates": [-85.61463016533138, 41.95346840447079], "type": "Point"}, "id": "2730", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.6145458779485, 41.95358883755263, -85.6145458779485, 41.95358883755263], "geometry": {"coordinates": [-85.6145458779485, 41.95358883755263], "type": "Point"}, "id": "2731", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61438707694707, 41.95366155465087, -85.61438707694707, 41.95366155465087], "geometry": {"coordinates": [-85.61438707694707, 41.95366155465087], "type": "Point"}, "id": "2732", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.6397719, 41.9638513, -85.6397719, 41.9638513], "geometry": {"coordinates": [-85.6397719, 41.9638513], "type": "Point"}, "id": "2733", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63958894094286, 41.963852014910266, -85.63958894094286, 41.963852014910266], "geometry": {"coordinates": [-85.63958894094286, 41.963852014910266], "type": "Point"}, "id": "2734", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63940598188572, 41.96385272982052, -85.63940598188572, 41.96385272982052], "geometry": {"coordinates": [-85.63940598188572, 41.96385272982052], "type": "Point"}, "id": "2735", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63922302282859, 41.963853444730766, -85.63922302282859, 41.963853444730766], "geometry": {"coordinates": [-85.63922302282859, 41.963853444730766], "type": "Point"}, "id": "2736", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63904006377145, 41.963854159641, -85.63904006377145, 41.963854159641], "geometry": {"coordinates": [-85.63904006377145, 41.963854159641], "type": "Point"}, "id": "2737", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63885710471432, 41.96385487455123, -85.63885710471432, 41.96385487455123], "geometry": {"coordinates": [-85.63885710471432, 41.96385487455123], "type": "Point"}, "id": "2738", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63867414679436, 41.96385573291171, -85.63867414679436, 41.96385573291171], "geometry": {"coordinates": [-85.63867414679436, 41.96385573291171], "type": "Point"}, "id": "2739", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63849118911641, 41.963856621801156, -85.63849118911641, 41.963856621801156], "geometry": {"coordinates": [-85.63849118911641, 41.963856621801156], "type": "Point"}, "id": "2740", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63830823143847, 41.96385751069059, -85.63830823143847, 41.96385751069059], "geometry": {"coordinates": [-85.63830823143847, 41.96385751069059], "type": "Point"}, "id": "2741", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63812527376052, 41.963858399580005, -85.63812527376052, 41.963858399580005], "geometry": {"coordinates": [-85.63812527376052, 41.963858399580005], "type": "Point"}, "id": "2742", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63794231608259, 41.96385928846941, -85.63794231608259, 41.96385928846941], "geometry": {"coordinates": [-85.63794231608259, 41.96385928846941], "type": "Point"}, "id": "2743", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63775935840464, 41.96386017735882, -85.63775935840464, 41.96386017735882], "geometry": {"coordinates": [-85.63775935840464, 41.96386017735882], "type": "Point"}, "id": "2744", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.6375764007267, 41.9638610662482, -85.6375764007267, 41.9638610662482], "geometry": {"coordinates": [-85.6375764007267, 41.9638610662482], "type": "Point"}, "id": "2745", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63739344304875, 41.963861955137574, -85.63739344304875, 41.963861955137574], "geometry": {"coordinates": [-85.63739344304875, 41.963861955137574], "type": "Point"}, "id": "2746", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63721048537082, 41.96386284402693, -85.63721048537082, 41.96386284402693], "geometry": {"coordinates": [-85.63721048537082, 41.96386284402693], "type": "Point"}, "id": "2747", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63702752769287, 41.96386373291627, -85.63702752769287, 41.96386373291627], "geometry": {"coordinates": [-85.63702752769287, 41.96386373291627], "type": "Point"}, "id": "2748", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63684457001493, 41.963864621805605, -85.63684457001493, 41.963864621805605], "geometry": {"coordinates": [-85.63684457001493, 41.963864621805605], "type": "Point"}, "id": "2749", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63666161233698, 41.96386551069492, -85.63666161233698, 41.96386551069492], "geometry": {"coordinates": [-85.63666161233698, 41.96386551069492], "type": "Point"}, "id": "2750", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63647865418717, 41.9638663, -85.63647865418717, 41.9638663], "geometry": {"coordinates": [-85.63647865418717, 41.9638663], "type": "Point"}, "id": "2751", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63629569260378, 41.9638663, -85.63629569260378, 41.9638663], "geometry": {"coordinates": [-85.63629569260378, 41.9638663], "type": "Point"}, "id": "2752", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63611273102065, 41.96386629879407, -85.63611273102065, 41.96386629879407], "geometry": {"coordinates": [-85.63611273102065, 41.96386629879407], "type": "Point"}, "id": "2753", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63592976944628, 41.96386625610921, -85.63592976944628, 41.96386625610921], "geometry": {"coordinates": [-85.63592976944628, 41.96386625610921], "type": "Point"}, "id": "2754", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63574680787188, 41.963866213424346, -85.63574680787188, 41.963866213424346], "geometry": {"coordinates": [-85.63574680787188, 41.963866213424346], "type": "Point"}, "id": "2755", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63556384629752, 41.96386617073948, -85.63556384629752, 41.96386617073948], "geometry": {"coordinates": [-85.63556384629752, 41.96386617073948], "type": "Point"}, "id": "2756", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63538088472312, 41.963866128054605, -85.63538088472312, 41.963866128054605], "geometry": {"coordinates": [-85.63538088472312, 41.963866128054605], "type": "Point"}, "id": "2757", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63519792314875, 41.963866085369744, -85.63519792314875, 41.963866085369744], "geometry": {"coordinates": [-85.63519792314875, 41.963866085369744], "type": "Point"}, "id": "2758", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63501496157437, 41.96386604268487, -85.63501496157437, 41.96386604268487], "geometry": {"coordinates": [-85.63501496157437, 41.96386604268487], "type": "Point"}, "id": "2759", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.64431939999999, 41.93994440000001, -85.64431939999999, 41.93994440000001], "geometry": {"coordinates": [-85.64431939999999, 41.93994440000001], "type": "Point"}, "id": "2760", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64437414246188, 41.94007740081265, -85.64437414246188, 41.94007740081265], "geometry": {"coordinates": [-85.64437414246188, 41.94007740081265], "type": "Point"}, "id": "2761", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64455896550132, 41.94009193548425, -85.64455896550132, 41.94009193548425], "geometry": {"coordinates": [-85.64455896550132, 41.94009193548425], "type": "Point"}, "id": "2762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64475369925916, 41.9400914010759, -85.64475369925916, 41.9400914010759], "geometry": {"coordinates": [-85.64475369925916, 41.9400914010759], "type": "Point"}, "id": "2763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64494843301698, 41.94009086666754, -85.64494843301698, 41.94009086666754], "geometry": {"coordinates": [-85.64494843301698, 41.94009086666754], "type": "Point"}, "id": "2764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64514316677482, 41.940090332259174, -85.64514316677482, 41.940090332259174], "geometry": {"coordinates": [-85.64514316677482, 41.940090332259174], "type": "Point"}, "id": "2765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64530668982098, 41.940032970577555, -85.64530668982098, 41.940032970577555], "geometry": {"coordinates": [-85.64530668982098, 41.940032970577555], "type": "Point"}, "id": "2766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.6393662, 41.940078, -85.6393662, 41.940078], "geometry": {"coordinates": [-85.6393662, 41.940078], "type": "Point"}, "id": "2767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63937017833402, 41.94021868757875, -85.63937017833402, 41.94021868757875], "geometry": {"coordinates": [-85.63937017833402, 41.94021868757875], "type": "Point"}, "id": "2768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63937415666804, 41.94035937484711, -85.63937415666804, 41.94035937484711], "geometry": {"coordinates": [-85.63937415666804, 41.94035937484711], "type": "Point"}, "id": "2769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63937813500208, 41.94050006180507, -85.63937813500208, 41.94050006180507], "geometry": {"coordinates": [-85.63937813500208, 41.94050006180507], "type": "Point"}, "id": "2770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63938211333611, 41.94064074845264, -85.63938211333611, 41.94064074845264], "geometry": {"coordinates": [-85.63938211333611, 41.94064074845264], "type": "Point"}, "id": "2771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63938609167012, 41.94078143478981, -85.63938609167012, 41.94078143478981], "geometry": {"coordinates": [-85.63938609167012, 41.94078143478981], "type": "Point"}, "id": "2772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63939007000415, 41.94092212081658, -85.63939007000415, 41.94092212081658], "geometry": {"coordinates": [-85.63939007000415, 41.94092212081658], "type": "Point"}, "id": "2773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63939404833819, 41.94106280653297, -85.63939404833819, 41.94106280653297], "geometry": {"coordinates": [-85.63939404833819, 41.94106280653297], "type": "Point"}, "id": "2774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.6393980266722, 41.94120349193896, -85.6393980266722, 41.94120349193896], "geometry": {"coordinates": [-85.6393980266722, 41.94120349193896], "type": "Point"}, "id": "2775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63940200738809, 41.9413441769884, -85.63940200738809, 41.9413441769884], "geometry": {"coordinates": [-85.63940200738809, 41.9413441769884], "type": "Point"}, "id": "2776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.6394078785289, 41.94148482510924, -85.6394078785289, 41.94148482510924], "geometry": {"coordinates": [-85.6394078785289, 41.94148482510924], "type": "Point"}, "id": "2777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63941374966973, 41.94162547291984, -85.63941374966973, 41.94162547291984], "geometry": {"coordinates": [-85.63941374966973, 41.94162547291984], "type": "Point"}, "id": "2778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63941962081053, 41.941766120420205, -85.63941962081053, 41.941766120420205], "geometry": {"coordinates": [-85.63941962081053, 41.941766120420205], "type": "Point"}, "id": "2779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63942549195134, 41.941906767610334, -85.63942549195134, 41.941906767610334], "geometry": {"coordinates": [-85.63942549195134, 41.941906767610334], "type": "Point"}, "id": "2780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63943136309214, 41.94204741449023, -85.63943136309214, 41.94204741449023], "geometry": {"coordinates": [-85.63943136309214, 41.94204741449023], "type": "Point"}, "id": "2781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63943723423296, 41.94218806105989, -85.63943723423296, 41.94218806105989], "geometry": {"coordinates": [-85.63943723423296, 41.94218806105989], "type": "Point"}, "id": "2782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63944310537376, 41.94232870731931, -85.63944310537376, 41.94232870731931], "geometry": {"coordinates": [-85.63944310537376, 41.94232870731931], "type": "Point"}, "id": "2783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63944897651457, 41.94246935326851, -85.63944897651457, 41.94246935326851], "geometry": {"coordinates": [-85.63944897651457, 41.94246935326851], "type": "Point"}, "id": "2784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.637424, 41.938692, -85.637424, 41.938692], "geometry": {"coordinates": [-85.637424, 41.938692], "type": "Point"}, "id": "2785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63723953333333, 41.93869321111121, -85.63723953333333, 41.93869321111121], "geometry": {"coordinates": [-85.63723953333333, 41.93869321111121], "type": "Point"}, "id": "2786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63705506666666, 41.9386944222224, -85.63705506666666, 41.9386944222224], "geometry": {"coordinates": [-85.63705506666666, 41.9386944222224], "type": "Point"}, "id": "2787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63687060000001, 41.938695633333545, -85.63687060000001, 41.938695633333545], "geometry": {"coordinates": [-85.63687060000001, 41.938695633333545], "type": "Point"}, "id": "2788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63668613333333, 41.93869684444468, -85.63668613333333, 41.93869684444468], "geometry": {"coordinates": [-85.63668613333333, 41.93869684444468], "type": "Point"}, "id": "2789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63650166666667, 41.9386980555558, -85.63650166666667, 41.9386980555558], "geometry": {"coordinates": [-85.63650166666667, 41.9386980555558], "type": "Point"}, "id": "2790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63631720000001, 41.93869926666689, -85.63631720000001, 41.93869926666689], "geometry": {"coordinates": [-85.63631720000001, 41.93869926666689], "type": "Point"}, "id": "2791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63613273333333, 41.93870047777794, -85.63613273333333, 41.93870047777794], "geometry": {"coordinates": [-85.63613273333333, 41.93870047777794], "type": "Point"}, "id": "2792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63594826666669, 41.93870168888899, -85.63594826666669, 41.93870168888899], "geometry": {"coordinates": [-85.63594826666669, 41.93870168888899], "type": "Point"}, "id": "2793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.636163, 41.94738199999999, -85.636163, 41.94738199999999], "geometry": {"coordinates": [-85.636163, 41.94738199999999], "type": "Point"}, "id": "2794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.636258, 41.94750380104719, -85.636258, 41.94750380104719], "geometry": {"coordinates": [-85.636258, 41.94750380104719], "type": "Point"}, "id": "2795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.636353, 41.947625601861674, -85.636353, 41.947625601861674], "geometry": {"coordinates": [-85.636353, 41.947625601861674], "type": "Point"}, "id": "2796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63644799999999, 41.947747402443454, -85.63644799999999, 41.947747402443454], "geometry": {"coordinates": [-85.63644799999999, 41.947747402443454], "type": "Point"}, "id": "2797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63654299999999, 41.947869202792525, -85.63654299999999, 41.947869202792525], "geometry": {"coordinates": [-85.63654299999999, 41.947869202792525], "type": "Point"}, "id": "2798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63663799999999, 41.947991002908886, -85.63663799999999, 41.947991002908886], "geometry": {"coordinates": [-85.63663799999999, 41.947991002908886], "type": "Point"}, "id": "2799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63673299999999, 41.94811280279252, -85.63673299999999, 41.94811280279252], "geometry": {"coordinates": [-85.63673299999999, 41.94811280279252], "type": "Point"}, "id": "2800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.636828, 41.94823460244346, -85.636828, 41.94823460244346], "geometry": {"coordinates": [-85.636828, 41.94823460244346], "type": "Point"}, "id": "2801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63692299999998, 41.94835640186169, -85.63692299999998, 41.94835640186169], "geometry": {"coordinates": [-85.63692299999998, 41.94835640186169], "type": "Point"}, "id": "2802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63701799999998, 41.948478201047195, -85.63701799999998, 41.948478201047195], "geometry": {"coordinates": [-85.63701799999998, 41.948478201047195], "type": "Point"}, "id": "2803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.634686, 41.95241499999999, -85.634686, 41.95241499999999], "geometry": {"coordinates": [-85.634686, 41.95241499999999], "type": "Point"}, "id": "2804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.6348677965774, 41.952413002235645, -85.6348677965774, 41.952413002235645], "geometry": {"coordinates": [-85.6348677965774, 41.952413002235645], "type": "Point"}, "id": "2805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63504959315482, 41.95241100447123, -85.63504959315482, 41.95241100447123], "geometry": {"coordinates": [-85.63504959315482, 41.95241100447123], "type": "Point"}, "id": "2806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63523138973223, 41.952409006706745, -85.63523138973223, 41.952409006706745], "geometry": {"coordinates": [-85.63523138973223, 41.952409006706745], "type": "Point"}, "id": "2807", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63541318630962, 41.95240700894222, -85.63541318630962, 41.95240700894222], "geometry": {"coordinates": [-85.63541318630962, 41.95240700894222], "type": "Point"}, "id": "2808", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63559498288704, 41.95240501117761, -85.63559498288704, 41.95240501117761], "geometry": {"coordinates": [-85.63559498288704, 41.95240501117761], "type": "Point"}, "id": "2809", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63577677946444, 41.95240301341294, -85.63577677946444, 41.95240301341294], "geometry": {"coordinates": [-85.63577677946444, 41.95240301341294], "type": "Point"}, "id": "2810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63595857604183, 41.95240101564822, -85.63595857604183, 41.95240101564822], "geometry": {"coordinates": [-85.63595857604183, 41.95240101564822], "type": "Point"}, "id": "2811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63614037261924, 41.95239901788342, -85.63614037261924, 41.95239901788342], "geometry": {"coordinates": [-85.63614037261924, 41.95239901788342], "type": "Point"}, "id": "2812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63632217887437, 41.95239807437771, -85.63632217887437, 41.95239807437771], "geometry": {"coordinates": [-85.63632217887437, 41.95239807437771], "type": "Point"}, "id": "2813", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63650399518252, 41.952398226017664, -85.63650399518252, 41.952398226017664], "geometry": {"coordinates": [-85.63650399518252, 41.952398226017664], "type": "Point"}, "id": "2814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63668581149071, 41.95239837765763, -85.63668581149071, 41.95239837765763], "geometry": {"coordinates": [-85.63668581149071, 41.95239837765763], "type": "Point"}, "id": "2815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63686762779888, 41.952398529297575, -85.63686762779888, 41.952398529297575], "geometry": {"coordinates": [-85.63686762779888, 41.952398529297575], "type": "Point"}, "id": "2816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63704944410703, 41.95239868093754, -85.63704944410703, 41.95239868093754], "geometry": {"coordinates": [-85.63704944410703, 41.95239868093754], "type": "Point"}, "id": "2817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63723126041522, 41.952398832577494, -85.63723126041522, 41.952398832577494], "geometry": {"coordinates": [-85.63723126041522, 41.952398832577494], "type": "Point"}, "id": "2818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63741307672336, 41.95239898421745, -85.63741307672336, 41.95239898421745], "geometry": {"coordinates": [-85.63741307672336, 41.95239898421745], "type": "Point"}, "id": "2819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63759487666019, 41.952397277138815, -85.63759487666019, 41.952397277138815], "geometry": {"coordinates": [-85.63759487666019, 41.952397277138815], "type": "Point"}, "id": "2820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63777667469513, 41.95239535413287, -85.63777667469513, 41.95239535413287], "geometry": {"coordinates": [-85.63777667469513, 41.95239535413287], "type": "Point"}, "id": "2821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63795847273008, 41.95239343112686, -85.63795847273008, 41.95239343112686], "geometry": {"coordinates": [-85.63795847273008, 41.95239343112686], "type": "Point"}, "id": "2822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63814027076502, 41.9523915081208, -85.63814027076502, 41.9523915081208], "geometry": {"coordinates": [-85.63814027076502, 41.9523915081208], "type": "Point"}, "id": "2823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63832206879997, 41.952389585114666, -85.63832206879997, 41.952389585114666], "geometry": {"coordinates": [-85.63832206879997, 41.952389585114666], "type": "Point"}, "id": "2824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63850386683491, 41.952387662108485, -85.63850386683491, 41.952387662108485], "geometry": {"coordinates": [-85.63850386683491, 41.952387662108485], "type": "Point"}, "id": "2825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63868566735123, 41.95238598094205, -85.63868566735123, 41.95238598094205], "geometry": {"coordinates": [-85.63868566735123, 41.95238598094205], "type": "Point"}, "id": "2826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63886748367561, 41.952385840471024, -85.63886748367561, 41.952385840471024], "geometry": {"coordinates": [-85.63886748367561, 41.952385840471024], "type": "Point"}, "id": "2827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.64801849999999, 41.94477869999999, -85.64801849999999, 41.94477869999999], "geometry": {"coordinates": [-85.64801849999999, 41.94477869999999], "type": "Point"}, "id": "2828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64784031606945, 41.94480004172205, -85.64784031606945, 41.94480004172205], "geometry": {"coordinates": [-85.64784031606945, 41.94480004172205], "type": "Point"}, "id": "2829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.6476621321389, 41.94482138343697, -85.6476621321389, 41.94482138343697], "geometry": {"coordinates": [-85.6476621321389, 41.94482138343697], "type": "Point"}, "id": "2830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64748725851494, 41.944852445116105, -85.64748725851494, 41.944852445116105], "geometry": {"coordinates": [-85.64748725851494, 41.944852445116105], "type": "Point"}, "id": "2831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64731690244655, 41.944896771558014, -85.64731690244655, 41.944896771558014], "geometry": {"coordinates": [-85.64731690244655, 41.944896771558014], "type": "Point"}, "id": "2832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64714654637817, 41.944941097969114, -85.64714654637817, 41.944941097969114], "geometry": {"coordinates": [-85.64714654637817, 41.944941097969114], "type": "Point"}, "id": "2833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64697941674578, 41.94498980307762, -85.64697941674578, 41.94498980307762], "geometry": {"coordinates": [-85.64697941674578, 41.94498980307762], "type": "Point"}, "id": "2834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64683756144383, 41.94507279407186, -85.64683756144383, 41.94507279407186], "geometry": {"coordinates": [-85.64683756144383, 41.94507279407186], "type": "Point"}, "id": "2835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64669571511482, 41.94515579344508, -85.64669571511482, 41.94515579344508], "geometry": {"coordinates": [-85.64669571511482, 41.94515579344508], "type": "Point"}, "id": "2836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64659135148275, 41.94526351589609, -85.64659135148275, 41.94526351589609], "geometry": {"coordinates": [-85.64659135148275, 41.94526351589609], "type": "Point"}, "id": "2837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64649752036792, 41.945378185287296, -85.64649752036792, 41.945378185287296], "geometry": {"coordinates": [-85.64649752036792, 41.945378185287296], "type": "Point"}, "id": "2838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64641470978515, 41.9454963532465, -85.64641470978515, 41.9454963532465], "geometry": {"coordinates": [-85.64641470978515, 41.9454963532465], "type": "Point"}, "id": "2839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64636828964689, 41.94562607412202, -85.64636828964689, 41.94562607412202], "geometry": {"coordinates": [-85.64636828964689, 41.94562607412202], "type": "Point"}, "id": "2840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64632392377342, 41.94575598178833, -85.64632392377342, 41.94575598178833], "geometry": {"coordinates": [-85.64632392377342, 41.94575598178833], "type": "Point"}, "id": "2841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.634686, 41.951158, -85.634686, 41.951158], "geometry": {"coordinates": [-85.634686, 41.951158], "type": "Point"}, "id": "2842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63487153352087, 41.95115649854456, -85.63487153352087, 41.95115649854456], "geometry": {"coordinates": [-85.63487153352087, 41.95115649854456], "type": "Point"}, "id": "2843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63505706704169, 41.951154997089105, -85.63505706704169, 41.951154997089105], "geometry": {"coordinates": [-85.63505706704169, 41.951154997089105], "type": "Point"}, "id": "2844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63524260056255, 41.95115349563359, -85.63524260056255, 41.95115349563359], "geometry": {"coordinates": [-85.63524260056255, 41.95115349563359], "type": "Point"}, "id": "2845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63542813408338, 41.951151994178055, -85.63542813408338, 41.951151994178055], "geometry": {"coordinates": [-85.63542813408338, 41.951151994178055], "type": "Point"}, "id": "2846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63561366760423, 41.951150492722476, -85.63561366760423, 41.951150492722476], "geometry": {"coordinates": [-85.63561366760423, 41.951150492722476], "type": "Point"}, "id": "2847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63579920112507, 41.95114899126687, -85.63579920112507, 41.95114899126687], "geometry": {"coordinates": [-85.63579920112507, 41.95114899126687], "type": "Point"}, "id": "2848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63598473464592, 41.95114748981123, -85.63598473464592, 41.95114748981123], "geometry": {"coordinates": [-85.63598473464592, 41.95114748981123], "type": "Point"}, "id": "2849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63617026816677, 41.95114598835554, -85.63617026816677, 41.95114598835554], "geometry": {"coordinates": [-85.63617026816677, 41.95114598835554], "type": "Point"}, "id": "2850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.6363558016157, 41.95114448199508, -85.6363558016157, 41.95114448199508], "geometry": {"coordinates": [-85.6363558016157, 41.95114448199508], "type": "Point"}, "id": "2851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63654133504755, 41.951142974468716, -85.63654133504755, 41.951142974468716], "geometry": {"coordinates": [-85.63654133504755, 41.951142974468716], "type": "Point"}, "id": "2852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.6367268684794, 41.95114146694231, -85.6367268684794, 41.95114146694231], "geometry": {"coordinates": [-85.6367268684794, 41.95114146694231], "type": "Point"}, "id": "2853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63691240191123, 41.95113995941587, -85.63691240191123, 41.95113995941587], "geometry": {"coordinates": [-85.63691240191123, 41.95113995941587], "type": "Point"}, "id": "2854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63709793534308, 41.951138451889406, -85.63709793534308, 41.951138451889406], "geometry": {"coordinates": [-85.63709793534308, 41.951138451889406], "type": "Point"}, "id": "2855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63728346877491, 41.951136944362894, -85.63728346877491, 41.951136944362894], "geometry": {"coordinates": [-85.63728346877491, 41.951136944362894], "type": "Point"}, "id": "2856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63746899586228, 41.95113511605853, -85.63746899586228, 41.95113511605853], "geometry": {"coordinates": [-85.63746899586228, 41.95113511605853], "type": "Point"}, "id": "2857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63765450864379, 41.95113256444939, -85.63765450864379, 41.95113256444939], "geometry": {"coordinates": [-85.63765450864379, 41.95113256444939], "type": "Point"}, "id": "2858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.6378400214253, 41.95113001284014, -85.6378400214253, 41.95113001284014], "geometry": {"coordinates": [-85.6378400214253, 41.95113001284014], "type": "Point"}, "id": "2859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63802553420682, 41.951127461230776, -85.63802553420682, 41.951127461230776], "geometry": {"coordinates": [-85.63802553420682, 41.951127461230776], "type": "Point"}, "id": "2860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63821104698833, 41.95112490962132, -85.63821104698833, 41.95112490962132], "geometry": {"coordinates": [-85.63821104698833, 41.95112490962132], "type": "Point"}, "id": "2861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63839655976984, 41.95112235801176, -85.63839655976984, 41.95112235801176], "geometry": {"coordinates": [-85.63839655976984, 41.95112235801176], "type": "Point"}, "id": "2862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.627629, 41.946498000000005, -85.627629, 41.946498000000005], "geometry": {"coordinates": [-85.627629, 41.946498000000005], "type": "Point"}, "id": "2863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62751671428572, 41.946617286383876, -85.62751671428572, 41.946617286383876], "geometry": {"coordinates": [-85.62751671428572, 41.946617286383876], "type": "Point"}, "id": "2864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62740442857142, 41.946736572544545, -85.62740442857142, 41.946736572544545], "geometry": {"coordinates": [-85.62740442857142, 41.946736572544545], "type": "Point"}, "id": "2865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62729214285714, 41.946855858482024, -85.62729214285714, 41.946855858482024], "geometry": {"coordinates": [-85.62729214285714, 41.946855858482024], "type": "Point"}, "id": "2866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62717985714285, 41.94697514419631, -85.62717985714285, 41.94697514419631], "geometry": {"coordinates": [-85.62717985714285, 41.94697514419631], "type": "Point"}, "id": "2867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62706757142857, 41.9470944296874, -85.62706757142857, 41.9470944296874], "geometry": {"coordinates": [-85.62706757142857, 41.9470944296874], "type": "Point"}, "id": "2868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62695528571427, 41.947213714955296, -85.62695528571427, 41.947213714955296], "geometry": {"coordinates": [-85.62695528571427, 41.947213714955296], "type": "Point"}, "id": "2869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.6370124, 41.9413618, -85.6370124, 41.9413618], "geometry": {"coordinates": [-85.6370124, 41.9413618], "type": "Point"}, "id": "2870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63719751254001, 41.941360817970654, -85.63719751254001, 41.941360817970654], "geometry": {"coordinates": [-85.63719751254001, 41.941360817970654], "type": "Point"}, "id": "2871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63738262508004, 41.941359835941284, -85.63738262508004, 41.941359835941284], "geometry": {"coordinates": [-85.63738262508004, 41.941359835941284], "type": "Point"}, "id": "2872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63756773762007, 41.941358853911915, -85.63756773762007, 41.941358853911915], "geometry": {"coordinates": [-85.63756773762007, 41.941358853911915], "type": "Point"}, "id": "2873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63775285016008, 41.94135787188251, -85.63775285016008, 41.94135787188251], "geometry": {"coordinates": [-85.63775285016008, 41.94135787188251], "type": "Point"}, "id": "2874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63793796270011, 41.9413568898531, -85.63793796270011, 41.9413568898531], "geometry": {"coordinates": [-85.63793796270011, 41.9413568898531], "type": "Point"}, "id": "2875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63812307524014, 41.94135590782368, -85.63812307524014, 41.94135590782368], "geometry": {"coordinates": [-85.63812307524014, 41.94135590782368], "type": "Point"}, "id": "2876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63830818255545, 41.941354538809115, -85.63830818255545, 41.941354538809115], "geometry": {"coordinates": [-85.63830818255545, 41.941354538809115], "type": "Point"}, "id": "2877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63849328427565, 41.9413527553748, -85.63849328427565, 41.9413527553748], "geometry": {"coordinates": [-85.63849328427565, 41.9413527553748], "type": "Point"}, "id": "2878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63867838599585, 41.941350971940444, -85.63867838599585, 41.941350971940444], "geometry": {"coordinates": [-85.63867838599585, 41.941350971940444], "type": "Point"}, "id": "2879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63886348771602, 41.941349188506024, -85.63886348771602, 41.941349188506024], "geometry": {"coordinates": [-85.63886348771602, 41.941349188506024], "type": "Point"}, "id": "2880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63904858943623, 41.94134740507156, -85.63904858943623, 41.94134740507156], "geometry": {"coordinates": [-85.63904858943623, 41.94134740507156], "type": "Point"}, "id": "2881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63923369115642, 41.941345621637055, -85.63923369115642, 41.941345621637055], "geometry": {"coordinates": [-85.63923369115642, 41.941345621637055], "type": "Point"}, "id": "2882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63941879327218, 41.94134386278453, -85.63941879327218, 41.94134386278453], "geometry": {"coordinates": [-85.63941879327218, 41.94134386278453], "type": "Point"}, "id": "2883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63960389935237, 41.94134235030877, -85.63960389935237, 41.94134235030877], "geometry": {"coordinates": [-85.63960389935237, 41.94134235030877], "type": "Point"}, "id": "2884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63978900543258, 41.941340837832975, -85.63978900543258, 41.941340837832975], "geometry": {"coordinates": [-85.63978900543258, 41.941340837832975], "type": "Point"}, "id": "2885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63997411151279, 41.94133932535714, -85.63997411151279, 41.94133932535714], "geometry": {"coordinates": [-85.63997411151279, 41.94133932535714], "type": "Point"}, "id": "2886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64015921759298, 41.94133781288127, -85.64015921759298, 41.94133781288127], "geometry": {"coordinates": [-85.64015921759298, 41.94133781288127], "type": "Point"}, "id": "2887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64034432367318, 41.94133630040536, -85.64034432367318, 41.94133630040536], "geometry": {"coordinates": [-85.64034432367318, 41.94133630040536], "type": "Point"}, "id": "2888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64052942975336, 41.94133478792942, -85.64052942975336, 41.94133478792942], "geometry": {"coordinates": [-85.64052942975336, 41.94133478792942], "type": "Point"}, "id": "2889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64071452473819, 41.941332747415416, -85.64071452473819, 41.941332747415416], "geometry": {"coordinates": [-85.64071452473819, 41.941332747415416], "type": "Point"}, "id": "2890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64089960394848, 41.941329956179814, -85.64089960394848, 41.941329956179814], "geometry": {"coordinates": [-85.64089960394848, 41.941329956179814], "type": "Point"}, "id": "2891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64108468315878, 41.9413271649441, -85.64108468315878, 41.9413271649441], "geometry": {"coordinates": [-85.64108468315878, 41.9413271649441], "type": "Point"}, "id": "2892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64126976236909, 41.94132437370826, -85.64126976236909, 41.94132437370826], "geometry": {"coordinates": [-85.64126976236909, 41.94132437370826], "type": "Point"}, "id": "2893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64145484157939, 41.9413215824723, -85.64145484157939, 41.9413215824723], "geometry": {"coordinates": [-85.64145484157939, 41.9413215824723], "type": "Point"}, "id": "2894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.6416399207897, 41.94131879123621, -85.6416399207897, 41.94131879123621], "geometry": {"coordinates": [-85.6416399207897, 41.94131879123621], "type": "Point"}, "id": "2895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.650247, 41.95096, -85.650247, 41.95096], "geometry": {"coordinates": [-85.650247, 41.95096], "type": "Point"}, "id": "2896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.65006296579878, 41.95095373965731, -85.65006296579878, 41.95095373965731], "geometry": {"coordinates": [-85.65006296579878, 41.95095373965731], "type": "Point"}, "id": "2897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64988061733725, 41.95096884204249, -85.64988061733725, 41.95096884204249], "geometry": {"coordinates": [-85.64988061733725, 41.95096884204249], "type": "Point"}, "id": "2898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64971743410756, 41.95102775194085, -85.64971743410756, 41.95102775194085], "geometry": {"coordinates": [-85.64971743410756, 41.95102775194085], "type": "Point"}, "id": "2899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64961011428001, 41.9511382816522, -85.64961011428001, 41.9511382816522], "geometry": {"coordinates": [-85.64961011428001, 41.9511382816522], "type": "Point"}, "id": "2900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.6495209421971, 41.951258010503466, -85.6495209421971, 41.951258010503466], "geometry": {"coordinates": [-85.6495209421971, 41.951258010503466], "type": "Point"}, "id": "2901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64945028103531, 41.951384543273065, -85.64945028103531, 41.951384543273065], "geometry": {"coordinates": [-85.64945028103531, 41.951384543273065], "type": "Point"}, "id": "2902", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64937492981925, 41.95150956543377, -85.64937492981925, 41.95150956543377], "geometry": {"coordinates": [-85.64937492981925, 41.95150956543377], "type": "Point"}, "id": "2903", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64929919976724, 41.95163446535138, -85.64929919976724, 41.95163446535138], "geometry": {"coordinates": [-85.64929919976724, 41.95163446535138], "type": "Point"}, "id": "2904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64922346971524, 41.951759365024266, -85.64922346971524, 41.951759365024266], "geometry": {"coordinates": [-85.64922346971524, 41.951759365024266], "type": "Point"}, "id": "2905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64914773966323, 41.9518842644524, -85.64914773966323, 41.9518842644524], "geometry": {"coordinates": [-85.64914773966323, 41.9518842644524], "type": "Point"}, "id": "2906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64909358358818, 41.95201341468772, -85.64909358358818, 41.95201341468772], "geometry": {"coordinates": [-85.64909358358818, 41.95201341468772], "type": "Point"}, "id": "2907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64909661485207, 41.95214975355605, -85.64909661485207, 41.95214975355605], "geometry": {"coordinates": [-85.64909661485207, 41.95214975355605], "type": "Point"}, "id": "2908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64916999742773, 41.95227400853037, -85.64916999742773, 41.95227400853037], "geometry": {"coordinates": [-85.64916999742773, 41.95227400853037], "type": "Point"}, "id": "2909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64928121351119, 41.95238301431317, -85.64928121351119, 41.95238301431317], "geometry": {"coordinates": [-85.64928121351119, 41.95238301431317], "type": "Point"}, "id": "2910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.6494028596585, 41.95248590773337, -85.6494028596585, 41.95248590773337], "geometry": {"coordinates": [-85.6494028596585, 41.95248590773337], "type": "Point"}, "id": "2911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64952450580577, 41.95258880098748, -85.64952450580577, 41.95258880098748], "geometry": {"coordinates": [-85.64952450580577, 41.95258880098748], "type": "Point"}, "id": "2912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64964615195306, 41.95269169407548, -85.64964615195306, 41.95269169407548], "geometry": {"coordinates": [-85.64964615195306, 41.95269169407548], "type": "Point"}, "id": "2913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64976779810036, 41.95279458699739, -85.64976779810036, 41.95279458699739], "geometry": {"coordinates": [-85.64976779810036, 41.95279458699739], "type": "Point"}, "id": "2914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64988944424763, 41.952897479753204, -85.64988944424763, 41.952897479753204], "geometry": {"coordinates": [-85.64988944424763, 41.952897479753204], "type": "Point"}, "id": "2915", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.65001515140794, 41.95299743391781, -85.65001515140794, 41.95299743391781], "geometry": {"coordinates": [-85.65001515140794, 41.95299743391781], "type": "Point"}, "id": "2916", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.65014187575062, 41.95309566906665, -85.65014187575062, 41.95309566906665], "geometry": {"coordinates": [-85.65014187575062, 41.95309566906665], "type": "Point"}, "id": "2917", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.62566999999999, 41.929295, -85.62566999999999, 41.929295], "geometry": {"coordinates": [-85.62566999999999, 41.929295], "type": "Point"}, "id": "2918", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570390996443, 41.92942658842375, -85.62570390996443, 41.92942658842375], "geometry": {"coordinates": [-85.62570390996443, 41.92942658842375], "type": "Point"}, "id": "2919", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571302245347, 41.929560745663466, -85.62571302245347, 41.929560745663466], "geometry": {"coordinates": [-85.62571302245347, 41.929560745663466], "type": "Point"}, "id": "2920", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257163889911, 41.929695153131625, -85.6257163889911, 41.929695153131625], "geometry": {"coordinates": [-85.6257163889911, 41.929695153131625], "type": "Point"}, "id": "2921", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257197555287, 41.92982956031658, -85.6257197555287, 41.92982956031658], "geometry": {"coordinates": [-85.6257197555287, 41.92982956031658], "type": "Point"}, "id": "2922", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257231220663, 41.92996396721834, -85.6257231220663, 41.92996396721834], "geometry": {"coordinates": [-85.6257231220663, 41.92996396721834], "type": "Point"}, "id": "2923", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257264886039, 41.93009837383691, -85.6257264886039, 41.93009837383691], "geometry": {"coordinates": [-85.6257264886039, 41.93009837383691], "type": "Point"}, "id": "2924", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62572869778238, 41.93023278198021, -85.62572869778238, 41.93023278198021], "geometry": {"coordinates": [-85.62572869778238, 41.93023278198021], "type": "Point"}, "id": "2925", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62572619587489, 41.93036719847921, -85.62572619587489, 41.93036719847921], "geometry": {"coordinates": [-85.62572619587489, 41.93036719847921], "type": "Point"}, "id": "2926", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257236939674, 41.93050161469495, -85.6257236939674, 41.93050161469495], "geometry": {"coordinates": [-85.6257236939674, 41.93050161469495], "type": "Point"}, "id": "2927", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62572119205991, 41.93063603062747, -85.62572119205991, 41.93063603062747], "geometry": {"coordinates": [-85.62572119205991, 41.93063603062747], "type": "Point"}, "id": "2928", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571869015242, 41.93077044627673, -85.62571869015242, 41.93077044627673], "geometry": {"coordinates": [-85.62571869015242, 41.93077044627673], "type": "Point"}, "id": "2929", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571618824492, 41.93090486164275, -85.62571618824492, 41.93090486164275], "geometry": {"coordinates": [-85.62571618824492, 41.93090486164275], "type": "Point"}, "id": "2930", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571368633743, 41.93103927672554, -85.62571368633743, 41.93103927672554], "geometry": {"coordinates": [-85.62571368633743, 41.93103927672554], "type": "Point"}, "id": "2931", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571118442993, 41.93117369152508, -85.62571118442993, 41.93117369152508], "geometry": {"coordinates": [-85.62571118442993, 41.93117369152508], "type": "Point"}, "id": "2932", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257089865272, 41.9313081089677, -85.6257089865272, 41.9313081089677], "geometry": {"coordinates": [-85.6257089865272, 41.9313081089677], "type": "Point"}, "id": "2933", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570681281782, 41.93144252635994, -85.62570681281782, 41.93144252635994], "geometry": {"coordinates": [-85.62570681281782, 41.93144252635994], "type": "Point"}, "id": "2934", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570463910845, 41.931576943468926, -85.62570463910845, 41.931576943468926], "geometry": {"coordinates": [-85.62570463910845, 41.931576943468926], "type": "Point"}, "id": "2935", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570246539906, 41.93171136029466, -85.62570246539906, 41.93171136029466], "geometry": {"coordinates": [-85.62570246539906, 41.93171136029466], "type": "Point"}, "id": "2936", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570029168968, 41.931845776837136, -85.62570029168968, 41.931845776837136], "geometry": {"coordinates": [-85.62570029168968, 41.931845776837136], "type": "Point"}, "id": "2937", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6256981179803, 41.931980193096344, -85.6256981179803, 41.931980193096344], "geometry": {"coordinates": [-85.6256981179803, 41.931980193096344], "type": "Point"}, "id": "2938", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569594427093, 41.932114609072315, -85.62569594427093, 41.932114609072315], "geometry": {"coordinates": [-85.62569594427093, 41.932114609072315], "type": "Point"}, "id": "2939", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6256949252412, 41.93224903024621, -85.6256949252412, 41.93224903024621], "geometry": {"coordinates": [-85.6256949252412, 41.93224903024621], "type": "Point"}, "id": "2940", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6256947930639, 41.93238345534665, -85.6256947930639, 41.93238345534665], "geometry": {"coordinates": [-85.6256947930639, 41.93238345534665], "type": "Point"}, "id": "2941", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569466088658, 41.932517880163786, -85.62569466088658, 41.932517880163786], "geometry": {"coordinates": [-85.62569466088658, 41.932517880163786], "type": "Point"}, "id": "2942", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569452870926, 41.932652304697626, -85.62569452870926, 41.932652304697626], "geometry": {"coordinates": [-85.62569452870926, 41.932652304697626], "type": "Point"}, "id": "2943", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569439653194, 41.93278672894817, -85.62569439653194, 41.93278672894817], "geometry": {"coordinates": [-85.62569439653194, 41.93278672894817], "type": "Point"}, "id": "2944", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569426435462, 41.93292115291541, -85.62569426435462, 41.93292115291541], "geometry": {"coordinates": [-85.62569426435462, 41.93292115291541], "type": "Point"}, "id": "2945", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569413217732, 41.93305557659936, -85.62569413217732, 41.93305557659936], "geometry": {"coordinates": [-85.62569413217732, 41.93305557659936], "type": "Point"}, "id": "2946", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6359052, 41.9298799, -85.6359052, 41.9298799], "geometry": {"coordinates": [-85.6359052, 41.9298799], "type": "Point"}, "id": "2947", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63596028103674, 41.9300135510169, -85.63596028103674, 41.9300135510169], "geometry": {"coordinates": [-85.63596028103674, 41.9300135510169], "type": "Point"}, "id": "2948", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63601536207352, 41.930147201753776, -85.63601536207352, 41.930147201753776], "geometry": {"coordinates": [-85.63601536207352, 41.930147201753776], "type": "Point"}, "id": "2949", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63607044311026, 41.93028085221063, -85.63607044311026, 41.93028085221063], "geometry": {"coordinates": [-85.63607044311026, 41.93028085221063], "type": "Point"}, "id": "2950", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.636125524147, 41.93041450238746, -85.636125524147, 41.93041450238746], "geometry": {"coordinates": [-85.636125524147, 41.93041450238746], "type": "Point"}, "id": "2951", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63618060518375, 41.93054815228427, -85.63618060518375, 41.93054815228427], "geometry": {"coordinates": [-85.63618060518375, 41.93054815228427], "type": "Point"}, "id": "2952", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63623568622052, 41.93068180190105, -85.63623568622052, 41.93068180190105], "geometry": {"coordinates": [-85.63623568622052, 41.93068180190105], "type": "Point"}, "id": "2953", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63629076725725, 41.93081545123781, -85.63629076725725, 41.93081545123781], "geometry": {"coordinates": [-85.63629076725725, 41.93081545123781], "type": "Point"}, "id": "2954", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63636897815948, 41.93094171459924, -85.63636897815948, 41.93094171459924], "geometry": {"coordinates": [-85.63636897815948, 41.93094171459924], "type": "Point"}, "id": "2955", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63646125862488, 41.9310634851074, -85.63646125862488, 41.9310634851074], "geometry": {"coordinates": [-85.63646125862488, 41.9310634851074], "type": "Point"}, "id": "2956", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63659590712433, 41.931157092312404, -85.63659590712433, 41.931157092312404], "geometry": {"coordinates": [-85.63659590712433, 41.931157092312404], "type": "Point"}, "id": "2957", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63674820902823, 41.93123896474297, -85.63674820902823, 41.93123896474297], "geometry": {"coordinates": [-85.63674820902823, 41.93123896474297], "type": "Point"}, "id": "2958", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63691985918581, 41.93125204104404, -85.63691985918581, 41.93125204104404], "geometry": {"coordinates": [-85.63691985918581, 41.93125204104404], "type": "Point"}, "id": "2959", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63710350612389, 41.93122246070974, -85.63710350612389, 41.93122246070974], "geometry": {"coordinates": [-85.63710350612389, 41.93122246070974], "type": "Point"}, "id": "2960", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63728715306195, 41.931192880361735, -85.63728715306195, 41.931192880361735], "geometry": {"coordinates": [-85.63728715306195, 41.931192880361735], "type": "Point"}, "id": "2961", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.62848099999998, 41.94561099999999, -85.62848099999998, 41.94561099999999], "geometry": {"coordinates": [-85.62848099999998, 41.94561099999999], "type": "Point"}, "id": "2962", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62829995609275, 41.945611252290846, -85.62829995609275, 41.945611252290846], "geometry": {"coordinates": [-85.62829995609275, 41.945611252290846], "type": "Point"}, "id": "2963", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62811891218551, 41.94561150458169, -85.62811891218551, 41.94561150458169], "geometry": {"coordinates": [-85.62811891218551, 41.94561150458169], "type": "Point"}, "id": "2964", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6279378682783, 41.945611756872545, -85.6279378682783, 41.945611756872545], "geometry": {"coordinates": [-85.6279378682783, 41.945611756872545], "type": "Point"}, "id": "2965", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62775682437105, 41.94561200916339, -85.62775682437105, 41.94561200916339], "geometry": {"coordinates": [-85.62775682437105, 41.94561200916339], "type": "Point"}, "id": "2966", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62757578046381, 41.94561226145424, -85.62757578046381, 41.94561226145424], "geometry": {"coordinates": [-85.62757578046381, 41.94561226145424], "type": "Point"}, "id": "2967", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62739473655658, 41.94561251374508, -85.62739473655658, 41.94561251374508], "geometry": {"coordinates": [-85.62739473655658, 41.94561251374508], "type": "Point"}, "id": "2968", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62721369264936, 41.94561276603592, -85.62721369264936, 41.94561276603592], "geometry": {"coordinates": [-85.62721369264936, 41.94561276603592], "type": "Point"}, "id": "2969", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62703264874213, 41.945613018326775, -85.62703264874213, 41.945613018326775], "geometry": {"coordinates": [-85.62703264874213, 41.945613018326775], "type": "Point"}, "id": "2970", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6268516048349, 41.94561327061761, -85.6268516048349, 41.94561327061761], "geometry": {"coordinates": [-85.6268516048349, 41.94561327061761], "type": "Point"}, "id": "2971", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62667056092766, 41.94561352290845, -85.62667056092766, 41.94561352290845], "geometry": {"coordinates": [-85.62667056092766, 41.94561352290845], "type": "Point"}, "id": "2972", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62648951702042, 41.9456137751993, -85.62648951702042, 41.9456137751993], "geometry": {"coordinates": [-85.62648951702042, 41.9456137751993], "type": "Point"}, "id": "2973", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6263084731132, 41.94561402749014, -85.6263084731132, 41.94561402749014], "geometry": {"coordinates": [-85.6263084731132, 41.94561402749014], "type": "Point"}, "id": "2974", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62612742920597, 41.94561427978097, -85.62612742920597, 41.94561427978097], "geometry": {"coordinates": [-85.62612742920597, 41.94561427978097], "type": "Point"}, "id": "2975", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62594638529873, 41.945614532071815, -85.62594638529873, 41.945614532071815], "geometry": {"coordinates": [-85.62594638529873, 41.945614532071815], "type": "Point"}, "id": "2976", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62576534139151, 41.94561478436265, -85.62576534139151, 41.94561478436265], "geometry": {"coordinates": [-85.62576534139151, 41.94561478436265], "type": "Point"}, "id": "2977", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62558429748428, 41.945615036653486, -85.62558429748428, 41.945615036653486], "geometry": {"coordinates": [-85.62558429748428, 41.945615036653486], "type": "Point"}, "id": "2978", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62540325357706, 41.94561528894432, -85.62540325357706, 41.94561528894432], "geometry": {"coordinates": [-85.62540325357706, 41.94561528894432], "type": "Point"}, "id": "2979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6252222096698, 41.94561554123514, -85.6252222096698, 41.94561554123514], "geometry": {"coordinates": [-85.6252222096698, 41.94561554123514], "type": "Point"}, "id": "2980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62504116576258, 41.94561579352599, -85.62504116576258, 41.94561579352599], "geometry": {"coordinates": [-85.62504116576258, 41.94561579352599], "type": "Point"}, "id": "2981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62486012342234, 41.94561624310521, -85.62486012342234, 41.94561624310521], "geometry": {"coordinates": [-85.62486012342234, 41.94561624310521], "type": "Point"}, "id": "2982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62467908814378, 41.945617581767, -85.62467908814378, 41.945617581767], "geometry": {"coordinates": [-85.62467908814378, 41.945617581767], "type": "Point"}, "id": "2983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6244980528652, 41.94561892042875, -85.6244980528652, 41.94561892042875], "geometry": {"coordinates": [-85.6244980528652, 41.94561892042875], "type": "Point"}, "id": "2984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62431701758662, 41.94562025909049, -85.62431701758662, 41.94562025909049], "geometry": {"coordinates": [-85.62431701758662, 41.94562025909049], "type": "Point"}, "id": "2985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62413598230806, 41.94562159775219, -85.62413598230806, 41.94562159775219], "geometry": {"coordinates": [-85.62413598230806, 41.94562159775219], "type": "Point"}, "id": "2986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62395494702949, 41.94562293641387, -85.62395494702949, 41.94562293641387], "geometry": {"coordinates": [-85.62395494702949, 41.94562293641387], "type": "Point"}, "id": "2987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62377391175092, 41.94562427507551, -85.62377391175092, 41.94562427507551], "geometry": {"coordinates": [-85.62377391175092, 41.94562427507551], "type": "Point"}, "id": "2988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62359287647233, 41.94562561373713, -85.62359287647233, 41.94562561373713], "geometry": {"coordinates": [-85.62359287647233, 41.94562561373713], "type": "Point"}, "id": "2989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62341184119377, 41.94562695239872, -85.62341184119377, 41.94562695239872], "geometry": {"coordinates": [-85.62341184119377, 41.94562695239872], "type": "Point"}, "id": "2990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6232308059152, 41.94562829106028, -85.6232308059152, 41.94562829106028], "geometry": {"coordinates": [-85.6232308059152, 41.94562829106028], "type": "Point"}, "id": "2991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62304977063661, 41.945629629721815, -85.62304977063661, 41.945629629721815], "geometry": {"coordinates": [-85.62304977063661, 41.945629629721815], "type": "Point"}, "id": "2992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62286873535804, 41.94563096838332, -85.62286873535804, 41.94563096838332], "geometry": {"coordinates": [-85.62286873535804, 41.94563096838332], "type": "Point"}, "id": "2993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6226876987975, 41.945632043858886, -85.6226876987975, 41.945632043858886], "geometry": {"coordinates": [-85.6226876987975, 41.945632043858886], "type": "Point"}, "id": "2994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62250665523028, 41.94563168087499, -85.62250665523028, 41.94563168087499], "geometry": {"coordinates": [-85.62250665523028, 41.94563168087499], "type": "Point"}, "id": "2995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62232561166306, 41.94563131789108, -85.62232561166306, 41.94563131789108], "geometry": {"coordinates": [-85.62232561166306, 41.94563131789108], "type": "Point"}, "id": "2996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62214456809583, 41.945630954907166, -85.62214456809583, 41.945630954907166], "geometry": {"coordinates": [-85.62214456809583, 41.945630954907166], "type": "Point"}, "id": "2997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62196352452862, 41.945630591923255, -85.62196352452862, 41.945630591923255], "geometry": {"coordinates": [-85.62196352452862, 41.945630591923255], "type": "Point"}, "id": "2998", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6217824809614, 41.94563022893935, -85.6217824809614, 41.94563022893935], "geometry": {"coordinates": [-85.6217824809614, 41.94563022893935], "type": "Point"}, "id": "2999", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62160143739416, 41.94562986595543, -85.62160143739416, 41.94562986595543], "geometry": {"coordinates": [-85.62160143739416, 41.94562986595543], "type": "Point"}, "id": "3000", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62142039382694, 41.945629502971514, -85.62142039382694, 41.945629502971514], "geometry": {"coordinates": [-85.62142039382694, 41.945629502971514], "type": "Point"}, "id": "3001", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62123935025973, 41.945629139987595, -85.62123935025973, 41.945629139987595], "geometry": {"coordinates": [-85.62123935025973, 41.945629139987595], "type": "Point"}, "id": "3002", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62105830669249, 41.94562877700368, -85.62105830669249, 41.94562877700368], "geometry": {"coordinates": [-85.62105830669249, 41.94562877700368], "type": "Point"}, "id": "3003", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62087726312527, 41.94562841401975, -85.62087726312527, 41.94562841401975], "geometry": {"coordinates": [-85.62087726312527, 41.94562841401975], "type": "Point"}, "id": "3004", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62069621955804, 41.94562805103583, -85.62069621955804, 41.94562805103583], "geometry": {"coordinates": [-85.62069621955804, 41.94562805103583], "type": "Point"}, "id": "3005", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6205151759908, 41.94562768805191, -85.6205151759908, 41.94562768805191], "geometry": {"coordinates": [-85.6205151759908, 41.94562768805191], "type": "Point"}, "id": "3006", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6203341324236, 41.94562732506798, -85.6203341324236, 41.94562732506798], "geometry": {"coordinates": [-85.6203341324236, 41.94562732506798], "type": "Point"}, "id": "3007", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62015309079582, 41.945626795022214, -85.62015309079582, 41.945626795022214], "geometry": {"coordinates": [-85.62015309079582, 41.945626795022214], "type": "Point"}, "id": "3008", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61997206579575, 41.94562483269186, -85.61997206579575, 41.94562483269186], "geometry": {"coordinates": [-85.61997206579575, 41.94562483269186], "type": "Point"}, "id": "3009", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61979104079566, 41.94562287036145, -85.61979104079566, 41.94562287036145], "geometry": {"coordinates": [-85.61979104079566, 41.94562287036145], "type": "Point"}, "id": "3010", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61961001579556, 41.94562090803097, -85.61961001579556, 41.94562090803097], "geometry": {"coordinates": [-85.61961001579556, 41.94562090803097], "type": "Point"}, "id": "3011", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61942899079547, 41.945618945700446, -85.61942899079547, 41.945618945700446], "geometry": {"coordinates": [-85.61942899079547, 41.945618945700446], "type": "Point"}, "id": "3012", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61924796579541, 41.94561698336984, -85.61924796579541, 41.94561698336984], "geometry": {"coordinates": [-85.61924796579541, 41.94561698336984], "type": "Point"}, "id": "3013", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61906694079532, 41.94561502103919, -85.61906694079532, 41.94561502103919], "geometry": {"coordinates": [-85.61906694079532, 41.94561502103919], "type": "Point"}, "id": "3014", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61888591579522, 41.945613058708474, -85.61888591579522, 41.945613058708474], "geometry": {"coordinates": [-85.61888591579522, 41.945613058708474], "type": "Point"}, "id": "3015", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61870489079513, 41.9456110963777, -85.61870489079513, 41.9456110963777], "geometry": {"coordinates": [-85.61870489079513, 41.9456110963777], "type": "Point"}, "id": "3016", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61852386579504, 41.945609134046855, -85.61852386579504, 41.945609134046855], "geometry": {"coordinates": [-85.61852386579504, 41.945609134046855], "type": "Point"}, "id": "3017", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61834284079498, 41.94560717171596, -85.61834284079498, 41.94560717171596], "geometry": {"coordinates": [-85.61834284079498, 41.94560717171596], "type": "Point"}, "id": "3018", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61816180024105, 41.94560639708118, -85.61816180024105, 41.94560639708118], "geometry": {"coordinates": [-85.61816180024105, 41.94560639708118], "type": "Point"}, "id": "3019", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61798075819556, 41.94560573634381, -85.61798075819556, 41.94560573634381], "geometry": {"coordinates": [-85.61798075819556, 41.94560573634381], "type": "Point"}, "id": "3020", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61779971615007, 41.94560507560642, -85.61779971615007, 41.94560507560642], "geometry": {"coordinates": [-85.61779971615007, 41.94560507560642], "type": "Point"}, "id": "3021", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61761867410458, 41.945604414869024, -85.61761867410458, 41.945604414869024], "geometry": {"coordinates": [-85.61761867410458, 41.945604414869024], "type": "Point"}, "id": "3022", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6174376320591, 41.945603754131625, -85.6174376320591, 41.945603754131625], "geometry": {"coordinates": [-85.6174376320591, 41.945603754131625], "type": "Point"}, "id": "3023", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6172565900136, 41.94560309339422, -85.6172565900136, 41.94560309339422], "geometry": {"coordinates": [-85.6172565900136, 41.94560309339422], "type": "Point"}, "id": "3024", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61707554619507, 41.94560286991313, -85.61707554619507, 41.94560286991313], "geometry": {"coordinates": [-85.61707554619507, 41.94560286991313], "type": "Point"}, "id": "3025", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61689450208465, 41.94560271841179, -85.61689450208465, 41.94560271841179], "geometry": {"coordinates": [-85.61689450208465, 41.94560271841179], "type": "Point"}, "id": "3026", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61671345797424, 41.94560256691044, -85.61671345797424, 41.94560256691044], "geometry": {"coordinates": [-85.61671345797424, 41.94560256691044], "type": "Point"}, "id": "3027", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61653241389214, 41.94560239840592, -85.61653241389214, 41.94560239840592], "geometry": {"coordinates": [-85.61653241389214, 41.94560239840592], "type": "Point"}, "id": "3028", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61635136983243, 41.94560221645209, -85.61635136983243, 41.94560221645209], "geometry": {"coordinates": [-85.61635136983243, 41.94560221645209], "type": "Point"}, "id": "3029", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61617032577273, 41.94560203449826, -85.61617032577273, 41.94560203449826], "geometry": {"coordinates": [-85.61617032577273, 41.94560203449826], "type": "Point"}, "id": "3030", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6159892886852, 41.945600925978695, -85.6159892886852, 41.945600925978695], "geometry": {"coordinates": [-85.6159892886852, 41.945600925978695], "type": "Point"}, "id": "3031", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61580825322886, 41.94559960068254, -85.61580825322886, 41.94559960068254], "geometry": {"coordinates": [-85.61580825322886, 41.94559960068254], "type": "Point"}, "id": "3032", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61562721777253, 41.94559827538637, -85.61562721777253, 41.94559827538637], "geometry": {"coordinates": [-85.61562721777253, 41.94559827538637], "type": "Point"}, "id": "3033", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61544646732727, 41.945598451705486, -85.61544646732727, 41.945598451705486], "geometry": {"coordinates": [-85.61544646732727, 41.945598451705486], "type": "Point"}, "id": "3034", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.637688, 41.93398, -85.637688, 41.93398], "geometry": {"coordinates": [-85.637688, 41.93398], "type": "Point"}, "id": "3035", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63787021382272, 41.93397837366043, -85.63787021382272, 41.93397837366043], "geometry": {"coordinates": [-85.63787021382272, 41.93397837366043], "type": "Point"}, "id": "3036", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63805242764546, 41.933976747320806, -85.63805242764546, 41.933976747320806], "geometry": {"coordinates": [-85.63805242764546, 41.933976747320806], "type": "Point"}, "id": "3037", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63823464146819, 41.93397512098115, -85.63823464146819, 41.93397512098115], "geometry": {"coordinates": [-85.63823464146819, 41.93397512098115], "type": "Point"}, "id": "3038", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63841685529094, 41.93397349464146, -85.63841685529094, 41.93397349464146], "geometry": {"coordinates": [-85.63841685529094, 41.93397349464146], "type": "Point"}, "id": "3039", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63859906911367, 41.93397186830172, -85.63859906911367, 41.93397186830172], "geometry": {"coordinates": [-85.63859906911367, 41.93397186830172], "type": "Point"}, "id": "3040", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63878128293639, 41.93397024196194, -85.63878128293639, 41.93397024196194], "geometry": {"coordinates": [-85.63878128293639, 41.93397024196194], "type": "Point"}, "id": "3041", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63896349690724, 41.933968624840304, -85.63896349690724, 41.933968624840304], "geometry": {"coordinates": [-85.63896349690724, 41.933968624840304], "type": "Point"}, "id": "3042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6391457109333, 41.933967011158494, -85.6391457109333, 41.933967011158494], "geometry": {"coordinates": [-85.6391457109333, 41.933967011158494], "type": "Point"}, "id": "3043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6393279249594, 41.93396539747664, -85.6393279249594, 41.93396539747664], "geometry": {"coordinates": [-85.6393279249594, 41.93396539747664], "type": "Point"}, "id": "3044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63951013898549, 41.93396378379475, -85.63951013898549, 41.93396378379475], "geometry": {"coordinates": [-85.63951013898549, 41.93396378379475], "type": "Point"}, "id": "3045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63969235301158, 41.93396217011282, -85.63969235301158, 41.93396217011282], "geometry": {"coordinates": [-85.63969235301158, 41.93396217011282], "type": "Point"}, "id": "3046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63987456703767, 41.93396055643084, -85.63987456703767, 41.93396055643084], "geometry": {"coordinates": [-85.63987456703767, 41.93396055643084], "type": "Point"}, "id": "3047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64005678106376, 41.933958942748816, -85.64005678106376, 41.933958942748816], "geometry": {"coordinates": [-85.64005678106376, 41.933958942748816], "type": "Point"}, "id": "3048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64023899486287, 41.933957314950554, -85.64023899486287, 41.933957314950554], "geometry": {"coordinates": [-85.64023899486287, 41.933957314950554], "type": "Point"}, "id": "3049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64042120863995, 41.9339556857823, -85.64042120863995, 41.9339556857823], "geometry": {"coordinates": [-85.64042120863995, 41.9339556857823], "type": "Point"}, "id": "3050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64060342241703, 41.93395405661401, -85.64060342241703, 41.93395405661401], "geometry": {"coordinates": [-85.64060342241703, 41.93395405661401], "type": "Point"}, "id": "3051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64078563619412, 41.93395242744568, -85.64078563619412, 41.93395242744568], "geometry": {"coordinates": [-85.64078563619412, 41.93395242744568], "type": "Point"}, "id": "3052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64096784997118, 41.93395079827732, -85.64096784997118, 41.93395079827732], "geometry": {"coordinates": [-85.64096784997118, 41.93395079827732], "type": "Point"}, "id": "3053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64115006374826, 41.93394916910891, -85.64115006374826, 41.93394916910891], "geometry": {"coordinates": [-85.64115006374826, 41.93394916910891], "type": "Point"}, "id": "3054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64133227754152, 41.933947540942675, -85.64133227754152, 41.933947540942675], "geometry": {"coordinates": [-85.64133227754152, 41.933947540942675], "type": "Point"}, "id": "3055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64151449134609, 41.93394591347491, -85.64151449134609, 41.93394591347491], "geometry": {"coordinates": [-85.64151449134609, 41.93394591347491], "type": "Point"}, "id": "3056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64169670515062, 41.93394428600711, -85.64169670515062, 41.93394428600711], "geometry": {"coordinates": [-85.64169670515062, 41.93394428600711], "type": "Point"}, "id": "3057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64187891895517, 41.93394265853925, -85.64187891895517, 41.93394265853925], "geometry": {"coordinates": [-85.64187891895517, 41.93394265853925], "type": "Point"}, "id": "3058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64206113275972, 41.93394103107136, -85.64206113275972, 41.93394103107136], "geometry": {"coordinates": [-85.64206113275972, 41.93394103107136], "type": "Point"}, "id": "3059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64224334656426, 41.93393940360343, -85.64224334656426, 41.93393940360343], "geometry": {"coordinates": [-85.64224334656426, 41.93393940360343], "type": "Point"}, "id": "3060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64242556039974, 41.93393777805825, -85.64242556039974, 41.93393777805825], "geometry": {"coordinates": [-85.64242556039974, 41.93393777805825], "type": "Point"}, "id": "3061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64260777435976, 41.933936160252614, -85.64260777435976, 41.933936160252614], "geometry": {"coordinates": [-85.64260777435976, 41.933936160252614], "type": "Point"}, "id": "3062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6427899883198, 41.933934542446934, -85.6427899883198, 41.933934542446934], "geometry": {"coordinates": [-85.6427899883198, 41.933934542446934], "type": "Point"}, "id": "3063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64297220227982, 41.93393292464121, -85.64297220227982, 41.93393292464121], "geometry": {"coordinates": [-85.64297220227982, 41.93393292464121], "type": "Point"}, "id": "3064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64315441623984, 41.93393130683545, -85.64315441623984, 41.93393130683545], "geometry": {"coordinates": [-85.64315441623984, 41.93393130683545], "type": "Point"}, "id": "3065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64333663019988, 41.93392968902964, -85.64333663019988, 41.93392968902964], "geometry": {"coordinates": [-85.64333663019988, 41.93392968902964], "type": "Point"}, "id": "3066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6435188441599, 41.9339280712238, -85.6435188441599, 41.9339280712238], "geometry": {"coordinates": [-85.6435188441599, 41.9339280712238], "type": "Point"}, "id": "3067", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64370105811993, 41.933926453417904, -85.64370105811993, 41.933926453417904], "geometry": {"coordinates": [-85.64370105811993, 41.933926453417904], "type": "Point"}, "id": "3068", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64388327207995, 41.93392483561198, -85.64388327207995, 41.93392483561198], "geometry": {"coordinates": [-85.64388327207995, 41.93392483561198], "type": "Point"}, "id": "3069", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64406548603998, 41.93392321780601, -85.64406548603998, 41.93392321780601], "geometry": {"coordinates": [-85.64406548603998, 41.93392321780601], "type": "Point"}, "id": "3070", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6200474, 41.94473839999999, -85.6200474, 41.94473839999999], "geometry": {"coordinates": [-85.6200474, 41.94473839999999], "type": "Point"}, "id": "3071", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17966772}, "type": "Feature"}, {"bbox": [-85.62024910926067, 41.94473917696699, -85.62024910926067, 41.94473917696699], "geometry": {"coordinates": [-85.62024910926067, 41.94473917696699], "type": "Point"}, "id": "3072", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17966772}, "type": "Feature"}, {"bbox": [-85.62045081852133, 41.94473995393398, -85.62045081852133, 41.94473995393398], "geometry": {"coordinates": [-85.62045081852133, 41.94473995393398], "type": "Point"}, "id": "3073", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17966772}, "type": "Feature"}, {"bbox": [-85.620652527782, 41.94474073090095, -85.620652527782, 41.94474073090095], "geometry": {"coordinates": [-85.620652527782, 41.94474073090095], "type": "Point"}, "id": "3074", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17966772}, "type": "Feature"}, {"bbox": [-85.62085423704266, 41.94474150786793, -85.62085423704266, 41.94474150786793], "geometry": {"coordinates": [-85.62085423704266, 41.94474150786793], "type": "Point"}, "id": "3075", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17966772}, "type": "Feature"}, {"bbox": [-85.62105588979007, 41.944744168673274, -85.62105588979007, 41.944744168673274], "geometry": {"coordinates": [-85.62105588979007, 41.944744168673274], "type": "Point"}, "id": "3076", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17966772}, "type": "Feature"}, {"bbox": [-85.62125744489505, 41.94475008433691, -85.62125744489505, 41.94475008433691], "geometry": {"coordinates": [-85.62125744489505, 41.94475008433691], "type": "Point"}, "id": "3077", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 17966772}, "type": "Feature"}, {"bbox": [-85.61118699999999, 41.951686, -85.61118699999999, 41.951686], "geometry": {"coordinates": [-85.61118699999999, 41.951686], "type": "Point"}, "id": "3078", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61106546041496, 41.95178611122974, -85.61106546041496, 41.95178611122974], "geometry": {"coordinates": [-85.61106546041496, 41.95178611122974], "type": "Point"}, "id": "3079", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.6110223475364, 41.95192191480253, -85.6110223475364, 41.95192191480253], "geometry": {"coordinates": [-85.6110223475364, 41.95192191480253], "type": "Point"}, "id": "3080", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61101391404924, 41.952061980789146, -85.61101391404924, 41.952061980789146], "geometry": {"coordinates": [-85.61101391404924, 41.952061980789146], "type": "Point"}, "id": "3081", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61101104322071, 41.952202333479924, -85.61101104322071, 41.952202333479924], "geometry": {"coordinates": [-85.61101104322071, 41.952202333479924], "type": "Point"}, "id": "3082", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61100817239219, 41.952342685861645, -85.61100817239219, 41.952342685861645], "geometry": {"coordinates": [-85.61100817239219, 41.952342685861645], "type": "Point"}, "id": "3083", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61100530156368, 41.95248303793432, -85.61100530156368, 41.95248303793432], "geometry": {"coordinates": [-85.61100530156368, 41.95248303793432], "type": "Point"}, "id": "3084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61100243073518, 41.95262338969795, -85.61100243073518, 41.95262338969795], "geometry": {"coordinates": [-85.61100243073518, 41.95262338969795], "type": "Point"}, "id": "3085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099955990665, 41.95276374115253, -85.61099955990665, 41.95276374115253], "geometry": {"coordinates": [-85.61099955990665, 41.95276374115253], "type": "Point"}, "id": "3086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099668907812, 41.952904092298056, -85.61099668907812, 41.952904092298056], "geometry": {"coordinates": [-85.61099668907812, 41.952904092298056], "type": "Point"}, "id": "3087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099381824961, 41.95304444313453, -85.61099381824961, 41.95304444313453], "geometry": {"coordinates": [-85.61099381824961, 41.95304444313453], "type": "Point"}, "id": "3088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099094742109, 41.953184793661954, -85.61099094742109, 41.953184793661954], "geometry": {"coordinates": [-85.61099094742109, 41.953184793661954], "type": "Point"}, "id": "3089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099603449938, 41.95332484498957, -85.61099603449938, 41.95332484498957], "geometry": {"coordinates": [-85.61099603449938, 41.95332484498957], "type": "Point"}, "id": "3090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61101790441352, 41.95346426566477, -85.61101790441352, 41.95346426566477], "geometry": {"coordinates": [-85.61101790441352, 41.95346426566477], "type": "Point"}, "id": "3091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.6110859390192, 41.953594396340094, -85.6110859390192, 41.953594396340094], "geometry": {"coordinates": [-85.6110859390192, 41.953594396340094], "type": "Point"}, "id": "3092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.6112412306531, 41.95366728516146, -85.6112412306531, 41.95366728516146], "geometry": {"coordinates": [-85.6112412306531, 41.95366728516146], "type": "Point"}, "id": "3093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61142712834354, 41.95369052713268, -85.61142712834354, 41.95369052713268], "geometry": {"coordinates": [-85.61142712834354, 41.95369052713268], "type": "Point"}, "id": "3094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.62003499999999, 41.933297, -85.62003499999999, 41.933297], "geometry": {"coordinates": [-85.62003499999999, 41.933297], "type": "Point"}, "id": "3095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62021155959668, 41.93326401081591, -85.62021155959668, 41.93326401081591], "geometry": {"coordinates": [-85.62021155959668, 41.93326401081591], "type": "Point"}, "id": "3096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.6203939698454, 41.93325721713872, -85.6203939698454, 41.93325721713872], "geometry": {"coordinates": [-85.6203939698454, 41.93325721713872], "type": "Point"}, "id": "3097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62057638009408, 41.9332504234608, -85.62057638009408, 41.9332504234608], "geometry": {"coordinates": [-85.62057638009408, 41.9332504234608], "type": "Point"}, "id": "3098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62075881852653, 41.93324585403804, -85.62075881852653, 41.93324585403804], "geometry": {"coordinates": [-85.62075881852653, 41.93324585403804], "type": "Point"}, "id": "3099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62094136851303, 41.93325008844504, -85.62094136851303, 41.93325008844504], "geometry": {"coordinates": [-85.62094136851303, 41.93325008844504], "type": "Point"}, "id": "3100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62112392421147, 41.93325387264442, -85.62112392421147, 41.93325387264442], "geometry": {"coordinates": [-85.62112392421147, 41.93325387264442], "type": "Point"}, "id": "3101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.6213065491135, 41.93325220229471, -85.6213065491135, 41.93325220229471], "geometry": {"coordinates": [-85.6213065491135, 41.93325220229471], "type": "Point"}, "id": "3102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62148917396169, 41.93325052871731, -85.62148917396169, 41.93325052871731], "geometry": {"coordinates": [-85.62148917396169, 41.93325052871731], "type": "Point"}, "id": "3103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62167179832842, 41.933248826286786, -85.62167179832842, 41.933248826286786], "geometry": {"coordinates": [-85.62167179832842, 41.933248826286786], "type": "Point"}, "id": "3104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62185442276183, 41.933247127842456, -85.62185442276183, 41.933247127842456], "geometry": {"coordinates": [-85.62185442276183, 41.933247127842456], "type": "Point"}, "id": "3105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62203704753955, 41.933245449987005, -85.62203704753955, 41.933245449987005], "geometry": {"coordinates": [-85.62203704753955, 41.933245449987005], "type": "Point"}, "id": "3106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62221967231727, 41.933243772131526, -85.62221967231727, 41.933243772131526], "geometry": {"coordinates": [-85.62221967231727, 41.933243772131526], "type": "Point"}, "id": "3107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62240229709496, 41.933242094276004, -85.62240229709496, 41.933242094276004], "geometry": {"coordinates": [-85.62240229709496, 41.933242094276004], "type": "Point"}, "id": "3108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62258492187267, 41.93324041642043, -85.62258492187267, 41.93324041642043], "geometry": {"coordinates": [-85.62258492187267, 41.93324041642043], "type": "Point"}, "id": "3109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.6227675466504, 41.93323873856481, -85.6227675466504, 41.93323873856481], "geometry": {"coordinates": [-85.6227675466504, 41.93323873856481], "type": "Point"}, "id": "3110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62295017142812, 41.93323706070915, -85.62295017142812, 41.93323706070915], "geometry": {"coordinates": [-85.62295017142812, 41.93323706070915], "type": "Point"}, "id": "3111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62313279620582, 41.933235382853454, -85.62313279620582, 41.933235382853454], "geometry": {"coordinates": [-85.62313279620582, 41.933235382853454], "type": "Point"}, "id": "3112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62331542098354, 41.93323370499771, -85.62331542098354, 41.93323370499771], "geometry": {"coordinates": [-85.62331542098354, 41.93323370499771], "type": "Point"}, "id": "3113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62349804576124, 41.93323202714191, -85.62349804576124, 41.93323202714191], "geometry": {"coordinates": [-85.62349804576124, 41.93323202714191], "type": "Point"}, "id": "3114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62368061148479, 41.93322819646337, -85.62368061148479, 41.93322819646337], "geometry": {"coordinates": [-85.62368061148479, 41.93322819646337], "type": "Point"}, "id": "3115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62386317623732, 41.93322433038673, -85.62386317623732, 41.93322433038673], "geometry": {"coordinates": [-85.62386317623732, 41.93322433038673], "type": "Point"}, "id": "3116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62404574098984, 41.93322046430985, -85.62404574098984, 41.93322046430985], "geometry": {"coordinates": [-85.62404574098984, 41.93322046430985], "type": "Point"}, "id": "3117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62422830574239, 41.93321659823275, -85.62422830574239, 41.93321659823275], "geometry": {"coordinates": [-85.62422830574239, 41.93321659823275], "type": "Point"}, "id": "3118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62441087049491, 41.933212732155404, -85.62441087049491, 41.933212732155404], "geometry": {"coordinates": [-85.62441087049491, 41.933212732155404], "type": "Point"}, "id": "3119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62459343524746, 41.93320886607781, -85.62459343524746, 41.93320886607781], "geometry": {"coordinates": [-85.62459343524746, 41.93320886607781], "type": "Point"}, "id": "3120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.633287, 41.952425999999996, -85.633287, 41.952425999999996], "geometry": {"coordinates": [-85.633287, 41.952425999999996], "type": "Point"}, "id": "3121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63328911901542, 41.95256098248776, -85.63328911901542, 41.95256098248776], "geometry": {"coordinates": [-85.63328911901542, 41.95256098248776], "type": "Point"}, "id": "3122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329123803082, 41.95269596468965, -85.63329123803082, 41.95269596468965], "geometry": {"coordinates": [-85.63329123803082, 41.95269596468965], "type": "Point"}, "id": "3123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329335704624, 41.9528309466057, -85.63329335704624, 41.9528309466057], "geometry": {"coordinates": [-85.63329335704624, 41.9528309466057], "type": "Point"}, "id": "3124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329547606163, 41.95296592823589, -85.63329547606163, 41.95296592823589], "geometry": {"coordinates": [-85.63329547606163, 41.95296592823589], "type": "Point"}, "id": "3125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329759507707, 41.95310090958023, -85.63329759507707, 41.95310090958023], "geometry": {"coordinates": [-85.63329759507707, 41.95310090958023], "type": "Point"}, "id": "3126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329971409246, 41.953235890638716, -85.63329971409246, 41.953235890638716], "geometry": {"coordinates": [-85.63329971409246, 41.953235890638716], "type": "Point"}, "id": "3127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330183310788, 41.95337087141133, -85.63330183310788, 41.95337087141133], "geometry": {"coordinates": [-85.63330183310788, 41.95337087141133], "type": "Point"}, "id": "3128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330395212328, 41.9535058518981, -85.63330395212328, 41.9535058518981], "geometry": {"coordinates": [-85.63330395212328, 41.9535058518981], "type": "Point"}, "id": "3129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333060711387, 41.95364083209901, -85.6333060711387, 41.95364083209901], "geometry": {"coordinates": [-85.6333060711387, 41.95364083209901], "type": "Point"}, "id": "3130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330731262725, 41.953775816824155, -85.63330731262725, 41.953775816824155], "geometry": {"coordinates": [-85.63330731262725, 41.953775816824155], "type": "Point"}, "id": "3131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330786924591, 41.95391080501744, -85.63330786924591, 41.95391080501744], "geometry": {"coordinates": [-85.63330786924591, 41.95391080501744], "type": "Point"}, "id": "3132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330842586457, 41.95404579292485, -85.63330842586457, 41.95404579292485], "geometry": {"coordinates": [-85.63330842586457, 41.95404579292485], "type": "Point"}, "id": "3133", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330898248323, 41.954180780546366, -85.63330898248323, 41.954180780546366], "geometry": {"coordinates": [-85.63330898248323, 41.954180780546366], "type": "Point"}, "id": "3134", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330953910189, 41.95431576788199, -85.63330953910189, 41.95431576788199], "geometry": {"coordinates": [-85.63330953910189, 41.95431576788199], "type": "Point"}, "id": "3135", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331009572056, 41.954450754931706, -85.63331009572056, 41.954450754931706], "geometry": {"coordinates": [-85.63331009572056, 41.954450754931706], "type": "Point"}, "id": "3136", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331065233919, 41.95458574169554, -85.63331065233919, 41.95458574169554], "geometry": {"coordinates": [-85.63331065233919, 41.95458574169554], "type": "Point"}, "id": "3137", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331163747665, 41.95472072575615, -85.63331163747665, 41.95472072575615], "geometry": {"coordinates": [-85.63331163747665, 41.95472072575615], "type": "Point"}, "id": "3138", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333136900336, 41.95485570395213, -85.6333136900336, 41.95485570395213], "geometry": {"coordinates": [-85.6333136900336, 41.95485570395213], "type": "Point"}, "id": "3139", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331573981158, 41.95499068188566, -85.63331573981158, 41.95499068188566], "geometry": {"coordinates": [-85.63331573981158, 41.95499068188566], "type": "Point"}, "id": "3140", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331778958955, 41.95512565953333, -85.63331778958955, 41.95512565953333], "geometry": {"coordinates": [-85.63331778958955, 41.95512565953333], "type": "Point"}, "id": "3141", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331982668652, 41.95526063700125, -85.63331982668652, 41.95526063700125], "geometry": {"coordinates": [-85.63331982668652, 41.95526063700125], "type": "Point"}, "id": "3142", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63332186152037, 41.95539561420226, -85.63332186152037, 41.95539561420226], "geometry": {"coordinates": [-85.63332186152037, 41.95539561420226], "type": "Point"}, "id": "3143", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63332390263513, 41.95553059106494, -85.63332390263513, 41.95553059106494], "geometry": {"coordinates": [-85.63332390263513, 41.95553059106494], "type": "Point"}, "id": "3144", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63332594420854, 41.95566556763794, -85.63332594420854, 41.95566556763794], "geometry": {"coordinates": [-85.63332594420854, 41.95566556763794], "type": "Point"}, "id": "3145", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63332798578192, 41.95580054392508, -85.63332798578192, 41.95580054392508], "geometry": {"coordinates": [-85.63332798578192, 41.95580054392508], "type": "Point"}, "id": "3146", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.633330012762, 41.955935520041436, -85.633330012762, 41.955935520041436], "geometry": {"coordinates": [-85.633330012762, 41.955935520041436], "type": "Point"}, "id": "3147", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63333182039655, 41.95607049760158, -85.63333182039655, 41.95607049760158], "geometry": {"coordinates": [-85.63333182039655, 41.95607049760158], "type": "Point"}, "id": "3148", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333336280311, 41.95620547487584, -85.6333336280311, 41.95620547487584], "geometry": {"coordinates": [-85.6333336280311, 41.95620547487584], "type": "Point"}, "id": "3149", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63333543566563, 41.956340451864236, -85.63333543566563, 41.956340451864236], "geometry": {"coordinates": [-85.63333543566563, 41.956340451864236], "type": "Point"}, "id": "3150", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63333724330019, 41.95647542856677, -85.63333724330019, 41.95647542856677], "geometry": {"coordinates": [-85.63333724330019, 41.95647542856677], "type": "Point"}, "id": "3151", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63333905093472, 41.95661040498344, -85.63333905093472, 41.95661040498344], "geometry": {"coordinates": [-85.63333905093472, 41.95661040498344], "type": "Point"}, "id": "3152", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334085856928, 41.956745381114224, -85.63334085856928, 41.956745381114224], "geometry": {"coordinates": [-85.63334085856928, 41.956745381114224], "type": "Point"}, "id": "3153", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334266620382, 41.95688035695915, -85.63334266620382, 41.95688035695915], "geometry": {"coordinates": [-85.63334266620382, 41.95688035695915], "type": "Point"}, "id": "3154", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334447383836, 41.957015332518196, -85.63334447383836, 41.957015332518196], "geometry": {"coordinates": [-85.63334447383836, 41.957015332518196], "type": "Point"}, "id": "3155", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333462814729, 41.95715030779138, -85.6333462814729, 41.95715030779138], "geometry": {"coordinates": [-85.6333462814729, 41.95715030779138], "type": "Point"}, "id": "3156", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334808910744, 41.95728528277869, -85.63334808910744, 41.95728528277869], "geometry": {"coordinates": [-85.63334808910744, 41.95728528277869], "type": "Point"}, "id": "3157", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334989560884, 41.9574202574885, -85.63334989560884, 41.9574202574885], "geometry": {"coordinates": [-85.63334989560884, 41.9574202574885], "type": "Point"}, "id": "3158", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333516963407, 41.957555231955105, -85.6333516963407, 41.957555231955105], "geometry": {"coordinates": [-85.6333516963407, 41.957555231955105], "type": "Point"}, "id": "3159", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63335349707255, 41.957690206135815, -85.63335349707255, 41.957690206135815], "geometry": {"coordinates": [-85.63335349707255, 41.957690206135815], "type": "Point"}, "id": "3160", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63335529780441, 41.957825180030675, -85.63335529780441, 41.957825180030675], "geometry": {"coordinates": [-85.63335529780441, 41.957825180030675], "type": "Point"}, "id": "3161", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63335709853628, 41.957960153639654, -85.63335709853628, 41.957960153639654], "geometry": {"coordinates": [-85.63335709853628, 41.957960153639654], "type": "Point"}, "id": "3162", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63335889926812, 41.958095126962775, -85.63335889926812, 41.958095126962775], "geometry": {"coordinates": [-85.63335889926812, 41.958095126962775], "type": "Point"}, "id": "3163", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.62663, 41.929251, -85.62663, 41.929251], "geometry": {"coordinates": [-85.62663, 41.929251], "type": "Point"}, "id": "3164", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62681195826798, 41.92924912148587, -85.62681195826798, 41.92924912148587], "geometry": {"coordinates": [-85.62681195826798, 41.92924912148587], "type": "Point"}, "id": "3165", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62699391653592, 41.929247242971684, -85.62699391653592, 41.929247242971684], "geometry": {"coordinates": [-85.62699391653592, 41.929247242971684], "type": "Point"}, "id": "3166", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.6271758748039, 41.92924536445745, -85.6271758748039, 41.92924536445745], "geometry": {"coordinates": [-85.6271758748039, 41.92924536445745], "type": "Point"}, "id": "3167", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62735783307184, 41.92924348594315, -85.62735783307184, 41.92924348594315], "geometry": {"coordinates": [-85.62735783307184, 41.92924348594315], "type": "Point"}, "id": "3168", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62753979133983, 41.9292416074288, -85.62753979133983, 41.9292416074288], "geometry": {"coordinates": [-85.62753979133983, 41.9292416074288], "type": "Point"}, "id": "3169", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62772174960777, 41.9292397289144, -85.62772174960777, 41.9292397289144], "geometry": {"coordinates": [-85.62772174960777, 41.9292397289144], "type": "Point"}, "id": "3170", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62790370787575, 41.929237850399936, -85.62790370787575, 41.929237850399936], "geometry": {"coordinates": [-85.62790370787575, 41.929237850399936], "type": "Point"}, "id": "3171", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62808566614369, 41.92923597188542, -85.62808566614369, 41.92923597188542], "geometry": {"coordinates": [-85.62808566614369, 41.92923597188542], "type": "Point"}, "id": "3172", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62826762441166, 41.92923409337085, -85.62826762441166, 41.92923409337085], "geometry": {"coordinates": [-85.62826762441166, 41.92923409337085], "type": "Point"}, "id": "3173", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62844958282146, 41.92923222248249, -85.62844958282146, 41.92923222248249], "geometry": {"coordinates": [-85.62844958282146, 41.92923222248249], "type": "Point"}, "id": "3174", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62863154129673, 41.92923035511523, -85.62863154129673, 41.92923035511523], "geometry": {"coordinates": [-85.62863154129673, 41.92923035511523], "type": "Point"}, "id": "3175", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.628813499772, 41.92922848774792, -85.628813499772, 41.92922848774792], "geometry": {"coordinates": [-85.628813499772, 41.92922848774792], "type": "Point"}, "id": "3176", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62899545824726, 41.929226620380554, -85.62899545824726, 41.929226620380554], "geometry": {"coordinates": [-85.62899545824726, 41.929226620380554], "type": "Point"}, "id": "3177", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62917741672253, 41.929224753013145, -85.62917741672253, 41.929224753013145], "geometry": {"coordinates": [-85.62917741672253, 41.929224753013145], "type": "Point"}, "id": "3178", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.6293593751978, 41.92922288564567, -85.6293593751978, 41.92922288564567], "geometry": {"coordinates": [-85.6293593751978, 41.92922288564567], "type": "Point"}, "id": "3179", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62954133367306, 41.92922101827814, -85.62954133367306, 41.92922101827814], "geometry": {"coordinates": [-85.62954133367306, 41.92922101827814], "type": "Point"}, "id": "3180", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62972329206838, 41.92921914661049, -85.62972329206838, 41.92921914661049], "geometry": {"coordinates": [-85.62972329206838, 41.92921914661049], "type": "Point"}, "id": "3181", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62990525034432, 41.92921726852345, -85.62990525034432, 41.92921726852345], "geometry": {"coordinates": [-85.62990525034432, 41.92921726852345], "type": "Point"}, "id": "3182", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.63008720862025, 41.92921539043634, -85.63008720862025, 41.92921539043634], "geometry": {"coordinates": [-85.63008720862025, 41.92921539043634], "type": "Point"}, "id": "3183", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.63026916689621, 41.92921351234919, -85.63026916689621, 41.92921351234919], "geometry": {"coordinates": [-85.63026916689621, 41.92921351234919], "type": "Point"}, "id": "3184", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.63045112517214, 41.92921163426198, -85.63045112517214, 41.92921163426198], "geometry": {"coordinates": [-85.63045112517214, 41.92921163426198], "type": "Point"}, "id": "3185", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.6306330834481, 41.92920975617471, -85.6306330834481, 41.92920975617471], "geometry": {"coordinates": [-85.6306330834481, 41.92920975617471], "type": "Point"}, "id": "3186", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.63081504172403, 41.92920787808739, -85.63081504172403, 41.92920787808739], "geometry": {"coordinates": [-85.63081504172403, 41.92920787808739], "type": "Point"}, "id": "3187", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.6335028, 41.964788600000006, -85.6335028, 41.964788600000006], "geometry": {"coordinates": [-85.6335028, 41.964788600000006], "type": "Point"}, "id": "3188", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.6336909121877, 41.964815798084885, -85.6336909121877, 41.964815798084885], "geometry": {"coordinates": [-85.6336909121877, 41.964815798084885], "type": "Point"}, "id": "3189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.6338753789681, 41.96485430453375, -85.6338753789681, 41.96485430453375], "geometry": {"coordinates": [-85.6338753789681, 41.96485430453375], "type": "Point"}, "id": "3190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.6340647748783, 41.96487330579076, -85.6340647748783, 41.96487330579076], "geometry": {"coordinates": [-85.6340647748783, 41.96487330579076], "type": "Point"}, "id": "3191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.63425640615873, 41.964874254343094, -85.63425640615873, 41.964874254343094], "geometry": {"coordinates": [-85.63425640615873, 41.964874254343094], "type": "Point"}, "id": "3192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.63444803743914, 41.964875202895406, -85.63444803743914, 41.964875202895406], "geometry": {"coordinates": [-85.63444803743914, 41.964875202895406], "type": "Point"}, "id": "3193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.63463966871957, 41.964876151447726, -85.63463966871957, 41.964876151447726], "geometry": {"coordinates": [-85.63463966871957, 41.964876151447726], "type": "Point"}, "id": "3194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.624703, 41.925597, -85.624703, 41.925597], "geometry": {"coordinates": [-85.624703, 41.925597], "type": "Point"}, "id": "3195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.624704002439, 41.92573287077313, -85.624704002439, 41.92573287077313], "geometry": {"coordinates": [-85.624704002439, 41.92573287077313], "type": "Point"}, "id": "3196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470500487801, 41.925868741256906, -85.62470500487801, 41.925868741256906], "geometry": {"coordinates": [-85.62470500487801, 41.925868741256906], "type": "Point"}, "id": "3197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470600731704, 41.92600461145132, -85.62470600731704, 41.92600461145132], "geometry": {"coordinates": [-85.62470600731704, 41.92600461145132], "type": "Point"}, "id": "3198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470700975605, 41.92614048135638, -85.62470700975605, 41.92614048135638], "geometry": {"coordinates": [-85.62470700975605, 41.92614048135638], "type": "Point"}, "id": "3199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470801219506, 41.926276350972074, -85.62470801219506, 41.926276350972074], "geometry": {"coordinates": [-85.62470801219506, 41.926276350972074], "type": "Point"}, "id": "3200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470901463408, 41.92641222029842, -85.62470901463408, 41.92641222029842], "geometry": {"coordinates": [-85.62470901463408, 41.92641222029842], "type": "Point"}, "id": "3201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247100170731, 41.926548089335405, -85.6247100170731, 41.926548089335405], "geometry": {"coordinates": [-85.6247100170731, 41.926548089335405], "type": "Point"}, "id": "3202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247110195121, 41.92668395808303, -85.6247110195121, 41.92668395808303], "geometry": {"coordinates": [-85.6247110195121, 41.92668395808303], "type": "Point"}, "id": "3203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471202195111, 41.9268198265413, -85.62471202195111, 41.9268198265413], "geometry": {"coordinates": [-85.62471202195111, 41.9268198265413], "type": "Point"}, "id": "3204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471302439012, 41.9269556947102, -85.62471302439012, 41.9269556947102], "geometry": {"coordinates": [-85.62471302439012, 41.9269556947102], "type": "Point"}, "id": "3205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471402682915, 41.92709156258975, -85.62471402682915, 41.92709156258975], "geometry": {"coordinates": [-85.62471402682915, 41.92709156258975], "type": "Point"}, "id": "3206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471502926816, 41.927227430179954, -85.62471502926816, 41.927227430179954], "geometry": {"coordinates": [-85.62471502926816, 41.927227430179954], "type": "Point"}, "id": "3207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471601119718, 41.927363297537454, -85.62471601119718, 41.927363297537454], "geometry": {"coordinates": [-85.62471601119718, 41.927363297537454], "type": "Point"}, "id": "3208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471636520165, 41.927499166340596, -85.62471636520165, 41.927499166340596], "geometry": {"coordinates": [-85.62471636520165, 41.927499166340596], "type": "Point"}, "id": "3209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471671920609, 41.927635034854376, -85.62471671920609, 41.927635034854376], "geometry": {"coordinates": [-85.62471671920609, 41.927635034854376], "type": "Point"}, "id": "3210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471707321058, 41.92777090307878, -85.62471707321058, 41.92777090307878], "geometry": {"coordinates": [-85.62471707321058, 41.92777090307878], "type": "Point"}, "id": "3211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471742721503, 41.92790677101382, -85.62471742721503, 41.92790677101382], "geometry": {"coordinates": [-85.62471742721503, 41.92790677101382], "type": "Point"}, "id": "3212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471778121949, 41.9280426386595, -85.62471778121949, 41.9280426386595], "geometry": {"coordinates": [-85.62471778121949, 41.9280426386595], "type": "Point"}, "id": "3213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471813522394, 41.928178506015804, -85.62471813522394, 41.928178506015804], "geometry": {"coordinates": [-85.62471813522394, 41.928178506015804], "type": "Point"}, "id": "3214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471848922843, 41.92831437308275, -85.62471848922843, 41.92831437308275], "geometry": {"coordinates": [-85.62471848922843, 41.92831437308275], "type": "Point"}, "id": "3215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471884323288, 41.92845023986032, -85.62471884323288, 41.92845023986032], "geometry": {"coordinates": [-85.62471884323288, 41.92845023986032], "type": "Point"}, "id": "3216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471919723734, 41.928586106348526, -85.62471919723734, 41.928586106348526], "geometry": {"coordinates": [-85.62471919723734, 41.928586106348526], "type": "Point"}, "id": "3217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247195512418, 41.928721972547365, -85.6247195512418, 41.928721972547365], "geometry": {"coordinates": [-85.6247195512418, 41.928721972547365], "type": "Point"}, "id": "3218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471990524627, 41.928857838456835, -85.62471990524627, 41.928857838456835], "geometry": {"coordinates": [-85.62471990524627, 41.928857838456835], "type": "Point"}, "id": "3219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472025925074, 41.928993704076944, -85.62472025925074, 41.928993704076944], "geometry": {"coordinates": [-85.62472025925074, 41.928993704076944], "type": "Point"}, "id": "3220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472061325518, 41.92912956940767, -85.62472061325518, 41.92912956940767], "geometry": {"coordinates": [-85.62472061325518, 41.92912956940767], "type": "Point"}, "id": "3221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472096725965, 41.929265434449036, -85.62472096725965, 41.929265434449036], "geometry": {"coordinates": [-85.62472096725965, 41.929265434449036], "type": "Point"}, "id": "3222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247237035584, 41.929401283026074, -85.6247237035584, 41.929401283026074], "geometry": {"coordinates": [-85.6247237035584, 41.929401283026074], "type": "Point"}, "id": "3223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472668263902, 41.929537129665405, -85.62472668263902, 41.929537129665405], "geometry": {"coordinates": [-85.62472668263902, 41.929537129665405], "type": "Point"}, "id": "3224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472966171961, 41.92967297601544, -85.62472966171961, 41.92967297601544], "geometry": {"coordinates": [-85.62472966171961, 41.92967297601544], "type": "Point"}, "id": "3225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62473264080022, 41.92980882207619, -85.62473264080022, 41.92980882207619], "geometry": {"coordinates": [-85.62473264080022, 41.92980882207619], "type": "Point"}, "id": "3226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62473561988082, 41.92994466784764, -85.62473561988082, 41.92994466784764], "geometry": {"coordinates": [-85.62473561988082, 41.92994466784764], "type": "Point"}, "id": "3227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62473859896143, 41.930080513329806, -85.62473859896143, 41.930080513329806], "geometry": {"coordinates": [-85.62473859896143, 41.930080513329806], "type": "Point"}, "id": "3228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474123725114, 41.93021636143959, -85.62474123725114, 41.93021636143959], "geometry": {"coordinates": [-85.62474123725114, 41.93021636143959], "type": "Point"}, "id": "3229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247424599828, 41.93035222137621, -85.6247424599828, 41.93035222137621], "geometry": {"coordinates": [-85.6247424599828, 41.93035222137621], "type": "Point"}, "id": "3230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474368271445, 41.930488081023455, -85.62474368271445, 41.930488081023455], "geometry": {"coordinates": [-85.62474368271445, 41.930488081023455], "type": "Point"}, "id": "3231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474490544612, 41.93062394038136, -85.62474490544612, 41.93062394038136], "geometry": {"coordinates": [-85.62474490544612, 41.93062394038136], "type": "Point"}, "id": "3232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474612817775, 41.930759799449895, -85.62474612817775, 41.930759799449895], "geometry": {"coordinates": [-85.62474612817775, 41.930759799449895], "type": "Point"}, "id": "3233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474735090942, 41.93089565822908, -85.62474735090942, 41.93089565822908], "geometry": {"coordinates": [-85.62474735090942, 41.93089565822908], "type": "Point"}, "id": "3234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474857364107, 41.9310315167189, -85.62474857364107, 41.9310315167189], "geometry": {"coordinates": [-85.62474857364107, 41.9310315167189], "type": "Point"}, "id": "3235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474979637271, 41.93116737491937, -85.62474979637271, 41.93116737491937], "geometry": {"coordinates": [-85.62474979637271, 41.93116737491937], "type": "Point"}, "id": "3236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62475346546672, 41.93130320601567, -85.62475346546672, 41.93130320601567], "geometry": {"coordinates": [-85.62475346546672, 41.93130320601567], "type": "Point"}, "id": "3237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62475762336851, 41.93143903146487, -85.62475762336851, 41.93143903146487], "geometry": {"coordinates": [-85.62475762336851, 41.93143903146487], "type": "Point"}, "id": "3238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247617812703, 41.93157485662485, -85.6247617812703, 41.93157485662485], "geometry": {"coordinates": [-85.6247617812703, 41.93157485662485], "type": "Point"}, "id": "3239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62476593917206, 41.93171068149561, -85.62476593917206, 41.93171068149561], "geometry": {"coordinates": [-85.62476593917206, 41.93171068149561], "type": "Point"}, "id": "3240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477009707385, 41.93184650607715, -85.62477009707385, 41.93184650607715], "geometry": {"coordinates": [-85.62477009707385, 41.93184650607715], "type": "Point"}, "id": "3241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477425497562, 41.93198233036946, -85.62477425497562, 41.93198233036946], "geometry": {"coordinates": [-85.62477425497562, 41.93198233036946], "type": "Point"}, "id": "3242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477841287742, 41.93211815437255, -85.62477841287742, 41.93211815437255], "geometry": {"coordinates": [-85.62477841287742, 41.93211815437255], "type": "Point"}, "id": "3243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477967536663, 41.93225399951374, -85.62477967536663, 41.93225399951374], "geometry": {"coordinates": [-85.62477967536663, 41.93225399951374], "type": "Point"}, "id": "3244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477915031424, 41.932389857594174, -85.62477915031424, 41.932389857594174], "geometry": {"coordinates": [-85.62477915031424, 41.932389857594174], "type": "Point"}, "id": "3245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477862526187, 41.93252571538524, -85.62477862526187, 41.93252571538524], "geometry": {"coordinates": [-85.62477862526187, 41.93252571538524], "type": "Point"}, "id": "3246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247781002095, 41.93266157288693, -85.6247781002095, 41.93266157288693], "geometry": {"coordinates": [-85.6247781002095, 41.93266157288693], "type": "Point"}, "id": "3247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477757515713, 41.93279743009926, -85.62477757515713, 41.93279743009926], "geometry": {"coordinates": [-85.62477757515713, 41.93279743009926], "type": "Point"}, "id": "3248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477705010475, 41.932933287022216, -85.62477705010475, 41.932933287022216], "geometry": {"coordinates": [-85.62477705010475, 41.932933287022216], "type": "Point"}, "id": "3249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477652505237, 41.9330691436558, -85.62477652505237, 41.9330691436558], "geometry": {"coordinates": [-85.62477652505237, 41.9330691436558], "type": "Point"}, "id": "3250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.63857049999999, 41.951159100000005, -85.63857049999999, 41.951159100000005], "geometry": {"coordinates": [-85.63857049999999, 41.951159100000005], "type": "Point"}, "id": "3251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63861235306312, 41.9512859185629, -85.63861235306312, 41.9512859185629], "geometry": {"coordinates": [-85.63861235306312, 41.9512859185629], "type": "Point"}, "id": "3252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63861830060095, 41.95142041470863, -85.63861830060095, 41.95142041470863], "geometry": {"coordinates": [-85.63861830060095, 41.95142041470863], "type": "Point"}, "id": "3253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63862424813877, 41.951554910570565, -85.63862424813877, 41.951554910570565], "geometry": {"coordinates": [-85.63862424813877, 41.951554910570565], "type": "Point"}, "id": "3254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63863019567658, 41.95168940614871, -85.63863019567658, 41.95168940614871], "geometry": {"coordinates": [-85.63863019567658, 41.95168940614871], "type": "Point"}, "id": "3255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63863614321441, 41.95182390144307, -85.63863614321441, 41.95182390144307], "geometry": {"coordinates": [-85.63863614321441, 41.95182390144307], "type": "Point"}, "id": "3256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63864209075223, 41.95195839645364, -85.63864209075223, 41.95195839645364], "geometry": {"coordinates": [-85.63864209075223, 41.95195839645364], "type": "Point"}, "id": "3257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63864803829006, 41.95209289118043, -85.63864803829006, 41.95209289118043], "geometry": {"coordinates": [-85.63864803829006, 41.95209289118043], "type": "Point"}, "id": "3258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865398582789, 41.952227385623424, -85.63865398582789, 41.952227385623424], "geometry": {"coordinates": [-85.63865398582789, 41.952227385623424], "type": "Point"}, "id": "3259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386599333657, 41.952361879782636, -85.6386599333657, 41.952361879782636], "geometry": {"coordinates": [-85.6386599333657, 41.952361879782636], "type": "Point"}, "id": "3260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63866039560608, 41.95249643241697, -85.63866039560608, 41.95249643241697], "geometry": {"coordinates": [-85.63866039560608, 41.95249643241697], "type": "Point"}, "id": "3261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865965913266, 41.952630997607955, -85.63865965913266, 41.952630997607955], "geometry": {"coordinates": [-85.63865965913266, 41.952630997607955], "type": "Point"}, "id": "3262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386589226592, 41.95276556251485, -85.6386589226592, 41.95276556251485], "geometry": {"coordinates": [-85.6386589226592, 41.95276556251485], "type": "Point"}, "id": "3263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386581861858, 41.95290012713765, -85.6386581861858, 41.95290012713765], "geometry": {"coordinates": [-85.6386581861858, 41.95290012713765], "type": "Point"}, "id": "3264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865744971237, 41.95303469147637, -85.63865744971237, 41.95303469147637], "geometry": {"coordinates": [-85.63865744971237, 41.95303469147637], "type": "Point"}, "id": "3265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865671323893, 41.953169255530995, -85.63865671323893, 41.953169255530995], "geometry": {"coordinates": [-85.63865671323893, 41.953169255530995], "type": "Point"}, "id": "3266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386559767655, 41.953303819301524, -85.6386559767655, 41.953303819301524], "geometry": {"coordinates": [-85.6386559767655, 41.953303819301524], "type": "Point"}, "id": "3267", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865524029208, 41.953438382787965, -85.63865524029208, 41.953438382787965], "geometry": {"coordinates": [-85.63865524029208, 41.953438382787965], "type": "Point"}, "id": "3268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865450381867, 41.95357294599031, -85.63865450381867, 41.95357294599031], "geometry": {"coordinates": [-85.63865450381867, 41.95357294599031], "type": "Point"}, "id": "3269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865572687847, 41.95370748985685, -85.63865572687847, 41.95370748985685], "geometry": {"coordinates": [-85.63865572687847, 41.95370748985685], "type": "Point"}, "id": "3270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386611933476, 41.95384199218258, -85.6386611933476, 41.95384199218258], "geometry": {"coordinates": [-85.6386611933476, 41.95384199218258], "type": "Point"}, "id": "3271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63866665981674, 41.953976494224484, -85.63866665981674, 41.953976494224484], "geometry": {"coordinates": [-85.63866665981674, 41.953976494224484], "type": "Point"}, "id": "3272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63867212628588, 41.95411099598255, -85.63867212628588, 41.95411099598255], "geometry": {"coordinates": [-85.63867212628588, 41.95411099598255], "type": "Point"}, "id": "3273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63867759275503, 41.95424549745677, -85.63867759275503, 41.95424549745677], "geometry": {"coordinates": [-85.63867759275503, 41.95424549745677], "type": "Point"}, "id": "3274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63868305922416, 41.95437999864716, -85.63868305922416, 41.95437999864716], "geometry": {"coordinates": [-85.63868305922416, 41.95437999864716], "type": "Point"}, "id": "3275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63868852569331, 41.95451449955371, -85.63868852569331, 41.95451449955371], "geometry": {"coordinates": [-85.63868852569331, 41.95451449955371], "type": "Point"}, "id": "3276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.61917089999999, 41.9567483, -85.61917089999999, 41.9567483], "geometry": {"coordinates": [-85.61917089999999, 41.9567483], "type": "Point"}, "id": "3277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1056815666}, "type": "Feature"}, {"bbox": [-85.61898446666665, 41.95678943335988, -85.61898446666665, 41.95678943335988], "geometry": {"coordinates": [-85.61898446666665, 41.95678943335988], "type": "Point"}, "id": "3278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1056815666}, "type": "Feature"}, {"bbox": [-85.61879803333332, 41.95683056669321, -85.61879803333332, 41.95683056669321], "geometry": {"coordinates": [-85.61879803333332, 41.95683056669321], "type": "Point"}, "id": "3279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1056815666}, "type": "Feature"}, {"bbox": [-85.6276, 41.937412, -85.6276, 41.937412], "geometry": {"coordinates": [-85.6276, 41.937412], "type": "Point"}, "id": "3280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62748356534384, 41.93751905739353, -85.62748356534384, 41.93751905739353], "geometry": {"coordinates": [-85.62748356534384, 41.93751905739353], "type": "Point"}, "id": "3281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62736763495806, 41.93762635211607, -85.62736763495806, 41.93762635211607], "geometry": {"coordinates": [-85.62736763495806, 41.93762635211607], "type": "Point"}, "id": "3282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62726805798847, 41.93774234671138, -85.62726805798847, 41.93774234671138], "geometry": {"coordinates": [-85.62726805798847, 41.93774234671138], "type": "Point"}, "id": "3283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62718880167152, 41.93786644084367, -85.62718880167152, 41.93786644084367], "geometry": {"coordinates": [-85.62718880167152, 41.93786644084367], "type": "Point"}, "id": "3284", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62713772799678, 41.93799858703852, -85.62713772799678, 41.93799858703852], "geometry": {"coordinates": [-85.62713772799678, 41.93799858703852], "type": "Point"}, "id": "3285", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62711235031239, 41.93813499209264, -85.62711235031239, 41.93813499209264], "geometry": {"coordinates": [-85.62711235031239, 41.93813499209264], "type": "Point"}, "id": "3286", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710724882345, 41.938272518199035, -85.62710724882345, 41.938272518199035], "geometry": {"coordinates": [-85.62710724882345, 41.938272518199035], "type": "Point"}, "id": "3287", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710523129701, 41.93841021456231, -85.62710523129701, 41.93841021456231], "geometry": {"coordinates": [-85.62710523129701, 41.93841021456231], "type": "Point"}, "id": "3288", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710321377054, 41.93854791062827, -85.62710321377054, 41.93854791062827], "geometry": {"coordinates": [-85.62710321377054, 41.93854791062827], "type": "Point"}, "id": "3289", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710119624407, 41.938685606396916, -85.62710119624407, 41.938685606396916], "geometry": {"coordinates": [-85.62710119624407, 41.938685606396916], "type": "Point"}, "id": "3290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710136274127, 41.9388233089581, -85.62710136274127, 41.9388233089581], "geometry": {"coordinates": [-85.62710136274127, 41.9388233089581], "type": "Point"}, "id": "3291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.6271017645681, 41.93896101198587, -85.6271017645681, 41.93896101198587], "geometry": {"coordinates": [-85.6271017645681, 41.93896101198587], "type": "Point"}, "id": "3292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710216639493, 41.939098714716295, -85.62710216639493, 41.939098714716295], "geometry": {"coordinates": [-85.62710216639493, 41.939098714716295], "type": "Point"}, "id": "3293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710471095234, 41.93923639986876, -85.62710471095234, 41.93923639986876], "geometry": {"coordinates": [-85.62710471095234, 41.93923639986876], "type": "Point"}, "id": "3294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710832283422, 41.93937407611627, -85.62710832283422, 41.93937407611627], "geometry": {"coordinates": [-85.62710832283422, 41.93937407611627], "type": "Point"}, "id": "3295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62711193471608, 41.939511752066544, -85.62711193471608, 41.939511752066544], "geometry": {"coordinates": [-85.62711193471608, 41.939511752066544], "type": "Point"}, "id": "3296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62711554659796, 41.93964942771957, -85.62711554659796, 41.93964942771957], "geometry": {"coordinates": [-85.62711554659796, 41.93964942771957], "type": "Point"}, "id": "3297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62711915847983, 41.93978710307536, -85.62711915847983, 41.93978710307536], "geometry": {"coordinates": [-85.62711915847983, 41.93978710307536], "type": "Point"}, "id": "3298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62712277036171, 41.93992477813391, -85.62712277036171, 41.93992477813391], "geometry": {"coordinates": [-85.62712277036171, 41.93992477813391], "type": "Point"}, "id": "3299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62712638224359, 41.94006245289522, -85.62712638224359, 41.94006245289522], "geometry": {"coordinates": [-85.62712638224359, 41.94006245289522], "type": "Point"}, "id": "3300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62863899999999, 41.953725, -85.62863899999999, 41.953725], "geometry": {"coordinates": [-85.62863899999999, 41.953725], "type": "Point"}, "id": "3301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62882026480725, 41.953725, -85.62882026480725, 41.953725], "geometry": {"coordinates": [-85.62882026480725, 41.953725], "type": "Point"}, "id": "3302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62900152961447, 41.953725, -85.62900152961447, 41.953725], "geometry": {"coordinates": [-85.62900152961447, 41.953725], "type": "Point"}, "id": "3303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6291827839147, 41.95372607692594, -85.6291827839147, 41.95372607692594], "geometry": {"coordinates": [-85.6291827839147, 41.95372607692594], "type": "Point"}, "id": "3304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62936402963716, 41.95372803303495, -85.62936402963716, 41.95372803303495], "geometry": {"coordinates": [-85.62936402963716, 41.95372803303495], "type": "Point"}, "id": "3305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6295452753596, 41.9537299891439, -85.6295452753596, 41.9537299891439], "geometry": {"coordinates": [-85.6295452753596, 41.9537299891439], "type": "Point"}, "id": "3306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62972651655252, 41.95373065810141, -85.62972651655252, 41.95373065810141], "geometry": {"coordinates": [-85.62972651655252, 41.95373065810141], "type": "Point"}, "id": "3307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62990774602518, 41.95372799652047, -85.62990774602518, 41.95372799652047], "geometry": {"coordinates": [-85.62990774602518, 41.95372799652047], "type": "Point"}, "id": "3308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63008897549783, 41.95372533493942, -85.63008897549783, 41.95372533493942], "geometry": {"coordinates": [-85.63008897549783, 41.95372533493942], "type": "Point"}, "id": "3309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63027020497047, 41.95372267335826, -85.63027020497047, 41.95372267335826], "geometry": {"coordinates": [-85.63027020497047, 41.95372267335826], "type": "Point"}, "id": "3310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63045143501783, 41.95372003833833, -85.63045143501783, 41.95372003833833], "geometry": {"coordinates": [-85.63045143501783, 41.95372003833833], "type": "Point"}, "id": "3311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63063266420136, 41.95371736589155, -85.63063266420136, 41.95371736589155], "geometry": {"coordinates": [-85.63063266420136, 41.95371736589155], "type": "Point"}, "id": "3312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6308138933849, 41.953714693444645, -85.6308138933849, 41.953714693444645], "geometry": {"coordinates": [-85.6308138933849, 41.953714693444645], "type": "Point"}, "id": "3313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63099514379128, 41.95371316575597, -85.63099514379128, 41.95371316575597], "geometry": {"coordinates": [-85.63099514379128, 41.95371316575597], "type": "Point"}, "id": "3314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6311764031594, 41.95371212146336, -85.6311764031594, 41.95371212146336], "geometry": {"coordinates": [-85.6311764031594, 41.95371212146336], "type": "Point"}, "id": "3315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63135766252752, 41.95371107717071, -85.63135766252752, 41.95371107717071], "geometry": {"coordinates": [-85.63135766252752, 41.95371107717071], "type": "Point"}, "id": "3316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63153892189564, 41.95371003287806, -85.63153892189564, 41.95371003287806], "geometry": {"coordinates": [-85.63153892189564, 41.95371003287806], "type": "Point"}, "id": "3317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63172018126376, 41.95370898858538, -85.63172018126376, 41.95370898858538], "geometry": {"coordinates": [-85.63172018126376, 41.95370898858538], "type": "Point"}, "id": "3318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63190144063188, 41.9537079442927, -85.63190144063188, 41.9537079442927], "geometry": {"coordinates": [-85.63190144063188, 41.9537079442927], "type": "Point"}, "id": "3319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6497648, 41.9269716, -85.6497648, 41.9269716], "geometry": {"coordinates": [-85.6497648, 41.9269716], "type": "Point"}, "id": "3320", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 259782253}, "type": "Feature"}, {"bbox": [-85.64976277733027, 41.927129979965954, -85.64976277733027, 41.927129979965954], "geometry": {"coordinates": [-85.64976277733027, 41.927129979965954], "type": "Point"}, "id": "3321", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 259782253}, "type": "Feature"}, {"bbox": [-85.6497607546605, 41.927288359538714, -85.6497607546605, 41.927288359538714], "geometry": {"coordinates": [-85.6497607546605, 41.927288359538714], "type": "Point"}, "id": "3322", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 259782253}, "type": "Feature"}, {"bbox": [-85.64975895081548, 41.927446740167774, -85.64975895081548, 41.927446740167774], "geometry": {"coordinates": [-85.64975895081548, 41.927446740167774], "type": "Point"}, "id": "3323", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 259782253}, "type": "Feature"}, {"bbox": [-85.64975711846674, 41.92760512023618, -85.64975711846674, 41.92760512023618], "geometry": {"coordinates": [-85.64975711846674, 41.92760512023618], "type": "Point"}, "id": "3324", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 259782253}, "type": "Feature"}, {"bbox": [-85.63576, 41.9381878, -85.63576, 41.9381878], "geometry": {"coordinates": [-85.63576, 41.9381878], "type": "Point"}, "id": "3325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576099266001, 41.93832235807764, -85.63576099266001, 41.93832235807764], "geometry": {"coordinates": [-85.63576099266001, 41.93832235807764], "type": "Point"}, "id": "3326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576198532003, 41.93845691587136, -85.63576198532003, 41.93845691587136], "geometry": {"coordinates": [-85.63576198532003, 41.93845691587136], "type": "Point"}, "id": "3327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576297798002, 41.938591473381166, -85.63576297798002, 41.938591473381166], "geometry": {"coordinates": [-85.63576297798002, 41.938591473381166], "type": "Point"}, "id": "3328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576404837546, 41.938726030217445, -85.63576404837546, 41.938726030217445], "geometry": {"coordinates": [-85.63576404837546, 41.938726030217445], "type": "Point"}, "id": "3329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576549324391, 41.93886058489301, -85.63576549324391, 41.93886058489301], "geometry": {"coordinates": [-85.63576549324391, 41.93886058489301], "type": "Point"}, "id": "3330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576693811234, 41.938995139284664, -85.63576693811234, 41.938995139284664], "geometry": {"coordinates": [-85.63576693811234, 41.938995139284664], "type": "Point"}, "id": "3331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576838298077, 41.93912969339241, -85.63576838298077, 41.93912969339241], "geometry": {"coordinates": [-85.63576838298077, 41.93912969339241], "type": "Point"}, "id": "3332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.6357698278492, 41.93926424721625, -85.6357698278492, 41.93926424721625], "geometry": {"coordinates": [-85.6357698278492, 41.93926424721625], "type": "Point"}, "id": "3333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63577127271763, 41.93939880075618, -85.63577127271763, 41.93939880075618], "geometry": {"coordinates": [-85.63577127271763, 41.93939880075618], "type": "Point"}, "id": "3334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63577271758608, 41.9395333540122, -85.63577271758608, 41.9395333540122], "geometry": {"coordinates": [-85.63577271758608, 41.9395333540122], "type": "Point"}, "id": "3335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.6357741624545, 41.9396679069843, -85.6357741624545, 41.9396679069843], "geometry": {"coordinates": [-85.6357741624545, 41.9396679069843], "type": "Point"}, "id": "3336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63577560732294, 41.9398024596725, -85.63577560732294, 41.9398024596725], "geometry": {"coordinates": [-85.63577560732294, 41.9398024596725], "type": "Point"}, "id": "3337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63577705219137, 41.93993701207678, -85.63577705219137, 41.93993701207678], "geometry": {"coordinates": [-85.63577705219137, 41.93993701207678], "type": "Point"}, "id": "3338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.6357784970598, 41.94007156419717, -85.6357784970598, 41.94007156419717], "geometry": {"coordinates": [-85.6357784970598, 41.94007156419717], "type": "Point"}, "id": "3339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578044224745, 41.940206112271376, -85.63578044224745, 41.940206112271376], "geometry": {"coordinates": [-85.63578044224745, 41.940206112271376], "type": "Point"}, "id": "3340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578265457926, 41.94034065805285, -85.63578265457926, 41.94034065805285], "geometry": {"coordinates": [-85.63578265457926, 41.94034065805285], "type": "Point"}, "id": "3341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578486691107, 41.94047520355043, -85.63578486691107, 41.94047520355043], "geometry": {"coordinates": [-85.63578486691107, 41.94047520355043], "type": "Point"}, "id": "3342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578707924287, 41.94060974876414, -85.63578707924287, 41.94060974876414], "geometry": {"coordinates": [-85.63578707924287, 41.94060974876414], "type": "Point"}, "id": "3343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578929157468, 41.940744293693946, -85.63578929157468, 41.940744293693946], "geometry": {"coordinates": [-85.63578929157468, 41.940744293693946], "type": "Point"}, "id": "3344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579150390647, 41.94087883833988, -85.63579150390647, 41.94087883833988], "geometry": {"coordinates": [-85.63579150390647, 41.94087883833988], "type": "Point"}, "id": "3345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579371623828, 41.94101338270192, -85.63579371623828, 41.94101338270192], "geometry": {"coordinates": [-85.63579371623828, 41.94101338270192], "type": "Point"}, "id": "3346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579573549383, 41.94114792826683, -85.63579573549383, 41.94114792826683], "geometry": {"coordinates": [-85.63579573549383, 41.94114792826683], "type": "Point"}, "id": "3347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579726826939, 41.9412824772939, -85.63579726826939, 41.9412824772939], "geometry": {"coordinates": [-85.63579726826939, 41.9412824772939], "type": "Point"}, "id": "3348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579883170497, 41.941417025833985, -85.63579883170497, 41.941417025833985], "geometry": {"coordinates": [-85.63579883170497, 41.941417025833985], "type": "Point"}, "id": "3349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579993365526, 41.94155157588314, -85.63579993365526, 41.94155157588314], "geometry": {"coordinates": [-85.63579993365526, 41.94155157588314], "type": "Point"}, "id": "3350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580142532139, 41.94168612431413, -85.63580142532139, 41.94168612431413], "geometry": {"coordinates": [-85.63580142532139, 41.94168612431413], "type": "Point"}, "id": "3351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580291698752, 41.9418206724612, -85.63580291698752, 41.9418206724612], "geometry": {"coordinates": [-85.63580291698752, 41.9418206724612], "type": "Point"}, "id": "3352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580444310955, 41.94195522010775, -85.63580444310955, 41.94195522010775], "geometry": {"coordinates": [-85.63580444310955, 41.94195522010775], "type": "Point"}, "id": "3353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580596146676, 41.94208976752181, -85.63580596146676, 41.94208976752181], "geometry": {"coordinates": [-85.63580596146676, 41.94208976752181], "type": "Point"}, "id": "3354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580747982397, 41.942224314651966, -85.63580747982397, 41.942224314651966], "geometry": {"coordinates": [-85.63580747982397, 41.942224314651966], "type": "Point"}, "id": "3355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.6358089981622, 41.942358861498334, -85.6358089981622, 41.942358861498334], "geometry": {"coordinates": [-85.6358089981622, 41.942358861498334], "type": "Point"}, "id": "3356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63581051637405, 41.94249340806157, -85.63581051637405, 41.94249340806157], "geometry": {"coordinates": [-85.63581051637405, 41.94249340806157], "type": "Point"}, "id": "3357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63581203458591, 41.94262795434091, -85.63581203458591, 41.94262795434091], "geometry": {"coordinates": [-85.63581203458591, 41.94262795434091], "type": "Point"}, "id": "3358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.61118699999999, 41.951686, -85.61118699999999, 41.951686], "geometry": {"coordinates": [-85.61118699999999, 41.951686], "type": "Point"}, "id": "3359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.6113608400868, 41.95165226846938, -85.6113608400868, 41.95165226846938], "geometry": {"coordinates": [-85.6113608400868, 41.95165226846938], "type": "Point"}, "id": "3360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61154168742112, 41.951648772299635, -85.61154168742112, 41.951648772299635], "geometry": {"coordinates": [-85.61154168742112, 41.951648772299635], "type": "Point"}, "id": "3361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61172253475544, 41.9516452761297, -85.61172253475544, 41.9516452761297], "geometry": {"coordinates": [-85.61172253475544, 41.9516452761297], "type": "Point"}, "id": "3362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61190338583653, 41.95164196485854, -85.61190338583653, 41.95164196485854], "geometry": {"coordinates": [-85.61190338583653, 41.95164196485854], "type": "Point"}, "id": "3363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61208429270202, 41.95164140650401, -85.61208429270202, 41.95164140650401], "geometry": {"coordinates": [-85.61208429270202, 41.95164140650401], "type": "Point"}, "id": "3364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61226519976911, 41.95164089005638, -85.61226519976911, 41.95164089005638], "geometry": {"coordinates": [-85.61226519976911, 41.95164089005638], "type": "Point"}, "id": "3365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61244610737583, 41.951640485793575, -85.61244610737583, 41.951640485793575], "geometry": {"coordinates": [-85.61244610737583, 41.951640485793575], "type": "Point"}, "id": "3366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61262701498254, 41.95164008153077, -85.61262701498254, 41.95164008153077], "geometry": {"coordinates": [-85.61262701498254, 41.95164008153077], "type": "Point"}, "id": "3367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61280792258924, 41.95163967726797, -85.61280792258924, 41.95163967726797], "geometry": {"coordinates": [-85.61280792258924, 41.95163967726797], "type": "Point"}, "id": "3368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61298883019596, 41.951639273005156, -85.61298883019596, 41.951639273005156], "geometry": {"coordinates": [-85.61298883019596, 41.951639273005156], "type": "Point"}, "id": "3369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.6131697374141, 41.951639206096196, -85.6131697374141, 41.951639206096196], "geometry": {"coordinates": [-85.6131697374141, 41.951639206096196], "type": "Point"}, "id": "3370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61335064382406, 41.95163984085552, -85.61335064382406, 41.95163984085552], "geometry": {"coordinates": [-85.61335064382406, 41.95163984085552], "type": "Point"}, "id": "3371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61353155174264, 41.951640000000005, -85.61353155174264, 41.951640000000005], "geometry": {"coordinates": [-85.61353155174264, 41.951640000000005], "type": "Point"}, "id": "3372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.613712460166, 41.951640000000005, -85.613712460166, 41.951640000000005], "geometry": {"coordinates": [-85.613712460166, 41.951640000000005], "type": "Point"}, "id": "3373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61389336858936, 41.951640000000005, -85.61389336858936, 41.951640000000005], "geometry": {"coordinates": [-85.61389336858936, 41.951640000000005], "type": "Point"}, "id": "3374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61407427701272, 41.951640000000005, -85.61407427701272, 41.951640000000005], "geometry": {"coordinates": [-85.61407427701272, 41.951640000000005], "type": "Point"}, "id": "3375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61425518523902, 41.95163991367364, -85.61425518523902, 41.95163991367364], "geometry": {"coordinates": [-85.61425518523902, 41.95163991367364], "type": "Point"}, "id": "3376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.6144360926195, 41.95163945683682, -85.6144360926195, 41.95163945683682], "geometry": {"coordinates": [-85.6144360926195, 41.95163945683682], "type": "Point"}, "id": "3377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.64533579999998, 41.94449949999999, -85.64533579999998, 41.94449949999999], "geometry": {"coordinates": [-85.64533579999998, 41.94449949999999], "type": "Point"}, "id": "3378", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 314867415}, "type": "Feature"}, {"bbox": [-85.64527910485717, 41.94434417896261, -85.64527910485717, 41.94434417896261], "geometry": {"coordinates": [-85.64527910485717, 41.94434417896261], "type": "Point"}, "id": "3379", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 314867415}, "type": "Feature"}, {"bbox": [-85.6186943, 41.95500010000001, -85.6186943, 41.95500010000001], "geometry": {"coordinates": [-85.6186943, 41.95500010000001], "type": "Point"}, "id": "3380", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1068082269}, "type": "Feature"}, {"bbox": [-85.61873239044141, 41.954871450384424, -85.61873239044141, 41.954871450384424], "geometry": {"coordinates": [-85.61873239044141, 41.954871450384424], "type": "Point"}, "id": "3381", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1068082269}, "type": "Feature"}, {"bbox": [-85.611615, 41.953704, -85.611615, 41.953704], "geometry": {"coordinates": [-85.611615, 41.953704], "type": "Point"}, "id": "3382", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.6116285289151, 41.953854750866675, -85.6116285289151, 41.953854750866675], "geometry": {"coordinates": [-85.6116285289151, 41.953854750866675], "type": "Point"}, "id": "3383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61163723289671, 41.95400564533323, -85.61163723289671, 41.95400564533323], "geometry": {"coordinates": [-85.61163723289671, 41.95400564533323], "type": "Point"}, "id": "3384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61163998631737, 41.95415671698275, -85.61163998631737, 41.95415671698275], "geometry": {"coordinates": [-85.61163998631737, 41.95415671698275], "type": "Point"}, "id": "3385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61164273973802, 41.954307788274185, -85.61164273973802, 41.954307788274185], "geometry": {"coordinates": [-85.61164273973802, 41.954307788274185], "type": "Point"}, "id": "3386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61164549315868, 41.954458859207534, -85.61164549315868, 41.954458859207534], "geometry": {"coordinates": [-85.61164549315868, 41.954458859207534], "type": "Point"}, "id": "3387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61164824657934, 41.95460992978281, -85.61164824657934, 41.95460992978281], "geometry": {"coordinates": [-85.61164824657934, 41.95460992978281], "type": "Point"}, "id": "3388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.6186424, 41.95473350000001, -85.6186424, 41.95473350000001], "geometry": {"coordinates": [-85.6186424, 41.95473350000001], "type": "Point"}, "id": "3389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1068082268}, "type": "Feature"}, {"bbox": [-85.61864447128255, 41.95487328027997, -85.61864447128255, 41.95487328027997], "geometry": {"coordinates": [-85.61864447128255, 41.95487328027997], "type": "Point"}, "id": "3390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1068082268}, "type": "Feature"}, {"bbox": [-85.64201479999998, 41.9476126, -85.64201479999998, 41.9476126], "geometry": {"coordinates": [-85.64201479999998, 41.9476126], "type": "Point"}, "id": "3391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.6421876402203, 41.94765599810832, -85.6421876402203, 41.94765599810832], "geometry": {"coordinates": [-85.6421876402203, 41.94765599810832], "type": "Point"}, "id": "3392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64237440639329, 41.94765552977147, -85.64237440639329, 41.94765552977147], "geometry": {"coordinates": [-85.64237440639329, 41.94765552977147], "type": "Point"}, "id": "3393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64256120208637, 41.94765425892537, -85.64256120208637, 41.94765425892537], "geometry": {"coordinates": [-85.64256120208637, 41.94765425892537], "type": "Point"}, "id": "3394", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64274799777944, 41.947652988079234, -85.64274799777944, 41.947652988079234], "geometry": {"coordinates": [-85.64274799777944, 41.947652988079234], "type": "Point"}, "id": "3395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64293479347252, 41.94765171723307, -85.64293479347252, 41.94765171723307], "geometry": {"coordinates": [-85.64293479347252, 41.94765171723307], "type": "Point"}, "id": "3396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.6431215891656, 41.9476504463869, -85.6431215891656, 41.9476504463869], "geometry": {"coordinates": [-85.6431215891656, 41.9476504463869], "type": "Point"}, "id": "3397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64330837106134, 41.947648433647856, -85.64330837106134, 41.947648433647856], "geometry": {"coordinates": [-85.64330837106134, 41.947648433647856], "type": "Point"}, "id": "3398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.6434951425511, 41.94764586137348, -85.6434951425511, 41.94764586137348], "geometry": {"coordinates": [-85.6434951425511, 41.94764586137348], "type": "Point"}, "id": "3399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64368191404088, 41.94764328909899, -85.64368191404088, 41.94764328909899], "geometry": {"coordinates": [-85.64368191404088, 41.94764328909899], "type": "Point"}, "id": "3400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64386868553065, 41.9476407168244, -85.64386868553065, 41.9476407168244], "geometry": {"coordinates": [-85.64386868553065, 41.9476407168244], "type": "Point"}, "id": "3401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64405545702044, 41.94763814454971, -85.64405545702044, 41.94763814454971], "geometry": {"coordinates": [-85.64405545702044, 41.94763814454971], "type": "Point"}, "id": "3402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64424222851022, 41.9476355722749, -85.64424222851022, 41.9476355722749], "geometry": {"coordinates": [-85.64424222851022, 41.9476355722749], "type": "Point"}, "id": "3403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.636516, 41.935036, -85.636516, 41.935036], "geometry": {"coordinates": [-85.636516, 41.935036], "type": "Point"}, "id": "3404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63669615931738, 41.935033960701205, -85.63669615931738, 41.935033960701205], "geometry": {"coordinates": [-85.63669615931738, 41.935033960701205], "type": "Point"}, "id": "3405", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63687631863479, 41.93503192140236, -85.63687631863479, 41.93503192140236], "geometry": {"coordinates": [-85.63687631863479, 41.93503192140236], "type": "Point"}, "id": "3406", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63705647795219, 41.93502988210344, -85.63705647795219, 41.93502988210344], "geometry": {"coordinates": [-85.63705647795219, 41.93502988210344], "type": "Point"}, "id": "3407", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63723663726958, 41.93502784280446, -85.63723663726958, 41.93502784280446], "geometry": {"coordinates": [-85.63723663726958, 41.93502784280446], "type": "Point"}, "id": "3408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63741679658698, 41.93502580350542, -85.63741679658698, 41.93502580350542], "geometry": {"coordinates": [-85.63741679658698, 41.93502580350542], "type": "Point"}, "id": "3409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63759695590437, 41.9350237642063, -85.63759695590437, 41.9350237642063], "geometry": {"coordinates": [-85.63759695590437, 41.9350237642063], "type": "Point"}, "id": "3410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63777711514, 41.93502172091551, -85.63777711514, 41.93502172091551], "geometry": {"coordinates": [-85.63777711514, 41.93502172091551], "type": "Point"}, "id": "3411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63795727434437, 41.93501967609791, -85.63795727434437, 41.93501967609791], "geometry": {"coordinates": [-85.63795727434437, 41.93501967609791], "type": "Point"}, "id": "3412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63813743354872, 41.935017631280246, -85.63813743354872, 41.935017631280246], "geometry": {"coordinates": [-85.63813743354872, 41.935017631280246], "type": "Point"}, "id": "3413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6383175927531, 41.93501558646252, -85.6383175927531, 41.93501558646252], "geometry": {"coordinates": [-85.6383175927531, 41.93501558646252], "type": "Point"}, "id": "3414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63849775195747, 41.93501354164472, -85.63849775195747, 41.93501354164472], "geometry": {"coordinates": [-85.63849775195747, 41.93501354164472], "type": "Point"}, "id": "3415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63867791116184, 41.93501149682686, -85.63867791116184, 41.93501149682686], "geometry": {"coordinates": [-85.63867791116184, 41.93501149682686], "type": "Point"}, "id": "3416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63885807037504, 41.9350094524401, -85.63885807037504, 41.9350094524401], "geometry": {"coordinates": [-85.63885807037504, 41.9350094524401], "type": "Point"}, "id": "3417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63903822961976, 41.9350074095901, -85.63903822961976, 41.9350074095901], "geometry": {"coordinates": [-85.63903822961976, 41.9350074095901], "type": "Point"}, "id": "3418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63921838886445, 41.935005366740036, -85.63921838886445, 41.935005366740036], "geometry": {"coordinates": [-85.63921838886445, 41.935005366740036], "type": "Point"}, "id": "3419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63939854810917, 41.935003323889916, -85.63939854810917, 41.935003323889916], "geometry": {"coordinates": [-85.63939854810917, 41.935003323889916], "type": "Point"}, "id": "3420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63957870735389, 41.93500128103972, -85.63957870735389, 41.93500128103972], "geometry": {"coordinates": [-85.63957870735389, 41.93500128103972], "type": "Point"}, "id": "3421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63975886659858, 41.934999238189455, -85.63975886659858, 41.934999238189455], "geometry": {"coordinates": [-85.63975886659858, 41.934999238189455], "type": "Point"}, "id": "3422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63993902584329, 41.93499719533914, -85.63993902584329, 41.93499719533914], "geometry": {"coordinates": [-85.63993902584329, 41.93499719533914], "type": "Point"}, "id": "3423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64011918512722, 41.93499515440539, -85.64011918512722, 41.93499515440539], "geometry": {"coordinates": [-85.64011918512722, 41.93499515440539], "type": "Point"}, "id": "3424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6402993445182, 41.93499311870622, -85.6402993445182, 41.93499311870622], "geometry": {"coordinates": [-85.6402993445182, 41.93499311870622], "type": "Point"}, "id": "3425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64047950390918, 41.93499108300697, -85.64047950390918, 41.93499108300697], "geometry": {"coordinates": [-85.64047950390918, 41.93499108300697], "type": "Point"}, "id": "3426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64065966330017, 41.93498904730767, -85.64065966330017, 41.93498904730767], "geometry": {"coordinates": [-85.64065966330017, 41.93498904730767], "type": "Point"}, "id": "3427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64083982269115, 41.9349870116083, -85.64083982269115, 41.9349870116083], "geometry": {"coordinates": [-85.64083982269115, 41.9349870116083], "type": "Point"}, "id": "3428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64101998208213, 41.93498497590887, -85.64101998208213, 41.93498497590887], "geometry": {"coordinates": [-85.64101998208213, 41.93498497590887], "type": "Point"}, "id": "3429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64120014147312, 41.934982940209366, -85.64120014147312, 41.934982940209366], "geometry": {"coordinates": [-85.64120014147312, 41.934982940209366], "type": "Point"}, "id": "3430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64138031067552, 41.934981475986895, -85.64138031067552, 41.934981475986895], "geometry": {"coordinates": [-85.64138031067552, 41.934981475986895], "type": "Point"}, "id": "3431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64156048119052, 41.934980088219376, -85.64156048119052, 41.934980088219376], "geometry": {"coordinates": [-85.64156048119052, 41.934980088219376], "type": "Point"}, "id": "3432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64174065170553, 41.934978700451815, -85.64174065170553, 41.934978700451815], "geometry": {"coordinates": [-85.64174065170553, 41.934978700451815], "type": "Point"}, "id": "3433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64192082222053, 41.934977312684225, -85.64192082222053, 41.934977312684225], "geometry": {"coordinates": [-85.64192082222053, 41.934977312684225], "type": "Point"}, "id": "3434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64210099273555, 41.934975924916614, -85.64210099273555, 41.934975924916614], "geometry": {"coordinates": [-85.64210099273555, 41.934975924916614], "type": "Point"}, "id": "3435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64228116325054, 41.93497453714896, -85.64228116325054, 41.93497453714896], "geometry": {"coordinates": [-85.64228116325054, 41.93497453714896], "type": "Point"}, "id": "3436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64246133891254, 41.934974307312245, -85.64246133891254, 41.934974307312245], "geometry": {"coordinates": [-85.64246133891254, 41.934974307312245], "type": "Point"}, "id": "3437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64264151782473, 41.934974808686135, -85.64264151782473, 41.934974808686135], "geometry": {"coordinates": [-85.64264151782473, 41.934974808686135], "type": "Point"}, "id": "3438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64282169673695, 41.93497531006001, -85.64282169673695, 41.93497531006001], "geometry": {"coordinates": [-85.64282169673695, 41.93497531006001], "type": "Point"}, "id": "3439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64300187564913, 41.93497581143389, -85.64300187564913, 41.93497581143389], "geometry": {"coordinates": [-85.64300187564913, 41.93497581143389], "type": "Point"}, "id": "3440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64318205456132, 41.934976312807756, -85.64318205456132, 41.934976312807756], "geometry": {"coordinates": [-85.64318205456132, 41.934976312807756], "type": "Point"}, "id": "3441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64336223347351, 41.93497681418163, -85.64336223347351, 41.93497681418163], "geometry": {"coordinates": [-85.64336223347351, 41.93497681418163], "type": "Point"}, "id": "3442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64354241238573, 41.934977315555486, -85.64354241238573, 41.934977315555486], "geometry": {"coordinates": [-85.64354241238573, 41.934977315555486], "type": "Point"}, "id": "3443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64372259129792, 41.93497781692935, -85.64372259129792, 41.93497781692935], "geometry": {"coordinates": [-85.64372259129792, 41.93497781692935], "type": "Point"}, "id": "3444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6439027702101, 41.93497831830321, -85.6439027702101, 41.93497831830321], "geometry": {"coordinates": [-85.6439027702101, 41.93497831830321], "type": "Point"}, "id": "3445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6440829491223, 41.93497881967705, -85.6440829491223, 41.93497881967705], "geometry": {"coordinates": [-85.6440829491223, 41.93497881967705], "type": "Point"}, "id": "3446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64426312803451, 41.93497932105091, -85.64426312803451, 41.93497932105091], "geometry": {"coordinates": [-85.64426312803451, 41.93497932105091], "type": "Point"}, "id": "3447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6444432636682, 41.934976670720985, -85.6444432636682, 41.934976670720985], "geometry": {"coordinates": [-85.6444432636682, 41.934976670720985], "type": "Point"}, "id": "3448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64462339121333, 41.934973431353114, -85.64462339121333, 41.934973431353114], "geometry": {"coordinates": [-85.64462339121333, 41.934973431353114], "type": "Point"}, "id": "3449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64480351875847, 41.93497019198507, -85.64480351875847, 41.93497019198507], "geometry": {"coordinates": [-85.64480351875847, 41.93497019198507], "type": "Point"}, "id": "3450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64498364668455, 41.93496696437306, -85.64498364668455, 41.93496696437306], "geometry": {"coordinates": [-85.64498364668455, 41.93496696437306], "type": "Point"}, "id": "3451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64516377483243, 41.93496374360534, -85.64516377483243, 41.93496374360534], "geometry": {"coordinates": [-85.64516377483243, 41.93496374360534], "type": "Point"}, "id": "3452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6453439029803, 41.93496052283745, -85.6453439029803, 41.93496052283745], "geometry": {"coordinates": [-85.6453439029803, 41.93496052283745], "type": "Point"}, "id": "3453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64552403052724, 41.934957283553075, -85.64552403052724, 41.934957283553075], "geometry": {"coordinates": [-85.64552403052724, 41.934957283553075], "type": "Point"}, "id": "3454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64570415638468, 41.93495399279136, -85.64570415638468, 41.93495399279136], "geometry": {"coordinates": [-85.64570415638468, 41.93495399279136], "type": "Point"}, "id": "3455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64588428442386, 41.93495076893254, -85.64588428442386, 41.93495076893254], "geometry": {"coordinates": [-85.64588428442386, 41.93495076893254], "type": "Point"}, "id": "3456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64606441254422, 41.93494754731274, -85.64606441254422, 41.93494754731274], "geometry": {"coordinates": [-85.64606441254422, 41.93494754731274], "type": "Point"}, "id": "3457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64624454066458, 41.934944325692776, -85.64624454066458, 41.934944325692776], "geometry": {"coordinates": [-85.64624454066458, 41.934944325692776], "type": "Point"}, "id": "3458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64642466878496, 41.93494110407265, -85.64642466878496, 41.93494110407265], "geometry": {"coordinates": [-85.64642466878496, 41.93494110407265], "type": "Point"}, "id": "3459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64660473428854, 41.93494356190197, -85.64660473428854, 41.93494356190197], "geometry": {"coordinates": [-85.64660473428854, 41.93494356190197], "type": "Point"}, "id": "3460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64678476714428, 41.934948980951205, -85.64678476714428, 41.934948980951205], "geometry": {"coordinates": [-85.64678476714428, 41.934948980951205], "type": "Point"}, "id": "3461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63339989999999, 41.9437132, -85.63339989999999, 41.9437132], "geometry": {"coordinates": [-85.63339989999999, 41.9437132], "type": "Point"}, "id": "3462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967752}, "type": "Feature"}, {"bbox": [-85.63354115673935, 41.943851546343225, -85.63354115673935, 41.943851546343225], "geometry": {"coordinates": [-85.63354115673935, 41.943851546343225], "type": "Point"}, "id": "3463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967752}, "type": "Feature"}, {"bbox": [-85.625694, 41.93319, -85.625694, 41.93319], "geometry": {"coordinates": [-85.625694, 41.93319], "type": "Point"}, "id": "3464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.625693210873, 41.933324678611775, -85.625693210873, 41.933324678611775], "geometry": {"coordinates": [-85.625693210873, 41.933324678611775], "type": "Point"}, "id": "3465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569242174602, 41.93345935693916, -85.62569242174602, 41.93345935693916], "geometry": {"coordinates": [-85.62569242174602, 41.93345935693916], "type": "Point"}, "id": "3466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569163261902, 41.93359403498217, -85.62569163261902, 41.93359403498217], "geometry": {"coordinates": [-85.62569163261902, 41.93359403498217], "type": "Point"}, "id": "3467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569084349204, 41.9337287127408, -85.62569084349204, 41.9337287127408], "geometry": {"coordinates": [-85.62569084349204, 41.9337287127408], "type": "Point"}, "id": "3468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569005436504, 41.93386339021506, -85.62569005436504, 41.93386339021506], "geometry": {"coordinates": [-85.62569005436504, 41.93386339021506], "type": "Point"}, "id": "3469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62568926523805, 41.93399806740494, -85.62568926523805, 41.93399806740494], "geometry": {"coordinates": [-85.62568926523805, 41.93399806740494], "type": "Point"}, "id": "3470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62568847611107, 41.93413274431044, -85.62568847611107, 41.93413274431044], "geometry": {"coordinates": [-85.62568847611107, 41.93413274431044], "type": "Point"}, "id": "3471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62568960410917, 41.93426740810938, -85.62568960410917, 41.93426740810938], "geometry": {"coordinates": [-85.62568960410917, 41.93426740810938], "type": "Point"}, "id": "3472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569364813943, 41.93440205212092, -85.62569364813943, 41.93440205212092], "geometry": {"coordinates": [-85.62569364813943, 41.93440205212092], "type": "Point"}, "id": "3473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569769216972, 41.93453669584822, -85.62569769216972, 41.93453669584822], "geometry": {"coordinates": [-85.62569769216972, 41.93453669584822], "type": "Point"}, "id": "3474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62570173620001, 41.93467133929128, -85.62570173620001, 41.93467133929128], "geometry": {"coordinates": [-85.62570173620001, 41.93467133929128], "type": "Point"}, "id": "3475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62570578023029, 41.934805982450094, -85.62570578023029, 41.934805982450094], "geometry": {"coordinates": [-85.62570578023029, 41.934805982450094], "type": "Point"}, "id": "3476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62570982426058, 41.93494062532467, -85.62570982426058, 41.93494062532467], "geometry": {"coordinates": [-85.62570982426058, 41.93494062532467], "type": "Point"}, "id": "3477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62571386829087, 41.935075267915, -85.62571386829087, 41.935075267915], "geometry": {"coordinates": [-85.62571386829087, 41.935075267915], "type": "Point"}, "id": "3478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62571790873356, 41.935209910272036, -85.62571790873356, 41.935209910272036], "geometry": {"coordinates": [-85.62571790873356, 41.935209910272036], "type": "Point"}, "id": "3479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62572077524621, 41.93534456901523, -85.62572077524621, 41.93534456901523], "geometry": {"coordinates": [-85.62572077524621, 41.93534456901523], "type": "Point"}, "id": "3480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62572364175888, 41.93547922747408, -85.62572364175888, 41.93547922747408], "geometry": {"coordinates": [-85.62572364175888, 41.93547922747408], "type": "Point"}, "id": "3481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62572650827153, 41.935613885648635, -85.62572650827153, 41.935613885648635], "geometry": {"coordinates": [-85.62572650827153, 41.935613885648635], "type": "Point"}, "id": "3482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257293747842, 41.93574854353888, -85.6257293747842, 41.93574854353888], "geometry": {"coordinates": [-85.6257293747842, 41.93574854353888], "type": "Point"}, "id": "3483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573224129684, 41.93588320114481, -85.62573224129684, 41.93588320114481], "geometry": {"coordinates": [-85.62573224129684, 41.93588320114481], "type": "Point"}, "id": "3484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257351078095, 41.93601785846642, -85.6257351078095, 41.93601785846642], "geometry": {"coordinates": [-85.6257351078095, 41.93601785846642], "type": "Point"}, "id": "3485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573797432218, 41.936152515503714, -85.62573797432218, 41.936152515503714], "geometry": {"coordinates": [-85.62573797432218, 41.936152515503714], "type": "Point"}, "id": "3486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573871265062, 41.9362871835809, -85.62573871265062, 41.9362871835809], "geometry": {"coordinates": [-85.62573871265062, 41.9362871835809], "type": "Point"}, "id": "3487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573843594524, 41.93642185677478, -85.62573843594524, 41.93642185677478], "geometry": {"coordinates": [-85.62573843594524, 41.93642185677478], "type": "Point"}, "id": "3488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573815923987, 41.93655652968427, -85.62573815923987, 41.93655652968427], "geometry": {"coordinates": [-85.62573815923987, 41.93655652968427], "type": "Point"}, "id": "3489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573788253452, 41.93669120230936, -85.62573788253452, 41.93669120230936], "geometry": {"coordinates": [-85.62573788253452, 41.93669120230936], "type": "Point"}, "id": "3490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573760582916, 41.93682587465008, -85.62573760582916, 41.93682587465008], "geometry": {"coordinates": [-85.62573760582916, 41.93682587465008], "type": "Point"}, "id": "3491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257373291238, 41.936960546706416, -85.6257373291238, 41.936960546706416], "geometry": {"coordinates": [-85.6257373291238, 41.936960546706416], "type": "Point"}, "id": "3492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573705241842, 41.937095218478355, -85.62573705241842, 41.937095218478355], "geometry": {"coordinates": [-85.62573705241842, 41.937095218478355], "type": "Point"}, "id": "3493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257379219222, 41.937229885259725, -85.6257379219222, 41.937229885259725], "geometry": {"coordinates": [-85.6257379219222, 41.937229885259725], "type": "Point"}, "id": "3494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62574019707142, 41.93736454598532, -85.62574019707142, 41.93736454598532], "geometry": {"coordinates": [-85.62574019707142, 41.93736454598532], "type": "Point"}, "id": "3495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62574247222065, 41.937499206426565, -85.62574247222065, 41.937499206426565], "geometry": {"coordinates": [-85.62574247222065, 41.937499206426565], "type": "Point"}, "id": "3496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257447473699, 41.937633866583475, -85.6257447473699, 41.937633866583475], "geometry": {"coordinates": [-85.6257447473699, 41.937633866583475], "type": "Point"}, "id": "3497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62574702190194, 41.9377685264618, -85.62574702190194, 41.9377685264618], "geometry": {"coordinates": [-85.62574702190194, 41.9377685264618], "type": "Point"}, "id": "3498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62574929436389, 41.93790318607513, -85.62574929436389, 41.93790318607513], "geometry": {"coordinates": [-85.62574929436389, 41.93790318607513], "type": "Point"}, "id": "3499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257418723105, 41.938037655675544, -85.6257418723105, 41.938037655675544], "geometry": {"coordinates": [-85.6257418723105, 41.938037655675544], "type": "Point"}, "id": "3500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.61523799999999, 41.94746799999999, -85.61523799999999, 41.94746799999999], "geometry": {"coordinates": [-85.61523799999999, 41.94746799999999], "type": "Point"}, "id": "3501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61523373756633, 41.94732591983399, -85.61523373756633, 41.94732591983399], "geometry": {"coordinates": [-85.61523373756633, 41.94732591983399], "type": "Point"}, "id": "3502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61522947513268, 41.94718383935135, -85.61522947513268, 41.94718383935135], "geometry": {"coordinates": [-85.61522947513268, 41.94718383935135], "type": "Point"}, "id": "3503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61522521269902, 41.94704175855204, -85.61522521269902, 41.94704175855204], "geometry": {"coordinates": [-85.61522521269902, 41.94704175855204], "type": "Point"}, "id": "3504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61522095026535, 41.946899677436086, -85.61522095026535, 41.946899677436086], "geometry": {"coordinates": [-85.61522095026535, 41.946899677436086], "type": "Point"}, "id": "3505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.6152166878317, 41.946757596003486, -85.6152166878317, 41.946757596003486], "geometry": {"coordinates": [-85.6152166878317, 41.946757596003486], "type": "Point"}, "id": "3506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61521242539804, 41.94661551425424, -85.61521242539804, 41.94661551425424], "geometry": {"coordinates": [-85.61521242539804, 41.94661551425424], "type": "Point"}, "id": "3507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61520816296436, 41.94647343218834, -85.61520816296436, 41.94647343218834], "geometry": {"coordinates": [-85.61520816296436, 41.94647343218834], "type": "Point"}, "id": "3508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61520393299689, 41.94633134926914, -85.61520393299689, 41.94633134926914], "geometry": {"coordinates": [-85.61520393299689, 41.94633134926914], "type": "Point"}, "id": "3509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61519970432, 41.94618926601193, -85.61519970432, 41.94618926601193], "geometry": {"coordinates": [-85.61519970432, 41.94618926601193], "type": "Point"}, "id": "3510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61519547564313, 41.94604718243808, -85.61519547564313, 41.94604718243808], "geometry": {"coordinates": [-85.61519547564313, 41.94604718243808], "type": "Point"}, "id": "3511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61519124696626, 41.945905098547584, -85.61519124696626, 41.945905098547584], "geometry": {"coordinates": [-85.61519124696626, 41.945905098547584], "type": "Point"}, "id": "3512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61519619190304, 41.94576357373312, -85.61519619190304, 41.94576357373312], "geometry": {"coordinates": [-85.61519619190304, 41.94576357373312], "type": "Point"}, "id": "3513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.64696479999999, 41.934954399999995, -85.64696479999999, 41.934954399999995], "geometry": {"coordinates": [-85.64696479999999, 41.934954399999995], "type": "Point"}, "id": "3514", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703989246473, 41.93483662728064, -85.64703989246473, 41.93483662728064], "geometry": {"coordinates": [-85.64703989246473, 41.93483662728064], "type": "Point"}, "id": "3515", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703851583408, 41.934696906790954, -85.64703851583408, 41.934696906790954], "geometry": {"coordinates": [-85.64703851583408, 41.934696906790954], "type": "Point"}, "id": "3516", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703708442508, 41.934557187786076, -85.64703708442508, 41.934557187786076], "geometry": {"coordinates": [-85.64703708442508, 41.934557187786076], "type": "Point"}, "id": "3517", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703356247779, 41.93441748748463, -85.64703356247779, 41.93441748748463], "geometry": {"coordinates": [-85.64703356247779, 41.93441748748463], "type": "Point"}, "id": "3518", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703249526046, 41.9342777641314, -85.64703249526046, 41.9342777641314], "geometry": {"coordinates": [-85.64703249526046, 41.9342777641314], "type": "Point"}, "id": "3519", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.6470323, 41.93413803862923, -85.6470323, 41.93413803862923], "geometry": {"coordinates": [-85.6470323, 41.93413803862923], "type": "Point"}, "id": "3520", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.6470323, 41.93399831240828, -85.6470323, 41.93399831240828], "geometry": {"coordinates": [-85.6470323, 41.93399831240828], "type": "Point"}, "id": "3521", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.6470323, 41.93385858588123, -85.6470323, 41.93385858588123], "geometry": {"coordinates": [-85.6470323, 41.93385858588123], "type": "Point"}, "id": "3522", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.6470323, 41.93371885904808, -85.6470323, 41.93371885904808], "geometry": {"coordinates": [-85.6470323, 41.93371885904808], "type": "Point"}, "id": "3523", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.6470323, 41.933579131908836, -85.6470323, 41.933579131908836], "geometry": {"coordinates": [-85.6470323, 41.933579131908836], "type": "Point"}, "id": "3524", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.6470323, 41.93343940446348, -85.6470323, 41.93343940446348], "geometry": {"coordinates": [-85.6470323, 41.93343940446348], "type": "Point"}, "id": "3525", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703234238569, 41.933299676817285, -85.64703234238569, 41.933299676817285], "geometry": {"coordinates": [-85.64703234238569, 41.933299676817285], "type": "Point"}, "id": "3526", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703359627117, 41.933159951873336, -85.64703359627117, 41.933159951873336], "geometry": {"coordinates": [-85.64703359627117, 41.933159951873336], "type": "Point"}, "id": "3527", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703485015664, 41.93302022662331, -85.64703485015664, 41.93302022662331], "geometry": {"coordinates": [-85.64703485015664, 41.93302022662331], "type": "Point"}, "id": "3528", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703610404214, 41.932880501067196, -85.64703610404214, 41.932880501067196], "geometry": {"coordinates": [-85.64703610404214, 41.932880501067196], "type": "Point"}, "id": "3529", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.64703735792762, 41.932740775205, -85.64703735792762, 41.932740775205], "geometry": {"coordinates": [-85.64703735792762, 41.932740775205], "type": "Point"}, "id": "3530", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 904632318}, "type": "Feature"}, {"bbox": [-85.645806, 41.9398831, -85.645806, 41.9398831], "geometry": {"coordinates": [-85.645806, 41.9398831], "type": "Point"}, "id": "3531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64580878875041, 41.94002318483871, -85.64580878875041, 41.94002318483871], "geometry": {"coordinates": [-85.64580878875041, 41.94002318483871], "type": "Point"}, "id": "3532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64581157750082, 41.94016326936966, -85.64581157750082, 41.94016326936966], "geometry": {"coordinates": [-85.64581157750082, 41.94016326936966], "type": "Point"}, "id": "3533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64581436625124, 41.9403033535929, -85.64581436625124, 41.9403033535929], "geometry": {"coordinates": [-85.64581436625124, 41.9403033535929], "type": "Point"}, "id": "3534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64581715500167, 41.940443437508385, -85.64581715500167, 41.940443437508385], "geometry": {"coordinates": [-85.64581715500167, 41.940443437508385], "type": "Point"}, "id": "3535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.6458199437521, 41.94058352111613, -85.6458199437521, 41.94058352111613], "geometry": {"coordinates": [-85.6458199437521, 41.94058352111613], "type": "Point"}, "id": "3536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64582273250251, 41.940723604416135, -85.64582273250251, 41.940723604416135], "geometry": {"coordinates": [-85.64582273250251, 41.940723604416135], "type": "Point"}, "id": "3537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64582552125292, 41.94086368740841, -85.64582552125292, 41.94086368740841], "geometry": {"coordinates": [-85.64582552125292, 41.94086368740841], "type": "Point"}, "id": "3538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64582831000334, 41.94100377009294, -85.64582831000334, 41.94100377009294], "geometry": {"coordinates": [-85.64582831000334, 41.94100377009294], "type": "Point"}, "id": "3539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64583109875376, 41.94114385246973, -85.64583109875376, 41.94114385246973], "geometry": {"coordinates": [-85.64583109875376, 41.94114385246973], "type": "Point"}, "id": "3540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64572809074264, 41.94124247600372, -85.64572809074264, 41.94124247600372], "geometry": {"coordinates": [-85.64572809074264, 41.94124247600372], "type": "Point"}, "id": "3541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.6455397452714, 41.94124222079305, -85.6455397452714, 41.94124222079305], "geometry": {"coordinates": [-85.6455397452714, 41.94124222079305], "type": "Point"}, "id": "3542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64742299999999, 41.9471251, -85.64742299999999, 41.9471251], "geometry": {"coordinates": [-85.64742299999999, 41.9471251], "type": "Point"}, "id": "3543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64742068340216, 41.94698712346677, -85.64742068340216, 41.94698712346677], "geometry": {"coordinates": [-85.64742068340216, 41.94698712346677], "type": "Point"}, "id": "3544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64741842287644, 41.94684914611988, -85.64741842287644, 41.94684914611988], "geometry": {"coordinates": [-85.64741842287644, 41.94684914611988], "type": "Point"}, "id": "3545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64741606679944, 41.94671116936663, -85.64741606679944, 41.94671116936663], "geometry": {"coordinates": [-85.64741606679944, 41.94671116936663], "type": "Point"}, "id": "3546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64741376147848, 41.946573191832606, -85.64741376147848, 41.946573191832606], "geometry": {"coordinates": [-85.64741376147848, 41.946573191832606], "type": "Point"}, "id": "3547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64741144918277, 41.94643521406332, -85.64741144918277, 41.94643521406332], "geometry": {"coordinates": [-85.64741144918277, 41.94643521406332], "type": "Point"}, "id": "3548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64740913688708, 41.946297235995424, -85.64740913688708, 41.946297235995424], "geometry": {"coordinates": [-85.64740913688708, 41.946297235995424], "type": "Point"}, "id": "3549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.6474068245914, 41.94615925762889, -85.6474068245914, 41.94615925762889], "geometry": {"coordinates": [-85.6474068245914, 41.94615925762889], "type": "Point"}, "id": "3550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.6474045122957, 41.946021278963755, -85.6474045122957, 41.946021278963755], "geometry": {"coordinates": [-85.6474045122957, 41.946021278963755], "type": "Point"}, "id": "3551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64307099999999, 41.941288, -85.64307099999999, 41.941288], "geometry": {"coordinates": [-85.64307099999999, 41.941288], "type": "Point"}, "id": "3552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64286333205199, 41.941292635445336, -85.64286333205199, 41.941292635445336], "geometry": {"coordinates": [-85.64286333205199, 41.941292635445336], "type": "Point"}, "id": "3553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64265566481691, 41.94129728850569, -85.64265566481691, 41.94129728850569], "geometry": {"coordinates": [-85.64265566481691, 41.94129728850569], "type": "Point"}, "id": "3554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64244799806158, 41.94130195341922, -85.64244799806158, 41.94130195341922], "geometry": {"coordinates": [-85.64244799806158, 41.94130195341922], "type": "Point"}, "id": "3555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64224033130624, 41.941306618332405, -85.64224033130624, 41.941306618332405], "geometry": {"coordinates": [-85.64224033130624, 41.941306618332405], "type": "Point"}, "id": "3556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64203266455088, 41.94131128324525, -85.64203266455088, 41.94131128324525], "geometry": {"coordinates": [-85.64203266455088, 41.94131128324525], "type": "Point"}, "id": "3557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.6353859, 41.9432898, -85.6353859, 41.9432898], "geometry": {"coordinates": [-85.6353859, 41.9432898], "type": "Point"}, "id": "3558", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.6354213626271, 41.94342741041728, -85.6354213626271, 41.94342741041728], "geometry": {"coordinates": [-85.6354213626271, 41.94342741041728], "type": "Point"}, "id": "3559", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63534038889166, 41.9435527298211, -85.63534038889166, 41.9435527298211], "geometry": {"coordinates": [-85.63534038889166, 41.9435527298211], "type": "Point"}, "id": "3560", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63526943860083, 41.94368042595765, -85.63526943860083, 41.94368042595765], "geometry": {"coordinates": [-85.63526943860083, 41.94368042595765], "type": "Point"}, "id": "3561", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63527103501814, 41.94381926946404, -85.63527103501814, 41.94381926946404], "geometry": {"coordinates": [-85.63527103501814, 41.94381926946404], "type": "Point"}, "id": "3562", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63514072994312, 41.94387300161013, -85.63514072994312, 41.94387300161013], "geometry": {"coordinates": [-85.63514072994312, 41.94387300161013], "type": "Point"}, "id": "3563", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63513761799378, 41.94373409197071, -85.63513761799378, 41.94373409197071], "geometry": {"coordinates": [-85.63513761799378, 41.94373409197071], "type": "Point"}, "id": "3564", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63514310311673, 41.94359918700154, -85.63514310311673, 41.94359918700154], "geometry": {"coordinates": [-85.63514310311673, 41.94359918700154], "type": "Point"}, "id": "3565", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.6350772311015, 41.94346808803275, -85.6350772311015, 41.94346808803275], "geometry": {"coordinates": [-85.6350772311015, 41.94346808803275], "type": "Point"}, "id": "3566", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63501982378325, 41.94333463735338, -85.63501982378325, 41.94333463735338], "geometry": {"coordinates": [-85.63501982378325, 41.94333463735338], "type": "Point"}, "id": "3567", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63496422252084, 41.94320099195031, -85.63496422252084, 41.94320099195031], "geometry": {"coordinates": [-85.63496422252084, 41.94320099195031], "type": "Point"}, "id": "3568", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63504215775264, 41.94309986909627, -85.63504215775264, 41.94309986909627], "geometry": {"coordinates": [-85.63504215775264, 41.94309986909627], "type": "Point"}, "id": "3569", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972940}, "type": "Feature"}, {"bbox": [-85.63819409999999, 41.9400924, -85.63819409999999, 41.9400924], "geometry": {"coordinates": [-85.63819409999999, 41.9400924], "type": "Point"}, "id": "3570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63819684025849, 41.94023252052428, -85.63819684025849, 41.94023252052428], "geometry": {"coordinates": [-85.63819684025849, 41.94023252052428], "type": "Point"}, "id": "3571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63819958051698, 41.94037264074067, -85.63819958051698, 41.94037264074067], "geometry": {"coordinates": [-85.63819958051698, 41.94037264074067], "type": "Point"}, "id": "3572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63820232077548, 41.940512760649156, -85.63820232077548, 41.940512760649156], "geometry": {"coordinates": [-85.63820232077548, 41.940512760649156], "type": "Point"}, "id": "3573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63820506103396, 41.94065288024974, -85.63820506103396, 41.94065288024974], "geometry": {"coordinates": [-85.63820506103396, 41.94065288024974], "type": "Point"}, "id": "3574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63820780129247, 41.94079299954243, -85.63820780129247, 41.94079299954243], "geometry": {"coordinates": [-85.63820780129247, 41.94079299954243], "type": "Point"}, "id": "3575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63821054155096, 41.94093311852723, -85.63821054155096, 41.94093311852723], "geometry": {"coordinates": [-85.63821054155096, 41.94093311852723], "type": "Point"}, "id": "3576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63821328180944, 41.94107323720412, -85.63821328180944, 41.94107323720412], "geometry": {"coordinates": [-85.63821328180944, 41.94107323720412], "type": "Point"}, "id": "3577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63821602206794, 41.94121335557311, -85.63821602206794, 41.94121335557311], "geometry": {"coordinates": [-85.63821602206794, 41.94121335557311], "type": "Point"}, "id": "3578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63821876232643, 41.941353473634216, -85.63821876232643, 41.941353473634216], "geometry": {"coordinates": [-85.63821876232643, 41.941353473634216], "type": "Point"}, "id": "3579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822054077458, 41.94149359994244, -85.63822054077458, 41.94149359994244], "geometry": {"coordinates": [-85.63822054077458, 41.94149359994244], "type": "Point"}, "id": "3580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822230581528, 41.94163372606199, -85.63822230581528, 41.94163372606199], "geometry": {"coordinates": [-85.63822230581528, 41.94163372606199], "type": "Point"}, "id": "3581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822407085597, 41.9417738518736, -85.63822407085597, 41.9417738518736], "geometry": {"coordinates": [-85.63822407085597, 41.9417738518736], "type": "Point"}, "id": "3582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822583589668, 41.94191397737727, -85.63822583589668, 41.94191397737727], "geometry": {"coordinates": [-85.63822583589668, 41.94191397737727], "type": "Point"}, "id": "3583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822760093737, 41.94205410257301, -85.63822760093737, 41.94205410257301], "geometry": {"coordinates": [-85.63822760093737, 41.94205410257301], "type": "Point"}, "id": "3584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822936597805, 41.94219422746082, -85.63822936597805, 41.94219422746082], "geometry": {"coordinates": [-85.63822936597805, 41.94219422746082], "type": "Point"}, "id": "3585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63823113101874, 41.94233435204068, -85.63823113101874, 41.94233435204068], "geometry": {"coordinates": [-85.63823113101874, 41.94233435204068], "type": "Point"}, "id": "3586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63823289605942, 41.942474476312604, -85.63823289605942, 41.942474476312604], "geometry": {"coordinates": [-85.63823289605942, 41.942474476312604], "type": "Point"}, "id": "3587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.64691539999998, 41.94254269999999, -85.64691539999998, 41.94254269999999], "geometry": {"coordinates": [-85.64691539999998, 41.94254269999999], "type": "Point"}, "id": "3588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64691707675186, 41.94268054667246, -85.64691707675186, 41.94268054667246], "geometry": {"coordinates": [-85.64691707675186, 41.94268054667246], "type": "Point"}, "id": "3589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64691869783931, 41.94281839341977, -85.64691869783931, 41.94281839341977], "geometry": {"coordinates": [-85.64691869783931, 41.94281839341977], "type": "Point"}, "id": "3590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692031892676, 41.942956239869055, -85.64692031892676, 41.942956239869055], "geometry": {"coordinates": [-85.64692031892676, 41.942956239869055], "type": "Point"}, "id": "3591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.6469219400142, 41.94309408602034, -85.6469219400142, 41.94309408602034], "geometry": {"coordinates": [-85.6469219400142, 41.94309408602034], "type": "Point"}, "id": "3592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692357308564, 41.94323193179524, -85.64692357308564, 41.94323193179524], "geometry": {"coordinates": [-85.64692357308564, 41.94323193179524], "type": "Point"}, "id": "3593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692521090471, 41.94336977724106, -85.64692521090471, 41.94336977724106], "geometry": {"coordinates": [-85.64692521090471, 41.94336977724106], "type": "Point"}, "id": "3594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692684872377, 41.94350762238888, -85.64692684872377, 41.94350762238888], "geometry": {"coordinates": [-85.64692684872377, 41.94350762238888], "type": "Point"}, "id": "3595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692848654282, 41.94364546723868, -85.64692848654282, 41.94364546723868], "geometry": {"coordinates": [-85.64692848654282, 41.94364546723868], "type": "Point"}, "id": "3596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64693012436187, 41.94378331179047, -85.64693012436187, 41.94378331179047], "geometry": {"coordinates": [-85.64693012436187, 41.94378331179047], "type": "Point"}, "id": "3597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64693176218093, 41.94392115604425, -85.64693176218093, 41.94392115604425], "geometry": {"coordinates": [-85.64693176218093, 41.94392115604425], "type": "Point"}, "id": "3598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.6406114, 41.9400627, -85.6406114, 41.9400627], "geometry": {"coordinates": [-85.6406114, 41.9400627], "type": "Point"}, "id": "3599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64061436184063, 41.94020371592447, -85.64061436184063, 41.94020371592447], "geometry": {"coordinates": [-85.64061436184063, 41.94020371592447], "type": "Point"}, "id": "3600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64061732368125, 41.94034473153709, -85.64061732368125, 41.94034473153709], "geometry": {"coordinates": [-85.64061732368125, 41.94034473153709], "type": "Point"}, "id": "3601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6406202855219, 41.94048574683788, -85.6406202855219, 41.94048574683788], "geometry": {"coordinates": [-85.6406202855219, 41.94048574683788], "type": "Point"}, "id": "3602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64062324736254, 41.940626761826806, -85.64062324736254, 41.940626761826806], "geometry": {"coordinates": [-85.64062324736254, 41.940626761826806], "type": "Point"}, "id": "3603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64062620920318, 41.9407677765039, -85.64062620920318, 41.9407677765039], "geometry": {"coordinates": [-85.64062620920318, 41.9407677765039], "type": "Point"}, "id": "3604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64062917104381, 41.94090879086913, -85.64062917104381, 41.94090879086913], "geometry": {"coordinates": [-85.64062917104381, 41.94090879086913], "type": "Point"}, "id": "3605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64063213288445, 41.94104980492254, -85.64063213288445, 41.94104980492254], "geometry": {"coordinates": [-85.64063213288445, 41.94104980492254], "type": "Point"}, "id": "3606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6406350947251, 41.94119081866409, -85.6406350947251, 41.94119081866409], "geometry": {"coordinates": [-85.6406350947251, 41.94119081866409], "type": "Point"}, "id": "3607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64063805656572, 41.941331832093795, -85.64063805656572, 41.941331832093795], "geometry": {"coordinates": [-85.64063805656572, 41.941331832093795], "type": "Point"}, "id": "3608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64064036422735, 41.941472851961734, -85.64064036422735, 41.941472851961734], "geometry": {"coordinates": [-85.64064036422735, 41.941472851961734], "type": "Point"}, "id": "3609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6406426621529, 41.941613871618245, -85.6406426621529, 41.941613871618245], "geometry": {"coordinates": [-85.6406426621529, 41.941613871618245], "type": "Point"}, "id": "3610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64064496007846, 41.94175489096288, -85.64064496007846, 41.94175489096288], "geometry": {"coordinates": [-85.64064496007846, 41.94175489096288], "type": "Point"}, "id": "3611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64064725800404, 41.94189590999565, -85.64064725800404, 41.94189590999565], "geometry": {"coordinates": [-85.64064725800404, 41.94189590999565], "type": "Point"}, "id": "3612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64064955592958, 41.94203692871653, -85.64064955592958, 41.94203692871653], "geometry": {"coordinates": [-85.64064955592958, 41.94203692871653], "type": "Point"}, "id": "3613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64065185385515, 41.94217794712555, -85.64065185385515, 41.94217794712555], "geometry": {"coordinates": [-85.64065185385515, 41.94217794712555], "type": "Point"}, "id": "3614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6406541517807, 41.942318965222675, -85.6406541517807, 41.942318965222675], "geometry": {"coordinates": [-85.6406541517807, 41.942318965222675], "type": "Point"}, "id": "3615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64065644970626, 41.94245998300792, -85.64065644970626, 41.94245998300792], "geometry": {"coordinates": [-85.64065644970626, 41.94245998300792], "type": "Point"}, "id": "3616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6339783, 41.93822730000001, -85.6339783, 41.93822730000001], "geometry": {"coordinates": [-85.6339783, 41.93822730000001], "type": "Point"}, "id": "3617", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972942}, "type": "Feature"}, {"bbox": [-85.63398911070503, 41.93806726614609, -85.63398911070503, 41.93806726614609], "geometry": {"coordinates": [-85.63398911070503, 41.93806726614609], "type": "Point"}, "id": "3618", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972942}, "type": "Feature"}, {"bbox": [-85.6341082264979, 41.93797124543282, -85.6341082264979, 41.93797124543282], "geometry": {"coordinates": [-85.6341082264979, 41.93797124543282], "type": "Point"}, "id": "3619", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972942}, "type": "Feature"}, {"bbox": [-85.63417749146478, 41.93808975123584, -85.63417749146478, 41.93808975123584], "geometry": {"coordinates": [-85.63417749146478, 41.93808975123584], "type": "Point"}, "id": "3620", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972942}, "type": "Feature"}, {"bbox": [-85.63435899995638, 41.938163505021784, -85.63435899995638, 41.938163505021784], "geometry": {"coordinates": [-85.63435899995638, 41.938163505021784], "type": "Point"}, "id": "3621", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972942}, "type": "Feature"}, {"bbox": [-85.63368239999998, 41.94398989999999, -85.63368239999998, 41.94398989999999], "geometry": {"coordinates": [-85.63368239999998, 41.94398989999999], "type": "Point"}, "id": "3622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63379442279485, 41.944099620073814, -85.63379442279485, 41.944099620073814], "geometry": {"coordinates": [-85.63379442279485, 41.944099620073814], "type": "Point"}, "id": "3623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63391102760018, 41.94420658464382, -85.63391102760018, 41.94420658464382], "geometry": {"coordinates": [-85.63391102760018, 41.94420658464382], "type": "Point"}, "id": "3624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63403180279431, 41.944311041245264, -85.63403180279431, 41.944311041245264], "geometry": {"coordinates": [-85.63403180279431, 41.944311041245264], "type": "Point"}, "id": "3625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63415514637421, 41.94441371360982, -85.63415514637421, 41.94441371360982], "geometry": {"coordinates": [-85.63415514637421, 41.94441371360982], "type": "Point"}, "id": "3626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63428700875879, 41.94451046844086, -85.63428700875879, 41.94451046844086], "geometry": {"coordinates": [-85.63428700875879, 41.94451046844086], "type": "Point"}, "id": "3627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63441887114337, 41.94460722312507, -85.63441887114337, 41.94460722312507], "geometry": {"coordinates": [-85.63441887114337, 41.94460722312507], "type": "Point"}, "id": "3628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63455073352793, 41.94470397766245, -85.63455073352793, 41.94470397766245], "geometry": {"coordinates": [-85.63455073352793, 41.94470397766245], "type": "Point"}, "id": "3629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63468259591251, 41.944800732053004, -85.63468259591251, 41.944800732053004], "geometry": {"coordinates": [-85.63468259591251, 41.944800732053004], "type": "Point"}, "id": "3630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.6348144582971, 41.94489748629672, -85.6348144582971, 41.94489748629672], "geometry": {"coordinates": [-85.6348144582971, 41.94489748629672], "type": "Point"}, "id": "3631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63494632068166, 41.94499424039361, -85.63494632068166, 41.94499424039361], "geometry": {"coordinates": [-85.63494632068166, 41.94499424039361], "type": "Point"}, "id": "3632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63507818306623, 41.94509099434367, -85.63507818306623, 41.94509099434367], "geometry": {"coordinates": [-85.63507818306623, 41.94509099434367], "type": "Point"}, "id": "3633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63520540650254, 41.94519110946698, -85.63520540650254, 41.94519110946698], "geometry": {"coordinates": [-85.63520540650254, 41.94519110946698], "type": "Point"}, "id": "3634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63533202396218, 41.945291664256146, -85.63533202396218, 41.945291664256146], "geometry": {"coordinates": [-85.63533202396218, 41.945291664256146], "type": "Point"}, "id": "3635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63544951344637, 41.945397987081236, -85.63544951344637, 41.945397987081236], "geometry": {"coordinates": [-85.63544951344637, 41.945397987081236], "type": "Point"}, "id": "3636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.6355624761134, 41.94550717033234, -85.6355624761134, 41.94550717033234], "geometry": {"coordinates": [-85.6355624761134, 41.94550717033234], "type": "Point"}, "id": "3637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.6356692694953, 41.94561940059449, -85.6356692694953, 41.94561940059449], "geometry": {"coordinates": [-85.6356692694953, 41.94561940059449], "type": "Point"}, "id": "3638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63576074865117, 41.945739194808354, -85.63576074865117, 41.945739194808354], "geometry": {"coordinates": [-85.63576074865117, 41.945739194808354], "type": "Point"}, "id": "3639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63585222780704, 41.94585898879713, -85.63585222780704, 41.94585898879713], "geometry": {"coordinates": [-85.63585222780704, 41.94585898879713], "type": "Point"}, "id": "3640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.6351431, 41.94392169999999, -85.6351431, 41.94392169999999], "geometry": {"coordinates": [-85.6351431, 41.94392169999999], "type": "Point"}, "id": "3641", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203974058}, "type": "Feature"}, {"bbox": [-85.63825229999999, 41.9444134, -85.63825229999999, 41.9444134], "geometry": {"coordinates": [-85.63825229999999, 41.9444134], "type": "Point"}, "id": "3642", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 203972939}, "type": "Feature"}, {"bbox": [-85.633183, 41.947315, -85.633183, 41.947315], "geometry": {"coordinates": [-85.633183, 41.947315], "type": "Point"}, "id": "3643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63318622840521, 41.947450698402825, -85.63318622840521, 41.947450698402825], "geometry": {"coordinates": [-85.63318622840521, 41.947450698402825], "type": "Point"}, "id": "3644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63318945681038, 41.9475863965168, -85.63318945681038, 41.9475863965168], "geometry": {"coordinates": [-85.63318945681038, 41.9475863965168], "type": "Point"}, "id": "3645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6331926852156, 41.94772209434193, -85.6331926852156, 41.94772209434193], "geometry": {"coordinates": [-85.6331926852156, 41.94772209434193], "type": "Point"}, "id": "3646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6331959136208, 41.947857791878214, -85.6331959136208, 41.947857791878214], "geometry": {"coordinates": [-85.6331959136208, 41.947857791878214], "type": "Point"}, "id": "3647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.633199142026, 41.94799348912566, -85.633199142026, 41.94799348912566], "geometry": {"coordinates": [-85.633199142026, 41.94799348912566], "type": "Point"}, "id": "3648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63320237043118, 41.94812918608426, -85.63320237043118, 41.94812918608426], "geometry": {"coordinates": [-85.63320237043118, 41.94812918608426], "type": "Point"}, "id": "3649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63320559883638, 41.94826488275401, -85.63320559883638, 41.94826488275401], "geometry": {"coordinates": [-85.63320559883638, 41.94826488275401], "type": "Point"}, "id": "3650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63320882724159, 41.948400579134926, -85.63320882724159, 41.948400579134926], "geometry": {"coordinates": [-85.63320882724159, 41.948400579134926], "type": "Point"}, "id": "3651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6332120556468, 41.94853627522699, -85.6332120556468, 41.94853627522699], "geometry": {"coordinates": [-85.6332120556468, 41.94853627522699], "type": "Point"}, "id": "3652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63321586219013, 41.94867196170802, -85.63321586219013, 41.94867196170802], "geometry": {"coordinates": [-85.63321586219013, 41.94867196170802], "type": "Point"}, "id": "3653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.633220544169, 41.94880763378434, -85.633220544169, 41.94880763378434], "geometry": {"coordinates": [-85.633220544169, 41.94880763378434], "type": "Point"}, "id": "3654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63322522614787, 41.9489433055719, -85.63322522614787, 41.9489433055719], "geometry": {"coordinates": [-85.63322522614787, 41.9489433055719], "type": "Point"}, "id": "3655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63322990812674, 41.94907897707072, -85.63322990812674, 41.94907897707072], "geometry": {"coordinates": [-85.63322990812674, 41.94907897707072], "type": "Point"}, "id": "3656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63323459010563, 41.9492146482808, -85.63323459010563, 41.9492146482808], "geometry": {"coordinates": [-85.63323459010563, 41.9492146482808], "type": "Point"}, "id": "3657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6332392720845, 41.94935031920214, -85.6332392720845, 41.94935031920214], "geometry": {"coordinates": [-85.6332392720845, 41.94935031920214], "type": "Point"}, "id": "3658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63324395406337, 41.94948598983471, -85.63324395406337, 41.94948598983471], "geometry": {"coordinates": [-85.63324395406337, 41.94948598983471], "type": "Point"}, "id": "3659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63324863604225, 41.94962166017856, -85.63324863604225, 41.94962166017856], "geometry": {"coordinates": [-85.63324863604225, 41.94962166017856], "type": "Point"}, "id": "3660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6332533180211, 41.94975733023365, -85.6332533180211, 41.94975733023365], "geometry": {"coordinates": [-85.6332533180211, 41.94975733023365], "type": "Point"}, "id": "3661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.64242189999999, 41.9317372, -85.64242189999999, 41.9317372], "geometry": {"coordinates": [-85.64242189999999, 41.9317372], "type": "Point"}, "id": "3662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6424235116583, 41.93187141533725, -85.6424235116583, 41.93187141533725], "geometry": {"coordinates": [-85.6424235116583, 41.93187141533725], "type": "Point"}, "id": "3663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64242315981643, 41.932005634440316, -85.64242315981643, 41.932005634440316], "geometry": {"coordinates": [-85.64242315981643, 41.932005634440316], "type": "Point"}, "id": "3664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64242254815254, 41.932139853796635, -85.64242254815254, 41.932139853796635], "geometry": {"coordinates": [-85.64242254815254, 41.932139853796635], "type": "Point"}, "id": "3665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64242193648866, 41.93227407287052, -85.64242193648866, 41.93227407287052], "geometry": {"coordinates": [-85.64242193648866, 41.93227407287052], "type": "Point"}, "id": "3666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6424213248248, 41.932408291661986, -85.6424213248248, 41.932408291661986], "geometry": {"coordinates": [-85.6424213248248, 41.932408291661986], "type": "Point"}, "id": "3667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6424207131609, 41.93254251017101, -85.6424207131609, 41.93254251017101], "geometry": {"coordinates": [-85.6424207131609, 41.93254251017101], "type": "Point"}, "id": "3668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64242010149702, 41.93267672839761, -85.64242010149702, 41.93267672839761], "geometry": {"coordinates": [-85.64242010149702, 41.93267672839761], "type": "Point"}, "id": "3669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64241723927859, 41.93281092814385, -85.64241723927859, 41.93281092814385], "geometry": {"coordinates": [-85.64241723927859, 41.93281092814385], "type": "Point"}, "id": "3670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64241391298931, 41.93294512376429, -85.64241391298931, 41.93294512376429], "geometry": {"coordinates": [-85.64241391298931, 41.93294512376429], "type": "Point"}, "id": "3671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64241058670005, 41.93307931910239, -85.64241058670005, 41.93307931910239], "geometry": {"coordinates": [-85.64241058670005, 41.93307931910239], "type": "Point"}, "id": "3672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64240726041079, 41.933213514158155, -85.64240726041079, 41.933213514158155], "geometry": {"coordinates": [-85.64240726041079, 41.933213514158155], "type": "Point"}, "id": "3673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64240393412155, 41.93334770893157, -85.64240393412155, 41.93334770893157], "geometry": {"coordinates": [-85.64240393412155, 41.93334770893157], "type": "Point"}, "id": "3674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64240060783229, 41.93348190342266, -85.64240060783229, 41.93348190342266], "geometry": {"coordinates": [-85.64240060783229, 41.93348190342266], "type": "Point"}, "id": "3675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64239728154303, 41.93361609763141, -85.64239728154303, 41.93361609763141], "geometry": {"coordinates": [-85.64239728154303, 41.93361609763141], "type": "Point"}, "id": "3676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64239395525377, 41.93375029155782, -85.64239395525377, 41.93375029155782], "geometry": {"coordinates": [-85.64239395525377, 41.93375029155782], "type": "Point"}, "id": "3677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6423906289645, 41.93388448520189, -85.6423906289645, 41.93388448520189], "geometry": {"coordinates": [-85.6423906289645, 41.93388448520189], "type": "Point"}, "id": "3678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64238631366574, 41.934018661636166, -85.64238631366574, 41.934018661636166], "geometry": {"coordinates": [-85.64238631366574, 41.934018661636166], "type": "Point"}, "id": "3679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64238134030747, 41.93415282652515, -85.64238134030747, 41.93415282652515], "geometry": {"coordinates": [-85.64238134030747, 41.93415282652515], "type": "Point"}, "id": "3680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64237636694922, 41.9342869911319, -85.64237636694922, 41.9342869911319], "geometry": {"coordinates": [-85.64237636694922, 41.9342869911319], "type": "Point"}, "id": "3681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64237139359095, 41.934421155456434, -85.64237139359095, 41.934421155456434], "geometry": {"coordinates": [-85.64237139359095, 41.934421155456434], "type": "Point"}, "id": "3682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64236642023268, 41.934555319498756, -85.64236642023268, 41.934555319498756], "geometry": {"coordinates": [-85.64236642023268, 41.934555319498756], "type": "Point"}, "id": "3683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6423614468744, 41.93468948325884, -85.6423614468744, 41.93468948325884], "geometry": {"coordinates": [-85.6423614468744, 41.93468948325884], "type": "Point"}, "id": "3684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64235647351614, 41.93482364673672, -85.64235647351614, 41.93482364673672], "geometry": {"coordinates": [-85.64235647351614, 41.93482364673672], "type": "Point"}, "id": "3685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6423515001579, 41.93495780993237, -85.6423515001579, 41.93495780993237], "geometry": {"coordinates": [-85.6423515001579, 41.93495780993237], "type": "Point"}, "id": "3686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64234786682748, 41.93509199612118, -85.64234786682748, 41.93509199612118], "geometry": {"coordinates": [-85.64234786682748, 41.93509199612118], "type": "Point"}, "id": "3687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64234441739632, 41.93522618522188, -85.64234441739632, 41.93522618522188], "geometry": {"coordinates": [-85.64234441739632, 41.93522618522188], "type": "Point"}, "id": "3688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64234096796515, 41.93536037404024, -85.64234096796515, 41.93536037404024], "geometry": {"coordinates": [-85.64234096796515, 41.93536037404024], "type": "Point"}, "id": "3689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64233749804609, 41.93549456228346, -85.64233749804609, 41.93549456228346], "geometry": {"coordinates": [-85.64233749804609, 41.93549456228346], "type": "Point"}, "id": "3690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64233401621851, 41.935628750074144, -85.64233401621851, 41.935628750074144], "geometry": {"coordinates": [-85.64233401621851, 41.935628750074144], "type": "Point"}, "id": "3691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64233054551686, 41.935762937741686, -85.64233054551686, 41.935762937741686], "geometry": {"coordinates": [-85.64233054551686, 41.935762937741686], "type": "Point"}, "id": "3692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64232708843271, 41.93589712532173, -85.64232708843271, 41.93589712532173], "geometry": {"coordinates": [-85.64232708843271, 41.93589712532173], "type": "Point"}, "id": "3693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64232363134857, 41.93603131261945, -85.64232363134857, 41.93603131261945], "geometry": {"coordinates": [-85.64232363134857, 41.93603131261945], "type": "Point"}, "id": "3694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.633183, 41.947315, -85.633183, 41.947315], "geometry": {"coordinates": [-85.633183, 41.947315], "type": "Point"}, "id": "3695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63336459985595, 41.94731601452437, -85.63336459985595, 41.94731601452437], "geometry": {"coordinates": [-85.63336459985595, 41.94731601452437], "type": "Point"}, "id": "3696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63354619971192, 41.947317029048705, -85.63354619971192, 41.947317029048705], "geometry": {"coordinates": [-85.63354619971192, 41.947317029048705], "type": "Point"}, "id": "3697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63372779956785, 41.947318043573034, -85.63372779956785, 41.947318043573034], "geometry": {"coordinates": [-85.63372779956785, 41.947318043573034], "type": "Point"}, "id": "3698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63390939942381, 41.94731905809734, -85.63390939942381, 41.94731905809734], "geometry": {"coordinates": [-85.63390939942381, 41.94731905809734], "type": "Point"}, "id": "3699", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63409099946729, 41.94732005387291, -85.63409099946729, 41.94732005387291], "geometry": {"coordinates": [-85.63409099946729, 41.94732005387291], "type": "Point"}, "id": "3700", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63427259951884, 41.94732104884072, -85.63427259951884, 41.94732104884072], "geometry": {"coordinates": [-85.63427259951884, 41.94732104884072], "type": "Point"}, "id": "3701", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.6344541996448, 41.94732203617679, -85.6344541996448, 41.94732203617679], "geometry": {"coordinates": [-85.6344541996448, 41.94732203617679], "type": "Point"}, "id": "3702", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.64472699999999, 41.941261999999995, -85.64472699999999, 41.941261999999995], "geometry": {"coordinates": [-85.64472699999999, 41.941261999999995], "type": "Point"}, "id": "3703", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.6447324413617, 41.94140617835677, -85.6447324413617, 41.94140617835677], "geometry": {"coordinates": [-85.6447324413617, 41.94140617835677], "type": "Point"}, "id": "3704", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.6447378827234, 41.94155035638754, -85.6447378827234, 41.94155035638754], "geometry": {"coordinates": [-85.6447378827234, 41.94155035638754], "type": "Point"}, "id": "3705", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64477816711558, 41.941680350398755, -85.64477816711558, 41.941680350398755], "geometry": {"coordinates": [-85.64477816711558, 41.941680350398755], "type": "Point"}, "id": "3706", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64495869292396, 41.94171051002141, -85.64495869292396, 41.94171051002141], "geometry": {"coordinates": [-85.64495869292396, 41.94171051002141], "type": "Point"}, "id": "3707", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64513754758521, 41.941690139810504, -85.64513754758521, 41.941690139810504], "geometry": {"coordinates": [-85.64513754758521, 41.941690139810504], "type": "Point"}, "id": "3708", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64515895160784, 41.9415486939436, -85.64515895160784, 41.9415486939436], "geometry": {"coordinates": [-85.64515895160784, 41.9415486939436], "type": "Point"}, "id": "3709", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64516459106186, 41.94140452012083, -85.64516459106186, 41.94140452012083], "geometry": {"coordinates": [-85.64516459106186, 41.94140452012083], "type": "Point"}, "id": "3710", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64517023051586, 41.941260345972054, -85.64517023051586, 41.941260345972054], "geometry": {"coordinates": [-85.64517023051586, 41.941260345972054], "type": "Point"}, "id": "3711", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.6463243, 41.9450817, -85.6463243, 41.9450817], "geometry": {"coordinates": [-85.6463243, 41.9450817], "type": "Point"}, "id": "3712", "properties": {"__folium_color": "red", "highway": "path", "osm_id": 314867475}, "type": "Feature"}, {"bbox": [-85.6394655, 41.9296875, -85.6394655, 41.9296875], "geometry": {"coordinates": [-85.6394655, 41.9296875], "type": "Point"}, "id": "3713", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 340939538}, "type": "Feature"}, {"bbox": [-85.6271414, 41.94072739999999, -85.6271414, 41.94072739999999], "geometry": {"coordinates": [-85.6271414, 41.94072739999999], "type": "Point"}, "id": "3714", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150833}, "type": "Feature"}, {"bbox": [-85.62708698661208, 41.94088727516729, -85.62708698661208, 41.94088727516729], "geometry": {"coordinates": [-85.62708698661208, 41.94088727516729], "type": "Point"}, "id": "3715", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150833}, "type": "Feature"}, {"bbox": [-85.63465169999999, 41.948626000000004, -85.63465169999999, 41.948626000000004], "geometry": {"coordinates": [-85.63465169999999, 41.948626000000004], "type": "Point"}, "id": "3716", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63484104282793, 41.94862464903583, -85.63484104282793, 41.94862464903583], "geometry": {"coordinates": [-85.63484104282793, 41.94862464903583], "type": "Point"}, "id": "3717", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63503038565587, 41.94862329807164, -85.63503038565587, 41.94862329807164], "geometry": {"coordinates": [-85.63503038565587, 41.94862329807164], "type": "Point"}, "id": "3718", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63521972811837, 41.94862192100617, -85.63521972811837, 41.94862192100617], "geometry": {"coordinates": [-85.63521972811837, 41.94862192100617], "type": "Point"}, "id": "3719", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63540906678647, 41.948620279451305, -85.63540906678647, 41.948620279451305], "geometry": {"coordinates": [-85.63540906678647, 41.948620279451305], "type": "Point"}, "id": "3720", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63559840514125, 41.948618617498816, -85.63559840514125, 41.948618617498816], "geometry": {"coordinates": [-85.63559840514125, 41.948618617498816], "type": "Point"}, "id": "3721", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63578774351335, 41.94861695663593, -85.63578774351335, 41.94861695663593], "geometry": {"coordinates": [-85.63578774351335, 41.94861695663593], "type": "Point"}, "id": "3722", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63597708188546, 41.948615295772996, -85.63597708188546, 41.948615295772996], "geometry": {"coordinates": [-85.63597708188546, 41.948615295772996], "type": "Point"}, "id": "3723", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63616642025755, 41.94861363491002, -85.63616642025755, 41.94861363491002], "geometry": {"coordinates": [-85.63616642025755, 41.94861363491002], "type": "Point"}, "id": "3724", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63635573768727, 41.94861097835204, -85.63635573768727, 41.94861097835204], "geometry": {"coordinates": [-85.63635573768727, 41.94861097835204], "type": "Point"}, "id": "3725", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63654505326544, 41.94860823376421, -85.63654505326544, 41.94860823376421], "geometry": {"coordinates": [-85.63654505326544, 41.94860823376421], "type": "Point"}, "id": "3726", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63673436884362, 41.94860548917625, -85.63673436884362, 41.94860548917625], "geometry": {"coordinates": [-85.63673436884362, 41.94860548917625], "type": "Point"}, "id": "3727", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.6369236844218, 41.948602744588186, -85.6369236844218, 41.948602744588186], "geometry": {"coordinates": [-85.6369236844218, 41.948602744588186], "type": "Point"}, "id": "3728", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.6302304, 41.96573589999999, -85.6302304, 41.96573589999999], "geometry": {"coordinates": [-85.6302304, 41.96573589999999], "type": "Point"}, "id": "3729", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63042310364692, 41.965734793361, -85.63042310364692, 41.965734793361], "geometry": {"coordinates": [-85.63042310364692, 41.965734793361], "type": "Point"}, "id": "3730", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63061580729385, 41.96573368672199, -85.63061580729385, 41.96573368672199], "geometry": {"coordinates": [-85.63061580729385, 41.96573368672199], "type": "Point"}, "id": "3731", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63080851094077, 41.965732580082964, -85.63080851094077, 41.965732580082964], "geometry": {"coordinates": [-85.63080851094077, 41.965732580082964], "type": "Point"}, "id": "3732", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.6310012145877, 41.96573147344392, -85.6310012145877, 41.96573147344392], "geometry": {"coordinates": [-85.6310012145877, 41.96573147344392], "type": "Point"}, "id": "3733", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63119391823463, 41.96573036680484, -85.63119391823463, 41.96573036680484], "geometry": {"coordinates": [-85.63119391823463, 41.96573036680484], "type": "Point"}, "id": "3734", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63138662188156, 41.96572926016576, -85.63138662188156, 41.96572926016576], "geometry": {"coordinates": [-85.63138662188156, 41.96572926016576], "type": "Point"}, "id": "3735", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63157932552849, 41.965728153526655, -85.63157932552849, 41.965728153526655], "geometry": {"coordinates": [-85.63157932552849, 41.965728153526655], "type": "Point"}, "id": "3736", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63177050254811, 41.96571454240349, -85.63177050254811, 41.96571454240349], "geometry": {"coordinates": [-85.63177050254811, 41.96571454240349], "type": "Point"}, "id": "3737", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.637468, 41.956906, -85.637468, 41.956906], "geometry": {"coordinates": [-85.637468, 41.956906], "type": "Point"}, "id": "3738", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.63726983333332, 41.956905166666694, -85.63726983333332, 41.956905166666694], "geometry": {"coordinates": [-85.63726983333332, 41.956905166666694], "type": "Point"}, "id": "3739", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.63707166666667, 41.95690433333337, -85.63707166666667, 41.95690433333337], "geometry": {"coordinates": [-85.63707166666667, 41.95690433333337], "type": "Point"}, "id": "3740", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.6368735, 41.956903500000045, -85.6368735, 41.956903500000045], "geometry": {"coordinates": [-85.6368735, 41.956903500000045], "type": "Point"}, "id": "3741", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.63667533333333, 41.95690266666671, -85.63667533333333, 41.95690266666671], "geometry": {"coordinates": [-85.63667533333333, 41.95690266666671], "type": "Point"}, "id": "3742", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.63647716666664, 41.95690183333336, -85.63647716666664, 41.95690183333336], "geometry": {"coordinates": [-85.63647716666664, 41.95690183333336], "type": "Point"}, "id": "3743", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.62639999999999, 41.94226299999999, -85.62639999999999, 41.94226299999999], "geometry": {"coordinates": [-85.62639999999999, 41.94226299999999], "type": "Point"}, "id": "3744", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62658270340594, 41.942262623291946, -85.62658270340594, 41.942262623291946], "geometry": {"coordinates": [-85.62658270340594, 41.942262623291946], "type": "Point"}, "id": "3745", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62676540681187, 41.942262246583894, -85.62676540681187, 41.942262246583894], "geometry": {"coordinates": [-85.62676540681187, 41.942262246583894], "type": "Point"}, "id": "3746", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62694811021781, 41.94226186987584, -85.62694811021781, 41.94226186987584], "geometry": {"coordinates": [-85.62694811021781, 41.94226186987584], "type": "Point"}, "id": "3747", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62713081362372, 41.942261493167784, -85.62713081362372, 41.942261493167784], "geometry": {"coordinates": [-85.62713081362372, 41.942261493167784], "type": "Point"}, "id": "3748", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62731351702968, 41.94226111645973, -85.62731351702968, 41.94226111645973], "geometry": {"coordinates": [-85.62731351702968, 41.94226111645973], "type": "Point"}, "id": "3749", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.6274962129689, 41.942259947687404, -85.6274962129689, 41.942259947687404], "geometry": {"coordinates": [-85.6274962129689, 41.942259947687404], "type": "Point"}, "id": "3750", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62767890668385, 41.942258498186774, -85.62767890668385, 41.942258498186774], "geometry": {"coordinates": [-85.62767890668385, 41.942258498186774], "type": "Point"}, "id": "3751", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62786160039884, 41.94225704868612, -85.62786160039884, 41.94225704868612], "geometry": {"coordinates": [-85.62786160039884, 41.94225704868612], "type": "Point"}, "id": "3752", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62804429411382, 41.94225559918542, -85.62804429411382, 41.94225559918542], "geometry": {"coordinates": [-85.62804429411382, 41.94225559918542], "type": "Point"}, "id": "3753", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.6282269878288, 41.942254149684686, -85.6282269878288, 41.942254149684686], "geometry": {"coordinates": [-85.6282269878288, 41.942254149684686], "type": "Point"}, "id": "3754", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62840968154377, 41.942252700183936, -85.62840968154377, 41.942252700183936], "geometry": {"coordinates": [-85.62840968154377, 41.942252700183936], "type": "Point"}, "id": "3755", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62859237525876, 41.942251250683135, -85.62859237525876, 41.942251250683135], "geometry": {"coordinates": [-85.62859237525876, 41.942251250683135], "type": "Point"}, "id": "3756", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62877506897372, 41.94224980118231, -85.62877506897372, 41.94224980118231], "geometry": {"coordinates": [-85.62877506897372, 41.94224980118231], "type": "Point"}, "id": "3757", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.6289577626887, 41.94224835168144, -85.6289577626887, 41.94224835168144], "geometry": {"coordinates": [-85.6289577626887, 41.94224835168144], "type": "Point"}, "id": "3758", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62911482658991, 41.94229758992211, -85.62911482658991, 41.94229758992211], "geometry": {"coordinates": [-85.62911482658991, 41.94229758992211], "type": "Point"}, "id": "3759", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62921808412763, 41.942409351854536, -85.62921808412763, 41.942409351854536], "geometry": {"coordinates": [-85.62921808412763, 41.942409351854536], "type": "Point"}, "id": "3760", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62927161254233, 41.94253812747749, -85.62927161254233, 41.94253812747749], "geometry": {"coordinates": [-85.62927161254233, 41.94253812747749], "type": "Point"}, "id": "3761", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62927418154149, 41.942673584002556, -85.62927418154149, 41.942673584002556], "geometry": {"coordinates": [-85.62927418154149, 41.942673584002556], "type": "Point"}, "id": "3762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62926901142413, 41.942809427298606, -85.62926901142413, 41.942809427298606], "geometry": {"coordinates": [-85.62926901142413, 41.942809427298606], "type": "Point"}, "id": "3763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62926384130677, 41.94294527030524, -85.62926384130677, 41.94294527030524], "geometry": {"coordinates": [-85.62926384130677, 41.94294527030524], "type": "Point"}, "id": "3764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.6292586711894, 41.943081113022444, -85.6292586711894, 41.943081113022444], "geometry": {"coordinates": [-85.6292586711894, 41.943081113022444], "type": "Point"}, "id": "3765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62925350107206, 41.94321695545025, -85.62925350107206, 41.94321695545025], "geometry": {"coordinates": [-85.62925350107206, 41.94321695545025], "type": "Point"}, "id": "3766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62924833095468, 41.94335279758863, -85.62924833095468, 41.94335279758863], "geometry": {"coordinates": [-85.62924833095468, 41.94335279758863], "type": "Point"}, "id": "3767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62924316083733, 41.943488639437604, -85.62924316083733, 41.943488639437604], "geometry": {"coordinates": [-85.62924316083733, 41.943488639437604], "type": "Point"}, "id": "3768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62925557394072, 41.943615332439485, -85.62925557394072, 41.943615332439485], "geometry": {"coordinates": [-85.62925557394072, 41.943615332439485], "type": "Point"}, "id": "3769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62942890545554, 41.943658299373055, -85.62942890545554, 41.943658299373055], "geometry": {"coordinates": [-85.62942890545554, 41.943658299373055], "type": "Point"}, "id": "3770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62960223697037, 41.94370126627765, -85.62960223697037, 41.94370126627765], "geometry": {"coordinates": [-85.62960223697037, 41.94370126627765], "type": "Point"}, "id": "3771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62977556848519, 41.94374423315331, -85.62977556848519, 41.94374423315331], "geometry": {"coordinates": [-85.62977556848519, 41.94374423315331], "type": "Point"}, "id": "3772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62275899999999, 41.951845, -85.62275899999999, 41.951845], "geometry": {"coordinates": [-85.62275899999999, 41.951845], "type": "Point"}, "id": "3773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62258908723975, 41.95189303386801, -85.62258908723975, 41.95189303386801], "geometry": {"coordinates": [-85.62258908723975, 41.95189303386801], "type": "Point"}, "id": "3774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.622401304058, 41.951901745446165, -85.622401304058, 41.951901745446165], "geometry": {"coordinates": [-85.622401304058, 41.951901745446165], "type": "Point"}, "id": "3775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.6222129377472, 41.95190329366253, -85.6222129377472, 41.95190329366253], "geometry": {"coordinates": [-85.6222129377472, 41.95190329366253], "type": "Point"}, "id": "3776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62202457143638, 41.95190484187886, -85.62202457143638, 41.95190484187886], "geometry": {"coordinates": [-85.62202457143638, 41.95190484187886], "type": "Point"}, "id": "3777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62183620512555, 41.95190639009515, -85.62183620512555, 41.95190639009515], "geometry": {"coordinates": [-85.62183620512555, 41.95190639009515], "type": "Point"}, "id": "3778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62164783881474, 41.95190793831139, -85.62164783881474, 41.95190793831139], "geometry": {"coordinates": [-85.62164783881474, 41.95190793831139], "type": "Point"}, "id": "3779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62145947250393, 41.951909486527605, -85.62145947250393, 41.951909486527605], "geometry": {"coordinates": [-85.62145947250393, 41.951909486527605], "type": "Point"}, "id": "3780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.6212711061931, 41.95191103474378, -85.6212711061931, 41.95191103474378], "geometry": {"coordinates": [-85.6212711061931, 41.95191103474378], "type": "Point"}, "id": "3781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62108273988228, 41.95191258295991, -85.62108273988228, 41.95191258295991], "geometry": {"coordinates": [-85.62108273988228, 41.95191258295991], "type": "Point"}, "id": "3782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.6208943877299, 41.95191114663624, -85.6208943877299, 41.95191114663624], "geometry": {"coordinates": [-85.6208943877299, 41.95191114663624], "type": "Point"}, "id": "3783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62070604079743, 41.95190860997734, -85.62070604079743, 41.95190860997734], "geometry": {"coordinates": [-85.62070604079743, 41.95190860997734], "type": "Point"}, "id": "3784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62051769386495, 41.95190607331833, -85.62051769386495, 41.95190607331833], "geometry": {"coordinates": [-85.62051769386495, 41.95190607331833], "type": "Point"}, "id": "3785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62032934693246, 41.951903536659216, -85.62032934693246, 41.951903536659216], "geometry": {"coordinates": [-85.62032934693246, 41.951903536659216], "type": "Point"}, "id": "3786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62010590000001, 41.950131999999996, -85.62010590000001, 41.950131999999996], "geometry": {"coordinates": [-85.62010590000001, 41.950131999999996], "type": "Point"}, "id": "3787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62029610714286, 41.95013107142866, -85.62029610714286, 41.95013107142866], "geometry": {"coordinates": [-85.62029610714286, 41.95013107142866], "type": "Point"}, "id": "3788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62048631428571, 41.95013014285731, -85.62048631428571, 41.95013014285731], "geometry": {"coordinates": [-85.62048631428571, 41.95013014285731], "type": "Point"}, "id": "3789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62067652142858, 41.95012921428594, -85.62067652142858, 41.95012921428594], "geometry": {"coordinates": [-85.62067652142858, 41.95012921428594], "type": "Point"}, "id": "3790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62086672857143, 41.95012828571455, -85.62086672857143, 41.95012828571455], "geometry": {"coordinates": [-85.62086672857143, 41.95012828571455], "type": "Point"}, "id": "3791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62105693571428, 41.95012735714316, -85.62105693571428, 41.95012735714316], "geometry": {"coordinates": [-85.62105693571428, 41.95012735714316], "type": "Point"}, "id": "3792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62124714285714, 41.95012642857175, -85.62124714285714, 41.95012642857175], "geometry": {"coordinates": [-85.62124714285714, 41.95012642857175], "type": "Point"}, "id": "3793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62143735000002, 41.95012550000033, -85.62143735000002, 41.95012550000033], "geometry": {"coordinates": [-85.62143735000002, 41.95012550000033], "type": "Point"}, "id": "3794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62162755714287, 41.9501245714289, -85.62162755714287, 41.9501245714289], "geometry": {"coordinates": [-85.62162755714287, 41.9501245714289], "type": "Point"}, "id": "3795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62181776428572, 41.95012364285745, -85.62181776428572, 41.95012364285745], "geometry": {"coordinates": [-85.62181776428572, 41.95012364285745], "type": "Point"}, "id": "3796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62200797142857, 41.95012271428598, -85.62200797142857, 41.95012271428598], "geometry": {"coordinates": [-85.62200797142857, 41.95012271428598], "type": "Point"}, "id": "3797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62219817857144, 41.9501217857145, -85.62219817857144, 41.9501217857145], "geometry": {"coordinates": [-85.62219817857144, 41.9501217857145], "type": "Point"}, "id": "3798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.6223883857143, 41.95012085714301, -85.6223883857143, 41.95012085714301], "geometry": {"coordinates": [-85.6223883857143, 41.95012085714301], "type": "Point"}, "id": "3799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62257859285714, 41.95011992857151, -85.62257859285714, 41.95011992857151], "geometry": {"coordinates": [-85.62257859285714, 41.95011992857151], "type": "Point"}, "id": "3800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.61917089999999, 41.9567483, -85.61917089999999, 41.9567483], "geometry": {"coordinates": [-85.61917089999999, 41.9567483], "type": "Point"}, "id": "3801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6190636550888, 41.95664173803389, -85.6190636550888, 41.95664173803389], "geometry": {"coordinates": [-85.6190636550888, 41.95664173803389], "type": "Point"}, "id": "3802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61894135132543, 41.95654337155376, -85.61894135132543, 41.95654337155376], "geometry": {"coordinates": [-85.61894135132543, 41.95654337155376], "type": "Point"}, "id": "3803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6188213995338, 41.95644346506036, -85.6188213995338, 41.95644346506036], "geometry": {"coordinates": [-85.6188213995338, 41.95644346506036], "type": "Point"}, "id": "3804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61876512390694, 41.95631641845283, -85.61876512390694, 41.95631641845283], "geometry": {"coordinates": [-85.61876512390694, 41.95631641845283], "type": "Point"}, "id": "3805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6187525980167, 41.956182809668704, -85.6187525980167, 41.956182809668704], "geometry": {"coordinates": [-85.6187525980167, 41.956182809668704], "type": "Point"}, "id": "3806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61873031555922, 41.95604986680519, -85.61873031555922, 41.95604986680519], "geometry": {"coordinates": [-85.61873031555922, 41.95604986680519], "type": "Point"}, "id": "3807", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61875890591064, 41.9559199630717, -85.61875890591064, 41.9559199630717], "geometry": {"coordinates": [-85.61875890591064, 41.9559199630717], "type": "Point"}, "id": "3808", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61880944278955, 41.95579137027626, -85.61880944278955, 41.95579137027626], "geometry": {"coordinates": [-85.61880944278955, 41.95579137027626], "type": "Point"}, "id": "3809", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6188391028635, 41.95565928349583, -85.6188391028635, 41.95565928349583], "geometry": {"coordinates": [-85.6188391028635, 41.95565928349583], "type": "Point"}, "id": "3810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61874374690667, 41.95559846934935, -85.61874374690667, 41.95559846934935], "geometry": {"coordinates": [-85.61874374690667, 41.95559846934935], "type": "Point"}, "id": "3811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6185635979378, 41.95559764623291, -85.6185635979378, 41.95559764623291], "geometry": {"coordinates": [-85.6185635979378, 41.95559764623291], "type": "Point"}, "id": "3812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61838344896888, 41.95559682311646, -85.61838344896888, 41.95559682311646], "geometry": {"coordinates": [-85.61838344896888, 41.95559682311646], "type": "Point"}, "id": "3813", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.620172, 41.945627, -85.620172, 41.945627], "geometry": {"coordinates": [-85.620172, 41.945627], "type": "Point"}, "id": "3814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.62005143982448, 41.94550578455218, -85.62005143982448, 41.94550578455218], "geometry": {"coordinates": [-85.62005143982448, 41.94550578455218], "type": "Point"}, "id": "3815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.6200130009588, 41.94535611138541, -85.6200130009588, 41.94535611138541], "geometry": {"coordinates": [-85.6200130009588, 41.94535611138541], "type": "Point"}, "id": "3816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.62002160071911, 41.94520168410013, -85.62002160071911, 41.94520168410013], "geometry": {"coordinates": [-85.62002160071911, 41.94520168410013], "type": "Point"}, "id": "3817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.62003020047942, 41.945047256440795, -85.62003020047942, 41.945047256440795], "geometry": {"coordinates": [-85.62003020047942, 41.945047256440795], "type": "Point"}, "id": "3818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.6200388002397, 41.94489282840742, -85.6200388002397, 41.94489282840742], "geometry": {"coordinates": [-85.6200388002397, 41.94489282840742], "type": "Point"}, "id": "3819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.62003499999999, 41.933297, -85.62003499999999, 41.933297], "geometry": {"coordinates": [-85.62003499999999, 41.933297], "type": "Point"}, "id": "3820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61993884214493, 41.93340899456631, -85.61993884214493, 41.93340899456631], "geometry": {"coordinates": [-85.61993884214493, 41.93340899456631], "type": "Point"}, "id": "3821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61991560171221, 41.93354410434854, -85.61991560171221, 41.93354410434854], "geometry": {"coordinates": [-85.61991560171221, 41.93354410434854], "type": "Point"}, "id": "3822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61992103389086, 41.93368046425515, -85.61992103389086, 41.93368046425515], "geometry": {"coordinates": [-85.61992103389086, 41.93368046425515], "type": "Point"}, "id": "3823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61992646606949, 41.93381682387023, -85.61992646606949, 41.93381682387023], "geometry": {"coordinates": [-85.61992646606949, 41.93381682387023], "type": "Point"}, "id": "3824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61993189824811, 41.933953183193786, -85.61993189824811, 41.933953183193786], "geometry": {"coordinates": [-85.61993189824811, 41.933953183193786], "type": "Point"}, "id": "3825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61993733042677, 41.93408954222582, -85.61993733042677, 41.93408954222582], "geometry": {"coordinates": [-85.61993733042677, 41.93408954222582], "type": "Point"}, "id": "3826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.6199427626054, 41.934225900966325, -85.6199427626054, 41.934225900966325], "geometry": {"coordinates": [-85.6199427626054, 41.934225900966325], "type": "Point"}, "id": "3827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61994819478403, 41.9343622594153, -85.61994819478403, 41.9343622594153], "geometry": {"coordinates": [-85.61994819478403, 41.9343622594153], "type": "Point"}, "id": "3828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61995362696267, 41.934498617572764, -85.61995362696267, 41.934498617572764], "geometry": {"coordinates": [-85.61995362696267, 41.934498617572764], "type": "Point"}, "id": "3829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61995905914132, 41.93463497543869, -85.61995905914132, 41.93463497543869], "geometry": {"coordinates": [-85.61995905914132, 41.93463497543869], "type": "Point"}, "id": "3830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61996432570352, 41.934771336048534, -85.61996432570352, 41.934771336048534], "geometry": {"coordinates": [-85.61996432570352, 41.934771336048534], "type": "Point"}, "id": "3831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61996792677789, 41.93490772689205, -85.61996792677789, 41.93490772689205], "geometry": {"coordinates": [-85.61996792677789, 41.93490772689205], "type": "Point"}, "id": "3832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61997152785226, 41.935044117443894, -85.61997152785226, 41.935044117443894], "geometry": {"coordinates": [-85.61997152785226, 41.935044117443894], "type": "Point"}, "id": "3833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61997495714019, 41.93518051014511, -85.61997495714019, 41.93518051014511], "geometry": {"coordinates": [-85.61997495714019, 41.93518051014511], "type": "Point"}, "id": "3834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61997836050597, 41.935316902923, -85.61997836050597, 41.935316902923], "geometry": {"coordinates": [-85.61997836050597, 41.935316902923], "type": "Point"}, "id": "3835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61998176387173, 41.935453295409204, -85.61998176387173, 41.935453295409204], "geometry": {"coordinates": [-85.61998176387173, 41.935453295409204], "type": "Point"}, "id": "3836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61998516723752, 41.93558968760372, -85.61998516723752, 41.93558968760372], "geometry": {"coordinates": [-85.61998516723752, 41.93558968760372], "type": "Point"}, "id": "3837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61998857060328, 41.93572607950656, -85.61998857060328, 41.93572607950656], "geometry": {"coordinates": [-85.61998857060328, 41.93572607950656], "type": "Point"}, "id": "3838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61999197396906, 41.93586247111772, -85.61999197396906, 41.93586247111772], "geometry": {"coordinates": [-85.61999197396906, 41.93586247111772], "type": "Point"}, "id": "3839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61999537733483, 41.935998862437195, -85.61999537733483, 41.935998862437195], "geometry": {"coordinates": [-85.61999537733483, 41.935998862437195], "type": "Point"}, "id": "3840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61999878070063, 41.936135253464975, -85.61999878070063, 41.936135253464975], "geometry": {"coordinates": [-85.61999878070063, 41.936135253464975], "type": "Point"}, "id": "3841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000132753417, 41.93627165135533, -85.62000132753417, 41.93627165135533], "geometry": {"coordinates": [-85.62000132753417, 41.93627165135533], "type": "Point"}, "id": "3842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000204186496, 41.936408064260036, -85.62000204186496, 41.936408064260036], "geometry": {"coordinates": [-85.62000204186496, 41.936408064260036], "type": "Point"}, "id": "3843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000275619577, 41.93654447687296, -85.62000275619577, 41.93654447687296], "geometry": {"coordinates": [-85.62000275619577, 41.93654447687296], "type": "Point"}, "id": "3844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000347052658, 41.93668088919411, -85.62000347052658, 41.93668088919411], "geometry": {"coordinates": [-85.62000347052658, 41.93668088919411], "type": "Point"}, "id": "3845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000424977047, 41.93681730100234, -85.62000424977047, 41.93681730100234], "geometry": {"coordinates": [-85.62000424977047, 41.93681730100234], "type": "Point"}, "id": "3846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000521494018, 41.93695371188546, -85.62000521494018, 41.93695371188546], "geometry": {"coordinates": [-85.62000521494018, 41.93695371188546], "type": "Point"}, "id": "3847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000618010988, 41.937090122476775, -85.62000618010988, 41.937090122476775], "geometry": {"coordinates": [-85.62000618010988, 41.937090122476775], "type": "Point"}, "id": "3848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000712421805, 41.93722653285282, -85.62000712421805, 41.93722653285282], "geometry": {"coordinates": [-85.62000712421805, 41.93722653285282], "type": "Point"}, "id": "3849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000794946478, 41.93736294336871, -85.62000794946478, 41.93736294336871], "geometry": {"coordinates": [-85.62000794946478, 41.93736294336871], "type": "Point"}, "id": "3850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000877471152, 41.937499353592834, -85.62000877471152, 41.937499353592834], "geometry": {"coordinates": [-85.62000877471152, 41.937499353592834], "type": "Point"}, "id": "3851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000959995825, 41.937635763525165, -85.62000959995825, 41.937635763525165], "geometry": {"coordinates": [-85.62000959995825, 41.937635763525165], "type": "Point"}, "id": "3852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62001044764682, 41.93777217308944, -85.62001044764682, 41.93777217308944], "geometry": {"coordinates": [-85.62001044764682, 41.93777217308944], "type": "Point"}, "id": "3853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62001129843121, 41.937908582351405, -85.62001129843121, 41.937908582351405], "geometry": {"coordinates": [-85.62001129843121, 41.937908582351405], "type": "Point"}, "id": "3854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62001214921561, 41.9380449913216, -85.62001214921561, 41.9380449913216], "geometry": {"coordinates": [-85.62001214921561, 41.9380449913216], "type": "Point"}, "id": "3855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62267439999998, 41.94473709999999, -85.62267439999998, 41.94473709999999], "geometry": {"coordinates": [-85.62267439999998, 41.94473709999999], "type": "Point"}, "id": "3856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62268058624504, 41.944871161073934, -85.62268058624504, 41.944871161073934], "geometry": {"coordinates": [-85.62268058624504, 41.944871161073934], "type": "Point"}, "id": "3857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62268677249007, 41.945005221865976, -85.62268677249007, 41.945005221865976], "geometry": {"coordinates": [-85.62268677249007, 41.945005221865976], "type": "Point"}, "id": "3858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62269295873512, 41.94513928237614, -85.62269295873512, 41.94513928237614], "geometry": {"coordinates": [-85.62269295873512, 41.94513928237614], "type": "Point"}, "id": "3859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62269914498017, 41.94527334260441, -85.62269914498017, 41.94527334260441], "geometry": {"coordinates": [-85.62269914498017, 41.94527334260441], "type": "Point"}, "id": "3860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62270533122519, 41.94540740255079, -85.62270533122519, 41.94540740255079], "geometry": {"coordinates": [-85.62270533122519, 41.94540740255079], "type": "Point"}, "id": "3861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271151747024, 41.94554146221528, -85.62271151747024, 41.94554146221528], "geometry": {"coordinates": [-85.62271151747024, 41.94554146221528], "type": "Point"}, "id": "3862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227159550296, 41.94567554675177, -85.6227159550296, 41.94567554675177], "geometry": {"coordinates": [-85.6227159550296, 41.94567554675177], "type": "Point"}, "id": "3863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271674240476, 41.94580968351208, -85.62271674240476, 41.94580968351208], "geometry": {"coordinates": [-85.62271674240476, 41.94580968351208], "type": "Point"}, "id": "3864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271752977992, 41.94594381999018, -85.62271752977992, 41.94594381999018], "geometry": {"coordinates": [-85.62271752977992, 41.94594381999018], "type": "Point"}, "id": "3865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271831715506, 41.946077956186045, -85.62271831715506, 41.946077956186045], "geometry": {"coordinates": [-85.62271831715506, 41.946077956186045], "type": "Point"}, "id": "3866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271910453023, 41.94621209209971, -85.62271910453023, 41.94621209209971], "geometry": {"coordinates": [-85.62271910453023, 41.94621209209971], "type": "Point"}, "id": "3867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227198919054, 41.94634622773115, -85.6227198919054, 41.94634622773115], "geometry": {"coordinates": [-85.6227198919054, 41.94634622773115], "type": "Point"}, "id": "3868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62272067928053, 41.94648036308037, -85.62272067928053, 41.94648036308037], "geometry": {"coordinates": [-85.62272067928053, 41.94648036308037], "type": "Point"}, "id": "3869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62272427601012, 41.94661446155625, -85.62272427601012, 41.94661446155625], "geometry": {"coordinates": [-85.62272427601012, 41.94661446155625], "type": "Point"}, "id": "3870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227298035307, 41.946748534602065, -85.6227298035307, 41.946748534602065], "geometry": {"coordinates": [-85.6227298035307, 41.946748534602065], "type": "Point"}, "id": "3871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227353310513, 41.94688260736591, -85.6227353310513, 41.94688260736591], "geometry": {"coordinates": [-85.6227353310513, 41.94688260736591], "type": "Point"}, "id": "3872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62274085857189, 41.9470166798478, -85.62274085857189, 41.9470166798478], "geometry": {"coordinates": [-85.62274085857189, 41.9470166798478], "type": "Point"}, "id": "3873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62274638609247, 41.94715075204774, -85.62274638609247, 41.94715075204774], "geometry": {"coordinates": [-85.62274638609247, 41.94715075204774], "type": "Point"}, "id": "3874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275191361307, 41.94728482396572, -85.62275191361307, 41.94728482396572], "geometry": {"coordinates": [-85.62275191361307, 41.94728482396572], "type": "Point"}, "id": "3875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275744113367, 41.94741889560173, -85.62275744113367, 41.94741889560173], "geometry": {"coordinates": [-85.62275744113367, 41.94741889560173], "type": "Point"}, "id": "3876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227582431478, 41.947553025448116, -85.6227582431478, 41.947553025448116], "geometry": {"coordinates": [-85.6227582431478, 41.947553025448116], "type": "Point"}, "id": "3877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275871706395, 41.94768715907348, -85.62275871706395, 41.94768715907348], "geometry": {"coordinates": [-85.62275871706395, 41.94768715907348], "type": "Point"}, "id": "3878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275919098008, 41.947821292416634, -85.62275919098008, 41.947821292416634], "geometry": {"coordinates": [-85.62275919098008, 41.947821292416634], "type": "Point"}, "id": "3879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275966489621, 41.94795542547755, -85.62275966489621, 41.94795542547755], "geometry": {"coordinates": [-85.62275966489621, 41.94795542547755], "type": "Point"}, "id": "3880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276013881237, 41.94808955825625, -85.62276013881237, 41.94808955825625], "geometry": {"coordinates": [-85.62276013881237, 41.94808955825625], "type": "Point"}, "id": "3881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227606127285, 41.94822369075273, -85.6227606127285, 41.94822369075273], "geometry": {"coordinates": [-85.6227606127285, 41.94822369075273], "type": "Point"}, "id": "3882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276121677216, 41.94835782252167, -85.62276121677216, 41.94835782252167], "geometry": {"coordinates": [-85.62276121677216, 41.94835782252167], "type": "Point"}, "id": "3883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276240244056, 41.94849195201803, -85.62276240244056, 41.94849195201803], "geometry": {"coordinates": [-85.62276240244056, 41.94849195201803], "type": "Point"}, "id": "3884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276358810895, 41.94862608123217, -85.62276358810895, 41.94862608123217], "geometry": {"coordinates": [-85.62276358810895, 41.94862608123217], "type": "Point"}, "id": "3885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276477377735, 41.9487602101641, -85.62276477377735, 41.9487602101641], "geometry": {"coordinates": [-85.62276477377735, 41.9487602101641], "type": "Point"}, "id": "3886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276595944574, 41.948894338813815, -85.62276595944574, 41.948894338813815], "geometry": {"coordinates": [-85.62276595944574, 41.948894338813815], "type": "Point"}, "id": "3887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276714511417, 41.94902846718132, -85.62276714511417, 41.94902846718132], "geometry": {"coordinates": [-85.62276714511417, 41.94902846718132], "type": "Point"}, "id": "3888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276833078255, 41.94916259526661, -85.62276833078255, 41.94916259526661], "geometry": {"coordinates": [-85.62276833078255, 41.94916259526661], "type": "Point"}, "id": "3889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227689867324, 41.94929672433148, -85.6227689867324, 41.94929672433148], "geometry": {"coordinates": [-85.6227689867324, 41.94929672433148], "type": "Point"}, "id": "3890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276895627261, 41.949430854749174, -85.62276895627261, 41.949430854749174], "geometry": {"coordinates": [-85.62276895627261, 41.949430854749174], "type": "Point"}, "id": "3891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276892581279, 41.94956498488464, -85.62276892581279, 41.94956498488464], "geometry": {"coordinates": [-85.62276892581279, 41.94956498488464], "type": "Point"}, "id": "3892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276889535298, 41.94969911473788, -85.62276889535298, 41.94969911473788], "geometry": {"coordinates": [-85.62276889535298, 41.94969911473788], "type": "Point"}, "id": "3893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276886489316, 41.9498332443089, -85.62276886489316, 41.9498332443089], "geometry": {"coordinates": [-85.62276886489316, 41.9498332443089], "type": "Point"}, "id": "3894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276883443336, 41.949967373597694, -85.62276883443336, 41.949967373597694], "geometry": {"coordinates": [-85.62276883443336, 41.949967373597694], "type": "Point"}, "id": "3895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276880397354, 41.95010150260425, -85.62276880397354, 41.95010150260425], "geometry": {"coordinates": [-85.62276880397354, 41.95010150260425], "type": "Point"}, "id": "3896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277008335704, 41.950235627424696, -85.62277008335704, 41.950235627424696], "geometry": {"coordinates": [-85.62277008335704, 41.950235627424696], "type": "Point"}, "id": "3897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227715592471, 41.95036975137725, -85.6227715592471, 41.95036975137725], "geometry": {"coordinates": [-85.6227715592471, 41.95036975137725], "type": "Point"}, "id": "3898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277303513717, 41.9505038750476, -85.62277303513717, 41.9505038750476], "geometry": {"coordinates": [-85.62277303513717, 41.9505038750476], "type": "Point"}, "id": "3899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277451102723, 41.950637998435745, -85.62277451102723, 41.950637998435745], "geometry": {"coordinates": [-85.62277451102723, 41.950637998435745], "type": "Point"}, "id": "3900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227759869173, 41.950772121541675, -85.6227759869173, 41.950772121541675], "geometry": {"coordinates": [-85.6227759869173, 41.950772121541675], "type": "Point"}, "id": "3901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277746280736, 41.9509062443654, -85.62277746280736, 41.9509062443654], "geometry": {"coordinates": [-85.62277746280736, 41.9509062443654], "type": "Point"}, "id": "3902", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277757956045, 41.95104036236462, -85.62277757956045, 41.95104036236462], "geometry": {"coordinates": [-85.62277757956045, 41.95104036236462], "type": "Point"}, "id": "3903", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277448296702, 41.95117446934254, -85.62277448296702, 41.95117446934254], "geometry": {"coordinates": [-85.62277448296702, 41.95117446934254], "type": "Point"}, "id": "3904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277138637361, 41.95130857603833, -85.62277138637361, 41.95130857603833], "geometry": {"coordinates": [-85.62277138637361, 41.95130857603833], "type": "Point"}, "id": "3905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276828978021, 41.95144268245196, -85.62276828978021, 41.95144268245196], "geometry": {"coordinates": [-85.62276828978021, 41.95144268245196], "type": "Point"}, "id": "3906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227651931868, 41.951576788583445, -85.6227651931868, 41.951576788583445], "geometry": {"coordinates": [-85.6227651931868, 41.951576788583445], "type": "Point"}, "id": "3907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276209659339, 41.9517108944328, -85.62276209659339, 41.9517108944328], "geometry": {"coordinates": [-85.62276209659339, 41.9517108944328], "type": "Point"}, "id": "3908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6222684, 41.9351903, -85.6222684, 41.9351903], "geometry": {"coordinates": [-85.6222684, 41.9351903], "type": "Point"}, "id": "3909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62227082180607, 41.93532597502175, -85.62227082180607, 41.93532597502175], "geometry": {"coordinates": [-85.62227082180607, 41.93532597502175], "type": "Point"}, "id": "3910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62227324361213, 41.93546164975488, -85.62227324361213, 41.93546164975488], "geometry": {"coordinates": [-85.62227324361213, 41.93546164975488], "type": "Point"}, "id": "3911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.6222756654182, 41.93559732419938, -85.6222756654182, 41.93559732419938], "geometry": {"coordinates": [-85.6222756654182, 41.93559732419938], "type": "Point"}, "id": "3912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62227808722427, 41.93573299835526, -85.62227808722427, 41.93573299835526], "geometry": {"coordinates": [-85.62227808722427, 41.93573299835526], "type": "Point"}, "id": "3913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62228050903035, 41.935868672222526, -85.62228050903035, 41.935868672222526], "geometry": {"coordinates": [-85.62228050903035, 41.935868672222526], "type": "Point"}, "id": "3914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62228293083642, 41.936004345801166, -85.62228293083642, 41.936004345801166], "geometry": {"coordinates": [-85.62228293083642, 41.936004345801166], "type": "Point"}, "id": "3915", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62228535264249, 41.93614001909119, -85.62228535264249, 41.93614001909119], "geometry": {"coordinates": [-85.62228535264249, 41.93614001909119], "type": "Point"}, "id": "3916", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62228772285334, 41.936275692589994, -85.62228772285334, 41.936275692589994], "geometry": {"coordinates": [-85.62228772285334, 41.936275692589994], "type": "Point"}, "id": "3917", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.6222900283638, 41.93641136642393, -85.6222900283638, 41.93641136642393], "geometry": {"coordinates": [-85.6222900283638, 41.93641136642393], "type": "Point"}, "id": "3918", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62229233387428, 41.93654703996924, -85.62229233387428, 41.93654703996924], "geometry": {"coordinates": [-85.62229233387428, 41.93654703996924], "type": "Point"}, "id": "3919", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62229463938478, 41.93668271322592, -85.62229463938478, 41.93668271322592], "geometry": {"coordinates": [-85.62229463938478, 41.93668271322592], "type": "Point"}, "id": "3920", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62229694489524, 41.93681838619397, -85.62229694489524, 41.93681838619397], "geometry": {"coordinates": [-85.62229694489524, 41.93681838619397], "type": "Point"}, "id": "3921", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62229925040572, 41.936954058873404, -85.62229925040572, 41.936954058873404], "geometry": {"coordinates": [-85.62229925040572, 41.936954058873404], "type": "Point"}, "id": "3922", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62230155591618, 41.9370897312642, -85.62230155591618, 41.9370897312642], "geometry": {"coordinates": [-85.62230155591618, 41.9370897312642], "type": "Point"}, "id": "3923", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62230386142666, 41.93722540336638, -85.62230386142666, 41.93722540336638], "geometry": {"coordinates": [-85.62230386142666, 41.93722540336638], "type": "Point"}, "id": "3924", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62230616693715, 41.93736107517992, -85.62230616693715, 41.93736107517992], "geometry": {"coordinates": [-85.62230616693715, 41.93736107517992], "type": "Point"}, "id": "3925", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62230847244761, 41.937496746704845, -85.62230847244761, 41.937496746704845], "geometry": {"coordinates": [-85.62230847244761, 41.937496746704845], "type": "Point"}, "id": "3926", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62231077795809, 41.93763241794113, -85.62231077795809, 41.93763241794113], "geometry": {"coordinates": [-85.62231077795809, 41.93763241794113], "type": "Point"}, "id": "3927", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62231308346855, 41.937768088888795, -85.62231308346855, 41.937768088888795], "geometry": {"coordinates": [-85.62231308346855, 41.937768088888795], "type": "Point"}, "id": "3928", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62231538897905, 41.93790375954782, -85.62231538897905, 41.93790375954782], "geometry": {"coordinates": [-85.62231538897905, 41.93790375954782], "type": "Point"}, "id": "3929", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62231769448952, 41.93803942991823, -85.62231769448952, 41.93803942991823], "geometry": {"coordinates": [-85.62231769448952, 41.93803942991823], "type": "Point"}, "id": "3930", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.6271604, 41.9262769, -85.6271604, 41.9262769], "geometry": {"coordinates": [-85.6271604, 41.9262769], "type": "Point"}, "id": "3931", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62696270167913, 41.92630296003648, -85.62696270167913, 41.92630296003648], "geometry": {"coordinates": [-85.62696270167913, 41.92630296003648], "type": "Point"}, "id": "3932", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62676500335826, 41.92632902006231, -85.62676500335826, 41.92632902006231], "geometry": {"coordinates": [-85.62676500335826, 41.92632902006231], "type": "Point"}, "id": "3933", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.6265673050374, 41.926355080077506, -85.6265673050374, 41.926355080077506], "geometry": {"coordinates": [-85.6265673050374, 41.926355080077506], "type": "Point"}, "id": "3934", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62636960671652, 41.92638114008206, -85.62636960671652, 41.92638114008206], "geometry": {"coordinates": [-85.62636960671652, 41.92638114008206], "type": "Point"}, "id": "3935", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62617409147006, 41.92641481928345, -85.62617409147006, 41.92641481928345], "geometry": {"coordinates": [-85.62617409147006, 41.92641481928345], "type": "Point"}, "id": "3936", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62597929573504, 41.926451009652, -85.62597929573504, 41.926451009652], "geometry": {"coordinates": [-85.62597929573504, 41.926451009652], "type": "Point"}, "id": "3937", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.6296112, 41.9273948, -85.6296112, 41.9273948], "geometry": {"coordinates": [-85.6296112, 41.9273948], "type": "Point"}, "id": "3938", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62943685185918, 41.927354838679975, -85.62943685185918, 41.927354838679975], "geometry": {"coordinates": [-85.62943685185918, 41.927354838679975], "type": "Point"}, "id": "3939", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62924852280733, 41.92735517590522, -85.62924852280733, 41.92735517590522], "geometry": {"coordinates": [-85.62924852280733, 41.92735517590522], "type": "Point"}, "id": "3940", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62906019375549, 41.92735551313045, -85.62906019375549, 41.92735551313045], "geometry": {"coordinates": [-85.62906019375549, 41.92735551313045], "type": "Point"}, "id": "3941", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62887186470363, 41.92735585035569, -85.62887186470363, 41.92735585035569], "geometry": {"coordinates": [-85.62887186470363, 41.92735585035569], "type": "Point"}, "id": "3942", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62868353565177, 41.92735618758092, -85.62868353565177, 41.92735618758092], "geometry": {"coordinates": [-85.62868353565177, 41.92735618758092], "type": "Point"}, "id": "3943", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62849520659994, 41.92735652480616, -85.62849520659994, 41.92735652480616], "geometry": {"coordinates": [-85.62849520659994, 41.92735652480616], "type": "Point"}, "id": "3944", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62830687754808, 41.92735686203138, -85.62830687754808, 41.92735686203138], "geometry": {"coordinates": [-85.62830687754808, 41.92735686203138], "type": "Point"}, "id": "3945", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62811854849625, 41.92735719925661, -85.62811854849625, 41.92735719925661], "geometry": {"coordinates": [-85.62811854849625, 41.92735719925661], "type": "Point"}, "id": "3946", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62793021944441, 41.927357536481836, -85.62793021944441, 41.927357536481836], "geometry": {"coordinates": [-85.62793021944441, 41.927357536481836], "type": "Point"}, "id": "3947", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62774189424019, 41.92735836586917, -85.62774189424019, 41.92735836586917], "geometry": {"coordinates": [-85.62774189424019, 41.92735836586917], "type": "Point"}, "id": "3948", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62755357265794, 41.92735965855047, -85.62755357265794, 41.92735965855047], "geometry": {"coordinates": [-85.62755357265794, 41.92735965855047], "type": "Point"}, "id": "3949", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.6273652510757, 41.927360951231755, -85.6273652510757, 41.927360951231755], "geometry": {"coordinates": [-85.6273652510757, 41.927360951231755], "type": "Point"}, "id": "3950", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62717692949344, 41.92736224391301, -85.62717692949344, 41.92736224391301], "geometry": {"coordinates": [-85.62717692949344, 41.92736224391301], "type": "Point"}, "id": "3951", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62698860791122, 41.92736353659424, -85.62698860791122, 41.92736353659424], "geometry": {"coordinates": [-85.62698860791122, 41.92736353659424], "type": "Point"}, "id": "3952", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62680028632896, 41.92736482927545, -85.62680028632896, 41.92736482927545], "geometry": {"coordinates": [-85.62680028632896, 41.92736482927545], "type": "Point"}, "id": "3953", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62661196474673, 41.92736612195662, -85.62661196474673, 41.92736612195662], "geometry": {"coordinates": [-85.62661196474673, 41.92736612195662], "type": "Point"}, "id": "3954", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62642364316449, 41.92736741463778, -85.62642364316449, 41.92736741463778], "geometry": {"coordinates": [-85.62642364316449, 41.92736741463778], "type": "Point"}, "id": "3955", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62623532158223, 41.9273687073189, -85.62623532158223, 41.9273687073189], "geometry": {"coordinates": [-85.62623532158223, 41.9273687073189], "type": "Point"}, "id": "3956", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.621605, 41.940143, -85.621605, 41.940143], "geometry": {"coordinates": [-85.621605, 41.940143], "type": "Point"}, "id": "3957", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.62160266666667, 41.9402983342793, -85.62160266666667, 41.9402983342793], "geometry": {"coordinates": [-85.62160266666667, 41.9402983342793], "type": "Point"}, "id": "3958", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.62160033333333, 41.940453668180226, -85.62160033333333, 41.940453668180226], "geometry": {"coordinates": [-85.62160033333333, 41.940453668180226], "type": "Point"}, "id": "3959", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.621598, 41.94060900170275, -85.621598, 41.94060900170275], "geometry": {"coordinates": [-85.621598, 41.94060900170275], "type": "Point"}, "id": "3960", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.62159566666666, 41.94076433484688, -85.62159566666666, 41.94076433484688], "geometry": {"coordinates": [-85.62159566666666, 41.94076433484688], "type": "Point"}, "id": "3961", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.62159333333334, 41.94091966761264, -85.62159333333334, 41.94091966761264], "geometry": {"coordinates": [-85.62159333333334, 41.94091966761264], "type": "Point"}, "id": "3962", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.6296112, 41.9273948, -85.6296112, 41.9273948], "geometry": {"coordinates": [-85.6296112, 41.9273948], "type": "Point"}, "id": "3963", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296374061141, 41.92752801499899, -85.6296374061141, 41.92752801499899], "geometry": {"coordinates": [-85.6296374061141, 41.92752801499899], "type": "Point"}, "id": "3964", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62963998253709, 41.92766307272644, -85.62963998253709, 41.92766307272644], "geometry": {"coordinates": [-85.62963998253709, 41.92766307272644], "type": "Point"}, "id": "3965", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62964255896007, 41.927798130167965, -85.62964255896007, 41.927798130167965], "geometry": {"coordinates": [-85.62964255896007, 41.927798130167965], "type": "Point"}, "id": "3966", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62964513538306, 41.92793318732357, -85.62964513538306, 41.92793318732357], "geometry": {"coordinates": [-85.62964513538306, 41.92793318732357], "type": "Point"}, "id": "3967", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62964771180603, 41.928068244193234, -85.62964771180603, 41.928068244193234], "geometry": {"coordinates": [-85.62964771180603, 41.928068244193234], "type": "Point"}, "id": "3968", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965028822902, 41.92820330077699, -85.62965028822902, 41.92820330077699], "geometry": {"coordinates": [-85.62965028822902, 41.92820330077699], "type": "Point"}, "id": "3969", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965234353175, 41.92833835949162, -85.62965234353175, 41.92833835949162], "geometry": {"coordinates": [-85.62965234353175, 41.92833835949162], "type": "Point"}, "id": "3970", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965203042417, 41.928473428904276, -85.62965203042417, 41.928473428904276], "geometry": {"coordinates": [-85.62965203042417, 41.928473428904276], "type": "Point"}, "id": "3971", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965171731659, 41.928608498030954, -85.62965171731659, 41.928608498030954], "geometry": {"coordinates": [-85.62965171731659, 41.928608498030954], "type": "Point"}, "id": "3972", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965140420901, 41.928743566871645, -85.62965140420901, 41.928743566871645], "geometry": {"coordinates": [-85.62965140420901, 41.928743566871645], "type": "Point"}, "id": "3973", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965109110141, 41.928878635426365, -85.62965109110141, 41.928878635426365], "geometry": {"coordinates": [-85.62965109110141, 41.928878635426365], "type": "Point"}, "id": "3974", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965077799382, 41.92901370369509, -85.62965077799382, 41.92901370369509], "geometry": {"coordinates": [-85.62965077799382, 41.92901370369509], "type": "Point"}, "id": "3975", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965046488624, 41.92914877167784, -85.62965046488624, 41.92914877167784], "geometry": {"coordinates": [-85.62965046488624, 41.92914877167784], "type": "Point"}, "id": "3976", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296509409242, 41.9292838376917, -85.6296509409242, 41.9292838376917], "geometry": {"coordinates": [-85.6296509409242, 41.9292838376917], "type": "Point"}, "id": "3977", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965229483339, 41.92941890154747, -85.62965229483339, 41.92941890154747], "geometry": {"coordinates": [-85.62965229483339, 41.92941890154747], "type": "Point"}, "id": "3978", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965364874258, 41.929553965117265, -85.62965364874258, 41.929553965117265], "geometry": {"coordinates": [-85.62965364874258, 41.929553965117265], "type": "Point"}, "id": "3979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965500265177, 41.92968902840109, -85.62965500265177, 41.92968902840109], "geometry": {"coordinates": [-85.62965500265177, 41.92968902840109], "type": "Point"}, "id": "3980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965635656096, 41.929824091398956, -85.62965635656096, 41.929824091398956], "geometry": {"coordinates": [-85.62965635656096, 41.929824091398956], "type": "Point"}, "id": "3981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965771047017, 41.929959154110854, -85.62965771047017, 41.929959154110854], "geometry": {"coordinates": [-85.62965771047017, 41.929959154110854], "type": "Point"}, "id": "3982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965906437937, 41.93009421653678, -85.62965906437937, 41.93009421653678], "geometry": {"coordinates": [-85.62965906437937, 41.93009421653678], "type": "Point"}, "id": "3983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966039845566, 41.930229278785006, -85.62966039845566, 41.930229278785006], "geometry": {"coordinates": [-85.62966039845566, 41.930229278785006], "type": "Point"}, "id": "3984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966170893539, 41.930364340876096, -85.62966170893539, 41.930364340876096], "geometry": {"coordinates": [-85.62966170893539, 41.930364340876096], "type": "Point"}, "id": "3985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966301941512, 41.93049940268121, -85.62966301941512, 41.93049940268121], "geometry": {"coordinates": [-85.62966301941512, 41.93049940268121], "type": "Point"}, "id": "3986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966432989484, 41.930634464200345, -85.62966432989484, 41.930634464200345], "geometry": {"coordinates": [-85.62966432989484, 41.930634464200345], "type": "Point"}, "id": "3987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966564037458, 41.930769525433526, -85.62966564037458, 41.930769525433526], "geometry": {"coordinates": [-85.62966564037458, 41.930769525433526], "type": "Point"}, "id": "3988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966695085431, 41.93090458638073, -85.62966695085431, 41.93090458638073], "geometry": {"coordinates": [-85.62966695085431, 41.93090458638073], "type": "Point"}, "id": "3989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966826133405, 41.93103964704197, -85.62966826133405, 41.93103964704197], "geometry": {"coordinates": [-85.62966826133405, 41.93103964704197], "type": "Point"}, "id": "3990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966957323304, 41.93117470740958, -85.62966957323304, 41.93117470740958], "geometry": {"coordinates": [-85.62966957323304, 41.93117470740958], "type": "Point"}, "id": "3991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.629670894538, 41.931309767440496, -85.629670894538, 41.931309767440496], "geometry": {"coordinates": [-85.629670894538, 41.931309767440496], "type": "Point"}, "id": "3992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967221584297, 41.931444827185445, -85.62967221584297, 41.931444827185445], "geometry": {"coordinates": [-85.62967221584297, 41.931444827185445], "type": "Point"}, "id": "3993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967353714792, 41.931579886644435, -85.62967353714792, 41.931579886644435], "geometry": {"coordinates": [-85.62967353714792, 41.931579886644435], "type": "Point"}, "id": "3994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967485845287, 41.93171494581745, -85.62967485845287, 41.93171494581745], "geometry": {"coordinates": [-85.62967485845287, 41.93171494581745], "type": "Point"}, "id": "3995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967617975787, 41.93185000470448, -85.62967617975787, 41.93185000470448], "geometry": {"coordinates": [-85.62967617975787, 41.93185000470448], "type": "Point"}, "id": "3996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296775010628, 41.931985063305554, -85.6296775010628, 41.931985063305554], "geometry": {"coordinates": [-85.6296775010628, 41.931985063305554], "type": "Point"}, "id": "3997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967882236778, 41.93212012162065, -85.62967882236778, 41.93212012162065], "geometry": {"coordinates": [-85.62967882236778, 41.93212012162065], "type": "Point"}, "id": "3998", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968014700037, 41.93225517963174, -85.62968014700037, 41.93225517963174], "geometry": {"coordinates": [-85.62968014700037, 41.93225517963174], "type": "Point"}, "id": "3999", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296814725182, 41.93239023735205, -85.6296814725182, 41.93239023735205], "geometry": {"coordinates": [-85.6296814725182, 41.93239023735205], "type": "Point"}, "id": "4000", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968279803603, 41.93252529478639, -85.62968279803603, 41.93252529478639], "geometry": {"coordinates": [-85.62968279803603, 41.93252529478639], "type": "Point"}, "id": "4001", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968412355383, 41.93266035193476, -85.62968412355383, 41.93266035193476], "geometry": {"coordinates": [-85.62968412355383, 41.93266035193476], "type": "Point"}, "id": "4002", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968544907164, 41.932795408797155, -85.62968544907164, 41.932795408797155], "geometry": {"coordinates": [-85.62968544907164, 41.932795408797155], "type": "Point"}, "id": "4003", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968677458944, 41.93293046537359, -85.62968677458944, 41.93293046537359], "geometry": {"coordinates": [-85.62968677458944, 41.93293046537359], "type": "Point"}, "id": "4004", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968810010727, 41.93306552166404, -85.62968810010727, 41.93306552166404], "geometry": {"coordinates": [-85.62968810010727, 41.93306552166404], "type": "Point"}, "id": "4005", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296894221422, 41.93320057768734, -85.6296894221422, 41.93320057768734], "geometry": {"coordinates": [-85.6296894221422, 41.93320057768734], "type": "Point"}, "id": "4006", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969073348233, 41.93333563348245, -85.62969073348233, 41.93333563348245], "geometry": {"coordinates": [-85.62969073348233, 41.93333563348245], "type": "Point"}, "id": "4007", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969204482243, 41.93347068899158, -85.62969204482243, 41.93347068899158], "geometry": {"coordinates": [-85.62969204482243, 41.93347068899158], "type": "Point"}, "id": "4008", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969335616255, 41.933605744214745, -85.62969335616255, 41.933605744214745], "geometry": {"coordinates": [-85.62969335616255, 41.933605744214745], "type": "Point"}, "id": "4009", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969466750266, 41.933740799151934, -85.62969466750266, 41.933740799151934], "geometry": {"coordinates": [-85.62969466750266, 41.933740799151934], "type": "Point"}, "id": "4010", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969597884276, 41.93387585380315, -85.62969597884276, 41.93387585380315], "geometry": {"coordinates": [-85.62969597884276, 41.93387585380315], "type": "Point"}, "id": "4011", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969729018288, 41.934010908168396, -85.62969729018288, 41.934010908168396], "geometry": {"coordinates": [-85.62969729018288, 41.934010908168396], "type": "Point"}, "id": "4012", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969860152299, 41.93414596224767, -85.62969860152299, 41.93414596224767], "geometry": {"coordinates": [-85.62969860152299, 41.93414596224767], "type": "Point"}, "id": "4013", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969991784627, 41.934281016014104, -85.62969991784627, 41.934281016014104], "geometry": {"coordinates": [-85.62969991784627, 41.934281016014104], "type": "Point"}, "id": "4014", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970123722536, 41.934416069478104, -85.62970123722536, 41.934416069478104], "geometry": {"coordinates": [-85.62970123722536, 41.934416069478104], "type": "Point"}, "id": "4015", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970255660446, 41.934551122656124, -85.62970255660446, 41.934551122656124], "geometry": {"coordinates": [-85.62970255660446, 41.934551122656124], "type": "Point"}, "id": "4016", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970387598357, 41.93468617554817, -85.62970387598357, 41.93468617554817], "geometry": {"coordinates": [-85.62970387598357, 41.93468617554817], "type": "Point"}, "id": "4017", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970519536266, 41.93482122815425, -85.62970519536266, 41.93482122815425], "geometry": {"coordinates": [-85.62970519536266, 41.93482122815425], "type": "Point"}, "id": "4018", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970651474177, 41.93495628047435, -85.62970651474177, 41.93495628047435], "geometry": {"coordinates": [-85.62970651474177, 41.93495628047435], "type": "Point"}, "id": "4019", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970783412088, 41.93509133250848, -85.62970783412088, 41.93509133250848], "geometry": {"coordinates": [-85.62970783412088, 41.93509133250848], "type": "Point"}, "id": "4020", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970915526951, 41.935226384247045, -85.62970915526951, 41.935226384247045], "geometry": {"coordinates": [-85.62970915526951, 41.935226384247045], "type": "Point"}, "id": "4021", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971048125311, 41.93536143567343, -85.62971048125311, 41.93536143567343], "geometry": {"coordinates": [-85.62971048125311, 41.93536143567343], "type": "Point"}, "id": "4022", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971180061231, 41.93549648684971, -85.62971180061231, 41.93549648684971], "geometry": {"coordinates": [-85.62971180061231, 41.93549648684971], "type": "Point"}, "id": "4023", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971311787516, 41.93563153775137, -85.62971311787516, 41.93563153775137], "geometry": {"coordinates": [-85.62971311787516, 41.93563153775137], "type": "Point"}, "id": "4024", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971443513801, 41.93576658836706, -85.62971443513801, 41.93576658836706], "geometry": {"coordinates": [-85.62971443513801, 41.93576658836706], "type": "Point"}, "id": "4025", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971575240087, 41.93590163869677, -85.62971575240087, 41.93590163869677], "geometry": {"coordinates": [-85.62971575240087, 41.93590163869677], "type": "Point"}, "id": "4026", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971706966371, 41.93603668874051, -85.62971706966371, 41.93603668874051], "geometry": {"coordinates": [-85.62971706966371, 41.93603668874051], "type": "Point"}, "id": "4027", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971838692657, 41.936171738498274, -85.62971838692657, 41.936171738498274], "geometry": {"coordinates": [-85.62971838692657, 41.936171738498274], "type": "Point"}, "id": "4028", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971970418943, 41.93630678797006, -85.62971970418943, 41.93630678797006], "geometry": {"coordinates": [-85.62971970418943, 41.93630678797006], "type": "Point"}, "id": "4029", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62972102145228, 41.936441837155876, -85.62972102145228, 41.936441837155876], "geometry": {"coordinates": [-85.62972102145228, 41.936441837155876], "type": "Point"}, "id": "4030", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62972233871514, 41.93657688605571, -85.62972233871514, 41.93657688605571], "geometry": {"coordinates": [-85.62972233871514, 41.93657688605571], "type": "Point"}, "id": "4031", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.629723655978, 41.93671193466957, -85.629723655978, 41.93671193466957], "geometry": {"coordinates": [-85.629723655978, 41.93671193466957], "type": "Point"}, "id": "4032", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62972497324084, 41.93684698299745, -85.62972497324084, 41.93684698299745], "geometry": {"coordinates": [-85.62972497324084, 41.93684698299745], "type": "Point"}, "id": "4033", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6297262905037, 41.93698203103936, -85.6297262905037, 41.93698203103936], "geometry": {"coordinates": [-85.6297262905037, 41.93698203103936], "type": "Point"}, "id": "4034", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62972760776655, 41.93711707879529, -85.62972760776655, 41.93711707879529], "geometry": {"coordinates": [-85.62972760776655, 41.93711707879529], "type": "Point"}, "id": "4035", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6297289250294, 41.93725212626526, -85.6297289250294, 41.93725212626526], "geometry": {"coordinates": [-85.6297289250294, 41.93725212626526], "type": "Point"}, "id": "4036", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973024229225, 41.93738717344924, -85.62973024229225, 41.93738717344924], "geometry": {"coordinates": [-85.62973024229225, 41.93738717344924], "type": "Point"}, "id": "4037", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973155955511, 41.93752222034724, -85.62973155955511, 41.93752222034724], "geometry": {"coordinates": [-85.62973155955511, 41.93752222034724], "type": "Point"}, "id": "4038", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973287681797, 41.93765726695927, -85.62973287681797, 41.93765726695927], "geometry": {"coordinates": [-85.62973287681797, 41.93765726695927], "type": "Point"}, "id": "4039", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973419408081, 41.937792313285314, -85.62973419408081, 41.937792313285314], "geometry": {"coordinates": [-85.62973419408081, 41.937792313285314], "type": "Point"}, "id": "4040", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973551134368, 41.93792735932539, -85.62973551134368, 41.93792735932539], "geometry": {"coordinates": [-85.62973551134368, 41.93792735932539], "type": "Point"}, "id": "4041", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973682860653, 41.938062405079485, -85.62973682860653, 41.938062405079485], "geometry": {"coordinates": [-85.62973682860653, 41.938062405079485], "type": "Point"}, "id": "4042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973814586938, 41.9381974505476, -85.62973814586938, 41.9381974505476], "geometry": {"coordinates": [-85.62973814586938, 41.9381974505476], "type": "Point"}, "id": "4043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973945976862, 41.93833249574787, -85.62973945976862, 41.93833249574787], "geometry": {"coordinates": [-85.62973945976862, 41.93833249574787], "type": "Point"}, "id": "4044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974077352371, 41.938467540662955, -85.62974077352371, 41.938467540662955], "geometry": {"coordinates": [-85.62974077352371, 41.938467540662955], "type": "Point"}, "id": "4045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974208727881, 41.93860258529204, -85.62974208727881, 41.93860258529204], "geometry": {"coordinates": [-85.62974208727881, 41.93860258529204], "type": "Point"}, "id": "4046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974340103389, 41.93873762963516, -85.62974340103389, 41.93873762963516], "geometry": {"coordinates": [-85.62974340103389, 41.93873762963516], "type": "Point"}, "id": "4047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974471478897, 41.938872673692295, -85.62974471478897, 41.938872673692295], "geometry": {"coordinates": [-85.62974471478897, 41.938872673692295], "type": "Point"}, "id": "4048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974602854408, 41.939007717463454, -85.62974602854408, 41.939007717463454], "geometry": {"coordinates": [-85.62974602854408, 41.939007717463454], "type": "Point"}, "id": "4049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974734229915, 41.939142760948634, -85.62974734229915, 41.939142760948634], "geometry": {"coordinates": [-85.62974734229915, 41.939142760948634], "type": "Point"}, "id": "4050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974865605423, 41.939277804147835, -85.62974865605423, 41.939277804147835], "geometry": {"coordinates": [-85.62974865605423, 41.939277804147835], "type": "Point"}, "id": "4051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974996980934, 41.939412847061064, -85.62974996980934, 41.939412847061064], "geometry": {"coordinates": [-85.62974996980934, 41.939412847061064], "type": "Point"}, "id": "4052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62975096667869, 41.93954788815971, -85.62975096667869, 41.93954788815971], "geometry": {"coordinates": [-85.62975096667869, 41.93954788815971], "type": "Point"}, "id": "4053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974729852552, 41.93968290646931, -85.62974729852552, 41.93968290646931], "geometry": {"coordinates": [-85.62974729852552, 41.93968290646931], "type": "Point"}, "id": "4054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6297356559728, 41.939815805812984, -85.6297356559728, 41.939815805812984], "geometry": {"coordinates": [-85.6297356559728, 41.939815805812984], "type": "Point"}, "id": "4055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.624741, 41.93019, -85.624741, 41.93019], "geometry": {"coordinates": [-85.624741, 41.93019], "type": "Point"}, "id": "4056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.62493864, 41.930193160000314, -85.62493864, 41.930193160000314], "geometry": {"coordinates": [-85.62493864, 41.930193160000314], "type": "Point"}, "id": "4057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.62513627999999, 41.93019632000047, -85.62513627999999, 41.93019632000047], "geometry": {"coordinates": [-85.62513627999999, 41.93019632000047], "type": "Point"}, "id": "4058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.62533392, 41.930199480000475, -85.62533392, 41.930199480000475], "geometry": {"coordinates": [-85.62533392, 41.930199480000475], "type": "Point"}, "id": "4059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.62553156, 41.93020264000032, -85.62553156, 41.93020264000032], "geometry": {"coordinates": [-85.62553156, 41.93020264000032], "type": "Point"}, "id": "4060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.6269868, 41.941035, -85.6269868, 41.941035], "geometry": {"coordinates": [-85.6269868, 41.941035], "type": "Point"}, "id": "4061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62683422801804, 41.94112141036266, -85.62683422801804, 41.94112141036266], "geometry": {"coordinates": [-85.62683422801804, 41.94112141036266], "type": "Point"}, "id": "4062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62667078281872, 41.94119644850012, -85.62667078281872, 41.94119644850012], "geometry": {"coordinates": [-85.62667078281872, 41.94119644850012], "type": "Point"}, "id": "4063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62650733761939, 41.94127148654927, -85.62650733761939, 41.94127148654927], "geometry": {"coordinates": [-85.62650733761939, 41.94127148654927], "type": "Point"}, "id": "4064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62634389575625, 41.94134652853025, -85.62634389575625, 41.94134652853025], "geometry": {"coordinates": [-85.62634389575625, 41.94134652853025], "type": "Point"}, "id": "4065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62618046056078, 41.941421578457465, -85.62618046056078, 41.941421578457465], "geometry": {"coordinates": [-85.62618046056078, 41.941421578457465], "type": "Point"}, "id": "4066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62601702536527, 41.941496628296356, -85.62601702536527, 41.941496628296356], "geometry": {"coordinates": [-85.62601702536527, 41.941496628296356], "type": "Point"}, "id": "4067", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62585359016978, 41.941571678046905, -85.62585359016978, 41.941571678046905], "geometry": {"coordinates": [-85.62585359016978, 41.941571678046905], "type": "Point"}, "id": "4068", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62569015497428, 41.94164672770913, -85.62569015497428, 41.94164672770913], "geometry": {"coordinates": [-85.62569015497428, 41.94164672770913], "type": "Point"}, "id": "4069", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62552672384982, 41.94172178218784, -85.62552672384982, 41.94172178218784], "geometry": {"coordinates": [-85.62552672384982, 41.94172178218784], "type": "Point"}, "id": "4070", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62536329288736, 41.941796836773406, -85.62536329288736, 41.941796836773406], "geometry": {"coordinates": [-85.62536329288736, 41.941796836773406], "type": "Point"}, "id": "4071", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.6251998619249, 41.941871891270615, -85.6251998619249, 41.941871891270615], "geometry": {"coordinates": [-85.6251998619249, 41.941871891270615], "type": "Point"}, "id": "4072", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62503643096245, 41.941946945679476, -85.62503643096245, 41.941946945679476], "geometry": {"coordinates": [-85.62503643096245, 41.941946945679476], "type": "Point"}, "id": "4073", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.64000299999998, 41.93698800000001, -85.64000299999998, 41.93698800000001], "geometry": {"coordinates": [-85.64000299999998, 41.93698800000001], "type": "Point"}, "id": "4074", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63982205885128, 41.9369900379536, -85.63982205885128, 41.9369900379536], "geometry": {"coordinates": [-85.63982205885128, 41.9369900379536], "type": "Point"}, "id": "4075", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63964111770258, 41.93699207590713, -85.63964111770258, 41.93699207590713], "geometry": {"coordinates": [-85.63964111770258, 41.93699207590713], "type": "Point"}, "id": "4076", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6394601765539, 41.93699411386059, -85.6394601765539, 41.93699411386059], "geometry": {"coordinates": [-85.6394601765539, 41.93699411386059], "type": "Point"}, "id": "4077", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6392792354052, 41.93699615181399, -85.6392792354052, 41.93699615181399], "geometry": {"coordinates": [-85.6392792354052, 41.93699615181399], "type": "Point"}, "id": "4078", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6390982942565, 41.93699818976732, -85.6390982942565, 41.93699818976732], "geometry": {"coordinates": [-85.6390982942565, 41.93699818976732], "type": "Point"}, "id": "4079", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6389173531078, 41.93700022772059, -85.6389173531078, 41.93700022772059], "geometry": {"coordinates": [-85.6389173531078, 41.93700022772059], "type": "Point"}, "id": "4080", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63873641932278, 41.93700251262352, -85.63873641932278, 41.93700251262352], "geometry": {"coordinates": [-85.63873641932278, 41.93700251262352], "type": "Point"}, "id": "4081", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63855553465991, 41.937006444899446, -85.63855553465991, 41.937006444899446], "geometry": {"coordinates": [-85.63855553465991, 41.937006444899446], "type": "Point"}, "id": "4082", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63837464999708, 41.93701037717513, -85.63837464999708, 41.93701037717513], "geometry": {"coordinates": [-85.63837464999708, 41.93701037717513], "type": "Point"}, "id": "4083", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63819376533422, 41.937014309450575, -85.63819376533422, 41.937014309450575], "geometry": {"coordinates": [-85.63819376533422, 41.937014309450575], "type": "Point"}, "id": "4084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63801288067137, 41.93701824172578, -85.63801288067137, 41.93701824172578], "geometry": {"coordinates": [-85.63801288067137, 41.93701824172578], "type": "Point"}, "id": "4085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63783199600852, 41.93702217400074, -85.63783199600852, 41.93702217400074], "geometry": {"coordinates": [-85.63783199600852, 41.93702217400074], "type": "Point"}, "id": "4086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63765111134566, 41.937026106275454, -85.63765111134566, 41.937026106275454], "geometry": {"coordinates": [-85.63765111134566, 41.937026106275454], "type": "Point"}, "id": "4087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.637470193515, 41.93702884434286, -85.637470193515, 41.93702884434286], "geometry": {"coordinates": [-85.637470193515, 41.93702884434286], "type": "Point"}, "id": "4088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63728924487292, 41.9370304730436, -85.63728924487292, 41.9370304730436], "geometry": {"coordinates": [-85.63728924487292, 41.9370304730436], "type": "Point"}, "id": "4089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63710829623083, 41.93703210174429, -85.63710829623083, 41.93703210174429], "geometry": {"coordinates": [-85.63710829623083, 41.93703210174429], "type": "Point"}, "id": "4090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63692734758875, 41.937033730444945, -85.63692734758875, 41.937033730444945], "geometry": {"coordinates": [-85.63692734758875, 41.937033730444945], "type": "Point"}, "id": "4091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63674639894668, 41.937035359145554, -85.63674639894668, 41.937035359145554], "geometry": {"coordinates": [-85.63674639894668, 41.937035359145554], "type": "Point"}, "id": "4092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6365654503046, 41.93703698784612, -85.6365654503046, 41.93703698784612], "geometry": {"coordinates": [-85.6365654503046, 41.93703698784612], "type": "Point"}, "id": "4093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63638451391562, 41.93703685591474, -85.63638451391562, 41.93703685591474], "geometry": {"coordinates": [-85.63638451391562, 41.93703685591474], "type": "Point"}, "id": "4094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63620359764195, 41.937033833641635, -85.63620359764195, 41.937033833641635], "geometry": {"coordinates": [-85.63620359764195, 41.937033833641635], "type": "Point"}, "id": "4095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63602268136829, 41.93703081136839, -85.63602268136829, 41.93703081136839], "geometry": {"coordinates": [-85.63602268136829, 41.93703081136839], "type": "Point"}, "id": "4096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63584176509463, 41.937027789095, -85.63584176509463, 41.937027789095], "geometry": {"coordinates": [-85.63584176509463, 41.937027789095], "type": "Point"}, "id": "4097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63566084882096, 41.93702476682146, -85.63566084882096, 41.93702476682146], "geometry": {"coordinates": [-85.63566084882096, 41.93702476682146], "type": "Point"}, "id": "4098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63547993254731, 41.93702174454779, -85.63547993254731, 41.93702174454779], "geometry": {"coordinates": [-85.63547993254731, 41.93702174454779], "type": "Point"}, "id": "4099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63529901627365, 41.93701872227397, -85.63529901627365, 41.93701872227397], "geometry": {"coordinates": [-85.63529901627365, 41.93701872227397], "type": "Point"}, "id": "4100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.62474999999999, 41.93119, -85.62474999999999, 41.93119], "geometry": {"coordinates": [-85.62474999999999, 41.93119], "type": "Point"}, "id": "4101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62493412658193, 41.931188773766834, -85.62493412658193, 41.931188773766834], "geometry": {"coordinates": [-85.62493412658193, 41.931188773766834], "type": "Point"}, "id": "4102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62511825316389, 41.93118754753363, -85.62511825316389, 41.93118754753363], "geometry": {"coordinates": [-85.62511825316389, 41.93118754753363], "type": "Point"}, "id": "4103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62530237974583, 41.931186321300416, -85.62530237974583, 41.931186321300416], "geometry": {"coordinates": [-85.62530237974583, 41.931186321300416], "type": "Point"}, "id": "4104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62548650632777, 41.93118509506718, -85.62548650632777, 41.93118509506718], "geometry": {"coordinates": [-85.62548650632777, 41.93118509506718], "type": "Point"}, "id": "4105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.6256706329097, 41.931183868833905, -85.6256706329097, 41.931183868833905], "geometry": {"coordinates": [-85.6256706329097, 41.931183868833905], "type": "Point"}, "id": "4106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62585475943035, 41.93118263752057, -85.62585475943035, 41.93118263752057], "geometry": {"coordinates": [-85.62585475943035, 41.93118263752057], "type": "Point"}, "id": "4107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.6260388859338, 41.93118140478076, -85.6260388859338, 41.93118140478076], "geometry": {"coordinates": [-85.6260388859338, 41.93118140478076], "type": "Point"}, "id": "4108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62622301243724, 41.93118017204091, -85.62622301243724, 41.93118017204091], "geometry": {"coordinates": [-85.62622301243724, 41.93118017204091], "type": "Point"}, "id": "4109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62640713892259, 41.931178937810266, -85.62640713892259, 41.931178937810266], "geometry": {"coordinates": [-85.62640713892259, 41.931178937810266], "type": "Point"}, "id": "4110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62659126534052, 41.93117769802101, -85.62659126534052, 41.93117769802101], "geometry": {"coordinates": [-85.62659126534052, 41.93117769802101], "type": "Point"}, "id": "4111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62677539175844, 41.93117645823173, -85.62677539175844, 41.93117645823173], "geometry": {"coordinates": [-85.62677539175844, 41.93117645823173], "type": "Point"}, "id": "4112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62695951762649, 41.93117517518753, -85.62695951762649, 41.93117517518753], "geometry": {"coordinates": [-85.62695951762649, 41.93117517518753], "type": "Point"}, "id": "4113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62714364356292, 41.93117389802102, -85.62714364356292, 41.93117389802102], "geometry": {"coordinates": [-85.62714364356292, 41.93117389802102], "type": "Point"}, "id": "4114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62732777019181, 41.9311726756958, -85.62732777019181, 41.9311726756958], "geometry": {"coordinates": [-85.62732777019181, 41.9311726756958], "type": "Point"}, "id": "4115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.6275118968207, 41.93117145337056, -85.6275118968207, 41.93117145337056], "geometry": {"coordinates": [-85.6275118968207, 41.93117145337056], "type": "Point"}, "id": "4116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62769602344959, 41.93117023104529, -85.62769602344959, 41.93117023104529], "geometry": {"coordinates": [-85.62769602344959, 41.93117023104529], "type": "Point"}, "id": "4117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62788014988641, 41.931168992812125, -85.62788014988641, 41.931168992812125], "geometry": {"coordinates": [-85.62788014988641, 41.931168992812125], "type": "Point"}, "id": "4118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62806427631821, 41.931167754164356, -85.62806427631821, 41.931167754164356], "geometry": {"coordinates": [-85.62806427631821, 41.931167754164356], "type": "Point"}, "id": "4119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62824840275002, 41.93116651551657, -85.62824840275002, 41.93116651551657], "geometry": {"coordinates": [-85.62824840275002, 41.93116651551657], "type": "Point"}, "id": "4120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62843252917179, 41.931165276043565, -85.62843252917179, 41.931165276043565], "geometry": {"coordinates": [-85.62843252917179, 41.931165276043565], "type": "Point"}, "id": "4121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62861665558364, 41.93116403575545, -85.62861665558364, 41.93116403575545], "geometry": {"coordinates": [-85.62861665558364, 41.93116403575545], "type": "Point"}, "id": "4122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62880078199551, 41.9311627954673, -85.62880078199551, 41.9311627954673], "geometry": {"coordinates": [-85.62880078199551, 41.9311627954673], "type": "Point"}, "id": "4123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62898490840735, 41.93116155517912, -85.62898490840735, 41.93116155517912], "geometry": {"coordinates": [-85.62898490840735, 41.93116155517912], "type": "Point"}, "id": "4124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62916903499416, 41.93116032935464, -85.62916903499416, 41.93116032935464], "geometry": {"coordinates": [-85.62916903499416, 41.93116032935464], "type": "Point"}, "id": "4125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62935316158914, 41.93115910420357, -85.62935316158914, 41.93115910420357], "geometry": {"coordinates": [-85.62935316158914, 41.93115910420357], "type": "Point"}, "id": "4126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62953728818408, 41.93115787905248, -85.62953728818408, 41.93115787905248], "geometry": {"coordinates": [-85.62953728818408, 41.93115787905248], "type": "Point"}, "id": "4127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62972141478029, 41.9311566540037, -85.62972141478029, 41.9311566540037], "geometry": {"coordinates": [-85.62972141478029, 41.9311566540037], "type": "Point"}, "id": "4128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.6299055413796, 41.931155429214805, -85.6299055413796, 41.931155429214805], "geometry": {"coordinates": [-85.6299055413796, 41.931155429214805], "type": "Point"}, "id": "4129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63008966797892, 41.9311542044259, -85.63008966797892, 41.9311542044259], "geometry": {"coordinates": [-85.63008966797892, 41.9311542044259], "type": "Point"}, "id": "4130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63027379457823, 41.93115297963696, -85.63027379457823, 41.93115297963696], "geometry": {"coordinates": [-85.63027379457823, 41.93115297963696], "type": "Point"}, "id": "4131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63045792096152, 41.93115173702524, -85.63045792096152, 41.93115173702524], "geometry": {"coordinates": [-85.63045792096152, 41.93115173702524], "type": "Point"}, "id": "4132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63064204730769, 41.93115049135019, -85.63064204730769, 41.93115049135019], "geometry": {"coordinates": [-85.63064204730769, 41.93115049135019], "type": "Point"}, "id": "4133", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63082617365382, 41.93114924567511, -85.63082617365382, 41.93114924567511], "geometry": {"coordinates": [-85.63082617365382, 41.93114924567511], "type": "Point"}, "id": "4134", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.648941, 41.939829, -85.648941, 41.939829], "geometry": {"coordinates": [-85.648941, 41.939829], "type": "Point"}, "id": "4135", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.648944685083, 41.939963505618735, -85.648944685083, 41.939963505618735], "geometry": {"coordinates": [-85.648944685083, 41.939963505618735], "type": "Point"}, "id": "4136", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64894827412004, 41.94009801235867, -85.64894827412004, 41.94009801235867], "geometry": {"coordinates": [-85.64894827412004, 41.94009801235867], "type": "Point"}, "id": "4137", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.6489517008859, 41.94023252118851, -85.6489517008859, 41.94023252118851], "geometry": {"coordinates": [-85.6489517008859, 41.94023252118851], "type": "Point"}, "id": "4138", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64895512765177, 41.940367029734624, -85.64895512765177, 41.940367029734624], "geometry": {"coordinates": [-85.64895512765177, 41.940367029734624], "type": "Point"}, "id": "4139", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64895855441763, 41.940501537997, -85.64895855441763, 41.940501537997], "geometry": {"coordinates": [-85.64895855441763, 41.940501537997], "type": "Point"}, "id": "4140", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.6489619811835, 41.94063604597566, -85.6489619811835, 41.94063604597566], "geometry": {"coordinates": [-85.6489619811835, 41.94063604597566], "type": "Point"}, "id": "4141", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64896540794935, 41.940770553670575, -85.64896540794935, 41.940770553670575], "geometry": {"coordinates": [-85.64896540794935, 41.940770553670575], "type": "Point"}, "id": "4142", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64896883471522, 41.94090506108177, -85.64896883471522, 41.94090506108177], "geometry": {"coordinates": [-85.64896883471522, 41.94090506108177], "type": "Point"}, "id": "4143", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64897255202575, 41.941039562525795, -85.64897255202575, 41.941039562525795], "geometry": {"coordinates": [-85.64897255202575, 41.941039562525795], "type": "Point"}, "id": "4144", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64897897085469, 41.9411740087677, -85.64897897085469, 41.9411740087677], "geometry": {"coordinates": [-85.64897897085469, 41.9411740087677], "type": "Point"}, "id": "4145", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.6489853896836, 41.941308454726155, -85.6489853896836, 41.941308454726155], "geometry": {"coordinates": [-85.6489853896836, 41.941308454726155], "type": "Point"}, "id": "4146", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64899183596951, 41.941442899673895, -85.64899183596951, 41.941442899673895], "geometry": {"coordinates": [-85.64899183596951, 41.941442899673895], "type": "Point"}, "id": "4147", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64899828929805, 41.94157734415162, -85.64899828929805, 41.94157734415162], "geometry": {"coordinates": [-85.64899828929805, 41.94157734415162], "type": "Point"}, "id": "4148", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64900474262659, 41.941711788345884, -85.64900474262659, 41.941711788345884], "geometry": {"coordinates": [-85.64900474262659, 41.941711788345884], "type": "Point"}, "id": "4149", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64901118683616, 41.9418462324982, -85.64901118683616, 41.9418462324982], "geometry": {"coordinates": [-85.64901118683616, 41.9418462324982], "type": "Point"}, "id": "4150", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64901760546594, 41.94198067704453, -85.64901760546594, 41.94198067704453], "geometry": {"coordinates": [-85.64901760546594, 41.94198067704453], "type": "Point"}, "id": "4151", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64902402409571, 41.942115121307395, -85.64902402409571, 41.942115121307395], "geometry": {"coordinates": [-85.64902402409571, 41.942115121307395], "type": "Point"}, "id": "4152", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64903044272549, 41.94224956528678, -85.64903044272549, 41.94224956528678], "geometry": {"coordinates": [-85.64903044272549, 41.94224956528678], "type": "Point"}, "id": "4153", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64903459634566, 41.942384055673195, -85.64903459634566, 41.942384055673195], "geometry": {"coordinates": [-85.64903459634566, 41.942384055673195], "type": "Point"}, "id": "4154", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.65026399999999, 41.954238, -85.65026399999999, 41.954238], "geometry": {"coordinates": [-85.65026399999999, 41.954238], "type": "Point"}, "id": "4155", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65026039839955, 41.95410127352844, -85.65026039839955, 41.95410127352844], "geometry": {"coordinates": [-85.65026039839955, 41.95410127352844], "type": "Point"}, "id": "4156", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.6502567967991, 41.95396454676357, -85.6502567967991, 41.95396454676357], "geometry": {"coordinates": [-85.6502567967991, 41.95396454676357], "type": "Point"}, "id": "4157", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65025319519867, 41.9538278197054, -85.65025319519867, 41.9538278197054], "geometry": {"coordinates": [-85.65025319519867, 41.9538278197054], "type": "Point"}, "id": "4158", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024959359823, 41.953691092353935, -85.65024959359823, 41.953691092353935], "geometry": {"coordinates": [-85.65024959359823, 41.953691092353935], "type": "Point"}, "id": "4159", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024599199778, 41.953554364709156, -85.65024599199778, 41.953554364709156], "geometry": {"coordinates": [-85.65024599199778, 41.953554364709156], "type": "Point"}, "id": "4160", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024239039732, 41.95341763677107, -85.65024239039732, 41.95341763677107], "geometry": {"coordinates": [-85.65024239039732, 41.95341763677107], "type": "Point"}, "id": "4161", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65023878879687, 41.953280908539675, -85.65023878879687, 41.953280908539675], "geometry": {"coordinates": [-85.65023878879687, 41.953280908539675], "type": "Point"}, "id": "4162", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024272977418, 41.953144298834104, -85.65024272977418, 41.953144298834104], "geometry": {"coordinates": [-85.65024272977418, 41.953144298834104], "type": "Point"}, "id": "4163", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65025411344402, 41.95300780608161, -85.65025411344402, 41.95300780608161], "geometry": {"coordinates": [-85.65025411344402, 41.95300780608161], "type": "Point"}, "id": "4164", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65026549711388, 41.95287131303681, -85.65026549711388, 41.95287131303681], "geometry": {"coordinates": [-85.65026549711388, 41.95287131303681], "type": "Point"}, "id": "4165", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65027688078372, 41.95273481969973, -85.65027688078372, 41.95273481969973], "geometry": {"coordinates": [-85.65027688078372, 41.95273481969973], "type": "Point"}, "id": "4166", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65028826445356, 41.95259832607036, -85.65028826445356, 41.95259832607036], "geometry": {"coordinates": [-85.65028826445356, 41.95259832607036], "type": "Point"}, "id": "4167", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65029964812341, 41.95246183214869, -85.65029964812341, 41.95246183214869], "geometry": {"coordinates": [-85.65029964812341, 41.95246183214869], "type": "Point"}, "id": "4168", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65031103179325, 41.952325337934724, -85.65031103179325, 41.952325337934724], "geometry": {"coordinates": [-85.65031103179325, 41.952325337934724], "type": "Point"}, "id": "4169", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65031667398912, 41.952188830719635, -85.65031667398912, 41.952188830719635], "geometry": {"coordinates": [-85.65031667398912, 41.952188830719635], "type": "Point"}, "id": "4170", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65030638303, 41.95205228794387, -85.65030638303, 41.95205228794387], "geometry": {"coordinates": [-85.65030638303, 41.95205228794387], "type": "Point"}, "id": "4171", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65029609207087, 41.951915744875606, -85.65029609207087, 41.951915744875606], "geometry": {"coordinates": [-85.65029609207087, 41.951915744875606], "type": "Point"}, "id": "4172", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65028580111175, 41.95177920151484, -85.65028580111175, 41.95177920151484], "geometry": {"coordinates": [-85.65028580111175, 41.95177920151484], "type": "Point"}, "id": "4173", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65027551015265, 41.95164265786158, -85.65027551015265, 41.95164265786158], "geometry": {"coordinates": [-85.65027551015265, 41.95164265786158], "type": "Point"}, "id": "4174", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65026521919351, 41.951506113915826, -85.65026521919351, 41.951506113915826], "geometry": {"coordinates": [-85.65026521919351, 41.951506113915826], "type": "Point"}, "id": "4175", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.6502549282344, 41.951369569677574, -85.6502549282344, 41.951369569677574], "geometry": {"coordinates": [-85.6502549282344, 41.951369569677574], "type": "Point"}, "id": "4176", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024463727528, 41.95123302514682, -85.65024463727528, 41.95123302514682], "geometry": {"coordinates": [-85.65024463727528, 41.95123302514682], "type": "Point"}, "id": "4177", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.6502353151351, 41.95109648305937, -85.6502353151351, 41.95109648305937], "geometry": {"coordinates": [-85.6502353151351, 41.95109648305937], "type": "Point"}, "id": "4178", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.6451706, 41.94125089999999, -85.6451706, 41.94125089999999], "geometry": {"coordinates": [-85.6451706, 41.94125089999999], "type": "Point"}, "id": "4179", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962736}, "type": "Feature"}, {"bbox": [-85.64494872156881, 41.94125645196279, -85.64494872156881, 41.94125645196279], "geometry": {"coordinates": [-85.64494872156881, 41.94125645196279], "type": "Point"}, "id": "4180", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962736}, "type": "Feature"}, {"bbox": [-85.64472684310716, 41.94126200318026, -85.64472684310716, 41.94126200318026], "geometry": {"coordinates": [-85.64472684310716, 41.94126200318026], "type": "Point"}, "id": "4181", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962736}, "type": "Feature"}, {"bbox": [-85.64450492155359, 41.941266501590285, -85.64450492155359, 41.941266501590285], "geometry": {"coordinates": [-85.64450492155359, 41.941266501590285], "type": "Point"}, "id": "4182", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962736}, "type": "Feature"}, {"bbox": [-85.63695419999999, 41.9401113, -85.63695419999999, 41.9401113], "geometry": {"coordinates": [-85.63695419999999, 41.9401113], "type": "Point"}, "id": "4183", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63695965349656, 41.94025766798474, -85.63695965349656, 41.94025766798474], "geometry": {"coordinates": [-85.63695965349656, 41.94025766798474], "type": "Point"}, "id": "4184", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63696510699313, 41.94040403563351, -85.63696510699313, 41.94040403563351], "geometry": {"coordinates": [-85.63696510699313, 41.94040403563351], "type": "Point"}, "id": "4185", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63697056048973, 41.94055040294633, -85.63697056048973, 41.94055040294633], "geometry": {"coordinates": [-85.63697056048973, 41.94055040294633], "type": "Point"}, "id": "4186", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.6369760139863, 41.94069676992317, -85.6369760139863, 41.94069676992317], "geometry": {"coordinates": [-85.6369760139863, 41.94069676992317], "type": "Point"}, "id": "4187", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63698146748287, 41.940843136564055, -85.63698146748287, 41.940843136564055], "geometry": {"coordinates": [-85.63698146748287, 41.940843136564055], "type": "Point"}, "id": "4188", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63699812270467, 41.94098895674332, -85.63699812270467, 41.94098895674332], "geometry": {"coordinates": [-85.63699812270467, 41.94098895674332], "type": "Point"}, "id": "4189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.6317718, 41.94436660000001, -85.6317718, 41.94436660000001], "geometry": {"coordinates": [-85.6317718, 41.94436660000001], "type": "Point"}, "id": "4190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63180980180012, 41.944498048996884, -85.63180980180012, 41.944498048996884], "geometry": {"coordinates": [-85.63180980180012, 41.944498048996884], "type": "Point"}, "id": "4191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63184780360027, 41.94462949772274, -85.63184780360027, 41.94462949772274], "geometry": {"coordinates": [-85.63184780360027, 41.94462949772274], "type": "Point"}, "id": "4192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.6319159922943, 41.94475353019685, -85.6319159922943, 41.94475353019685], "geometry": {"coordinates": [-85.6319159922943, 41.94475353019685], "type": "Point"}, "id": "4193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63201441123584, 41.944866308267684, -85.63201441123584, 41.944866308267684], "geometry": {"coordinates": [-85.63201441123584, 41.944866308267684], "type": "Point"}, "id": "4194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63211825969682, 41.94497628331729, -85.63211825969682, 41.94497628331729], "geometry": {"coordinates": [-85.63211825969682, 41.94497628331729], "type": "Point"}, "id": "4195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63222582475535, 41.945084341487984, -85.63222582475535, 41.945084341487984], "geometry": {"coordinates": [-85.63222582475535, 41.945084341487984], "type": "Point"}, "id": "4196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.6323333898139, 41.94519239947554, -85.6323333898139, 41.94519239947554], "geometry": {"coordinates": [-85.6323333898139, 41.94519239947554], "type": "Point"}, "id": "4197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63244095487244, 41.94530045727994, -85.63244095487244, 41.94530045727994], "geometry": {"coordinates": [-85.63244095487244, 41.94530045727994], "type": "Point"}, "id": "4198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63256086389399, 41.94540057938209, -85.63256086389399, 41.94540057938209], "geometry": {"coordinates": [-85.63256086389399, 41.94540057938209], "type": "Point"}, "id": "4199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63269691125684, 41.94548755552809, -85.63269691125684, 41.94548755552809], "geometry": {"coordinates": [-85.63269691125684, 41.94548755552809], "type": "Point"}, "id": "4200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63285604572582, 41.945551230994404, -85.63285604572582, 41.945551230994404], "geometry": {"coordinates": [-85.63285604572582, 41.945551230994404], "type": "Point"}, "id": "4201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63302259034906, 41.94560350634006, -85.63302259034906, 41.94560350634006], "geometry": {"coordinates": [-85.63302259034906, 41.94560350634006], "type": "Point"}, "id": "4202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63318912432689, 41.945655800417605, -85.63318912432689, 41.945655800417605], "geometry": {"coordinates": [-85.63318912432689, 41.945655800417605], "type": "Point"}, "id": "4203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63334992752816, 41.945716195032446, -85.63334992752816, 41.945716195032446], "geometry": {"coordinates": [-85.63334992752816, 41.945716195032446], "type": "Point"}, "id": "4204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63349053661116, 41.94579969564152, -85.63349053661116, 41.94579969564152], "geometry": {"coordinates": [-85.63349053661116, 41.94579969564152], "type": "Point"}, "id": "4205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63358649352263, 41.94590835350176, -85.63358649352263, 41.94590835350176], "geometry": {"coordinates": [-85.63358649352263, 41.94590835350176], "type": "Point"}, "id": "4206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63365494071104, 41.94603181596439, -85.63365494071104, 41.94603181596439], "geometry": {"coordinates": [-85.63365494071104, 41.94603181596439], "type": "Point"}, "id": "4207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63378689862529, 41.94611814743792, -85.63378689862529, 41.94611814743792], "geometry": {"coordinates": [-85.63378689862529, 41.94611814743792], "type": "Point"}, "id": "4208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.6313855, 41.9499125, -85.6313855, 41.9499125], "geometry": {"coordinates": [-85.6313855, 41.9499125], "type": "Point"}, "id": "4209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63157277299557, 41.94991203823888, -85.63157277299557, 41.94991203823888], "geometry": {"coordinates": [-85.63157277299557, 41.94991203823888], "type": "Point"}, "id": "4210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63176004599116, 41.94991157647776, -85.63176004599116, 41.94991157647776], "geometry": {"coordinates": [-85.63176004599116, 41.94991157647776], "type": "Point"}, "id": "4211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63194731898673, 41.94991111471663, -85.63194731898673, 41.94991111471663], "geometry": {"coordinates": [-85.63194731898673, 41.94991111471663], "type": "Point"}, "id": "4212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63213457315638, 41.94990943457072, -85.63213457315638, 41.94990943457072], "geometry": {"coordinates": [-85.63213457315638, 41.94990943457072], "type": "Point"}, "id": "4213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63232181096365, 41.94990669547589, -85.63232181096365, 41.94990669547589], "geometry": {"coordinates": [-85.63232181096365, 41.94990669547589], "type": "Point"}, "id": "4214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63250904877091, 41.94990395638094, -85.63250904877091, 41.94990395638094], "geometry": {"coordinates": [-85.63250904877091, 41.94990395638094], "type": "Point"}, "id": "4215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63269628657818, 41.949901217285884, -85.63269628657818, 41.949901217285884], "geometry": {"coordinates": [-85.63269628657818, 41.949901217285884], "type": "Point"}, "id": "4216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63288352438545, 41.94989847819071, -85.63288352438545, 41.94989847819071], "geometry": {"coordinates": [-85.63288352438545, 41.94989847819071], "type": "Point"}, "id": "4217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63307076219272, 41.94989573909541, -85.63307076219272, 41.94989573909541], "geometry": {"coordinates": [-85.63307076219272, 41.94989573909541], "type": "Point"}, "id": "4218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.653554, 41.948114000000004, -85.653554, 41.948114000000004], "geometry": {"coordinates": [-85.653554, 41.948114000000004], "type": "Point"}, "id": "4219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65355157142857, 41.94824985801145, -85.65355157142857, 41.94824985801145], "geometry": {"coordinates": [-85.65355157142857, 41.94824985801145], "type": "Point"}, "id": "4220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65354914285714, 41.948385715733366, -85.65354914285714, 41.948385715733366], "geometry": {"coordinates": [-85.65354914285714, 41.948385715733366], "type": "Point"}, "id": "4221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65354671428572, 41.948521573165756, -85.65354671428572, 41.948521573165756], "geometry": {"coordinates": [-85.65354671428572, 41.948521573165756], "type": "Point"}, "id": "4222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65354428571428, 41.948657430308614, -85.65354428571428, 41.948657430308614], "geometry": {"coordinates": [-85.65354428571428, 41.948657430308614], "type": "Point"}, "id": "4223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65354185714286, 41.94879328716194, -85.65354185714286, 41.94879328716194], "geometry": {"coordinates": [-85.65354185714286, 41.94879328716194], "type": "Point"}, "id": "4224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65353942857142, 41.948929143725735, -85.65353942857142, 41.948929143725735], "geometry": {"coordinates": [-85.65353942857142, 41.948929143725735], "type": "Point"}, "id": "4225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65159049999998, 41.94584770000001, -85.65159049999998, 41.94584770000001], "geometry": {"coordinates": [-85.65159049999998, 41.94584770000001], "type": "Point"}, "id": "4226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158309237542, 41.94598193518371, -85.65158309237542, 41.94598193518371], "geometry": {"coordinates": [-85.65158309237542, 41.94598193518371], "type": "Point"}, "id": "4227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157389153045, 41.946116105332244, -85.65157389153045, 41.946116105332244], "geometry": {"coordinates": [-85.65157389153045, 41.946116105332244], "type": "Point"}, "id": "4228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157521296496, 41.94625043853154, -85.65157521296496, 41.94625043853154], "geometry": {"coordinates": [-85.65157521296496, 41.94625043853154], "type": "Point"}, "id": "4229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157832256855, 41.94638473222234, -85.65157832256855, 41.94638473222234], "geometry": {"coordinates": [-85.65157832256855, 41.94638473222234], "type": "Point"}, "id": "4230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157880551729, 41.946519078816124, -85.65157880551729, 41.946519078816124], "geometry": {"coordinates": [-85.65157880551729, 41.946519078816124], "type": "Point"}, "id": "4231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157928846602, 41.946653425126804, -85.65157928846602, 41.946653425126804], "geometry": {"coordinates": [-85.65157928846602, 41.946653425126804], "type": "Point"}, "id": "4232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157977141476, 41.94678777115436, -85.65157977141476, 41.94678777115436], "geometry": {"coordinates": [-85.65157977141476, 41.94678777115436], "type": "Point"}, "id": "4233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515802543635, 41.946922116898826, -85.6515802543635, 41.946922116898826], "geometry": {"coordinates": [-85.6515802543635, 41.946922116898826], "type": "Point"}, "id": "4234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158073731222, 41.947056462360166, -85.65158073731222, 41.947056462360166], "geometry": {"coordinates": [-85.65158073731222, 41.947056462360166], "type": "Point"}, "id": "4235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158122026097, 41.947190807538405, -85.65158122026097, 41.947190807538405], "geometry": {"coordinates": [-85.65158122026097, 41.947190807538405], "type": "Point"}, "id": "4236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515817032097, 41.947325152433535, -85.6515817032097, 41.947325152433535], "geometry": {"coordinates": [-85.6515817032097, 41.947325152433535], "type": "Point"}, "id": "4237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158218615841, 41.947459497045564, -85.65158218615841, 41.947459497045564], "geometry": {"coordinates": [-85.65158218615841, 41.947459497045564], "type": "Point"}, "id": "4238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158265567213, 41.94759384140013, -85.65158265567213, 41.94759384140013], "geometry": {"coordinates": [-85.65158265567213, 41.94759384140013], "type": "Point"}, "id": "4239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158310025222, 41.9477281855192, -85.65158310025222, 41.9477281855192], "geometry": {"coordinates": [-85.65158310025222, 41.9477281855192], "type": "Point"}, "id": "4240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158354483228, 41.94786252935516, -85.65158354483228, 41.94786252935516], "geometry": {"coordinates": [-85.65158354483228, 41.94786252935516], "type": "Point"}, "id": "4241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158401564918, 41.94799687285837, -85.65158401564918, 41.94799687285837], "geometry": {"coordinates": [-85.65158401564918, 41.94799687285837], "type": "Point"}, "id": "4242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158449018304, 41.94813121607143, -85.65158449018304, 41.94813121607143], "geometry": {"coordinates": [-85.65158449018304, 41.94813121607143], "type": "Point"}, "id": "4243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158496471692, 41.948265559001385, -85.65158496471692, 41.948265559001385], "geometry": {"coordinates": [-85.65158496471692, 41.948265559001385], "type": "Point"}, "id": "4244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158543925078, 41.94839990164823, -85.65158543925078, 41.94839990164823], "geometry": {"coordinates": [-85.65158543925078, 41.94839990164823], "type": "Point"}, "id": "4245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158592449437, 41.948534243990764, -85.65158592449437, 41.948534243990764], "geometry": {"coordinates": [-85.65158592449437, 41.948534243990764], "type": "Point"}, "id": "4246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158641131026, 41.948668586047084, -85.65158641131026, 41.948668586047084], "geometry": {"coordinates": [-85.65158641131026, 41.948668586047084], "type": "Point"}, "id": "4247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158689812618, 41.948802927820296, -85.65158689812618, 41.948802927820296], "geometry": {"coordinates": [-85.65158689812618, 41.948802927820296], "type": "Point"}, "id": "4248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158738494209, 41.94893726931039, -85.65158738494209, 41.94893726931039], "geometry": {"coordinates": [-85.65158738494209, 41.94893726931039], "type": "Point"}, "id": "4249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.651587871758, 41.94907161051737, -85.651587871758, 41.94907161051737], "geometry": {"coordinates": [-85.651587871758, 41.94907161051737], "type": "Point"}, "id": "4250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158794654218, 41.949205951792635, -85.65158794654218, 41.949205951792635], "geometry": {"coordinates": [-85.65158794654218, 41.949205951792635], "type": "Point"}, "id": "4251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158787396545, 41.94934029291044, -85.65158787396545, 41.94934029291044], "geometry": {"coordinates": [-85.65158787396545, 41.94934029291044], "type": "Point"}, "id": "4252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158780138873, 41.949474633745155, -85.65158780138873, 41.949474633745155], "geometry": {"coordinates": [-85.65158780138873, 41.949474633745155], "type": "Point"}, "id": "4253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.651587728812, 41.949608974296744, -85.651587728812, 41.949608974296744], "geometry": {"coordinates": [-85.651587728812, 41.949608974296744], "type": "Point"}, "id": "4254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158765623528, 41.94974331456523, -85.65158765623528, 41.94974331456523], "geometry": {"coordinates": [-85.65158765623528, 41.94974331456523], "type": "Point"}, "id": "4255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158758365855, 41.94987765455059, -85.65158758365855, 41.94987765455059], "geometry": {"coordinates": [-85.65158758365855, 41.94987765455059], "type": "Point"}, "id": "4256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158751108183, 41.95001199425284, -85.65158751108183, 41.95001199425284], "geometry": {"coordinates": [-85.65158751108183, 41.95001199425284], "type": "Point"}, "id": "4257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515874385051, 41.95014633367198, -85.6515874385051, 41.95014633367198], "geometry": {"coordinates": [-85.6515874385051, 41.95014633367198], "type": "Point"}, "id": "4258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158736592838, 41.95028067280801, -85.65158736592838, 41.95028067280801], "geometry": {"coordinates": [-85.65158736592838, 41.95028067280801], "type": "Point"}, "id": "4259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158729335165, 41.950415011660915, -85.65158729335165, 41.950415011660915], "geometry": {"coordinates": [-85.65158729335165, 41.950415011660915], "type": "Point"}, "id": "4260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158722077493, 41.950549350230716, -85.65158722077493, 41.950549350230716], "geometry": {"coordinates": [-85.65158722077493, 41.950549350230716], "type": "Point"}, "id": "4261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515871481982, 41.950683688517394, -85.6515871481982, 41.950683688517394], "geometry": {"coordinates": [-85.6515871481982, 41.950683688517394], "type": "Point"}, "id": "4262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158707562148, 41.95081802652097, -85.65158707562148, 41.95081802652097], "geometry": {"coordinates": [-85.65158707562148, 41.95081802652097], "type": "Point"}, "id": "4263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158700304475, 41.95095236424142, -85.65158700304475, 41.95095236424142], "geometry": {"coordinates": [-85.65158700304475, 41.95095236424142], "type": "Point"}, "id": "4264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158815207394, 41.95108669883704, -85.65158815207394, 41.95108669883704], "geometry": {"coordinates": [-85.65158815207394, 41.95108669883704], "type": "Point"}, "id": "4265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158935459637, 41.951221033025135, -85.65158935459637, 41.951221033025135], "geometry": {"coordinates": [-85.65158935459637, 41.951221033025135], "type": "Point"}, "id": "4266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515905571188, 41.95135536693011, -85.6515905571188, 41.95135536693011], "geometry": {"coordinates": [-85.6515905571188, 41.95135536693011], "type": "Point"}, "id": "4267", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515917596412, 41.95148970055199, -85.6515917596412, 41.95148970055199], "geometry": {"coordinates": [-85.6515917596412, 41.95148970055199], "type": "Point"}, "id": "4268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159296216365, 41.951624033890766, -85.65159296216365, 41.951624033890766], "geometry": {"coordinates": [-85.65159296216365, 41.951624033890766], "type": "Point"}, "id": "4269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159416468606, 41.951758366946436, -85.65159416468606, 41.951758366946436], "geometry": {"coordinates": [-85.65159416468606, 41.951758366946436], "type": "Point"}, "id": "4270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515953672085, 41.95189269971901, -85.6515953672085, 41.95189269971901], "geometry": {"coordinates": [-85.6515953672085, 41.95189269971901], "type": "Point"}, "id": "4271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159656973091, 41.95202703220848, -85.65159656973091, 41.95202703220848], "geometry": {"coordinates": [-85.65159656973091, 41.95202703220848], "type": "Point"}, "id": "4272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159777225334, 41.95216136441484, -85.65159777225334, 41.95216136441484], "geometry": {"coordinates": [-85.65159777225334, 41.95216136441484], "type": "Point"}, "id": "4273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159897477577, 41.952295696338105, -85.65159897477577, 41.952295696338105], "geometry": {"coordinates": [-85.65159897477577, 41.952295696338105], "type": "Point"}, "id": "4274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160017729819, 41.95243002797826, -85.65160017729819, 41.95243002797826], "geometry": {"coordinates": [-85.65160017729819, 41.95243002797826], "type": "Point"}, "id": "4275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6516013798206, 41.95256435933532, -85.6516013798206, 41.95256435933532], "geometry": {"coordinates": [-85.6516013798206, 41.95256435933532], "type": "Point"}, "id": "4276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160258234303, 41.952698690409264, -85.65160258234303, 41.952698690409264], "geometry": {"coordinates": [-85.65160258234303, 41.952698690409264], "type": "Point"}, "id": "4277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160378486546, 41.952833021200114, -85.65160378486546, 41.952833021200114], "geometry": {"coordinates": [-85.65160378486546, 41.952833021200114], "type": "Point"}, "id": "4278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160498738788, 41.95296735170785, -85.65160498738788, 41.95296735170785], "geometry": {"coordinates": [-85.65160498738788, 41.95296735170785], "type": "Point"}, "id": "4279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6516061899103, 41.95310168193249, -85.6516061899103, 41.95310168193249], "geometry": {"coordinates": [-85.6516061899103, 41.95310168193249], "type": "Point"}, "id": "4280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160739243274, 41.95323601187403, -85.65160739243274, 41.95323601187403], "geometry": {"coordinates": [-85.65160739243274, 41.95323601187403], "type": "Point"}, "id": "4281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160859495515, 41.953370341532455, -85.65160859495515, 41.953370341532455], "geometry": {"coordinates": [-85.65160859495515, 41.953370341532455], "type": "Point"}, "id": "4282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160979747758, 41.95350467090778, -85.65160979747758, 41.95350467090778], "geometry": {"coordinates": [-85.65160979747758, 41.95350467090778], "type": "Point"}, "id": "4283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65408849999999, 41.9397322, -85.65408849999999, 41.9397322], "geometry": {"coordinates": [-85.65408849999999, 41.9397322], "type": "Point"}, "id": "4284", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65408907681854, 41.93986641161459, -85.65408907681854, 41.93986641161459], "geometry": {"coordinates": [-85.65408907681854, 41.93986641161459], "type": "Point"}, "id": "4285", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65408965363709, 41.94000062294669, -85.65408965363709, 41.94000062294669], "geometry": {"coordinates": [-85.65408965363709, 41.94000062294669], "type": "Point"}, "id": "4286", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409023045564, 41.940134833996325, -85.65409023045564, 41.940134833996325], "geometry": {"coordinates": [-85.65409023045564, 41.940134833996325], "type": "Point"}, "id": "4287", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409080727422, 41.94026904476349, -85.65409080727422, 41.94026904476349], "geometry": {"coordinates": [-85.65409080727422, 41.94026904476349], "type": "Point"}, "id": "4288", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409138409275, 41.94040325524817, -85.65409138409275, 41.94040325524817], "geometry": {"coordinates": [-85.65409138409275, 41.94040325524817], "type": "Point"}, "id": "4289", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.6540919609113, 41.94053746545039, -85.6540919609113, 41.94053746545039], "geometry": {"coordinates": [-85.6540919609113, 41.94053746545039], "type": "Point"}, "id": "4290", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409253772987, 41.94067167537013, -85.65409253772987, 41.94067167537013], "geometry": {"coordinates": [-85.65409253772987, 41.94067167537013], "type": "Point"}, "id": "4291", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409311433167, 41.940805885007904, -85.65409311433167, 41.940805885007904], "geometry": {"coordinates": [-85.65409311433167, 41.940805885007904], "type": "Point"}, "id": "4292", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409368255668, 41.940940094382974, -85.65409368255668, 41.940940094382974], "geometry": {"coordinates": [-85.65409368255668, 41.940940094382974], "type": "Point"}, "id": "4293", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.6540942507817, 41.94107430347559, -85.6540942507817, 41.94107430347559], "geometry": {"coordinates": [-85.6540942507817, 41.94107430347559], "type": "Point"}, "id": "4294", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409481900669, 41.941208512285705, -85.65409481900669, 41.941208512285705], "geometry": {"coordinates": [-85.65409481900669, 41.941208512285705], "type": "Point"}, "id": "4295", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.6540953872317, 41.94134272081335, -85.6540953872317, 41.94134272081335], "geometry": {"coordinates": [-85.6540953872317, 41.94134272081335], "type": "Point"}, "id": "4296", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409595545671, 41.94147692905854, -85.65409595545671, 41.94147692905854], "geometry": {"coordinates": [-85.65409595545671, 41.94147692905854], "type": "Point"}, "id": "4297", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.6540965236817, 41.94161113702123, -85.6540965236817, 41.94161113702123], "geometry": {"coordinates": [-85.6540965236817, 41.94161113702123], "type": "Point"}, "id": "4298", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409709714676, 41.941745344689075, -85.65409709714676, 41.941745344689075], "geometry": {"coordinates": [-85.65409709714676, 41.941745344689075], "type": "Point"}, "id": "4299", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.654097675572, 41.941879552062716, -85.654097675572, 41.941879552062716], "geometry": {"coordinates": [-85.654097675572, 41.941879552062716], "type": "Point"}, "id": "4300", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409825399726, 41.94201375915387, -85.65409825399726, 41.94201375915387], "geometry": {"coordinates": [-85.65409825399726, 41.94201375915387], "type": "Point"}, "id": "4301", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409883242252, 41.94214796596257, -85.65409883242252, 41.94214796596257], "geometry": {"coordinates": [-85.65409883242252, 41.94214796596257], "type": "Point"}, "id": "4302", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409941084776, 41.94228217248879, -85.65409941084776, 41.94228217248879], "geometry": {"coordinates": [-85.65409941084776, 41.94228217248879], "type": "Point"}, "id": "4303", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65409998927302, 41.942416378732524, -85.65409998927302, 41.942416378732524], "geometry": {"coordinates": [-85.65409998927302, 41.942416378732524], "type": "Point"}, "id": "4304", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65410056769828, 41.942550584693784, -85.65410056769828, 41.942550584693784], "geometry": {"coordinates": [-85.65410056769828, 41.942550584693784], "type": "Point"}, "id": "4305", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65410114612354, 41.942684790372574, -85.65410114612354, 41.942684790372574], "geometry": {"coordinates": [-85.65410114612354, 41.942684790372574], "type": "Point"}, "id": "4306", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.65410173664155, 41.94281899573294, -85.65410173664155, 41.94281899573294], "geometry": {"coordinates": [-85.65410173664155, 41.94281899573294], "type": "Point"}, "id": "4307", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 628771096}, "type": "Feature"}, {"bbox": [-85.6362328, 41.9536856, -85.6362328, 41.9536856], "geometry": {"coordinates": [-85.6362328, 41.9536856], "type": "Point"}, "id": "4308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.636415068737, 41.95368252032853, -85.636415068737, 41.95368252032853], "geometry": {"coordinates": [-85.636415068737, 41.95368252032853], "type": "Point"}, "id": "4309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63659733747402, 41.9536794406569, -85.63659733747402, 41.9536794406569], "geometry": {"coordinates": [-85.63659733747402, 41.9536794406569], "type": "Point"}, "id": "4310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63677960621101, 41.95367636098512, -85.63677960621101, 41.95367636098512], "geometry": {"coordinates": [-85.63677960621101, 41.95367636098512], "type": "Point"}, "id": "4311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63696187494801, 41.95367328131319, -85.63696187494801, 41.95367328131319], "geometry": {"coordinates": [-85.63696187494801, 41.95367328131319], "type": "Point"}, "id": "4312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63714414368502, 41.953670201641124, -85.63714414368502, 41.953670201641124], "geometry": {"coordinates": [-85.63714414368502, 41.953670201641124], "type": "Point"}, "id": "4313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63732641242203, 41.9536671219689, -85.63732641242203, 41.9536671219689], "geometry": {"coordinates": [-85.63732641242203, 41.9536671219689], "type": "Point"}, "id": "4314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63750869578612, 41.953665, -85.63750869578612, 41.953665], "geometry": {"coordinates": [-85.63750869578612, 41.953665], "type": "Point"}, "id": "4315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63769101155931, 41.953665, -85.63769101155931, 41.953665], "geometry": {"coordinates": [-85.63769101155931, 41.953665], "type": "Point"}, "id": "4316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63787332733247, 41.953665, -85.63787332733247, 41.953665], "geometry": {"coordinates": [-85.63787332733247, 41.953665], "type": "Point"}, "id": "4317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63805564310564, 41.953665, -85.63805564310564, 41.953665], "geometry": {"coordinates": [-85.63805564310564, 41.953665], "type": "Point"}, "id": "4318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63823795887883, 41.953665, -85.63823795887883, 41.953665], "geometry": {"coordinates": [-85.63823795887883, 41.953665], "type": "Point"}, "id": "4319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.638420274652, 41.953665, -85.638420274652, 41.953665], "geometry": {"coordinates": [-85.638420274652, 41.953665], "type": "Point"}, "id": "4320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.6386025904252, 41.953665, -85.6386025904252, 41.953665], "geometry": {"coordinates": [-85.6386025904252, 41.953665], "type": "Point"}, "id": "4321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63878489590411, 41.95366377911887, -85.63878489590411, 41.95366377911887], "geometry": {"coordinates": [-85.63878489590411, 41.95366377911887], "type": "Point"}, "id": "4322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63896719734025, 41.9536620787724, -85.63896719734025, 41.9536620787724], "geometry": {"coordinates": [-85.63896719734025, 41.9536620787724], "type": "Point"}, "id": "4323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63914949877643, 41.95366037842589, -85.63914949877643, 41.95366037842589], "geometry": {"coordinates": [-85.63914949877643, 41.95366037842589], "type": "Point"}, "id": "4324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63933180021259, 41.95365867807933, -85.63933180021259, 41.95365867807933], "geometry": {"coordinates": [-85.63933180021259, 41.95365867807933], "type": "Point"}, "id": "4325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.6395140790813, 41.95365605559733, -85.6395140790813, 41.95365605559733], "geometry": {"coordinates": [-85.6395140790813, 41.95365605559733], "type": "Point"}, "id": "4326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63969634298078, 41.953652821454234, -85.63969634298078, 41.953652821454234], "geometry": {"coordinates": [-85.63969634298078, 41.953652821454234], "type": "Point"}, "id": "4327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63987860689906, 41.95364958789617, -85.63987860689906, 41.95364958789617], "geometry": {"coordinates": [-85.63987860689906, 41.95364958789617], "type": "Point"}, "id": "4328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.6400608708531, 41.95364635545366, -85.6400608708531, 41.95364635545366], "geometry": {"coordinates": [-85.6400608708531, 41.95364635545366], "type": "Point"}, "id": "4329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.64024313480718, 41.953643123010984, -85.64024313480718, 41.953643123010984], "geometry": {"coordinates": [-85.64024313480718, 41.953643123010984], "type": "Point"}, "id": "4330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.64042539876124, 41.95363989056814, -85.64042539876124, 41.95363989056814], "geometry": {"coordinates": [-85.64042539876124, 41.95363989056814], "type": "Point"}, "id": "4331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.64060768422682, 41.953638, -85.64060768422682, 41.953638], "geometry": {"coordinates": [-85.64060768422682, 41.953638], "type": "Point"}, "id": "4332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.633287, 41.952425999999996, -85.633287, 41.952425999999996], "geometry": {"coordinates": [-85.633287, 41.952425999999996], "type": "Point"}, "id": "4333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63348685714286, 41.95242442857155, -85.63348685714286, 41.95242442857155], "geometry": {"coordinates": [-85.63348685714286, 41.95242442857155], "type": "Point"}, "id": "4334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63368671428572, 41.95242285714305, -85.63368671428572, 41.95242285714305], "geometry": {"coordinates": [-85.63368671428572, 41.95242285714305], "type": "Point"}, "id": "4335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63388657142858, 41.952421285714514, -85.63388657142858, 41.952421285714514], "geometry": {"coordinates": [-85.63388657142858, 41.952421285714514], "type": "Point"}, "id": "4336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63408642857142, 41.952419714285945, -85.63408642857142, 41.952419714285945], "geometry": {"coordinates": [-85.63408642857142, 41.952419714285945], "type": "Point"}, "id": "4337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63428628571428, 41.952418142857326, -85.63428628571428, 41.952418142857326], "geometry": {"coordinates": [-85.63428628571428, 41.952418142857326], "type": "Point"}, "id": "4338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63448614285714, 41.95241657142868, -85.63448614285714, 41.95241657142868], "geometry": {"coordinates": [-85.63448614285714, 41.95241657142868], "type": "Point"}, "id": "4339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.633287, 41.952425999999996, -85.633287, 41.952425999999996], "geometry": {"coordinates": [-85.633287, 41.952425999999996], "type": "Point"}, "id": "4340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63328555555555, 41.9522852234659, -85.63328555555555, 41.9522852234659], "geometry": {"coordinates": [-85.63328555555555, 41.9522852234659], "type": "Point"}, "id": "4341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63328411111111, 41.952144446620885, -85.63328411111111, 41.952144446620885], "geometry": {"coordinates": [-85.63328411111111, 41.952144446620885], "type": "Point"}, "id": "4342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63328266666666, 41.95200366946495, -85.63328266666666, 41.95200366946495], "geometry": {"coordinates": [-85.63328266666666, 41.95200366946495], "type": "Point"}, "id": "4343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63328122222221, 41.95186289199808, -85.63328122222221, 41.95186289199808], "geometry": {"coordinates": [-85.63328122222221, 41.95186289199808], "type": "Point"}, "id": "4344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63327977777779, 41.9517221142203, -85.63327977777779, 41.9517221142203], "geometry": {"coordinates": [-85.63327977777779, 41.9517221142203], "type": "Point"}, "id": "4345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63327833333332, 41.9515813361316, -85.63327833333332, 41.9515813361316], "geometry": {"coordinates": [-85.63327833333332, 41.9515813361316], "type": "Point"}, "id": "4346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63327688888889, 41.951440557731985, -85.63327688888889, 41.951440557731985], "geometry": {"coordinates": [-85.63327688888889, 41.951440557731985], "type": "Point"}, "id": "4347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63327544444444, 41.95129977902145, -85.63327544444444, 41.95129977902145], "geometry": {"coordinates": [-85.63327544444444, 41.95129977902145], "type": "Point"}, "id": "4348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63594149999999, 41.945979699999995, -85.63594149999999, 41.945979699999995], "geometry": {"coordinates": [-85.63594149999999, 41.945979699999995], "type": "Point"}, "id": "4349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63600797346638, 41.946105971150836, -85.63600797346638, 41.946105971150836], "geometry": {"coordinates": [-85.63600797346638, 41.946105971150836], "type": "Point"}, "id": "4350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63606866896863, 41.946233599660275, -85.63606866896863, 41.946233599660275], "geometry": {"coordinates": [-85.63606866896863, 41.946233599660275], "type": "Point"}, "id": "4351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63611178967322, 41.94636535733573, -85.63611178967322, 41.94636535733573], "geometry": {"coordinates": [-85.63611178967322, 41.94636535733573], "type": "Point"}, "id": "4352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361344384989, 41.946499907224435, -85.6361344384989, 41.946499907224435], "geometry": {"coordinates": [-85.6361344384989, 41.946499907224435], "type": "Point"}, "id": "4353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63614561262187, 41.94663509384647, -85.63614561262187, 41.94663509384647], "geometry": {"coordinates": [-85.63614561262187, 41.94663509384647], "type": "Point"}, "id": "4354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361498150441, 41.946770661884074, -85.6361498150441, 41.946770661884074], "geometry": {"coordinates": [-85.6361498150441, 41.946770661884074], "type": "Point"}, "id": "4355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63615393360145, 41.94690623105877, -85.63615393360145, 41.94690623105877], "geometry": {"coordinates": [-85.63615393360145, 41.94690623105877], "type": "Point"}, "id": "4356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361581270902, 41.947041798673666, -85.6361581270902, 41.947041798673666], "geometry": {"coordinates": [-85.6361581270902, 41.947041798673666], "type": "Point"}, "id": "4357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616232576085, 41.94717736591234, -85.63616232576085, 41.94717736591234], "geometry": {"coordinates": [-85.63616232576085, 41.94717736591234], "type": "Point"}, "id": "4358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616540936113, 41.94731293165678, -85.63616540936113, 41.94731293165678], "geometry": {"coordinates": [-85.63616540936113, 41.94731293165678], "type": "Point"}, "id": "4359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616401527854, 41.94744850675178, -85.63616401527854, 41.94744850675178], "geometry": {"coordinates": [-85.63616401527854, 41.94744850675178], "type": "Point"}, "id": "4360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616608522602, 41.947584100348074, -85.63616608522602, 41.947584100348074], "geometry": {"coordinates": [-85.63616608522602, 41.947584100348074], "type": "Point"}, "id": "4361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616815517354, 41.947719693655955, -85.63616815517354, 41.947719693655955], "geometry": {"coordinates": [-85.63616815517354, 41.947719693655955], "type": "Point"}, "id": "4362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617022512105, 41.94785528667544, -85.63617022512105, 41.94785528667544], "geometry": {"coordinates": [-85.63617022512105, 41.94785528667544], "type": "Point"}, "id": "4363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617229506856, 41.94799087940653, -85.63617229506856, 41.94799087940653], "geometry": {"coordinates": [-85.63617229506856, 41.94799087940653], "type": "Point"}, "id": "4364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617436501607, 41.94812647184922, -85.63617436501607, 41.94812647184922], "geometry": {"coordinates": [-85.63617436501607, 41.94812647184922], "type": "Point"}, "id": "4365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617643496359, 41.948262064003515, -85.63617643496359, 41.948262064003515], "geometry": {"coordinates": [-85.63617643496359, 41.948262064003515], "type": "Point"}, "id": "4366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617850491109, 41.94839765586941, -85.63617850491109, 41.94839765586941], "geometry": {"coordinates": [-85.63617850491109, 41.94839765586941], "type": "Point"}, "id": "4367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361805748586, 41.948533247446896, -85.6361805748586, 41.948533247446896], "geometry": {"coordinates": [-85.6361805748586, 41.948533247446896], "type": "Point"}, "id": "4368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618206861875, 41.948668841942265, -85.63618206861875, 41.948668841942265], "geometry": {"coordinates": [-85.63618206861875, 41.948668841942265], "type": "Point"}, "id": "4369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618272678963, 41.948804440798945, -85.63618272678963, 41.948804440798945], "geometry": {"coordinates": [-85.63618272678963, 41.948804440798945], "type": "Point"}, "id": "4370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618338496049, 41.9489400393672, -85.63618338496049, 41.9489400393672], "geometry": {"coordinates": [-85.63618338496049, 41.9489400393672], "type": "Point"}, "id": "4371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618404313132, 41.949075637647006, -85.63618404313132, 41.949075637647006], "geometry": {"coordinates": [-85.63618404313132, 41.949075637647006], "type": "Point"}, "id": "4372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361847013022, 41.949211235638394, -85.6361847013022, 41.949211235638394], "geometry": {"coordinates": [-85.6361847013022, 41.949211235638394], "type": "Point"}, "id": "4373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618535947305, 41.949346833341345, -85.63618535947305, 41.949346833341345], "geometry": {"coordinates": [-85.63618535947305, 41.949346833341345], "type": "Point"}, "id": "4374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361860176439, 41.94948243075586, -85.6361860176439, 41.94948243075586], "geometry": {"coordinates": [-85.6361860176439, 41.94948243075586], "type": "Point"}, "id": "4375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361866897301, 41.94961802784403, -85.6361866897301, 41.94961802784403], "geometry": {"coordinates": [-85.6361866897301, 41.94961802784403], "type": "Point"}, "id": "4376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618736714936, 41.94975362462925, -85.63618736714936, 41.94975362462925], "geometry": {"coordinates": [-85.63618736714936, 41.94975362462925], "type": "Point"}, "id": "4377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618812618844, 41.94988922069394, -85.63618812618844, 41.94988922069394], "geometry": {"coordinates": [-85.63618812618844, 41.94988922069394], "type": "Point"}, "id": "4378", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619004418544, 41.950024810334895, -85.63619004418544, 41.950024810334895], "geometry": {"coordinates": [-85.63619004418544, 41.950024810334895], "type": "Point"}, "id": "4379", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619196218244, 41.95016039968745, -85.63619196218244, 41.95016039968745], "geometry": {"coordinates": [-85.63619196218244, 41.95016039968745], "type": "Point"}, "id": "4380", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619388017942, 41.95029598875158, -85.63619388017942, 41.95029598875158], "geometry": {"coordinates": [-85.63619388017942, 41.95029598875158], "type": "Point"}, "id": "4381", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619579817643, 41.95043157752731, -85.63619579817643, 41.95043157752731], "geometry": {"coordinates": [-85.63619579817643, 41.95043157752731], "type": "Point"}, "id": "4382", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619771617341, 41.95056716601464, -85.63619771617341, 41.95056716601464], "geometry": {"coordinates": [-85.63619771617341, 41.95056716601464], "type": "Point"}, "id": "4383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619963417042, 41.95070275421356, -85.63619963417042, 41.95070275421356], "geometry": {"coordinates": [-85.63619963417042, 41.95070275421356], "type": "Point"}, "id": "4384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63620155216744, 41.950838342124065, -85.63620155216744, 41.950838342124065], "geometry": {"coordinates": [-85.63620155216744, 41.950838342124065], "type": "Point"}, "id": "4385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63620347016442, 41.950973929746176, -85.63620347016442, 41.950973929746176], "geometry": {"coordinates": [-85.63620347016442, 41.950973929746176], "type": "Point"}, "id": "4386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63620538816143, 41.95110951707987, -85.63620538816143, 41.95110951707987], "geometry": {"coordinates": [-85.63620538816143, 41.95110951707987], "type": "Point"}, "id": "4387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63620805094438, 41.951245096754235, -85.63620805094438, 41.951245096754235], "geometry": {"coordinates": [-85.63620805094438, 41.951245096754235], "type": "Point"}, "id": "4388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6362109848278, 41.95138067345724, -85.6362109848278, 41.95138067345724], "geometry": {"coordinates": [-85.6362109848278, 41.95138067345724], "type": "Point"}, "id": "4389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6362139187112, 41.95151624987187, -85.6362139187112, 41.95151624987187], "geometry": {"coordinates": [-85.6362139187112, 41.95151624987187], "type": "Point"}, "id": "4390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63621685259463, 41.951651825998134, -85.63621685259463, 41.951651825998134], "geometry": {"coordinates": [-85.63621685259463, 41.951651825998134], "type": "Point"}, "id": "4391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63621978647804, 41.951787401836036, -85.63621978647804, 41.951787401836036], "geometry": {"coordinates": [-85.63621978647804, 41.951787401836036], "type": "Point"}, "id": "4392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63622272036145, 41.95192297738558, -85.63622272036145, 41.95192297738558], "geometry": {"coordinates": [-85.63622272036145, 41.95192297738558], "type": "Point"}, "id": "4393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63622565424487, 41.95205855264675, -85.63622565424487, 41.95205855264675], "geometry": {"coordinates": [-85.63622565424487, 41.95205855264675], "type": "Point"}, "id": "4394", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63622858812829, 41.95219412761955, -85.63622858812829, 41.95219412761955], "geometry": {"coordinates": [-85.63622858812829, 41.95219412761955], "type": "Point"}, "id": "4395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623152201168, 41.952329702303985, -85.63623152201168, 41.952329702303985], "geometry": {"coordinates": [-85.63623152201168, 41.952329702303985], "type": "Point"}, "id": "4396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623298954882, 41.95246528541191, -85.63623298954882, 41.95246528541191], "geometry": {"coordinates": [-85.63623298954882, 41.95246528541191], "type": "Point"}, "id": "4397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623296848783, 41.95260087707546, -85.63623296848783, 41.95260087707546], "geometry": {"coordinates": [-85.63623296848783, 41.95260087707546], "type": "Point"}, "id": "4398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623294742686, 41.952736468450574, -85.63623294742686, 41.952736468450574], "geometry": {"coordinates": [-85.63623294742686, 41.952736468450574], "type": "Point"}, "id": "4399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623292636586, 41.95287205953725, -85.63623292636586, 41.95287205953725], "geometry": {"coordinates": [-85.63623292636586, 41.95287205953725], "type": "Point"}, "id": "4400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6362329053049, 41.953007650335486, -85.6362329053049, 41.953007650335486], "geometry": {"coordinates": [-85.6362329053049, 41.953007650335486], "type": "Point"}, "id": "4401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623288424391, 41.95314324084526, -85.63623288424391, 41.95314324084526], "geometry": {"coordinates": [-85.63623288424391, 41.95314324084526], "type": "Point"}, "id": "4402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623286318294, 41.95327883106661, -85.63623286318294, 41.95327883106661], "geometry": {"coordinates": [-85.63623286318294, 41.95327883106661], "type": "Point"}, "id": "4403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623284212196, 41.95341442099952, -85.63623284212196, 41.95341442099952], "geometry": {"coordinates": [-85.63623284212196, 41.95341442099952], "type": "Point"}, "id": "4404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623282106099, 41.95355001064398, -85.63623282106099, 41.95355001064398], "geometry": {"coordinates": [-85.63623282106099, 41.95355001064398], "type": "Point"}, "id": "4405", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.64065879999998, 41.942600999999996, -85.64065879999998, 41.942600999999996], "geometry": {"coordinates": [-85.64065879999998, 41.942600999999996], "type": "Point"}, "id": "4406", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066064342488, 41.94273795589999, -85.64066064342488, 41.94273795589999], "geometry": {"coordinates": [-85.64066064342488, 41.94273795589999], "type": "Point"}, "id": "4407", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066251995888, 41.94287491125885, -85.64066251995888, 41.94287491125885], "geometry": {"coordinates": [-85.64066251995888, 41.94287491125885], "type": "Point"}, "id": "4408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066439649288, 41.94301186632354, -85.64066439649288, 41.94301186632354], "geometry": {"coordinates": [-85.64066439649288, 41.94301186632354], "type": "Point"}, "id": "4409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.6406662607629, 41.94314882118603, -85.6406662607629, 41.94314882118603], "geometry": {"coordinates": [-85.6406662607629, 41.94314882118603], "type": "Point"}, "id": "4410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066809713516, 41.94328577596355, -85.64066809713516, 41.94328577596355], "geometry": {"coordinates": [-85.64066809713516, 41.94328577596355], "type": "Point"}, "id": "4411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066994581242, 41.94342273035434, -85.64066994581242, 41.94342273035434], "geometry": {"coordinates": [-85.64066994581242, 41.94342273035434], "type": "Point"}, "id": "4412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067183430964, 41.94355968415136, -85.64067183430964, 41.94355968415136], "geometry": {"coordinates": [-85.64067183430964, 41.94355968415136], "type": "Point"}, "id": "4413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067369234971, 41.9436966378845, -85.64067369234971, 41.9436966378845], "geometry": {"coordinates": [-85.64067369234971, 41.9436966378845], "type": "Point"}, "id": "4414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067554746057, 41.943833591345616, -85.64067554746057, 41.943833591345616], "geometry": {"coordinates": [-85.64067554746057, 41.943833591345616], "type": "Point"}, "id": "4415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067657389994, 41.943970548887975, -85.64067657389994, 41.943970548887975], "geometry": {"coordinates": [-85.64067657389994, 41.943970548887975], "type": "Point"}, "id": "4416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.6406773329686, 41.94410750754785, -85.6406773329686, 41.94410750754785], "geometry": {"coordinates": [-85.6406773329686, 41.94410750754785], "type": "Point"}, "id": "4417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067809203723, 41.94424446591353, -85.64067809203723, 41.94424446591353], "geometry": {"coordinates": [-85.64067809203723, 41.94424446591353], "type": "Point"}, "id": "4418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.6406788511059, 41.94438142398501, -85.6406788511059, 41.94438142398501], "geometry": {"coordinates": [-85.6406788511059, 41.94438142398501], "type": "Point"}, "id": "4419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067961017454, 41.944518381762286, -85.64067961017454, 41.944518381762286], "geometry": {"coordinates": [-85.64067961017454, 41.944518381762286], "type": "Point"}, "id": "4420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068036924321, 41.94465533924537, -85.64068036924321, 41.94465533924537], "geometry": {"coordinates": [-85.64068036924321, 41.94465533924537], "type": "Point"}, "id": "4421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068112831185, 41.944792296434244, -85.64068112831185, 41.944792296434244], "geometry": {"coordinates": [-85.64068112831185, 41.944792296434244], "type": "Point"}, "id": "4422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068188738052, 41.94492925332893, -85.64068188738052, 41.94492925332893], "geometry": {"coordinates": [-85.64068188738052, 41.94492925332893], "type": "Point"}, "id": "4423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068264644916, 41.945066209929415, -85.64068264644916, 41.945066209929415], "geometry": {"coordinates": [-85.64068264644916, 41.945066209929415], "type": "Point"}, "id": "4424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068792313569, 41.94520307517079, -85.64068792313569, 41.94520307517079], "geometry": {"coordinates": [-85.64068792313569, 41.94520307517079], "type": "Point"}, "id": "4425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64069713850854, 41.94533986072357, -85.64069713850854, 41.94533986072357], "geometry": {"coordinates": [-85.64069713850854, 41.94533986072357], "type": "Point"}, "id": "4426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64070635388141, 41.94547664598288, -85.64070635388141, 41.94547664598288], "geometry": {"coordinates": [-85.64070635388141, 41.94547664598288], "type": "Point"}, "id": "4427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64071556925425, 41.94561343094872, -85.64071556925425, 41.94561343094872], "geometry": {"coordinates": [-85.64071556925425, 41.94561343094872], "type": "Point"}, "id": "4428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64072478462712, 41.945750215621096, -85.64072478462712, 41.945750215621096], "geometry": {"coordinates": [-85.64072478462712, 41.945750215621096], "type": "Point"}, "id": "4429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.63096200000001, 41.9619135, -85.63096200000001, 41.9619135], "geometry": {"coordinates": [-85.63096200000001, 41.9619135], "type": "Point"}, "id": "4430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.630965967461, 41.961779519819444, -85.630965967461, 41.961779519819444], "geometry": {"coordinates": [-85.630965967461, 41.961779519819444], "type": "Point"}, "id": "4431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63096880854121, 41.9616455227292, -85.63096880854121, 41.9616455227292], "geometry": {"coordinates": [-85.63096880854121, 41.9616455227292], "type": "Point"}, "id": "4432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309716496214, 41.96151152535717, -85.6309716496214, 41.96151152535717], "geometry": {"coordinates": [-85.6309716496214, 41.96151152535717], "type": "Point"}, "id": "4433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63096915557483, 41.9613775321448, -85.63096915557483, 41.9613775321448], "geometry": {"coordinates": [-85.63096915557483, 41.9613775321448], "type": "Point"}, "id": "4434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63096591101113, 41.961243539275465, -85.63096591101113, 41.961243539275465], "geometry": {"coordinates": [-85.63096591101113, 41.961243539275465], "type": "Point"}, "id": "4435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63096266644743, 41.96110954612436, -85.63096266644743, 41.96110954612436], "geometry": {"coordinates": [-85.63096266644743, 41.96110954612436], "type": "Point"}, "id": "4436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63095942188374, 41.960975552691494, -85.63095942188374, 41.960975552691494], "geometry": {"coordinates": [-85.63095942188374, 41.960975552691494], "type": "Point"}, "id": "4437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63095619670415, 41.96084155871825, -85.63095619670415, 41.96084155871825], "geometry": {"coordinates": [-85.63095619670415, 41.96084155871825], "type": "Point"}, "id": "4438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63095297524009, 41.96070756441367, -85.63095297524009, 41.96070756441367], "geometry": {"coordinates": [-85.63095297524009, 41.96070756441367], "type": "Point"}, "id": "4439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63095101097271, 41.960573557792195, -85.63095101097271, 41.960573557792195], "geometry": {"coordinates": [-85.63095101097271, 41.960573557792195], "type": "Point"}, "id": "4440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094959254077, 41.960439545663625, -85.63094959254077, 41.960439545663625], "geometry": {"coordinates": [-85.63094959254077, 41.960439545663625], "type": "Point"}, "id": "4441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094817410884, 41.96030553325321, -85.63094817410884, 41.96030553325321], "geometry": {"coordinates": [-85.63094817410884, 41.96030553325321], "type": "Point"}, "id": "4442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094676467966, 41.9601715205088, -85.63094676467966, 41.9601715205088], "geometry": {"coordinates": [-85.63094676467966, 41.9601715205088], "type": "Point"}, "id": "4443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094537498769, 41.96003750736821, -85.63094537498769, 41.96003750736821], "geometry": {"coordinates": [-85.63094537498769, 41.96003750736821], "type": "Point"}, "id": "4444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309439852957, 41.95990349394579, -85.6309439852957, 41.95990349394579], "geometry": {"coordinates": [-85.6309439852957, 41.95990349394579], "type": "Point"}, "id": "4445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094259560374, 41.95976948024152, -85.63094259560374, 41.95976948024152], "geometry": {"coordinates": [-85.63094259560374, 41.95976948024152], "type": "Point"}, "id": "4446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094120591177, 41.959635466255406, -85.63094120591177, 41.959635466255406], "geometry": {"coordinates": [-85.63094120591177, 41.959635466255406], "type": "Point"}, "id": "4447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093981621978, 41.95950145198746, -85.63093981621978, 41.95950145198746], "geometry": {"coordinates": [-85.63093981621978, 41.95950145198746], "type": "Point"}, "id": "4448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093842652782, 41.95936743743768, -85.63093842652782, 41.95936743743768], "geometry": {"coordinates": [-85.63093842652782, 41.95936743743768], "type": "Point"}, "id": "4449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093703683583, 41.959233422606054, -85.63093703683583, 41.959233422606054], "geometry": {"coordinates": [-85.63093703683583, 41.959233422606054], "type": "Point"}, "id": "4450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093564714386, 41.959099407492594, -85.63093564714386, 41.959099407492594], "geometry": {"coordinates": [-85.63093564714386, 41.959099407492594], "type": "Point"}, "id": "4451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309337625833, 41.958965395880625, -85.6309337625833, 41.958965395880625], "geometry": {"coordinates": [-85.6309337625833, 41.958965395880625], "type": "Point"}, "id": "4452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093144673599, 41.95883138728408, -85.63093144673599, 41.95883138728408], "geometry": {"coordinates": [-85.63093144673599, 41.95883138728408], "type": "Point"}, "id": "4453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092913088866, 41.95869737840573, -85.63092913088866, 41.95869737840573], "geometry": {"coordinates": [-85.63092913088866, 41.95869737840573], "type": "Point"}, "id": "4454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092681504133, 41.95856336924557, -85.63092681504133, 41.95856336924557], "geometry": {"coordinates": [-85.63092681504133, 41.95856336924557], "type": "Point"}, "id": "4455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092449919401, 41.9584293598036, -85.63092449919401, 41.9584293598036], "geometry": {"coordinates": [-85.63092449919401, 41.9584293598036], "type": "Point"}, "id": "4456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092306690285, 41.958295343943846, -85.63092306690285, 41.958295343943846], "geometry": {"coordinates": [-85.63092306690285, 41.958295343943846], "type": "Point"}, "id": "4457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309220167451, 41.95816132514848, -85.6309220167451, 41.95816132514848], "geometry": {"coordinates": [-85.6309220167451, 41.95816132514848], "type": "Point"}, "id": "4458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092096658731, 41.95802730607127, -85.63092096658731, 41.95802730607127], "geometry": {"coordinates": [-85.63092096658731, 41.95802730607127], "type": "Point"}, "id": "4459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091991642953, 41.957893286712206, -85.63091991642953, 41.957893286712206], "geometry": {"coordinates": [-85.63091991642953, 41.957893286712206], "type": "Point"}, "id": "4460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091886627174, 41.95775926707132, -85.63091886627174, 41.95775926707132], "geometry": {"coordinates": [-85.63091886627174, 41.95775926707132], "type": "Point"}, "id": "4461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091781611398, 41.95762524714856, -85.63091781611398, 41.95762524714856], "geometry": {"coordinates": [-85.63091781611398, 41.95762524714856], "type": "Point"}, "id": "4462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091676595619, 41.95749122694397, -85.63091676595619, 41.95749122694397], "geometry": {"coordinates": [-85.63091676595619, 41.95749122694397], "type": "Point"}, "id": "4463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091569940977, 41.957357206529764, -85.63091569940977, 41.957357206529764], "geometry": {"coordinates": [-85.63091569940977, 41.957357206529764], "type": "Point"}, "id": "4464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309146137076, 41.95722318591812, -85.6309146137076, 41.95722318591812], "geometry": {"coordinates": [-85.6309146137076, 41.95722318591812], "type": "Point"}, "id": "4465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091352800542, 41.95708916502462, -85.63091352800542, 41.95708916502462], "geometry": {"coordinates": [-85.63091352800542, 41.95708916502462], "type": "Point"}, "id": "4466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091244230326, 41.956955143849285, -85.63091244230326, 41.956955143849285], "geometry": {"coordinates": [-85.63091244230326, 41.956955143849285], "type": "Point"}, "id": "4467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091135660106, 41.956821122392114, -85.63091135660106, 41.956821122392114], "geometry": {"coordinates": [-85.63091135660106, 41.956821122392114], "type": "Point"}, "id": "4468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091027089888, 41.9566871006531, -85.63091027089888, 41.9566871006531], "geometry": {"coordinates": [-85.63091027089888, 41.9566871006531], "type": "Point"}, "id": "4469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090918519671, 41.95655307863224, -85.63090918519671, 41.95655307863224], "geometry": {"coordinates": [-85.63090918519671, 41.95655307863224], "type": "Point"}, "id": "4470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090809949455, 41.95641905632954, -85.63090809949455, 41.95641905632954], "geometry": {"coordinates": [-85.63090809949455, 41.95641905632954], "type": "Point"}, "id": "4471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090701379238, 41.956285033745, -85.63090701379238, 41.956285033745], "geometry": {"coordinates": [-85.63090701379238, 41.956285033745], "type": "Point"}, "id": "4472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090592809019, 41.956151010878614, -85.63090592809019, 41.956151010878614], "geometry": {"coordinates": [-85.63090592809019, 41.956151010878614], "type": "Point"}, "id": "4473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090484238802, 41.95601698773038, -85.63090484238802, 41.95601698773038], "geometry": {"coordinates": [-85.63090484238802, 41.95601698773038], "type": "Point"}, "id": "4474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090348375285, 41.95588296620891, -85.63090348375285, 41.95588296620891], "geometry": {"coordinates": [-85.63090348375285, 41.95588296620891], "type": "Point"}, "id": "4475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090118018503, 41.95574895101343, -85.63090118018503, 41.95574895101343], "geometry": {"coordinates": [-85.63090118018503, 41.95574895101343], "type": "Point"}, "id": "4476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63089887661722, 41.955614935536154, -85.63089887661722, 41.955614935536154], "geometry": {"coordinates": [-85.63089887661722, 41.955614935536154], "type": "Point"}, "id": "4477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6308965730494, 41.95548091977708, -85.6308965730494, 41.95548091977708], "geometry": {"coordinates": [-85.6308965730494, 41.95548091977708], "type": "Point"}, "id": "4478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6308942694816, 41.95534690373619, -85.6308942694816, 41.95534690373619], "geometry": {"coordinates": [-85.6308942694816, 41.95534690373619], "type": "Point"}, "id": "4479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63089196591378, 41.955212887413495, -85.63089196591378, 41.955212887413495], "geometry": {"coordinates": [-85.63089196591378, 41.955212887413495], "type": "Point"}, "id": "4480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088966234598, 41.955078870809, -85.63088966234598, 41.955078870809], "geometry": {"coordinates": [-85.63088966234598, 41.955078870809], "type": "Point"}, "id": "4481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088735877815, 41.9549448539227, -85.63088735877815, 41.9549448539227], "geometry": {"coordinates": [-85.63088735877815, 41.9549448539227], "type": "Point"}, "id": "4482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088505521036, 41.95481083675459, -85.63088505521036, 41.95481083675459], "geometry": {"coordinates": [-85.63088505521036, 41.95481083675459], "type": "Point"}, "id": "4483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088275435719, 41.95467681928371, -85.63088275435719, 41.95467681928371], "geometry": {"coordinates": [-85.63088275435719, 41.95467681928371], "type": "Point"}, "id": "4484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088061937552, 41.95454280001125, -85.63088061937552, 41.95454280001125], "geometry": {"coordinates": [-85.63088061937552, 41.95454280001125], "type": "Point"}, "id": "4485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087853050642, 41.95440878005188, -85.63087853050642, 41.95440878005188], "geometry": {"coordinates": [-85.63087853050642, 41.95440878005188], "type": "Point"}, "id": "4486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087644163731, 41.95427475981071, -85.63087644163731, 41.95427475981071], "geometry": {"coordinates": [-85.63087644163731, 41.95427475981071], "type": "Point"}, "id": "4487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087435276822, 41.954140739287716, -85.63087435276822, 41.954140739287716], "geometry": {"coordinates": [-85.63087435276822, 41.954140739287716], "type": "Point"}, "id": "4488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087226389911, 41.95400671848292, -85.63087226389911, 41.95400671848292], "geometry": {"coordinates": [-85.63087226389911, 41.95400671848292], "type": "Point"}, "id": "4489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087017503001, 41.953872697396314, -85.63087017503001, 41.953872697396314], "geometry": {"coordinates": [-85.63087017503001, 41.953872697396314], "type": "Point"}, "id": "4490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086808616092, 41.95373867602789, -85.63086808616092, 41.95373867602789], "geometry": {"coordinates": [-85.63086808616092, 41.95373867602789], "type": "Point"}, "id": "4491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086660047841, 41.95360465009916, -85.63086660047841, 41.95360465009916], "geometry": {"coordinates": [-85.63086660047841, 41.95360465009916], "type": "Point"}, "id": "4492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086525159392, 41.95347062291825, -85.63086525159392, 41.95347062291825], "geometry": {"coordinates": [-85.63086525159392, 41.95347062291825], "type": "Point"}, "id": "4493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086390270941, 41.95333659545552, -85.63086390270941, 41.95333659545552], "geometry": {"coordinates": [-85.63086390270941, 41.95333659545552], "type": "Point"}, "id": "4494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086255382493, 41.95320256771095, -85.63086255382493, 41.95320256771095], "geometry": {"coordinates": [-85.63086255382493, 41.95320256771095], "type": "Point"}, "id": "4495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086120494046, 41.953068539684544, -85.63086120494046, 41.953068539684544], "geometry": {"coordinates": [-85.63086120494046, 41.953068539684544], "type": "Point"}, "id": "4496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085985605595, 41.952934511376306, -85.63085985605595, 41.952934511376306], "geometry": {"coordinates": [-85.63085985605595, 41.952934511376306], "type": "Point"}, "id": "4497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085850717147, 41.952800482786245, -85.63085850717147, 41.952800482786245], "geometry": {"coordinates": [-85.63085850717147, 41.952800482786245], "type": "Point"}, "id": "4498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085715828697, 41.95266645391434, -85.63085715828697, 41.95266645391434], "geometry": {"coordinates": [-85.63085715828697, 41.95266645391434], "type": "Point"}, "id": "4499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085580940246, 41.95253242476061, -85.63085580940246, 41.95253242476061], "geometry": {"coordinates": [-85.63085580940246, 41.95253242476061], "type": "Point"}, "id": "4500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6308543380061, 41.95239839608443, -85.6308543380061, 41.95239839608443], "geometry": {"coordinates": [-85.6308543380061, 41.95239839608443], "type": "Point"}, "id": "4501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085268280116, 41.952264368265745, -85.63085268280116, 41.952264368265745], "geometry": {"coordinates": [-85.63085268280116, 41.952264368265745], "type": "Point"}, "id": "4502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085102759624, 41.95213034016523, -85.63085102759624, 41.95213034016523], "geometry": {"coordinates": [-85.63085102759624, 41.95213034016523], "type": "Point"}, "id": "4503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084937239131, 41.9519963117829, -85.63084937239131, 41.9519963117829], "geometry": {"coordinates": [-85.63084937239131, 41.9519963117829], "type": "Point"}, "id": "4504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084771718636, 41.95186228311874, -85.63084771718636, 41.95186228311874], "geometry": {"coordinates": [-85.63084771718636, 41.95186228311874], "type": "Point"}, "id": "4505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084606198143, 41.951728254172764, -85.63084606198143, 41.951728254172764], "geometry": {"coordinates": [-85.63084606198143, 41.951728254172764], "type": "Point"}, "id": "4506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6308444067765, 41.95159422494496, -85.6308444067765, 41.95159422494496], "geometry": {"coordinates": [-85.6308444067765, 41.95159422494496], "type": "Point"}, "id": "4507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084275157156, 41.95146019543533, -85.63084275157156, 41.95146019543533], "geometry": {"coordinates": [-85.63084275157156, 41.95146019543533], "type": "Point"}, "id": "4508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084109636662, 41.95132616564388, -85.63084109636662, 41.95132616564388], "geometry": {"coordinates": [-85.63084109636662, 41.95132616564388], "type": "Point"}, "id": "4509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63083946036139, 41.95119213546085, -85.63083946036139, 41.95119213546085], "geometry": {"coordinates": [-85.63083946036139, 41.95119213546085], "type": "Point"}, "id": "4510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63083834527106, 41.9510581020184, -85.63083834527106, 41.9510581020184], "geometry": {"coordinates": [-85.63083834527106, 41.9510581020184], "type": "Point"}, "id": "4511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63083723018069, 41.9509240682941, -85.63083723018069, 41.9509240682941], "geometry": {"coordinates": [-85.63083723018069, 41.9509240682941], "type": "Point"}, "id": "4512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63083611509036, 41.95079003428797, -85.63083611509036, 41.95079003428797], "geometry": {"coordinates": [-85.63083611509036, 41.95079003428797], "type": "Point"}, "id": "4513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.633274, 41.951159, -85.633274, 41.951159], "geometry": {"coordinates": [-85.633274, 41.951159], "type": "Point"}, "id": "4514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63347571428572, 41.95115885714285, -85.63347571428572, 41.95115885714285], "geometry": {"coordinates": [-85.63347571428572, 41.95115885714285], "type": "Point"}, "id": "4515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63367742857143, 41.95115871428572, -85.63367742857143, 41.95115871428572], "geometry": {"coordinates": [-85.63367742857143, 41.95115871428572], "type": "Point"}, "id": "4516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63387914285714, 41.95115857142857, -85.63387914285714, 41.95115857142857], "geometry": {"coordinates": [-85.63387914285714, 41.95115857142857], "type": "Point"}, "id": "4517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63408085714285, 41.951158428571425, -85.63408085714285, 41.951158428571425], "geometry": {"coordinates": [-85.63408085714285, 41.951158428571425], "type": "Point"}, "id": "4518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63428257142859, 41.951158285714286, -85.63428257142859, 41.951158285714286], "geometry": {"coordinates": [-85.63428257142859, 41.951158285714286], "type": "Point"}, "id": "4519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.6344842857143, 41.951158142857146, -85.6344842857143, 41.951158142857146], "geometry": {"coordinates": [-85.6344842857143, 41.951158142857146], "type": "Point"}, "id": "4520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.6453514, 41.941241899999994, -85.6453514, 41.941241899999994], "geometry": {"coordinates": [-85.6453514, 41.941241899999994], "type": "Point"}, "id": "4521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64534745258399, 41.94110572833148, -85.64534745258399, 41.94110572833148], "geometry": {"coordinates": [-85.64534745258399, 41.94110572833148], "type": "Point"}, "id": "4522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.645343505168, 41.94096955637215, -85.645343505168, 41.94096955637215], "geometry": {"coordinates": [-85.645343505168, 41.94096955637215], "type": "Point"}, "id": "4523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64533955775198, 41.94083338412204, -85.64533955775198, 41.94083338412204], "geometry": {"coordinates": [-85.64533955775198, 41.94083338412204], "type": "Point"}, "id": "4524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64528734785887, 41.94071292866163, -85.64528734785887, 41.94071292866163], "geometry": {"coordinates": [-85.64528734785887, 41.94071292866163], "type": "Point"}, "id": "4525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64512000487534, 41.940687256645695, -85.64512000487534, 41.940687256645695], "geometry": {"coordinates": [-85.64512000487534, 41.940687256645695], "type": "Point"}, "id": "4526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64493700312897, 41.940691949517266, -85.64493700312897, 41.940691949517266], "geometry": {"coordinates": [-85.64493700312897, 41.940691949517266], "type": "Point"}, "id": "4527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64475400138261, 41.940696642388495, -85.64475400138261, 41.940696642388495], "geometry": {"coordinates": [-85.64475400138261, 41.940696642388495], "type": "Point"}, "id": "4528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64457099963624, 41.94070133525938, -85.64457099963624, 41.94070133525938], "geometry": {"coordinates": [-85.64457099963624, 41.94070133525938], "type": "Point"}, "id": "4529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64438799788988, 41.94070602812992, -85.64438799788988, 41.94070602812992], "geometry": {"coordinates": [-85.64438799788988, 41.94070602812992], "type": "Point"}, "id": "4530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.636834, 41.934223, -85.636834, 41.934223], "geometry": {"coordinates": [-85.636834, 41.934223], "type": "Point"}, "id": "4531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63676436169636, 41.93434978615311, -85.63676436169636, 41.93434978615311], "geometry": {"coordinates": [-85.63676436169636, 41.93434978615311], "type": "Point"}, "id": "4532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63671619023563, 41.93448288262979, -85.63671619023563, 41.93448288262979], "geometry": {"coordinates": [-85.63671619023563, 41.93448288262979], "type": "Point"}, "id": "4533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63666801877487, 41.93461597882872, -85.63666801877487, 41.93461597882872], "geometry": {"coordinates": [-85.63666801877487, 41.93461597882872], "type": "Point"}, "id": "4534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63661984731412, 41.9347490747499, -85.63661984731412, 41.9347490747499], "geometry": {"coordinates": [-85.63661984731412, 41.9347490747499], "type": "Point"}, "id": "4535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63657167585336, 41.934882170393344, -85.63657167585336, 41.934882170393344], "geometry": {"coordinates": [-85.63657167585336, 41.934882170393344], "type": "Point"}, "id": "4536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63652350439261, 41.93501526575903, -85.63652350439261, 41.93501526575903], "geometry": {"coordinates": [-85.63652350439261, 41.93501526575903], "type": "Point"}, "id": "4537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63651233930932, 41.9351523303343, -85.63651233930932, 41.9351523303343], "geometry": {"coordinates": [-85.63651233930932, 41.9351523303343], "type": "Point"}, "id": "4538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63650800310255, 41.93529012711252, -85.63650800310255, 41.93529012711252], "geometry": {"coordinates": [-85.63650800310255, 41.93529012711252], "type": "Point"}, "id": "4539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63650366689576, 41.935427923593025, -85.63650366689576, 41.935427923593025], "geometry": {"coordinates": [-85.63650366689576, 41.935427923593025], "type": "Point"}, "id": "4540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63649933068896, 41.93556571977581, -85.63649933068896, 41.93556571977581], "geometry": {"coordinates": [-85.63649933068896, 41.93556571977581], "type": "Point"}, "id": "4541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63649499448219, 41.93570351566088, -85.63649499448219, 41.93570351566088], "geometry": {"coordinates": [-85.63649499448219, 41.93570351566088], "type": "Point"}, "id": "4542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.6364906582754, 41.935841311248225, -85.6364906582754, 41.935841311248225], "geometry": {"coordinates": [-85.6364906582754, 41.935841311248225], "type": "Point"}, "id": "4543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.6364863220686, 41.93597910653786, -85.6364863220686, 41.93597910653786], "geometry": {"coordinates": [-85.6364863220686, 41.93597910653786], "type": "Point"}, "id": "4544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.6364819858618, 41.93611690152977, -85.6364819858618, 41.93611690152977], "geometry": {"coordinates": [-85.6364819858618, 41.93611690152977], "type": "Point"}, "id": "4545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63647764965503, 41.93625469622396, -85.63647764965503, 41.93625469622396], "geometry": {"coordinates": [-85.63647764965503, 41.93625469622396], "type": "Point"}, "id": "4546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63647331344825, 41.936392490620435, -85.63647331344825, 41.936392490620435], "geometry": {"coordinates": [-85.63647331344825, 41.936392490620435], "type": "Point"}, "id": "4547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63646897724145, 41.93653028471919, -85.63646897724145, 41.93653028471919], "geometry": {"coordinates": [-85.63646897724145, 41.93653028471919], "type": "Point"}, "id": "4548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63646464103468, 41.93666807852022, -85.63646464103468, 41.93666807852022], "geometry": {"coordinates": [-85.63646464103468, 41.93666807852022], "type": "Point"}, "id": "4549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63646030482789, 41.93680587202354, -85.63646030482789, 41.93680587202354], "geometry": {"coordinates": [-85.63646030482789, 41.93680587202354], "type": "Point"}, "id": "4550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63645596862109, 41.93694366522913, -85.63645596862109, 41.93694366522913], "geometry": {"coordinates": [-85.63645596862109, 41.93694366522913], "type": "Point"}, "id": "4551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63644836896856, 41.93708133332525, -85.63644836896856, 41.93708133332525], "geometry": {"coordinates": [-85.63644836896856, 41.93708133332525], "type": "Point"}, "id": "4552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63643368534748, 41.93721873019564, -85.63643368534748, 41.93721873019564], "geometry": {"coordinates": [-85.63643368534748, 41.93721873019564], "type": "Point"}, "id": "4553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63641900172642, 41.93735612677002, -85.63641900172642, 41.93735612677002], "geometry": {"coordinates": [-85.63641900172642, 41.93735612677002], "type": "Point"}, "id": "4554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63640431810535, 41.93749352304838, -85.63640431810535, 41.93749352304838], "geometry": {"coordinates": [-85.63640431810535, 41.93749352304838], "type": "Point"}, "id": "4555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63638963448429, 41.93763091903073, -85.63638963448429, 41.93763091903073], "geometry": {"coordinates": [-85.63638963448429, 41.93763091903073], "type": "Point"}, "id": "4556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63637495086321, 41.93776831471707, -85.63637495086321, 41.93776831471707], "geometry": {"coordinates": [-85.63637495086321, 41.93776831471707], "type": "Point"}, "id": "4557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63636026724213, 41.937905710107394, -85.63636026724213, 41.937905710107394], "geometry": {"coordinates": [-85.63636026724213, 41.937905710107394], "type": "Point"}, "id": "4558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63634558362108, 41.9380431052017, -85.63634558362108, 41.9380431052017], "geometry": {"coordinates": [-85.63634558362108, 41.9380431052017], "type": "Point"}, "id": "4559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.6467775, 41.92607079999999, -85.6467775, 41.92607079999999], "geometry": {"coordinates": [-85.6467775, 41.92607079999999], "type": "Point"}, "id": "4560", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64660413867792, 41.926117757225974, -85.64660413867792, 41.926117757225974], "geometry": {"coordinates": [-85.64660413867792, 41.926117757225974], "type": "Point"}, "id": "4561", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64644203240206, 41.92618313627975, -85.64644203240206, 41.92618313627975], "geometry": {"coordinates": [-85.64644203240206, 41.92618313627975], "type": "Point"}, "id": "4562", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64629137422506, 41.92626193501466, -85.64629137422506, 41.92626193501466], "geometry": {"coordinates": [-85.64629137422506, 41.92626193501466], "type": "Point"}, "id": "4563", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64615621757257, 41.9263555473031, -85.64615621757257, 41.9263555473031], "geometry": {"coordinates": [-85.64615621757257, 41.9263555473031], "type": "Point"}, "id": "4564", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64602106092009, 41.926449159454194, -85.64602106092009, 41.926449159454194], "geometry": {"coordinates": [-85.64602106092009, 41.926449159454194], "type": "Point"}, "id": "4565", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.6458859042676, 41.92654277146792, -85.6458859042676, 41.92654277146792], "geometry": {"coordinates": [-85.6458859042676, 41.92654277146792], "type": "Point"}, "id": "4566", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64575074761511, 41.926636383344295, -85.64575074761511, 41.926636383344295], "geometry": {"coordinates": [-85.64575074761511, 41.926636383344295], "type": "Point"}, "id": "4567", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.6456155909626, 41.926729995083306, -85.6456155909626, 41.926729995083306], "geometry": {"coordinates": [-85.6456155909626, 41.926729995083306], "type": "Point"}, "id": "4568", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64548043431014, 41.92682360668496, -85.64548043431014, 41.92682360668496], "geometry": {"coordinates": [-85.64548043431014, 41.92682360668496], "type": "Point"}, "id": "4569", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64534527765764, 41.92691721814925, -85.64534527765764, 41.92691721814925], "geometry": {"coordinates": [-85.64534527765764, 41.92691721814925], "type": "Point"}, "id": "4570", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64521012100515, 41.92701082947619, -85.64521012100515, 41.92701082947619], "geometry": {"coordinates": [-85.64521012100515, 41.92701082947619], "type": "Point"}, "id": "4571", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64506519133968, 41.92709537614336, -85.64506519133968, 41.92709537614336], "geometry": {"coordinates": [-85.64506519133968, 41.92709537614336], "type": "Point"}, "id": "4572", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64491304264088, 41.927173227014094, -85.64491304264088, 41.927173227014094], "geometry": {"coordinates": [-85.64491304264088, 41.927173227014094], "type": "Point"}, "id": "4573", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64474691637334, 41.92723320917638, -85.64474691637334, 41.92723320917638], "geometry": {"coordinates": [-85.64474691637334, 41.92723320917638], "type": "Point"}, "id": "4574", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64457733450693, 41.92728730760141, -85.64457733450693, 41.92728730760141], "geometry": {"coordinates": [-85.64457733450693, 41.92728730760141], "type": "Point"}, "id": "4575", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.64440527591272, 41.92733718497557, -85.64440527591272, 41.92733718497557], "geometry": {"coordinates": [-85.64440527591272, 41.92733718497557], "type": "Point"}, "id": "4576", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 1173386266}, "type": "Feature"}, {"bbox": [-85.6412224, 41.931841000000006, -85.6412224, 41.931841000000006], "geometry": {"coordinates": [-85.6412224, 41.931841000000006], "type": "Point"}, "id": "4577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129071097106, 41.93196507720941, -85.64129071097106, 41.93196507720941], "geometry": {"coordinates": [-85.64129071097106, 41.93196507720941], "type": "Point"}, "id": "4578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129085498445, 41.9320999823742, -85.64129085498445, 41.9320999823742], "geometry": {"coordinates": [-85.64129085498445, 41.9320999823742], "type": "Point"}, "id": "4579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129099899783, 41.93223488725365, -85.64129099899783, 41.93223488725365], "geometry": {"coordinates": [-85.64129099899783, 41.93223488725365], "type": "Point"}, "id": "4580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412911430112, 41.93236979184779, -85.6412911430112, 41.93236979184779], "geometry": {"coordinates": [-85.6412911430112, 41.93236979184779], "type": "Point"}, "id": "4581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129128702461, 41.932504696156606, -85.64129128702461, 41.932504696156606], "geometry": {"coordinates": [-85.64129128702461, 41.932504696156606], "type": "Point"}, "id": "4582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129143103798, 41.93263960018009, -85.64129143103798, 41.93263960018009], "geometry": {"coordinates": [-85.64129143103798, 41.93263960018009], "type": "Point"}, "id": "4583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64128773378589, 41.93277444808871, -85.64128773378589, 41.93277444808871], "geometry": {"coordinates": [-85.64128773378589, 41.93277444808871], "type": "Point"}, "id": "4584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64128051837342, 41.93290924475173, -85.64128051837342, 41.93290924475173], "geometry": {"coordinates": [-85.64128051837342, 41.93290924475173], "type": "Point"}, "id": "4585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64127330445305, 41.9330440411741, -85.64127330445305, 41.9330440411741], "geometry": {"coordinates": [-85.64127330445305, 41.9330440411741], "type": "Point"}, "id": "4586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412660905327, 41.933178837311615, -85.6412660905327, 41.933178837311615], "geometry": {"coordinates": [-85.6412660905327, 41.933178837311615], "type": "Point"}, "id": "4587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64125887661233, 41.933313633164246, -85.64125887661233, 41.933313633164246], "geometry": {"coordinates": [-85.64125887661233, 41.933313633164246], "type": "Point"}, "id": "4588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64125166269197, 41.93344842873201, -85.64125166269197, 41.93344842873201], "geometry": {"coordinates": [-85.64125166269197, 41.93344842873201], "type": "Point"}, "id": "4589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412444487716, 41.93358322401489, -85.6412444487716, 41.93358322401489], "geometry": {"coordinates": [-85.6412444487716, 41.93358322401489], "type": "Point"}, "id": "4590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64123723485123, 41.93371801901291, -85.64123723485123, 41.93371801901291], "geometry": {"coordinates": [-85.64123723485123, 41.93371801901291], "type": "Point"}, "id": "4591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64123002093086, 41.93385281372605, -85.64123002093086, 41.93385281372605], "geometry": {"coordinates": [-85.64123002093086, 41.93385281372605], "type": "Point"}, "id": "4592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412247675445, 41.93398763901246, -85.6412247675445, 41.93398763901246], "geometry": {"coordinates": [-85.6412247675445, 41.93398763901246], "type": "Point"}, "id": "4593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412243110093, 41.9341225395145, -85.6412243110093, 41.9341225395145], "geometry": {"coordinates": [-85.6412243110093, 41.9341225395145], "type": "Point"}, "id": "4594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122385447408, 41.93425743973121, -85.64122385447408, 41.93425743973121], "geometry": {"coordinates": [-85.64122385447408, 41.93425743973121], "type": "Point"}, "id": "4595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122339793886, 41.934392339662615, -85.64122339793886, 41.934392339662615], "geometry": {"coordinates": [-85.64122339793886, 41.934392339662615], "type": "Point"}, "id": "4596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122294140365, 41.93452723930869, -85.64122294140365, 41.93452723930869], "geometry": {"coordinates": [-85.64122294140365, 41.93452723930869], "type": "Point"}, "id": "4597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122248486844, 41.93466213866944, -85.64122248486844, 41.93466213866944], "geometry": {"coordinates": [-85.64122248486844, 41.93466213866944], "type": "Point"}, "id": "4598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122202833323, 41.934797037744865, -85.64122202833323, 41.934797037744865], "geometry": {"coordinates": [-85.64122202833323, 41.934797037744865], "type": "Point"}, "id": "4599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122157179801, 41.934931936534966, -85.64122157179801, 41.934931936534966], "geometry": {"coordinates": [-85.64122157179801, 41.934931936534966], "type": "Point"}, "id": "4600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412183154342, 41.93506680401006, -85.6412183154342, 41.93506680401006], "geometry": {"coordinates": [-85.6412183154342, 41.93506680401006], "type": "Point"}, "id": "4601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64121336977598, 41.93520165247807, -85.64121336977598, 41.93520165247807], "geometry": {"coordinates": [-85.64121336977598, 41.93520165247807], "type": "Point"}, "id": "4602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64120842411778, 41.93533650066096, -85.64120842411778, 41.93533650066096], "geometry": {"coordinates": [-85.64120842411778, 41.93533650066096], "type": "Point"}, "id": "4603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64120347845957, 41.93547134855872, -85.64120347845957, 41.93547134855872], "geometry": {"coordinates": [-85.64120347845957, 41.93547134855872], "type": "Point"}, "id": "4604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64119853280137, 41.935606196171385, -85.64119853280137, 41.935606196171385], "geometry": {"coordinates": [-85.64119853280137, 41.935606196171385], "type": "Point"}, "id": "4605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64119358714315, 41.93574104349892, -85.64119358714315, 41.93574104349892], "geometry": {"coordinates": [-85.64119358714315, 41.93574104349892], "type": "Point"}, "id": "4606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64118864148494, 41.935875890541354, -85.64118864148494, 41.935875890541354], "geometry": {"coordinates": [-85.64118864148494, 41.935875890541354], "type": "Point"}, "id": "4607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64118369582674, 41.93601073729867, -85.64118369582674, 41.93601073729867], "geometry": {"coordinates": [-85.64118369582674, 41.93601073729867], "type": "Point"}, "id": "4608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64117875016854, 41.93614558377086, -85.64117875016854, 41.93614558377086], "geometry": {"coordinates": [-85.64117875016854, 41.93614558377086], "type": "Point"}, "id": "4609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64117380451033, 41.93628042995796, -85.64117380451033, 41.93628042995796], "geometry": {"coordinates": [-85.64117380451033, 41.93628042995796], "type": "Point"}, "id": "4610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64116885885211, 41.93641527585992, -85.64116885885211, 41.93641527585992], "geometry": {"coordinates": [-85.64116885885211, 41.93641527585992], "type": "Point"}, "id": "4611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64116391319389, 41.93655012147678, -85.64116391319389, 41.93655012147678], "geometry": {"coordinates": [-85.64116391319389, 41.93655012147678], "type": "Point"}, "id": "4612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6411589675357, 41.936684966808514, -85.6411589675357, 41.936684966808514], "geometry": {"coordinates": [-85.6411589675357, 41.936684966808514], "type": "Point"}, "id": "4613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6411540218775, 41.936819811855145, -85.6411540218775, 41.936819811855145], "geometry": {"coordinates": [-85.6411540218775, 41.936819811855145], "type": "Point"}, "id": "4614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64114907621928, 41.936954656616656, -85.64114907621928, 41.936954656616656], "geometry": {"coordinates": [-85.64114907621928, 41.936954656616656], "type": "Point"}, "id": "4615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64114479455638, 41.93708951341209, -85.64114479455638, 41.93708951341209], "geometry": {"coordinates": [-85.64114479455638, 41.93708951341209], "type": "Point"}, "id": "4616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64114069757261, 41.93722437334869, -85.64114069757261, 41.93722437334869], "geometry": {"coordinates": [-85.64114069757261, 41.93722437334869], "type": "Point"}, "id": "4617", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64113660058882, 41.937359233000095, -85.64113660058882, 41.937359233000095], "geometry": {"coordinates": [-85.64113660058882, 41.937359233000095], "type": "Point"}, "id": "4618", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64113250360506, 41.93749409236633, -85.64113250360506, 41.93749409236633], "geometry": {"coordinates": [-85.64113250360506, 41.93749409236633], "type": "Point"}, "id": "4619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64112840662128, 41.93762895144738, -85.64112840662128, 41.93762895144738], "geometry": {"coordinates": [-85.64112840662128, 41.93762895144738], "type": "Point"}, "id": "4620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64112430963749, 41.93776381024324, -85.64112430963749, 41.93776381024324], "geometry": {"coordinates": [-85.64112430963749, 41.93776381024324], "type": "Point"}, "id": "4621", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6411202126537, 41.937898668753924, -85.6411202126537, 41.937898668753924], "geometry": {"coordinates": [-85.6411202126537, 41.937898668753924], "type": "Point"}, "id": "4622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64111611566994, 41.938033526979424, -85.64111611566994, 41.938033526979424], "geometry": {"coordinates": [-85.64111611566994, 41.938033526979424], "type": "Point"}, "id": "4623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64111201868616, 41.93816838491974, -85.64111201868616, 41.93816838491974], "geometry": {"coordinates": [-85.64111201868616, 41.93816838491974], "type": "Point"}, "id": "4624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.641110713122, 41.93830327343712, -85.641110713122, 41.93830327343712], "geometry": {"coordinates": [-85.641110713122, 41.93830327343712], "type": "Point"}, "id": "4625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110942034773, 41.938438161810595, -85.64110942034773, 41.938438161810595], "geometry": {"coordinates": [-85.64110942034773, 41.938438161810595], "type": "Point"}, "id": "4626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110812757343, 41.93857304989874, -85.64110812757343, 41.93857304989874], "geometry": {"coordinates": [-85.64110812757343, 41.93857304989874], "type": "Point"}, "id": "4627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110683479916, 41.93870793770159, -85.64110683479916, 41.93870793770159], "geometry": {"coordinates": [-85.64110683479916, 41.93870793770159], "type": "Point"}, "id": "4628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110554202486, 41.938842825219105, -85.64110554202486, 41.938842825219105], "geometry": {"coordinates": [-85.64110554202486, 41.938842825219105], "type": "Point"}, "id": "4629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110424925059, 41.93897771245132, -85.64110424925059, 41.93897771245132], "geometry": {"coordinates": [-85.64110424925059, 41.93897771245132], "type": "Point"}, "id": "4630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110295647629, 41.93911259939821, -85.64110295647629, 41.93911259939821], "geometry": {"coordinates": [-85.64110295647629, 41.93911259939821], "type": "Point"}, "id": "4631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110166370202, 41.93924748605979, -85.64110166370202, 41.93924748605979], "geometry": {"coordinates": [-85.64110166370202, 41.93924748605979], "type": "Point"}, "id": "4632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110037092773, 41.93938237243605, -85.64110037092773, 41.93938237243605], "geometry": {"coordinates": [-85.64110037092773, 41.93938237243605], "type": "Point"}, "id": "4633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64109907815345, 41.93951725852699, -85.64109907815345, 41.93951725852699], "geometry": {"coordinates": [-85.64109907815345, 41.93951725852699], "type": "Point"}, "id": "4634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64109778537916, 41.93965214433261, -85.64109778537916, 41.93965214433261], "geometry": {"coordinates": [-85.64109778537916, 41.93965214433261], "type": "Point"}, "id": "4635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64109649260487, 41.93978702985293, -85.64109649260487, 41.93978702985293], "geometry": {"coordinates": [-85.64109649260487, 41.93978702985293], "type": "Point"}, "id": "4636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64109519983059, 41.939921915087936, -85.64109519983059, 41.939921915087936], "geometry": {"coordinates": [-85.64109519983059, 41.939921915087936], "type": "Point"}, "id": "4637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6263285, 41.928331, -85.6263285, 41.928331], "geometry": {"coordinates": [-85.6263285, 41.928331], "type": "Point"}, "id": "4638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62651316105969, 41.928330049988894, -85.62651316105969, 41.928330049988894], "geometry": {"coordinates": [-85.62651316105969, 41.928330049988894], "type": "Point"}, "id": "4639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62669782211938, 41.928329099977766, -85.62669782211938, 41.928329099977766], "geometry": {"coordinates": [-85.62669782211938, 41.928329099977766], "type": "Point"}, "id": "4640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62688248317907, 41.928328149966624, -85.62688248317907, 41.928328149966624], "geometry": {"coordinates": [-85.62688248317907, 41.928328149966624], "type": "Point"}, "id": "4641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62706714423875, 41.92832719995548, -85.62706714423875, 41.92832719995548], "geometry": {"coordinates": [-85.62706714423875, 41.92832719995548], "type": "Point"}, "id": "4642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62725180529844, 41.92832624994432, -85.62725180529844, 41.92832624994432], "geometry": {"coordinates": [-85.62725180529844, 41.92832624994432], "type": "Point"}, "id": "4643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62743646635815, 41.928325299933135, -85.62743646635815, 41.928325299933135], "geometry": {"coordinates": [-85.62743646635815, 41.928325299933135], "type": "Point"}, "id": "4644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62762112741783, 41.928324349921944, -85.62762112741783, 41.928324349921944], "geometry": {"coordinates": [-85.62762112741783, 41.928324349921944], "type": "Point"}, "id": "4645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62780578847752, 41.92832339991073, -85.62780578847752, 41.92832339991073], "geometry": {"coordinates": [-85.62780578847752, 41.92832339991073], "type": "Point"}, "id": "4646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62799044953721, 41.92832244989951, -85.62799044953721, 41.92832244989951], "geometry": {"coordinates": [-85.62799044953721, 41.92832244989951], "type": "Point"}, "id": "4647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62817511065403, 41.928321506074816, -85.62817511065403, 41.928321506074816], "geometry": {"coordinates": [-85.62817511065403, 41.928321506074816], "type": "Point"}, "id": "4648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62835977182228, 41.92832056781551, -85.62835977182228, 41.92832056781551], "geometry": {"coordinates": [-85.62835977182228, 41.92832056781551], "type": "Point"}, "id": "4649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62854443299054, 41.92831962955619, -85.62854443299054, 41.92831962955619], "geometry": {"coordinates": [-85.62854443299054, 41.92831962955619], "type": "Point"}, "id": "4650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62872909415877, 41.928318691296866, -85.62872909415877, 41.928318691296866], "geometry": {"coordinates": [-85.62872909415877, 41.928318691296866], "type": "Point"}, "id": "4651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.628913755327, 41.92831775303752, -85.628913755327, 41.92831775303752], "geometry": {"coordinates": [-85.628913755327, 41.92831775303752], "type": "Point"}, "id": "4652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62909841649525, 41.928316814778164, -85.62909841649525, 41.928316814778164], "geometry": {"coordinates": [-85.62909841649525, 41.928316814778164], "type": "Point"}, "id": "4653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.6292830776635, 41.92831587651879, -85.6292830776635, 41.92831587651879], "geometry": {"coordinates": [-85.6292830776635, 41.92831587651879], "type": "Point"}, "id": "4654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62946773883174, 41.928314938259405, -85.62946773883174, 41.928314938259405], "geometry": {"coordinates": [-85.62946773883174, 41.928314938259405], "type": "Point"}, "id": "4655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.6477466, 41.94587239999999, -85.6477466, 41.94587239999999], "geometry": {"coordinates": [-85.6477466, 41.94587239999999], "type": "Point"}, "id": "4656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64791018243203, 41.94581228301369, -85.64791018243203, 41.94581228301369], "geometry": {"coordinates": [-85.64791018243203, 41.94581228301369], "type": "Point"}, "id": "4657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64800095693231, 41.94569804229043, -85.64800095693231, 41.94569804229043], "geometry": {"coordinates": [-85.64800095693231, 41.94569804229043], "type": "Point"}, "id": "4658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64802895135705, 41.94556581204468, -85.64802895135705, 41.94556581204468], "geometry": {"coordinates": [-85.64802895135705, 41.94556581204468], "type": "Point"}, "id": "4659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.6480271494466, 41.9454301073542, -85.6480271494466, 41.9454301073542], "geometry": {"coordinates": [-85.6480271494466, 41.9454301073542], "type": "Point"}, "id": "4660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64802534753616, 41.94529440237488, -85.64802534753616, 41.94529440237488], "geometry": {"coordinates": [-85.64802534753616, 41.94529440237488], "type": "Point"}, "id": "4661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64802354562569, 41.94515869710669, -85.64802354562569, 41.94515869710669], "geometry": {"coordinates": [-85.64802354562569, 41.94515869710669], "type": "Point"}, "id": "4662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64802174371525, 41.94502299154967, -85.64802174371525, 41.94502299154967], "geometry": {"coordinates": [-85.64802174371525, 41.94502299154967], "type": "Point"}, "id": "4663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801994180479, 41.94488728570379, -85.64801994180479, 41.94488728570379], "geometry": {"coordinates": [-85.64801994180479, 41.94488728570379], "type": "Point"}, "id": "4664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801814116512, 41.94475157955974, -85.64801814116512, 41.94475157955974], "geometry": {"coordinates": [-85.64801814116512, 41.94475157955974], "type": "Point"}, "id": "4665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.6480163456135, 41.94461587308954, -85.6480163456135, 41.94461587308954], "geometry": {"coordinates": [-85.6480163456135, 41.94461587308954], "type": "Point"}, "id": "4666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801455006189, 41.944480166330486, -85.64801455006189, 41.944480166330486], "geometry": {"coordinates": [-85.64801455006189, 41.944480166330486], "type": "Point"}, "id": "4667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801275451025, 41.944344459282576, -85.64801275451025, 41.944344459282576], "geometry": {"coordinates": [-85.64801275451025, 41.944344459282576], "type": "Point"}, "id": "4668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801095895862, 41.944208751945816, -85.64801095895862, 41.944208751945816], "geometry": {"coordinates": [-85.64801095895862, 41.944208751945816], "type": "Point"}, "id": "4669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.6332888, 41.9456871, -85.6332888, 41.9456871], "geometry": {"coordinates": [-85.6332888, 41.9456871], "type": "Point"}, "id": "4670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6332039913496, 41.94580555268623, -85.6332039913496, 41.94580555268623], "geometry": {"coordinates": [-85.6332039913496, 41.94580555268623], "type": "Point"}, "id": "4671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63311918269922, 41.945924005152364, -85.63311918269922, 41.945924005152364], "geometry": {"coordinates": [-85.63311918269922, 41.945924005152364], "type": "Point"}, "id": "4672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63303437404883, 41.946042457398434, -85.63303437404883, 41.946042457398434], "geometry": {"coordinates": [-85.63303437404883, 41.946042457398434], "type": "Point"}, "id": "4673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63294956539845, 41.946160909424414, -85.63294956539845, 41.946160909424414], "geometry": {"coordinates": [-85.63294956539845, 41.946160909424414], "type": "Point"}, "id": "4674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63286475198606, 41.946279359344025, -85.63286475198606, 41.946279359344025], "geometry": {"coordinates": [-85.63286475198606, 41.946279359344025], "type": "Point"}, "id": "4675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63277992989313, 41.946397805605066, -85.63277992989313, 41.946397805605066], "geometry": {"coordinates": [-85.63277992989313, 41.946397805605066], "type": "Point"}, "id": "4676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63269510780019, 41.94651625164603, -85.63269510780019, 41.94651625164603], "geometry": {"coordinates": [-85.63269510780019, 41.94651625164603], "type": "Point"}, "id": "4677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63261028570724, 41.94663469746694, -85.63261028570724, 41.94663469746694], "geometry": {"coordinates": [-85.63261028570724, 41.94663469746694], "type": "Point"}, "id": "4678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63252546361431, 41.94675314306779, -85.63252546361431, 41.94675314306779], "geometry": {"coordinates": [-85.63252546361431, 41.94675314306779], "type": "Point"}, "id": "4679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63244064152137, 41.94687158844859, -85.63244064152137, 41.94687158844859], "geometry": {"coordinates": [-85.63244064152137, 41.94687158844859], "type": "Point"}, "id": "4680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63235581942844, 41.94699003360932, -85.63235581942844, 41.94699003360932], "geometry": {"coordinates": [-85.63235581942844, 41.94699003360932], "type": "Point"}, "id": "4681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6322709973355, 41.94710847854999, -85.6322709973355, 41.94710847854999], "geometry": {"coordinates": [-85.6322709973355, 41.94710847854999], "type": "Point"}, "id": "4682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63218617524255, 41.9472269232706, -85.63218617524255, 41.9472269232706], "geometry": {"coordinates": [-85.63218617524255, 41.9472269232706], "type": "Point"}, "id": "4683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63210135314962, 41.94734536777116, -85.63210135314962, 41.94734536777116], "geometry": {"coordinates": [-85.63210135314962, 41.94734536777116], "type": "Point"}, "id": "4684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63201653105668, 41.94746381205166, -85.63201653105668, 41.94746381205166], "geometry": {"coordinates": [-85.63201653105668, 41.94746381205166], "type": "Point"}, "id": "4685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63193170896375, 41.94758225611209, -85.63193170896375, 41.94758225611209], "geometry": {"coordinates": [-85.63193170896375, 41.94758225611209], "type": "Point"}, "id": "4686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6318468868708, 41.94770069995246, -85.6318468868708, 41.94770069995246], "geometry": {"coordinates": [-85.6318468868708, 41.94770069995246], "type": "Point"}, "id": "4687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63176206477786, 41.94781914357278, -85.63176206477786, 41.94781914357278], "geometry": {"coordinates": [-85.63176206477786, 41.94781914357278], "type": "Point"}, "id": "4688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63167724268493, 41.947937586973026, -85.63167724268493, 41.947937586973026], "geometry": {"coordinates": [-85.63167724268493, 41.947937586973026], "type": "Point"}, "id": "4689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63159242059199, 41.948056030153225, -85.63159242059199, 41.948056030153225], "geometry": {"coordinates": [-85.63159242059199, 41.948056030153225], "type": "Point"}, "id": "4690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63150759849906, 41.948174473113355, -85.63150759849906, 41.948174473113355], "geometry": {"coordinates": [-85.63150759849906, 41.948174473113355], "type": "Point"}, "id": "4691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63142277640611, 41.94829291585342, -85.63142277640611, 41.94829291585342], "geometry": {"coordinates": [-85.63142277640611, 41.94829291585342], "type": "Point"}, "id": "4692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63133171457507, 41.948408766157996, -85.63133171457507, 41.948408766157996], "geometry": {"coordinates": [-85.63133171457507, 41.948408766157996], "type": "Point"}, "id": "4693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63124059510193, 41.948524592305446, -85.63124059510193, 41.948524592305446], "geometry": {"coordinates": [-85.63124059510193, 41.948524592305446], "type": "Point"}, "id": "4694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63114947562876, 41.948640418242434, -85.63114947562876, 41.948640418242434], "geometry": {"coordinates": [-85.63114947562876, 41.948640418242434], "type": "Point"}, "id": "4695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63105835615563, 41.94875624396899, -85.63105835615563, 41.94875624396899], "geometry": {"coordinates": [-85.63105835615563, 41.94875624396899], "type": "Point"}, "id": "4696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63098220692825, 41.94887744444033, -85.63098220692825, 41.94887744444033], "geometry": {"coordinates": [-85.63098220692825, 41.94887744444033], "type": "Point"}, "id": "4697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6309169402819, 41.94900255198316, -85.6309169402819, 41.94900255198316], "geometry": {"coordinates": [-85.6309169402819, 41.94900255198316], "type": "Point"}, "id": "4698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63083692192335, 41.94912254188827, -85.63083692192335, 41.94912254188827], "geometry": {"coordinates": [-85.63083692192335, 41.94912254188827], "type": "Point"}, "id": "4699", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63074948875555, 41.949239925801976, -85.63074948875555, 41.949239925801976], "geometry": {"coordinates": [-85.63074948875555, 41.949239925801976], "type": "Point"}, "id": "4700", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63066068135076, 41.94935673956904, -85.63066068135076, 41.94935673956904], "geometry": {"coordinates": [-85.63066068135076, 41.94935673956904], "type": "Point"}, "id": "4701", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63057187394597, 41.949473553122054, -85.63057187394597, 41.949473553122054], "geometry": {"coordinates": [-85.63057187394597, 41.949473553122054], "type": "Point"}, "id": "4702", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63048306654116, 41.94959036646102, -85.63048306654116, 41.94959036646102], "geometry": {"coordinates": [-85.63048306654116, 41.94959036646102], "type": "Point"}, "id": "4703", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63039425913635, 41.94970717958591, -85.63039425913635, 41.94970717958591], "geometry": {"coordinates": [-85.63039425913635, 41.94970717958591], "type": "Point"}, "id": "4704", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63030545173156, 41.949823992496746, -85.63030545173156, 41.949823992496746], "geometry": {"coordinates": [-85.63030545173156, 41.949823992496746], "type": "Point"}, "id": "4705", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63021664432675, 41.949940805193535, -85.63021664432675, 41.949940805193535], "geometry": {"coordinates": [-85.63021664432675, 41.949940805193535], "type": "Point"}, "id": "4706", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63012783692194, 41.950057617676265, -85.63012783692194, 41.950057617676265], "geometry": {"coordinates": [-85.63012783692194, 41.950057617676265], "type": "Point"}, "id": "4707", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63003933738378, 41.95017455703304, -85.63003933738378, 41.95017455703304], "geometry": {"coordinates": [-85.63003933738378, 41.95017455703304], "type": "Point"}, "id": "4708", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62995302219721, 41.95029239787935, -85.62995302219721, 41.95029239787935], "geometry": {"coordinates": [-85.62995302219721, 41.95029239787935], "type": "Point"}, "id": "4709", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62986670701065, 41.95041023850782, -85.62986670701065, 41.95041023850782], "geometry": {"coordinates": [-85.62986670701065, 41.95041023850782], "type": "Point"}, "id": "4710", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62978039182406, 41.95052807891844, -85.62978039182406, 41.95052807891844], "geometry": {"coordinates": [-85.62978039182406, 41.95052807891844], "type": "Point"}, "id": "4711", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62969407663749, 41.95064591911121, -85.62969407663749, 41.95064591911121], "geometry": {"coordinates": [-85.62969407663749, 41.95064591911121], "type": "Point"}, "id": "4712", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62960776145091, 41.950763759086136, -85.62960776145091, 41.950763759086136], "geometry": {"coordinates": [-85.62960776145091, 41.950763759086136], "type": "Point"}, "id": "4713", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62952144626433, 41.95088159884323, -85.62952144626433, 41.95088159884323], "geometry": {"coordinates": [-85.62952144626433, 41.95088159884323], "type": "Point"}, "id": "4714", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62943513107777, 41.95099943838247, -85.62943513107777, 41.95099943838247], "geometry": {"coordinates": [-85.62943513107777, 41.95099943838247], "type": "Point"}, "id": "4715", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62935039119878, 41.951117907199816, -85.62935039119878, 41.951117907199816], "geometry": {"coordinates": [-85.62935039119878, 41.951117907199816], "type": "Point"}, "id": "4716", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62926590892455, 41.951236478736135, -85.62926590892455, 41.951236478736135], "geometry": {"coordinates": [-85.62926590892455, 41.951236478736135], "type": "Point"}, "id": "4717", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62919575913405, 41.951360001071656, -85.62919575913405, 41.951360001071656], "geometry": {"coordinates": [-85.62919575913405, 41.951360001071656], "type": "Point"}, "id": "4718", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62912843405618, 41.95148449893592, -85.62912843405618, 41.95148449893592], "geometry": {"coordinates": [-85.62912843405618, 41.95148449893592], "type": "Point"}, "id": "4719", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62905241598389, 41.95160618944888, -85.62905241598389, 41.95160618944888], "geometry": {"coordinates": [-85.62905241598389, 41.95160618944888], "type": "Point"}, "id": "4720", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62897398572274, 41.95172698624531, -85.62897398572274, 41.95172698624531], "geometry": {"coordinates": [-85.62897398572274, 41.95172698624531], "type": "Point"}, "id": "4721", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62888697296928, 41.95184454012442, -85.62888697296928, 41.95184454012442], "geometry": {"coordinates": [-85.62888697296928, 41.95184454012442], "type": "Point"}, "id": "4722", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62879996021582, 41.95196209378673, -85.62879996021582, 41.95196209378673], "geometry": {"coordinates": [-85.62879996021582, 41.95196209378673], "type": "Point"}, "id": "4723", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62871294746236, 41.95207964723225, -85.62871294746236, 41.95207964723225], "geometry": {"coordinates": [-85.62871294746236, 41.95207964723225], "type": "Point"}, "id": "4724", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62863007299045, 41.952198823624784, -85.62863007299045, 41.952198823624784], "geometry": {"coordinates": [-85.62863007299045, 41.952198823624784], "type": "Point"}, "id": "4725", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62854876992716, 41.95231861614907, -85.62854876992716, 41.95231861614907], "geometry": {"coordinates": [-85.62854876992716, 41.95231861614907], "type": "Point"}, "id": "4726", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62846746686387, 41.95243840844822, -85.62846746686387, 41.95243840844822], "geometry": {"coordinates": [-85.62846746686387, 41.95243840844822], "type": "Point"}, "id": "4727", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62838616380057, 41.952558200522226, -85.62838616380057, 41.952558200522226], "geometry": {"coordinates": [-85.62838616380057, 41.952558200522226], "type": "Point"}, "id": "4728", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6283044240404, 41.952677822847555, -85.6283044240404, 41.952677822847555], "geometry": {"coordinates": [-85.6283044240404, 41.952677822847555], "type": "Point"}, "id": "4729", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62821875881363, 41.952795921104695, -85.62821875881363, 41.952795921104695], "geometry": {"coordinates": [-85.62821875881363, 41.952795921104695], "type": "Point"}, "id": "4730", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6281330935869, 41.95291401914301, -85.6281330935869, 41.95291401914301], "geometry": {"coordinates": [-85.6281330935869, 41.95291401914301], "type": "Point"}, "id": "4731", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62804742836015, 41.95303211696251, -85.62804742836015, 41.95303211696251], "geometry": {"coordinates": [-85.62804742836015, 41.95303211696251], "type": "Point"}, "id": "4732", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6279617631334, 41.953150214563195, -85.6279617631334, 41.953150214563195], "geometry": {"coordinates": [-85.6279617631334, 41.953150214563195], "type": "Point"}, "id": "4733", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62787609790666, 41.95326831194507, -85.62787609790666, 41.95326831194507], "geometry": {"coordinates": [-85.62787609790666, 41.95326831194507], "type": "Point"}, "id": "4734", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6277904326799, 41.95338640910811, -85.6277904326799, 41.95338640910811], "geometry": {"coordinates": [-85.6277904326799, 41.95338640910811], "type": "Point"}, "id": "4735", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62770476745315, 41.95350450605234, -85.62770476745315, 41.95350450605234], "geometry": {"coordinates": [-85.62770476745315, 41.95350450605234], "type": "Point"}, "id": "4736", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62762089344706, 41.95362330924674, -85.62762089344706, 41.95362330924674], "geometry": {"coordinates": [-85.62762089344706, 41.95362330924674], "type": "Point"}, "id": "4737", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62753748816661, 41.953742297087764, -85.62753748816661, 41.953742297087764], "geometry": {"coordinates": [-85.62753748816661, 41.953742297087764], "type": "Point"}, "id": "4738", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62745408288615, 41.953861284706655, -85.62745408288615, 41.953861284706655], "geometry": {"coordinates": [-85.62745408288615, 41.953861284706655], "type": "Point"}, "id": "4739", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62737369448972, 41.95398134861296, -85.62737369448972, 41.95398134861296], "geometry": {"coordinates": [-85.62737369448972, 41.95398134861296], "type": "Point"}, "id": "4740", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62730107815551, 41.95410418557938, -85.62730107815551, 41.95410418557938], "geometry": {"coordinates": [-85.62730107815551, 41.95410418557938], "type": "Point"}, "id": "4741", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6272106830859, 41.9542200838154, -85.6272106830859, 41.9542200838154], "geometry": {"coordinates": [-85.6272106830859, 41.9542200838154], "type": "Point"}, "id": "4742", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62711601231443, 41.954334313168644, -85.62711601231443, 41.954334313168644], "geometry": {"coordinates": [-85.62711601231443, 41.954334313168644], "type": "Point"}, "id": "4743", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62702134154296, 41.95444854231715, -85.62702134154296, 41.95444854231715], "geometry": {"coordinates": [-85.62702134154296, 41.95444854231715], "type": "Point"}, "id": "4744", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62692667077148, 41.954562771260946, -85.62692667077148, 41.954562771260946], "geometry": {"coordinates": [-85.62692667077148, 41.954562771260946], "type": "Point"}, "id": "4745", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6455734, 41.9328206, -85.6455734, 41.9328206], "geometry": {"coordinates": [-85.6455734, 41.9328206], "type": "Point"}, "id": "4746", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64558950042222, 41.93295393624245, -85.64558950042222, 41.93295393624245], "geometry": {"coordinates": [-85.64558950042222, 41.93295393624245], "type": "Point"}, "id": "4747", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64560560084445, 41.93308727220617, -85.64560560084445, 41.93308727220617], "geometry": {"coordinates": [-85.64560560084445, 41.93308727220617], "type": "Point"}, "id": "4748", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64562170126666, 41.93322060789116, -85.64562170126666, 41.93322060789116], "geometry": {"coordinates": [-85.64562170126666, 41.93322060789116], "type": "Point"}, "id": "4749", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64563780168889, 41.933353943297405, -85.64563780168889, 41.933353943297405], "geometry": {"coordinates": [-85.64563780168889, 41.933353943297405], "type": "Point"}, "id": "4750", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.6456539021111, 41.933487278424934, -85.6456539021111, 41.933487278424934], "geometry": {"coordinates": [-85.6456539021111, 41.933487278424934], "type": "Point"}, "id": "4751", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64566590095426, 41.9336208209495, -85.64566590095426, 41.9336208209495], "geometry": {"coordinates": [-85.64566590095426, 41.9336208209495], "type": "Point"}, "id": "4752", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64567423461425, 41.93375454877377, -85.64567423461425, 41.93375454877377], "geometry": {"coordinates": [-85.64567423461425, 41.93375454877377], "type": "Point"}, "id": "4753", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64568256827424, 41.93388827631767, -85.64568256827424, 41.93388827631767], "geometry": {"coordinates": [-85.64568256827424, 41.93388827631767], "type": "Point"}, "id": "4754", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64568104776808, 41.93402189100292, -85.64568104776808, 41.93402189100292], "geometry": {"coordinates": [-85.64568104776808, 41.93402189100292], "type": "Point"}, "id": "4755", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64566719808693, 41.93415536455475, -85.64566719808693, 41.93415536455475], "geometry": {"coordinates": [-85.64566719808693, 41.93415536455475], "type": "Point"}, "id": "4756", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64565334840576, 41.93428883782726, -85.64565334840576, 41.93428883782726], "geometry": {"coordinates": [-85.64565334840576, 41.93428883782726], "type": "Point"}, "id": "4757", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.6456394987246, 41.93442231082045, -85.6456394987246, 41.93442231082045], "geometry": {"coordinates": [-85.6456394987246, 41.93442231082045], "type": "Point"}, "id": "4758", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64562564904347, 41.93455578353431, -85.64562564904347, 41.93455578353431], "geometry": {"coordinates": [-85.64562564904347, 41.93455578353431], "type": "Point"}, "id": "4759", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.6456117993623, 41.93468925596886, -85.6456117993623, 41.93468925596886], "geometry": {"coordinates": [-85.6456117993623, 41.93468925596886], "type": "Point"}, "id": "4760", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.64559794968115, 41.93482272812409, -85.64559794968115, 41.93482272812409], "geometry": {"coordinates": [-85.64559794968115, 41.93482272812409], "type": "Point"}, "id": "4761", "properties": {"__folium_color": "red", "highway": "track", "osm_id": 203984751}, "type": "Feature"}, {"bbox": [-85.632182, 41.961493, -85.632182, 41.961493], "geometry": {"coordinates": [-85.632182, 41.961493], "type": "Point"}, "id": "4762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63218028110649, 41.96135881132385, -85.63218028110649, 41.96135881132385], "geometry": {"coordinates": [-85.63218028110649, 41.96135881132385], "type": "Point"}, "id": "4763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217856221294, 41.961224622365094, -85.63217856221294, 41.961224622365094], "geometry": {"coordinates": [-85.63217856221294, 41.961224622365094], "type": "Point"}, "id": "4764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217684331943, 41.961090433123765, -85.63217684331943, 41.961090433123765], "geometry": {"coordinates": [-85.63217684331943, 41.961090433123765], "type": "Point"}, "id": "4765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217512442591, 41.96095624359984, -85.63217512442591, 41.96095624359984], "geometry": {"coordinates": [-85.63217512442591, 41.96095624359984], "type": "Point"}, "id": "4766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217340553237, 41.96082205379333, -85.63217340553237, 41.96082205379333], "geometry": {"coordinates": [-85.63217340553237, 41.96082205379333], "type": "Point"}, "id": "4767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217168663886, 41.960687863704216, -85.63217168663886, 41.960687863704216], "geometry": {"coordinates": [-85.63217168663886, 41.960687863704216], "type": "Point"}, "id": "4768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63216998797466, 41.96055367319013, -85.63216998797466, 41.96055367319013], "geometry": {"coordinates": [-85.63216998797466, 41.96055367319013], "type": "Point"}, "id": "4769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321682903842, 41.96041948238588, -85.6321682903842, 41.96041948238588], "geometry": {"coordinates": [-85.6321682903842, 41.96041948238588], "type": "Point"}, "id": "4770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63216659279375, 41.96028529129905, -85.63216659279375, 41.96028529129905], "geometry": {"coordinates": [-85.63216659279375, 41.96028529129905], "type": "Point"}, "id": "4771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321648952033, 41.960151099929625, -85.6321648952033, 41.960151099929625], "geometry": {"coordinates": [-85.6321648952033, 41.960151099929625], "type": "Point"}, "id": "4772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63216319761284, 41.96001690827762, -85.63216319761284, 41.96001690827762], "geometry": {"coordinates": [-85.63216319761284, 41.96001690827762], "type": "Point"}, "id": "4773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321615000224, 41.95988271634301, -85.6321615000224, 41.95988271634301], "geometry": {"coordinates": [-85.6321615000224, 41.95988271634301], "type": "Point"}, "id": "4774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215978244746, 41.95974852426662, -85.63215978244746, 41.95974852426662], "geometry": {"coordinates": [-85.63215978244746, 41.95974852426662], "type": "Point"}, "id": "4775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215806058236, 41.95961433193786, -85.63215806058236, 41.95961433193786], "geometry": {"coordinates": [-85.63215806058236, 41.95961433193786], "type": "Point"}, "id": "4776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215633871727, 41.9594801393265, -85.63215633871727, 41.9594801393265], "geometry": {"coordinates": [-85.63215633871727, 41.9594801393265], "type": "Point"}, "id": "4777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215461685213, 41.95934594643256, -85.63215461685213, 41.95934594643256], "geometry": {"coordinates": [-85.63215461685213, 41.95934594643256], "type": "Point"}, "id": "4778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215289498703, 41.959211753256035, -85.63215289498703, 41.959211753256035], "geometry": {"coordinates": [-85.63215289498703, 41.959211753256035], "type": "Point"}, "id": "4779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215117312194, 41.959077559796924, -85.63215117312194, 41.959077559796924], "geometry": {"coordinates": [-85.63215117312194, 41.959077559796924], "type": "Point"}, "id": "4780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214947128517, 41.958943365914465, -85.63214947128517, 41.958943365914465], "geometry": {"coordinates": [-85.63214947128517, 41.958943365914465], "type": "Point"}, "id": "4781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214778230338, 41.958809171659084, -85.63214778230338, 41.958809171659084], "geometry": {"coordinates": [-85.63214778230338, 41.958809171659084], "type": "Point"}, "id": "4782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214609332155, 41.95867497712111, -85.63214609332155, 41.95867497712111], "geometry": {"coordinates": [-85.63214609332155, 41.95867497712111], "type": "Point"}, "id": "4783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214374080178, 41.95854078884466, -85.63214374080178, 41.95854078884466], "geometry": {"coordinates": [-85.63214374080178, 41.95854078884466], "type": "Point"}, "id": "4784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214064329976, 41.95840660763303, -85.63214064329976, 41.95840660763303], "geometry": {"coordinates": [-85.63214064329976, 41.95840660763303], "type": "Point"}, "id": "4785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63213755931763, 41.95827242596667, -85.63213755931763, 41.95827242596667], "geometry": {"coordinates": [-85.63213755931763, 41.95827242596667], "type": "Point"}, "id": "4786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63213447531288, 41.95813824401805, -85.63213447531288, 41.95813824401805], "geometry": {"coordinates": [-85.63213447531288, 41.95813824401805], "type": "Point"}, "id": "4787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63213138863449, 41.95800406182091, -85.63213138863449, 41.95800406182091], "geometry": {"coordinates": [-85.63213138863449, 41.95800406182091], "type": "Point"}, "id": "4788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63212830195612, 41.95786987934122, -85.63212830195612, 41.95786987934122], "geometry": {"coordinates": [-85.63212830195612, 41.95786987934122], "type": "Point"}, "id": "4789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63212523346446, 41.95773569634838, -85.63212523346446, 41.95773569634838], "geometry": {"coordinates": [-85.63212523346446, 41.95773569634838], "type": "Point"}, "id": "4790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63212216624606, 41.95760151305687, -85.63212216624606, 41.95760151305687], "geometry": {"coordinates": [-85.63212216624606, 41.95760151305687], "type": "Point"}, "id": "4791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211909902766, 41.957467329482824, -85.63211909902766, 41.957467329482824], "geometry": {"coordinates": [-85.63211909902766, 41.957467329482824], "type": "Point"}, "id": "4792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211743665781, 41.95733313492326, -85.63211743665781, 41.95733313492326], "geometry": {"coordinates": [-85.63211743665781, 41.95733313492326], "type": "Point"}, "id": "4793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211680638085, 41.95719893221799, -85.63211680638085, 41.95719893221799], "geometry": {"coordinates": [-85.63211680638085, 41.95719893221799], "type": "Point"}, "id": "4794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321161761039, 41.957064729230105, -85.6321161761039, 41.957064729230105], "geometry": {"coordinates": [-85.6321161761039, 41.957064729230105], "type": "Point"}, "id": "4795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211554582695, 41.95693052595961, -85.63211554582695, 41.95693052595961], "geometry": {"coordinates": [-85.63211554582695, 41.95693052595961], "type": "Point"}, "id": "4796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211491555, 41.95679632240651, -85.63211491555, 41.95679632240651], "geometry": {"coordinates": [-85.63211491555, 41.95679632240651], "type": "Point"}, "id": "4797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211428527306, 41.956662118570804, -85.63211428527306, 41.956662118570804], "geometry": {"coordinates": [-85.63211428527306, 41.956662118570804], "type": "Point"}, "id": "4798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321136549961, 41.956527914452494, -85.6321136549961, 41.956527914452494], "geometry": {"coordinates": [-85.6321136549961, 41.956527914452494], "type": "Point"}, "id": "4799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211302471917, 41.95639371005156, -85.63211302471917, 41.95639371005156], "geometry": {"coordinates": [-85.63211302471917, 41.95639371005156], "type": "Point"}, "id": "4800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211239444222, 41.95625950536804, -85.63211239444222, 41.95625950536804], "geometry": {"coordinates": [-85.63211239444222, 41.95625950536804], "type": "Point"}, "id": "4801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211176416526, 41.956125300401894, -85.63211176416526, 41.956125300401894], "geometry": {"coordinates": [-85.63211176416526, 41.956125300401894], "type": "Point"}, "id": "4802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211113388833, 41.955991095153145, -85.63211113388833, 41.955991095153145], "geometry": {"coordinates": [-85.63211113388833, 41.955991095153145], "type": "Point"}, "id": "4803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211000508616, 41.95585689200552, -85.63211000508616, 41.95585689200552], "geometry": {"coordinates": [-85.63211000508616, 41.95585689200552], "type": "Point"}, "id": "4804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210831468439, 41.955722691260654, -85.63210831468439, 41.955722691260654], "geometry": {"coordinates": [-85.63210831468439, 41.955722691260654], "type": "Point"}, "id": "4805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210662428261, 41.95558849023318, -85.63210662428261, 41.95558849023318], "geometry": {"coordinates": [-85.63210662428261, 41.95558849023318], "type": "Point"}, "id": "4806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210493388085, 41.955454288923136, -85.63210493388085, 41.955454288923136], "geometry": {"coordinates": [-85.63210493388085, 41.955454288923136], "type": "Point"}, "id": "4807", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210324347908, 41.9553200873305, -85.63210324347908, 41.9553200873305], "geometry": {"coordinates": [-85.63210324347908, 41.9553200873305], "type": "Point"}, "id": "4808", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210155307732, 41.95518588545528, -85.63210155307732, 41.95518588545528], "geometry": {"coordinates": [-85.63210155307732, 41.95518588545528], "type": "Point"}, "id": "4809", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209986267555, 41.95505168329748, -85.63209986267555, 41.95505168329748], "geometry": {"coordinates": [-85.63209986267555, 41.95505168329748], "type": "Point"}, "id": "4810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209817227379, 41.95491748085709, -85.63209817227379, 41.95491748085709], "geometry": {"coordinates": [-85.63209817227379, 41.95491748085709], "type": "Point"}, "id": "4811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209648187201, 41.95478327813411, -85.63209648187201, 41.95478327813411], "geometry": {"coordinates": [-85.63209648187201, 41.95478327813411], "type": "Point"}, "id": "4812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320947436836, 41.9546490754686, -85.6320947436836, 41.9546490754686], "geometry": {"coordinates": [-85.6320947436836, 41.9546490754686], "type": "Point"}, "id": "4813", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209303188843, 41.954514872330485, -85.63209303188843, 41.954514872330485], "geometry": {"coordinates": [-85.63209303188843, 41.954514872330485], "type": "Point"}, "id": "4814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209131576309, 41.95438066894032, -85.63209131576309, 41.95438066894032], "geometry": {"coordinates": [-85.63209131576309, 41.95438066894032], "type": "Point"}, "id": "4815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208959963777, 41.95424646526756, -85.63208959963777, 41.95424646526756], "geometry": {"coordinates": [-85.63208959963777, 41.95424646526756], "type": "Point"}, "id": "4816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208788351243, 41.95411226131222, -85.63208788351243, 41.95411226131222], "geometry": {"coordinates": [-85.63208788351243, 41.95411226131222], "type": "Point"}, "id": "4817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320861673871, 41.9539780570743, -85.6320861673871, 41.9539780570743], "geometry": {"coordinates": [-85.6320861673871, 41.9539780570743], "type": "Point"}, "id": "4818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208445126176, 41.953843852553796, -85.63208445126176, 41.953843852553796], "geometry": {"coordinates": [-85.63208445126176, 41.953843852553796], "type": "Point"}, "id": "4819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208273513644, 41.953709647750706, -85.63208273513644, 41.953709647750706], "geometry": {"coordinates": [-85.63208273513644, 41.953709647750706], "type": "Point"}, "id": "4820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208103291467, 41.95357544256711, -85.63208103291467, 41.95357544256711], "geometry": {"coordinates": [-85.63208103291467, 41.95357544256711], "type": "Point"}, "id": "4821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207933098352, 41.953441237098886, -85.63207933098352, 41.953441237098886], "geometry": {"coordinates": [-85.63207933098352, 41.953441237098886], "type": "Point"}, "id": "4822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207762905235, 41.95330703134808, -85.63207762905235, 41.95330703134808], "geometry": {"coordinates": [-85.63207762905235, 41.95330703134808], "type": "Point"}, "id": "4823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207592712118, 41.953172825314695, -85.63207592712118, 41.953172825314695], "geometry": {"coordinates": [-85.63207592712118, 41.953172825314695], "type": "Point"}, "id": "4824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207422519004, 41.95303861899871, -85.63207422519004, 41.95303861899871], "geometry": {"coordinates": [-85.63207422519004, 41.95303861899871], "type": "Point"}, "id": "4825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207252325888, 41.952904412400166, -85.63207252325888, 41.952904412400166], "geometry": {"coordinates": [-85.63207252325888, 41.952904412400166], "type": "Point"}, "id": "4826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207082132772, 41.952770205519016, -85.63207082132772, 41.952770205519016], "geometry": {"coordinates": [-85.63207082132772, 41.952770205519016], "type": "Point"}, "id": "4827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63206911939655, 41.95263599835529, -85.63206911939655, 41.95263599835529], "geometry": {"coordinates": [-85.63206911939655, 41.95263599835529], "type": "Point"}, "id": "4828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63206741746541, 41.95250179090899, -85.63206741746541, 41.95250179090899], "geometry": {"coordinates": [-85.63206741746541, 41.95250179090899], "type": "Point"}, "id": "4829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63206571022076, 41.952367583217466, -85.63206571022076, 41.952367583217466], "geometry": {"coordinates": [-85.63206571022076, 41.952367583217466], "type": "Point"}, "id": "4830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63206399995079, 41.95223337526463, -85.63206399995079, 41.95223337526463], "geometry": {"coordinates": [-85.63206399995079, 41.95223337526463], "type": "Point"}, "id": "4831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320622896808, 41.95209916702921, -85.6320622896808, 41.95209916702921], "geometry": {"coordinates": [-85.6320622896808, 41.95209916702921], "type": "Point"}, "id": "4832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320605794108, 41.951964958511205, -85.6320605794108, 41.951964958511205], "geometry": {"coordinates": [-85.6320605794108, 41.951964958511205], "type": "Point"}, "id": "4833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205886914082, 41.95183074971062, -85.63205886914082, 41.95183074971062], "geometry": {"coordinates": [-85.63205886914082, 41.95183074971062], "type": "Point"}, "id": "4834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205715887084, 41.95169654062747, -85.63205715887084, 41.95169654062747], "geometry": {"coordinates": [-85.63205715887084, 41.95169654062747], "type": "Point"}, "id": "4835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205544860084, 41.95156233126172, -85.63205544860084, 41.95156233126172], "geometry": {"coordinates": [-85.63205544860084, 41.95156233126172], "type": "Point"}, "id": "4836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205373833085, 41.95142812161339, -85.63205373833085, 41.95142812161339], "geometry": {"coordinates": [-85.63205373833085, 41.95142812161339], "type": "Point"}, "id": "4837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205202806088, 41.951293911682484, -85.63205202806088, 41.951293911682484], "geometry": {"coordinates": [-85.63205202806088, 41.951293911682484], "type": "Point"}, "id": "4838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205031774316, 41.95115970146934, -85.63205031774316, 41.95115970146934], "geometry": {"coordinates": [-85.63205031774316, 41.95115970146934], "type": "Point"}, "id": "4839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204860702542, 41.95102549097643, -85.63204860702542, 41.95102549097643], "geometry": {"coordinates": [-85.63204860702542, 41.95102549097643], "type": "Point"}, "id": "4840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204689630768, 41.95089128020093, -85.63204689630768, 41.95089128020093], "geometry": {"coordinates": [-85.63204689630768, 41.95089128020093], "type": "Point"}, "id": "4841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204518558993, 41.95075706914286, -85.63204518558993, 41.95075706914286], "geometry": {"coordinates": [-85.63204518558993, 41.95075706914286], "type": "Point"}, "id": "4842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204347487219, 41.95062285780221, -85.63204347487219, 41.95062285780221], "geometry": {"coordinates": [-85.63204347487219, 41.95062285780221], "type": "Point"}, "id": "4843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204176415444, 41.95048864617898, -85.63204176415444, 41.95048864617898], "geometry": {"coordinates": [-85.63204176415444, 41.95048864617898], "type": "Point"}, "id": "4844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320400534367, 41.950354434273166, -85.6320400534367, 41.950354434273166], "geometry": {"coordinates": [-85.6320400534367, 41.950354434273166], "type": "Point"}, "id": "4845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63203834271894, 41.95022022208477, -85.63203834271894, 41.95022022208477], "geometry": {"coordinates": [-85.63203834271894, 41.95022022208477], "type": "Point"}, "id": "4846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320366320012, 41.9500860096138, -85.6320366320012, 41.9500860096138], "geometry": {"coordinates": [-85.6320366320012, 41.9500860096138], "type": "Point"}, "id": "4847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63203492128346, 41.949951796860255, -85.63203492128346, 41.949951796860255], "geometry": {"coordinates": [-85.63203492128346, 41.949951796860255], "type": "Point"}, "id": "4848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63203320576184, 41.949817583858064, -85.63203320576184, 41.949817583858064], "geometry": {"coordinates": [-85.63203320576184, 41.949817583858064], "type": "Point"}, "id": "4849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63203148813486, 41.94968337058817, -85.63203148813486, 41.94968337058817], "geometry": {"coordinates": [-85.63203148813486, 41.94968337058817], "type": "Point"}, "id": "4850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320297705079, 41.94954915703568, -85.6320297705079, 41.94954915703568], "geometry": {"coordinates": [-85.6320297705079, 41.94954915703568], "type": "Point"}, "id": "4851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63202805288091, 41.94941494320063, -85.63202805288091, 41.94941494320063], "geometry": {"coordinates": [-85.63202805288091, 41.94941494320063], "type": "Point"}, "id": "4852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63202633525395, 41.94928072908301, -85.63202633525395, 41.94928072908301], "geometry": {"coordinates": [-85.63202633525395, 41.94928072908301], "type": "Point"}, "id": "4853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63202461762697, 41.94914651468279, -85.63202461762697, 41.94914651468279], "geometry": {"coordinates": [-85.63202461762697, 41.94914651468279], "type": "Point"}, "id": "4854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.61420399999999, 41.953696, -85.61420399999999, 41.953696], "geometry": {"coordinates": [-85.61420399999999, 41.953696], "type": "Point"}, "id": "4855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61420185618606, 41.953847139037656, -85.61420185618606, 41.953847139037656], "geometry": {"coordinates": [-85.61420185618606, 41.953847139037656], "type": "Point"}, "id": "4856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.6141998693396, 41.95399827861228, -85.6141998693396, 41.95399827861228], "geometry": {"coordinates": [-85.6141998693396, 41.95399827861228], "type": "Point"}, "id": "4857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61419889547169, 41.95414942360669, -85.61419889547169, 41.95414942360669], "geometry": {"coordinates": [-85.61419889547169, 41.95414942360669], "type": "Point"}, "id": "4858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61419792160378, 41.95430056824265, -85.61419792160378, 41.95430056824265], "geometry": {"coordinates": [-85.61419792160378, 41.95430056824265], "type": "Point"}, "id": "4859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61419694773583, 41.954451712520196, -85.61419694773583, 41.954451712520196], "geometry": {"coordinates": [-85.61419694773583, 41.954451712520196], "type": "Point"}, "id": "4860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61419597386792, 41.954602856439315, -85.61419597386792, 41.954602856439315], "geometry": {"coordinates": [-85.61419597386792, 41.954602856439315], "type": "Point"}, "id": "4861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.6235488, 41.937172600000004, -85.6235488, 41.937172600000004], "geometry": {"coordinates": [-85.6235488, 41.937172600000004], "type": "Point"}, "id": "4862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.6237333900109, 41.93717233335847, -85.6237333900109, 41.93717233335847], "geometry": {"coordinates": [-85.6237333900109, 41.93717233335847], "type": "Point"}, "id": "4863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.6239179800218, 41.93717206671694, -85.6239179800218, 41.93717206671694], "geometry": {"coordinates": [-85.6239179800218, 41.93717206671694], "type": "Point"}, "id": "4864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.6241025700327, 41.9371718000754, -85.6241025700327, 41.9371718000754], "geometry": {"coordinates": [-85.6241025700327, 41.9371718000754], "type": "Point"}, "id": "4865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62428716004362, 41.93717153343385, -85.62428716004362, 41.93717153343385], "geometry": {"coordinates": [-85.62428716004362, 41.93717153343385], "type": "Point"}, "id": "4866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62447175005452, 41.93717126679231, -85.62447175005452, 41.93717126679231], "geometry": {"coordinates": [-85.62447175005452, 41.93717126679231], "type": "Point"}, "id": "4867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62465634006543, 41.93717100015078, -85.62465634006543, 41.93717100015078], "geometry": {"coordinates": [-85.62465634006543, 41.93717100015078], "type": "Point"}, "id": "4868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62484093007126, 41.93717073159012, -85.62484093007126, 41.93717073159012], "geometry": {"coordinates": [-85.62484093007126, 41.93717073159012], "type": "Point"}, "id": "4869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62502552006178, 41.93717045725256, -85.62502552006178, 41.93717045725256], "geometry": {"coordinates": [-85.62502552006178, 41.93717045725256], "type": "Point"}, "id": "4870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62521011005231, 41.937170182915004, -85.62521011005231, 41.937170182915004], "geometry": {"coordinates": [-85.62521011005231, 41.937170182915004], "type": "Point"}, "id": "4871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62539470004285, 41.93716990857744, -85.62539470004285, 41.93716990857744], "geometry": {"coordinates": [-85.62539470004285, 41.93716990857744], "type": "Point"}, "id": "4872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62557929003336, 41.93716963423987, -85.62557929003336, 41.93716963423987], "geometry": {"coordinates": [-85.62557929003336, 41.93716963423987], "type": "Point"}, "id": "4873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62576388002549, 41.93716936050355, -85.62576388002549, 41.93716936050355], "geometry": {"coordinates": [-85.62576388002549, 41.93716936050355], "type": "Point"}, "id": "4874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62594847002697, 41.93716909027957, -85.62594847002697, 41.93716909027957], "geometry": {"coordinates": [-85.62594847002697, 41.93716909027957], "type": "Point"}, "id": "4875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62613306002847, 41.9371688200556, -85.62613306002847, 41.9371688200556], "geometry": {"coordinates": [-85.62613306002847, 41.9371688200556], "type": "Point"}, "id": "4876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62631765002996, 41.93716854983161, -85.62631765002996, 41.93716854983161], "geometry": {"coordinates": [-85.62631765002996, 41.93716854983161], "type": "Point"}, "id": "4877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62650224011428, 41.93716831659218, -85.62650224011428, 41.93716831659218], "geometry": {"coordinates": [-85.62650224011428, 41.93716831659218], "type": "Point"}, "id": "4878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62668682997197, 41.937167999186464, -85.62668682997197, 41.937167999186464], "geometry": {"coordinates": [-85.62668682997197, 41.937167999186464], "type": "Point"}, "id": "4879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62687141994043, 41.93716771861538, -85.62687141994043, 41.93716771861538], "geometry": {"coordinates": [-85.62687141994043, 41.93716771861538], "type": "Point"}, "id": "4880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.6270560099702, 41.93716745930769, -85.6270560099702, 41.93716745930769], "geometry": {"coordinates": [-85.6270560099702, 41.93716745930769], "type": "Point"}, "id": "4881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.61591419999999, 41.957757799999996, -85.61591419999999, 41.957757799999996], "geometry": {"coordinates": [-85.61591419999999, 41.957757799999996], "type": "Point"}, "id": "4882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61591615965534, 41.95789379360866, -85.61591615965534, 41.95789379360866], "geometry": {"coordinates": [-85.61591615965534, 41.95789379360866], "type": "Point"}, "id": "4883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.6159181193107, 41.95802978692712, -85.6159181193107, 41.95802978692712], "geometry": {"coordinates": [-85.6159181193107, 41.95802978692712], "type": "Point"}, "id": "4884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592006247619, 41.95816578007305, -85.61592006247619, 41.95816578007305], "geometry": {"coordinates": [-85.61592006247619, 41.95816578007305], "type": "Point"}, "id": "4885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592161291183, 41.95830177573149, -85.61592161291183, 41.95830177573149], "geometry": {"coordinates": [-85.61592161291183, 41.95830177573149], "type": "Point"}, "id": "4886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592316334752, 41.958437771099696, -85.61592316334752, 41.958437771099696], "geometry": {"coordinates": [-85.61592316334752, 41.958437771099696], "type": "Point"}, "id": "4887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592471378317, 41.95857376617768, -85.61592471378317, 41.95857376617768], "geometry": {"coordinates": [-85.61592471378317, 41.95857376617768], "type": "Point"}, "id": "4888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592489999998, 41.958709765265645, -85.61592489999998, 41.958709765265645], "geometry": {"coordinates": [-85.61592489999998, 41.958709765265645], "type": "Point"}, "id": "4889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592489999998, 41.958845764650356, -85.61592489999998, 41.958845764650356], "geometry": {"coordinates": [-85.61592489999998, 41.958845764650356], "type": "Point"}, "id": "4890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61591816856478, 41.95898132013893, -85.61591816856478, 41.95898132013893], "geometry": {"coordinates": [-85.61591816856478, 41.95898132013893], "type": "Point"}, "id": "4891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61587835170901, 41.95911350982466, -85.61587835170901, 41.95911350982466], "geometry": {"coordinates": [-85.61587835170901, 41.95911350982466], "type": "Point"}, "id": "4892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.6158070758545, 41.95923875503541, -85.6158070758545, 41.95923875503541], "geometry": {"coordinates": [-85.6158070758545, 41.95923875503541], "type": "Point"}, "id": "4893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61736959999999, 41.93818859999998, -85.61736959999999, 41.93818859999998], "geometry": {"coordinates": [-85.61736959999999, 41.93818859999998], "type": "Point"}, "id": "4894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61755047828818, 41.9381881142577, -85.61755047828818, 41.9381881142577], "geometry": {"coordinates": [-85.61755047828818, 41.9381881142577], "type": "Point"}, "id": "4895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61773135657637, 41.9381876285154, -85.61773135657637, 41.9381876285154], "geometry": {"coordinates": [-85.61773135657637, 41.9381876285154], "type": "Point"}, "id": "4896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61791223486455, 41.93818714277311, -85.61791223486455, 41.93818714277311], "geometry": {"coordinates": [-85.61791223486455, 41.93818714277311], "type": "Point"}, "id": "4897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61809311311133, 41.9381866486035, -85.61809311311133, 41.9381866486035], "geometry": {"coordinates": [-85.61809311311133, 41.9381866486035], "type": "Point"}, "id": "4898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61827399134087, 41.9381861509257, -85.61827399134087, 41.9381861509257], "geometry": {"coordinates": [-85.61827399134087, 41.9381861509257], "type": "Point"}, "id": "4899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61845486957041, 41.93818565324792, -85.61845486957041, 41.93818565324792], "geometry": {"coordinates": [-85.61845486957041, 41.93818565324792], "type": "Point"}, "id": "4900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61863574779997, 41.938185155570125, -85.61863574779997, 41.938185155570125], "geometry": {"coordinates": [-85.61863574779997, 41.938185155570125], "type": "Point"}, "id": "4901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61881662602951, 41.938184657892315, -85.61881662602951, 41.938184657892315], "geometry": {"coordinates": [-85.61881662602951, 41.938184657892315], "type": "Point"}, "id": "4902", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61899750426703, 41.93818416182842, -85.61899750426703, 41.93818416182842], "geometry": {"coordinates": [-85.61899750426703, 41.93818416182842], "type": "Point"}, "id": "4903", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61917838252498, 41.93818366989655, -85.61917838252498, 41.93818366989655], "geometry": {"coordinates": [-85.61917838252498, 41.93818366989655], "type": "Point"}, "id": "4904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61935926078294, 41.938183177964696, -85.61935926078294, 41.938183177964696], "geometry": {"coordinates": [-85.61935926078294, 41.938183177964696], "type": "Point"}, "id": "4905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.6195401390409, 41.938182686032825, -85.6195401390409, 41.938182686032825], "geometry": {"coordinates": [-85.6195401390409, 41.938182686032825], "type": "Point"}, "id": "4906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61972101729884, 41.93818219410095, -85.61972101729884, 41.93818219410095], "geometry": {"coordinates": [-85.61972101729884, 41.93818219410095], "type": "Point"}, "id": "4907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61990189555681, 41.93818170216908, -85.61990189555681, 41.93818170216908], "geometry": {"coordinates": [-85.61990189555681, 41.93818170216908], "type": "Point"}, "id": "4908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62008277382623, 41.93818121258709, -85.62008277382623, 41.93818121258709], "geometry": {"coordinates": [-85.62008277382623, 41.93818121258709], "type": "Point"}, "id": "4909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62026365211392, 41.93818072674694, -85.62026365211392, 41.93818072674694], "geometry": {"coordinates": [-85.62026365211392, 41.93818072674694], "type": "Point"}, "id": "4910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62044453040164, 41.9381802409068, -85.62044453040164, 41.9381802409068], "geometry": {"coordinates": [-85.62044453040164, 41.9381802409068], "type": "Point"}, "id": "4911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62062540868935, 41.938179755066656, -85.62062540868935, 41.938179755066656], "geometry": {"coordinates": [-85.62062540868935, 41.938179755066656], "type": "Point"}, "id": "4912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62080628697704, 41.9381792692265, -85.62080628697704, 41.9381792692265], "geometry": {"coordinates": [-85.62080628697704, 41.9381792692265], "type": "Point"}, "id": "4913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62098716526476, 41.93817878338635, -85.62098716526476, 41.93817878338635], "geometry": {"coordinates": [-85.62098716526476, 41.93817878338635], "type": "Point"}, "id": "4914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62116804353613, 41.9381782942327, -85.62116804353613, 41.9381782942327], "geometry": {"coordinates": [-85.62116804353613, 41.9381782942327], "type": "Point"}, "id": "4915", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62134892174635, 41.93817779267982, -85.62134892174635, 41.93817779267982], "geometry": {"coordinates": [-85.62134892174635, 41.93817779267982], "type": "Point"}, "id": "4916", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62152979995653, 41.938177291126934, -85.62152979995653, 41.938177291126934], "geometry": {"coordinates": [-85.62152979995653, 41.938177291126934], "type": "Point"}, "id": "4917", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62171067816672, 41.938176789574044, -85.62171067816672, 41.938176789574044], "geometry": {"coordinates": [-85.62171067816672, 41.938176789574044], "type": "Point"}, "id": "4918", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62189155637694, 41.938176288021154, -85.62189155637694, 41.938176288021154], "geometry": {"coordinates": [-85.62189155637694, 41.938176288021154], "type": "Point"}, "id": "4919", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62207243458714, 41.938175786468264, -85.62207243458714, 41.938175786468264], "geometry": {"coordinates": [-85.62207243458714, 41.938175786468264], "type": "Point"}, "id": "4920", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62225331279733, 41.93817528491537, -85.62225331279733, 41.93817528491537], "geometry": {"coordinates": [-85.62225331279733, 41.93817528491537], "type": "Point"}, "id": "4921", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62243419105963, 41.93817479393235, -85.62243419105963, 41.93817479393235], "geometry": {"coordinates": [-85.62243419105963, 41.93817479393235], "type": "Point"}, "id": "4922", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62261506935232, 41.938174309122125, -85.62261506935232, 41.938174309122125], "geometry": {"coordinates": [-85.62261506935232, 41.938174309122125], "type": "Point"}, "id": "4923", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62279594764503, 41.93817382431188, -85.62279594764503, 41.93817382431188], "geometry": {"coordinates": [-85.62279594764503, 41.93817382431188], "type": "Point"}, "id": "4924", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62297682593773, 41.93817333950166, -85.62297682593773, 41.93817333950166], "geometry": {"coordinates": [-85.62297682593773, 41.93817333950166], "type": "Point"}, "id": "4925", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62315770423044, 41.93817285469141, -85.62315770423044, 41.93817285469141], "geometry": {"coordinates": [-85.62315770423044, 41.93817285469141], "type": "Point"}, "id": "4926", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62333858252315, 41.93817236988116, -85.62333858252315, 41.93817236988116], "geometry": {"coordinates": [-85.62333858252315, 41.93817236988116], "type": "Point"}, "id": "4927", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62351946081584, 41.938171885070915, -85.62351946081584, 41.938171885070915], "geometry": {"coordinates": [-85.62351946081584, 41.938171885070915], "type": "Point"}, "id": "4928", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62370033908077, 41.93817139456876, -85.62370033908077, 41.93817139456876], "geometry": {"coordinates": [-85.62370033908077, 41.93817139456876], "type": "Point"}, "id": "4929", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62388121733979, 41.938170902855255, -85.62388121733979, 41.938170902855255], "geometry": {"coordinates": [-85.62388121733979, 41.938170902855255], "type": "Point"}, "id": "4930", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62406209559883, 41.938170411141755, -85.62406209559883, 41.938170411141755], "geometry": {"coordinates": [-85.62406209559883, 41.938170411141755], "type": "Point"}, "id": "4931", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62424297385785, 41.938169919428255, -85.62424297385785, 41.938169919428255], "geometry": {"coordinates": [-85.62424297385785, 41.938169919428255], "type": "Point"}, "id": "4932", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62442385211688, 41.938169427714755, -85.62442385211688, 41.938169427714755], "geometry": {"coordinates": [-85.62442385211688, 41.938169427714755], "type": "Point"}, "id": "4933", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.6246047303759, 41.93816893600123, -85.6246047303759, 41.93816893600123], "geometry": {"coordinates": [-85.6246047303759, 41.93816893600123], "type": "Point"}, "id": "4934", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62478560863492, 41.93816844428772, -85.62478560863492, 41.93816844428772], "geometry": {"coordinates": [-85.62478560863492, 41.93816844428772], "type": "Point"}, "id": "4935", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62496648690691, 41.93816795522062, -85.62496648690691, 41.93816795522062], "geometry": {"coordinates": [-85.62496648690691, 41.93816795522062], "type": "Point"}, "id": "4936", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62514736518018, 41.93816746641548, -85.62514736518018, 41.93816746641548], "geometry": {"coordinates": [-85.62514736518018, 41.93816746641548], "type": "Point"}, "id": "4937", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62532824345347, 41.938166977610315, -85.62532824345347, 41.938166977610315], "geometry": {"coordinates": [-85.62532824345347, 41.938166977610315], "type": "Point"}, "id": "4938", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62550912172674, 41.938166488805166, -85.62550912172674, 41.938166488805166], "geometry": {"coordinates": [-85.62550912172674, 41.938166488805166], "type": "Point"}, "id": "4939", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.6500738, 41.92697, -85.6500738, 41.92697], "geometry": {"coordinates": [-85.6500738, 41.92697], "type": "Point"}, "id": "4940", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64988576271816, 41.92697097365583, -85.64988576271816, 41.92697097365583], "geometry": {"coordinates": [-85.64988576271816, 41.92697097365583], "type": "Point"}, "id": "4941", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64969776734912, 41.92697339775442, -85.64969776734912, 41.92697339775442], "geometry": {"coordinates": [-85.64969776734912, 41.92697339775442], "type": "Point"}, "id": "4942", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64950984756592, 41.926978437590954, -85.64950984756592, 41.926978437590954], "geometry": {"coordinates": [-85.64950984756592, 41.926978437590954], "type": "Point"}, "id": "4943", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64932192778272, 41.92698347742709, -85.64932192778272, 41.92698347742709], "geometry": {"coordinates": [-85.64932192778272, 41.92698347742709], "type": "Point"}, "id": "4944", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.6491340079995, 41.92698851726282, -85.6491340079995, 41.92698851726282], "geometry": {"coordinates": [-85.6491340079995, 41.92698851726282], "type": "Point"}, "id": "4945", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.6489460882163, 41.92699355709816, -85.6489460882163, 41.92699355709816], "geometry": {"coordinates": [-85.6489460882163, 41.92699355709816], "type": "Point"}, "id": "4946", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64875885164784, 41.92698707109442, -85.64875885164784, 41.92698707109442], "geometry": {"coordinates": [-85.64875885164784, 41.92698707109442], "type": "Point"}, "id": "4947", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64858054954917, 41.926946414164526, -85.64858054954917, 41.926946414164526], "geometry": {"coordinates": [-85.64858054954917, 41.926946414164526], "type": "Point"}, "id": "4948", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64841778272181, 41.92687782812702, -85.64841778272181, 41.92687782812702], "geometry": {"coordinates": [-85.64841778272181, 41.92687782812702], "type": "Point"}, "id": "4949", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64828088837292, 41.92678252587467, -85.64828088837292, 41.92678252587467], "geometry": {"coordinates": [-85.64828088837292, 41.92678252587467], "type": "Point"}, "id": "4950", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64815246149277, 41.92668033411567, -85.64815246149277, 41.92668033411567], "geometry": {"coordinates": [-85.64815246149277, 41.92668033411567], "type": "Point"}, "id": "4951", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64802403461263, 41.92657814219298, -85.64802403461263, 41.92657814219298], "geometry": {"coordinates": [-85.64802403461263, 41.92657814219298], "type": "Point"}, "id": "4952", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64789560912892, 41.926475949135394, -85.64789560912892, 41.926475949135394], "geometry": {"coordinates": [-85.64789560912892, 41.926475949135394], "type": "Point"}, "id": "4953", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64776465351905, 41.92637562333835, -85.64776465351905, 41.92637562333835], "geometry": {"coordinates": [-85.64776465351905, 41.92637562333835], "type": "Point"}, "id": "4954", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64762839014358, 41.92627921221355, -85.64762839014358, 41.92627921221355], "geometry": {"coordinates": [-85.64762839014358, 41.92627921221355], "type": "Point"}, "id": "4955", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64749212676813, 41.92618280094307, -85.64749212676813, 41.92618280094307], "geometry": {"coordinates": [-85.64749212676813, 41.92618280094307], "type": "Point"}, "id": "4956", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64733195561807, 41.92611101162188, -85.64733195561807, 41.92611101162188], "geometry": {"coordinates": [-85.64733195561807, 41.92611101162188], "type": "Point"}, "id": "4957", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.6471507429405, 41.92607472534393, -85.6471507429405, 41.92607472534393], "geometry": {"coordinates": [-85.6471507429405, 41.92607472534393], "type": "Point"}, "id": "4958", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}, {"bbox": [-85.64696467036443, 41.92605734627798, -85.64696467036443, 41.92605734627798], "geometry": {"coordinates": [-85.64696467036443, 41.92605734627798], "type": "Point"}, "id": "4959", "properties": {"__folium_color": "red", "highway": "unclassified", "osm_id": 221671992}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_59a4635817baf5c4c25f789f1467dc68_add({"bbox": [-85.6599876, 41.9253801, -85.60584788524874, 41.9665028], "features": [{"bbox": [-85.651611, 41.953638999999995, -85.651611, 41.953638999999995], "geometry": {"coordinates": [-85.651611, 41.953638999999995], "type": "Point"}, "id": "0", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967640}, "type": "Feature"}, {"bbox": [-85.65154849999999, 41.953787500518985, -85.65154849999999, 41.953787500518985], "geometry": {"coordinates": [-85.65154849999999, 41.953787500518985], "type": "Point"}, "id": "1", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967640}, "type": "Feature"}, {"bbox": [-85.651486, 41.95393600069198, -85.651486, 41.95393600069198], "geometry": {"coordinates": [-85.651486, 41.95393600069198], "type": "Point"}, "id": "2", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967640}, "type": "Feature"}, {"bbox": [-85.65142349999998, 41.95408450051899, -85.65142349999998, 41.95408450051899], "geometry": {"coordinates": [-85.65142349999998, 41.95408450051899], "type": "Point"}, "id": "3", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967640}, "type": "Feature"}, {"bbox": [-85.6583049, 41.92581800000001, -85.6583049, 41.92581800000001], "geometry": {"coordinates": [-85.6583049, 41.92581800000001], "type": "Point"}, "id": "4", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65813234584883, 41.9258584915168, -85.65813234584883, 41.9258584915168], "geometry": {"coordinates": [-85.65813234584883, 41.9258584915168], "type": "Point"}, "id": "5", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.6579605770951, 41.92590073987539, -85.6579605770951, 41.92590073987539], "geometry": {"coordinates": [-85.6579605770951, 41.92590073987539], "type": "Point"}, "id": "6", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65778980127499, 41.92594520931271, -85.65778980127499, 41.92594520931271], "geometry": {"coordinates": [-85.65778980127499, 41.92594520931271], "type": "Point"}, "id": "7", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65761907478716, 41.92598977729366, -85.65761907478716, 41.92598977729366], "geometry": {"coordinates": [-85.65761907478716, 41.92598977729366], "type": "Point"}, "id": "8", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65745079552842, 41.92603923523734, -85.65745079552842, 41.92603923523734], "geometry": {"coordinates": [-85.65745079552842, 41.92603923523734], "type": "Point"}, "id": "9", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65728251626969, 41.92608869314268, -85.65728251626969, 41.92608869314268], "geometry": {"coordinates": [-85.65728251626969, 41.92608869314268], "type": "Point"}, "id": "10", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65711423701096, 41.92613815100969, -85.65711423701096, 41.92613815100969], "geometry": {"coordinates": [-85.65711423701096, 41.92613815100969], "type": "Point"}, "id": "11", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65694622782202, 41.92618811244522, -85.65694622782202, 41.92618811244522], "geometry": {"coordinates": [-85.65694622782202, 41.92618811244522], "type": "Point"}, "id": "12", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.6567784074295, 41.926238425895505, -85.6567784074295, 41.926238425895505], "geometry": {"coordinates": [-85.6567784074295, 41.926238425895505], "type": "Point"}, "id": "13", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.656610587037, 41.926288739306116, -85.656610587037, 41.926288739306116], "geometry": {"coordinates": [-85.656610587037, 41.926288739306116], "type": "Point"}, "id": "14", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.6564427666445, 41.92633905267706, -85.6564427666445, 41.92633905267706], "geometry": {"coordinates": [-85.6564427666445, 41.92633905267706], "type": "Point"}, "id": "15", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.656274946252, 41.92638936600831, -85.656274946252, 41.92638936600831], "geometry": {"coordinates": [-85.656274946252, 41.92638936600831], "type": "Point"}, "id": "16", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.6561071258595, 41.92643967929988, -85.6561071258595, 41.92643967929988], "geometry": {"coordinates": [-85.6561071258595, 41.92643967929988], "type": "Point"}, "id": "17", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.6559397894834, 41.926490867701226, -85.6559397894834, 41.926490867701226], "geometry": {"coordinates": [-85.6559397894834, 41.926490867701226], "type": "Point"}, "id": "18", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65577297569966, 41.9265430009593, -85.65577297569966, 41.9265430009593], "geometry": {"coordinates": [-85.65577297569966, 41.9265430009593], "type": "Point"}, "id": "19", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65560616191593, 41.92659513417477, -85.65560616191593, 41.92659513417477], "geometry": {"coordinates": [-85.65560616191593, 41.92659513417477], "type": "Point"}, "id": "20", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65543934813219, 41.92664726734764, -85.65543934813219, 41.92664726734764], "geometry": {"coordinates": [-85.65543934813219, 41.92664726734764], "type": "Point"}, "id": "21", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65527253434846, 41.92669940047791, -85.65527253434846, 41.92669940047791], "geometry": {"coordinates": [-85.65527253434846, 41.92669940047791], "type": "Point"}, "id": "22", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65510561782112, 41.926751351018865, -85.65510561782112, 41.926751351018865], "geometry": {"coordinates": [-85.65510561782112, 41.926751351018865], "type": "Point"}, "id": "23", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65493864848162, 41.926803207685076, -85.65493864848162, 41.926803207685076], "geometry": {"coordinates": [-85.65493864848162, 41.926803207685076], "type": "Point"}, "id": "24", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.6547714052609, 41.926854564866254, -85.6547714052609, 41.926854564866254], "geometry": {"coordinates": [-85.6547714052609, 41.926854564866254], "type": "Point"}, "id": "25", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65460333189388, 41.92690440817347, -85.65460333189388, 41.92690440817347], "geometry": {"coordinates": [-85.65460333189388, 41.92690440817347], "type": "Point"}, "id": "26", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65443337108204, 41.92695047435789, -85.65443337108204, 41.92695047435789], "geometry": {"coordinates": [-85.65443337108204, 41.92695047435789], "type": "Point"}, "id": "27", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65426139545607, 41.92699224012745, -85.65426139545607, 41.92699224012745], "geometry": {"coordinates": [-85.65426139545607, 41.92699224012745], "type": "Point"}, "id": "28", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65408653044385, 41.92702627930281, -85.65408653044385, 41.92702627930281], "geometry": {"coordinates": [-85.65408653044385, 41.92702627930281], "type": "Point"}, "id": "29", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65390842008591, 41.92704931663458, -85.65390842008591, 41.92704931663458], "geometry": {"coordinates": [-85.65390842008591, 41.92704931663458], "type": "Point"}, "id": "30", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65372866135537, 41.927064395369584, -85.65372866135537, 41.927064395369584], "geometry": {"coordinates": [-85.65372866135537, 41.927064395369584], "type": "Point"}, "id": "31", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65354810733375, 41.92707250415656, -85.65354810733375, 41.92707250415656], "geometry": {"coordinates": [-85.65354810733375, 41.92707250415656], "type": "Point"}, "id": "32", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65336739349607, 41.92707198258509, -85.65336739349607, 41.92707198258509], "geometry": {"coordinates": [-85.65336739349607, 41.92707198258509], "type": "Point"}, "id": "33", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65318700497006, 41.927061649371616, -85.65318700497006, 41.927061649371616], "geometry": {"coordinates": [-85.65318700497006, 41.927061649371616], "type": "Point"}, "id": "34", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.65300642997771, 41.92705520712257, -85.65300642997771, 41.92705520712257], "geometry": {"coordinates": [-85.65300642997771, 41.92705520712257], "type": "Point"}, "id": "35", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17962479}, "type": "Feature"}, {"bbox": [-85.6510705, 41.9425026, -85.6510705, 41.9425026], "geometry": {"coordinates": [-85.6510705, 41.9425026], "type": "Point"}, "id": "36", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 945352905}, "type": "Feature"}, {"bbox": [-85.656065, 41.948108000000005, -85.656065, 41.948108000000005], "geometry": {"coordinates": [-85.656065, 41.948108000000005], "type": "Point"}, "id": "37", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.65606299999999, 41.94825816755101, -85.65606299999999, 41.94825816755101], "geometry": {"coordinates": [-85.65606299999999, 41.94825816755101], "type": "Point"}, "id": "38", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.656061, 41.94840833474827, -85.656061, 41.94840833474827], "geometry": {"coordinates": [-85.656061, 41.94840833474827], "type": "Point"}, "id": "39", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.656059, 41.94855850159181, -85.656059, 41.94855850159181], "geometry": {"coordinates": [-85.656059, 41.94855850159181], "type": "Point"}, "id": "40", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.656057, 41.94870866808161, -85.656057, 41.94870866808161], "geometry": {"coordinates": [-85.656057, 41.94870866808161], "type": "Point"}, "id": "41", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.656055, 41.94885883421766, -85.656055, 41.94885883421766], "geometry": {"coordinates": [-85.656055, 41.94885883421766], "type": "Point"}, "id": "42", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964573}, "type": "Feature"}, {"bbox": [-85.65893099999998, 41.94896099999999, -85.65893099999998, 41.94896099999999], "geometry": {"coordinates": [-85.65893099999998, 41.94896099999999], "type": "Point"}, "id": "43", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65877489405366, 41.949029716505656, -85.65877489405366, 41.949029716505656], "geometry": {"coordinates": [-85.65877489405366, 41.949029716505656], "type": "Point"}, "id": "44", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65862421684606, 41.94910249371395, -85.65862421684606, 41.94910249371395], "geometry": {"coordinates": [-85.65862421684606, 41.94910249371395], "type": "Point"}, "id": "45", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65844316070255, 41.94911078349047, -85.65844316070255, 41.94911078349047], "geometry": {"coordinates": [-85.65844316070255, 41.94911078349047], "type": "Point"}, "id": "46", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.658262104559, 41.949119073265905, -85.658262104559, 41.949119073265905], "geometry": {"coordinates": [-85.658262104559, 41.949119073265905], "type": "Point"}, "id": "47", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6580810484155, 41.94912736304027, -85.6580810484155, 41.94912736304027], "geometry": {"coordinates": [-85.6580810484155, 41.94912736304027], "type": "Point"}, "id": "48", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65789999227196, 41.94913565281355, -85.65789999227196, 41.94913565281355], "geometry": {"coordinates": [-85.65789999227196, 41.94913565281355], "type": "Point"}, "id": "49", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65771893612843, 41.949143942585756, -85.65771893612843, 41.949143942585756], "geometry": {"coordinates": [-85.65771893612843, 41.949143942585756], "type": "Point"}, "id": "50", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6575378799849, 41.94915223235689, -85.6575378799849, 41.94915223235689], "geometry": {"coordinates": [-85.6575378799849, 41.94915223235689], "type": "Point"}, "id": "51", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65735682384138, 41.94916052212693, -85.65735682384138, 41.94916052212693], "geometry": {"coordinates": [-85.65735682384138, 41.94916052212693], "type": "Point"}, "id": "52", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65717576769785, 41.9491688118959, -85.65717576769785, 41.9491688118959], "geometry": {"coordinates": [-85.65717576769785, 41.9491688118959], "type": "Point"}, "id": "53", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65699471155433, 41.9491771016638, -85.65699471155433, 41.9491771016638], "geometry": {"coordinates": [-85.65699471155433, 41.9491771016638], "type": "Point"}, "id": "54", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6568136554108, 41.94918539143061, -85.6568136554108, 41.94918539143061], "geometry": {"coordinates": [-85.6568136554108, 41.94918539143061], "type": "Point"}, "id": "55", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65663781374397, 41.94921150165324, -85.65663781374397, 41.94921150165324], "geometry": {"coordinates": [-85.65663781374397, 41.94921150165324], "type": "Point"}, "id": "56", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65646850019297, 41.94925992166319, -85.65646850019297, 41.94925992166319], "geometry": {"coordinates": [-85.65646850019297, 41.94925992166319], "type": "Point"}, "id": "57", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65629918664197, 41.94930834163638, -85.65629918664197, 41.94930834163638], "geometry": {"coordinates": [-85.65629918664197, 41.94930834163638], "type": "Point"}, "id": "58", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65612987309095, 41.94935676157278, -85.65612987309095, 41.94935676157278], "geometry": {"coordinates": [-85.65612987309095, 41.94935676157278], "type": "Point"}, "id": "59", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65596055953995, 41.94940518147241, -85.65596055953995, 41.94940518147241], "geometry": {"coordinates": [-85.65596055953995, 41.94940518147241], "type": "Point"}, "id": "60", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65579124598894, 41.94945360133526, -85.65579124598894, 41.94945360133526], "geometry": {"coordinates": [-85.65579124598894, 41.94945360133526], "type": "Point"}, "id": "61", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6556260263921, 41.94950517915525, -85.6556260263921, 41.94950517915525], "geometry": {"coordinates": [-85.6556260263921, 41.94950517915525], "type": "Point"}, "id": "62", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65555478936473, 41.94962925309599, -85.65555478936473, 41.94962925309599], "geometry": {"coordinates": [-85.65555478936473, 41.94962925309599], "type": "Point"}, "id": "63", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65548355233737, 41.94975332679523, -85.65548355233737, 41.94975332679523], "geometry": {"coordinates": [-85.65548355233737, 41.94975332679523], "type": "Point"}, "id": "64", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65541231531, 41.949877400252994, -85.65541231531, 41.949877400252994], "geometry": {"coordinates": [-85.65541231531, 41.949877400252994], "type": "Point"}, "id": "65", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65534107828263, 41.95000147346925, -85.65534107828263, 41.95000147346925], "geometry": {"coordinates": [-85.65534107828263, 41.95000147346925], "type": "Point"}, "id": "66", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65526984125528, 41.95012554644401, -85.65526984125528, 41.95012554644401], "geometry": {"coordinates": [-85.65526984125528, 41.95012554644401], "type": "Point"}, "id": "67", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65519860422792, 41.950249619177285, -85.65519860422792, 41.950249619177285], "geometry": {"coordinates": [-85.65519860422792, 41.950249619177285], "type": "Point"}, "id": "68", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65512736720055, 41.95037369166906, -85.65512736720055, 41.95037369166906], "geometry": {"coordinates": [-85.65512736720055, 41.95037369166906], "type": "Point"}, "id": "69", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65505613017318, 41.950497763919344, -85.65505613017318, 41.950497763919344], "geometry": {"coordinates": [-85.65505613017318, 41.950497763919344], "type": "Point"}, "id": "70", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65498489314582, 41.95062183592812, -85.65498489314582, 41.95062183592812], "geometry": {"coordinates": [-85.65498489314582, 41.95062183592812], "type": "Point"}, "id": "71", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65486514304652, 41.95071983751229, -85.65486514304652, 41.95071983751229], "geometry": {"coordinates": [-85.65486514304652, 41.95071983751229], "type": "Point"}, "id": "72", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65472912020059, 41.95080909423159, -85.65472912020059, 41.95080909423159], "geometry": {"coordinates": [-85.65472912020059, 41.95080909423159], "type": "Point"}, "id": "73", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65459309735466, 41.95089835082591, -85.65459309735466, 41.95089835082591], "geometry": {"coordinates": [-85.65459309735466, 41.95089835082591], "type": "Point"}, "id": "74", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65445794269256, 41.950987916925726, -85.65445794269256, 41.950987916925726], "geometry": {"coordinates": [-85.65445794269256, 41.950987916925726], "type": "Point"}, "id": "75", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65444952000689, 41.951122680716246, -85.65444952000689, 41.951122680716246], "geometry": {"coordinates": [-85.65444952000689, 41.951122680716246], "type": "Point"}, "id": "76", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65444109732121, 41.95125744422185, -85.65444109732121, 41.95125744422185], "geometry": {"coordinates": [-85.65444109732121, 41.95125744422185], "type": "Point"}, "id": "77", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65443267463552, 41.95139220744253, -85.65443267463552, 41.95139220744253], "geometry": {"coordinates": [-85.65443267463552, 41.95139220744253], "type": "Point"}, "id": "78", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65442425194985, 41.9515269703783, -85.65442425194985, 41.9515269703783], "geometry": {"coordinates": [-85.65442425194985, 41.9515269703783], "type": "Point"}, "id": "79", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65441582926415, 41.95166173302916, -85.65441582926415, 41.95166173302916], "geometry": {"coordinates": [-85.65441582926415, 41.95166173302916], "type": "Point"}, "id": "80", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65440740657849, 41.9517964953951, -85.65440740657849, 41.9517964953951], "geometry": {"coordinates": [-85.65440740657849, 41.9517964953951], "type": "Point"}, "id": "81", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65438640488168, 41.951929413372966, -85.65438640488168, 41.951929413372966], "geometry": {"coordinates": [-85.65438640488168, 41.951929413372966], "type": "Point"}, "id": "82", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6543254308945, 41.9520564710838, -85.6543254308945, 41.9520564710838], "geometry": {"coordinates": [-85.6543254308945, 41.9520564710838], "type": "Point"}, "id": "83", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65426445690734, 41.95218352854136, -85.65426445690734, 41.95218352854136], "geometry": {"coordinates": [-85.65426445690734, 41.95218352854136], "type": "Point"}, "id": "84", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65418682878905, 41.95230353287919, -85.65418682878905, 41.95230353287919], "geometry": {"coordinates": [-85.65418682878905, 41.95230353287919], "type": "Point"}, "id": "85", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6540710152274, 41.95240736584577, -85.6540710152274, 41.95240736584577], "geometry": {"coordinates": [-85.6540710152274, 41.95240736584577], "type": "Point"}, "id": "86", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65395520166572, 41.9525111986432, -85.65395520166572, 41.9525111986432], "geometry": {"coordinates": [-85.65395520166572, 41.9525111986432], "type": "Point"}, "id": "87", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65383232821675, 41.952609789001386, -85.65383232821675, 41.952609789001386], "geometry": {"coordinates": [-85.65383232821675, 41.952609789001386], "type": "Point"}, "id": "88", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65369289183211, 41.95269608053194, -85.65369289183211, 41.95269608053194], "geometry": {"coordinates": [-85.65369289183211, 41.95269608053194], "type": "Point"}, "id": "89", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65355345544744, 41.95278237194567, -85.65355345544744, 41.95278237194567], "geometry": {"coordinates": [-85.65355345544744, 41.95278237194567], "type": "Point"}, "id": "90", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65341401906278, 41.95286866324258, -85.65341401906278, 41.95286866324258], "geometry": {"coordinates": [-85.65341401906278, 41.95286866324258], "type": "Point"}, "id": "91", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65327458267812, 41.952954954422665, -85.65327458267812, 41.952954954422665], "geometry": {"coordinates": [-85.65327458267812, 41.952954954422665], "type": "Point"}, "id": "92", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65313514629345, 41.95304124548592, -85.65313514629345, 41.95304124548592], "geometry": {"coordinates": [-85.65313514629345, 41.95304124548592], "type": "Point"}, "id": "93", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65300396480262, 41.95313436977434, -85.65300396480262, 41.95313436977434], "geometry": {"coordinates": [-85.65300396480262, 41.95313436977434], "type": "Point"}, "id": "94", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65287371535796, 41.95322826546668, -85.65287371535796, 41.95322826546668], "geometry": {"coordinates": [-85.65287371535796, 41.95322826546668], "type": "Point"}, "id": "95", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6527434659133, 41.95332216102069, -85.6527434659133, 41.95332216102069], "geometry": {"coordinates": [-85.6527434659133, 41.95332216102069], "type": "Point"}, "id": "96", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65261321646864, 41.95341605643637, -85.65261321646864, 41.95341605643637], "geometry": {"coordinates": [-85.65261321646864, 41.95341605643637], "type": "Point"}, "id": "97", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65246985594476, 41.95349626929779, -85.65246985594476, 41.95349626929779], "geometry": {"coordinates": [-85.65246985594476, 41.95349626929779], "type": "Point"}, "id": "98", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65230800152634, 41.953557182281315, -85.65230800152634, 41.953557182281315], "geometry": {"coordinates": [-85.65230800152634, 41.953557182281315], "type": "Point"}, "id": "99", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65214614710793, 41.953618095206636, -85.65214614710793, 41.953618095206636], "geometry": {"coordinates": [-85.65214614710793, 41.953618095206636], "type": "Point"}, "id": "100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.65197372220902, 41.95364450771256, -85.65197372220902, 41.95364450771256], "geometry": {"coordinates": [-85.65197372220902, 41.95364450771256], "type": "Point"}, "id": "101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6517923611045, 41.95364175385635, -85.6517923611045, 41.95364175385635], "geometry": {"coordinates": [-85.6517923611045, 41.95364175385635], "type": "Point"}, "id": "102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962750}, "type": "Feature"}, {"bbox": [-85.6283312, 41.947065599999995, -85.6283312, 41.947065599999995], "geometry": {"coordinates": [-85.6283312, 41.947065599999995], "type": "Point"}, "id": "103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150826}, "type": "Feature"}, {"bbox": [-85.6242808, 41.9606501, -85.6242808, 41.9606501], "geometry": {"coordinates": [-85.6242808, 41.9606501], "type": "Point"}, "id": "104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.6244511513517, 41.96071056093584, -85.6244511513517, 41.96071056093584], "geometry": {"coordinates": [-85.6244511513517, 41.96071056093584], "type": "Point"}, "id": "105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62462126491752, 41.96077139102627, -85.62462126491752, 41.96077139102627], "geometry": {"coordinates": [-85.62462126491752, 41.96077139102627], "type": "Point"}, "id": "106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62479137848332, 41.96083222105863, -85.62479137848332, 41.96083222105863], "geometry": {"coordinates": [-85.62479137848332, 41.96083222105863], "type": "Point"}, "id": "107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62496149204915, 41.960893051032926, -85.62496149204915, 41.960893051032926], "geometry": {"coordinates": [-85.62496149204915, 41.960893051032926], "type": "Point"}, "id": "108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62513957891947, 41.96090385125327, -85.62513957891947, 41.96090385125327], "geometry": {"coordinates": [-85.62513957891947, 41.96090385125327], "type": "Point"}, "id": "109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62502221951078, 41.9608104666999, -85.62502221951078, 41.9608104666999], "geometry": {"coordinates": [-85.62502221951078, 41.9608104666999], "type": "Point"}, "id": "110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62485262452687, 41.96074884465585, -85.62485262452687, 41.96074884465585], "geometry": {"coordinates": [-85.62485262452687, 41.96074884465585], "type": "Point"}, "id": "111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62468307850122, 41.960687144621545, -85.62468307850122, 41.960687144621545], "geometry": {"coordinates": [-85.62468307850122, 41.960687144621545], "type": "Point"}, "id": "112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.62451353247558, 41.9606254445275, -85.62451353247558, 41.9606254445275], "geometry": {"coordinates": [-85.62451353247558, 41.9606254445275], "type": "Point"}, "id": "113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652550706}, "type": "Feature"}, {"bbox": [-85.61523799999999, 41.94746799999999, -85.61523799999999, 41.94746799999999], "geometry": {"coordinates": [-85.61523799999999, 41.94746799999999], "type": "Point"}, "id": "114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61542045662834, 41.94746702473074, -85.61542045662834, 41.94746702473074], "geometry": {"coordinates": [-85.61542045662834, 41.94746702473074], "type": "Point"}, "id": "115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61560291325668, 41.947466049461475, -85.61560291325668, 41.947466049461475], "geometry": {"coordinates": [-85.61560291325668, 41.947466049461475], "type": "Point"}, "id": "116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61578536988505, 41.947465074192195, -85.61578536988505, 41.947465074192195], "geometry": {"coordinates": [-85.61578536988505, 41.947465074192195], "type": "Point"}, "id": "117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6159678265134, 41.947464098922886, -85.6159678265134, 41.947464098922886], "geometry": {"coordinates": [-85.6159678265134, 41.947464098922886], "type": "Point"}, "id": "118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6161502831316, 41.94746312261324, -85.6161502831316, 41.94746312261324], "geometry": {"coordinates": [-85.6161502831316, 41.94746312261324], "type": "Point"}, "id": "119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61633273963066, 41.94746213405448, -85.61633273963066, 41.94746213405448], "geometry": {"coordinates": [-85.61633273963066, 41.94746213405448], "type": "Point"}, "id": "120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61651519612974, 41.94746114549571, -85.61651519612974, 41.94746114549571], "geometry": {"coordinates": [-85.61651519612974, 41.94746114549571], "type": "Point"}, "id": "121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61669765262879, 41.947460156936906, -85.61669765262879, 41.947460156936906], "geometry": {"coordinates": [-85.61669765262879, 41.947460156936906], "type": "Point"}, "id": "122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61688010912785, 41.947459168378096, -85.61688010912785, 41.947459168378096], "geometry": {"coordinates": [-85.61688010912785, 41.947459168378096], "type": "Point"}, "id": "123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61706256573919, 41.94745819138872, -85.61706256573919, 41.94745819138872], "geometry": {"coordinates": [-85.61706256573919, 41.94745819138872], "type": "Point"}, "id": "124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61724502241718, 41.94745722127142, -85.61724502241718, 41.94745722127142], "geometry": {"coordinates": [-85.61724502241718, 41.94745722127142], "type": "Point"}, "id": "125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61742747909518, 41.9474562511541, -85.61742747909518, 41.9474562511541], "geometry": {"coordinates": [-85.61742747909518, 41.9474562511541], "type": "Point"}, "id": "126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6176098127997, 41.9474512653487, -85.6176098127997, 41.9474512653487], "geometry": {"coordinates": [-85.6176098127997, 41.9474512653487], "type": "Point"}, "id": "127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61779219095749, 41.94744844096169, -85.61779219095749, 41.94744844096169], "geometry": {"coordinates": [-85.61779219095749, 41.94744844096169], "type": "Point"}, "id": "128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61797464855692, 41.94744930994091, -85.61797464855692, 41.94744930994091], "geometry": {"coordinates": [-85.61797464855692, 41.94744930994091], "type": "Point"}, "id": "129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61815710615636, 41.9474501789201, -85.61815710615636, 41.9474501789201], "geometry": {"coordinates": [-85.61815710615636, 41.9474501789201], "type": "Point"}, "id": "130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6183395637558, 41.94745104789929, -85.6183395637558, 41.94745104789929], "geometry": {"coordinates": [-85.6183395637558, 41.94745104789929], "type": "Point"}, "id": "131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6185220204466, 41.94745038438498, -85.6185220204466, 41.94745038438498], "geometry": {"coordinates": [-85.6185220204466, 41.94745038438498], "type": "Point"}, "id": "132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61870447694463, 41.94744939572021, -85.61870447694463, 41.94744939572021], "geometry": {"coordinates": [-85.61870447694463, 41.94744939572021], "type": "Point"}, "id": "133", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61888693344265, 41.947448407055425, -85.61888693344265, 41.947448407055425], "geometry": {"coordinates": [-85.61888693344265, 41.947448407055425], "type": "Point"}, "id": "134", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61906938994069, 41.94744741839063, -85.61906938994069, 41.94744741839063], "geometry": {"coordinates": [-85.61906938994069, 41.94744741839063], "type": "Point"}, "id": "135", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61925184643871, 41.94744642972582, -85.61925184643871, 41.94744642972582], "geometry": {"coordinates": [-85.61925184643871, 41.94744642972582], "type": "Point"}, "id": "136", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61943430293674, 41.947445441060985, -85.61943430293674, 41.947445441060985], "geometry": {"coordinates": [-85.61943430293674, 41.947445441060985], "type": "Point"}, "id": "137", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61961675943476, 41.94744445239614, -85.61961675943476, 41.94744445239614], "geometry": {"coordinates": [-85.61961675943476, 41.94744445239614], "type": "Point"}, "id": "138", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.61979921593279, 41.947443463731275, -85.61979921593279, 41.947443463731275], "geometry": {"coordinates": [-85.61979921593279, 41.947443463731275], "type": "Point"}, "id": "139", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6199816724308, 41.9474424750664, -85.6199816724308, 41.9474424750664], "geometry": {"coordinates": [-85.6199816724308, 41.9474424750664], "type": "Point"}, "id": "140", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62016412902908, 41.94744149676637, -85.62016412902908, 41.94744149676637], "geometry": {"coordinates": [-85.62016412902908, 41.94744149676637], "type": "Point"}, "id": "141", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62034658576677, 41.94744053287759, -85.62034658576677, 41.94744053287759], "geometry": {"coordinates": [-85.62034658576677, 41.94744053287759], "type": "Point"}, "id": "142", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62052904250444, 41.947439568988806, -85.62052904250444, 41.947439568988806], "geometry": {"coordinates": [-85.62052904250444, 41.947439568988806], "type": "Point"}, "id": "143", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6207114992421, 41.9474386051, -85.6207114992421, 41.9474386051], "geometry": {"coordinates": [-85.6207114992421, 41.9474386051], "type": "Point"}, "id": "144", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6208939559798, 41.947437641211174, -85.6208939559798, 41.947437641211174], "geometry": {"coordinates": [-85.6208939559798, 41.947437641211174], "type": "Point"}, "id": "145", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62107641271747, 41.947436677322344, -85.62107641271747, 41.947436677322344], "geometry": {"coordinates": [-85.62107641271747, 41.947436677322344], "type": "Point"}, "id": "146", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62125886945515, 41.947435713433485, -85.62125886945515, 41.947435713433485], "geometry": {"coordinates": [-85.62125886945515, 41.947435713433485], "type": "Point"}, "id": "147", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62144132603167, 41.94743473288205, -85.62144132603167, 41.94743473288205], "geometry": {"coordinates": [-85.62144132603167, 41.94743473288205], "type": "Point"}, "id": "148", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6216237825305, 41.947433744301456, -85.6216237825305, 41.947433744301456], "geometry": {"coordinates": [-85.6216237825305, 41.947433744301456], "type": "Point"}, "id": "149", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62180623902937, 41.94743275572084, -85.62180623902937, 41.94743275572084], "geometry": {"coordinates": [-85.62180623902937, 41.94743275572084], "type": "Point"}, "id": "150", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62198869552822, 41.947431767140216, -85.62198869552822, 41.947431767140216], "geometry": {"coordinates": [-85.62198869552822, 41.947431767140216], "type": "Point"}, "id": "151", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62217115202705, 41.94743077855956, -85.62217115202705, 41.94743077855956], "geometry": {"coordinates": [-85.62217115202705, 41.94743077855956], "type": "Point"}, "id": "152", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62235360852591, 41.947429789978905, -85.62235360852591, 41.947429789978905], "geometry": {"coordinates": [-85.62235360852591, 41.947429789978905], "type": "Point"}, "id": "153", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62253606502478, 41.947428801398225, -85.62253606502478, 41.947428801398225], "geometry": {"coordinates": [-85.62253606502478, 41.947428801398225], "type": "Point"}, "id": "154", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62271852152362, 41.94742781281754, -85.62271852152362, 41.94742781281754], "geometry": {"coordinates": [-85.62271852152362, 41.94742781281754], "type": "Point"}, "id": "155", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6229009780551, 41.947426827576365, -85.6229009780551, 41.947426827576365], "geometry": {"coordinates": [-85.6229009780551, 41.947426827576365], "type": "Point"}, "id": "156", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62308343459557, 41.94742584325132, -85.62308343459557, 41.94742584325132], "geometry": {"coordinates": [-85.62308343459557, 41.94742584325132], "type": "Point"}, "id": "157", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.623265891136, 41.94742485892625, -85.623265891136, 41.94742485892625], "geometry": {"coordinates": [-85.623265891136, 41.94742485892625], "type": "Point"}, "id": "158", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62344834767644, 41.94742387460117, -85.62344834767644, 41.94742387460117], "geometry": {"coordinates": [-85.62344834767644, 41.94742387460117], "type": "Point"}, "id": "159", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62363080421689, 41.94742289027608, -85.62363080421689, 41.94742289027608], "geometry": {"coordinates": [-85.62363080421689, 41.94742289027608], "type": "Point"}, "id": "160", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62381326075733, 41.94742190595097, -85.62381326075733, 41.94742190595097], "geometry": {"coordinates": [-85.62381326075733, 41.94742190595097], "type": "Point"}, "id": "161", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62399571729777, 41.94742092162584, -85.62399571729777, 41.94742092162584], "geometry": {"coordinates": [-85.62399571729777, 41.94742092162584], "type": "Point"}, "id": "162", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62417817383822, 41.94741993730071, -85.62417817383822, 41.94741993730071], "geometry": {"coordinates": [-85.62417817383822, 41.94741993730071], "type": "Point"}, "id": "163", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62436063037866, 41.94741895297555, -85.62436063037866, 41.94741895297555], "geometry": {"coordinates": [-85.62436063037866, 41.94741895297555], "type": "Point"}, "id": "164", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62454308691912, 41.947417968650385, -85.62454308691912, 41.947417968650385], "geometry": {"coordinates": [-85.62454308691912, 41.947417968650385], "type": "Point"}, "id": "165", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.62472554345956, 41.947416984325194, -85.62472554345956, 41.947416984325194], "geometry": {"coordinates": [-85.62472554345956, 41.947416984325194], "type": "Point"}, "id": "166", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964788}, "type": "Feature"}, {"bbox": [-85.6186943, 41.95500010000001, -85.6186943, 41.95500010000001], "geometry": {"coordinates": [-85.6186943, 41.95500010000001], "type": "Point"}, "id": "167", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6186601960284, 41.9551323619432, -85.6186601960284, 41.9551323619432], "geometry": {"coordinates": [-85.6186601960284, 41.9551323619432], "type": "Point"}, "id": "168", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61859394100807, 41.95525421109502, -85.61859394100807, 41.95525421109502], "geometry": {"coordinates": [-85.61859394100807, 41.95525421109502], "type": "Point"}, "id": "169", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61848448431111, 41.95536123080357, -85.61848448431111, 41.95536123080357], "geometry": {"coordinates": [-85.61848448431111, 41.95536123080357], "type": "Point"}, "id": "170", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61835925769218, 41.95545856380948, -85.61835925769218, 41.95545856380948], "geometry": {"coordinates": [-85.61835925769218, 41.95545856380948], "type": "Point"}, "id": "171", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61823403107323, 41.95555589666676, -85.61823403107323, 41.95555589666676], "geometry": {"coordinates": [-85.61823403107323, 41.95555589666676], "type": "Point"}, "id": "172", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61816409191071, 41.9556785193793, -85.61816409191071, 41.9556785193793], "geometry": {"coordinates": [-85.61816409191071, 41.9556785193793], "type": "Point"}, "id": "173", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61814747505196, 41.95581048969501, -85.61814747505196, 41.95581048969501], "geometry": {"coordinates": [-85.61814747505196, 41.95581048969501], "type": "Point"}, "id": "174", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61815418367186, 41.95594510447826, -85.61815418367186, 41.95594510447826], "geometry": {"coordinates": [-85.61815418367186, 41.95594510447826], "type": "Point"}, "id": "175", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6181608922918, 41.956079718977165, -85.6181608922918, 41.956079718977165], "geometry": {"coordinates": [-85.6181608922918, 41.956079718977165], "type": "Point"}, "id": "176", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61819388998897, 41.95621207703575, -85.61819388998897, 41.95621207703575], "geometry": {"coordinates": [-85.61819388998897, 41.95621207703575], "type": "Point"}, "id": "177", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61822858875301, 41.95634428883243, -85.61822858875301, 41.95634428883243], "geometry": {"coordinates": [-85.61822858875301, 41.95634428883243], "type": "Point"}, "id": "178", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61829993969897, 41.95646698857916, -85.61829993969897, 41.95646698857916], "geometry": {"coordinates": [-85.61829993969897, 41.95646698857916], "type": "Point"}, "id": "179", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61838338918963, 41.95658654834662, -85.61838338918963, 41.95658654834662], "geometry": {"coordinates": [-85.61838338918963, 41.95658654834662], "type": "Point"}, "id": "180", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61848017501143, 41.956700196798856, -85.61848017501143, 41.956700196798856], "geometry": {"coordinates": [-85.61848017501143, 41.956700196798856], "type": "Point"}, "id": "181", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61858188728752, 41.95681166148919, -85.61858188728752, 41.95681166148919], "geometry": {"coordinates": [-85.61858188728752, 41.95681166148919], "type": "Point"}, "id": "182", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61863965874427, 41.95693885461878, -85.61863965874427, 41.95693885461878], "geometry": {"coordinates": [-85.61863965874427, 41.95693885461878], "type": "Point"}, "id": "183", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61866945159966, 41.95707026838711, -85.61866945159966, 41.95707026838711], "geometry": {"coordinates": [-85.61866945159966, 41.95707026838711], "type": "Point"}, "id": "184", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867087487111, 41.95720496876452, -85.61867087487111, 41.95720496876452], "geometry": {"coordinates": [-85.61867087487111, 41.95720496876452], "type": "Point"}, "id": "185", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867229814254, 41.95733966885721, -85.61867229814254, 41.95733966885721], "geometry": {"coordinates": [-85.61867229814254, 41.95733966885721], "type": "Point"}, "id": "186", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867372141401, 41.95747436866518, -85.61867372141401, 41.95747436866518], "geometry": {"coordinates": [-85.61867372141401, 41.95747436866518], "type": "Point"}, "id": "187", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867514468547, 41.95760906818846, -85.61867514468547, 41.95760906818846], "geometry": {"coordinates": [-85.61867514468547, 41.95760906818846], "type": "Point"}, "id": "188", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61867656795691, 41.95774376742703, -85.61867656795691, 41.95774376742703], "geometry": {"coordinates": [-85.61867656795691, 41.95774376742703], "type": "Point"}, "id": "189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61868181828108, 41.95787841325108, -85.61868181828108, 41.95787841325108], "geometry": {"coordinates": [-85.61868181828108, 41.95787841325108], "type": "Point"}, "id": "190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6186871567508, 41.95801305756694, -85.6186871567508, 41.95801305756694], "geometry": {"coordinates": [-85.6186871567508, 41.95801305756694], "type": "Point"}, "id": "191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61869244260457, 41.958147702433074, -85.61869244260457, 41.958147702433074], "geometry": {"coordinates": [-85.61869244260457, 41.958147702433074], "type": "Point"}, "id": "192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61869483120041, 41.95828239297965, -85.61869483120041, 41.95828239297965], "geometry": {"coordinates": [-85.61869483120041, 41.95828239297965], "type": "Point"}, "id": "193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61869721979623, 41.95841708324154, -85.61869721979623, 41.95841708324154], "geometry": {"coordinates": [-85.61869721979623, 41.95841708324154], "type": "Point"}, "id": "194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.6186996150811, 41.95855177312702, -85.6186996150811, 41.95855177312702], "geometry": {"coordinates": [-85.6186996150811, 41.95855177312702], "type": "Point"}, "id": "195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61870390754056, 41.95868643670579, -85.61870390754056, 41.95868643670579], "geometry": {"coordinates": [-85.61870390754056, 41.95868643670579], "type": "Point"}, "id": "196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965913}, "type": "Feature"}, {"bbox": [-85.61712729999999, 41.954688, -85.61712729999999, 41.954688], "geometry": {"coordinates": [-85.61712729999999, 41.954688], "type": "Point"}, "id": "197", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550660}, "type": "Feature"}, {"bbox": [-85.61734148256942, 41.95472809204093, -85.61734148256942, 41.95472809204093], "geometry": {"coordinates": [-85.61734148256942, 41.95472809204093], "type": "Point"}, "id": "198", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550660}, "type": "Feature"}, {"bbox": [-85.61756124081612, 41.95474638028398, -85.61756124081612, 41.95474638028398], "geometry": {"coordinates": [-85.61756124081612, 41.95474638028398], "type": "Point"}, "id": "199", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550660}, "type": "Feature"}, {"bbox": [-85.61778185285294, 41.95475772366293, -85.61778185285294, 41.95475772366293], "geometry": {"coordinates": [-85.61778185285294, 41.95475772366293], "type": "Point"}, "id": "200", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550660}, "type": "Feature"}, {"bbox": [-85.6181613, 41.95608790000001, -85.6181613, 41.95608790000001], "geometry": {"coordinates": [-85.6181613, 41.95608790000001], "type": "Point"}, "id": "201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965854}, "type": "Feature"}, {"bbox": [-85.6179407, 41.95608650000001, -85.6179407, 41.95608650000001], "geometry": {"coordinates": [-85.6179407, 41.95608650000001], "type": "Point"}, "id": "202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965854}, "type": "Feature"}, {"bbox": [-85.62590499999999, 41.9665028, -85.62590499999999, 41.9665028], "geometry": {"coordinates": [-85.62590499999999, 41.9665028], "type": "Point"}, "id": "203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.6259214867995, 41.96636367239965, -85.6259214867995, 41.96636367239965], "geometry": {"coordinates": [-85.6259214867995, 41.96636367239965], "type": "Point"}, "id": "204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.6259966846127, 41.96623845231297, -85.6259966846127, 41.96623845231297], "geometry": {"coordinates": [-85.6259966846127, 41.96623845231297], "type": "Point"}, "id": "205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62615215686534, 41.96616402535249, -85.62615215686534, 41.96616402535249], "geometry": {"coordinates": [-85.62615215686534, 41.96616402535249], "type": "Point"}, "id": "206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.6263371935799, 41.96614086532545, -85.6263371935799, 41.96614086532545], "geometry": {"coordinates": [-85.6263371935799, 41.96614086532545], "type": "Point"}, "id": "207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62652543808014, 41.9661399, -85.62652543808014, 41.9661399], "geometry": {"coordinates": [-85.62652543808014, 41.9661399], "type": "Point"}, "id": "208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62671375199483, 41.9661399, -85.62671375199483, 41.9661399], "geometry": {"coordinates": [-85.62671375199483, 41.9661399], "type": "Point"}, "id": "209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62690206590948, 41.9661399, -85.62690206590948, 41.9661399], "geometry": {"coordinates": [-85.62690206590948, 41.9661399], "type": "Point"}, "id": "210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62709022699381, 41.9661446014704, -85.62709022699381, 41.9661446014704], "geometry": {"coordinates": [-85.62709022699381, 41.9661446014704], "type": "Point"}, "id": "211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.62727490358138, 41.96616854695202, -85.62727490358138, 41.96616854695202], "geometry": {"coordinates": [-85.62727490358138, 41.96616854695202], "type": "Point"}, "id": "212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967080}, "type": "Feature"}, {"bbox": [-85.61339599999998, 41.951640000000005, -85.61339599999998, 41.951640000000005], "geometry": {"coordinates": [-85.61339599999998, 41.951640000000005], "type": "Point"}, "id": "213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61340281086169, 41.95177573089629, -85.61340281086169, 41.95177573089629], "geometry": {"coordinates": [-85.61340281086169, 41.95177573089629], "type": "Point"}, "id": "214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61340962172338, 41.95191146150354, -85.61340962172338, 41.95191146150354], "geometry": {"coordinates": [-85.61340962172338, 41.95191146150354], "type": "Point"}, "id": "215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.6134125856231, 41.952047266642595, -85.6134125856231, 41.952047266642595], "geometry": {"coordinates": [-85.6134125856231, 41.952047266642595], "type": "Point"}, "id": "216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61341532329715, 41.952183075892236, -85.61341532329715, 41.952183075892236], "geometry": {"coordinates": [-85.61341532329715, 41.952183075892236], "type": "Point"}, "id": "217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61341806097118, 41.95231888485252, -85.61341806097118, 41.95231888485252], "geometry": {"coordinates": [-85.61341806097118, 41.95231888485252], "type": "Point"}, "id": "218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61342079864525, 41.95245469352343, -85.61342079864525, 41.95245469352343], "geometry": {"coordinates": [-85.61342079864525, 41.95245469352343], "type": "Point"}, "id": "219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61342353631929, 41.95259050190498, -85.61342353631929, 41.95259050190498], "geometry": {"coordinates": [-85.61342353631929, 41.95259050190498], "type": "Point"}, "id": "220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61342627399334, 41.95272630999716, -85.61342627399334, 41.95272630999716], "geometry": {"coordinates": [-85.61342627399334, 41.95272630999716], "type": "Point"}, "id": "221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.6134290116674, 41.952862117799974, -85.6134290116674, 41.952862117799974], "geometry": {"coordinates": [-85.6134290116674, 41.952862117799974], "type": "Point"}, "id": "222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343174934147, 41.95299792531344, -85.61343174934147, 41.95299792531344], "geometry": {"coordinates": [-85.61343174934147, 41.95299792531344], "type": "Point"}, "id": "223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343448701551, 41.95313373253752, -85.61343448701551, 41.95313373253752], "geometry": {"coordinates": [-85.61343448701551, 41.95313373253752], "type": "Point"}, "id": "224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343722468956, 41.95326953947225, -85.61343722468956, 41.95326953947225], "geometry": {"coordinates": [-85.61343722468956, 41.95326953947225], "type": "Point"}, "id": "225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343799999999, 41.9534053570564, -85.61343799999999, 41.9534053570564], "geometry": {"coordinates": [-85.61343799999999, 41.9534053570564], "type": "Point"}, "id": "226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.61343799999999, 41.953541178672914, -85.61343799999999, 41.953541178672914], "geometry": {"coordinates": [-85.61343799999999, 41.953541178672914], "type": "Point"}, "id": "227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966056}, "type": "Feature"}, {"bbox": [-85.6297548, 41.9581373, -85.6297548, 41.9581373], "geometry": {"coordinates": [-85.6297548, 41.9581373], "type": "Point"}, "id": "228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.62975153972678, 41.957995201829206, -85.62975153972678, 41.957995201829206], "geometry": {"coordinates": [-85.62975153972678, 41.957995201829206], "type": "Point"}, "id": "229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.62974917323103, 41.95785309922216, -85.62974917323103, 41.95785309922216], "geometry": {"coordinates": [-85.62974917323103, 41.95785309922216], "type": "Point"}, "id": "230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.62974911888155, 41.95771097531115, -85.62974911888155, 41.95771097531115], "geometry": {"coordinates": [-85.62974911888155, 41.95771097531115], "type": "Point"}, "id": "231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.62974960469968, 41.95756885473832, -85.62974960469968, 41.95756885473832], "geometry": {"coordinates": [-85.62974960469968, 41.95756885473832], "type": "Point"}, "id": "232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.957426735219144, -85.6297512, 41.957426735219144], "geometry": {"coordinates": [-85.6297512, 41.957426735219144], "type": "Point"}, "id": "233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95728461035153, -85.6297512, 41.95728461035153], "geometry": {"coordinates": [-85.6297512, 41.95728461035153], "type": "Point"}, "id": "234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95714248516695, -85.6297512, 41.95714248516695], "geometry": {"coordinates": [-85.6297512, 41.95714248516695], "type": "Point"}, "id": "235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95700035966541, -85.6297512, 41.95700035966541], "geometry": {"coordinates": [-85.6297512, 41.95700035966541], "type": "Point"}, "id": "236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95685823384691, -85.6297512, 41.95685823384691], "geometry": {"coordinates": [-85.6297512, 41.95685823384691], "type": "Point"}, "id": "237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95671610771144, -85.6297512, 41.95671610771144], "geometry": {"coordinates": [-85.6297512, 41.95671610771144], "type": "Point"}, "id": "238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95657398125902, -85.6297512, 41.95657398125902], "geometry": {"coordinates": [-85.6297512, 41.95657398125902], "type": "Point"}, "id": "239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.95643185448964, -85.6297512, 41.95643185448964], "geometry": {"coordinates": [-85.6297512, 41.95643185448964], "type": "Point"}, "id": "240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.6297512, 41.9562897274033, -85.6297512, 41.9562897274033], "geometry": {"coordinates": [-85.6297512, 41.9562897274033], "type": "Point"}, "id": "241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 341048353}, "type": "Feature"}, {"bbox": [-85.627267, 41.955878, -85.627267, 41.955878], "geometry": {"coordinates": [-85.627267, 41.955878], "type": "Point"}, "id": "242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62743373961109, 41.955933125230224, -85.62743373961109, 41.955933125230224], "geometry": {"coordinates": [-85.62743373961109, 41.955933125230224], "type": "Point"}, "id": "243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.6276004861674, 41.95598823879819, -85.6276004861674, 41.95598823879819], "geometry": {"coordinates": [-85.6276004861674, 41.95598823879819], "type": "Point"}, "id": "244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62776761727315, 41.95604265414785, -85.62776761727315, 41.95604265414785], "geometry": {"coordinates": [-85.62776761727315, 41.95604265414785], "type": "Point"}, "id": "245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62793896845608, 41.95608921415727, -85.62793896845608, 41.95608921415727], "geometry": {"coordinates": [-85.62793896845608, 41.95608921415727], "type": "Point"}, "id": "246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62811309971063, 41.956129777320314, -85.62811309971063, 41.956129777320314], "geometry": {"coordinates": [-85.62811309971063, 41.956129777320314], "type": "Point"}, "id": "247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62829141798291, 41.956149740801195, -85.62829141798291, 41.956149740801195], "geometry": {"coordinates": [-85.62829141798291, 41.956149740801195], "type": "Point"}, "id": "248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62847389105742, 41.95614922343248, -85.62847389105742, 41.95614922343248], "geometry": {"coordinates": [-85.62847389105742, 41.95614922343248], "type": "Point"}, "id": "249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62865636413193, 41.95614870606376, -85.62865636413193, 41.95614870606376], "geometry": {"coordinates": [-85.62865636413193, 41.95614870606376], "type": "Point"}, "id": "250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62883883720642, 41.956148188695046, -85.62883883720642, 41.956148188695046], "geometry": {"coordinates": [-85.62883883720642, 41.956148188695046], "type": "Point"}, "id": "251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62902131028092, 41.95614767132632, -85.62902131028092, 41.95614767132632], "geometry": {"coordinates": [-85.62902131028092, 41.95614767132632], "type": "Point"}, "id": "252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62920378335542, 41.95614715395759, -85.62920378335542, 41.95614715395759], "geometry": {"coordinates": [-85.62920378335542, 41.95614715395759], "type": "Point"}, "id": "253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62938625642994, 41.95614663658886, -85.62938625642994, 41.95614663658886], "geometry": {"coordinates": [-85.62938625642994, 41.95614663658886], "type": "Point"}, "id": "254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62956872859719, 41.956146822146785, -85.62956872859719, 41.956146822146785], "geometry": {"coordinates": [-85.62956872859719, 41.956146822146785], "type": "Point"}, "id": "255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964513}, "type": "Feature"}, {"bbox": [-85.62551969999998, 41.9586443, -85.62551969999998, 41.9586443], "geometry": {"coordinates": [-85.62551969999998, 41.9586443], "type": "Point"}, "id": "256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62535379265213, 41.95858919924258, -85.62535379265213, 41.95858919924258], "geometry": {"coordinates": [-85.62535379265213, 41.95858919924258], "type": "Point"}, "id": "257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62518884968182, 41.95853253573374, -85.62518884968182, 41.95853253573374], "geometry": {"coordinates": [-85.62518884968182, 41.95853253573374], "type": "Point"}, "id": "258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62502449904682, 41.958474912791566, -85.62502449904682, 41.958474912791566], "geometry": {"coordinates": [-85.62502449904682, 41.958474912791566], "type": "Point"}, "id": "259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62486369274504, 41.95841216468293, -85.62486369274504, 41.95841216468293], "geometry": {"coordinates": [-85.62486369274504, 41.95841216468293], "type": "Point"}, "id": "260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62471824518691, 41.95833165715419, -85.62471824518691, 41.95833165715419], "geometry": {"coordinates": [-85.62471824518691, 41.95833165715419], "type": "Point"}, "id": "261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62461259266304, 41.95822234620048, -85.62461259266304, 41.95822234620048], "geometry": {"coordinates": [-85.62461259266304, 41.95822234620048], "type": "Point"}, "id": "262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62453406175187, 41.95810091115455, -85.62453406175187, 41.95810091115455], "geometry": {"coordinates": [-85.62453406175187, 41.95810091115455], "type": "Point"}, "id": "263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62450582680675, 41.957967597655674, -85.62450582680675, 41.957967597655674], "geometry": {"coordinates": [-85.62450582680675, 41.957967597655674], "type": "Point"}, "id": "264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62449672900065, 41.957832646873584, -85.62449672900065, 41.957832646873584], "geometry": {"coordinates": [-85.62449672900065, 41.957832646873584], "type": "Point"}, "id": "265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.6245093711849, 41.95769808157599, -85.6245093711849, 41.95769808157599], "geometry": {"coordinates": [-85.6245093711849, 41.95769808157599], "type": "Point"}, "id": "266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62459455607885, 41.957584388369725, -85.62459455607885, 41.957584388369725], "geometry": {"coordinates": [-85.62459455607885, 41.957584388369725], "type": "Point"}, "id": "267", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62475697557078, 41.95752954201162, -85.62475697557078, 41.95752954201162], "geometry": {"coordinates": [-85.62475697557078, 41.95752954201162], "type": "Point"}, "id": "268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62493782299349, 41.95752370011852, -85.62493782299349, 41.95752370011852], "geometry": {"coordinates": [-85.62493782299349, 41.95752370011852], "type": "Point"}, "id": "269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62511947067401, 41.95752130935591, -85.62511947067401, 41.95752130935591], "geometry": {"coordinates": [-85.62511947067401, 41.95752130935591], "type": "Point"}, "id": "270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62530109478836, 41.95751735144541, -85.62530109478836, 41.95751735144541], "geometry": {"coordinates": [-85.62530109478836, 41.95751735144541], "type": "Point"}, "id": "271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62548227959772, 41.95750881194571, -85.62548227959772, 41.95750881194571], "geometry": {"coordinates": [-85.62548227959772, 41.95750881194571], "type": "Point"}, "id": "272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.6256618435603, 41.95748995316795, -85.6256618435603, 41.95748995316795], "geometry": {"coordinates": [-85.6256618435603, 41.95748995316795], "type": "Point"}, "id": "273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62583615653327, 41.95745184322948, -85.62583615653327, 41.95745184322948], "geometry": {"coordinates": [-85.62583615653327, 41.95745184322948], "type": "Point"}, "id": "274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.6260063318739, 41.95740448311456, -85.6260063318739, 41.95740448311456], "geometry": {"coordinates": [-85.6260063318739, 41.95740448311456], "type": "Point"}, "id": "275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62617183064627, 41.95734890907333, -85.62617183064627, 41.95734890907333], "geometry": {"coordinates": [-85.62617183064627, 41.95734890907333], "type": "Point"}, "id": "276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967809}, "type": "Feature"}, {"bbox": [-85.62697859999999, 41.959963699999996, -85.62697859999999, 41.959963699999996], "geometry": {"coordinates": [-85.62697859999999, 41.959963699999996], "type": "Point"}, "id": "277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62678666328199, 41.95996503690868, -85.62678666328199, 41.95996503690868], "geometry": {"coordinates": [-85.62678666328199, 41.95996503690868], "type": "Point"}, "id": "278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.626594726564, 41.95996637381732, -85.626594726564, 41.95996637381732], "geometry": {"coordinates": [-85.626594726564, 41.95996637381732], "type": "Point"}, "id": "279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62640278984597, 41.959967710725955, -85.62640278984597, 41.959967710725955], "geometry": {"coordinates": [-85.62640278984597, 41.959967710725955], "type": "Point"}, "id": "280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62621085312797, 41.95996904763455, -85.62621085312797, 41.95996904763455], "geometry": {"coordinates": [-85.62621085312797, 41.95996904763455], "type": "Point"}, "id": "281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62601891640996, 41.959970384543105, -85.62601891640996, 41.959970384543105], "geometry": {"coordinates": [-85.62601891640996, 41.959970384543105], "type": "Point"}, "id": "282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62582832437299, 41.959982592017795, -85.62582832437299, 41.959982592017795], "geometry": {"coordinates": [-85.62582832437299, 41.959982592017795], "type": "Point"}, "id": "283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62565577579416, 41.96004140617153, -85.62565577579416, 41.96004140617153], "geometry": {"coordinates": [-85.62565577579416, 41.96004140617153], "type": "Point"}, "id": "284", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62552585042232, 41.96014523161893, -85.62552585042232, 41.96014523161893], "geometry": {"coordinates": [-85.62552585042232, 41.96014523161893], "type": "Point"}, "id": "285", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62543306663764, 41.96026991423279, -85.62543306663764, 41.96026991423279], "geometry": {"coordinates": [-85.62543306663764, 41.96026991423279], "type": "Point"}, "id": "286", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62535364817582, 41.96039985562733, -85.62535364817582, 41.96039985562733], "geometry": {"coordinates": [-85.62535364817582, 41.96039985562733], "type": "Point"}, "id": "287", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.625274229714, 41.9605297967569, -85.625274229714, 41.9605297967569], "geometry": {"coordinates": [-85.625274229714, 41.9605297967569], "type": "Point"}, "id": "288", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62519481125214, 41.9606597376215, -85.62519481125214, 41.9606597376215], "geometry": {"coordinates": [-85.62519481125214, 41.9606597376215], "type": "Point"}, "id": "289", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.62511824399252, 41.9607905866974, -85.62511824399252, 41.9607905866974], "geometry": {"coordinates": [-85.62511824399252, 41.9607905866974], "type": "Point"}, "id": "290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968017}, "type": "Feature"}, {"bbox": [-85.63316700000001, 41.96479, -85.63316700000001, 41.96479], "geometry": {"coordinates": [-85.63316700000001, 41.96479], "type": "Point"}, "id": "291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.63316970000001, 41.964932840640486, -85.63316970000001, 41.964932840640486], "geometry": {"coordinates": [-85.63316970000001, 41.964932840640486], "type": "Point"}, "id": "292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.63317239999999, 41.96507568096074, -85.63317239999999, 41.96507568096074], "geometry": {"coordinates": [-85.63317239999999, 41.96507568096074], "type": "Point"}, "id": "293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.6331751, 41.96521852096074, -85.6331751, 41.96521852096074], "geometry": {"coordinates": [-85.6331751, 41.96521852096074], "type": "Point"}, "id": "294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.6331778, 41.96536136064049, -85.6331778, 41.96536136064049], "geometry": {"coordinates": [-85.6331778, 41.96536136064049], "type": "Point"}, "id": "295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968023}, "type": "Feature"}, {"bbox": [-85.6264337, 41.9571608, -85.6264337, 41.9571608], "geometry": {"coordinates": [-85.6264337, 41.9571608], "type": "Point"}, "id": "296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62659752061784, 41.95722328359295, -85.62659752061784, 41.95722328359295], "geometry": {"coordinates": [-85.62659752061784, 41.95722328359295], "type": "Point"}, "id": "297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62676284985288, 41.95728345107455, -85.62676284985288, 41.95728345107455], "geometry": {"coordinates": [-85.62676284985288, 41.95728345107455], "type": "Point"}, "id": "298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62693042083407, 41.95734016320438, -85.62693042083407, 41.95734016320438], "geometry": {"coordinates": [-85.62693042083407, 41.95734016320438], "type": "Point"}, "id": "299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62709989860622, 41.95739365598271, -85.62709989860622, 41.95739365598271], "geometry": {"coordinates": [-85.62709989860622, 41.95739365598271], "type": "Point"}, "id": "300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6272751481085, 41.95743450876097, -85.6272751481085, 41.95743450876097], "geometry": {"coordinates": [-85.6272751481085, 41.95743450876097], "type": "Point"}, "id": "301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62745854489786, 41.95744564444417, -85.62745854489786, 41.95744564444417], "geometry": {"coordinates": [-85.62745854489786, 41.95744564444417], "type": "Point"}, "id": "302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62764257452402, 41.95744713198871, -85.62764257452402, 41.95744713198871], "geometry": {"coordinates": [-85.62764257452402, 41.95744713198871], "type": "Point"}, "id": "303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62782667376042, 41.95744553551111, -85.62782667376042, 41.95744553551111], "geometry": {"coordinates": [-85.62782667376042, 41.95744553551111], "type": "Point"}, "id": "304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6280107730412, 41.95744394185391, -85.6280107730412, 41.95744394185391], "geometry": {"coordinates": [-85.6280107730412, 41.95744394185391], "type": "Point"}, "id": "305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62819487232194, 41.957442348196665, -85.62819487232194, 41.957442348196665], "geometry": {"coordinates": [-85.62819487232194, 41.957442348196665], "type": "Point"}, "id": "306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62837897239727, 41.95744080801504, -85.62837897239727, 41.95744080801504], "geometry": {"coordinates": [-85.62837897239727, 41.95744080801504], "type": "Point"}, "id": "307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62856307185352, 41.95743922560884, -85.62856307185352, 41.95743922560884], "geometry": {"coordinates": [-85.62856307185352, 41.95743922560884], "type": "Point"}, "id": "308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62874717130978, 41.95743764320258, -85.62874717130978, 41.95743764320258], "geometry": {"coordinates": [-85.62874717130978, 41.95743764320258], "type": "Point"}, "id": "309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62893119529589, 41.95743443289337, -85.62893119529589, 41.95743443289337], "geometry": {"coordinates": [-85.62893119529589, 41.95743443289337], "type": "Point"}, "id": "310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62911529974271, 41.95743321312013, -85.62911529974271, 41.95743321312013], "geometry": {"coordinates": [-85.62911529974271, 41.95743321312013], "type": "Point"}, "id": "311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6292994041895, 41.95743199334686, -85.6292994041895, 41.95743199334686], "geometry": {"coordinates": [-85.6292994041895, 41.95743199334686], "type": "Point"}, "id": "312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62948350863628, 41.95743077357358, -85.62948350863628, 41.95743077357358], "geometry": {"coordinates": [-85.62948350863628, 41.95743077357358], "type": "Point"}, "id": "313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62966761308309, 41.95742955380027, -85.62966761308309, 41.95742955380027], "geometry": {"coordinates": [-85.62966761308309, 41.95742955380027], "type": "Point"}, "id": "314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.62985171477324, 41.95742813398562, -85.62985171477324, 41.95742813398562], "geometry": {"coordinates": [-85.62985171477324, 41.95742813398562], "type": "Point"}, "id": "315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63003581417105, 41.95742654782349, -85.63003581417105, 41.95742654782349], "geometry": {"coordinates": [-85.63003581417105, 41.95742654782349], "type": "Point"}, "id": "316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63021991356885, 41.957424961661324, -85.63021991356885, 41.957424961661324], "geometry": {"coordinates": [-85.63021991356885, 41.957424961661324], "type": "Point"}, "id": "317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63040401296668, 41.95742337549911, -85.63040401296668, 41.95742337549911], "geometry": {"coordinates": [-85.63040401296668, 41.95742337549911], "type": "Point"}, "id": "318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63058811236448, 41.95742178933686, -85.63058811236448, 41.95742178933686], "geometry": {"coordinates": [-85.63058811236448, 41.95742178933686], "type": "Point"}, "id": "319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6307722117623, 41.957420203174564, -85.6307722117623, 41.957420203174564], "geometry": {"coordinates": [-85.6307722117623, 41.957420203174564], "type": "Point"}, "id": "320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63095631260835, 41.95741871624738, -85.63095631260835, 41.95741871624738], "geometry": {"coordinates": [-85.63095631260835, 41.95741871624738], "type": "Point"}, "id": "321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63114041603261, 41.95741741391796, -85.63114041603261, 41.95741741391796], "geometry": {"coordinates": [-85.63114041603261, 41.95741741391796], "type": "Point"}, "id": "322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63132451945683, 41.95741611158852, -85.63132451945683, 41.95741611158852], "geometry": {"coordinates": [-85.63132451945683, 41.95741611158852], "type": "Point"}, "id": "323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63150862288106, 41.957414809259056, -85.63150862288106, 41.957414809259056], "geometry": {"coordinates": [-85.63150862288106, 41.957414809259056], "type": "Point"}, "id": "324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6316927263053, 41.95741350692956, -85.6316927263053, 41.95741350692956], "geometry": {"coordinates": [-85.6316927263053, 41.95741350692956], "type": "Point"}, "id": "325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63187682972952, 41.95741220460004, -85.63187682972952, 41.95741220460004], "geometry": {"coordinates": [-85.63187682972952, 41.95741220460004], "type": "Point"}, "id": "326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63206093315377, 41.957410902270496, -85.63206093315377, 41.957410902270496], "geometry": {"coordinates": [-85.63206093315377, 41.957410902270496], "type": "Point"}, "id": "327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63224503067781, 41.957409219223685, -85.63224503067781, 41.957409219223685], "geometry": {"coordinates": [-85.63224503067781, 41.957409219223685], "type": "Point"}, "id": "328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63242912556484, 41.95740736601987, -85.63242912556484, 41.95740736601987], "geometry": {"coordinates": [-85.63242912556484, 41.95740736601987], "type": "Point"}, "id": "329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63261322045189, 41.95740551281601, -85.63261322045189, 41.95740551281601], "geometry": {"coordinates": [-85.63261322045189, 41.95740551281601], "type": "Point"}, "id": "330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6327973153389, 41.95740365961208, -85.6327973153389, 41.95740365961208], "geometry": {"coordinates": [-85.6327973153389, 41.95740365961208], "type": "Point"}, "id": "331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63298141022594, 41.95740180640811, -85.63298141022594, 41.95740180640811], "geometry": {"coordinates": [-85.63298141022594, 41.95740180640811], "type": "Point"}, "id": "332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.63316550511296, 41.95739995320408, -85.63316550511296, 41.95739995320408], "geometry": {"coordinates": [-85.63316550511296, 41.95739995320408], "type": "Point"}, "id": "333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965351}, "type": "Feature"}, {"bbox": [-85.6335028, 41.964788600000006, -85.6335028, 41.964788600000006], "geometry": {"coordinates": [-85.6335028, 41.964788600000006], "type": "Point"}, "id": "334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6333188019897, 41.964789367115, -85.6333188019897, 41.964789367115], "geometry": {"coordinates": [-85.6333188019897, 41.964789367115], "type": "Point"}, "id": "335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63313480398214, 41.96479013459156, -85.63313480398214, 41.96479013459156], "geometry": {"coordinates": [-85.63313480398214, 41.96479013459156], "type": "Point"}, "id": "336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63295080598746, 41.964790903772915, -85.63295080598746, 41.964790903772915], "geometry": {"coordinates": [-85.63295080598746, 41.964790903772915], "type": "Point"}, "id": "337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6327668079928, 41.96479167295426, -85.6327668079928, 41.96479167295426], "geometry": {"coordinates": [-85.6327668079928, 41.96479167295426], "type": "Point"}, "id": "338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6325828099981, 41.964792442135604, -85.6325828099981, 41.964792442135604], "geometry": {"coordinates": [-85.6325828099981, 41.964792442135604], "type": "Point"}, "id": "339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63239881200342, 41.96479321131692, -85.63239881200342, 41.96479321131692], "geometry": {"coordinates": [-85.63239881200342, 41.96479321131692], "type": "Point"}, "id": "340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63221481400872, 41.96479398049825, -85.63221481400872, 41.96479398049825], "geometry": {"coordinates": [-85.63221481400872, 41.96479398049825], "type": "Point"}, "id": "341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.6320308159778, 41.96479474462936, -85.6320308159778, 41.96479474462936], "geometry": {"coordinates": [-85.6320308159778, 41.96479474462936], "type": "Point"}, "id": "342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63184681742194, 41.964795435619145, -85.63184681742194, 41.964795435619145], "geometry": {"coordinates": [-85.63184681742194, 41.964795435619145], "type": "Point"}, "id": "343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63166281886609, 41.96479612660892, -85.63166281886609, 41.96479612660892], "geometry": {"coordinates": [-85.63166281886609, 41.96479612660892], "type": "Point"}, "id": "344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63147882031024, 41.96479681759868, -85.63147882031024, 41.96479681759868], "geometry": {"coordinates": [-85.63147882031024, 41.96479681759868], "type": "Point"}, "id": "345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63129482175438, 41.96479750858845, -85.63129482175438, 41.96479750858845], "geometry": {"coordinates": [-85.63129482175438, 41.96479750858845], "type": "Point"}, "id": "346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63111082319853, 41.9647981995782, -85.63111082319853, 41.9647981995782], "geometry": {"coordinates": [-85.63111082319853, 41.9647981995782], "type": "Point"}, "id": "347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63092682464267, 41.96479889056794, -85.63092682464267, 41.96479889056794], "geometry": {"coordinates": [-85.63092682464267, 41.96479889056794], "type": "Point"}, "id": "348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63074385048068, 41.964808488243996, -85.63074385048068, 41.964808488243996], "geometry": {"coordinates": [-85.63074385048068, 41.964808488243996], "type": "Point"}, "id": "349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.63057263189822, 41.96485490520017, -85.63057263189822, 41.96485490520017], "geometry": {"coordinates": [-85.63057263189822, 41.96485490520017], "type": "Point"}, "id": "350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968018}, "type": "Feature"}, {"bbox": [-85.634729, 41.954666999999986, -85.634729, 41.954666999999986], "geometry": {"coordinates": [-85.634729, 41.954666999999986], "type": "Point"}, "id": "351", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6345487396439, 41.954668525475626, -85.6345487396439, 41.954668525475626], "geometry": {"coordinates": [-85.6345487396439, 41.954668525475626], "type": "Point"}, "id": "352", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63436847928784, 41.95467005095122, -85.63436847928784, 41.95467005095122], "geometry": {"coordinates": [-85.63436847928784, 41.95467005095122], "type": "Point"}, "id": "353", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63418821893177, 41.95467157642679, -85.63418821893177, 41.95467157642679], "geometry": {"coordinates": [-85.63418821893177, 41.95467157642679], "type": "Point"}, "id": "354", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63400795857571, 41.954673101902316, -85.63400795857571, 41.954673101902316], "geometry": {"coordinates": [-85.63400795857571, 41.954673101902316], "type": "Point"}, "id": "355", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63382769821962, 41.954674627377806, -85.63382769821962, 41.954674627377806], "geometry": {"coordinates": [-85.63382769821962, 41.954674627377806], "type": "Point"}, "id": "356", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63364743786356, 41.95467615285326, -85.63364743786356, 41.95467615285326], "geometry": {"coordinates": [-85.63364743786356, 41.95467615285326], "type": "Point"}, "id": "357", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6334671775075, 41.95467767832868, -85.6334671775075, 41.95467767832868], "geometry": {"coordinates": [-85.6334671775075, 41.95467767832868], "type": "Point"}, "id": "358", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63328691612246, 41.95467911885448, -85.63328691612246, 41.95467911885448], "geometry": {"coordinates": [-85.63328691612246, 41.95467911885448], "type": "Point"}, "id": "359", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63310664806474, 41.95468000848138, -85.63310664806474, 41.95468000848138], "geometry": {"coordinates": [-85.63310664806474, 41.95468000848138], "type": "Point"}, "id": "360", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.632926380007, 41.954680898108265, -85.632926380007, 41.954680898108265], "geometry": {"coordinates": [-85.632926380007, 41.954680898108265], "type": "Point"}, "id": "361", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63274611194926, 41.95468178773514, -85.63274611194926, 41.95468178773514], "geometry": {"coordinates": [-85.63274611194926, 41.95468178773514], "type": "Point"}, "id": "362", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63256584389153, 41.954682677362015, -85.63256584389153, 41.954682677362015], "geometry": {"coordinates": [-85.63256584389153, 41.954682677362015], "type": "Point"}, "id": "363", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63238557583381, 41.95468356698886, -85.63238557583381, 41.95468356698886], "geometry": {"coordinates": [-85.63238557583381, 41.95468356698886], "type": "Point"}, "id": "364", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63220530777606, 41.9546844566157, -85.63220530777606, 41.9546844566157], "geometry": {"coordinates": [-85.63220530777606, 41.9546844566157], "type": "Point"}, "id": "365", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63202504028865, 41.95468540514602, -85.63202504028865, 41.95468540514602], "geometry": {"coordinates": [-85.63202504028865, 41.95468540514602], "type": "Point"}, "id": "366", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63184477369629, 41.95468644611797, -85.63184477369629, 41.95468644611797], "geometry": {"coordinates": [-85.63184477369629, 41.95468644611797], "type": "Point"}, "id": "367", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63166450710393, 41.9546874870899, -85.63166450710393, 41.9546874870899], "geometry": {"coordinates": [-85.63166450710393, 41.9546874870899], "type": "Point"}, "id": "368", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63148424051158, 41.954688528061816, -85.63148424051158, 41.954688528061816], "geometry": {"coordinates": [-85.63148424051158, 41.954688528061816], "type": "Point"}, "id": "369", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6313039739192, 41.95468956903372, -85.6313039739192, 41.95468956903372], "geometry": {"coordinates": [-85.6313039739192, 41.95468956903372], "type": "Point"}, "id": "370", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63112370732685, 41.95469061000559, -85.63112370732685, 41.95469061000559], "geometry": {"coordinates": [-85.63112370732685, 41.95469061000559], "type": "Point"}, "id": "371", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63094344073448, 41.95469165097746, -85.63094344073448, 41.95469165097746], "geometry": {"coordinates": [-85.63094344073448, 41.95469165097746], "type": "Point"}, "id": "372", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63076317082522, 41.9546918020988, -85.63076317082522, 41.9546918020988], "geometry": {"coordinates": [-85.63076317082522, 41.9546918020988], "type": "Point"}, "id": "373", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63058289924287, 41.9546915043753, -85.63058289924287, 41.9546915043753], "geometry": {"coordinates": [-85.63058289924287, 41.9546915043753], "type": "Point"}, "id": "374", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6304026276605, 41.954691206651795, -85.6304026276605, 41.954691206651795], "geometry": {"coordinates": [-85.6304026276605, 41.954691206651795], "type": "Point"}, "id": "375", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6302223560688, 41.95469091212122, -85.6302223560688, 41.95469091212122], "geometry": {"coordinates": [-85.6302223560688, 41.95469091212122], "type": "Point"}, "id": "376", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.63004208445582, 41.954690624835784, -85.63004208445582, 41.954690624835784], "geometry": {"coordinates": [-85.63004208445582, 41.954690624835784], "type": "Point"}, "id": "377", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62986181284285, 41.95469033755035, -85.62986181284285, 41.95469033755035], "geometry": {"coordinates": [-85.62986181284285, 41.95469033755035], "type": "Point"}, "id": "378", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62968154122987, 41.954690050264915, -85.62968154122987, 41.954690050264915], "geometry": {"coordinates": [-85.62968154122987, 41.954690050264915], "type": "Point"}, "id": "379", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62950126963129, 41.954690241969146, -85.62950126963129, 41.954690241969146], "geometry": {"coordinates": [-85.62950126963129, 41.954690241969146], "type": "Point"}, "id": "380", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62932099809295, 41.954690553942136, -85.62932099809295, 41.954690553942136], "geometry": {"coordinates": [-85.62932099809295, 41.954690553942136], "type": "Point"}, "id": "381", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6291407265687, 41.95469087052534, -85.6291407265687, 41.95469087052534], "geometry": {"coordinates": [-85.6291407265687, 41.95469087052534], "type": "Point"}, "id": "382", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6289604550486, 41.9546911884084, -85.6289604550486, 41.9546911884084], "geometry": {"coordinates": [-85.6289604550486, 41.9546911884084], "type": "Point"}, "id": "383", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62878018353136, 41.95469150719093, -85.62878018353136, 41.95469150719093], "geometry": {"coordinates": [-85.62878018353136, 41.95469150719093], "type": "Point"}, "id": "384", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62859991201414, 41.95469182597346, -85.62859991201414, 41.95469182597346], "geometry": {"coordinates": [-85.62859991201414, 41.95469182597346], "type": "Point"}, "id": "385", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6284196404969, 41.95469214475598, -85.6284196404969, 41.95469214475598], "geometry": {"coordinates": [-85.6284196404969, 41.95469214475598], "type": "Point"}, "id": "386", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62823936897966, 41.95469246353851, -85.62823936897966, 41.95469246353851], "geometry": {"coordinates": [-85.62823936897966, 41.95469246353851], "type": "Point"}, "id": "387", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62805909746241, 41.954692782321025, -85.62805909746241, 41.954692782321025], "geometry": {"coordinates": [-85.62805909746241, 41.954692782321025], "type": "Point"}, "id": "388", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62787883663738, 41.95469217154557, -85.62787883663738, 41.95469217154557], "geometry": {"coordinates": [-85.62787883663738, 41.95469217154557], "type": "Point"}, "id": "389", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62769859883298, 41.95468955940371, -85.62769859883298, 41.95468955940371], "geometry": {"coordinates": [-85.62769859883298, 41.95468955940371], "type": "Point"}, "id": "390", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62751836102858, 41.954686947261756, -85.62751836102858, 41.954686947261756], "geometry": {"coordinates": [-85.62751836102858, 41.954686947261756], "type": "Point"}, "id": "391", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62733812322418, 41.954684335119694, -85.62733812322418, 41.954684335119694], "geometry": {"coordinates": [-85.62733812322418, 41.954684335119694], "type": "Point"}, "id": "392", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62715788541978, 41.95468172297752, -85.62715788541978, 41.95468172297752], "geometry": {"coordinates": [-85.62715788541978, 41.95468172297752], "type": "Point"}, "id": "393", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62697764761538, 41.95467911083523, -85.62697764761538, 41.95467911083523], "geometry": {"coordinates": [-85.62697764761538, 41.95467911083523], "type": "Point"}, "id": "394", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62679740808919, 41.95467743061687, -85.62679740808919, 41.95467743061687], "geometry": {"coordinates": [-85.62679740808919, 41.95467743061687], "type": "Point"}, "id": "395", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6266171613131, 41.95467967441604, -85.6266171613131, 41.95467967441604], "geometry": {"coordinates": [-85.6266171613131, 41.95467967441604], "type": "Point"}, "id": "396", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62643691453701, 41.954681918215144, -85.62643691453701, 41.954681918215144], "geometry": {"coordinates": [-85.62643691453701, 41.954681918215144], "type": "Point"}, "id": "397", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62625666776091, 41.95468416201416, -85.62625666776091, 41.95468416201416], "geometry": {"coordinates": [-85.62625666776091, 41.95468416201416], "type": "Point"}, "id": "398", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62607642098482, 41.9546864058131, -85.62607642098482, 41.9546864058131], "geometry": {"coordinates": [-85.62607642098482, 41.9546864058131], "type": "Point"}, "id": "399", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62589617420873, 41.95468864961196, -85.62589617420873, 41.95468864961196], "geometry": {"coordinates": [-85.62589617420873, 41.95468864961196], "type": "Point"}, "id": "400", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62571592743264, 41.95469089341074, -85.62571592743264, 41.95469089341074], "geometry": {"coordinates": [-85.62571592743264, 41.95469089341074], "type": "Point"}, "id": "401", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62553568065654, 41.954693137209446, -85.62553568065654, 41.954693137209446], "geometry": {"coordinates": [-85.62553568065654, 41.954693137209446], "type": "Point"}, "id": "402", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62535543388046, 41.954695381008065, -85.62535543388046, 41.954695381008065], "geometry": {"coordinates": [-85.62535543388046, 41.954695381008065], "type": "Point"}, "id": "403", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62517518710438, 41.95469762480662, -85.62517518710438, 41.95469762480662], "geometry": {"coordinates": [-85.62517518710438, 41.95469762480662], "type": "Point"}, "id": "404", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62499494032828, 41.954699868605076, -85.62499494032828, 41.954699868605076], "geometry": {"coordinates": [-85.62499494032828, 41.954699868605076], "type": "Point"}, "id": "405", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.62481469355218, 41.95470211240347, -85.62481469355218, 41.95470211240347], "geometry": {"coordinates": [-85.62481469355218, 41.95470211240347], "type": "Point"}, "id": "406", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6246344467761, 41.954704356201766, -85.6246344467761, 41.954704356201766], "geometry": {"coordinates": [-85.6246344467761, 41.954704356201766], "type": "Point"}, "id": "407", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966553}, "type": "Feature"}, {"bbox": [-85.6186766, 41.95774680000001, -85.6186766, 41.95774680000001], "geometry": {"coordinates": [-85.6186766, 41.95774680000001], "type": "Point"}, "id": "408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61849244, 41.9577475333334, -85.61849244, 41.9577475333334], "geometry": {"coordinates": [-85.61849244, 41.9577475333334], "type": "Point"}, "id": "409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61830828, 41.95774826666678, -85.61830828, 41.95774826666678], "geometry": {"coordinates": [-85.61830828, 41.95774826666678], "type": "Point"}, "id": "410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61812411999999, 41.957749000000156, -85.61812411999999, 41.957749000000156], "geometry": {"coordinates": [-85.61812411999999, 41.957749000000156], "type": "Point"}, "id": "411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61793996000002, 41.95774973333352, -85.61793996000002, 41.95774973333352], "geometry": {"coordinates": [-85.61793996000002, 41.95774973333352], "type": "Point"}, "id": "412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.6177558, 41.95775046666688, -85.6177558, 41.95775046666688], "geometry": {"coordinates": [-85.6177558, 41.95775046666688], "type": "Point"}, "id": "413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61757164, 41.95775120000023, -85.61757164, 41.95775120000023], "geometry": {"coordinates": [-85.61757164, 41.95775120000023], "type": "Point"}, "id": "414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61738747999999, 41.957751933333576, -85.61738747999999, 41.957751933333576], "geometry": {"coordinates": [-85.61738747999999, 41.957751933333576], "type": "Point"}, "id": "415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61720332, 41.957752666666906, -85.61720332, 41.957752666666906], "geometry": {"coordinates": [-85.61720332, 41.957752666666906], "type": "Point"}, "id": "416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61701915999998, 41.957753400000236, -85.61701915999998, 41.957753400000236], "geometry": {"coordinates": [-85.61701915999998, 41.957753400000236], "type": "Point"}, "id": "417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61683499999998, 41.957754133333545, -85.61683499999998, 41.957754133333545], "geometry": {"coordinates": [-85.61683499999998, 41.957754133333545], "type": "Point"}, "id": "418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61665083999999, 41.95775486666685, -85.61665083999999, 41.95775486666685], "geometry": {"coordinates": [-85.61665083999999, 41.95775486666685], "type": "Point"}, "id": "419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61646668, 41.957755600000155, -85.61646668, 41.957755600000155], "geometry": {"coordinates": [-85.61646668, 41.957755600000155], "type": "Point"}, "id": "420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61628251999998, 41.95775633333345, -85.61628251999998, 41.95775633333345], "geometry": {"coordinates": [-85.61628251999998, 41.95775633333345], "type": "Point"}, "id": "421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.61609836, 41.95775706666672, -85.61609836, 41.95775706666672], "geometry": {"coordinates": [-85.61609836, 41.95775706666672], "type": "Point"}, "id": "422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965838}, "type": "Feature"}, {"bbox": [-85.6271315, 41.9402001, -85.6271315, 41.9402001], "geometry": {"coordinates": [-85.6271315, 41.9402001], "type": "Point"}, "id": "423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150842}, "type": "Feature"}, {"bbox": [-85.62713480000001, 41.94037586715115, -85.62713480000001, 41.94037586715115], "geometry": {"coordinates": [-85.62713480000001, 41.94037586715115], "type": "Point"}, "id": "424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150842}, "type": "Feature"}, {"bbox": [-85.6271381, 41.94055163381782, -85.6271381, 41.94055163381782], "geometry": {"coordinates": [-85.6271381, 41.94055163381782], "type": "Point"}, "id": "425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150842}, "type": "Feature"}, {"bbox": [-85.61737099999999, 41.936243, -85.61737099999999, 41.936243], "geometry": {"coordinates": [-85.61737099999999, 41.936243], "type": "Point"}, "id": "426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61755329768398, 41.936241980361274, -85.61755329768398, 41.936241980361274], "geometry": {"coordinates": [-85.61755329768398, 41.936241980361274], "type": "Point"}, "id": "427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61773559559562, 41.936240979432185, -85.61773559559562, 41.936240979432185], "geometry": {"coordinates": [-85.61773559559562, 41.936240979432185], "type": "Point"}, "id": "428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61791789329378, 41.93623995623019, -85.61791789329378, 41.93623995623019], "geometry": {"coordinates": [-85.61791789329378, 41.93623995623019], "type": "Point"}, "id": "429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61810019099192, 41.93623893302818, -85.61810019099192, 41.93623893302818], "geometry": {"coordinates": [-85.61810019099192, 41.93623893302818], "type": "Point"}, "id": "430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61828248869008, 41.936237909826154, -85.61828248869008, 41.936237909826154], "geometry": {"coordinates": [-85.61828248869008, 41.936237909826154], "type": "Point"}, "id": "431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61846478638823, 41.9362368866241, -85.61846478638823, 41.9362368866241], "geometry": {"coordinates": [-85.61846478638823, 41.9362368866241], "type": "Point"}, "id": "432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61864708408638, 41.93623586342204, -85.61864708408638, 41.93623586342204], "geometry": {"coordinates": [-85.61864708408638, 41.93623586342204], "type": "Point"}, "id": "433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61882931493236, 41.93623222575535, -85.61882931493236, 41.93623222575535], "geometry": {"coordinates": [-85.61882931493236, 41.93623222575535], "type": "Point"}, "id": "434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61901153307147, 41.93622809114599, -85.61901153307147, 41.93622809114599], "geometry": {"coordinates": [-85.61901153307147, 41.93622809114599], "type": "Point"}, "id": "435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61919379056008, 41.93622611471846, -85.61919379056008, 41.93622611471846], "geometry": {"coordinates": [-85.61919379056008, 41.93622611471846], "type": "Point"}, "id": "436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61937609241308, 41.93622657151994, -85.61937609241308, 41.93622657151994], "geometry": {"coordinates": [-85.61937609241308, 41.93622657151994], "type": "Point"}, "id": "437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61955839426605, 41.936227028321404, -85.61955839426605, 41.936227028321404], "geometry": {"coordinates": [-85.61955839426605, 41.936227028321404], "type": "Point"}, "id": "438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61974069601106, 41.93622750827243, -85.61974069601106, 41.93622750827243], "geometry": {"coordinates": [-85.61974069601106, 41.93622750827243], "type": "Point"}, "id": "439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.61992299773597, 41.93622799253202, -85.61992299773597, 41.93622799253202], "geometry": {"coordinates": [-85.61992299773597, 41.93622799253202], "type": "Point"}, "id": "440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.620105297056, 41.93622760506635, -85.620105297056, 41.93622760506635], "geometry": {"coordinates": [-85.620105297056, 41.93622760506635], "type": "Point"}, "id": "441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62028759457347, 41.93622656420269, -85.62028759457347, 41.93622656420269], "geometry": {"coordinates": [-85.62028759457347, 41.93622656420269], "type": "Point"}, "id": "442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62046989209094, 41.93622552333902, -85.62046989209094, 41.93622552333902], "geometry": {"coordinates": [-85.62046989209094, 41.93622552333902], "type": "Point"}, "id": "443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62065218960839, 41.936224482475325, -85.62065218960839, 41.936224482475325], "geometry": {"coordinates": [-85.62065218960839, 41.936224482475325], "type": "Point"}, "id": "444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62083448712586, 41.93622344161162, -85.62083448712586, 41.93622344161162], "geometry": {"coordinates": [-85.62083448712586, 41.93622344161162], "type": "Point"}, "id": "445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62101678464332, 41.936222400747894, -85.62101678464332, 41.936222400747894], "geometry": {"coordinates": [-85.62101678464332, 41.936222400747894], "type": "Point"}, "id": "446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62119908239353, 41.93622138305224, -85.62119908239353, 41.93622138305224], "geometry": {"coordinates": [-85.62119908239353, 41.93622138305224], "type": "Point"}, "id": "447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62138138046147, 41.936220396980474, -85.62138138046147, 41.936220396980474], "geometry": {"coordinates": [-85.62138138046147, 41.936220396980474], "type": "Point"}, "id": "448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62156367852938, 41.936219410908684, -85.62156367852938, 41.936219410908684], "geometry": {"coordinates": [-85.62156367852938, 41.936219410908684], "type": "Point"}, "id": "449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62174597659731, 41.936218424836895, -85.62174597659731, 41.936218424836895], "geometry": {"coordinates": [-85.62174597659731, 41.936218424836895], "type": "Point"}, "id": "450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62192827466524, 41.93621743876508, -85.62192827466524, 41.93621743876508], "geometry": {"coordinates": [-85.62192827466524, 41.93621743876508], "type": "Point"}, "id": "451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62211057273316, 41.93621645269325, -85.62211057273316, 41.93621645269325], "geometry": {"coordinates": [-85.62211057273316, 41.93621645269325], "type": "Point"}, "id": "452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62229287078277, 41.93621546479506, -85.62229287078277, 41.93621546479506], "geometry": {"coordinates": [-85.62229287078277, 41.93621546479506], "type": "Point"}, "id": "453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62247516830885, 41.93621442476904, -85.62247516830885, 41.93621442476904], "geometry": {"coordinates": [-85.62247516830885, 41.93621442476904], "type": "Point"}, "id": "454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62265746583496, 41.93621338474301, -85.62265746583496, 41.93621338474301], "geometry": {"coordinates": [-85.62265746583496, 41.93621338474301], "type": "Point"}, "id": "455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62283976336106, 41.936212344716964, -85.62283976336106, 41.936212344716964], "geometry": {"coordinates": [-85.62283976336106, 41.936212344716964], "type": "Point"}, "id": "456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62302206088717, 41.93621130469089, -85.62302206088717, 41.93621130469089], "geometry": {"coordinates": [-85.62302206088717, 41.93621130469089], "type": "Point"}, "id": "457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62320435841328, 41.936210264664815, -85.62320435841328, 41.936210264664815], "geometry": {"coordinates": [-85.62320435841328, 41.936210264664815], "type": "Point"}, "id": "458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62338665593938, 41.93620922463871, -85.62338665593938, 41.93620922463871], "geometry": {"coordinates": [-85.62338665593938, 41.93620922463871], "type": "Point"}, "id": "459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62356895348401, 41.93620818641858, -85.62356895348401, 41.93620818641858], "geometry": {"coordinates": [-85.62356895348401, 41.93620818641858], "type": "Point"}, "id": "460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62375125109965, 41.93620715511287, -85.62375125109965, 41.93620715511287], "geometry": {"coordinates": [-85.62375125109965, 41.93620715511287], "type": "Point"}, "id": "461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62393354871529, 41.936206123807146, -85.62393354871529, 41.936206123807146], "geometry": {"coordinates": [-85.62393354871529, 41.936206123807146], "type": "Point"}, "id": "462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62411584633092, 41.93620509250141, -85.62411584633092, 41.93620509250141], "geometry": {"coordinates": [-85.62411584633092, 41.93620509250141], "type": "Point"}, "id": "463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62429814394655, 41.936204061195646, -85.62429814394655, 41.936204061195646], "geometry": {"coordinates": [-85.62429814394655, 41.936204061195646], "type": "Point"}, "id": "464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62448044156217, 41.936203029889874, -85.62448044156217, 41.936203029889874], "geometry": {"coordinates": [-85.62448044156217, 41.936203029889874], "type": "Point"}, "id": "465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62466273917782, 41.93620199858408, -85.62466273917782, 41.93620199858408], "geometry": {"coordinates": [-85.62466273917782, 41.93620199858408], "type": "Point"}, "id": "466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62484503683338, 41.936200971217616, -85.62484503683338, 41.936200971217616], "geometry": {"coordinates": [-85.62484503683338, 41.936200971217616], "type": "Point"}, "id": "467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62502733462597, 41.936199957368956, -85.62502733462597, 41.936199957368956], "geometry": {"coordinates": [-85.62502733462597, 41.936199957368956], "type": "Point"}, "id": "468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62520963241856, 41.93619894352029, -85.62520963241856, 41.93619894352029], "geometry": {"coordinates": [-85.62520963241856, 41.93619894352029], "type": "Point"}, "id": "469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62539193021114, 41.93619792967161, -85.62539193021114, 41.93619792967161], "geometry": {"coordinates": [-85.62539193021114, 41.93619792967161], "type": "Point"}, "id": "470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62557422800374, 41.9361969158229, -85.62557422800374, 41.9361969158229], "geometry": {"coordinates": [-85.62557422800374, 41.9361969158229], "type": "Point"}, "id": "471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62575652577966, 41.93619590033041, -85.62575652577966, 41.93619590033041], "geometry": {"coordinates": [-85.62575652577966, 41.93619590033041], "type": "Point"}, "id": "472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62593882339996, 41.9361948694808, -85.62593882339996, 41.9361948694808], "geometry": {"coordinates": [-85.62593882339996, 41.9361948694808], "type": "Point"}, "id": "473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62612112102026, 41.93619383863116, -85.62612112102026, 41.93619383863116], "geometry": {"coordinates": [-85.62612112102026, 41.93619383863116], "type": "Point"}, "id": "474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62630341864056, 41.93619280778151, -85.62630341864056, 41.93619280778151], "geometry": {"coordinates": [-85.62630341864056, 41.93619280778151], "type": "Point"}, "id": "475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62648571629957, 41.93619178073746, -85.62648571629957, 41.93619178073746], "geometry": {"coordinates": [-85.62648571629957, 41.93619178073746], "type": "Point"}, "id": "476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62666801401419, 41.93619075916054, -85.62666801401419, 41.93619075916054], "geometry": {"coordinates": [-85.62666801401419, 41.93619075916054], "type": "Point"}, "id": "477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62685031172882, 41.93618973758361, -85.62685031172882, 41.93618973758361], "geometry": {"coordinates": [-85.62685031172882, 41.93618973758361], "type": "Point"}, "id": "478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62703260944343, 41.936188716006654, -85.62703260944343, 41.936188716006654], "geometry": {"coordinates": [-85.62703260944343, 41.936188716006654], "type": "Point"}, "id": "479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62721490710156, 41.93618768887191, -85.62721490710156, 41.93618768887191], "geometry": {"coordinates": [-85.62721490710156, 41.93618768887191], "type": "Point"}, "id": "480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.62739720473436, 41.93618665924795, -85.62739720473436, 41.93618665924795], "geometry": {"coordinates": [-85.62739720473436, 41.93618665924795], "type": "Point"}, "id": "481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.6275795023672, 41.936185629623985, -85.6275795023672, 41.936185629623985], "geometry": {"coordinates": [-85.6275795023672, 41.936185629623985], "type": "Point"}, "id": "482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965427}, "type": "Feature"}, {"bbox": [-85.64232019999999, 41.9361655, -85.64232019999999, 41.9361655], "geometry": {"coordinates": [-85.64232019999999, 41.9361655], "type": "Point"}, "id": "483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64231672688068, 41.93629921514745, -85.64231672688068, 41.93629921514745], "geometry": {"coordinates": [-85.64231672688068, 41.93629921514745], "type": "Point"}, "id": "484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64231326944197, 41.93643293023912, -85.64231326944197, 41.93643293023912], "geometry": {"coordinates": [-85.64231326944197, 41.93643293023912], "type": "Point"}, "id": "485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6423098216976, 41.93656664518926, -85.6423098216976, 41.93656664518926], "geometry": {"coordinates": [-85.6423098216976, 41.93656664518926], "type": "Point"}, "id": "486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.642306386317, 41.93670036003508, -85.642306386317, 41.93670036003508], "geometry": {"coordinates": [-85.642306386317, 41.93670036003508], "type": "Point"}, "id": "487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64230295265938, 41.9368340746251, -85.64230295265938, 41.9368340746251], "geometry": {"coordinates": [-85.64230295265938, 41.9368340746251], "type": "Point"}, "id": "488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64229951900174, 41.93696778893475, -85.64229951900174, 41.93696778893475], "geometry": {"coordinates": [-85.64229951900174, 41.93696778893475], "type": "Point"}, "id": "489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6422953926104, 41.937101491950216, -85.6422953926104, 41.937101491950216], "geometry": {"coordinates": [-85.6422953926104, 41.937101491950216], "type": "Point"}, "id": "490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64229114286658, 41.93723519272417, -85.64229114286658, 41.93723519272417], "geometry": {"coordinates": [-85.64229114286658, 41.93723519272417], "type": "Point"}, "id": "491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64228689312274, 41.93736889321782, -85.64228689312274, 41.93736889321782], "geometry": {"coordinates": [-85.64228689312274, 41.93736889321782], "type": "Point"}, "id": "492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64228264337892, 41.93750259343118, -85.64228264337892, 41.93750259343118], "geometry": {"coordinates": [-85.64228264337892, 41.93750259343118], "type": "Point"}, "id": "493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64227839363511, 41.937636293364235, -85.64227839363511, 41.937636293364235], "geometry": {"coordinates": [-85.64227839363511, 41.937636293364235], "type": "Point"}, "id": "494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64227414389129, 41.937769993016985, -85.64227414389129, 41.937769993016985], "geometry": {"coordinates": [-85.64227414389129, 41.937769993016985], "type": "Point"}, "id": "495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64226989414746, 41.937903692389426, -85.64226989414746, 41.937903692389426], "geometry": {"coordinates": [-85.64226989414746, 41.937903692389426], "type": "Point"}, "id": "496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64226564440364, 41.93803739148158, -85.64226564440364, 41.93803739148158], "geometry": {"coordinates": [-85.64226564440364, 41.93803739148158], "type": "Point"}, "id": "497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64226166816663, 41.93817109417094, -85.64226166816663, 41.93817109417094], "geometry": {"coordinates": [-85.64226166816663, 41.93817109417094], "type": "Point"}, "id": "498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64225906632826, 41.938304816064864, -85.64225906632826, 41.938304816064864], "geometry": {"coordinates": [-85.64225906632826, 41.938304816064864], "type": "Point"}, "id": "499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64225646448988, 41.93843853767838, -85.64225646448988, 41.93843853767838], "geometry": {"coordinates": [-85.64225646448988, 41.93843853767838], "type": "Point"}, "id": "500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64225386265153, 41.93857225901151, -85.64225386265153, 41.93857225901151], "geometry": {"coordinates": [-85.64225386265153, 41.93857225901151], "type": "Point"}, "id": "501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64225126081315, 41.93870598006423, -85.64225126081315, 41.93870598006423], "geometry": {"coordinates": [-85.64225126081315, 41.93870598006423], "type": "Point"}, "id": "502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64224865897478, 41.93883970083654, -85.64224865897478, 41.93883970083654], "geometry": {"coordinates": [-85.64224865897478, 41.93883970083654], "type": "Point"}, "id": "503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6422460622102, 41.93897342138268, -85.6422460622102, 41.93897342138268], "geometry": {"coordinates": [-85.6422460622102, 41.93897342138268], "type": "Point"}, "id": "504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64224315762918, 41.93910713715331, -85.64224315762918, 41.93910713715331], "geometry": {"coordinates": [-85.64224315762918, 41.93910713715331], "type": "Point"}, "id": "505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64223884876866, 41.9392408326754, -85.64223884876866, 41.9392408326754], "geometry": {"coordinates": [-85.64223884876866, 41.9392408326754], "type": "Point"}, "id": "506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64223453990815, 41.9393745279172, -85.64223453990815, 41.9393745279172], "geometry": {"coordinates": [-85.64223453990815, 41.9393745279172], "type": "Point"}, "id": "507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64223023104765, 41.93950822287871, -85.64223023104765, 41.93950822287871], "geometry": {"coordinates": [-85.64223023104765, 41.93950822287871], "type": "Point"}, "id": "508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64222592218712, 41.93964191755991, -85.64222592218712, 41.93964191755991], "geometry": {"coordinates": [-85.64222592218712, 41.93964191755991], "type": "Point"}, "id": "509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.64222161332661, 41.9397756119608, -85.64222161332661, 41.9397756119608], "geometry": {"coordinates": [-85.64222161332661, 41.9397756119608], "type": "Point"}, "id": "510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6422173044661, 41.939909306081404, -85.6422173044661, 41.939909306081404], "geometry": {"coordinates": [-85.6422173044661, 41.939909306081404], "type": "Point"}, "id": "511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 766158515}, "type": "Feature"}, {"bbox": [-85.6469804, 41.9398569, -85.6469804, 41.9398569], "geometry": {"coordinates": [-85.6469804, 41.9398569], "type": "Point"}, "id": "512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64698764060181, 41.93999628237503, -85.64698764060181, 41.93999628237503], "geometry": {"coordinates": [-85.64698764060181, 41.93999628237503], "type": "Point"}, "id": "513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64699488120361, 41.9401356644454, -85.64699488120361, 41.9401356644454], "geometry": {"coordinates": [-85.64699488120361, 41.9401356644454], "type": "Point"}, "id": "514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64700212180543, 41.94027504621111, -85.64700212180543, 41.94027504621111], "geometry": {"coordinates": [-85.64700212180543, 41.94027504621111], "type": "Point"}, "id": "515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64700936240725, 41.94041442767216, -85.64700936240725, 41.94041442767216], "geometry": {"coordinates": [-85.64700936240725, 41.94041442767216], "type": "Point"}, "id": "516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64701660300905, 41.940553808828554, -85.64701660300905, 41.940553808828554], "geometry": {"coordinates": [-85.64701660300905, 41.940553808828554], "type": "Point"}, "id": "517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64702384361085, 41.94069318968028, -85.64702384361085, 41.94069318968028], "geometry": {"coordinates": [-85.64702384361085, 41.94069318968028], "type": "Point"}, "id": "518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64710309966048, 41.94081228218787, -85.64710309966048, 41.94081228218787], "geometry": {"coordinates": [-85.64710309966048, 41.94081228218787], "type": "Point"}, "id": "519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.6472786124486, 41.94084931929144, -85.6472786124486, 41.94084931929144], "geometry": {"coordinates": [-85.6472786124486, 41.94084931929144], "type": "Point"}, "id": "520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.6474661140254, 41.940847336101704, -85.6474661140254, 41.940847336101704], "geometry": {"coordinates": [-85.6474661140254, 41.940847336101704], "type": "Point"}, "id": "521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64765361560218, 41.94084535291192, -85.64765361560218, 41.94084535291192], "geometry": {"coordinates": [-85.64765361560218, 41.94084535291192], "type": "Point"}, "id": "522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64782516243791, 41.94080084752829, -85.64782516243791, 41.94080084752829], "geometry": {"coordinates": [-85.64782516243791, 41.94080084752829], "type": "Point"}, "id": "523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64787598674697, 41.94067110250506, -85.64787598674697, 41.94067110250506], "geometry": {"coordinates": [-85.64787598674697, 41.94067110250506], "type": "Point"}, "id": "524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64786825562247, 41.94053173618237, -85.64786825562247, 41.94053173618237], "geometry": {"coordinates": [-85.64786825562247, 41.94053173618237], "type": "Point"}, "id": "525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64786052449797, 41.9403923695551, -85.64786052449797, 41.9403923695551], "geometry": {"coordinates": [-85.64786052449797, 41.9403923695551], "type": "Point"}, "id": "526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64785279337349, 41.940253002623216, -85.64785279337349, 41.940253002623216], "geometry": {"coordinates": [-85.64785279337349, 41.940253002623216], "type": "Point"}, "id": "527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64784506224898, 41.94011363538674, -85.64784506224898, 41.94011363538674], "geometry": {"coordinates": [-85.64784506224898, 41.94011363538674], "type": "Point"}, "id": "528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.64783733112448, 41.93997426784567, -85.64783733112448, 41.93997426784567], "geometry": {"coordinates": [-85.64783733112448, 41.93997426784567], "type": "Point"}, "id": "529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968034}, "type": "Feature"}, {"bbox": [-85.638243, 41.943674, -85.638243, 41.943674], "geometry": {"coordinates": [-85.638243, 41.943674], "type": "Point"}, "id": "530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.6381642078965, 41.9437960708492, -85.6381642078965, 41.9437960708492], "geometry": {"coordinates": [-85.6381642078965, 41.9437960708492], "type": "Point"}, "id": "531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63798788947989, 41.94383958328908, -85.63798788947989, 41.94383958328908], "geometry": {"coordinates": [-85.63798788947989, 41.94383958328908], "type": "Point"}, "id": "532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63779858378115, 41.9438254351715, -85.63779858378115, 41.9438254351715], "geometry": {"coordinates": [-85.63779858378115, 41.9438254351715], "type": "Point"}, "id": "533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63761332692538, 41.943790781559265, -85.63761332692538, 41.943790781559265], "geometry": {"coordinates": [-85.63761332692538, 41.943790781559265], "type": "Point"}, "id": "534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63742941289885, 41.94375229321653, -85.63742941289885, 41.94375229321653], "geometry": {"coordinates": [-85.63742941289885, 41.94375229321653], "type": "Point"}, "id": "535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63724697589406, 41.94371024397486, -85.63724697589406, 41.94371024397486], "geometry": {"coordinates": [-85.63724697589406, 41.94371024397486], "type": "Point"}, "id": "536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.6371173623044, 41.943613518228034, -85.6371173623044, 41.943613518228034], "geometry": {"coordinates": [-85.6371173623044, 41.943613518228034], "type": "Point"}, "id": "537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63707638474074, 41.94347525400991, -85.63707638474074, 41.94347525400991], "geometry": {"coordinates": [-85.63707638474074, 41.94347525400991], "type": "Point"}, "id": "538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63706785906912, 41.94333331090903, -85.63706785906912, 41.94333331090903], "geometry": {"coordinates": [-85.63706785906912, 41.94333331090903], "type": "Point"}, "id": "539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63705911117232, 41.943191351986876, -85.63705911117232, 41.943191351986876], "geometry": {"coordinates": [-85.63705911117232, 41.943191351986876], "type": "Point"}, "id": "540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63705139223606, 41.94304936236038, -85.63705139223606, 41.94304936236038], "geometry": {"coordinates": [-85.63705139223606, 41.94304936236038], "type": "Point"}, "id": "541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63704350178986, 41.942907375008446, -85.63704350178986, 41.942907375008446], "geometry": {"coordinates": [-85.63704350178986, 41.942907375008446], "type": "Point"}, "id": "542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.63703561134363, 41.94276538734034, -85.63703561134363, 41.94276538734034], "geometry": {"coordinates": [-85.63703561134363, 41.94276538734034], "type": "Point"}, "id": "543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967326}, "type": "Feature"}, {"bbox": [-85.6339673, 41.94338770000001, -85.6339673, 41.94338770000001], "geometry": {"coordinates": [-85.6339673, 41.94338770000001], "type": "Point"}, "id": "544", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150811}, "type": "Feature"}, {"bbox": [-85.63380231526874, 41.94348276806865, -85.63380231526874, 41.94348276806865], "geometry": {"coordinates": [-85.63380231526874, 41.94348276806865], "type": "Point"}, "id": "545", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150811}, "type": "Feature"}, {"bbox": [-85.64436079999999, 41.9425645, -85.64436079999999, 41.9425645], "geometry": {"coordinates": [-85.64436079999999, 41.9425645], "type": "Point"}, "id": "546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64435259757187, 41.94242841812222, -85.64435259757187, 41.94242841812222], "geometry": {"coordinates": [-85.64435259757187, 41.94242841812222], "type": "Point"}, "id": "547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64434439414221, 41.9422923359875, -85.64434439414221, 41.9422923359875], "geometry": {"coordinates": [-85.64434439414221, 41.9422923359875], "type": "Point"}, "id": "548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64433621094464, 41.9421562528883, -85.64433621094464, 41.9421562528883], "geometry": {"coordinates": [-85.64433621094464, 41.9421562528883], "type": "Point"}, "id": "549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64432802774706, 41.942020169498655, -85.64432802774706, 41.942020169498655], "geometry": {"coordinates": [-85.64432802774706, 41.942020169498655], "type": "Point"}, "id": "550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.6443198445495, 41.941884085818586, -85.6443198445495, 41.941884085818586], "geometry": {"coordinates": [-85.6443198445495, 41.941884085818586], "type": "Point"}, "id": "551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64431166135192, 41.94174800184808, -85.64431166135192, 41.94174800184808], "geometry": {"coordinates": [-85.64431166135192, 41.94174800184808], "type": "Point"}, "id": "552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64430349815598, 41.94161191692268, -85.64430349815598, 41.94161191692268], "geometry": {"coordinates": [-85.64430349815598, 41.94161191692268], "type": "Point"}, "id": "553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64429533930843, 41.94147583156239, -85.64429533930843, 41.94147583156239], "geometry": {"coordinates": [-85.64429533930843, 41.94147583156239], "type": "Point"}, "id": "554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64428718046088, 41.94133974591167, -85.64428718046088, 41.94133974591167], "geometry": {"coordinates": [-85.64428718046088, 41.94133974591167], "type": "Point"}, "id": "555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64428144254673, 41.94120360496568, -85.64428144254673, 41.94120360496568], "geometry": {"coordinates": [-85.64428144254673, 41.94120360496568], "type": "Point"}, "id": "556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64427829503116, 41.94106740360138, -85.64427829503116, 41.94106740360138], "geometry": {"coordinates": [-85.64427829503116, 41.94106740360138], "type": "Point"}, "id": "557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.64427514751557, 41.94093120194615, -85.64427514751557, 41.94093120194615], "geometry": {"coordinates": [-85.64427514751557, 41.94093120194615], "type": "Point"}, "id": "558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965125}, "type": "Feature"}, {"bbox": [-85.62858149999998, 41.947169200000005, -85.62858149999998, 41.947169200000005], "geometry": {"coordinates": [-85.62858149999998, 41.947169200000005], "type": "Point"}, "id": "559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62874340745996, 41.94723029262009, -85.62874340745996, 41.94723029262009], "geometry": {"coordinates": [-85.62874340745996, 41.94723029262009], "type": "Point"}, "id": "560", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62890531491993, 41.94729138518164, -85.62890531491993, 41.94729138518164], "geometry": {"coordinates": [-85.62890531491993, 41.94729138518164], "type": "Point"}, "id": "561", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62906722237993, 41.94735247768465, -85.62906722237993, 41.94735247768465], "geometry": {"coordinates": [-85.62906722237993, 41.94735247768465], "type": "Point"}, "id": "562", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62922912983991, 41.947413570129115, -85.62922912983991, 41.947413570129115], "geometry": {"coordinates": [-85.62922912983991, 41.947413570129115], "type": "Point"}, "id": "563", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62939074171197, 41.94747508161288, -85.62939074171197, 41.94747508161288], "geometry": {"coordinates": [-85.62939074171197, 41.94747508161288], "type": "Point"}, "id": "564", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62955035243063, 41.94753943035997, -85.62955035243063, 41.94753943035997], "geometry": {"coordinates": [-85.62955035243063, 41.94753943035997], "type": "Point"}, "id": "565", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6297099631493, 41.947603779042105, -85.6297099631493, 41.947603779042105], "geometry": {"coordinates": [-85.6297099631493, 41.947603779042105], "type": "Point"}, "id": "566", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.62986957386794, 41.94766812765928, -85.62986957386794, 41.94766812765928], "geometry": {"coordinates": [-85.62986957386794, 41.94766812765928], "type": "Point"}, "id": "567", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63002918458659, 41.94773247621151, -85.63002918458659, 41.94773247621151], "geometry": {"coordinates": [-85.63002918458659, 41.94773247621151], "type": "Point"}, "id": "568", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63018879530526, 41.947796824698784, -85.63018879530526, 41.947796824698784], "geometry": {"coordinates": [-85.63018879530526, 41.947796824698784], "type": "Point"}, "id": "569", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6303484060239, 41.94786117312111, -85.6303484060239, 41.94786117312111], "geometry": {"coordinates": [-85.6303484060239, 41.94786117312111], "type": "Point"}, "id": "570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63050801674254, 41.94792552147848, -85.63050801674254, 41.94792552147848], "geometry": {"coordinates": [-85.63050801674254, 41.94792552147848], "type": "Point"}, "id": "571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6306676274612, 41.9479898697709, -85.6306676274612, 41.9479898697709], "geometry": {"coordinates": [-85.6306676274612, 41.9479898697709], "type": "Point"}, "id": "572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63082723817986, 41.94805421799837, -85.63082723817986, 41.94805421799837], "geometry": {"coordinates": [-85.63082723817986, 41.94805421799837], "type": "Point"}, "id": "573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6309868488985, 41.94811856616088, -85.6309868488985, 41.94811856616088], "geometry": {"coordinates": [-85.6309868488985, 41.94811856616088], "type": "Point"}, "id": "574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63114645961716, 41.948182914258446, -85.63114645961716, 41.948182914258446], "geometry": {"coordinates": [-85.63114645961716, 41.948182914258446], "type": "Point"}, "id": "575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63130607033582, 41.948247262291055, -85.63130607033582, 41.948247262291055], "geometry": {"coordinates": [-85.63130607033582, 41.948247262291055], "type": "Point"}, "id": "576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63146641932825, 41.94831055724535, -85.63146641932825, 41.94831055724535], "geometry": {"coordinates": [-85.63146641932825, 41.94831055724535], "type": "Point"}, "id": "577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63162872770184, 41.94837105743856, -85.63162872770184, 41.94837105743856], "geometry": {"coordinates": [-85.63162872770184, 41.94837105743856], "type": "Point"}, "id": "578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6317910360754, 41.94843155757433, -85.6317910360754, 41.94843155757433], "geometry": {"coordinates": [-85.6317910360754, 41.94843155757433], "type": "Point"}, "id": "579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63195334444897, 41.94849205765269, -85.63195334444897, 41.94849205765269], "geometry": {"coordinates": [-85.63195334444897, 41.94849205765269], "type": "Point"}, "id": "580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.63211565282256, 41.94855255767364, -85.63211565282256, 41.94855255767364], "geometry": {"coordinates": [-85.63211565282256, 41.94855255767364], "type": "Point"}, "id": "581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150772}, "type": "Feature"}, {"bbox": [-85.6436023, 41.9544262, -85.6436023, 41.9544262], "geometry": {"coordinates": [-85.6436023, 41.9544262], "type": "Point"}, "id": "582", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151784}, "type": "Feature"}, {"bbox": [-85.64383945, 41.95438620001255, -85.64383945, 41.95438620001255], "geometry": {"coordinates": [-85.64383945, 41.95438620001255], "type": "Point"}, "id": "583", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151784}, "type": "Feature"}, {"bbox": [-85.611615, 41.953704, -85.611615, 41.953704], "geometry": {"coordinates": [-85.611615, 41.953704], "type": "Point"}, "id": "584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61179958450185, 41.95369478315608, -85.61179958450185, 41.95369478315608], "geometry": {"coordinates": [-85.61179958450185, 41.95369478315608], "type": "Point"}, "id": "585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61198450583136, 41.95369059941578, -85.61198450583136, 41.95369059941578], "geometry": {"coordinates": [-85.61198450583136, 41.95369059941578], "type": "Point"}, "id": "586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61216942716086, 41.95368641567519, -85.61216942716086, 41.95368641567519], "geometry": {"coordinates": [-85.61216942716086, 41.95368641567519], "type": "Point"}, "id": "587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61235440022499, 41.95368418805826, -85.61235440022499, 41.95368418805826], "geometry": {"coordinates": [-85.61235440022499, 41.95368418805826], "type": "Point"}, "id": "588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61253939974782, 41.95368296086413, -85.61253939974782, 41.95368296086413], "geometry": {"coordinates": [-85.61253939974782, 41.95368296086413], "type": "Point"}, "id": "589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61272439927065, 41.953681733669974, -85.61272439927065, 41.953681733669974], "geometry": {"coordinates": [-85.61272439927065, 41.953681733669974], "type": "Point"}, "id": "590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61290939879346, 41.95368050647579, -85.61290939879346, 41.95368050647579], "geometry": {"coordinates": [-85.61290939879346, 41.95368050647579], "type": "Point"}, "id": "591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61309439831629, 41.95367927928159, -85.61309439831629, 41.95367927928159], "geometry": {"coordinates": [-85.61309439831629, 41.95367927928159], "type": "Point"}, "id": "592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61327939783912, 41.95367805208736, -85.61327939783912, 41.95367805208736], "geometry": {"coordinates": [-85.61327939783912, 41.95367805208736], "type": "Point"}, "id": "593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61346438374113, 41.953677654427096, -85.61346438374113, 41.953677654427096], "geometry": {"coordinates": [-85.61346438374113, 41.953677654427096], "type": "Point"}, "id": "594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61364928780586, 41.95368224082082, -85.61364928780586, 41.95368224082082], "geometry": {"coordinates": [-85.61364928780586, 41.95368224082082], "type": "Point"}, "id": "595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61383419187058, 41.9536868272142, -85.61383419187058, 41.9536868272142], "geometry": {"coordinates": [-85.61383419187058, 41.9536868272142], "type": "Point"}, "id": "596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.61401909593526, 41.95369141360727, -85.61401909593526, 41.95369141360727], "geometry": {"coordinates": [-85.61401909593526, 41.95369141360727], "type": "Point"}, "id": "597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965302}, "type": "Feature"}, {"bbox": [-85.637255, 41.940104, -85.637255, 41.940104], "geometry": {"coordinates": [-85.637255, 41.940104], "type": "Point"}, "id": "598", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63743862943083, 41.94010173176313, -85.63743862943083, 41.94010173176313], "geometry": {"coordinates": [-85.63743862943083, 41.94010173176313], "type": "Point"}, "id": "599", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63762225886164, 41.94009946352619, -85.63762225886164, 41.94009946352619], "geometry": {"coordinates": [-85.63762225886164, 41.94009946352619], "type": "Point"}, "id": "600", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63780588829249, 41.940097195289155, -85.63780588829249, 41.940097195289155], "geometry": {"coordinates": [-85.63780588829249, 41.940097195289155], "type": "Point"}, "id": "601", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63798951772333, 41.940094927052044, -85.63798951772333, 41.940094927052044], "geometry": {"coordinates": [-85.63798951772333, 41.940094927052044], "type": "Point"}, "id": "602", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63817314715415, 41.94009265881486, -85.63817314715415, 41.94009265881486], "geometry": {"coordinates": [-85.63817314715415, 41.94009265881486], "type": "Point"}, "id": "603", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63835677685567, 41.940090402739706, -85.63835677685567, 41.940090402739706], "geometry": {"coordinates": [-85.63835677685567, 41.940090402739706], "type": "Point"}, "id": "604", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63854040659207, 41.94008814823096, -85.63854040659207, 41.94008814823096], "geometry": {"coordinates": [-85.63854040659207, 41.94008814823096], "type": "Point"}, "id": "605", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63872403627111, 41.940085891145834, -85.63872403627111, 41.940085891145834], "geometry": {"coordinates": [-85.63872403627111, 41.940085891145834], "type": "Point"}, "id": "606", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.6389076657523, 41.940083625164355, -85.6389076657523, 41.940083625164355], "geometry": {"coordinates": [-85.6389076657523, 41.940083625164355], "type": "Point"}, "id": "607", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63909129523347, 41.9400813591828, -85.63909129523347, 41.9400813591828], "geometry": {"coordinates": [-85.63909129523347, 41.9400813591828], "type": "Point"}, "id": "608", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63927492471464, 41.940079093201156, -85.63927492471464, 41.940079093201156], "geometry": {"coordinates": [-85.63927492471464, 41.940079093201156], "type": "Point"}, "id": "609", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63945855494977, 41.94007686229414, -85.63945855494977, 41.94007686229414], "geometry": {"coordinates": [-85.63945855494977, 41.94007686229414], "type": "Point"}, "id": "610", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63964218451736, 41.94007460019082, -85.63964218451736, 41.94007460019082], "geometry": {"coordinates": [-85.63964218451736, 41.94007460019082], "type": "Point"}, "id": "611", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.63982581408496, 41.94007233808741, -85.63982581408496, 41.94007233808741], "geometry": {"coordinates": [-85.63982581408496, 41.94007233808741], "type": "Point"}, "id": "612", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64000944376777, 41.940070081171406, -85.64000944376777, 41.940070081171406], "geometry": {"coordinates": [-85.64000944376777, 41.940070081171406], "type": "Point"}, "id": "613", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64019307356726, 41.94006782950775, -85.64019307356726, 41.94006782950775], "geometry": {"coordinates": [-85.64019307356726, 41.94006782950775], "type": "Point"}, "id": "614", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64037670336675, 41.94006557784401, -85.64037670336675, 41.94006557784401], "geometry": {"coordinates": [-85.64037670336675, 41.94006557784401], "type": "Point"}, "id": "615", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64056033316626, 41.9400633261802, -85.64056033316626, 41.9400633261802], "geometry": {"coordinates": [-85.64056033316626, 41.9400633261802], "type": "Point"}, "id": "616", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64074396306545, 41.94006107902163, -85.64074396306545, 41.94006107902163], "geometry": {"coordinates": [-85.64074396306545, 41.94006107902163], "type": "Point"}, "id": "617", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64092759300307, 41.94005883359857, -85.64092759300307, 41.94005883359857], "geometry": {"coordinates": [-85.64092759300307, 41.94005883359857], "type": "Point"}, "id": "618", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64111122290095, 41.94005658638548, -85.64111122290095, 41.94005658638548], "geometry": {"coordinates": [-85.64111122290095, 41.94005658638548], "type": "Point"}, "id": "619", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64129485241745, 41.9400543219881, -85.64129485241745, 41.9400543219881], "geometry": {"coordinates": [-85.64129485241745, 41.9400543219881], "type": "Point"}, "id": "620", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64147848193396, 41.94005205759064, -85.64147848193396, 41.94005205759064], "geometry": {"coordinates": [-85.64147848193396, 41.94005205759064], "type": "Point"}, "id": "621", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64166211145046, 41.94004979319311, -85.64166211145046, 41.94004979319311], "geometry": {"coordinates": [-85.64166211145046, 41.94004979319311], "type": "Point"}, "id": "622", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64184574096699, 41.94004752879548, -85.64184574096699, 41.94004752879548], "geometry": {"coordinates": [-85.64184574096699, 41.94004752879548], "type": "Point"}, "id": "623", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.64202937048348, 41.94004526439778, -85.64202937048348, 41.94004526439778], "geometry": {"coordinates": [-85.64202937048348, 41.94004526439778], "type": "Point"}, "id": "624", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694427}, "type": "Feature"}, {"bbox": [-85.61869959999999, 41.9585513, -85.61869959999999, 41.9585513], "geometry": {"coordinates": [-85.61869959999999, 41.9585513], "type": "Point"}, "id": "625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61851461979415, 41.958553878523844, -85.61851461979415, 41.958553878523844], "geometry": {"coordinates": [-85.61851461979415, 41.958553878523844], "type": "Point"}, "id": "626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.6183296395883, 41.958556457047585, -85.6183296395883, 41.958556457047585], "geometry": {"coordinates": [-85.6183296395883, 41.958556457047585], "type": "Point"}, "id": "627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61814465938247, 41.958559035571206, -85.61814465938247, 41.958559035571206], "geometry": {"coordinates": [-85.61814465938247, 41.958559035571206], "type": "Point"}, "id": "628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61795967917661, 41.95856161409474, -85.61795967917661, 41.95856161409474], "geometry": {"coordinates": [-85.61795967917661, 41.95856161409474], "type": "Point"}, "id": "629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61777469897078, 41.95856419261816, -85.61777469897078, 41.95856419261816], "geometry": {"coordinates": [-85.61777469897078, 41.95856419261816], "type": "Point"}, "id": "630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61758971890133, 41.958566776544814, -85.61758971890133, 41.958566776544814], "geometry": {"coordinates": [-85.61758971890133, 41.958566776544814], "type": "Point"}, "id": "631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61740473886528, 41.95856936179505, -85.61740473886528, 41.95856936179505], "geometry": {"coordinates": [-85.61740473886528, 41.95856936179505], "type": "Point"}, "id": "632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61721975882924, 41.95857194704518, -85.61721975882924, 41.95857194704518], "geometry": {"coordinates": [-85.61721975882924, 41.95857194704518], "type": "Point"}, "id": "633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61703477881417, 41.95857453312451, -85.61703477881417, 41.95857453312451], "geometry": {"coordinates": [-85.61703477881417, 41.95857453312451], "type": "Point"}, "id": "634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61684979901182, 41.95857712760402, -85.61684979901182, 41.95857712760402], "geometry": {"coordinates": [-85.61684979901182, 41.95857712760402], "type": "Point"}, "id": "635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61666481920945, 41.95857972208343, -85.61666481920945, 41.95857972208343], "geometry": {"coordinates": [-85.61666481920945, 41.95857972208343], "type": "Point"}, "id": "636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61647983940709, 41.95858231656273, -85.61647983940709, 41.95858231656273], "geometry": {"coordinates": [-85.61647983940709, 41.95858231656273], "type": "Point"}, "id": "637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61629485960472, 41.95858491104193, -85.61629485960472, 41.95858491104193], "geometry": {"coordinates": [-85.61629485960472, 41.95858491104193], "type": "Point"}, "id": "638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.61610987980237, 41.958587505521024, -85.61610987980237, 41.958587505521024], "geometry": {"coordinates": [-85.61610987980237, 41.958587505521024], "type": "Point"}, "id": "639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965476}, "type": "Feature"}, {"bbox": [-85.6204461, 41.9401485, -85.6204461, 41.9401485], "geometry": {"coordinates": [-85.6204461, 41.9401485], "type": "Point"}, "id": "640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.62044519999999, 41.94029644068645, -85.62044519999999, 41.94029644068645], "geometry": {"coordinates": [-85.62044519999999, 41.94029644068645], "type": "Point"}, "id": "641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.62044429999999, 41.94044438102967, -85.62044429999999, 41.94044438102967], "geometry": {"coordinates": [-85.62044429999999, 41.94044438102967], "type": "Point"}, "id": "642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.6204434, 41.940592321029676, -85.6204434, 41.940592321029676], "geometry": {"coordinates": [-85.6204434, 41.940592321029676], "type": "Point"}, "id": "643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.6204425, 41.94074026068645, -85.6204425, 41.94074026068645], "geometry": {"coordinates": [-85.6204425, 41.94074026068645], "type": "Point"}, "id": "644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964961}, "type": "Feature"}, {"bbox": [-85.6295992, 41.9524346, -85.6295992, 41.9524346], "geometry": {"coordinates": [-85.6295992, 41.9524346], "type": "Point"}, "id": "645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.6296518485486, 41.952570142624644, -85.6296518485486, 41.952570142624644], "geometry": {"coordinates": [-85.6296518485486, 41.952570142624644], "type": "Point"}, "id": "646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62965478788881, 41.952711473998576, -85.62965478788881, 41.952711473998576], "geometry": {"coordinates": [-85.62965478788881, 41.952711473998576], "type": "Point"}, "id": "647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62965772722902, 41.952852805059145, -85.62965772722902, 41.952852805059145], "geometry": {"coordinates": [-85.62965772722902, 41.952852805059145], "type": "Point"}, "id": "648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966066656924, 41.95299413580632, -85.62966066656924, 41.95299413580632], "geometry": {"coordinates": [-85.62966066656924, 41.95299413580632], "type": "Point"}, "id": "649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966360590944, 41.95313546624011, -85.62966360590944, 41.95313546624011], "geometry": {"coordinates": [-85.62966360590944, 41.95313546624011], "type": "Point"}, "id": "650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966654524968, 41.95327679636054, -85.62966654524968, 41.95327679636054], "geometry": {"coordinates": [-85.62966654524968, 41.95327679636054], "type": "Point"}, "id": "651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966948458988, 41.953418126167584, -85.62966948458988, 41.953418126167584], "geometry": {"coordinates": [-85.62966948458988, 41.953418126167584], "type": "Point"}, "id": "652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62967242393009, 41.953559455661235, -85.62967242393009, 41.953559455661235], "geometry": {"coordinates": [-85.62967242393009, 41.953559455661235], "type": "Point"}, "id": "653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.6296753632703, 41.95370078484152, -85.6296753632703, 41.95370078484152], "geometry": {"coordinates": [-85.6296753632703, 41.95370078484152], "type": "Point"}, "id": "654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.6296729916104, 41.953842104345554, -85.6296729916104, 41.953842104345554], "geometry": {"coordinates": [-85.6296729916104, 41.953842104345554], "type": "Point"}, "id": "655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966915132543, 41.95398342094719, -85.62966915132543, 41.95398342094719], "geometry": {"coordinates": [-85.62966915132543, 41.95398342094719], "type": "Point"}, "id": "656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966531104045, 41.954124737235496, -85.62966531104045, 41.954124737235496], "geometry": {"coordinates": [-85.62966531104045, 41.954124737235496], "type": "Point"}, "id": "657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62966147075547, 41.954266053210475, -85.62966147075547, 41.954266053210475], "geometry": {"coordinates": [-85.62966147075547, 41.954266053210475], "type": "Point"}, "id": "658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62965763047049, 41.95440736887211, -85.62965763047049, 41.95440736887211], "geometry": {"coordinates": [-85.62965763047049, 41.95440736887211], "type": "Point"}, "id": "659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.62965379018551, 41.954548684220434, -85.62965379018551, 41.954548684220434], "geometry": {"coordinates": [-85.62965379018551, 41.954548684220434], "type": "Point"}, "id": "660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964654}, "type": "Feature"}, {"bbox": [-85.60826579999998, 41.9437055, -85.60826579999998, 41.9437055], "geometry": {"coordinates": [-85.60826579999998, 41.9437055], "type": "Point"}, "id": "661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60826703571426, 41.94384453768506, -85.60826703571426, 41.94384453768506], "geometry": {"coordinates": [-85.60826703571426, 41.94384453768506], "type": "Point"}, "id": "662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60826827142856, 41.94398357506693, -85.60826827142856, 41.94398357506693], "geometry": {"coordinates": [-85.60826827142856, 41.94398357506693], "type": "Point"}, "id": "663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60826950714285, 41.9441226121456, -85.60826950714285, 41.9441226121456], "geometry": {"coordinates": [-85.60826950714285, 41.9441226121456], "type": "Point"}, "id": "664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827074285714, 41.94426164892107, -85.60827074285714, 41.94426164892107], "geometry": {"coordinates": [-85.60827074285714, 41.94426164892107], "type": "Point"}, "id": "665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827197857141, 41.94440068539335, -85.60827197857141, 41.94440068539335], "geometry": {"coordinates": [-85.60827197857141, 41.94440068539335], "type": "Point"}, "id": "666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.6082732142857, 41.94453972156243, -85.6082732142857, 41.94453972156243], "geometry": {"coordinates": [-85.6082732142857, 41.94453972156243], "type": "Point"}, "id": "667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827445, 41.94467875742831, -85.60827445, 41.94467875742831], "geometry": {"coordinates": [-85.60827445, 41.94467875742831], "type": "Point"}, "id": "668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827568571428, 41.94481779299101, -85.60827568571428, 41.94481779299101], "geometry": {"coordinates": [-85.60827568571428, 41.94481779299101], "type": "Point"}, "id": "669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827692142855, 41.9449568282505, -85.60827692142855, 41.9449568282505], "geometry": {"coordinates": [-85.60827692142855, 41.9449568282505], "type": "Point"}, "id": "670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827815714283, 41.94509586320679, -85.60827815714283, 41.94509586320679], "geometry": {"coordinates": [-85.60827815714283, 41.94509586320679], "type": "Point"}, "id": "671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60827939285713, 41.94523489785989, -85.60827939285713, 41.94523489785989], "geometry": {"coordinates": [-85.60827939285713, 41.94523489785989], "type": "Point"}, "id": "672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60828062857142, 41.94537393220979, -85.60828062857142, 41.94537393220979], "geometry": {"coordinates": [-85.60828062857142, 41.94537393220979], "type": "Point"}, "id": "673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.60828186428571, 41.945512966256494, -85.60828186428571, 41.945512966256494], "geometry": {"coordinates": [-85.60828186428571, 41.945512966256494], "type": "Point"}, "id": "674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968005}, "type": "Feature"}, {"bbox": [-85.63482979999999, 41.964783, -85.63482979999999, 41.964783], "geometry": {"coordinates": [-85.63482979999999, 41.964783], "type": "Point"}, "id": "675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63464022857141, 41.964783800000035, -85.63464022857141, 41.964783800000035], "geometry": {"coordinates": [-85.63464022857141, 41.964783800000035], "type": "Point"}, "id": "676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63445065714286, 41.96478460000005, -85.63445065714286, 41.96478460000005], "geometry": {"coordinates": [-85.63445065714286, 41.96478460000005], "type": "Point"}, "id": "677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63426108571427, 41.96478540000006, -85.63426108571427, 41.96478540000006], "geometry": {"coordinates": [-85.63426108571427, 41.96478540000006], "type": "Point"}, "id": "678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63407151428572, 41.964786200000056, -85.63407151428572, 41.964786200000056], "geometry": {"coordinates": [-85.63407151428572, 41.964786200000056], "type": "Point"}, "id": "679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63388194285714, 41.96478700000006, -85.63388194285714, 41.96478700000006], "geometry": {"coordinates": [-85.63388194285714, 41.96478700000006], "type": "Point"}, "id": "680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.63369237142858, 41.96478780000003, -85.63369237142858, 41.96478780000003], "geometry": {"coordinates": [-85.63369237142858, 41.96478780000003], "type": "Point"}, "id": "681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167062}, "type": "Feature"}, {"bbox": [-85.6321281, 41.957861099999995, -85.6321281, 41.957861099999995], "geometry": {"coordinates": [-85.6321281, 41.957861099999995], "type": "Point"}, "id": "682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 776693874}, "type": "Feature"}, {"bbox": [-85.64699549999999, 41.94498039999999, -85.64699549999999, 41.94498039999999], "geometry": {"coordinates": [-85.64699549999999, 41.94498039999999], "type": "Point"}, "id": "683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.64693563225137, 41.944833300199996, -85.64693563225137, 41.944833300199996], "geometry": {"coordinates": [-85.64693563225137, 41.944833300199996], "type": "Point"}, "id": "684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.6469351858011, 41.94467844091227, -85.6469351858011, 41.94467844091227], "geometry": {"coordinates": [-85.6469351858011, 41.94467844091227], "type": "Point"}, "id": "685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.64693473935081, 41.94452358124841, -85.64693473935081, 41.94452358124841], "geometry": {"coordinates": [-85.64693473935081, 41.94452358124841], "type": "Point"}, "id": "686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.64693429290054, 41.94436872120842, -85.64693429290054, 41.94436872120842], "geometry": {"coordinates": [-85.64693429290054, 41.94436872120842], "type": "Point"}, "id": "687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.64693384645027, 41.94421386079228, -85.64693384645027, 41.94421386079228], "geometry": {"coordinates": [-85.64693384645027, 41.94421386079228], "type": "Point"}, "id": "688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968029}, "type": "Feature"}, {"bbox": [-85.63503659999999, 41.937977399999994, -85.63503659999999, 41.937977399999994], "geometry": {"coordinates": [-85.63503659999999, 41.937977399999994], "type": "Point"}, "id": "689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63516359452623, 41.93807479014405, -85.63516359452623, 41.93807479014405], "geometry": {"coordinates": [-85.63516359452623, 41.93807479014405], "type": "Point"}, "id": "690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63531380300842, 41.93815016132695, -85.63531380300842, 41.93815016132695], "geometry": {"coordinates": [-85.63531380300842, 41.93815016132695], "type": "Point"}, "id": "691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63548990661812, 41.93818109588004, -85.63548990661812, 41.93818109588004], "geometry": {"coordinates": [-85.63548990661812, 41.93818109588004], "type": "Point"}, "id": "692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63567220221428, 41.93818562072829, -85.63567220221428, 41.93818562072829], "geometry": {"coordinates": [-85.63567220221428, 41.93818562072829], "type": "Point"}, "id": "693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6358545364385, 41.9381865911789, -85.6358545364385, 41.9381865911789], "geometry": {"coordinates": [-85.6358545364385, 41.9381865911789], "type": "Point"}, "id": "694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63603690655195, 41.938184259243705, -85.63603690655195, 41.938184259243705], "geometry": {"coordinates": [-85.63603690655195, 41.938184259243705], "type": "Point"}, "id": "695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63621927666541, 41.93818192730841, -85.63621927666541, 41.93818192730841], "geometry": {"coordinates": [-85.63621927666541, 41.93818192730841], "type": "Point"}, "id": "696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63640165565853, 41.93818014916622, -85.63640165565853, 41.93818014916622], "geometry": {"coordinates": [-85.63640165565853, 41.93818014916622], "type": "Point"}, "id": "697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6365840486619, 41.93817924479152, -85.6365840486619, 41.93817924479152], "geometry": {"coordinates": [-85.6365840486619, 41.93817924479152], "type": "Point"}, "id": "698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63676644166529, 41.9381783404168, -85.63676644166529, 41.9381783404168], "geometry": {"coordinates": [-85.63676644166529, 41.9381783404168], "type": "Point"}, "id": "699", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63694883466863, 41.93817743604208, -85.63694883466863, 41.93817743604208], "geometry": {"coordinates": [-85.63694883466863, 41.93817743604208], "type": "Point"}, "id": "700", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63713122767201, 41.938176531667345, -85.63713122767201, 41.938176531667345], "geometry": {"coordinates": [-85.63713122767201, 41.938176531667345], "type": "Point"}, "id": "701", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63731362067536, 41.938175627292594, -85.63731362067536, 41.938175627292594], "geometry": {"coordinates": [-85.63731362067536, 41.938175627292594], "type": "Point"}, "id": "702", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63749600954313, 41.93817534136381, -85.63749600954313, 41.93817534136381], "geometry": {"coordinates": [-85.63749600954313, 41.93817534136381], "type": "Point"}, "id": "703", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63767838142556, 41.93817759544884, -85.63767838142556, 41.93817759544884], "geometry": {"coordinates": [-85.63767838142556, 41.93817759544884], "type": "Point"}, "id": "704", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63786075330799, 41.93817984953379, -85.63786075330799, 41.93817984953379], "geometry": {"coordinates": [-85.63786075330799, 41.93817984953379], "type": "Point"}, "id": "705", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63804312519044, 41.938182103618665, -85.63804312519044, 41.938182103618665], "geometry": {"coordinates": [-85.63804312519044, 41.938182103618665], "type": "Point"}, "id": "706", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63822549707287, 41.938184357703456, -85.63822549707287, 41.938184357703456], "geometry": {"coordinates": [-85.63822549707287, 41.938184357703456], "type": "Point"}, "id": "707", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6384078689553, 41.93818661178817, -85.6384078689553, 41.93818661178817], "geometry": {"coordinates": [-85.6384078689553, 41.93818661178817], "type": "Point"}, "id": "708", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63859024083773, 41.938188865872796, -85.63859024083773, 41.938188865872796], "geometry": {"coordinates": [-85.63859024083773, 41.938188865872796], "type": "Point"}, "id": "709", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6387726128445, 41.93818888562233, -85.6387726128445, 41.93818888562233], "geometry": {"coordinates": [-85.6387726128445, 41.93818888562233], "type": "Point"}, "id": "710", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63895498497715, 41.93818664276771, -85.63895498497715, 41.93818664276771], "geometry": {"coordinates": [-85.63895498497715, 41.93818664276771], "type": "Point"}, "id": "711", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63913735710982, 41.93818439991302, -85.63913735710982, 41.93818439991302], "geometry": {"coordinates": [-85.63913735710982, 41.93818439991302], "type": "Point"}, "id": "712", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63931972924246, 41.938182157058236, -85.63931972924246, 41.938182157058236], "geometry": {"coordinates": [-85.63931972924246, 41.938182157058236], "type": "Point"}, "id": "713", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63950210137511, 41.93817991420338, -85.63950210137511, 41.93817991420338], "geometry": {"coordinates": [-85.63950210137511, 41.93817991420338], "type": "Point"}, "id": "714", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63968447350777, 41.938177671348456, -85.63968447350777, 41.938177671348456], "geometry": {"coordinates": [-85.63968447350777, 41.938177671348456], "type": "Point"}, "id": "715", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.63986684564043, 41.93817542849343, -85.63986684564043, 41.93817542849343], "geometry": {"coordinates": [-85.63986684564043, 41.93817542849343], "type": "Point"}, "id": "716", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.6400492256486, 41.938173706706614, -85.6400492256486, 41.938173706706614], "geometry": {"coordinates": [-85.6400492256486, 41.938173706706614], "type": "Point"}, "id": "717", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64023161947141, 41.93817289893948, -85.64023161947141, 41.93817289893948], "geometry": {"coordinates": [-85.64023161947141, 41.93817289893948], "type": "Point"}, "id": "718", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64041401329422, 41.93817209117235, -85.64041401329422, 41.93817209117235], "geometry": {"coordinates": [-85.64041401329422, 41.93817209117235], "type": "Point"}, "id": "719", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64059640711703, 41.9381712834052, -85.64059640711703, 41.9381712834052], "geometry": {"coordinates": [-85.64059640711703, 41.9381712834052], "type": "Point"}, "id": "720", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64077880093986, 41.93817047563804, -85.64077880093986, 41.93817047563804], "geometry": {"coordinates": [-85.64077880093986, 41.93817047563804], "type": "Point"}, "id": "721", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64096119476267, 41.93816966787087, -85.64096119476267, 41.93816966787087], "geometry": {"coordinates": [-85.64096119476267, 41.93816966787087], "type": "Point"}, "id": "722", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64114358045707, 41.93816844891974, -85.64114358045707, 41.93816844891974], "geometry": {"coordinates": [-85.64114358045707, 41.93816844891974], "type": "Point"}, "id": "723", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64132592734614, 41.938165266959025, -85.64132592734614, 41.938165266959025], "geometry": {"coordinates": [-85.64132592734614, 41.938165266959025], "type": "Point"}, "id": "724", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64150827423524, 41.938162084998154, -85.64150827423524, 41.938162084998154], "geometry": {"coordinates": [-85.64150827423524, 41.938162084998154], "type": "Point"}, "id": "725", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64169062112431, 41.93815890303713, -85.64169062112431, 41.93815890303713], "geometry": {"coordinates": [-85.64169062112431, 41.93815890303713], "type": "Point"}, "id": "726", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64187296790224, 41.938155717558985, -85.64187296790224, 41.938155717558985], "geometry": {"coordinates": [-85.64187296790224, 41.938155717558985], "type": "Point"}, "id": "727", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.642055314389, 41.9381525228652, -85.642055314389, 41.9381525228652], "geometry": {"coordinates": [-85.642055314389, 41.9381525228652], "type": "Point"}, "id": "728", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64223766087575, 41.93814932817126, -85.64223766087575, 41.93814932817126], "geometry": {"coordinates": [-85.64223766087575, 41.93814932817126], "type": "Point"}, "id": "729", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64242004942362, 41.938148350097904, -85.64242004942362, 41.938148350097904], "geometry": {"coordinates": [-85.64242004942362, 41.938148350097904], "type": "Point"}, "id": "730", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64260244448127, 41.93814771508815, -85.64260244448127, 41.93814771508815], "geometry": {"coordinates": [-85.64260244448127, 41.93814771508815], "type": "Point"}, "id": "731", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64278483953889, 41.93814708007837, -85.64278483953889, 41.93814708007837], "geometry": {"coordinates": [-85.64278483953889, 41.93814708007837], "type": "Point"}, "id": "732", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64296723459654, 41.938146445068604, -85.64296723459654, 41.938146445068604], "geometry": {"coordinates": [-85.64296723459654, 41.938146445068604], "type": "Point"}, "id": "733", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64314962965418, 41.93814581005882, -85.64314962965418, 41.93814581005882], "geometry": {"coordinates": [-85.64314962965418, 41.93814581005882], "type": "Point"}, "id": "734", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64333202471181, 41.93814517504903, -85.64333202471181, 41.93814517504903], "geometry": {"coordinates": [-85.64333202471181, 41.93814517504903], "type": "Point"}, "id": "735", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64351441976946, 41.93814454003924, -85.64351441976946, 41.93814454003924], "geometry": {"coordinates": [-85.64351441976946, 41.93814454003924], "type": "Point"}, "id": "736", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64369681482708, 41.93814390502944, -85.64369681482708, 41.93814390502944], "geometry": {"coordinates": [-85.64369681482708, 41.93814390502944], "type": "Point"}, "id": "737", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64387920988473, 41.93814327001964, -85.64387920988473, 41.93814327001964], "geometry": {"coordinates": [-85.64387920988473, 41.93814327001964], "type": "Point"}, "id": "738", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.64406160494237, 41.938142635009825, -85.64406160494237, 41.938142635009825], "geometry": {"coordinates": [-85.64406160494237, 41.938142635009825], "type": "Point"}, "id": "739", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967502}, "type": "Feature"}, {"bbox": [-85.612216, 41.951641, -85.612216, 41.951641], "geometry": {"coordinates": [-85.612216, 41.951641], "type": "Point"}, "id": "740", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221397222798, 41.95177726649306, -85.61221397222798, 41.95177726649306], "geometry": {"coordinates": [-85.61221397222798, 41.95177726649306], "type": "Point"}, "id": "741", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221194445596, 41.95191353269482, -85.61221194445596, 41.95191353269482], "geometry": {"coordinates": [-85.61221194445596, 41.95191353269482], "type": "Point"}, "id": "742", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221189507073, 41.95204980002001, -85.61221189507073, 41.95204980002001], "geometry": {"coordinates": [-85.61221189507073, 41.95204980002001], "type": "Point"}, "id": "743", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.6122135704815, 41.95218606828728, -85.6122135704815, 41.95218606828728], "geometry": {"coordinates": [-85.6122135704815, 41.95218606828728], "type": "Point"}, "id": "744", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221524589227, 41.952322336263244, -85.61221524589227, 41.952322336263244], "geometry": {"coordinates": [-85.61221524589227, 41.952322336263244], "type": "Point"}, "id": "745", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221692130304, 41.952458603947875, -85.61221692130304, 41.952458603947875], "geometry": {"coordinates": [-85.61221692130304, 41.952458603947875], "type": "Point"}, "id": "746", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61221859671382, 41.952594871341184, -85.61221859671382, 41.952594871341184], "geometry": {"coordinates": [-85.61221859671382, 41.952594871341184], "type": "Point"}, "id": "747", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222027212459, 41.95273113844317, -85.61222027212459, 41.95273113844317], "geometry": {"coordinates": [-85.61222027212459, 41.95273113844317], "type": "Point"}, "id": "748", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222194753536, 41.95286740525383, -85.61222194753536, 41.95286740525383], "geometry": {"coordinates": [-85.61222194753536, 41.95286740525383], "type": "Point"}, "id": "749", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222362294615, 41.95300367177317, -85.61222362294615, 41.95300367177317], "geometry": {"coordinates": [-85.61222362294615, 41.95300367177317], "type": "Point"}, "id": "750", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222529835689, 41.95313993800119, -85.61222529835689, 41.95313993800119], "geometry": {"coordinates": [-85.61222529835689, 41.95313993800119], "type": "Point"}, "id": "751", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222697376768, 41.953276203937875, -85.61222697376768, 41.953276203937875], "geometry": {"coordinates": [-85.61222697376768, 41.953276203937875], "type": "Point"}, "id": "752", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.61222864917845, 41.95341246958324, -85.61222864917845, 41.95341246958324], "geometry": {"coordinates": [-85.61222864917845, 41.95341246958324], "type": "Point"}, "id": "753", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.6122303245892, 41.953548734937286, -85.6122303245892, 41.953548734937286], "geometry": {"coordinates": [-85.6122303245892, 41.953548734937286], "type": "Point"}, "id": "754", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967957}, "type": "Feature"}, {"bbox": [-85.63674599999999, 41.92922099999999, -85.63674599999999, 41.92922099999999], "geometry": {"coordinates": [-85.63674599999999, 41.92922099999999], "type": "Point"}, "id": "755", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63692700097647, 41.92922099999999, -85.63692700097647, 41.92922099999999], "geometry": {"coordinates": [-85.63692700097647, 41.92922099999999], "type": "Point"}, "id": "756", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63710800195295, 41.92922099999999, -85.63710800195295, 41.92922099999999], "geometry": {"coordinates": [-85.63710800195295, 41.92922099999999], "type": "Point"}, "id": "757", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63728900292944, 41.92922099999999, -85.63728900292944, 41.92922099999999], "geometry": {"coordinates": [-85.63728900292944, 41.92922099999999], "type": "Point"}, "id": "758", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63747000390592, 41.92922099999999, -85.63747000390592, 41.92922099999999], "geometry": {"coordinates": [-85.63747000390592, 41.92922099999999], "type": "Point"}, "id": "759", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.6376510048824, 41.92922099999999, -85.6376510048824, 41.92922099999999], "geometry": {"coordinates": [-85.6376510048824, 41.92922099999999], "type": "Point"}, "id": "760", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63783200585888, 41.92922099999999, -85.63783200585888, 41.92922099999999], "geometry": {"coordinates": [-85.63783200585888, 41.92922099999999], "type": "Point"}, "id": "761", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63801300683537, 41.92922099999999, -85.63801300683537, 41.92922099999999], "geometry": {"coordinates": [-85.63801300683537, 41.92922099999999], "type": "Point"}, "id": "762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63819400770639, 41.929221137527755, -85.63819400770639, 41.929221137527755], "geometry": {"coordinates": [-85.63819400770639, 41.929221137527755], "type": "Point"}, "id": "763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63837500856502, 41.92922129117874, -85.63837500856502, 41.92922129117874], "geometry": {"coordinates": [-85.63837500856502, 41.92922129117874], "type": "Point"}, "id": "764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63855600942368, 41.92922144482973, -85.63855600942368, 41.92922144482973], "geometry": {"coordinates": [-85.63855600942368, 41.92922144482973], "type": "Point"}, "id": "765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63873701028234, 41.929221598480716, -85.63873701028234, 41.929221598480716], "geometry": {"coordinates": [-85.63873701028234, 41.929221598480716], "type": "Point"}, "id": "766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.638918011141, 41.9292217521317, -85.638918011141, 41.9292217521317], "geometry": {"coordinates": [-85.638918011141, 41.9292217521317], "type": "Point"}, "id": "767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.63909901199963, 41.92922190578268, -85.63909901199963, 41.92922190578268], "geometry": {"coordinates": [-85.63909901199963, 41.92922190578268], "type": "Point"}, "id": "768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965610}, "type": "Feature"}, {"bbox": [-85.61917089999999, 41.9567483, -85.61917089999999, 41.9567483], "geometry": {"coordinates": [-85.61917089999999, 41.9567483], "type": "Point"}, "id": "769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61921035887673, 41.956885068083665, -85.61921035887673, 41.956885068083665], "geometry": {"coordinates": [-85.61921035887673, 41.956885068083665], "type": "Point"}, "id": "770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61921588853407, 41.95702550032019, -85.61921588853407, 41.95702550032019], "geometry": {"coordinates": [-85.61921588853407, 41.95702550032019], "type": "Point"}, "id": "771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61921957360906, 41.957166021478976, -85.61921957360906, 41.957166021478976], "geometry": {"coordinates": [-85.61921957360906, 41.957166021478976], "type": "Point"}, "id": "772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61922325868406, 41.957306542327906, -85.61922325868406, 41.957306542327906], "geometry": {"coordinates": [-85.61922325868406, 41.957306542327906], "type": "Point"}, "id": "773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61922694375905, 41.95744706286698, -85.61922694375905, 41.95744706286698], "geometry": {"coordinates": [-85.61922694375905, 41.95744706286698], "type": "Point"}, "id": "774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61923062883403, 41.95758758309622, -85.61923062883403, 41.95758758309622], "geometry": {"coordinates": [-85.61923062883403, 41.95758758309622], "type": "Point"}, "id": "775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61923431390902, 41.957728103015626, -85.61923431390902, 41.957728103015626], "geometry": {"coordinates": [-85.61923431390902, 41.957728103015626], "type": "Point"}, "id": "776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.619237998984, 41.95786862262517, -85.619237998984, 41.95786862262517], "geometry": {"coordinates": [-85.619237998984, 41.95786862262517], "type": "Point"}, "id": "777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.619241684059, 41.958009141924876, -85.619241684059, 41.958009141924876], "geometry": {"coordinates": [-85.619241684059, 41.958009141924876], "type": "Point"}, "id": "778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61924536913399, 41.95814966091473, -85.61924536913399, 41.95814966091473], "geometry": {"coordinates": [-85.61924536913399, 41.95814966091473], "type": "Point"}, "id": "779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61924905420898, 41.95829017959475, -85.61924905420898, 41.95829017959475], "geometry": {"coordinates": [-85.61924905420898, 41.95829017959475], "type": "Point"}, "id": "780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61925271349742, 41.958430698216105, -85.61925271349742, 41.958430698216105], "geometry": {"coordinates": [-85.61925271349742, 41.958430698216105], "type": "Point"}, "id": "781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61925397963707, 41.958571239840474, -85.61925397963707, 41.958571239840474], "geometry": {"coordinates": [-85.61925397963707, 41.958571239840474], "type": "Point"}, "id": "782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61924340892692, 41.95871038436162, -85.61924340892692, 41.95871038436162], "geometry": {"coordinates": [-85.61924340892692, 41.95871038436162], "type": "Point"}, "id": "783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61907524642521, 41.958765325161316, -85.61907524642521, 41.958765325161316], "geometry": {"coordinates": [-85.61907524642521, 41.958765325161316], "type": "Point"}, "id": "784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.61889492120174, 41.95880741219888, -85.61889492120174, 41.95880741219888], "geometry": {"coordinates": [-85.61889492120174, 41.95880741219888], "type": "Point"}, "id": "785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308436}, "type": "Feature"}, {"bbox": [-85.62486719999998, 41.941590299999994, -85.62486719999998, 41.941590299999994], "geometry": {"coordinates": [-85.62486719999998, 41.941590299999994], "type": "Point"}, "id": "786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62486900562911, 41.94172469515712, -85.62486900562911, 41.94172469515712], "geometry": {"coordinates": [-85.62486900562911, 41.94172469515712], "type": "Point"}, "id": "787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487081125826, 41.941859090030974, -85.62487081125826, 41.941859090030974], "geometry": {"coordinates": [-85.62487081125826, 41.941859090030974], "type": "Point"}, "id": "788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487261688737, 41.94199348462156, -85.62487261688737, 41.94199348462156], "geometry": {"coordinates": [-85.62487261688737, 41.94199348462156], "type": "Point"}, "id": "789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487378377935, 41.94212788261081, -85.62487378377935, 41.94212788261081], "geometry": {"coordinates": [-85.62487378377935, 41.94212788261081], "type": "Point"}, "id": "790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487477864642, 41.9422622813084, -85.62487477864642, 41.9422622813084], "geometry": {"coordinates": [-85.62487477864642, 41.9422622813084], "type": "Point"}, "id": "791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6248757735135, 41.94239667972271, -85.6248757735135, 41.94239667972271], "geometry": {"coordinates": [-85.6248757735135, 41.94239667972271], "type": "Point"}, "id": "792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487676838053, 41.94253107785372, -85.62487676838053, 41.94253107785372], "geometry": {"coordinates": [-85.62487676838053, 41.94253107785372], "type": "Point"}, "id": "793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487776324761, 41.94266547570146, -85.62487776324761, 41.94266547570146], "geometry": {"coordinates": [-85.62487776324761, 41.94266547570146], "type": "Point"}, "id": "794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487875811468, 41.942799873265905, -85.62487875811468, 41.942799873265905], "geometry": {"coordinates": [-85.62487875811468, 41.942799873265905], "type": "Point"}, "id": "795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62487975298174, 41.94293427054706, -85.62487975298174, 41.94293427054706], "geometry": {"coordinates": [-85.62487975298174, 41.94293427054706], "type": "Point"}, "id": "796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488074784879, 41.943068667544935, -85.62488074784879, 41.943068667544935], "geometry": {"coordinates": [-85.62488074784879, 41.943068667544935], "type": "Point"}, "id": "797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488174271586, 41.94320306425953, -85.62488174271586, 41.94320306425953], "geometry": {"coordinates": [-85.62488174271586, 41.94320306425953], "type": "Point"}, "id": "798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488273758292, 41.94333746069083, -85.62488273758292, 41.94333746069083], "geometry": {"coordinates": [-85.62488273758292, 41.94333746069083], "type": "Point"}, "id": "799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488373245, 41.94347185683885, -85.62488373245, 41.94347185683885], "geometry": {"coordinates": [-85.62488373245, 41.94347185683885], "type": "Point"}, "id": "800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488337017363, 41.94360625307608, -85.62488337017363, 41.94360625307608], "geometry": {"coordinates": [-85.62488337017363, 41.94360625307608], "type": "Point"}, "id": "801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488250866011, 41.94374064916705, -85.62488250866011, 41.94374064916705], "geometry": {"coordinates": [-85.62488250866011, 41.94374064916705], "type": "Point"}, "id": "802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488221915723, 41.94387504535904, -85.62488221915723, 41.94387504535904], "geometry": {"coordinates": [-85.62488221915723, 41.94387504535904], "type": "Point"}, "id": "803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488275424322, 41.94400944182176, -85.62488275424322, 41.94400944182176], "geometry": {"coordinates": [-85.62488275424322, 41.94400944182176], "type": "Point"}, "id": "804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488328932922, 41.944143838001196, -85.62488328932922, 41.944143838001196], "geometry": {"coordinates": [-85.62488328932922, 41.944143838001196], "type": "Point"}, "id": "805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488382441524, 41.94427823389732, -85.62488382441524, 41.94427823389732], "geometry": {"coordinates": [-85.62488382441524, 41.94427823389732], "type": "Point"}, "id": "806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488435950122, 41.94441262951016, -85.62488435950122, 41.94441262951016], "geometry": {"coordinates": [-85.62488435950122, 41.94441262951016], "type": "Point"}, "id": "807", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488489458723, 41.94454702483971, -85.62488489458723, 41.94454702483971], "geometry": {"coordinates": [-85.62488489458723, 41.94454702483971], "type": "Point"}, "id": "808", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488542967323, 41.94468141988597, -85.62488542967323, 41.94468141988597], "geometry": {"coordinates": [-85.62488542967323, 41.94468141988597], "type": "Point"}, "id": "809", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488636018637, 41.94481581330582, -85.62488636018637, 41.94481581330582], "geometry": {"coordinates": [-85.62488636018637, 41.94481581330582], "type": "Point"}, "id": "810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488747534681, 41.94495020581524, -85.62488747534681, 41.94495020581524], "geometry": {"coordinates": [-85.62488747534681, 41.94495020581524], "type": "Point"}, "id": "811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488859050727, 41.94508459804137, -85.62488859050727, 41.94508459804137], "geometry": {"coordinates": [-85.62488859050727, 41.94508459804137], "type": "Point"}, "id": "812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488970566773, 41.94521898998421, -85.62488970566773, 41.94521898998421], "geometry": {"coordinates": [-85.62488970566773, 41.94521898998421], "type": "Point"}, "id": "813", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489082082818, 41.94535338164377, -85.62489082082818, 41.94535338164377], "geometry": {"coordinates": [-85.62489082082818, 41.94535338164377], "type": "Point"}, "id": "814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489193598864, 41.945487773020034, -85.62489193598864, 41.945487773020034], "geometry": {"coordinates": [-85.62489193598864, 41.945487773020034], "type": "Point"}, "id": "815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489312897067, 41.94562216348399, -85.62489312897067, 41.94562216348399], "geometry": {"coordinates": [-85.62489312897067, 41.94562216348399], "type": "Point"}, "id": "816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489594080941, 41.945756540579495, -85.62489594080941, 41.945756540579495], "geometry": {"coordinates": [-85.62489594080941, 41.945756540579495], "type": "Point"}, "id": "817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62489875264814, 41.94589091739178, -85.62489875264814, 41.94589091739178], "geometry": {"coordinates": [-85.62489875264814, 41.94589091739178], "type": "Point"}, "id": "818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62490156448688, 41.94602529392083, -85.62490156448688, 41.94602529392083], "geometry": {"coordinates": [-85.62490156448688, 41.94602529392083], "type": "Point"}, "id": "819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6249043763256, 41.94615967016666, -85.6249043763256, 41.94615967016666], "geometry": {"coordinates": [-85.6249043763256, 41.94615967016666], "type": "Point"}, "id": "820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62490718816434, 41.94629404612926, -85.62490718816434, 41.94629404612926], "geometry": {"coordinates": [-85.62490718816434, 41.94629404612926], "type": "Point"}, "id": "821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491000000307, 41.946428421808626, -85.62491000000307, 41.946428421808626], "geometry": {"coordinates": [-85.62491000000307, 41.946428421808626], "type": "Point"}, "id": "822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491182600256, 41.94656280168748, -85.62491182600256, 41.94656280168748], "geometry": {"coordinates": [-85.62491182600256, 41.94656280168748], "type": "Point"}, "id": "823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491122335719, 41.94669719232636, -85.62491122335719, 41.94669719232636], "geometry": {"coordinates": [-85.62491122335719, 41.94669719232636], "type": "Point"}, "id": "824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491062071177, 41.94683158268195, -85.62491062071177, 41.94683158268195], "geometry": {"coordinates": [-85.62491062071177, 41.94683158268195], "type": "Point"}, "id": "825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491001806639, 41.94696597275424, -85.62491001806639, 41.94696597275424], "geometry": {"coordinates": [-85.62491001806639, 41.94696597275424], "type": "Point"}, "id": "826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.624909415421, 41.947100362543246, -85.624909415421, 41.947100362543246], "geometry": {"coordinates": [-85.624909415421, 41.947100362543246], "type": "Point"}, "id": "827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6249088127756, 41.947234752048935, -85.6249088127756, 41.947234752048935], "geometry": {"coordinates": [-85.6249088127756, 41.947234752048935], "type": "Point"}, "id": "828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62490821013023, 41.94736914127135, -85.62490821013023, 41.94736914127135], "geometry": {"coordinates": [-85.62490821013023, 41.94736914127135], "type": "Point"}, "id": "829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62490952578375, 41.9475035233407, -85.62490952578375, 41.9475035233407], "geometry": {"coordinates": [-85.62490952578375, 41.9475035233407], "type": "Point"}, "id": "830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491186838506, 41.94763790144912, -85.62491186838506, 41.94763790144912], "geometry": {"coordinates": [-85.62491186838506, 41.94763790144912], "type": "Point"}, "id": "831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491421098635, 41.94777227927429, -85.62491421098635, 41.94777227927429], "geometry": {"coordinates": [-85.62491421098635, 41.94777227927429], "type": "Point"}, "id": "832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491655358765, 41.9479066568162, -85.62491655358765, 41.9479066568162], "geometry": {"coordinates": [-85.62491655358765, 41.9479066568162], "type": "Point"}, "id": "833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491889618896, 41.94804103407487, -85.62491889618896, 41.94804103407487], "geometry": {"coordinates": [-85.62491889618896, 41.94804103407487], "type": "Point"}, "id": "834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492123879025, 41.94817541105027, -85.62492123879025, 41.94817541105027], "geometry": {"coordinates": [-85.62492123879025, 41.94817541105027], "type": "Point"}, "id": "835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492358139156, 41.94830978774243, -85.62492358139156, 41.94830978774243], "geometry": {"coordinates": [-85.62492358139156, 41.94830978774243], "type": "Point"}, "id": "836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492558853346, 41.94844416710421, -85.62492558853346, 41.94844416710421], "geometry": {"coordinates": [-85.62492558853346, 41.94844416710421], "type": "Point"}, "id": "837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492752268854, 41.9485785468252, -85.62492752268854, 41.9485785468252], "geometry": {"coordinates": [-85.62492752268854, 41.9485785468252], "type": "Point"}, "id": "838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62492945684362, 41.94871292626292, -85.62492945684362, 41.94871292626292], "geometry": {"coordinates": [-85.62492945684362, 41.94871292626292], "type": "Point"}, "id": "839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6249313909987, 41.948847305417374, -85.6249313909987, 41.948847305417374], "geometry": {"coordinates": [-85.6249313909987, 41.948847305417374], "type": "Point"}, "id": "840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62493332515376, 41.948981684288555, -85.62493332515376, 41.948981684288555], "geometry": {"coordinates": [-85.62493332515376, 41.948981684288555], "type": "Point"}, "id": "841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62493525930886, 41.94911606287648, -85.62493525930886, 41.94911606287648], "geometry": {"coordinates": [-85.62493525930886, 41.94911606287648], "type": "Point"}, "id": "842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62493738310036, 41.94925043893115, -85.62493738310036, 41.94925043893115], "geometry": {"coordinates": [-85.62493738310036, 41.94925043893115], "type": "Point"}, "id": "843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62494121314529, 41.94938479445847, -85.62494121314529, 41.94938479445847], "geometry": {"coordinates": [-85.62494121314529, 41.94938479445847], "type": "Point"}, "id": "844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62494504319021, 41.94951914970262, -85.62494504319021, 41.94951914970262], "geometry": {"coordinates": [-85.62494504319021, 41.94951914970262], "type": "Point"}, "id": "845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62494887323513, 41.94965350466358, -85.62494887323513, 41.94965350466358], "geometry": {"coordinates": [-85.62494887323513, 41.94965350466358], "type": "Point"}, "id": "846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62495270328006, 41.949787859341384, -85.62495270328006, 41.949787859341384], "geometry": {"coordinates": [-85.62495270328006, 41.949787859341384], "type": "Point"}, "id": "847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62495653332498, 41.949922213736, -85.62495653332498, 41.949922213736], "geometry": {"coordinates": [-85.62495653332498, 41.949922213736], "type": "Point"}, "id": "848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62496036336991, 41.950056567847454, -85.62496036336991, 41.950056567847454], "geometry": {"coordinates": [-85.62496036336991, 41.950056567847454], "type": "Point"}, "id": "849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62496419341484, 41.95019092167572, -85.62496419341484, 41.95019092167572], "geometry": {"coordinates": [-85.62496419341484, 41.95019092167572], "type": "Point"}, "id": "850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62495705878568, 41.950325153999636, -85.62495705878568, 41.950325153999636], "geometry": {"coordinates": [-85.62495705878568, 41.950325153999636], "type": "Point"}, "id": "851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62494237526052, 41.95045897762713, -85.62494237526052, 41.95045897762713], "geometry": {"coordinates": [-85.62494237526052, 41.95045897762713], "type": "Point"}, "id": "852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62491756212013, 41.95059208766722, -85.62491756212013, 41.95059208766722], "geometry": {"coordinates": [-85.62491756212013, 41.95059208766722], "type": "Point"}, "id": "853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62488375043822, 41.95072405503061, -85.62488375043822, 41.95072405503061], "geometry": {"coordinates": [-85.62488375043822, 41.95072405503061], "type": "Point"}, "id": "854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62484776902986, 41.95085574628538, -85.62484776902986, 41.95085574628538], "geometry": {"coordinates": [-85.62484776902986, 41.95085574628538], "type": "Point"}, "id": "855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62481161831444, 41.950987409809926, -85.62481161831444, 41.950987409809926], "geometry": {"coordinates": [-85.62481161831444, 41.950987409809926], "type": "Point"}, "id": "856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62477061214965, 41.95111828560933, -85.62477061214965, 41.95111828560933], "geometry": {"coordinates": [-85.62477061214965, 41.95111828560933], "type": "Point"}, "id": "857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62472960598483, 41.951249161140026, -85.62472960598483, 41.951249161140026], "geometry": {"coordinates": [-85.62472960598483, 41.951249161140026], "type": "Point"}, "id": "858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62468859982002, 41.951380036402, -85.62468859982002, 41.951380036402], "geometry": {"coordinates": [-85.62468859982002, 41.951380036402], "type": "Point"}, "id": "859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62464759365523, 41.95151091139527, -85.62464759365523, 41.95151091139527], "geometry": {"coordinates": [-85.62464759365523, 41.95151091139527], "type": "Point"}, "id": "860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62460688015916, 41.951641836348244, -85.62460688015916, 41.951641836348244], "geometry": {"coordinates": [-85.62460688015916, 41.951641836348244], "type": "Point"}, "id": "861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62456662819483, 41.95177284024119, -85.62456662819483, 41.95177284024119], "geometry": {"coordinates": [-85.62456662819483, 41.95177284024119], "type": "Point"}, "id": "862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62452637623049, 41.95190384386488, -85.62452637623049, 41.95190384386488], "geometry": {"coordinates": [-85.62452637623049, 41.95190384386488], "type": "Point"}, "id": "863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62448612426614, 41.95203484721934, -85.62448612426614, 41.95203484721934], "geometry": {"coordinates": [-85.62448612426614, 41.95203484721934], "type": "Point"}, "id": "864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6244458723018, 41.952165850304546, -85.6244458723018, 41.952165850304546], "geometry": {"coordinates": [-85.6244458723018, 41.952165850304546], "type": "Point"}, "id": "865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62440562033747, 41.95229685312051, -85.62440562033747, 41.95229685312051], "geometry": {"coordinates": [-85.62440562033747, 41.95229685312051], "type": "Point"}, "id": "866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62436536840428, 41.95242785567253, -85.62436536840428, 41.95242785567253], "geometry": {"coordinates": [-85.62436536840428, 41.95242785567253], "type": "Point"}, "id": "867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62432511842515, 41.95255885828736, -85.62432511842515, 41.95255885828736], "geometry": {"coordinates": [-85.62432511842515, 41.95255885828736], "type": "Point"}, "id": "868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62428486844603, 41.952689860632944, -85.62428486844603, 41.952689860632944], "geometry": {"coordinates": [-85.62428486844603, 41.952689860632944], "type": "Point"}, "id": "869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62424461846689, 41.952820862709295, -85.62424461846689, 41.952820862709295], "geometry": {"coordinates": [-85.62424461846689, 41.952820862709295], "type": "Point"}, "id": "870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62420436848777, 41.952951864516386, -85.62420436848777, 41.952951864516386], "geometry": {"coordinates": [-85.62420436848777, 41.952951864516386], "type": "Point"}, "id": "871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62416411883113, 41.95308286610903, -85.62416411883113, 41.95308286610903], "geometry": {"coordinates": [-85.62416411883113, 41.95308286610903], "type": "Point"}, "id": "872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62412387117753, 41.9532138677728, -85.62412387117753, 41.9532138677728], "geometry": {"coordinates": [-85.62412387117753, 41.9532138677728], "type": "Point"}, "id": "873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62408362352393, 41.953344869167324, -85.62408362352393, 41.953344869167324], "geometry": {"coordinates": [-85.62408362352393, 41.953344869167324], "type": "Point"}, "id": "874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62404337587036, 41.95347587029259, -85.62404337587036, 41.95347587029259], "geometry": {"coordinates": [-85.62404337587036, 41.95347587029259], "type": "Point"}, "id": "875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62400312821677, 41.95360687114862, -85.62400312821677, 41.95360687114862], "geometry": {"coordinates": [-85.62400312821677, 41.95360687114862], "type": "Point"}, "id": "876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62396288056317, 41.95373787173539, -85.62396288056317, 41.95373787173539], "geometry": {"coordinates": [-85.62396288056317, 41.95373787173539], "type": "Point"}, "id": "877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62392263290957, 41.953868872052915, -85.62392263290957, 41.953868872052915], "geometry": {"coordinates": [-85.62392263290957, 41.953868872052915], "type": "Point"}, "id": "878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62389957095233, 41.95400179059587, -85.62389957095233, 41.95400179059587], "geometry": {"coordinates": [-85.62389957095233, 41.95400179059587], "type": "Point"}, "id": "879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62388810666864, 41.95413588026393, -85.62388810666864, 41.95413588026393], "geometry": {"coordinates": [-85.62388810666864, 41.95413588026393], "type": "Point"}, "id": "880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62388582313609, 41.954270116177504, -85.62388582313609, 41.954270116177504], "geometry": {"coordinates": [-85.62388582313609, 41.954270116177504], "type": "Point"}, "id": "881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.6238960862706, 41.95440427437087, -85.6238960862706, 41.95440427437087], "geometry": {"coordinates": [-85.6238960862706, 41.95440427437087], "type": "Point"}, "id": "882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.62389111917038, 41.954537464760016, -85.62389111917038, 41.954537464760016], "geometry": {"coordinates": [-85.62389111917038, 41.954537464760016], "type": "Point"}, "id": "883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967092}, "type": "Feature"}, {"bbox": [-85.63945480000001, 41.942609999999995, -85.63945480000001, 41.942609999999995], "geometry": {"coordinates": [-85.63945480000001, 41.942609999999995], "type": "Point"}, "id": "884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945466119685, 41.94274612591169, -85.63945466119685, 41.94274612591169], "geometry": {"coordinates": [-85.63945466119685, 41.94274612591169], "type": "Point"}, "id": "885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945456725246, 41.94288225155686, -85.63945456725246, 41.94288225155686], "geometry": {"coordinates": [-85.63945456725246, 41.94288225155686], "type": "Point"}, "id": "886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945447330805, 41.94301837691141, -85.63945447330805, 41.94301837691141], "geometry": {"coordinates": [-85.63945447330805, 41.94301837691141], "type": "Point"}, "id": "887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945438397546, 41.94315450197691, -85.63945438397546, 41.94315450197691], "geometry": {"coordinates": [-85.63945438397546, 41.94315450197691], "type": "Point"}, "id": "888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945431102574, 41.943290626757346, -85.63945431102574, 41.943290626757346], "geometry": {"coordinates": [-85.63945431102574, 41.943290626757346], "type": "Point"}, "id": "889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.639454238076, 41.943426751247166, -85.639454238076, 41.943426751247166], "geometry": {"coordinates": [-85.639454238076, 41.943426751247166], "type": "Point"}, "id": "890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945416512628, 41.94356287544637, -85.63945416512628, 41.94356287544637], "geometry": {"coordinates": [-85.63945416512628, 41.94356287544637], "type": "Point"}, "id": "891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945409217654, 41.94369899935494, -85.63945409217654, 41.94369899935494], "geometry": {"coordinates": [-85.63945409217654, 41.94369899935494], "type": "Point"}, "id": "892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945401922682, 41.9438351229729, -85.63945401922682, 41.9438351229729], "geometry": {"coordinates": [-85.63945401922682, 41.9438351229729], "type": "Point"}, "id": "893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945598169643, 41.94397123547117, -85.63945598169643, 41.94397123547117], "geometry": {"coordinates": [-85.63945598169643, 41.94397123547117], "type": "Point"}, "id": "894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63945867261904, 41.94410734380327, -85.63945867261904, 41.94410734380327], "geometry": {"coordinates": [-85.63945867261904, 41.94410734380327], "type": "Point"}, "id": "895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63946136354166, 41.94424345184481, -85.63946136354166, 41.94424345184481], "geometry": {"coordinates": [-85.63946136354166, 41.94424345184481], "type": "Point"}, "id": "896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63946405446427, 41.944379559595795, -85.63946405446427, 41.944379559595795], "geometry": {"coordinates": [-85.63946405446427, 41.944379559595795], "type": "Point"}, "id": "897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63946674538691, 41.94451566705622, -85.63946674538691, 41.94451566705622], "geometry": {"coordinates": [-85.63946674538691, 41.94451566705622], "type": "Point"}, "id": "898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63946943630953, 41.94465177422609, -85.63946943630953, 41.94465177422609], "geometry": {"coordinates": [-85.63946943630953, 41.94465177422609], "type": "Point"}, "id": "899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63947212723214, 41.944787881105405, -85.63947212723214, 41.944787881105405], "geometry": {"coordinates": [-85.63947212723214, 41.944787881105405], "type": "Point"}, "id": "900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63947481815475, 41.94492398769417, -85.63947481815475, 41.94492398769417], "geometry": {"coordinates": [-85.63947481815475, 41.94492398769417], "type": "Point"}, "id": "901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.63947750907737, 41.94506009399236, -85.63947750907737, 41.94506009399236], "geometry": {"coordinates": [-85.63947750907737, 41.94506009399236], "type": "Point"}, "id": "902", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965792}, "type": "Feature"}, {"bbox": [-85.6321716, 41.9606811, -85.6321716, 41.9606811], "geometry": {"coordinates": [-85.6321716, 41.9606811], "type": "Point"}, "id": "903", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.6323606357143, 41.96068183571434, -85.6323606357143, 41.96068183571434], "geometry": {"coordinates": [-85.6323606357143, 41.96068183571434], "type": "Point"}, "id": "904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63254967142858, 41.96068257142868, -85.63254967142858, 41.96068257142868], "geometry": {"coordinates": [-85.63254967142858, 41.96068257142868], "type": "Point"}, "id": "905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63273870714286, 41.960683307143, -85.63273870714286, 41.960683307143], "geometry": {"coordinates": [-85.63273870714286, 41.960683307143], "type": "Point"}, "id": "906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63292774285716, 41.96068404285732, -85.63292774285716, 41.96068404285732], "geometry": {"coordinates": [-85.63292774285716, 41.96068404285732], "type": "Point"}, "id": "907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63311677857142, 41.96068477857162, -85.63311677857142, 41.96068477857162], "geometry": {"coordinates": [-85.63311677857142, 41.96068477857162], "type": "Point"}, "id": "908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63330581428572, 41.96068551428592, -85.63330581428572, 41.96068551428592], "geometry": {"coordinates": [-85.63330581428572, 41.96068551428592], "type": "Point"}, "id": "909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63349485, 41.960686250000215, -85.63349485, 41.960686250000215], "geometry": {"coordinates": [-85.63349485, 41.960686250000215], "type": "Point"}, "id": "910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63368388571429, 41.960686985714496, -85.63368388571429, 41.960686985714496], "geometry": {"coordinates": [-85.63368388571429, 41.960686985714496], "type": "Point"}, "id": "911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63387292142858, 41.960687721428776, -85.63387292142858, 41.960687721428776], "geometry": {"coordinates": [-85.63387292142858, 41.960687721428776], "type": "Point"}, "id": "912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63406195714285, 41.960688457143036, -85.63406195714285, 41.960688457143036], "geometry": {"coordinates": [-85.63406195714285, 41.960688457143036], "type": "Point"}, "id": "913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63425099285715, 41.96068919285729, -85.63425099285715, 41.96068919285729], "geometry": {"coordinates": [-85.63425099285715, 41.96068919285729], "type": "Point"}, "id": "914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.63444002857143, 41.96068992857154, -85.63444002857143, 41.96068992857154], "geometry": {"coordinates": [-85.63444002857143, 41.96068992857154], "type": "Point"}, "id": "915", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.6346290642857, 41.96069066428578, -85.6346290642857, 41.96069066428578], "geometry": {"coordinates": [-85.6346290642857, 41.96069066428578], "type": "Point"}, "id": "916", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 382604729}, "type": "Feature"}, {"bbox": [-85.6489578, 41.9425201, -85.6489578, 41.9425201], "geometry": {"coordinates": [-85.6489578, 41.9425201], "type": "Point"}, "id": "917", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.64914984188538, 41.942517566625206, -85.64914984188538, 41.942517566625206], "geometry": {"coordinates": [-85.64914984188538, 41.942517566625206], "type": "Point"}, "id": "918", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.64934190614294, 41.942515922596954, -85.64934190614294, 41.942515922596954], "geometry": {"coordinates": [-85.64934190614294, 41.942515922596954], "type": "Point"}, "id": "919", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.6495339704005, 41.94251427856866, -85.6495339704005, 41.94251427856866], "geometry": {"coordinates": [-85.6495339704005, 41.94251427856866], "type": "Point"}, "id": "920", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.64972603465804, 41.94251263454032, -85.64972603465804, 41.94251263454032], "geometry": {"coordinates": [-85.64972603465804, 41.94251263454032], "type": "Point"}, "id": "921", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.64991809198092, 41.94251060404401, -85.64991809198092, 41.94251060404401], "geometry": {"coordinates": [-85.64991809198092, 41.94251060404401], "type": "Point"}, "id": "922", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.65011015054739, 41.94250866426362, -85.65011015054739, 41.94250866426362], "geometry": {"coordinates": [-85.65011015054739, 41.94250866426362], "type": "Point"}, "id": "923", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.65030221971202, 41.94250737587399, -85.65030221971202, 41.94250737587399], "geometry": {"coordinates": [-85.65030221971202, 41.94250737587399], "type": "Point"}, "id": "924", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.65049428825576, 41.942506039897545, -85.65049428825576, 41.942506039897545], "geometry": {"coordinates": [-85.65049428825576, 41.942506039897545], "type": "Point"}, "id": "925", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.65068635577313, 41.94250463295108, -85.65068635577313, 41.94250463295108], "geometry": {"coordinates": [-85.65068635577313, 41.94250463295108], "type": "Point"}, "id": "926", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.65087842791434, 41.94250361937776, -85.65087842791434, 41.94250361937776], "geometry": {"coordinates": [-85.65087842791434, 41.94250361937776], "type": "Point"}, "id": "927", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 614445260}, "type": "Feature"}, {"bbox": [-85.6293702, 41.94746680000001, -85.6293702, 41.94746680000001], "geometry": {"coordinates": [-85.6293702, 41.94746680000001], "type": "Point"}, "id": "928", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62928007999997, 41.947587521028716, -85.62928007999997, 41.947587521028716], "geometry": {"coordinates": [-85.62928007999997, 41.947587521028716], "type": "Point"}, "id": "929", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62918995999999, 41.94770824182882, -85.62918995999999, 41.94770824182882], "geometry": {"coordinates": [-85.62918995999999, 41.94770824182882], "type": "Point"}, "id": "930", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62909984, 41.94782896240033, -85.62909984, 41.94782896240033], "geometry": {"coordinates": [-85.62909984, 41.94782896240033], "type": "Point"}, "id": "931", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62900971999998, 41.947949682743236, -85.62900971999998, 41.947949682743236], "geometry": {"coordinates": [-85.62900971999998, 41.947949682743236], "type": "Point"}, "id": "932", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62891959999999, 41.94807040285754, -85.62891959999999, 41.94807040285754], "geometry": {"coordinates": [-85.62891959999999, 41.94807040285754], "type": "Point"}, "id": "933", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62882948, 41.94819112274323, -85.62882948, 41.94819112274323], "geometry": {"coordinates": [-85.62882948, 41.94819112274323], "type": "Point"}, "id": "934", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62873935999998, 41.94831184240032, -85.62873935999998, 41.94831184240032], "geometry": {"coordinates": [-85.62873935999998, 41.94831184240032], "type": "Point"}, "id": "935", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62864923999999, 41.948432561828824, -85.62864923999999, 41.948432561828824], "geometry": {"coordinates": [-85.62864923999999, 41.948432561828824], "type": "Point"}, "id": "936", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.62855911999999, 41.94855328102871, -85.62855911999999, 41.94855328102871], "geometry": {"coordinates": [-85.62855911999999, 41.94855328102871], "type": "Point"}, "id": "937", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964531}, "type": "Feature"}, {"bbox": [-85.63468109999998, 41.9431023, -85.63468109999998, 41.9431023], "geometry": {"coordinates": [-85.63468109999998, 41.9431023], "type": "Point"}, "id": "938", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150789}, "type": "Feature"}, {"bbox": [-85.63451742767126, 41.943159257727594, -85.63451742767126, 41.943159257727594], "geometry": {"coordinates": [-85.63451742767126, 41.943159257727594], "type": "Point"}, "id": "939", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150789}, "type": "Feature"}, {"bbox": [-85.63435375534249, 41.94321621540431, -85.63435375534249, 41.94321621540431], "geometry": {"coordinates": [-85.63435375534249, 41.94321621540431], "type": "Point"}, "id": "940", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150789}, "type": "Feature"}, {"bbox": [-85.620103, 41.95099999999999, -85.620103, 41.95099999999999], "geometry": {"coordinates": [-85.620103, 41.95099999999999], "type": "Point"}, "id": "941", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62028415907713, 41.95100003385517, -85.62028415907713, 41.95100003385517], "geometry": {"coordinates": [-85.62028415907713, 41.95100003385517], "type": "Point"}, "id": "942", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62046531815423, 41.95100006771035, -85.62046531815423, 41.95100006771035], "geometry": {"coordinates": [-85.62046531815423, 41.95100006771035], "type": "Point"}, "id": "943", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62064647723136, 41.95100010156553, -85.62064647723136, 41.95100010156553], "geometry": {"coordinates": [-85.62064647723136, 41.95100010156553], "type": "Point"}, "id": "944", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62082763630845, 41.95100013542073, -85.62082763630845, 41.95100013542073], "geometry": {"coordinates": [-85.62082763630845, 41.95100013542073], "type": "Point"}, "id": "945", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62100879538556, 41.9510001692759, -85.62100879538556, 41.9510001692759], "geometry": {"coordinates": [-85.62100879538556, 41.9510001692759], "type": "Point"}, "id": "946", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62118995446268, 41.95100020313109, -85.62118995446268, 41.95100020313109], "geometry": {"coordinates": [-85.62118995446268, 41.95100020313109], "type": "Point"}, "id": "947", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.6213711135398, 41.95100023698626, -85.6213711135398, 41.95100023698626], "geometry": {"coordinates": [-85.6213711135398, 41.95100023698626], "type": "Point"}, "id": "948", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62155227261691, 41.95100027084145, -85.62155227261691, 41.95100027084145], "geometry": {"coordinates": [-85.62155227261691, 41.95100027084145], "type": "Point"}, "id": "949", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62173343169401, 41.95100030469663, -85.62173343169401, 41.95100030469663], "geometry": {"coordinates": [-85.62173343169401, 41.95100030469663], "type": "Point"}, "id": "950", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62191459077114, 41.95100033855181, -85.62191459077114, 41.95100033855181], "geometry": {"coordinates": [-85.62191459077114, 41.95100033855181], "type": "Point"}, "id": "951", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62209574984824, 41.95100037240699, -85.62209574984824, 41.95100037240699], "geometry": {"coordinates": [-85.62209574984824, 41.95100037240699], "type": "Point"}, "id": "952", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62227690892536, 41.951000406262175, -85.62227690892536, 41.951000406262175], "geometry": {"coordinates": [-85.62227690892536, 41.951000406262175], "type": "Point"}, "id": "953", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62245806800247, 41.951000440117355, -85.62245806800247, 41.951000440117355], "geometry": {"coordinates": [-85.62245806800247, 41.951000440117355], "type": "Point"}, "id": "954", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62263922707957, 41.951000473972535, -85.62263922707957, 41.951000473972535], "geometry": {"coordinates": [-85.62263922707957, 41.951000473972535], "type": "Point"}, "id": "955", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62282038336167, 41.95100014004642, -85.62282038336167, 41.95100014004642], "geometry": {"coordinates": [-85.62282038336167, 41.95100014004642], "type": "Point"}, "id": "956", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62300153035018, 41.95099858323472, -85.62300153035018, 41.95099858323472], "geometry": {"coordinates": [-85.62300153035018, 41.95099858323472], "type": "Point"}, "id": "957", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62318267733869, 41.95099702642299, -85.62318267733869, 41.95099702642299], "geometry": {"coordinates": [-85.62318267733869, 41.95099702642299], "type": "Point"}, "id": "958", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62336382432721, 41.95099546961123, -85.62336382432721, 41.95099546961123], "geometry": {"coordinates": [-85.62336382432721, 41.95099546961123], "type": "Point"}, "id": "959", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62354497131572, 41.95099391279942, -85.62354497131572, 41.95099391279942], "geometry": {"coordinates": [-85.62354497131572, 41.95099391279942], "type": "Point"}, "id": "960", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62372611830423, 41.95099235598757, -85.62372611830423, 41.95099235598757], "geometry": {"coordinates": [-85.62372611830423, 41.95099235598757], "type": "Point"}, "id": "961", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62390726529274, 41.95099079917569, -85.62390726529274, 41.95099079917569], "geometry": {"coordinates": [-85.62390726529274, 41.95099079917569], "type": "Point"}, "id": "962", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62408841228128, 41.950989242363775, -85.62408841228128, 41.950989242363775], "geometry": {"coordinates": [-85.62408841228128, 41.950989242363775], "type": "Point"}, "id": "963", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62426955926979, 41.950987685551816, -85.62426955926979, 41.950987685551816], "geometry": {"coordinates": [-85.62426955926979, 41.950987685551816], "type": "Point"}, "id": "964", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62445070621656, 41.950986126059, -85.62445070621656, 41.950986126059], "geometry": {"coordinates": [-85.62445070621656, 41.950986126059], "type": "Point"}, "id": "965", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62463185310828, 41.95098456302952, -85.62463185310828, 41.95098456302952], "geometry": {"coordinates": [-85.62463185310828, 41.95098456302952], "type": "Point"}, "id": "966", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967535}, "type": "Feature"}, {"bbox": [-85.62472099999998, 41.929278, -85.62472099999998, 41.929278], "geometry": {"coordinates": [-85.62472099999998, 41.929278], "type": "Point"}, "id": "967", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.62491310842391, 41.92927311588803, -85.62491310842391, 41.92927311588803], "geometry": {"coordinates": [-85.62491310842391, 41.92927311588803], "type": "Point"}, "id": "968", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.62510521684781, 41.92926823177568, -85.62510521684781, 41.92926823177568], "geometry": {"coordinates": [-85.62510521684781, 41.92926823177568], "type": "Point"}, "id": "969", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.62529732527175, 41.92926334766297, -85.62529732527175, 41.92926334766297], "geometry": {"coordinates": [-85.62529732527175, 41.92926334766297], "type": "Point"}, "id": "970", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.62548943945114, 41.92926140556866, -85.62548943945114, 41.92926140556866], "geometry": {"coordinates": [-85.62548943945114, 41.92926140556866], "type": "Point"}, "id": "971", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966561}, "type": "Feature"}, {"bbox": [-85.63974, 41.9521543, -85.63974, 41.9521543], "geometry": {"coordinates": [-85.63974, 41.9521543], "type": "Point"}, "id": "972", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.63982504314639, 41.95227426791429, -85.63982504314639, 41.95227426791429], "geometry": {"coordinates": [-85.63982504314639, 41.95227426791429], "type": "Point"}, "id": "973", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.63991007238465, 41.95239424105039, -85.63991007238465, 41.95239424105039], "geometry": {"coordinates": [-85.63991007238465, 41.95239424105039], "type": "Point"}, "id": "974", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.63999498242836, 41.952514260647334, -85.63999498242836, 41.952514260647334], "geometry": {"coordinates": [-85.63999498242836, 41.952514260647334], "type": "Point"}, "id": "975", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64007989247207, 41.95263428001829, -85.64007989247207, 41.95263428001829], "geometry": {"coordinates": [-85.64007989247207, 41.95263428001829], "type": "Point"}, "id": "976", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.6401648025158, 41.95275429916326, -85.6401648025158, 41.95275429916326], "geometry": {"coordinates": [-85.6401648025158, 41.95275429916326], "type": "Point"}, "id": "977", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64024971255951, 41.95287431808222, -85.64024971255951, 41.95287431808222], "geometry": {"coordinates": [-85.64024971255951, 41.95287431808222], "type": "Point"}, "id": "978", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64033462260322, 41.952994336775205, -85.64033462260322, 41.952994336775205], "geometry": {"coordinates": [-85.64033462260322, 41.952994336775205], "type": "Point"}, "id": "979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64041953264693, 41.95311435524219, -85.64041953264693, 41.95311435524219], "geometry": {"coordinates": [-85.64041953264693, 41.95311435524219], "type": "Point"}, "id": "980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64050444269064, 41.95323437348318, -85.64050444269064, 41.95323437348318], "geometry": {"coordinates": [-85.64050444269064, 41.95323437348318], "type": "Point"}, "id": "981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64058935273435, 41.95335439149818, -85.64058935273435, 41.95335439149818], "geometry": {"coordinates": [-85.64058935273435, 41.95335439149818], "type": "Point"}, "id": "982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64067426277808, 41.95347440928719, -85.64067426277808, 41.95347440928719], "geometry": {"coordinates": [-85.64067426277808, 41.95347440928719], "type": "Point"}, "id": "983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64075917282179, 41.953594426850195, -85.64075917282179, 41.953594426850195], "geometry": {"coordinates": [-85.64075917282179, 41.953594426850195], "type": "Point"}, "id": "984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64084848086112, 41.95371263186213, -85.64084848086112, 41.95371263186213], "geometry": {"coordinates": [-85.64084848086112, 41.95371263186213], "type": "Point"}, "id": "985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64094029575348, 41.953829803633276, -85.64094029575348, 41.953829803633276], "geometry": {"coordinates": [-85.64094029575348, 41.953829803633276], "type": "Point"}, "id": "986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64103211064584, 41.95394697518903, -85.64103211064584, 41.95394697518903], "geometry": {"coordinates": [-85.64103211064584, 41.95394697518903], "type": "Point"}, "id": "987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.6411239255382, 41.95406414652937, -85.6411239255382, 41.95406414652937], "geometry": {"coordinates": [-85.6411239255382, 41.95406414652937], "type": "Point"}, "id": "988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64121574043055, 41.95418131765431, -85.64121574043055, 41.95418131765431], "geometry": {"coordinates": [-85.64121574043055, 41.95418131765431], "type": "Point"}, "id": "989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64130755532292, 41.954298488563836, -85.64130755532292, 41.954298488563836], "geometry": {"coordinates": [-85.64130755532292, 41.954298488563836], "type": "Point"}, "id": "990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64139937021527, 41.95441565925797, -85.64139937021527, 41.95441565925797], "geometry": {"coordinates": [-85.64139937021527, 41.95441565925797], "type": "Point"}, "id": "991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.64149118510763, 41.954532829736685, -85.64149118510763, 41.954532829736685], "geometry": {"coordinates": [-85.64149118510763, 41.954532829736685], "type": "Point"}, "id": "992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967763}, "type": "Feature"}, {"bbox": [-85.610238, 41.95477449999999, -85.610238, 41.95477449999999], "geometry": {"coordinates": [-85.610238, 41.95477449999999], "type": "Point"}, "id": "993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61023998485702, 41.9549081230546, -85.61023998485702, 41.9549081230546], "geometry": {"coordinates": [-85.61023998485702, 41.9549081230546], "type": "Point"}, "id": "994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024196971402, 41.955041745829064, -85.61024196971402, 41.955041745829064], "geometry": {"coordinates": [-85.61024196971402, 41.955041745829064], "type": "Point"}, "id": "995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024395457106, 41.955175368323374, -85.61024395457106, 41.955175368323374], "geometry": {"coordinates": [-85.61024395457106, 41.955175368323374], "type": "Point"}, "id": "996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024593942808, 41.95530899053753, -85.61024593942808, 41.95530899053753], "geometry": {"coordinates": [-85.61024593942808, 41.95530899053753], "type": "Point"}, "id": "997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024792428509, 41.95544261247154, -85.61024792428509, 41.95544261247154], "geometry": {"coordinates": [-85.61024792428509, 41.95544261247154], "type": "Point"}, "id": "998", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024990914211, 41.95557623412541, -85.61024990914211, 41.95557623412541], "geometry": {"coordinates": [-85.61024990914211, 41.95557623412541], "type": "Point"}, "id": "999", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025189399913, 41.955709855499116, -85.61025189399913, 41.955709855499116], "geometry": {"coordinates": [-85.61025189399913, 41.955709855499116], "type": "Point"}, "id": "1000", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025387885616, 41.95584347659268, -85.61025387885616, 41.95584347659268], "geometry": {"coordinates": [-85.61025387885616, 41.95584347659268], "type": "Point"}, "id": "1001", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025586762774, 41.9559770973739, -85.61025586762774, 41.9559770973739], "geometry": {"coordinates": [-85.61025586762774, 41.9559770973739], "type": "Point"}, "id": "1002", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025785644146, 41.95611071787463, -85.61025785644146, 41.95611071787463], "geometry": {"coordinates": [-85.61025785644146, 41.95611071787463], "type": "Point"}, "id": "1003", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025984525517, 41.95624433809521, -85.61025984525517, 41.95624433809521], "geometry": {"coordinates": [-85.61025984525517, 41.95624433809521], "type": "Point"}, "id": "1004", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61026183406892, 41.95637795803564, -85.61026183406892, 41.95637795803564], "geometry": {"coordinates": [-85.61026183406892, 41.95637795803564], "type": "Point"}, "id": "1005", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61026382288264, 41.956511577695906, -85.61026382288264, 41.956511577695906], "geometry": {"coordinates": [-85.61026382288264, 41.956511577695906], "type": "Point"}, "id": "1006", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6102739237243, 41.95664468435825, -85.6102739237243, 41.95664468435825], "geometry": {"coordinates": [-85.6102739237243, 41.95664468435825], "type": "Point"}, "id": "1007", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61030228724547, 41.95677663645899, -85.61030228724547, 41.95677663645899], "geometry": {"coordinates": [-85.61030228724547, 41.95677663645899], "type": "Point"}, "id": "1008", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6103454391866, 41.956904156480284, -85.6103454391866, 41.956904156480284], "geometry": {"coordinates": [-85.6103454391866, 41.956904156480284], "type": "Point"}, "id": "1009", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61044803186743, 41.957013863027626, -85.61044803186743, 41.957013863027626], "geometry": {"coordinates": [-85.61044803186743, 41.957013863027626], "type": "Point"}, "id": "1010", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61055062454828, 41.957123569386106, -85.61055062454828, 41.957123569386106], "geometry": {"coordinates": [-85.61055062454828, 41.957123569386106], "type": "Point"}, "id": "1011", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61067261715357, 41.95722140543561, -85.61067261715357, 41.95722140543561], "geometry": {"coordinates": [-85.61067261715357, 41.95722140543561], "type": "Point"}, "id": "1012", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61079761866522, 41.95731740029536, -85.61079761866522, 41.95731740029536], "geometry": {"coordinates": [-85.61079761866522, 41.95731740029536], "type": "Point"}, "id": "1013", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61092262017682, 41.95741339501049, -85.61092262017682, 41.95741339501049], "geometry": {"coordinates": [-85.61092262017682, 41.95741339501049], "type": "Point"}, "id": "1014", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61104762168847, 41.957509389581034, -85.61104762168847, 41.957509389581034], "geometry": {"coordinates": [-85.61104762168847, 41.957509389581034], "type": "Point"}, "id": "1015", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6111726232001, 41.95760538400698, -85.6111726232001, 41.95760538400698], "geometry": {"coordinates": [-85.6111726232001, 41.95760538400698], "type": "Point"}, "id": "1016", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61129762471174, 41.957701378288334, -85.61129762471174, 41.957701378288334], "geometry": {"coordinates": [-85.61129762471174, 41.957701378288334], "type": "Point"}, "id": "1017", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61142262622337, 41.957797372425084, -85.61142262622337, 41.957797372425084], "geometry": {"coordinates": [-85.61142262622337, 41.957797372425084], "type": "Point"}, "id": "1018", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61154762773499, 41.95789336641723, -85.61154762773499, 41.95789336641723], "geometry": {"coordinates": [-85.61154762773499, 41.95789336641723], "type": "Point"}, "id": "1019", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61167262924663, 41.95798936026479, -85.61167262924663, 41.95798936026479], "geometry": {"coordinates": [-85.61167262924663, 41.95798936026479], "type": "Point"}, "id": "1020", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61179763075826, 41.95808535396775, -85.61179763075826, 41.95808535396775], "geometry": {"coordinates": [-85.61179763075826, 41.95808535396775], "type": "Point"}, "id": "1021", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61192263226988, 41.958181347526114, -85.61192263226988, 41.958181347526114], "geometry": {"coordinates": [-85.61192263226988, 41.958181347526114], "type": "Point"}, "id": "1022", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61204763378151, 41.95827734093987, -85.61204763378151, 41.95827734093987], "geometry": {"coordinates": [-85.61204763378151, 41.95827734093987], "type": "Point"}, "id": "1023", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61217263529316, 41.95837333420904, -85.61217263529316, 41.95837333420904], "geometry": {"coordinates": [-85.61217263529316, 41.95837333420904], "type": "Point"}, "id": "1024", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61229763680478, 41.95846932733361, -85.61229763680478, 41.95846932733361], "geometry": {"coordinates": [-85.61229763680478, 41.95846932733361], "type": "Point"}, "id": "1025", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61242263831642, 41.958565320313575, -85.61242263831642, 41.958565320313575], "geometry": {"coordinates": [-85.61242263831642, 41.958565320313575], "type": "Point"}, "id": "1026", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61254763982805, 41.95866131314896, -85.61254763982805, 41.95866131314896], "geometry": {"coordinates": [-85.61254763982805, 41.95866131314896], "type": "Point"}, "id": "1027", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61267264133967, 41.95875730583973, -85.61267264133967, 41.95875730583973], "geometry": {"coordinates": [-85.61267264133967, 41.95875730583973], "type": "Point"}, "id": "1028", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61279764285132, 41.95885329838591, -85.61279764285132, 41.95885329838591], "geometry": {"coordinates": [-85.61279764285132, 41.95885329838591], "type": "Point"}, "id": "1029", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61292264436295, 41.958949290787494, -85.61292264436295, 41.958949290787494], "geometry": {"coordinates": [-85.61292264436295, 41.958949290787494], "type": "Point"}, "id": "1030", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61304764587457, 41.95904528304447, -85.61304764587457, 41.95904528304447], "geometry": {"coordinates": [-85.61304764587457, 41.95904528304447], "type": "Point"}, "id": "1031", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61314870969272, 41.95915501847097, -85.61314870969272, 41.95915501847097], "geometry": {"coordinates": [-85.61314870969272, 41.95915501847097], "type": "Point"}, "id": "1032", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61324196233588, 41.959269238319, -85.61324196233588, 41.959269238319], "geometry": {"coordinates": [-85.61324196233588, 41.959269238319], "type": "Point"}, "id": "1033", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61333430998337, 41.959383773183234, -85.61333430998337, 41.959383773183234], "geometry": {"coordinates": [-85.61333430998337, 41.959383773183234], "type": "Point"}, "id": "1034", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61339261688397, 41.9595101646229, -85.61339261688397, 41.9595101646229], "geometry": {"coordinates": [-85.61339261688397, 41.9595101646229], "type": "Point"}, "id": "1035", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61345092378454, 41.95963655581187, -85.61345092378454, 41.95963655581187], "geometry": {"coordinates": [-85.61345092378454, 41.95963655581187], "type": "Point"}, "id": "1036", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61350923068512, 41.95976294675015, -85.61350923068512, 41.95976294675015], "geometry": {"coordinates": [-85.61350923068512, 41.95976294675015], "type": "Point"}, "id": "1037", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135675375857, 41.95988933743775, -85.6135675375857, 41.95988933743775], "geometry": {"coordinates": [-85.6135675375857, 41.95988933743775], "type": "Point"}, "id": "1038", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359489941204, 41.960019601839484, -85.61359489941204, 41.960019601839484], "geometry": {"coordinates": [-85.61359489941204, 41.960019601839484], "type": "Point"}, "id": "1039", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359545815985, 41.960153221402805, -85.61359545815985, 41.960153221402805], "geometry": {"coordinates": [-85.61359545815985, 41.960153221402805], "type": "Point"}, "id": "1040", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359601690769, 41.960286840685946, -85.61359601690769, 41.960286840685946], "geometry": {"coordinates": [-85.61359601690769, 41.960286840685946], "type": "Point"}, "id": "1041", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135965756555, 41.96042045968889, -85.6135965756555, 41.96042045968889], "geometry": {"coordinates": [-85.6135965756555, 41.96042045968889], "type": "Point"}, "id": "1042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359713440332, 41.96055407841166, -85.61359713440332, 41.96055407841166], "geometry": {"coordinates": [-85.61359713440332, 41.96055407841166], "type": "Point"}, "id": "1043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359769315115, 41.96068769685424, -85.61359769315115, 41.96068769685424], "geometry": {"coordinates": [-85.61359769315115, 41.96068769685424], "type": "Point"}, "id": "1044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359825189899, 41.96082131501664, -85.61359825189899, 41.96082131501664], "geometry": {"coordinates": [-85.61359825189899, 41.96082131501664], "type": "Point"}, "id": "1045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135988106468, 41.960954932898844, -85.6135988106468, 41.960954932898844], "geometry": {"coordinates": [-85.6135988106468, 41.960954932898844], "type": "Point"}, "id": "1046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359936939462, 41.96108855050086, -85.61359936939462, 41.96108855050086], "geometry": {"coordinates": [-85.61359936939462, 41.96108855050086], "type": "Point"}, "id": "1047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359992814245, 41.9612221678227, -85.61359992814245, 41.9612221678227], "geometry": {"coordinates": [-85.61359992814245, 41.9612221678227], "type": "Point"}, "id": "1048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360048689028, 41.96135578486434, -85.61360048689028, 41.96135578486434], "geometry": {"coordinates": [-85.61360048689028, 41.96135578486434], "type": "Point"}, "id": "1049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360104563809, 41.9614894016258, -85.61360104563809, 41.9614894016258], "geometry": {"coordinates": [-85.61360104563809, 41.9614894016258], "type": "Point"}, "id": "1050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360160438592, 41.96162301810707, -85.61360160438592, 41.96162301810707], "geometry": {"coordinates": [-85.61360160438592, 41.96162301810707], "type": "Point"}, "id": "1051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360216313373, 41.961756634308145, -85.61360216313373, 41.961756634308145], "geometry": {"coordinates": [-85.61360216313373, 41.961756634308145], "type": "Point"}, "id": "1052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360272188155, 41.96189025022904, -85.61360272188155, 41.96189025022904], "geometry": {"coordinates": [-85.61360272188155, 41.96189025022904], "type": "Point"}, "id": "1053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360328062938, 41.962023865869746, -85.61360328062938, 41.962023865869746], "geometry": {"coordinates": [-85.61360328062938, 41.962023865869746], "type": "Point"}, "id": "1054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6136038393772, 41.962157481230264, -85.6136038393772, 41.962157481230264], "geometry": {"coordinates": [-85.6136038393772, 41.962157481230264], "type": "Point"}, "id": "1055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360439812502, 41.9622910963106, -85.61360439812502, 41.9622910963106], "geometry": {"coordinates": [-85.61360439812502, 41.9622910963106], "type": "Point"}, "id": "1056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360495687285, 41.96242471111074, -85.61360495687285, 41.96242471111074], "geometry": {"coordinates": [-85.61360495687285, 41.96242471111074], "type": "Point"}, "id": "1057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360551562068, 41.962558325630695, -85.61360551562068, 41.962558325630695], "geometry": {"coordinates": [-85.61360551562068, 41.962558325630695], "type": "Point"}, "id": "1058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6136060743685, 41.96269193987045, -85.6136060743685, 41.96269193987045], "geometry": {"coordinates": [-85.6136060743685, 41.96269193987045], "type": "Point"}, "id": "1059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360663311632, 41.96282555383004, -85.61360663311632, 41.96282555383004], "geometry": {"coordinates": [-85.61360663311632, 41.96282555383004], "type": "Point"}, "id": "1060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359790058626, 41.962958075440895, -85.61359790058626, 41.962958075440895], "geometry": {"coordinates": [-85.61359790058626, 41.962958075440895], "type": "Point"}, "id": "1061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61354194674952, 41.96308504653867, -85.61354194674952, 41.96308504653867], "geometry": {"coordinates": [-85.61354194674952, 41.96308504653867], "type": "Point"}, "id": "1062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61348599291277, 41.96321201738344, -85.61348599291277, 41.96321201738344], "geometry": {"coordinates": [-85.61348599291277, 41.96321201738344], "type": "Point"}, "id": "1063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6134175143066, 41.963332982710355, -85.6134175143066, 41.963332982710355], "geometry": {"coordinates": [-85.6134175143066, 41.963332982710355], "type": "Point"}, "id": "1064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61328506066423, 41.96342327367679, -85.61328506066423, 41.96342327367679], "geometry": {"coordinates": [-85.61328506066423, 41.96342327367679], "type": "Point"}, "id": "1065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61315260702185, 41.96351356451528, -85.61315260702185, 41.96351356451528], "geometry": {"coordinates": [-85.61315260702185, 41.96351356451528], "type": "Point"}, "id": "1066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61302015337947, 41.96360385522582, -85.61302015337947, 41.96360385522582], "geometry": {"coordinates": [-85.61302015337947, 41.96360385522582], "type": "Point"}, "id": "1067", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61284532160397, 41.96363136453602, -85.61284532160397, 41.96363136453602], "geometry": {"coordinates": [-85.61284532160397, 41.96363136453602], "type": "Point"}, "id": "1068", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61266880888385, 41.9636563835913, -85.61266880888385, 41.9636563835913], "geometry": {"coordinates": [-85.61266880888385, 41.9636563835913], "type": "Point"}, "id": "1069", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61249229616374, 41.96368140263676, -85.61249229616374, 41.96368140263676], "geometry": {"coordinates": [-85.61249229616374, 41.96368140263676], "type": "Point"}, "id": "1070", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61231578344359, 41.96370642167239, -85.61231578344359, 41.96370642167239], "geometry": {"coordinates": [-85.61231578344359, 41.96370642167239], "type": "Point"}, "id": "1071", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6121368689549, 41.9637133135461, -85.6121368689549, 41.9637133135461], "geometry": {"coordinates": [-85.6121368689549, 41.9637133135461], "type": "Point"}, "id": "1072", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61195718370615, 41.963714388170146, -85.61195718370615, 41.963714388170146], "geometry": {"coordinates": [-85.61195718370615, 41.963714388170146], "type": "Point"}, "id": "1073", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61177749845741, 41.963715462794156, -85.61177749845741, 41.963715462794156], "geometry": {"coordinates": [-85.61177749845741, 41.963715462794156], "type": "Point"}, "id": "1074", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61159781320866, 41.963716537418165, -85.61159781320866, 41.963716537418165], "geometry": {"coordinates": [-85.61159781320866, 41.963716537418165], "type": "Point"}, "id": "1075", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61141812795991, 41.96371761204214, -85.61141812795991, 41.96371761204214], "geometry": {"coordinates": [-85.61141812795991, 41.96371761204214], "type": "Point"}, "id": "1076", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61123844271116, 41.9637186866661, -85.61123844271116, 41.9637186866661], "geometry": {"coordinates": [-85.61123844271116, 41.9637186866661], "type": "Point"}, "id": "1077", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61105875746242, 41.963719761290044, -85.61105875746242, 41.963719761290044], "geometry": {"coordinates": [-85.61105875746242, 41.963719761290044], "type": "Point"}, "id": "1078", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61087907221366, 41.963720835913975, -85.61087907221366, 41.963720835913975], "geometry": {"coordinates": [-85.61087907221366, 41.963720835913975], "type": "Point"}, "id": "1079", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61069938696492, 41.963721910537885, -85.61069938696492, 41.963721910537885], "geometry": {"coordinates": [-85.61069938696492, 41.963721910537885], "type": "Point"}, "id": "1080", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61051970171617, 41.96372298516177, -85.61051970171617, 41.96372298516177], "geometry": {"coordinates": [-85.61051970171617, 41.96372298516177], "type": "Point"}, "id": "1081", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61034001646742, 41.96372405978565, -85.61034001646742, 41.96372405978565], "geometry": {"coordinates": [-85.61034001646742, 41.96372405978565], "type": "Point"}, "id": "1082", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61016033121867, 41.96372513440951, -85.61016033121867, 41.96372513440951], "geometry": {"coordinates": [-85.61016033121867, 41.96372513440951], "type": "Point"}, "id": "1083", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60998064596993, 41.96372620903334, -85.60998064596993, 41.96372620903334], "geometry": {"coordinates": [-85.60998064596993, 41.96372620903334], "type": "Point"}, "id": "1084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60980096072117, 41.963727283657164, -85.60980096072117, 41.963727283657164], "geometry": {"coordinates": [-85.60980096072117, 41.963727283657164], "type": "Point"}, "id": "1085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60962127547243, 41.96372835828097, -85.60962127547243, 41.96372835828097], "geometry": {"coordinates": [-85.60962127547243, 41.96372835828097], "type": "Point"}, "id": "1086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60944159022368, 41.96372943290475, -85.60944159022368, 41.96372943290475], "geometry": {"coordinates": [-85.60944159022368, 41.96372943290475], "type": "Point"}, "id": "1087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60926190497494, 41.96373050752851, -85.60926190497494, 41.96373050752851], "geometry": {"coordinates": [-85.60926190497494, 41.96373050752851], "type": "Point"}, "id": "1088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60908221972619, 41.963731582152256, -85.60908221972619, 41.963731582152256], "geometry": {"coordinates": [-85.60908221972619, 41.963731582152256], "type": "Point"}, "id": "1089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60890253447745, 41.96373265677599, -85.60890253447745, 41.96373265677599], "geometry": {"coordinates": [-85.60890253447745, 41.96373265677599], "type": "Point"}, "id": "1090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60872284922868, 41.9637337313997, -85.60872284922868, 41.9637337313997], "geometry": {"coordinates": [-85.60872284922868, 41.9637337313997], "type": "Point"}, "id": "1091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60854316397996, 41.96373480602339, -85.60854316397996, 41.96373480602339], "geometry": {"coordinates": [-85.60854316397996, 41.96373480602339], "type": "Point"}, "id": "1092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60836347873119, 41.963735880647064, -85.60836347873119, 41.963735880647064], "geometry": {"coordinates": [-85.60836347873119, 41.963735880647064], "type": "Point"}, "id": "1093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60818379348245, 41.96373695527072, -85.60818379348245, 41.96373695527072], "geometry": {"coordinates": [-85.60818379348245, 41.96373695527072], "type": "Point"}, "id": "1094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6080041082337, 41.96373802989436, -85.6080041082337, 41.96373802989436], "geometry": {"coordinates": [-85.6080041082337, 41.96373802989436], "type": "Point"}, "id": "1095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60782442298496, 41.96373910451798, -85.60782442298496, 41.96373910451798], "geometry": {"coordinates": [-85.60782442298496, 41.96373910451798], "type": "Point"}, "id": "1096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6076447377362, 41.96374017914158, -85.6076447377362, 41.96374017914158], "geometry": {"coordinates": [-85.6076447377362, 41.96374017914158], "type": "Point"}, "id": "1097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60746505248747, 41.96374125376516, -85.60746505248747, 41.96374125376516], "geometry": {"coordinates": [-85.60746505248747, 41.96374125376516], "type": "Point"}, "id": "1098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6072853672387, 41.96374232838872, -85.6072853672387, 41.96374232838872], "geometry": {"coordinates": [-85.6072853672387, 41.96374232838872], "type": "Point"}, "id": "1099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60710568198996, 41.96374340301227, -85.60710568198996, 41.96374340301227], "geometry": {"coordinates": [-85.60710568198996, 41.96374340301227], "type": "Point"}, "id": "1100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60692599674121, 41.9637444776358, -85.60692599674121, 41.9637444776358], "geometry": {"coordinates": [-85.60692599674121, 41.9637444776358], "type": "Point"}, "id": "1101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60674631149247, 41.96374555225931, -85.60674631149247, 41.96374555225931], "geometry": {"coordinates": [-85.60674631149247, 41.96374555225931], "type": "Point"}, "id": "1102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60656662624372, 41.96374662688281, -85.60656662624372, 41.96374662688281], "geometry": {"coordinates": [-85.60656662624372, 41.96374662688281], "type": "Point"}, "id": "1103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60638694099498, 41.96374770150628, -85.60638694099498, 41.96374770150628], "geometry": {"coordinates": [-85.60638694099498, 41.96374770150628], "type": "Point"}, "id": "1104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60620725574623, 41.963748776129734, -85.60620725574623, 41.963748776129734], "geometry": {"coordinates": [-85.60620725574623, 41.963748776129734], "type": "Point"}, "id": "1105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60602757049749, 41.963749850753175, -85.60602757049749, 41.963749850753175], "geometry": {"coordinates": [-85.60602757049749, 41.963749850753175], "type": "Point"}, "id": "1106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60584788524874, 41.963750925376594, -85.60584788524874, 41.963750925376594], "geometry": {"coordinates": [-85.60584788524874, 41.963750925376594], "type": "Point"}, "id": "1107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.62155999999999, 41.948333000000005, -85.62155999999999, 41.948333000000005], "geometry": {"coordinates": [-85.62155999999999, 41.948333000000005], "type": "Point"}, "id": "1108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62174688888791, 41.948333046683324, -85.62174688888791, 41.948333046683324], "geometry": {"coordinates": [-85.62174688888791, 41.948333046683324], "type": "Point"}, "id": "1109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62193377777582, 41.94833309336664, -85.62193377777582, 41.94833309336664], "geometry": {"coordinates": [-85.62193377777582, 41.94833309336664], "type": "Point"}, "id": "1110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62212066666375, 41.94833314004997, -85.62212066666375, 41.94833314004997], "geometry": {"coordinates": [-85.62212066666375, 41.94833314004997], "type": "Point"}, "id": "1111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62230755555166, 41.94833318673328, -85.62230755555166, 41.94833318673328], "geometry": {"coordinates": [-85.62230755555166, 41.94833318673328], "type": "Point"}, "id": "1112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62249444443957, 41.948333233416605, -85.62249444443957, 41.948333233416605], "geometry": {"coordinates": [-85.62249444443957, 41.948333233416605], "type": "Point"}, "id": "1113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62268133332748, 41.948333280099924, -85.62268133332748, 41.948333280099924], "geometry": {"coordinates": [-85.62268133332748, 41.948333280099924], "type": "Point"}, "id": "1114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62286822221627, 41.94833332478554, -85.62286822221627, 41.94833332478554], "geometry": {"coordinates": [-85.62286822221627, 41.94833332478554], "type": "Point"}, "id": "1115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.6230551111057, 41.94833336798686, -85.6230551111057, 41.94833336798686], "geometry": {"coordinates": [-85.6230551111057, 41.94833336798686], "type": "Point"}, "id": "1116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62324199999513, 41.94833341118817, -85.62324199999513, 41.94833341118817], "geometry": {"coordinates": [-85.62324199999513, 41.94833341118817], "type": "Point"}, "id": "1117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62342888888456, 41.94833345438949, -85.62342888888456, 41.94833345438949], "geometry": {"coordinates": [-85.62342888888456, 41.94833345438949], "type": "Point"}, "id": "1118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62361577777399, 41.9483334975908, -85.62361577777399, 41.9483334975908], "geometry": {"coordinates": [-85.62361577777399, 41.9483334975908], "type": "Point"}, "id": "1119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62380266666341, 41.94833354079211, -85.62380266666341, 41.94833354079211], "geometry": {"coordinates": [-85.62380266666341, 41.94833354079211], "type": "Point"}, "id": "1120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62398955555284, 41.94833358399343, -85.62398955555284, 41.94833358399343], "geometry": {"coordinates": [-85.62398955555284, 41.94833358399343], "type": "Point"}, "id": "1121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62417644444227, 41.94833362719474, -85.62417644444227, 41.94833362719474], "geometry": {"coordinates": [-85.62417644444227, 41.94833362719474], "type": "Point"}, "id": "1122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.6243633333317, 41.94833367039606, -85.6243633333317, 41.94833367039606], "geometry": {"coordinates": [-85.6243633333317, 41.94833367039606], "type": "Point"}, "id": "1123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62455022222113, 41.94833371359738, -85.62455022222113, 41.94833371359738], "geometry": {"coordinates": [-85.62455022222113, 41.94833371359738], "type": "Point"}, "id": "1124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.62473711111056, 41.94833375679869, -85.62473711111056, 41.94833375679869], "geometry": {"coordinates": [-85.62473711111056, 41.94833375679869], "type": "Point"}, "id": "1125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965699}, "type": "Feature"}, {"bbox": [-85.6344386, 41.9456229, -85.6344386, 41.9456229], "geometry": {"coordinates": [-85.6344386, 41.9456229], "type": "Point"}, "id": "1126", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63431424253231, 41.9457186800064, -85.63431424253231, 41.9457186800064], "geometry": {"coordinates": [-85.63431424253231, 41.9457186800064], "type": "Point"}, "id": "1127", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63422234451873, 41.94583387333, -85.63422234451873, 41.94583387333], "geometry": {"coordinates": [-85.63422234451873, 41.94583387333], "type": "Point"}, "id": "1128", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63413044650515, 41.945949066445465, -85.63413044650515, 41.945949066445465], "geometry": {"coordinates": [-85.63413044650515, 41.945949066445465], "type": "Point"}, "id": "1129", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63403854849157, 41.9460642593528, -85.63403854849157, 41.9460642593528], "geometry": {"coordinates": [-85.63403854849157, 41.9460642593528], "type": "Point"}, "id": "1130", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6339471845241, 41.94617966895795, -85.6339471845241, 41.94617966895795], "geometry": {"coordinates": [-85.6339471845241, 41.94617966895795], "type": "Point"}, "id": "1131", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63386656999802, 41.94629944429483, -85.63386656999802, 41.94629944429483], "geometry": {"coordinates": [-85.63386656999802, 41.94629944429483], "type": "Point"}, "id": "1132", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63378595547194, 41.94641921940668, -85.63378595547194, 41.94641921940668], "geometry": {"coordinates": [-85.63378595547194, 41.94641921940668], "type": "Point"}, "id": "1133", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63370534094584, 41.9465389942935, -85.63370534094584, 41.9465389942935], "geometry": {"coordinates": [-85.63370534094584, 41.9465389942935], "type": "Point"}, "id": "1134", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63362472298519, 41.94665876767645, -85.63362472298519, 41.94665876767645], "geometry": {"coordinates": [-85.63362472298519, 41.94665876767645], "type": "Point"}, "id": "1135", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63354410231634, 41.94677853982602, -85.63354410231634, 41.94677853982602], "geometry": {"coordinates": [-85.63354410231634, 41.94677853982602], "type": "Point"}, "id": "1136", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63346348164748, 41.946898311750566, -85.63346348164748, 41.946898311750566], "geometry": {"coordinates": [-85.63346348164748, 41.946898311750566], "type": "Point"}, "id": "1137", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63338286097863, 41.94701808345009, -85.63338286097863, 41.94701808345009], "geometry": {"coordinates": [-85.63338286097863, 41.94701808345009], "type": "Point"}, "id": "1138", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63330224030977, 41.9471378549246, -85.63330224030977, 41.9471378549246], "geometry": {"coordinates": [-85.63330224030977, 41.9471378549246], "type": "Point"}, "id": "1139", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63322161964092, 41.94725762617409, -85.63322161964092, 41.94725762617409], "geometry": {"coordinates": [-85.63322161964092, 41.94725762617409], "type": "Point"}, "id": "1140", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63313980970001, 41.947376946467294, -85.63313980970001, 41.947376946467294], "geometry": {"coordinates": [-85.63313980970001, 41.947376946467294], "type": "Point"}, "id": "1141", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63305690623206, 41.947495852093795, -85.63305690623206, 41.947495852093795], "geometry": {"coordinates": [-85.63305690623206, 41.947495852093795], "type": "Point"}, "id": "1142", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6329740027641, 41.94761475749851, -85.6329740027641, 41.94761475749851], "geometry": {"coordinates": [-85.6329740027641, 41.94761475749851], "type": "Point"}, "id": "1143", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63289109929615, 41.94773366268145, -85.63289109929615, 41.94773366268145], "geometry": {"coordinates": [-85.63289109929615, 41.94773366268145], "type": "Point"}, "id": "1144", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6328081958282, 41.94785256764263, -85.6328081958282, 41.94785256764263], "geometry": {"coordinates": [-85.6328081958282, 41.94785256764263], "type": "Point"}, "id": "1145", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63272529236025, 41.94797147238201, -85.63272529236025, 41.94797147238201], "geometry": {"coordinates": [-85.63272529236025, 41.94797147238201], "type": "Point"}, "id": "1146", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6326423888923, 41.94809037689962, -85.6326423888923, 41.94809037689962], "geometry": {"coordinates": [-85.6326423888923, 41.94809037689962], "type": "Point"}, "id": "1147", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63255948542434, 41.94820928119545, -85.63255948542434, 41.94820928119545], "geometry": {"coordinates": [-85.63255948542434, 41.94820928119545], "type": "Point"}, "id": "1148", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63247658195641, 41.94832818526951, -85.63247658195641, 41.94832818526951], "geometry": {"coordinates": [-85.63247658195641, 41.94832818526951], "type": "Point"}, "id": "1149", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63239367848846, 41.94844708912178, -85.63239367848846, 41.94844708912178], "geometry": {"coordinates": [-85.63239367848846, 41.94844708912178], "type": "Point"}, "id": "1150", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63231077502051, 41.94856599275228, -85.63231077502051, 41.94856599275228], "geometry": {"coordinates": [-85.63231077502051, 41.94856599275228], "type": "Point"}, "id": "1151", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63223126671876, 41.948686150321215, -85.63223126671876, 41.948686150321215], "geometry": {"coordinates": [-85.63223126671876, 41.948686150321215], "type": "Point"}, "id": "1152", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63215397824719, 41.94880712765813, -85.63215397824719, 41.94880712765813], "geometry": {"coordinates": [-85.63215397824719, 41.94880712765813], "type": "Point"}, "id": "1153", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63207668977564, 41.94892810476546, -85.63207668977564, 41.94892810476546], "geometry": {"coordinates": [-85.63207668977564, 41.94892810476546], "type": "Point"}, "id": "1154", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63199738733316, 41.94904833178282, -85.63199738733316, 41.94904833178282], "geometry": {"coordinates": [-85.63199738733316, 41.94904833178282], "type": "Point"}, "id": "1155", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63191347480311, 41.94916684210598, -85.63191347480311, 41.94916684210598], "geometry": {"coordinates": [-85.63191347480311, 41.94916684210598], "type": "Point"}, "id": "1156", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63182956227307, 41.94928535220883, -85.63182956227307, 41.94928535220883], "geometry": {"coordinates": [-85.63182956227307, 41.94928535220883], "type": "Point"}, "id": "1157", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63174564974304, 41.94940386209135, -85.63174564974304, 41.94940386209135], "geometry": {"coordinates": [-85.63174564974304, 41.94940386209135], "type": "Point"}, "id": "1158", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63166173721301, 41.94952237175357, -85.63166173721301, 41.94952237175357], "geometry": {"coordinates": [-85.63166173721301, 41.94952237175357], "type": "Point"}, "id": "1159", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63157782468296, 41.94964088119545, -85.63157782468296, 41.94964088119545], "geometry": {"coordinates": [-85.63157782468296, 41.94964088119545], "type": "Point"}, "id": "1160", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63149391215293, 41.94975939041702, -85.63149391215293, 41.94975939041702], "geometry": {"coordinates": [-85.63149391215293, 41.94975939041702], "type": "Point"}, "id": "1161", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63140999962289, 41.94987789941827, -85.63140999962289, 41.94987789941827], "geometry": {"coordinates": [-85.63140999962289, 41.94987789941827], "type": "Point"}, "id": "1162", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63132399380548, 41.94999556971693, -85.63132399380548, 41.94999556971693], "geometry": {"coordinates": [-85.63132399380548, 41.94999556971693], "type": "Point"}, "id": "1163", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63123712496724, 41.95011289411098, -85.63123712496724, 41.95011289411098], "geometry": {"coordinates": [-85.63123712496724, 41.95011289411098], "type": "Point"}, "id": "1164", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63115025634647, 41.95023021837813, -85.63115025634647, 41.95023021837813], "geometry": {"coordinates": [-85.63115025634647, 41.95023021837813], "type": "Point"}, "id": "1165", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63106338772566, 41.95034754242935, -85.63106338772566, 41.95034754242935], "geometry": {"coordinates": [-85.63106338772566, 41.95034754242935], "type": "Point"}, "id": "1166", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63097651910489, 41.95046486626462, -85.63097651910489, 41.95046486626462], "geometry": {"coordinates": [-85.63097651910489, 41.95046486626462], "type": "Point"}, "id": "1167", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6308896504841, 41.95058218988397, -85.6308896504841, 41.95058218988397], "geometry": {"coordinates": [-85.6308896504841, 41.95058218988397], "type": "Point"}, "id": "1168", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63080597908242, 41.95070074040839, -85.63080597908242, 41.95070074040839], "geometry": {"coordinates": [-85.63080597908242, 41.95070074040839], "type": "Point"}, "id": "1169", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63072773101025, 41.95082137223032, -85.63072773101025, 41.95082137223032], "geometry": {"coordinates": [-85.63072773101025, 41.95082137223032], "type": "Point"}, "id": "1170", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63064948293807, 41.95094200382396, -85.63064948293807, 41.95094200382396], "geometry": {"coordinates": [-85.63064948293807, 41.95094200382396], "type": "Point"}, "id": "1171", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6305712348659, 41.95106263518932, -85.6305712348659, 41.95106263518932], "geometry": {"coordinates": [-85.6305712348659, 41.95106263518932], "type": "Point"}, "id": "1172", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63049298679374, 41.951183266326375, -85.63049298679374, 41.951183266326375], "geometry": {"coordinates": [-85.63049298679374, 41.951183266326375], "type": "Point"}, "id": "1173", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63040903387089, 41.951301747051964, -85.63040903387089, 41.951301747051964], "geometry": {"coordinates": [-85.63040903387089, 41.951301747051964], "type": "Point"}, "id": "1174", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6303244951346, 41.951420006762085, -85.6303244951346, 41.951420006762085], "geometry": {"coordinates": [-85.6303244951346, 41.951420006762085], "type": "Point"}, "id": "1175", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63023995639834, 41.9515382662528, -85.63023995639834, 41.9515382662528], "geometry": {"coordinates": [-85.63023995639834, 41.9515382662528], "type": "Point"}, "id": "1176", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63015541766208, 41.95165652552411, -85.63015541766208, 41.95165652552411], "geometry": {"coordinates": [-85.63015541766208, 41.95165652552411], "type": "Point"}, "id": "1177", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63007087892579, 41.95177478457602, -85.63007087892579, 41.95177478457602], "geometry": {"coordinates": [-85.63007087892579, 41.95177478457602], "type": "Point"}, "id": "1178", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62998634018952, 41.95189304340851, -85.62998634018952, 41.95189304340851], "geometry": {"coordinates": [-85.62998634018952, 41.95189304340851], "type": "Point"}, "id": "1179", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62990180145326, 41.9520113020216, -85.62990180145326, 41.9520113020216], "geometry": {"coordinates": [-85.62990180145326, 41.9520113020216], "type": "Point"}, "id": "1180", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62981726271698, 41.952129560415294, -85.62981726271698, 41.952129560415294], "geometry": {"coordinates": [-85.62981726271698, 41.952129560415294], "type": "Point"}, "id": "1181", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62973272398071, 41.95224781858957, -85.62973272398071, 41.95224781858957], "geometry": {"coordinates": [-85.62973272398071, 41.95224781858957], "type": "Point"}, "id": "1182", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62964818524443, 41.95236607654445, -85.62964818524443, 41.95236607654445], "geometry": {"coordinates": [-85.62964818524443, 41.95236607654445], "type": "Point"}, "id": "1183", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62956252826143, 41.95248388314121, -85.62956252826143, 41.95248388314121], "geometry": {"coordinates": [-85.62956252826143, 41.95248388314121], "type": "Point"}, "id": "1184", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62947533056928, 41.95260106794698, -85.62947533056928, 41.95260106794698], "geometry": {"coordinates": [-85.62947533056928, 41.95260106794698], "type": "Point"}, "id": "1185", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62938813287712, 41.952718252537316, -85.62938813287712, 41.952718252537316], "geometry": {"coordinates": [-85.62938813287712, 41.952718252537316], "type": "Point"}, "id": "1186", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62930093518499, 41.952835436912196, -85.62930093518499, 41.952835436912196], "geometry": {"coordinates": [-85.62930093518499, 41.952835436912196], "type": "Point"}, "id": "1187", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62921373749285, 41.952952621071645, -85.62921373749285, 41.952952621071645], "geometry": {"coordinates": [-85.62921373749285, 41.952952621071645], "type": "Point"}, "id": "1188", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6291265398007, 41.95306980501564, -85.6291265398007, 41.95306980501564], "geometry": {"coordinates": [-85.6291265398007, 41.95306980501564], "type": "Point"}, "id": "1189", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62903934210856, 41.95318698874419, -85.62903934210856, 41.95318698874419], "geometry": {"coordinates": [-85.62903934210856, 41.95318698874419], "type": "Point"}, "id": "1190", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62895214441642, 41.9533041722573, -85.62895214441642, 41.9533041722573], "geometry": {"coordinates": [-85.62895214441642, 41.9533041722573], "type": "Point"}, "id": "1191", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62886494672425, 41.953421355554966, -85.62886494672425, 41.953421355554966], "geometry": {"coordinates": [-85.62886494672425, 41.953421355554966], "type": "Point"}, "id": "1192", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62877774903212, 41.95353853863719, -85.62877774903212, 41.95353853863719], "geometry": {"coordinates": [-85.62877774903212, 41.95353853863719], "type": "Point"}, "id": "1193", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62869055133997, 41.95365572150397, -85.62869055133997, 41.95365572150397], "geometry": {"coordinates": [-85.62869055133997, 41.95365572150397], "type": "Point"}, "id": "1194", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6286040149232, 41.95377317302239, -85.6286040149232, 41.95377317302239], "geometry": {"coordinates": [-85.6286040149232, 41.95377317302239], "type": "Point"}, "id": "1195", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62851843483512, 41.95389101315613, -85.62851843483512, 41.95389101315613], "geometry": {"coordinates": [-85.62851843483512, 41.95389101315613], "type": "Point"}, "id": "1196", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62843285474706, 41.954008853072, -85.62843285474706, 41.954008853072], "geometry": {"coordinates": [-85.62843285474706, 41.954008853072], "type": "Point"}, "id": "1197", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.628347274659, 41.95412669277, -85.628347274659, 41.95412669277], "geometry": {"coordinates": [-85.628347274659, 41.95412669277], "type": "Point"}, "id": "1198", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62826169457092, 41.95424453225012, -85.62826169457092, 41.95424453225012], "geometry": {"coordinates": [-85.62826169457092, 41.95424453225012], "type": "Point"}, "id": "1199", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62817611448287, 41.95436237151238, -85.62817611448287, 41.95436237151238], "geometry": {"coordinates": [-85.62817611448287, 41.95436237151238], "type": "Point"}, "id": "1200", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62809053439483, 41.95448021055676, -85.62809053439483, 41.95448021055676], "geometry": {"coordinates": [-85.62809053439483, 41.95448021055676], "type": "Point"}, "id": "1201", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62800495430675, 41.954598049383286, -85.62800495430675, 41.954598049383286], "geometry": {"coordinates": [-85.62800495430675, 41.954598049383286], "type": "Point"}, "id": "1202", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62792245794279, 41.954716985621594, -85.62792245794279, 41.954716985621594], "geometry": {"coordinates": [-85.62792245794279, 41.954716985621594], "type": "Point"}, "id": "1203", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62785274006596, 41.95484046942101, -85.62785274006596, 41.95484046942101], "geometry": {"coordinates": [-85.62785274006596, 41.95484046942101], "type": "Point"}, "id": "1204", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62778302218913, 41.95496395298116, -85.62778302218913, 41.95496395298116], "geometry": {"coordinates": [-85.62778302218913, 41.95496395298116], "type": "Point"}, "id": "1205", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62771330431231, 41.95508743630208, -85.62771330431231, 41.95508743630208], "geometry": {"coordinates": [-85.62771330431231, 41.95508743630208], "type": "Point"}, "id": "1206", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6276435864355, 41.955210919383745, -85.6276435864355, 41.955210919383745], "geometry": {"coordinates": [-85.6276435864355, 41.955210919383745], "type": "Point"}, "id": "1207", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62757386956784, 41.95533440254125, -85.62757386956784, 41.95533440254125], "geometry": {"coordinates": [-85.62757386956784, 41.95533440254125], "type": "Point"}, "id": "1208", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62750416034353, 41.95545788784592, -85.62750416034353, 41.95545788784592], "geometry": {"coordinates": [-85.62750416034353, 41.95545788784592], "type": "Point"}, "id": "1209", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62743445111923, 41.95558137291132, -85.62743445111923, 41.95558137291132], "geometry": {"coordinates": [-85.62743445111923, 41.95558137291132], "type": "Point"}, "id": "1210", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62736474189492, 41.95570485773748, -85.62736474189492, 41.95570485773748], "geometry": {"coordinates": [-85.62736474189492, 41.95570485773748], "type": "Point"}, "id": "1211", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62729503267062, 41.95582834232437, -85.62729503267062, 41.95582834232437], "geometry": {"coordinates": [-85.62729503267062, 41.95582834232437], "type": "Point"}, "id": "1212", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62721971964318, 41.95594993534706, -85.62721971964318, 41.95594993534706], "geometry": {"coordinates": [-85.62721971964318, 41.95594993534706], "type": "Point"}, "id": "1213", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62714063736051, 41.95607025598868, -85.62714063736051, 41.95607025598868], "geometry": {"coordinates": [-85.62714063736051, 41.95607025598868], "type": "Point"}, "id": "1214", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62706155507784, 41.956190576403145, -85.62706155507784, 41.956190576403145], "geometry": {"coordinates": [-85.62706155507784, 41.956190576403145], "type": "Point"}, "id": "1215", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62698247279518, 41.956310896590445, -85.62698247279518, 41.956310896590445], "geometry": {"coordinates": [-85.62698247279518, 41.956310896590445], "type": "Point"}, "id": "1216", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62690339051251, 41.95643121655059, -85.62690339051251, 41.95643121655059], "geometry": {"coordinates": [-85.62690339051251, 41.95643121655059], "type": "Point"}, "id": "1217", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62682453329407, 41.956551617110875, -85.62682453329407, 41.956551617110875], "geometry": {"coordinates": [-85.62682453329407, 41.956551617110875], "type": "Point"}, "id": "1218", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6267469864622, 41.95667248804176, -85.6267469864622, 41.95667248804176], "geometry": {"coordinates": [-85.6267469864622, 41.95667248804176], "type": "Point"}, "id": "1219", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62666943963032, 41.9567933587434, -85.62666943963032, 41.9567933587434], "geometry": {"coordinates": [-85.62666943963032, 41.9567933587434], "type": "Point"}, "id": "1220", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62659189279842, 41.95691422921578, -85.62659189279842, 41.95691422921578], "geometry": {"coordinates": [-85.62659189279842, 41.95691422921578], "type": "Point"}, "id": "1221", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62651434596653, 41.957035099458935, -85.62651434596653, 41.957035099458935], "geometry": {"coordinates": [-85.62651434596653, 41.957035099458935], "type": "Point"}, "id": "1222", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62643679913465, 41.957155969472836, -85.62643679913465, 41.957155969472836], "geometry": {"coordinates": [-85.62643679913465, 41.957155969472836], "type": "Point"}, "id": "1223", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62634945259325, 41.9572730724043, -85.62634945259325, 41.9572730724043], "geometry": {"coordinates": [-85.62634945259325, 41.9572730724043], "type": "Point"}, "id": "1224", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62627353899668, 41.95739444156387, -85.62627353899668, 41.95739444156387], "geometry": {"coordinates": [-85.62627353899668, 41.95739444156387], "type": "Point"}, "id": "1225", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62619984290957, 41.95751663592861, -85.62619984290957, 41.95751663592861], "geometry": {"coordinates": [-85.62619984290957, 41.95751663592861], "type": "Point"}, "id": "1226", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6261261468225, 41.95763883005906, -85.6261261468225, 41.95763883005906], "geometry": {"coordinates": [-85.6261261468225, 41.95763883005906], "type": "Point"}, "id": "1227", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62605245073541, 41.9577610239552, -85.62605245073541, 41.9577610239552], "geometry": {"coordinates": [-85.62605245073541, 41.9577610239552], "type": "Point"}, "id": "1228", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62597875464833, 41.95788321761705, -85.62597875464833, 41.95788321761705], "geometry": {"coordinates": [-85.62597875464833, 41.95788321761705], "type": "Point"}, "id": "1229", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62590505856123, 41.9580054110446, -85.62590505856123, 41.9580054110446], "geometry": {"coordinates": [-85.62590505856123, 41.9580054110446], "type": "Point"}, "id": "1230", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62583136247414, 41.95812760423786, -85.62583136247414, 41.95812760423786], "geometry": {"coordinates": [-85.62583136247414, 41.95812760423786], "type": "Point"}, "id": "1231", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62575766638706, 41.9582497971968, -85.62575766638706, 41.9582497971968], "geometry": {"coordinates": [-85.62575766638706, 41.9582497971968], "type": "Point"}, "id": "1232", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62568397029996, 41.95837198992146, -85.62568397029996, 41.95837198992146], "geometry": {"coordinates": [-85.62568397029996, 41.95837198992146], "type": "Point"}, "id": "1233", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62561026171082, 41.95849417824173, -85.62561026171082, 41.95849417824173], "geometry": {"coordinates": [-85.62561026171082, 41.95849417824173], "type": "Point"}, "id": "1234", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62553655147644, 41.958616365778944, -85.62553655147644, 41.958616365778944], "geometry": {"coordinates": [-85.62553655147644, 41.958616365778944], "type": "Point"}, "id": "1235", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6254630832967, 41.95873863362238, -85.6254630832967, 41.95873863362238], "geometry": {"coordinates": [-85.6254630832967, 41.95873863362238], "type": "Point"}, "id": "1236", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62538968685574, 41.95886092510133, -85.62538968685574, 41.95886092510133], "geometry": {"coordinates": [-85.62538968685574, 41.95886092510133], "type": "Point"}, "id": "1237", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62531629041476, 41.95898321634559, -85.62531629041476, 41.95898321634559], "geometry": {"coordinates": [-85.62531629041476, 41.95898321634559], "type": "Point"}, "id": "1238", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62524289392297, 41.959105507338286, -85.62524289392297, 41.959105507338286], "geometry": {"coordinates": [-85.62524289392297, 41.959105507338286], "type": "Point"}, "id": "1239", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62516949679176, 41.9592277978841, -85.62516949679176, 41.9592277978841], "geometry": {"coordinates": [-85.62516949679176, 41.9592277978841], "type": "Point"}, "id": "1240", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62509609966055, 41.95935008819522, -85.62509609966055, 41.95935008819522], "geometry": {"coordinates": [-85.62509609966055, 41.95935008819522], "type": "Point"}, "id": "1241", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62502270252934, 41.95947237827167, -85.62502270252934, 41.95947237827167], "geometry": {"coordinates": [-85.62502270252934, 41.95947237827167], "type": "Point"}, "id": "1242", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62494930539812, 41.95959466811344, -85.62494930539812, 41.95959466811344], "geometry": {"coordinates": [-85.62494930539812, 41.95959466811344], "type": "Point"}, "id": "1243", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62487590826689, 41.959716957720524, -85.62487590826689, 41.959716957720524], "geometry": {"coordinates": [-85.62487590826689, 41.959716957720524], "type": "Point"}, "id": "1244", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62480251113567, 41.95983924709293, -85.62480251113567, 41.95983924709293], "geometry": {"coordinates": [-85.62480251113567, 41.95983924709293], "type": "Point"}, "id": "1245", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62472911400447, 41.959961536230644, -85.62472911400447, 41.959961536230644], "geometry": {"coordinates": [-85.62472911400447, 41.959961536230644], "type": "Point"}, "id": "1246", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62465571687325, 41.96008382513369, -85.62465571687325, 41.96008382513369], "geometry": {"coordinates": [-85.62465571687325, 41.96008382513369], "type": "Point"}, "id": "1247", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62457994832032, 41.9602052958562, -85.62457994832032, 41.9602052958562], "geometry": {"coordinates": [-85.62457994832032, 41.9602052958562], "type": "Point"}, "id": "1248", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62450180597847, 41.96032594758634, -85.62450180597847, 41.96032594758634], "geometry": {"coordinates": [-85.62450180597847, 41.96032594758634], "type": "Point"}, "id": "1249", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62442219426858, 41.96044606605879, -85.62442219426858, 41.96044606605879], "geometry": {"coordinates": [-85.62442219426858, 41.96044606605879], "type": "Point"}, "id": "1250", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62434234899477, 41.960566097932805, -85.62434234899477, 41.960566097932805], "geometry": {"coordinates": [-85.62434234899477, 41.960566097932805], "type": "Point"}, "id": "1251", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62425680892031, 41.960683938655905, -85.62425680892031, 41.960683938655905], "geometry": {"coordinates": [-85.62425680892031, 41.960683938655905], "type": "Point"}, "id": "1252", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62417282266559, 41.96080239845919, -85.62417282266559, 41.96080239845919], "geometry": {"coordinates": [-85.62417282266559, 41.96080239845919], "type": "Point"}, "id": "1253", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62408883641083, 41.96092085804224, -85.62408883641083, 41.96092085804224], "geometry": {"coordinates": [-85.62408883641083, 41.96092085804224], "type": "Point"}, "id": "1254", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62400485015608, 41.96103931740508, -85.62400485015608, 41.96103931740508], "geometry": {"coordinates": [-85.62400485015608, 41.96103931740508], "type": "Point"}, "id": "1255", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62392086390135, 41.9611577765477, -85.62392086390135, 41.9611577765477], "geometry": {"coordinates": [-85.62392086390135, 41.9611577765477], "type": "Point"}, "id": "1256", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6238368776466, 41.961276235470095, -85.6238368776466, 41.961276235470095], "geometry": {"coordinates": [-85.6238368776466, 41.961276235470095], "type": "Point"}, "id": "1257", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62375289139186, 41.96139469417228, -85.62375289139186, 41.96139469417228], "geometry": {"coordinates": [-85.62375289139186, 41.96139469417228], "type": "Point"}, "id": "1258", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62366890513711, 41.96151315265423, -85.62366890513711, 41.96151315265423], "geometry": {"coordinates": [-85.62366890513711, 41.96151315265423], "type": "Point"}, "id": "1259", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62358491888237, 41.96163161091595, -85.62358491888237, 41.96163161091595], "geometry": {"coordinates": [-85.62358491888237, 41.96163161091595], "type": "Point"}, "id": "1260", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62350093262762, 41.961750068957464, -85.62350093262762, 41.961750068957464], "geometry": {"coordinates": [-85.62350093262762, 41.961750068957464], "type": "Point"}, "id": "1261", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6234169463729, 41.96186852677875, -85.6234169463729, 41.96186852677875], "geometry": {"coordinates": [-85.6234169463729, 41.96186852677875], "type": "Point"}, "id": "1262", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6528255, 41.927054399999996, -85.6528255, 41.927054399999996], "geometry": {"coordinates": [-85.6528255, 41.927054399999996], "type": "Point"}, "id": "1263", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.6530072202104, 41.927076150145744, -85.6530072202104, 41.927076150145744], "geometry": {"coordinates": [-85.6530072202104, 41.927076150145744], "type": "Point"}, "id": "1264", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.6531889404208, 41.927097900284075, -85.6531889404208, 41.927097900284075], "geometry": {"coordinates": [-85.6531889404208, 41.927097900284075], "type": "Point"}, "id": "1265", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65336958581872, 41.9271238147731, -85.65336958581872, 41.9271238147731], "geometry": {"coordinates": [-85.65336958581872, 41.9271238147731], "type": "Point"}, "id": "1266", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65354665535628, 41.92716088484913, -85.65354665535628, 41.92716088484913], "geometry": {"coordinates": [-85.65354665535628, 41.92716088484913], "type": "Point"}, "id": "1267", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.6537205694725, 41.927205714799754, -85.6537205694725, 41.927205714799754], "geometry": {"coordinates": [-85.6537205694725, 41.927205714799754], "type": "Point"}, "id": "1268", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65389498713377, 41.92724944842573, -85.65389498713377, 41.92724944842573], "geometry": {"coordinates": [-85.65389498713377, 41.92724944842573], "type": "Point"}, "id": "1269", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65406911956666, 41.927293073388455, -85.65406911956666, 41.927293073388455], "geometry": {"coordinates": [-85.65406911956666, 41.927293073388455], "type": "Point"}, "id": "1270", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65425202506559, 41.92730496823976, -85.65425202506559, 41.92730496823976], "geometry": {"coordinates": [-85.65425202506559, 41.92730496823976], "type": "Point"}, "id": "1271", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65443492751534, 41.92729292347585, -85.65443492751534, 41.92729292347585], "geometry": {"coordinates": [-85.65443492751534, 41.92729292347585], "type": "Point"}, "id": "1272", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65461256442212, 41.92725798573471, -85.65461256442212, 41.92725798573471], "geometry": {"coordinates": [-85.65461256442212, 41.92725798573471], "type": "Point"}, "id": "1273", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65478073690161, 41.92720282431522, -85.65478073690161, 41.92720282431522], "geometry": {"coordinates": [-85.65478073690161, 41.92720282431522], "type": "Point"}, "id": "1274", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65494558373848, 41.92714226508136, -85.65494558373848, 41.92714226508136], "geometry": {"coordinates": [-85.65494558373848, 41.92714226508136], "type": "Point"}, "id": "1275", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65509933632877, 41.927066988998064, -85.65509933632877, 41.927066988998064], "geometry": {"coordinates": [-85.65509933632877, 41.927066988998064], "type": "Point"}, "id": "1276", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65525308891905, 41.92699171282595, -85.65525308891905, 41.92699171282595], "geometry": {"coordinates": [-85.65525308891905, 41.92699171282595], "type": "Point"}, "id": "1277", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65540696470659, 41.92691657658203, -85.65540696470659, 41.92691657658203], "geometry": {"coordinates": [-85.65540696470659, 41.92691657658203], "type": "Point"}, "id": "1278", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65556120123061, 41.92684185023688, -85.65556120123061, 41.92684185023688], "geometry": {"coordinates": [-85.65556120123061, 41.92684185023688], "type": "Point"}, "id": "1279", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.6557176135505, 41.926769756243864, -85.6557176135505, 41.926769756243864], "geometry": {"coordinates": [-85.6557176135505, 41.926769756243864], "type": "Point"}, "id": "1280", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65587704757766, 41.92670133758709, -85.65587704757766, 41.92670133758709], "geometry": {"coordinates": [-85.65587704757766, 41.92670133758709], "type": "Point"}, "id": "1281", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65603757235692, 41.92663434170418, -85.65603757235692, 41.92663434170418], "geometry": {"coordinates": [-85.65603757235692, 41.92663434170418], "type": "Point"}, "id": "1282", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.6562015501627, 41.92657215854913, -85.6562015501627, 41.92657215854913], "geometry": {"coordinates": [-85.6562015501627, 41.92657215854913], "type": "Point"}, "id": "1283", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65636702029784, 41.92651223662229, -85.65636702029784, 41.92651223662229], "geometry": {"coordinates": [-85.65636702029784, 41.92651223662229], "type": "Point"}, "id": "1284", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65653390891504, 41.92645448616902, -85.65653390891504, 41.92645448616902], "geometry": {"coordinates": [-85.65653390891504, 41.92645448616902], "type": "Point"}, "id": "1285", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.6567023151736, 41.92639932659126, -85.6567023151736, 41.92639932659126], "geometry": {"coordinates": [-85.6567023151736, 41.92639932659126], "type": "Point"}, "id": "1286", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65687278633557, 41.926347692185864, -85.65687278633557, 41.926347692185864], "geometry": {"coordinates": [-85.65687278633557, 41.926347692185864], "type": "Point"}, "id": "1287", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65704325749753, 41.92629605773869, -85.65704325749753, 41.92629605773869], "geometry": {"coordinates": [-85.65704325749753, 41.92629605773869], "type": "Point"}, "id": "1288", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65721375897651, 41.92624447882987, -85.65721375897651, 41.92624447882987], "geometry": {"coordinates": [-85.65721375897651, 41.92624447882987], "type": "Point"}, "id": "1289", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65738438246335, 41.92619312355633, -85.65738438246335, 41.92619312355633], "geometry": {"coordinates": [-85.65738438246335, 41.92619312355633], "type": "Point"}, "id": "1290", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65755500595014, 41.92614176824144, -85.65755500595014, 41.92614176824144], "geometry": {"coordinates": [-85.65755500595014, 41.92614176824144], "type": "Point"}, "id": "1291", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65772336005845, 41.926086634823335, -85.65772336005845, 41.926086634823335], "geometry": {"coordinates": [-85.65772336005845, 41.926086634823335], "type": "Point"}, "id": "1292", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65789433406724, 41.926035928839504, -85.65789433406724, 41.926035928839504], "geometry": {"coordinates": [-85.65789433406724, 41.926035928839504], "type": "Point"}, "id": "1293", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65806530807602, 41.92598522281538, -85.65806530807602, 41.92598522281538], "geometry": {"coordinates": [-85.65806530807602, 41.92598522281538], "type": "Point"}, "id": "1294", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.6582362820848, 41.92593451675094, -85.6582362820848, 41.92593451675094], "geometry": {"coordinates": [-85.6582362820848, 41.92593451675094], "type": "Point"}, "id": "1295", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65840643161145, 41.92588235759762, -85.65840643161145, 41.92588235759762], "geometry": {"coordinates": [-85.65840643161145, 41.92588235759762], "type": "Point"}, "id": "1296", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65857503974945, 41.925827460418276, -85.65857503974945, 41.925827460418276], "geometry": {"coordinates": [-85.65857503974945, 41.925827460418276], "type": "Point"}, "id": "1297", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.65874481987473, 41.92577458023106, -85.65874481987473, 41.92577458023106], "geometry": {"coordinates": [-85.65874481987473, 41.92577458023106], "type": "Point"}, "id": "1298", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014670}, "type": "Feature"}, {"bbox": [-85.650247, 41.95096, -85.650247, 41.95096], "geometry": {"coordinates": [-85.650247, 41.95096], "type": "Point"}, "id": "1299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65043842857143, 41.95095971428572, -85.65043842857143, 41.95095971428572], "geometry": {"coordinates": [-85.65043842857143, 41.95095971428572], "type": "Point"}, "id": "1300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65062985714287, 41.950959428571444, -85.65062985714287, 41.950959428571444], "geometry": {"coordinates": [-85.65062985714287, 41.950959428571444], "type": "Point"}, "id": "1301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65082128571429, 41.95095914285715, -85.65082128571429, 41.95095914285715], "geometry": {"coordinates": [-85.65082128571429, 41.95095914285715], "type": "Point"}, "id": "1302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65101271428571, 41.95095885714286, -85.65101271428571, 41.95095885714286], "geometry": {"coordinates": [-85.65101271428571, 41.95095885714286], "type": "Point"}, "id": "1303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65120414285714, 41.95095857142858, -85.65120414285714, 41.95095857142858], "geometry": {"coordinates": [-85.65120414285714, 41.95095857142858], "type": "Point"}, "id": "1304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.65139557142858, 41.95095828571429, -85.65139557142858, 41.95095828571429], "geometry": {"coordinates": [-85.65139557142858, 41.95095828571429], "type": "Point"}, "id": "1305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964869}, "type": "Feature"}, {"bbox": [-85.634729, 41.954666999999986, -85.634729, 41.954666999999986], "geometry": {"coordinates": [-85.634729, 41.954666999999986], "type": "Point"}, "id": "1306", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63490922472289, 41.95466568449117, -85.63490922472289, 41.95466568449117], "geometry": {"coordinates": [-85.63490922472289, 41.95466568449117], "type": "Point"}, "id": "1307", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63508944944581, 41.954664368982314, -85.63508944944581, 41.954664368982314], "geometry": {"coordinates": [-85.63508944944581, 41.954664368982314], "type": "Point"}, "id": "1308", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63526967416871, 41.95466305347343, -85.63526967416871, 41.95466305347343], "geometry": {"coordinates": [-85.63526967416871, 41.95466305347343], "type": "Point"}, "id": "1309", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63544989889162, 41.95466173796453, -85.63544989889162, 41.95466173796453], "geometry": {"coordinates": [-85.63544989889162, 41.95466173796453], "type": "Point"}, "id": "1310", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63563012361453, 41.954660422455596, -85.63563012361453, 41.954660422455596], "geometry": {"coordinates": [-85.63563012361453, 41.954660422455596], "type": "Point"}, "id": "1311", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63581034833744, 41.954659106946636, -85.63581034833744, 41.954659106946636], "geometry": {"coordinates": [-85.63581034833744, 41.954659106946636], "type": "Point"}, "id": "1312", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63599057306034, 41.95465779143764, -85.63599057306034, 41.95465779143764], "geometry": {"coordinates": [-85.63599057306034, 41.95465779143764], "type": "Point"}, "id": "1313", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63617079778327, 41.95465647592863, -85.63617079778327, 41.95465647592863], "geometry": {"coordinates": [-85.63617079778327, 41.95465647592863], "type": "Point"}, "id": "1314", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63635102776885, 41.95465618795387, -85.63635102776885, 41.95465618795387], "geometry": {"coordinates": [-85.63635102776885, 41.95465618795387], "type": "Point"}, "id": "1315", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63653126073767, 41.954656482452194, -85.63653126073767, 41.954656482452194], "geometry": {"coordinates": [-85.63653126073767, 41.954656482452194], "type": "Point"}, "id": "1316", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63671149370649, 41.9546567769505, -85.63671149370649, 41.9546567769505], "geometry": {"coordinates": [-85.63671149370649, 41.9546567769505], "type": "Point"}, "id": "1317", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.6368917266753, 41.954657071448814, -85.6368917266753, 41.954657071448814], "geometry": {"coordinates": [-85.6368917266753, 41.954657071448814], "type": "Point"}, "id": "1318", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63707195964413, 41.954657365947135, -85.63707195964413, 41.954657365947135], "geometry": {"coordinates": [-85.63707195964413, 41.954657365947135], "type": "Point"}, "id": "1319", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63725219261295, 41.95465766044544, -85.63725219261295, 41.95465766044544], "geometry": {"coordinates": [-85.63725219261295, 41.95465766044544], "type": "Point"}, "id": "1320", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63743242558175, 41.954657954943755, -85.63743242558175, 41.954657954943755], "geometry": {"coordinates": [-85.63743242558175, 41.954657954943755], "type": "Point"}, "id": "1321", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63761265157814, 41.95465688665792, -85.63761265157814, 41.95465688665792], "geometry": {"coordinates": [-85.63761265157814, 41.95465688665792], "type": "Point"}, "id": "1322", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63779287631512, 41.954655572215, -85.63779287631512, 41.954655572215], "geometry": {"coordinates": [-85.63779287631512, 41.954655572215], "type": "Point"}, "id": "1323", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.6379731010521, 41.95465425777206, -85.6379731010521, 41.95465425777206], "geometry": {"coordinates": [-85.6379731010521, 41.95465425777206], "type": "Point"}, "id": "1324", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63815332578906, 41.95465294332909, -85.63815332578906, 41.95465294332909], "geometry": {"coordinates": [-85.63815332578906, 41.95465294332909], "type": "Point"}, "id": "1325", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63833355052604, 41.95465162888608, -85.63833355052604, 41.95465162888608], "geometry": {"coordinates": [-85.63833355052604, 41.95465162888608], "type": "Point"}, "id": "1326", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.63851377526302, 41.954650314443064, -85.63851377526302, 41.954650314443064], "geometry": {"coordinates": [-85.63851377526302, 41.954650314443064], "type": "Point"}, "id": "1327", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965866}, "type": "Feature"}, {"bbox": [-85.651459, 41.9269659, -85.651459, 41.9269659], "geometry": {"coordinates": [-85.651459, 41.9269659], "type": "Point"}, "id": "1328", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014665}, "type": "Feature"}, {"bbox": [-85.65165437718908, 41.92697708055598, -85.65165437718908, 41.92697708055598], "geometry": {"coordinates": [-85.65165437718908, 41.92697708055598], "type": "Point"}, "id": "1329", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014665}, "type": "Feature"}, {"bbox": [-85.65184961810212, 41.926989511162766, -85.65184961810212, 41.926989511162766], "geometry": {"coordinates": [-85.65184961810212, 41.926989511162766], "type": "Point"}, "id": "1330", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014665}, "type": "Feature"}, {"bbox": [-85.65204483259075, 41.92700216655031, -85.65204483259075, 41.92700216655031], "geometry": {"coordinates": [-85.65204483259075, 41.92700216655031], "type": "Point"}, "id": "1331", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014665}, "type": "Feature"}, {"bbox": [-85.65224000962085, 41.927015140582135, -85.65224000962085, 41.927015140582135], "geometry": {"coordinates": [-85.65224000962085, 41.927015140582135], "type": "Point"}, "id": "1332", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014665}, "type": "Feature"}, {"bbox": [-85.65243517668176, 41.92702819721757, -85.65243517668176, 41.92702819721757], "geometry": {"coordinates": [-85.65243517668176, 41.92702819721757], "type": "Point"}, "id": "1333", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014665}, "type": "Feature"}, {"bbox": [-85.65263033834087, 41.92704129861013, -85.65263033834087, 41.92704129861013], "geometry": {"coordinates": [-85.65263033834087, 41.92704129861013], "type": "Point"}, "id": "1334", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 124014665}, "type": "Feature"}, {"bbox": [-85.65891459999999, 41.925721700000004, -85.65891459999999, 41.925721700000004], "geometry": {"coordinates": [-85.65891459999999, 41.925721700000004], "type": "Point"}, "id": "1335", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 897575549}, "type": "Feature"}, {"bbox": [-85.65911165000001, 41.925652550037476, -85.65911165000001, 41.925652550037476], "geometry": {"coordinates": [-85.65911165000001, 41.925652550037476], "type": "Point"}, "id": "1336", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 897575549}, "type": "Feature"}, {"bbox": [-85.6388962, 41.9321266, -85.6388962, 41.9321266], "geometry": {"coordinates": [-85.6388962, 41.9321266], "type": "Point"}, "id": "1337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63889190853068, 41.93226152607311, -85.63889190853068, 41.93226152607311], "geometry": {"coordinates": [-85.63889190853068, 41.93226152607311], "type": "Point"}, "id": "1338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63888761706137, 41.932396451860804, -85.63888761706137, 41.932396451860804], "geometry": {"coordinates": [-85.63888761706137, 41.932396451860804], "type": "Point"}, "id": "1339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63888332559206, 41.9325313773631, -85.63888332559206, 41.9325313773631], "geometry": {"coordinates": [-85.63888332559206, 41.9325313773631], "type": "Point"}, "id": "1340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63887903412275, 41.93266630257997, -85.63887903412275, 41.93266630257997], "geometry": {"coordinates": [-85.63887903412275, 41.93266630257997], "type": "Point"}, "id": "1341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63887438521203, 41.93280122069793, -85.63887438521203, 41.93280122069793], "geometry": {"coordinates": [-85.63887438521203, 41.93280122069793], "type": "Point"}, "id": "1342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63886935702057, 41.9329361312617, -85.63886935702057, 41.9329361312617], "geometry": {"coordinates": [-85.63886935702057, 41.9329361312617], "type": "Point"}, "id": "1343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63886432475219, 41.93307104145619, -85.63886432475219, 41.93307104145619], "geometry": {"coordinates": [-85.63886432475219, 41.93307104145619], "type": "Point"}, "id": "1344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63885929248383, 41.93320595136533, -85.63885929248383, 41.93320595136533], "geometry": {"coordinates": [-85.63885929248383, 41.93320595136533], "type": "Point"}, "id": "1345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63885426021545, 41.93334086098913, -85.63885426021545, 41.93334086098913], "geometry": {"coordinates": [-85.63885426021545, 41.93334086098913], "type": "Point"}, "id": "1346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63884922794708, 41.933475770327554, -85.63884922794708, 41.933475770327554], "geometry": {"coordinates": [-85.63884922794708, 41.933475770327554], "type": "Point"}, "id": "1347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63884419567871, 41.93361067938064, -85.63884419567871, 41.93361067938064], "geometry": {"coordinates": [-85.63884419567871, 41.93361067938064], "type": "Point"}, "id": "1348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63883916341035, 41.933745588148376, -85.63883916341035, 41.933745588148376], "geometry": {"coordinates": [-85.63883916341035, 41.933745588148376], "type": "Point"}, "id": "1349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63883413114199, 41.93388049663074, -85.63883413114199, 41.93388049663074], "geometry": {"coordinates": [-85.63883413114199, 41.93388049663074], "type": "Point"}, "id": "1350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63883026489034, 41.934015420645814, -85.63883026489034, 41.934015420645814], "geometry": {"coordinates": [-85.63883026489034, 41.934015420645814], "type": "Point"}, "id": "1351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882868193015, 41.93415037535028, -85.63882868193015, 41.93415037535028], "geometry": {"coordinates": [-85.63882868193015, 41.93415037535028], "type": "Point"}, "id": "1352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882709896998, 41.93428532976919, -85.63882709896998, 41.93428532976919], "geometry": {"coordinates": [-85.63882709896998, 41.93428532976919], "type": "Point"}, "id": "1353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882551600979, 41.93442028390254, -85.63882551600979, 41.93442028390254], "geometry": {"coordinates": [-85.63882551600979, 41.93442028390254], "type": "Point"}, "id": "1354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882393304961, 41.93455523775035, -85.63882393304961, 41.93455523775035], "geometry": {"coordinates": [-85.63882393304961, 41.93455523775035], "type": "Point"}, "id": "1355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882235008941, 41.9346901913126, -85.63882235008941, 41.9346901913126], "geometry": {"coordinates": [-85.63882235008941, 41.9346901913126], "type": "Point"}, "id": "1356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63882076712922, 41.93482514458929, -85.63882076712922, 41.93482514458929], "geometry": {"coordinates": [-85.63882076712922, 41.93482514458929], "type": "Point"}, "id": "1357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63881918416904, 41.934960097580436, -85.63881918416904, 41.934960097580436], "geometry": {"coordinates": [-85.63881918416904, 41.934960097580436], "type": "Point"}, "id": "1358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63881609574426, 41.93509503314739, -85.63881609574426, 41.93509503314739], "geometry": {"coordinates": [-85.63881609574426, 41.93509503314739], "type": "Point"}, "id": "1359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63881212680919, 41.9352299584049, -85.63881212680919, 41.9352299584049], "geometry": {"coordinates": [-85.63881212680919, 41.9352299584049], "type": "Point"}, "id": "1360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63880815787414, 41.935364883376984, -85.63880815787414, 41.935364883376984], "geometry": {"coordinates": [-85.63880815787414, 41.935364883376984], "type": "Point"}, "id": "1361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63880418893909, 41.93549980806362, -85.63880418893909, 41.93549980806362], "geometry": {"coordinates": [-85.63880418893909, 41.93549980806362], "type": "Point"}, "id": "1362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63880022000403, 41.93563473246482, -85.63880022000403, 41.93563473246482], "geometry": {"coordinates": [-85.63880022000403, 41.93563473246482], "type": "Point"}, "id": "1363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63879625106898, 41.935769656580575, -85.63879625106898, 41.935769656580575], "geometry": {"coordinates": [-85.63879625106898, 41.935769656580575], "type": "Point"}, "id": "1364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63879228213392, 41.9359045804109, -85.63879228213392, 41.9359045804109], "geometry": {"coordinates": [-85.63879228213392, 41.9359045804109], "type": "Point"}, "id": "1365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63878831319887, 41.93603950395579, -85.63878831319887, 41.93603950395579], "geometry": {"coordinates": [-85.63878831319887, 41.93603950395579], "type": "Point"}, "id": "1366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63878434426381, 41.93617442721523, -85.63878434426381, 41.93617442721523], "geometry": {"coordinates": [-85.63878434426381, 41.93617442721523], "type": "Point"}, "id": "1367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63878037532876, 41.936309350189234, -85.63878037532876, 41.936309350189234], "geometry": {"coordinates": [-85.63878037532876, 41.936309350189234], "type": "Point"}, "id": "1368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6387764063937, 41.93644427287779, -85.6387764063937, 41.93644427287779], "geometry": {"coordinates": [-85.6387764063937, 41.93644427287779], "type": "Point"}, "id": "1369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63877243745867, 41.93657919528091, -85.63877243745867, 41.93657919528091], "geometry": {"coordinates": [-85.63877243745867, 41.93657919528091], "type": "Point"}, "id": "1370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6387684685236, 41.936714117398594, -85.6387684685236, 41.936714117398594], "geometry": {"coordinates": [-85.6387684685236, 41.936714117398594], "type": "Point"}, "id": "1371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63876449958855, 41.93684903923084, -85.63876449958855, 41.93684903923084], "geometry": {"coordinates": [-85.63876449958855, 41.93684903923084], "type": "Point"}, "id": "1372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6387605306535, 41.936983960777646, -85.6387605306535, 41.936983960777646], "geometry": {"coordinates": [-85.6387605306535, 41.936983960777646], "type": "Point"}, "id": "1373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63875233329259, 41.93711877083243, -85.63875233329259, 41.93711877083243], "geometry": {"coordinates": [-85.63875233329259, 41.93711877083243], "type": "Point"}, "id": "1374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63874348332983, 41.93725356343902, -85.63874348332983, 41.93725356343902], "geometry": {"coordinates": [-85.63874348332983, 41.93725356343902], "type": "Point"}, "id": "1375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63873463336706, 41.93738835576073, -85.63873463336706, 41.93738835576073], "geometry": {"coordinates": [-85.63873463336706, 41.93738835576073], "type": "Point"}, "id": "1376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63872578340433, 41.93752314779752, -85.63872578340433, 41.93752314779752], "geometry": {"coordinates": [-85.63872578340433, 41.93752314779752], "type": "Point"}, "id": "1377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63871693344159, 41.93765793954943, -85.63871693344159, 41.93765793954943], "geometry": {"coordinates": [-85.63871693344159, 41.93765793954943], "type": "Point"}, "id": "1378", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6387080834788, 41.93779273101643, -85.6387080834788, 41.93779273101643], "geometry": {"coordinates": [-85.6387080834788, 41.93779273101643], "type": "Point"}, "id": "1379", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63869923351606, 41.93792752219853, -85.63869923351606, 41.93792752219853], "geometry": {"coordinates": [-85.63869923351606, 41.93792752219853], "type": "Point"}, "id": "1380", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63869038355332, 41.938062313095735, -85.63869038355332, 41.938062313095735], "geometry": {"coordinates": [-85.63869038355332, 41.938062313095735], "type": "Point"}, "id": "1381", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868200300026, 41.93819711217509, -85.63868200300026, 41.93819711217509], "geometry": {"coordinates": [-85.63868200300026, 41.93819711217509], "type": "Point"}, "id": "1382", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.6386820599288, 41.93833206316172, -85.6386820599288, 41.93833206316172], "geometry": {"coordinates": [-85.6386820599288, 41.93833206316172], "type": "Point"}, "id": "1383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868211685737, 41.93846701386275, -85.63868211685737, 41.93846701386275], "geometry": {"coordinates": [-85.63868211685737, 41.93846701386275], "type": "Point"}, "id": "1384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868217378591, 41.9386019642782, -85.63868217378591, 41.9386019642782], "geometry": {"coordinates": [-85.63868217378591, 41.9386019642782], "type": "Point"}, "id": "1385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868223071445, 41.93873691440808, -85.63868223071445, 41.93873691440808], "geometry": {"coordinates": [-85.63868223071445, 41.93873691440808], "type": "Point"}, "id": "1386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868228764301, 41.93887186425238, -85.63868228764301, 41.93887186425238], "geometry": {"coordinates": [-85.63868228764301, 41.93887186425238], "type": "Point"}, "id": "1387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868234457156, 41.939006813811105, -85.63868234457156, 41.939006813811105], "geometry": {"coordinates": [-85.63868234457156, 41.939006813811105], "type": "Point"}, "id": "1388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868240150013, 41.93914176308424, -85.63868240150013, 41.93914176308424], "geometry": {"coordinates": [-85.63868240150013, 41.93914176308424], "type": "Point"}, "id": "1389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868245842868, 41.9392767120718, -85.63868245842868, 41.9392767120718], "geometry": {"coordinates": [-85.63868245842868, 41.9392767120718], "type": "Point"}, "id": "1390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868251535725, 41.939411660773786, -85.63868251535725, 41.939411660773786], "geometry": {"coordinates": [-85.63868251535725, 41.939411660773786], "type": "Point"}, "id": "1391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868257228579, 41.93954660919019, -85.63868257228579, 41.93954660919019], "geometry": {"coordinates": [-85.63868257228579, 41.93954660919019], "type": "Point"}, "id": "1392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868262921434, 41.93968155732101, -85.63868262921434, 41.93968155732101], "geometry": {"coordinates": [-85.63868262921434, 41.93968155732101], "type": "Point"}, "id": "1393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868268614289, 41.93981650516625, -85.63868268614289, 41.93981650516625], "geometry": {"coordinates": [-85.63868268614289, 41.93981650516625], "type": "Point"}, "id": "1394", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63868274307146, 41.939951452725914, -85.63868274307146, 41.939951452725914], "geometry": {"coordinates": [-85.63868274307146, 41.939951452725914], "type": "Point"}, "id": "1395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966878}, "type": "Feature"}, {"bbox": [-85.63463579999998, 41.94732299999999, -85.63463579999998, 41.94732299999999], "geometry": {"coordinates": [-85.63463579999998, 41.94732299999999], "type": "Point"}, "id": "1396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63482707402292, 41.947319594409024, -85.63482707402292, 41.947319594409024], "geometry": {"coordinates": [-85.63482707402292, 41.947319594409024], "type": "Point"}, "id": "1397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63501834804589, 41.94731618881787, -85.63501834804589, 41.94731618881787], "geometry": {"coordinates": [-85.63501834804589, 41.94731618881787], "type": "Point"}, "id": "1398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63520962221804, 41.94731278786883, -85.63520962221804, 41.94731278786883], "geometry": {"coordinates": [-85.63520962221804, 41.94731278786883], "type": "Point"}, "id": "1399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.6354008970072, 41.94730940624348, -85.6354008970072, 41.94730940624348], "geometry": {"coordinates": [-85.6354008970072, 41.94730940624348], "type": "Point"}, "id": "1400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63559217276625, 41.94730605502533, -85.63559217276625, 41.94730605502533], "geometry": {"coordinates": [-85.63559217276625, 41.94730605502533], "type": "Point"}, "id": "1401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63578344851082, 41.947302703350395, -85.63578344851082, 41.947302703350395], "geometry": {"coordinates": [-85.63578344851082, 41.947302703350395], "type": "Point"}, "id": "1402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.63597472425542, 41.94729935167528, -85.63597472425542, 41.94729935167528], "geometry": {"coordinates": [-85.63597472425542, 41.94729935167528], "type": "Point"}, "id": "1403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965182}, "type": "Feature"}, {"bbox": [-85.634723, 41.95368100000001, -85.634723, 41.95368100000001], "geometry": {"coordinates": [-85.634723, 41.95368100000001], "type": "Point"}, "id": "1404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.634911725, 41.953681575000026, -85.634911725, 41.953681575000026], "geometry": {"coordinates": [-85.634911725, 41.953681575000026], "type": "Point"}, "id": "1405", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.63510044999998, 41.95368215000004, -85.63510044999998, 41.95368215000004], "geometry": {"coordinates": [-85.63510044999998, 41.95368215000004], "type": "Point"}, "id": "1406", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.63528917499998, 41.95368272500004, -85.63528917499998, 41.95368272500004], "geometry": {"coordinates": [-85.63528917499998, 41.95368272500004], "type": "Point"}, "id": "1407", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.63547789999998, 41.953683300000044, -85.63547789999998, 41.953683300000044], "geometry": {"coordinates": [-85.63547789999998, 41.953683300000044], "type": "Point"}, "id": "1408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.635666625, 41.95368387500004, -85.635666625, 41.95368387500004], "geometry": {"coordinates": [-85.635666625, 41.95368387500004], "type": "Point"}, "id": "1409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.63585535, 41.95368445000003, -85.63585535, 41.95368445000003], "geometry": {"coordinates": [-85.63585535, 41.95368445000003], "type": "Point"}, "id": "1410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.636044075, 41.95368502500002, -85.636044075, 41.95368502500002], "geometry": {"coordinates": [-85.636044075, 41.95368502500002], "type": "Point"}, "id": "1411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966172}, "type": "Feature"}, {"bbox": [-85.634763, 41.95829199999999, -85.634763, 41.95829199999999], "geometry": {"coordinates": [-85.634763, 41.95829199999999], "type": "Point"}, "id": "1412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63495248601049, 41.95829437153957, -85.63495248601049, 41.95829437153957], "geometry": {"coordinates": [-85.63495248601049, 41.95829437153957], "type": "Point"}, "id": "1413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63514197189492, 41.95829674862722, -85.63514197189492, 41.95829674862722], "geometry": {"coordinates": [-85.63514197189492, 41.95829674862722], "type": "Point"}, "id": "1414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63533145750316, 41.958299137873546, -85.63533145750316, 41.958299137873546], "geometry": {"coordinates": [-85.63533145750316, 41.958299137873546], "type": "Point"}, "id": "1415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63552094311137, 41.95830152711978, -85.63552094311137, 41.95830152711978], "geometry": {"coordinates": [-85.63552094311137, 41.95830152711978], "type": "Point"}, "id": "1416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.6357104288275, 41.95830391162599, -85.6357104288275, 41.95830391162599], "geometry": {"coordinates": [-85.6357104288275, 41.95830391162599], "type": "Point"}, "id": "1417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63589991461774, 41.95830629287632, -85.63589991461774, 41.95830629287632], "geometry": {"coordinates": [-85.63589991461774, 41.95830629287632], "type": "Point"}, "id": "1418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63608940015455, 41.958308685199356, -85.63608940015455, 41.958308685199356], "geometry": {"coordinates": [-85.63608940015455, 41.958308685199356], "type": "Point"}, "id": "1419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63627888630347, 41.95831101322837, -85.63627888630347, 41.95831101322837], "geometry": {"coordinates": [-85.63627888630347, 41.95831101322837], "type": "Point"}, "id": "1420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63646839866716, 41.95831133111323, -85.63646839866716, 41.95831133111323], "geometry": {"coordinates": [-85.63646839866716, 41.95831133111323], "type": "Point"}, "id": "1421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63665791102723, 41.95831165018, -85.63665791102723, 41.95831165018], "geometry": {"coordinates": [-85.63665791102723, 41.95831165018], "type": "Point"}, "id": "1422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63684742336739, 41.95831197573265, -85.63684742336739, 41.95831197573265], "geometry": {"coordinates": [-85.63684742336739, 41.95831197573265], "type": "Point"}, "id": "1423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63703693570754, 41.95831230128531, -85.63703693570754, 41.95831230128531], "geometry": {"coordinates": [-85.63703693570754, 41.95831230128531], "type": "Point"}, "id": "1424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.6372264481154, 41.958312603882845, -85.6372264481154, 41.958312603882845], "geometry": {"coordinates": [-85.6372264481154, 41.958312603882845], "type": "Point"}, "id": "1425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63741596055272, 41.95831289649082, -85.63741596055272, 41.95831289649082], "geometry": {"coordinates": [-85.63741596055272, 41.95831289649082], "type": "Point"}, "id": "1426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63760547084357, 41.95831242859638, -85.63760547084357, 41.95831242859638], "geometry": {"coordinates": [-85.63760547084357, 41.95831242859638], "type": "Point"}, "id": "1427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63779498054923, 41.95831161743721, -85.63779498054923, 41.95831161743721], "geometry": {"coordinates": [-85.63779498054923, 41.95831161743721], "type": "Point"}, "id": "1428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63798449027462, 41.95831080871861, -85.63798449027462, 41.95831080871861], "geometry": {"coordinates": [-85.63798449027462, 41.95831080871861], "type": "Point"}, "id": "1429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965468}, "type": "Feature"}, {"bbox": [-85.63208269999998, 41.95370689999999, -85.63208269999998, 41.95370689999999], "geometry": {"coordinates": [-85.63208269999998, 41.95370689999999], "type": "Point"}, "id": "1430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63227130641404, 41.953705837038136, -85.63227130641404, 41.953705837038136], "geometry": {"coordinates": [-85.63227130641404, 41.953705837038136], "type": "Point"}, "id": "1431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63245991282807, 41.95370477407627, -85.63245991282807, 41.95370477407627], "geometry": {"coordinates": [-85.63245991282807, 41.95370477407627], "type": "Point"}, "id": "1432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63264851924212, 41.95370371111438, -85.63264851924212, 41.95370371111438], "geometry": {"coordinates": [-85.63264851924212, 41.95370371111438], "type": "Point"}, "id": "1433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63283712565615, 41.95370264815247, -85.63283712565615, 41.95370264815247], "geometry": {"coordinates": [-85.63283712565615, 41.95370264815247], "type": "Point"}, "id": "1434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63302573207021, 41.95370158519055, -85.63302573207021, 41.95370158519055], "geometry": {"coordinates": [-85.63302573207021, 41.95370158519055], "type": "Point"}, "id": "1435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63321433848425, 41.95370052222861, -85.63321433848425, 41.95370052222861], "geometry": {"coordinates": [-85.63321433848425, 41.95370052222861], "type": "Point"}, "id": "1436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63340293203984, 41.95369871277648, -85.63340293203984, 41.95369871277648], "geometry": {"coordinates": [-85.63340293203984, 41.95369871277648], "type": "Point"}, "id": "1437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.633591513177, 41.95369618238014, -85.633591513177, 41.95369618238014], "geometry": {"coordinates": [-85.633591513177, 41.95369618238014], "type": "Point"}, "id": "1438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63378009431416, 41.9536936519837, -85.63378009431416, 41.9536936519837], "geometry": {"coordinates": [-85.63378009431416, 41.9536936519837], "type": "Point"}, "id": "1439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63396867545133, 41.95369112158716, -85.63396867545133, 41.95369112158716], "geometry": {"coordinates": [-85.63396867545133, 41.95369112158716], "type": "Point"}, "id": "1440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.6341572565885, 41.95368859119053, -85.6341572565885, 41.95368859119053], "geometry": {"coordinates": [-85.6341572565885, 41.95368859119053], "type": "Point"}, "id": "1441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63434583772565, 41.953686060793785, -85.63434583772565, 41.953686060793785], "geometry": {"coordinates": [-85.63434583772565, 41.953686060793785], "type": "Point"}, "id": "1442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63453441886283, 41.95368353039695, -85.63453441886283, 41.95368353039695], "geometry": {"coordinates": [-85.63453441886283, 41.95368353039695], "type": "Point"}, "id": "1443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964723}, "type": "Feature"}, {"bbox": [-85.63869399999999, 41.95464900000001, -85.63869399999999, 41.95464900000001], "geometry": {"coordinates": [-85.63869399999999, 41.95464900000001], "type": "Point"}, "id": "1444", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.63887690817285, 41.9546490760533, -85.63887690817285, 41.9546490760533], "geometry": {"coordinates": [-85.63887690817285, 41.9546490760533], "type": "Point"}, "id": "1445", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.6390598163457, 41.95464915210659, -85.6390598163457, 41.95464915210659], "geometry": {"coordinates": [-85.6390598163457, 41.95464915210659], "type": "Point"}, "id": "1446", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.63924272451855, 41.95464922815989, -85.63924272451855, 41.95464922815989], "geometry": {"coordinates": [-85.63924272451855, 41.95464922815989], "type": "Point"}, "id": "1447", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.63942563254807, 41.95464934030261, -85.63942563254807, 41.95464934030261], "geometry": {"coordinates": [-85.63942563254807, 41.95464934030261], "type": "Point"}, "id": "1448", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.6396085381334, 41.95465006781664, -85.6396085381334, 41.95465006781664], "geometry": {"coordinates": [-85.6396085381334, 41.95465006781664], "type": "Point"}, "id": "1449", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.63979144371872, 41.95465079533066, -85.63979144371872, 41.95465079533066], "geometry": {"coordinates": [-85.63979144371872, 41.95465079533066], "type": "Point"}, "id": "1450", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.63997434916456, 41.95465154189202, -85.63997434916456, 41.95465154189202], "geometry": {"coordinates": [-85.63997434916456, 41.95465154189202], "type": "Point"}, "id": "1451", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.6401572545558, 41.95465229590953, -85.6401572545558, 41.95465229590953], "geometry": {"coordinates": [-85.6401572545558, 41.95465229590953], "type": "Point"}, "id": "1452", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64034015994706, 41.954653049927025, -85.64034015994706, 41.954653049927025], "geometry": {"coordinates": [-85.64034015994706, 41.954653049927025], "type": "Point"}, "id": "1453", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64052306533829, 41.95465380394451, -85.64052306533829, 41.95465380394451], "geometry": {"coordinates": [-85.64052306533829, 41.95465380394451], "type": "Point"}, "id": "1454", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64070597072953, 41.954654557961994, -85.64070597072953, 41.954654557961994], "geometry": {"coordinates": [-85.64070597072953, 41.954654557961994], "type": "Point"}, "id": "1455", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64088887612077, 41.954655311979465, -85.64088887612077, 41.954655311979465], "geometry": {"coordinates": [-85.64088887612077, 41.954655311979465], "type": "Point"}, "id": "1456", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64107177563291, 41.95465485663153, -85.64107177563291, 41.95465485663153], "geometry": {"coordinates": [-85.64107177563291, 41.95465485663153], "type": "Point"}, "id": "1457", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64125466891218, 41.9546531191454, -85.64125466891218, 41.9546531191454], "geometry": {"coordinates": [-85.64125466891218, 41.9546531191454], "type": "Point"}, "id": "1458", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64143756219147, 41.95465138165923, -85.64143756219147, 41.95465138165923], "geometry": {"coordinates": [-85.64143756219147, 41.95465138165923], "type": "Point"}, "id": "1459", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64162045689366, 41.95465026011732, -85.64162045689366, 41.95465026011732], "geometry": {"coordinates": [-85.64162045689366, 41.95465026011732], "type": "Point"}, "id": "1460", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64180335712095, 41.954651530257784, -85.64180335712095, 41.954651530257784], "geometry": {"coordinates": [-85.64180335712095, 41.954651530257784], "type": "Point"}, "id": "1461", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64198617571746, 41.95464867678275, -85.64198617571746, 41.95464867678275], "geometry": {"coordinates": [-85.64198617571746, 41.95464867678275], "type": "Point"}, "id": "1462", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.6421685292441, 41.95464029660209, -85.6421685292441, 41.95464029660209], "geometry": {"coordinates": [-85.6421685292441, 41.95464029660209], "type": "Point"}, "id": "1463", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64234909290218, 41.95461858722338, -85.64234909290218, 41.95461858722338], "geometry": {"coordinates": [-85.64234909290218, 41.95461858722338], "type": "Point"}, "id": "1464", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64252965656026, 41.95459687783727, -85.64252965656026, 41.95459687783727], "geometry": {"coordinates": [-85.64252965656026, 41.95459687783727], "type": "Point"}, "id": "1465", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64271022021832, 41.95457516844377, -85.64271022021832, 41.95457516844377], "geometry": {"coordinates": [-85.64271022021832, 41.95457516844377], "type": "Point"}, "id": "1466", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.6428899057971, 41.95455015333708, -85.6428899057971, 41.95455015333708], "geometry": {"coordinates": [-85.6428899057971, 41.95455015333708], "type": "Point"}, "id": "1467", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64306800689441, 41.95451917311912, -85.64306800689441, 41.95451917311912], "geometry": {"coordinates": [-85.64306800689441, 41.95451917311912], "type": "Point"}, "id": "1468", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.6432461079917, 41.95448819288609, -85.6432461079917, 41.95448819288609], "geometry": {"coordinates": [-85.6432461079917, 41.95448819288609], "type": "Point"}, "id": "1469", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.64342420562168, 41.95445720161789, -85.64342420562168, 41.95445720161789], "geometry": {"coordinates": [-85.64342420562168, 41.95445720161789], "type": "Point"}, "id": "1470", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 772282741}, "type": "Feature"}, {"bbox": [-85.62350099999999, 41.933232, -85.62350099999999, 41.933232], "geometry": {"coordinates": [-85.62350099999999, 41.933232], "type": "Point"}, "id": "1471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350237341643, 41.933367145077774, -85.62350237341643, 41.933367145077774], "geometry": {"coordinates": [-85.62350237341643, 41.933367145077774], "type": "Point"}, "id": "1472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235037468329, 41.93350228986921, -85.6235037468329, 41.93350228986921], "geometry": {"coordinates": [-85.6235037468329, 41.93350228986921], "type": "Point"}, "id": "1473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350512024932, 41.93363743437428, -85.62350512024932, 41.93363743437428], "geometry": {"coordinates": [-85.62350512024932, 41.93363743437428], "type": "Point"}, "id": "1474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350649366579, 41.93377257859301, -85.62350649366579, 41.93377257859301], "geometry": {"coordinates": [-85.62350649366579, 41.93377257859301], "type": "Point"}, "id": "1475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350786708222, 41.93390772252539, -85.62350786708222, 41.93390772252539], "geometry": {"coordinates": [-85.62350786708222, 41.93390772252539], "type": "Point"}, "id": "1476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62350924049868, 41.93404286617141, -85.62350924049868, 41.93404286617141], "geometry": {"coordinates": [-85.62350924049868, 41.93404286617141], "type": "Point"}, "id": "1477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351061391512, 41.934178009531095, -85.62351061391512, 41.934178009531095], "geometry": {"coordinates": [-85.62351061391512, 41.934178009531095], "type": "Point"}, "id": "1478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351198496972, 41.934313152617676, -85.62351198496972, 41.934313152617676], "geometry": {"coordinates": [-85.62351198496972, 41.934313152617676], "type": "Point"}, "id": "1479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351335510077, 41.9344482954231, -85.62351335510077, 41.9344482954231], "geometry": {"coordinates": [-85.62351335510077, 41.9344482954231], "type": "Point"}, "id": "1480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351472523181, 41.93458343794218, -85.62351472523181, 41.93458343794218], "geometry": {"coordinates": [-85.62351472523181, 41.93458343794218], "type": "Point"}, "id": "1481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351609536286, 41.934718580174895, -85.62351609536286, 41.934718580174895], "geometry": {"coordinates": [-85.62351609536286, 41.934718580174895], "type": "Point"}, "id": "1482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351746549388, 41.93485372212126, -85.62351746549388, 41.93485372212126], "geometry": {"coordinates": [-85.62351746549388, 41.93485372212126], "type": "Point"}, "id": "1483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62351883562492, 41.93498886378128, -85.62351883562492, 41.93498886378128], "geometry": {"coordinates": [-85.62351883562492, 41.93498886378128], "type": "Point"}, "id": "1484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352020575597, 41.93512400515493, -85.62352020575597, 41.93512400515493], "geometry": {"coordinates": [-85.62352020575597, 41.93512400515493], "type": "Point"}, "id": "1485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.623521575887, 41.935259146242245, -85.623521575887, 41.935259146242245], "geometry": {"coordinates": [-85.623521575887, 41.935259146242245], "type": "Point"}, "id": "1486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352294601804, 41.935394287043216, -85.62352294601804, 41.935394287043216], "geometry": {"coordinates": [-85.62352294601804, 41.935394287043216], "type": "Point"}, "id": "1487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352431614909, 41.93552942755781, -85.62352431614909, 41.93552942755781], "geometry": {"coordinates": [-85.62352431614909, 41.93552942755781], "type": "Point"}, "id": "1488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352568628013, 41.93566456778606, -85.62352568628013, 41.93566456778606], "geometry": {"coordinates": [-85.62352568628013, 41.93566456778606], "type": "Point"}, "id": "1489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352705641115, 41.93579970772795, -85.62352705641115, 41.93579970772795], "geometry": {"coordinates": [-85.62352705641115, 41.93579970772795], "type": "Point"}, "id": "1490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352842654221, 41.9359348473835, -85.62352842654221, 41.9359348473835], "geometry": {"coordinates": [-85.62352842654221, 41.9359348473835], "type": "Point"}, "id": "1491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62352979667324, 41.93606998675269, -85.62352979667324, 41.93606998675269], "geometry": {"coordinates": [-85.62352979667324, 41.93606998675269], "type": "Point"}, "id": "1492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62353116680427, 41.93620512583553, -85.62353116680427, 41.93620512583553], "geometry": {"coordinates": [-85.62353116680427, 41.93620512583553], "type": "Point"}, "id": "1493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62353360681857, 41.93634025622746, -85.62353360681857, 41.93634025622746], "geometry": {"coordinates": [-85.62353360681857, 41.93634025622746], "type": "Point"}, "id": "1494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62353607339776, 41.93647538612439, -85.62353607339776, 41.93647538612439], "geometry": {"coordinates": [-85.62353607339776, 41.93647538612439], "type": "Point"}, "id": "1495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62353853997692, 41.936610515735005, -85.62353853997692, 41.936610515735005], "geometry": {"coordinates": [-85.62353853997692, 41.936610515735005], "type": "Point"}, "id": "1496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235410065561, 41.93674564505929, -85.6235410065561, 41.93674564505929], "geometry": {"coordinates": [-85.6235410065561, 41.93674564505929], "type": "Point"}, "id": "1497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354347313527, 41.93688077409727, -85.62354347313527, 41.93688077409727], "geometry": {"coordinates": [-85.62354347313527, 41.93688077409727], "type": "Point"}, "id": "1498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354593971446, 41.93701590284893, -85.62354593971446, 41.93701590284893], "geometry": {"coordinates": [-85.62354593971446, 41.93701590284893], "type": "Point"}, "id": "1499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354840629364, 41.937151031314265, -85.62354840629364, 41.937151031314265], "geometry": {"coordinates": [-85.62354840629364, 41.937151031314265], "type": "Point"}, "id": "1500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235490727838, 41.937286169780265, -85.6235490727838, 41.937286169780265], "geometry": {"coordinates": [-85.6235490727838, 41.937286169780265], "type": "Point"}, "id": "1501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354939737817, 41.937421309913724, -85.62354939737817, 41.937421309913724], "geometry": {"coordinates": [-85.62354939737817, 41.937421309913724], "type": "Point"}, "id": "1502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62354972197255, 41.93755644976082, -85.62354972197255, 41.93755644976082], "geometry": {"coordinates": [-85.62354972197255, 41.93755644976082], "type": "Point"}, "id": "1503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355004656693, 41.93769158932154, -85.62355004656693, 41.93769158932154], "geometry": {"coordinates": [-85.62355004656693, 41.93769158932154], "type": "Point"}, "id": "1504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235503711613, 41.937826728595894, -85.6235503711613, 41.937826728595894], "geometry": {"coordinates": [-85.6235503711613, 41.937826728595894], "type": "Point"}, "id": "1505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355069575567, 41.93796186758387, -85.62355069575567, 41.93796186758387], "geometry": {"coordinates": [-85.62355069575567, 41.93796186758387], "type": "Point"}, "id": "1506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355102035004, 41.93809700628548, -85.62355102035004, 41.93809700628548], "geometry": {"coordinates": [-85.62355102035004, 41.93809700628548], "type": "Point"}, "id": "1507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355181079391, 41.93823214308657, -85.62355181079391, 41.93823214308657], "geometry": {"coordinates": [-85.62355181079391, 41.93823214308657], "type": "Point"}, "id": "1508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355317863025, 41.938367277600655, -85.62355317863025, 41.938367277600655], "geometry": {"coordinates": [-85.62355317863025, 41.938367277600655], "type": "Point"}, "id": "1509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6235545464666, 41.938502411828395, -85.6235545464666, 41.938502411828395], "geometry": {"coordinates": [-85.6235545464666, 41.938502411828395], "type": "Point"}, "id": "1510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355591430293, 41.93863754576977, -85.62355591430293, 41.93863754576977], "geometry": {"coordinates": [-85.62355591430293, 41.93863754576977], "type": "Point"}, "id": "1511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355728213929, 41.93877267942479, -85.62355728213929, 41.93877267942479], "geometry": {"coordinates": [-85.62355728213929, 41.93877267942479], "type": "Point"}, "id": "1512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62355864997564, 41.93890781279345, -85.62355864997564, 41.93890781279345], "geometry": {"coordinates": [-85.62355864997564, 41.93890781279345], "type": "Point"}, "id": "1513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356001781197, 41.93904294587576, -85.62356001781197, 41.93904294587576], "geometry": {"coordinates": [-85.62356001781197, 41.93904294587576], "type": "Point"}, "id": "1514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356137546462, 41.939178078728155, -85.62356137546462, 41.939178078728155], "geometry": {"coordinates": [-85.62356137546462, 41.939178078728155], "type": "Point"}, "id": "1515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356273187245, 41.939313211300956, -85.62356273187245, 41.939313211300956], "geometry": {"coordinates": [-85.62356273187245, 41.939313211300956], "type": "Point"}, "id": "1516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356410335927, 41.93944834350372, -85.62356410335927, 41.93944834350372], "geometry": {"coordinates": [-85.62356410335927, 41.93944834350372], "type": "Point"}, "id": "1517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356547484607, 41.93958347542013, -85.62356547484607, 41.93958347542013], "geometry": {"coordinates": [-85.62356547484607, 41.93958347542013], "type": "Point"}, "id": "1518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356684633289, 41.93971860705017, -85.62356684633289, 41.93971860705017], "geometry": {"coordinates": [-85.62356684633289, 41.93971860705017], "type": "Point"}, "id": "1519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356821781971, 41.939853738393865, -85.62356821781971, 41.939853738393865], "geometry": {"coordinates": [-85.62356821781971, 41.939853738393865], "type": "Point"}, "id": "1520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.62356960362813, 41.93998886937004, -85.62356960362813, 41.93998886937004], "geometry": {"coordinates": [-85.62356960362813, 41.93998886937004], "type": "Point"}, "id": "1521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965088}, "type": "Feature"}, {"bbox": [-85.6277618, 41.9361846, -85.6277618, 41.9361846], "geometry": {"coordinates": [-85.6277618, 41.9361846], "type": "Point"}, "id": "1522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62775831428571, 41.93604391521673, -85.62775831428571, 41.93604391521673], "geometry": {"coordinates": [-85.62775831428571, 41.93604391521673], "type": "Point"}, "id": "1523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62775482857144, 41.93590323012312, -85.62775482857144, 41.93590323012312], "geometry": {"coordinates": [-85.62775482857144, 41.93590323012312], "type": "Point"}, "id": "1524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62775134285715, 41.93576254471917, -85.62775134285715, 41.93576254471917], "geometry": {"coordinates": [-85.62775134285715, 41.93576254471917], "type": "Point"}, "id": "1525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62774785714286, 41.93562185900488, -85.62774785714286, 41.93562185900488], "geometry": {"coordinates": [-85.62774785714286, 41.93562185900488], "type": "Point"}, "id": "1526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62774437142856, 41.93548117298025, -85.62774437142856, 41.93548117298025], "geometry": {"coordinates": [-85.62774437142856, 41.93548117298025], "type": "Point"}, "id": "1527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62774088571429, 41.9353404866453, -85.62774088571429, 41.9353404866453], "geometry": {"coordinates": [-85.62774088571429, 41.9353404866453], "type": "Point"}, "id": "1528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964837}, "type": "Feature"}, {"bbox": [-85.62478, 41.93217, -85.62478, 41.93217], "geometry": {"coordinates": [-85.62478, 41.93217], "type": "Point"}, "id": "1529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62496867672156, 41.93217061861221, -85.62496867672156, 41.93217061861221], "geometry": {"coordinates": [-85.62496867672156, 41.93217061861221], "type": "Point"}, "id": "1530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62515735344313, 41.93217123722442, -85.62515735344313, 41.93217123722442], "geometry": {"coordinates": [-85.62515735344313, 41.93217123722442], "type": "Point"}, "id": "1531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62534603016469, 41.932171855836614, -85.62534603016469, 41.932171855836614], "geometry": {"coordinates": [-85.62534603016469, 41.932171855836614], "type": "Point"}, "id": "1532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62553470688627, 41.93217247444882, -85.62553470688627, 41.93217247444882], "geometry": {"coordinates": [-85.62553470688627, 41.93217247444882], "type": "Point"}, "id": "1533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62572338318874, 41.93217285225883, -85.62572338318874, 41.93217285225883], "geometry": {"coordinates": [-85.62572338318874, 41.93217285225883], "type": "Point"}, "id": "1534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62591205712435, 41.932171870166684, -85.62591205712435, 41.932171870166684], "geometry": {"coordinates": [-85.62591205712435, 41.932171870166684], "type": "Point"}, "id": "1535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62610073105996, 41.93217088807452, -85.62610073105996, 41.93217088807452], "geometry": {"coordinates": [-85.62610073105996, 41.93217088807452], "type": "Point"}, "id": "1536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62628940499556, 41.93216990598234, -85.62628940499556, 41.93216990598234], "geometry": {"coordinates": [-85.62628940499556, 41.93216990598234], "type": "Point"}, "id": "1537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62647807881046, 41.932168911195944, -85.62647807881046, 41.932168911195944], "geometry": {"coordinates": [-85.62647807881046, 41.932168911195944], "type": "Point"}, "id": "1538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62666675254032, 41.93216790746397, -85.62666675254032, 41.93216790746397], "geometry": {"coordinates": [-85.62666675254032, 41.93216790746397], "type": "Point"}, "id": "1539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.62685542627017, 41.932166903731996, -85.62685542627017, 41.932166903731996], "geometry": {"coordinates": [-85.62685542627017, 41.932166903731996], "type": "Point"}, "id": "1540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966110}, "type": "Feature"}, {"bbox": [-85.6277991, 41.92684959999999, -85.6277991, 41.92684959999999], "geometry": {"coordinates": [-85.6277991, 41.92684959999999], "type": "Point"}, "id": "1541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62780967216297, 41.926984568133484, -85.62780967216297, 41.926984568133484], "geometry": {"coordinates": [-85.62780967216297, 41.926984568133484], "type": "Point"}, "id": "1542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62782024432593, 41.92711953598142, -85.62782024432593, 41.92711953598142], "geometry": {"coordinates": [-85.62782024432593, 41.92711953598142], "type": "Point"}, "id": "1543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.6278308164889, 41.927254503543836, -85.6278308164889, 41.927254503543836], "geometry": {"coordinates": [-85.6278308164889, 41.927254503543836], "type": "Point"}, "id": "1544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62784665687144, 41.92738899709557, -85.62784665687144, 41.92738899709557], "geometry": {"coordinates": [-85.62784665687144, 41.92738899709557], "type": "Point"}, "id": "1545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62787960921412, 41.92752195163738, -85.62787960921412, 41.92752195163738], "geometry": {"coordinates": [-85.62787960921412, 41.92752195163738], "type": "Point"}, "id": "1546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62791256155678, 41.927654905902095, -85.62791256155678, 41.927654905902095], "geometry": {"coordinates": [-85.62791256155678, 41.927654905902095], "type": "Point"}, "id": "1547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62794551389945, 41.927787859889726, -85.62794551389945, 41.927787859889726], "geometry": {"coordinates": [-85.62794551389945, 41.927787859889726], "type": "Point"}, "id": "1548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62797846624211, 41.927920813600274, -85.62797846624211, 41.927920813600274], "geometry": {"coordinates": [-85.62797846624211, 41.927920813600274], "type": "Point"}, "id": "1549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62801141858478, 41.92805376703373, -85.62801141858478, 41.92805376703373], "geometry": {"coordinates": [-85.62801141858478, 41.92805376703373], "type": "Point"}, "id": "1550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62804437092746, 41.9281867201901, -85.62804437092746, 41.9281867201901], "geometry": {"coordinates": [-85.62804437092746, 41.9281867201901], "type": "Point"}, "id": "1551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62807732327012, 41.92831967306938, -85.62807732327012, 41.92831967306938], "geometry": {"coordinates": [-85.62807732327012, 41.92831967306938], "type": "Point"}, "id": "1552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62811321127924, 41.92845220399736, -85.62811321127924, 41.92845220399736], "geometry": {"coordinates": [-85.62811321127924, 41.92845220399736], "type": "Point"}, "id": "1553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.6281491515835, 41.92858472713844, -85.6281491515835, 41.92858472713844], "geometry": {"coordinates": [-85.6281491515835, 41.92858472713844], "type": "Point"}, "id": "1554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62818509188774, 41.92871725000422, -85.62818509188774, 41.92871725000422], "geometry": {"coordinates": [-85.62818509188774, 41.92871725000422], "type": "Point"}, "id": "1555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62822103219199, 41.928849772594695, -85.62822103219199, 41.928849772594695], "geometry": {"coordinates": [-85.62822103219199, 41.928849772594695], "type": "Point"}, "id": "1556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62825697249623, 41.928982294909865, -85.62825697249623, 41.928982294909865], "geometry": {"coordinates": [-85.62825697249623, 41.928982294909865], "type": "Point"}, "id": "1557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.6282929128005, 41.92911481694974, -85.6282929128005, 41.92911481694974], "geometry": {"coordinates": [-85.6282929128005, 41.92911481694974], "type": "Point"}, "id": "1558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832515804737, 41.92924761752553, -85.62832515804737, 41.92924761752553], "geometry": {"coordinates": [-85.62832515804737, 41.92924761752553], "type": "Point"}, "id": "1559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832571391802, 41.92938280894741, -85.62832571391802, 41.92938280894741], "geometry": {"coordinates": [-85.62832571391802, 41.92938280894741], "type": "Point"}, "id": "1560", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832626978866, 41.929518000082794, -85.62832626978866, 41.929518000082794], "geometry": {"coordinates": [-85.62832626978866, 41.929518000082794], "type": "Point"}, "id": "1561", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832682565929, 41.92965319093166, -85.62832682565929, 41.92965319093166], "geometry": {"coordinates": [-85.62832682565929, 41.92965319093166], "type": "Point"}, "id": "1562", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832738152993, 41.92978838149403, -85.62832738152993, 41.92978838149403], "geometry": {"coordinates": [-85.62832738152993, 41.92978838149403], "type": "Point"}, "id": "1563", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832793740056, 41.92992357176988, -85.62832793740056, 41.92992357176988], "geometry": {"coordinates": [-85.62832793740056, 41.92992357176988], "type": "Point"}, "id": "1564", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832849327121, 41.93005876175923, -85.62832849327121, 41.93005876175923], "geometry": {"coordinates": [-85.62832849327121, 41.93005876175923], "type": "Point"}, "id": "1565", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62832913239772, 41.93019395111209, -85.62832913239772, 41.93019395111209], "geometry": {"coordinates": [-85.62832913239772, 41.93019395111209], "type": "Point"}, "id": "1566", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833063002144, 41.93032913656964, -85.62833063002144, 41.93032913656964], "geometry": {"coordinates": [-85.62833063002144, 41.93032913656964], "type": "Point"}, "id": "1567", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833212764514, 41.93046432174069, -85.62833212764514, 41.93046432174069], "geometry": {"coordinates": [-85.62833212764514, 41.93046432174069], "type": "Point"}, "id": "1568", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833362526884, 41.93059950662526, -85.62833362526884, 41.93059950662526], "geometry": {"coordinates": [-85.62833362526884, 41.93059950662526], "type": "Point"}, "id": "1569", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833512289255, 41.93073469122334, -85.62833512289255, 41.93073469122334], "geometry": {"coordinates": [-85.62833512289255, 41.93073469122334], "type": "Point"}, "id": "1570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833662051625, 41.930869875534924, -85.62833662051625, 41.930869875534924], "geometry": {"coordinates": [-85.62833662051625, 41.930869875534924], "type": "Point"}, "id": "1571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833811813995, 41.931005059560015, -85.62833811813995, 41.931005059560015], "geometry": {"coordinates": [-85.62833811813995, 41.931005059560015], "type": "Point"}, "id": "1572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833961576365, 41.931140243298614, -85.62833961576365, 41.931140243298614], "geometry": {"coordinates": [-85.62833961576365, 41.931140243298614], "type": "Point"}, "id": "1573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833991100692, 41.931275430470265, -85.62833991100692, 41.931275430470265], "geometry": {"coordinates": [-85.62833991100692, 41.931275430470265], "type": "Point"}, "id": "1574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833992459218, 41.931410618226714, -85.62833992459218, 41.931410618226714], "geometry": {"coordinates": [-85.62833992459218, 41.931410618226714], "type": "Point"}, "id": "1575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833993817746, 41.93154580569665, -85.62833993817746, 41.93154580569665], "geometry": {"coordinates": [-85.62833993817746, 41.93154580569665], "type": "Point"}, "id": "1576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833995176274, 41.93168099288007, -85.62833995176274, 41.93168099288007], "geometry": {"coordinates": [-85.62833995176274, 41.93168099288007], "type": "Point"}, "id": "1577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833996534802, 41.93181617977698, -85.62833996534802, 41.93181617977698], "geometry": {"coordinates": [-85.62833996534802, 41.93181617977698], "type": "Point"}, "id": "1578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833997893328, 41.93195136638738, -85.62833997893328, 41.93195136638738], "geometry": {"coordinates": [-85.62833997893328, 41.93195136638738], "type": "Point"}, "id": "1579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62833999251855, 41.93208655271127, -85.62833999251855, 41.93208655271127], "geometry": {"coordinates": [-85.62833999251855, 41.93208655271127], "type": "Point"}, "id": "1580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62834149429429, 41.93222172857499, -85.62834149429429, 41.93222172857499], "geometry": {"coordinates": [-85.62834149429429, 41.93222172857499], "type": "Point"}, "id": "1581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62834482013837, 41.93235689168247, -85.62834482013837, 41.93235689168247], "geometry": {"coordinates": [-85.62834482013837, 41.93235689168247], "type": "Point"}, "id": "1582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62834814598241, 41.932492054503534, -85.62834814598241, 41.932492054503534], "geometry": {"coordinates": [-85.62834814598241, 41.932492054503534], "type": "Point"}, "id": "1583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62835147182649, 41.93262721703819, -85.62835147182649, 41.93262721703819], "geometry": {"coordinates": [-85.62835147182649, 41.93262721703819], "type": "Point"}, "id": "1584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62835479767055, 41.932762379286416, -85.62835479767055, 41.932762379286416], "geometry": {"coordinates": [-85.62835479767055, 41.932762379286416], "type": "Point"}, "id": "1585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62835812351463, 41.93289754124823, -85.62835812351463, 41.93289754124823], "geometry": {"coordinates": [-85.62835812351463, 41.93289754124823], "type": "Point"}, "id": "1586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62836144935869, 41.93303270292363, -85.62836144935869, 41.93303270292363], "geometry": {"coordinates": [-85.62836144935869, 41.93303270292363], "type": "Point"}, "id": "1587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62836477520275, 41.93316786431261, -85.62836477520275, 41.93316786431261], "geometry": {"coordinates": [-85.62836477520275, 41.93316786431261], "type": "Point"}, "id": "1588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62836791111499, 41.93330302792239, -85.62836791111499, 41.93330302792239], "geometry": {"coordinates": [-85.62836791111499, 41.93330302792239], "type": "Point"}, "id": "1589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62837103325893, 41.93343819142749, -85.62837103325893, 41.93343819142749], "geometry": {"coordinates": [-85.62837103325893, 41.93343819142749], "type": "Point"}, "id": "1590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62837415540288, 41.933573354646164, -85.62837415540288, 41.933573354646164], "geometry": {"coordinates": [-85.62837415540288, 41.933573354646164], "type": "Point"}, "id": "1591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.6283772775468, 41.93370851757841, -85.6283772775468, 41.93370851757841], "geometry": {"coordinates": [-85.6283772775468, 41.93370851757841], "type": "Point"}, "id": "1592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62838039969074, 41.93384368022422, -85.62838039969074, 41.93384368022422], "geometry": {"coordinates": [-85.62838039969074, 41.93384368022422], "type": "Point"}, "id": "1593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62838352183468, 41.933978842583606, -85.62838352183468, 41.933978842583606], "geometry": {"coordinates": [-85.62838352183468, 41.933978842583606], "type": "Point"}, "id": "1594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62838664397862, 41.934114004656564, -85.62838664397862, 41.934114004656564], "geometry": {"coordinates": [-85.62838664397862, 41.934114004656564], "type": "Point"}, "id": "1595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62838974169962, 41.93424916675031, -85.62838974169962, 41.93424916675031], "geometry": {"coordinates": [-85.62838974169962, 41.93424916675031], "type": "Point"}, "id": "1596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62839276431396, 41.93438432950243, -85.62839276431396, 41.93438432950243], "geometry": {"coordinates": [-85.62839276431396, 41.93438432950243], "type": "Point"}, "id": "1597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62839578692831, 41.93451949196812, -85.62839578692831, 41.93451949196812], "geometry": {"coordinates": [-85.62839578692831, 41.93451949196812], "type": "Point"}, "id": "1598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62839880954265, 41.934654654147366, -85.62839880954265, 41.934654654147366], "geometry": {"coordinates": [-85.62839880954265, 41.934654654147366], "type": "Point"}, "id": "1599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62840183215698, 41.93478981604017, -85.62840183215698, 41.93478981604017], "geometry": {"coordinates": [-85.62840183215698, 41.93478981604017], "type": "Point"}, "id": "1600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62840485477133, 41.934924977646546, -85.62840485477133, 41.934924977646546], "geometry": {"coordinates": [-85.62840485477133, 41.934924977646546], "type": "Point"}, "id": "1601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.62840787738565, 41.93506013896649, -85.62840787738565, 41.93506013896649], "geometry": {"coordinates": [-85.62840787738565, 41.93506013896649], "type": "Point"}, "id": "1602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967773}, "type": "Feature"}, {"bbox": [-85.632278, 41.948613, -85.632278, 41.948613], "geometry": {"coordinates": [-85.632278, 41.948613], "type": "Point"}, "id": "1603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63246059261107, 41.948613975387914, -85.63246059261107, 41.948613975387914], "geometry": {"coordinates": [-85.63246059261107, 41.948613975387914], "type": "Point"}, "id": "1604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63264318522212, 41.948614950775806, -85.63264318522212, 41.948614950775806], "geometry": {"coordinates": [-85.63264318522212, 41.948614950775806], "type": "Point"}, "id": "1605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63282577783318, 41.94861592616369, -85.63282577783318, 41.94861592616369], "geometry": {"coordinates": [-85.63282577783318, 41.94861592616369], "type": "Point"}, "id": "1606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63300837044423, 41.94861690155155, -85.63300837044423, 41.94861690155155], "geometry": {"coordinates": [-85.63300837044423, 41.94861690155155], "type": "Point"}, "id": "1607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63319096305527, 41.94861787693941, -85.63319096305527, 41.94861787693941], "geometry": {"coordinates": [-85.63319096305527, 41.94861787693941], "type": "Point"}, "id": "1608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63337355404732, 41.948619006102945, -85.63337355404732, 41.948619006102945], "geometry": {"coordinates": [-85.63337355404732, 41.948619006102945], "type": "Point"}, "id": "1609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63355614480565, 41.94862015746889, -85.63355614480565, 41.94862015746889], "geometry": {"coordinates": [-85.63355614480565, 41.94862015746889], "type": "Point"}, "id": "1610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63373873546077, 41.948621317787904, -85.63373873546077, 41.948621317787904], "geometry": {"coordinates": [-85.63373873546077, 41.948621317787904], "type": "Point"}, "id": "1611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.6339213259285, 41.94862249436764, -85.6339213259285, 41.94862249436764], "geometry": {"coordinates": [-85.6339213259285, 41.94862249436764], "type": "Point"}, "id": "1612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.6341039194354, 41.94862337185474, -85.6341039194354, 41.94862337185474], "geometry": {"coordinates": [-85.6341039194354, 41.94862337185474], "type": "Point"}, "id": "1613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63428651295695, 41.948624247903176, -85.63428651295695, 41.948624247903176], "geometry": {"coordinates": [-85.63428651295695, 41.948624247903176], "type": "Point"}, "id": "1614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63446910647846, 41.948625123951594, -85.63446910647846, 41.948625123951594], "geometry": {"coordinates": [-85.63446910647846, 41.948625123951594], "type": "Point"}, "id": "1615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966581}, "type": "Feature"}, {"bbox": [-85.63204269999999, 41.9647947, -85.63204269999999, 41.9647947], "geometry": {"coordinates": [-85.63204269999999, 41.9647947], "type": "Point"}, "id": "1616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63204459772524, 41.96494043671537, -85.63204459772524, 41.96494043671537], "geometry": {"coordinates": [-85.63204459772524, 41.96494043671537], "type": "Point"}, "id": "1617", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63204649545048, 41.965086173097376, -85.63204649545048, 41.965086173097376], "geometry": {"coordinates": [-85.63204649545048, 41.965086173097376], "type": "Point"}, "id": "1618", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63204839317572, 41.96523190914602, -85.63204839317572, 41.96523190914602], "geometry": {"coordinates": [-85.63204839317572, 41.96523190914602], "type": "Point"}, "id": "1619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63205029090096, 41.965377644861306, -85.63205029090096, 41.965377644861306], "geometry": {"coordinates": [-85.63205029090096, 41.965377644861306], "type": "Point"}, "id": "1620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.63203084476066, 41.965521830095874, -85.63203084476066, 41.965521830095874], "geometry": {"coordinates": [-85.63203084476066, 41.965521830095874], "type": "Point"}, "id": "1621", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968022}, "type": "Feature"}, {"bbox": [-85.633274, 41.951159, -85.633274, 41.951159], "geometry": {"coordinates": [-85.633274, 41.951159], "type": "Point"}, "id": "1622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63327222222222, 41.95101833457499, -85.63327222222222, 41.95101833457499], "geometry": {"coordinates": [-85.63327222222222, 41.95101833457499], "type": "Point"}, "id": "1623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63327044444445, 41.950877668839574, -85.63327044444445, 41.950877668839574], "geometry": {"coordinates": [-85.63327044444445, 41.950877668839574], "type": "Point"}, "id": "1624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63326866666665, 41.95073700279374, -85.63326866666665, 41.95073700279374], "geometry": {"coordinates": [-85.63326866666665, 41.95073700279374], "type": "Point"}, "id": "1625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63326688888888, 41.95059633643748, -85.63326688888888, 41.95059633643748], "geometry": {"coordinates": [-85.63326688888888, 41.95059633643748], "type": "Point"}, "id": "1626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.6332651111111, 41.95045566977081, -85.6332651111111, 41.95045566977081], "geometry": {"coordinates": [-85.6332651111111, 41.95045566977081], "type": "Point"}, "id": "1627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63326333333333, 41.95031500279373, -85.63326333333333, 41.95031500279373], "geometry": {"coordinates": [-85.63326333333333, 41.95031500279373], "type": "Point"}, "id": "1628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63326155555555, 41.95017433550623, -85.63326155555555, 41.95017433550623], "geometry": {"coordinates": [-85.63326155555555, 41.95017433550623], "type": "Point"}, "id": "1629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.63325977777778, 41.95003366790832, -85.63325977777778, 41.95003366790832], "geometry": {"coordinates": [-85.63325977777778, 41.95003366790832], "type": "Point"}, "id": "1630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835854}, "type": "Feature"}, {"bbox": [-85.62111, 41.933254000000005, -85.62111, 41.933254000000005], "geometry": {"coordinates": [-85.62111, 41.933254000000005], "type": "Point"}, "id": "1631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211105611314, 41.933390794004325, -85.6211105611314, 41.933390794004325], "geometry": {"coordinates": [-85.6211105611314, 41.933390794004325], "type": "Point"}, "id": "1632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211111222628, 41.933527587715254, -85.6211111222628, 41.933527587715254], "geometry": {"coordinates": [-85.6211111222628, 41.933527587715254], "type": "Point"}, "id": "1633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211116833942, 41.93366438113282, -85.6211116833942, 41.93366438113282], "geometry": {"coordinates": [-85.6211116833942, 41.93366438113282], "type": "Point"}, "id": "1634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211122445256, 41.93380117425699, -85.6211122445256, 41.93380117425699], "geometry": {"coordinates": [-85.6211122445256, 41.93380117425699], "type": "Point"}, "id": "1635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.621112805657, 41.93393796708779, -85.621112805657, 41.93393796708779], "geometry": {"coordinates": [-85.621112805657, 41.93393796708779], "type": "Point"}, "id": "1636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111335984818, 41.93407475964063, -85.62111335984818, 41.93407475964063], "geometry": {"coordinates": [-85.62111335984818, 41.93407475964063], "type": "Point"}, "id": "1637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111389763035, 41.93421155193656, -85.62111389763035, 41.93421155193656], "geometry": {"coordinates": [-85.62111389763035, 41.93421155193656], "type": "Point"}, "id": "1638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111443900852, 41.93434834393118, -85.62111443900852, 41.93434834393118], "geometry": {"coordinates": [-85.62111443900852, 41.93434834393118], "type": "Point"}, "id": "1639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111499107198, 41.93448513560887, -85.62111499107198, 41.93448513560887], "geometry": {"coordinates": [-85.62111499107198, 41.93448513560887], "type": "Point"}, "id": "1640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111554313542, 41.93462192699317, -85.62111554313542, 41.93462192699317], "geometry": {"coordinates": [-85.62111554313542, 41.93462192699317], "type": "Point"}, "id": "1641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111609519887, 41.93475871808408, -85.62111609519887, 41.93475871808408], "geometry": {"coordinates": [-85.62111609519887, 41.93475871808408], "type": "Point"}, "id": "1642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111664726234, 41.934895508881624, -85.62111664726234, 41.934895508881624], "geometry": {"coordinates": [-85.62111664726234, 41.934895508881624], "type": "Point"}, "id": "1643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211171993258, 41.93503229938577, -85.6211171993258, 41.93503229938577], "geometry": {"coordinates": [-85.6211171993258, 41.93503229938577], "type": "Point"}, "id": "1644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111775138925, 41.935169089596535, -85.62111775138925, 41.935169089596535], "geometry": {"coordinates": [-85.62111775138925, 41.935169089596535], "type": "Point"}, "id": "1645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211183034527, 41.935305879513926, -85.6211183034527, 41.935305879513926], "geometry": {"coordinates": [-85.6211183034527, 41.935305879513926], "type": "Point"}, "id": "1646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111885551616, 41.93544266913792, -85.62111885551616, 41.93544266913792], "geometry": {"coordinates": [-85.62111885551616, 41.93544266913792], "type": "Point"}, "id": "1647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211194075796, 41.935579458468546, -85.6211194075796, 41.935579458468546], "geometry": {"coordinates": [-85.6211194075796, 41.935579458468546], "type": "Point"}, "id": "1648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62111995964305, 41.93571624750578, -85.62111995964305, 41.93571624750578], "geometry": {"coordinates": [-85.62111995964305, 41.93571624750578], "type": "Point"}, "id": "1649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112051170651, 41.935853036249625, -85.62112051170651, 41.935853036249625], "geometry": {"coordinates": [-85.62112051170651, 41.935853036249625], "type": "Point"}, "id": "1650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112106376995, 41.935989824700094, -85.62112106376995, 41.935989824700094], "geometry": {"coordinates": [-85.62112106376995, 41.935989824700094], "type": "Point"}, "id": "1651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211216158334, 41.93612661285717, -85.6211216158334, 41.93612661285717], "geometry": {"coordinates": [-85.6211216158334, 41.93612661285717], "type": "Point"}, "id": "1652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112216796523, 41.936263400720726, -85.62112216796523, 41.936263400720726], "geometry": {"coordinates": [-85.62112216796523, 41.936263400720726], "type": "Point"}, "id": "1653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112272025341, 41.936400188290534, -85.62112272025341, 41.936400188290534], "geometry": {"coordinates": [-85.62112272025341, 41.936400188290534], "type": "Point"}, "id": "1654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112327254162, 41.93653697556696, -85.62112327254162, 41.93653697556696], "geometry": {"coordinates": [-85.62112327254162, 41.93653697556696], "type": "Point"}, "id": "1655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112382482981, 41.936673762549994, -85.62112382482981, 41.936673762549994], "geometry": {"coordinates": [-85.62112382482981, 41.936673762549994], "type": "Point"}, "id": "1656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112437711802, 41.93681054923965, -85.62112437711802, 41.93681054923965], "geometry": {"coordinates": [-85.62112437711802, 41.93681054923965], "type": "Point"}, "id": "1657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112492940621, 41.93694733563592, -85.62112492940621, 41.93694733563592], "geometry": {"coordinates": [-85.62112492940621, 41.93694733563592], "type": "Point"}, "id": "1658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112548169439, 41.937084121738806, -85.62112548169439, 41.937084121738806], "geometry": {"coordinates": [-85.62112548169439, 41.937084121738806], "type": "Point"}, "id": "1659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211260339826, 41.93722090754831, -85.6211260339826, 41.93722090754831], "geometry": {"coordinates": [-85.6211260339826, 41.93722090754831], "type": "Point"}, "id": "1660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62112658627079, 41.93735769306442, -85.62112658627079, 41.93735769306442], "geometry": {"coordinates": [-85.62112658627079, 41.93735769306442], "type": "Point"}, "id": "1661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.621127138559, 41.93749447828715, -85.621127138559, 41.93749447828715], "geometry": {"coordinates": [-85.621127138559, 41.93749447828715], "type": "Point"}, "id": "1662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211276908472, 41.9376312632165, -85.6211276908472, 41.9376312632165], "geometry": {"coordinates": [-85.6211276908472, 41.9376312632165], "type": "Point"}, "id": "1663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211282431354, 41.937768047852444, -85.6211282431354, 41.937768047852444], "geometry": {"coordinates": [-85.6211282431354, 41.937768047852444], "type": "Point"}, "id": "1664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211287954236, 41.93790483219502, -85.6211287954236, 41.93790483219502], "geometry": {"coordinates": [-85.6211287954236, 41.93790483219502], "type": "Point"}, "id": "1665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.6211293477118, 41.9380416162442, -85.6211293477118, 41.9380416162442], "geometry": {"coordinates": [-85.6211293477118, 41.9380416162442], "type": "Point"}, "id": "1666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968119}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94924, -85.62008700000001, 41.94924], "geometry": {"coordinates": [-85.62008700000001, 41.94924], "type": "Point"}, "id": "1667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62027353845683, 41.94923987957492, -85.62027353845683, 41.94923987957492], "geometry": {"coordinates": [-85.62027353845683, 41.94923987957492], "type": "Point"}, "id": "1668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62046007691364, 41.94923975914983, -85.62046007691364, 41.94923975914983], "geometry": {"coordinates": [-85.62046007691364, 41.94923975914983], "type": "Point"}, "id": "1669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62064661537046, 41.949239638724755, -85.62064661537046, 41.949239638724755], "geometry": {"coordinates": [-85.62064661537046, 41.949239638724755], "type": "Point"}, "id": "1670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62083315382726, 41.949239518299656, -85.62083315382726, 41.949239518299656], "geometry": {"coordinates": [-85.62083315382726, 41.949239518299656], "type": "Point"}, "id": "1671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62101969228416, 41.94923939793364, -85.62101969228416, 41.94923939793364], "geometry": {"coordinates": [-85.62101969228416, 41.94923939793364], "type": "Point"}, "id": "1672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62120623074483, 41.94923928085483, -85.62120623074483, 41.94923928085483], "geometry": {"coordinates": [-85.62120623074483, 41.94923928085483], "type": "Point"}, "id": "1673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.6213927692055, 41.949239163776035, -85.6213927692055, 41.949239163776035], "geometry": {"coordinates": [-85.6213927692055, 41.949239163776035], "type": "Point"}, "id": "1674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62157930766617, 41.94923904669724, -85.62157930766617, 41.94923904669724], "geometry": {"coordinates": [-85.62157930766617, 41.94923904669724], "type": "Point"}, "id": "1675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62176584612685, 41.94923892961844, -85.62176584612685, 41.94923892961844], "geometry": {"coordinates": [-85.62176584612685, 41.94923892961844], "type": "Point"}, "id": "1676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.6219523845875, 41.94923881253963, -85.6219523845875, 41.94923881253963], "geometry": {"coordinates": [-85.6219523845875, 41.94923881253963], "type": "Point"}, "id": "1677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62213892304817, 41.949238695460835, -85.62213892304817, 41.949238695460835], "geometry": {"coordinates": [-85.62213892304817, 41.949238695460835], "type": "Point"}, "id": "1678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62232546150884, 41.94923857838203, -85.62232546150884, 41.94923857838203], "geometry": {"coordinates": [-85.62232546150884, 41.94923857838203], "type": "Point"}, "id": "1679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62251199996952, 41.949238461303224, -85.62251199996952, 41.949238461303224], "geometry": {"coordinates": [-85.62251199996952, 41.949238461303224], "type": "Point"}, "id": "1680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62269853843017, 41.949238344224426, -85.62269853843017, 41.949238344224426], "geometry": {"coordinates": [-85.62269853843017, 41.949238344224426], "type": "Point"}, "id": "1681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62288507690204, 41.94923823779373, -85.62288507690204, 41.94923823779373], "geometry": {"coordinates": [-85.62288507690204, 41.94923823779373], "type": "Point"}, "id": "1682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62307161538071, 41.949238137826704, -85.62307161538071, 41.949238137826704], "geometry": {"coordinates": [-85.62307161538071, 41.949238137826704], "type": "Point"}, "id": "1683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62325815382496, 41.94923800902014, -85.62325815382496, 41.94923800902014], "geometry": {"coordinates": [-85.62325815382496, 41.94923800902014], "type": "Point"}, "id": "1684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62344469226684, 41.949237879617876, -85.62344469226684, 41.949237879617876], "geometry": {"coordinates": [-85.62344469226684, 41.949237879617876], "type": "Point"}, "id": "1685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62363123076281, 41.94923779955548, -85.62363123076281, 41.94923779955548], "geometry": {"coordinates": [-85.62363123076281, 41.94923779955548], "type": "Point"}, "id": "1686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62381776920618, 41.94923766809781, -85.62381776920618, 41.94923766809781], "geometry": {"coordinates": [-85.62381776920618, 41.94923766809781], "type": "Point"}, "id": "1687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62400430767515, 41.94923756170883, -85.62400430767515, 41.94923756170883], "geometry": {"coordinates": [-85.62400430767515, 41.94923756170883], "type": "Point"}, "id": "1688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62419084616332, 41.94923747356806, -85.62419084616332, 41.94923747356806], "geometry": {"coordinates": [-85.62419084616332, 41.94923747356806], "type": "Point"}, "id": "1689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62437738462248, 41.949237355176045, -85.62437738462248, 41.949237355176045], "geometry": {"coordinates": [-85.62437738462248, 41.949237355176045], "type": "Point"}, "id": "1690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62456392308167, 41.94923723678402, -85.62456392308167, 41.94923723678402], "geometry": {"coordinates": [-85.62456392308167, 41.94923723678402], "type": "Point"}, "id": "1691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.62475046154083, 41.949237118392006, -85.62475046154083, 41.949237118392006], "geometry": {"coordinates": [-85.62475046154083, 41.949237118392006], "type": "Point"}, "id": "1692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965159}, "type": "Feature"}, {"bbox": [-85.620172, 41.945627, -85.620172, 41.945627], "geometry": {"coordinates": [-85.620172, 41.945627], "type": "Point"}, "id": "1693", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62012231586301, 41.94575575894601, -85.62012231586301, 41.94575575894601], "geometry": {"coordinates": [-85.62012231586301, 41.94575575894601], "type": "Point"}, "id": "1694", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008894317664, 41.9458869580169, -85.62008894317664, 41.9458869580169], "geometry": {"coordinates": [-85.62008894317664, 41.9458869580169], "type": "Point"}, "id": "1695", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62007975504197, 41.946020561747666, -85.62007975504197, 41.946020561747666], "geometry": {"coordinates": [-85.62007975504197, 41.946020561747666], "type": "Point"}, "id": "1696", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6200777593945, 41.94615450964219, -85.6200777593945, 41.94615450964219], "geometry": {"coordinates": [-85.6200777593945, 41.94615450964219], "type": "Point"}, "id": "1697", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62007576100676, 41.94628845723259, -85.62007576100676, 41.94628845723259], "geometry": {"coordinates": [-85.62007576100676, 41.94628845723259], "type": "Point"}, "id": "1698", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62007374221196, 41.94642240437238, -85.62007374221196, 41.94642240437238], "geometry": {"coordinates": [-85.62007374221196, 41.94642240437238], "type": "Point"}, "id": "1699", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62007232076682, 41.94655635083293, -85.62007232076682, 41.94655635083293], "geometry": {"coordinates": [-85.62007232076682, 41.94655635083293], "type": "Point"}, "id": "1700", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62007466206329, 41.94669029450623, -85.62007466206329, 41.94669029450623], "geometry": {"coordinates": [-85.62007466206329, 41.94669029450623], "type": "Point"}, "id": "1701", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62007700335975, 41.9468242378981, -85.62007700335975, 41.9468242378981], "geometry": {"coordinates": [-85.62007700335975, 41.9468242378981], "type": "Point"}, "id": "1702", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62007934465622, 41.94695818100856, -85.62007934465622, 41.94695818100856], "geometry": {"coordinates": [-85.62007934465622, 41.94695818100856], "type": "Point"}, "id": "1703", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008168595266, 41.947092123837606, -85.62008168595266, 41.947092123837606], "geometry": {"coordinates": [-85.62008168595266, 41.947092123837606], "type": "Point"}, "id": "1704", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008402724912, 41.947226066385234, -85.62008402724912, 41.947226066385234], "geometry": {"coordinates": [-85.62008402724912, 41.947226066385234], "type": "Point"}, "id": "1705", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008636854559, 41.94736000865146, -85.62008636854559, 41.94736000865146], "geometry": {"coordinates": [-85.62008636854559, 41.94736000865146], "type": "Point"}, "id": "1706", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008787538736, 41.947493955004724, -85.62008787538736, 41.947493955004724], "geometry": {"coordinates": [-85.62008787538736, 41.947493955004724], "type": "Point"}, "id": "1707", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008760407402, 41.94762790707223, -85.62008760407402, 41.94762790707223], "geometry": {"coordinates": [-85.62008760407402, 41.94762790707223], "type": "Point"}, "id": "1708", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.9477618584324, -85.62008700000001, 41.9477618584324], "geometry": {"coordinates": [-85.62008700000001, 41.9477618584324], "type": "Point"}, "id": "1709", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.947895810891914, -85.62008700000001, 41.947895810891914], "geometry": {"coordinates": [-85.62008700000001, 41.947895810891914], "type": "Point"}, "id": "1710", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94802976306997, -85.62008700000001, 41.94802976306997], "geometry": {"coordinates": [-85.62008700000001, 41.94802976306997], "type": "Point"}, "id": "1711", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94816371496656, -85.62008700000001, 41.94816371496656], "geometry": {"coordinates": [-85.62008700000001, 41.94816371496656], "type": "Point"}, "id": "1712", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94829766658169, -85.62008700000001, 41.94829766658169], "geometry": {"coordinates": [-85.62008700000001, 41.94829766658169], "type": "Point"}, "id": "1713", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.948431617915354, -85.62008700000001, 41.948431617915354], "geometry": {"coordinates": [-85.62008700000001, 41.948431617915354], "type": "Point"}, "id": "1714", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94856556896755, -85.62008700000001, 41.94856556896755], "geometry": {"coordinates": [-85.62008700000001, 41.94856556896755], "type": "Point"}, "id": "1715", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.9486995197383, -85.62008700000001, 41.9486995197383], "geometry": {"coordinates": [-85.62008700000001, 41.9486995197383], "type": "Point"}, "id": "1716", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94883347022756, -85.62008700000001, 41.94883347022756], "geometry": {"coordinates": [-85.62008700000001, 41.94883347022756], "type": "Point"}, "id": "1717", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94896742043537, -85.62008700000001, 41.94896742043537], "geometry": {"coordinates": [-85.62008700000001, 41.94896742043537], "type": "Point"}, "id": "1718", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94910137036172, -85.62008700000001, 41.94910137036172], "geometry": {"coordinates": [-85.62008700000001, 41.94910137036172], "type": "Point"}, "id": "1719", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008700000001, 41.94923532000661, -85.62008700000001, 41.94923532000661], "geometry": {"coordinates": [-85.62008700000001, 41.94923532000661], "type": "Point"}, "id": "1720", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62008973864705, 41.94936925332237, -85.62008973864705, 41.94936925332237], "geometry": {"coordinates": [-85.62008973864705, 41.94936925332237], "type": "Point"}, "id": "1721", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6200925764424, 41.949503185775775, -85.6200925764424, 41.949503185775775], "geometry": {"coordinates": [-85.6200925764424, 41.949503185775775], "type": "Point"}, "id": "1722", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62009541423775, 41.949637117947766, -85.62009541423775, 41.949637117947766], "geometry": {"coordinates": [-85.62009541423775, 41.949637117947766], "type": "Point"}, "id": "1723", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6200982520331, 41.949771049838375, -85.6200982520331, 41.949771049838375], "geometry": {"coordinates": [-85.6200982520331, 41.949771049838375], "type": "Point"}, "id": "1724", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62010108982845, 41.9499049814476, -85.62010108982845, 41.9499049814476], "geometry": {"coordinates": [-85.62010108982845, 41.9499049814476], "type": "Point"}, "id": "1725", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6201039276238, 41.95003891277541, -85.6201039276238, 41.95003891277541], "geometry": {"coordinates": [-85.6201039276238, 41.95003891277541], "type": "Point"}, "id": "1726", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6201057635246, 41.950172848766755, -85.6201057635246, 41.950172848766755], "geometry": {"coordinates": [-85.6201057635246, 41.950172848766755], "type": "Point"}, "id": "1727", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62010531600816, 41.950306795746656, -85.62010531600816, 41.950306795746656], "geometry": {"coordinates": [-85.62010531600816, 41.950306795746656], "type": "Point"}, "id": "1728", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62010486849175, 41.95044074244509, -85.62010486849175, 41.95044074244509], "geometry": {"coordinates": [-85.62010486849175, 41.95044074244509], "type": "Point"}, "id": "1729", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62010442097534, 41.950574688862055, -85.62010442097534, 41.950574688862055], "geometry": {"coordinates": [-85.62010442097534, 41.950574688862055], "type": "Point"}, "id": "1730", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62010397345891, 41.950708634997554, -85.62010397345891, 41.950708634997554], "geometry": {"coordinates": [-85.62010397345891, 41.950708634997554], "type": "Point"}, "id": "1731", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6201035259425, 41.95084258085159, -85.6201035259425, 41.95084258085159], "geometry": {"coordinates": [-85.6201035259425, 41.95084258085159], "type": "Point"}, "id": "1732", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62010307842607, 41.95097652642417, -85.62010307842607, 41.95097652642417], "geometry": {"coordinates": [-85.62010307842607, 41.95097652642417], "type": "Point"}, "id": "1733", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62010915484076, 41.95111037718131, -85.62010915484076, 41.95111037718131], "geometry": {"coordinates": [-85.62010915484076, 41.95111037718131], "type": "Point"}, "id": "1734", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62011661749114, 41.95124420757041, -85.62011661749114, 41.95124420757041], "geometry": {"coordinates": [-85.62011661749114, 41.95124420757041], "type": "Point"}, "id": "1735", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6201240801415, 41.951378037678516, -85.6201240801415, 41.951378037678516], "geometry": {"coordinates": [-85.6201240801415, 41.951378037678516], "type": "Point"}, "id": "1736", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62013154279184, 41.95151186750564, -85.62013154279184, 41.95151186750564], "geometry": {"coordinates": [-85.62013154279184, 41.95151186750564], "type": "Point"}, "id": "1737", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6201353752051, 41.95164577514766, -85.6201353752051, 41.95164577514766], "geometry": {"coordinates": [-85.6201353752051, 41.95164577514766], "type": "Point"}, "id": "1738", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62013832674882, 41.95177970145813, -85.62013832674882, 41.95177970145813], "geometry": {"coordinates": [-85.62013832674882, 41.95177970145813], "type": "Point"}, "id": "1739", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62014031621607, 41.95191361894058, -85.62014031621607, 41.95191361894058], "geometry": {"coordinates": [-85.62014031621607, 41.95191361894058], "type": "Point"}, "id": "1740", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62013306407012, 41.952047454043914, -85.62013306407012, 41.952047454043914], "geometry": {"coordinates": [-85.62013306407012, 41.952047454043914], "type": "Point"}, "id": "1741", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6201200111903, 41.95218099405416, -85.6201200111903, 41.95218099405416], "geometry": {"coordinates": [-85.6201200111903, 41.95218099405416], "type": "Point"}, "id": "1742", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62010200076759, 41.95231424807196, -85.62010200076759, 41.95231424807196], "geometry": {"coordinates": [-85.62010200076759, 41.95231424807196], "type": "Point"}, "id": "1743", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62007341230434, 41.952446492761965, -85.62007341230434, 41.952446492761965], "geometry": {"coordinates": [-85.62007341230434, 41.952446492761965], "type": "Point"}, "id": "1744", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.62003538873532, 41.95257729118856, -85.62003538873532, 41.95257729118856], "geometry": {"coordinates": [-85.62003538873532, 41.95257729118856], "type": "Point"}, "id": "1745", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61999095728524, 41.952707088879485, -85.61999095728524, 41.952707088879485], "geometry": {"coordinates": [-85.61999095728524, 41.952707088879485], "type": "Point"}, "id": "1746", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61993943849419, 41.95283543408433, -85.61993943849419, 41.95283543408433], "geometry": {"coordinates": [-85.61993943849419, 41.95283543408433], "type": "Point"}, "id": "1747", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61988791970315, 41.95296377903073, -85.61988791970315, 41.95296377903073], "geometry": {"coordinates": [-85.61988791970315, 41.95296377903073], "type": "Point"}, "id": "1748", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61981622970268, 41.95308643263608, -85.61981622970268, 41.95308643263608], "geometry": {"coordinates": [-85.61981622970268, 41.95308643263608], "type": "Point"}, "id": "1749", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61974031610941, 41.95320789436784, -85.61974031610941, 41.95320789436784], "geometry": {"coordinates": [-85.61974031610941, 41.95320789436784], "type": "Point"}, "id": "1750", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61965961880466, 41.95332749760453, -85.61965961880466, 41.95332749760453], "geometry": {"coordinates": [-85.61965961880466, 41.95332749760453], "type": "Point"}, "id": "1751", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61956894155794, 41.953443223850996, -85.61956894155794, 41.953443223850996], "geometry": {"coordinates": [-85.61956894155794, 41.953443223850996], "type": "Point"}, "id": "1752", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61947117312728, 41.953555338616994, -85.61947117312728, 41.953555338616994], "geometry": {"coordinates": [-85.61947117312728, 41.953555338616994], "type": "Point"}, "id": "1753", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61935887172915, 41.953660052110465, -85.61935887172915, 41.953660052110465], "geometry": {"coordinates": [-85.61935887172915, 41.953660052110465], "type": "Point"}, "id": "1754", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61924215406684, 41.953761886534274, -85.61924215406684, 41.953761886534274], "geometry": {"coordinates": [-85.61924215406684, 41.953761886534274], "type": "Point"}, "id": "1755", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61911727450993, 41.9538584001845, -85.61911727450993, 41.9538584001845], "geometry": {"coordinates": [-85.61911727450993, 41.9538584001845], "type": "Point"}, "id": "1756", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.618992394953, 41.95395491368859, -85.618992394953, 41.95395491368859], "geometry": {"coordinates": [-85.618992394953, 41.95395491368859], "type": "Point"}, "id": "1757", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61886191582204, 41.95404700464521, -85.61886191582204, 41.95404700464521], "geometry": {"coordinates": [-85.61886191582204, 41.95404700464521], "type": "Point"}, "id": "1758", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61872487175013, 41.95413391065231, -85.61872487175013, 41.95413391065231], "geometry": {"coordinates": [-85.61872487175013, 41.95413391065231], "type": "Point"}, "id": "1759", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61858380086862, 41.954216925802854, -85.61858380086862, 41.954216925802854], "geometry": {"coordinates": [-85.61858380086862, 41.954216925802854], "type": "Point"}, "id": "1760", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6184357576967, 41.954293204166554, -85.6184357576967, 41.954293204166554], "geometry": {"coordinates": [-85.6184357576967, 41.954293204166554], "type": "Point"}, "id": "1761", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61828600960462, 41.95436739213024, -85.61828600960462, 41.95436739213024], "geometry": {"coordinates": [-85.61828600960462, 41.95436739213024], "type": "Point"}, "id": "1762", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61812664059012, 41.95442978433656, -85.61812664059012, 41.95442978433656], "geometry": {"coordinates": [-85.61812664059012, 41.95442978433656], "type": "Point"}, "id": "1763", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.61796535337625, 41.95448916049669, -85.61796535337625, 41.95448916049669], "geometry": {"coordinates": [-85.61796535337625, 41.95448916049669], "type": "Point"}, "id": "1764", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17967415}, "type": "Feature"}, {"bbox": [-85.6355692, 41.9330969, -85.6355692, 41.9330969], "geometry": {"coordinates": [-85.6355692, 41.9330969], "type": "Point"}, "id": "1765", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150782}, "type": "Feature"}, {"bbox": [-85.63537495495, 41.93311909024792, -85.63537495495, 41.93311909024792], "geometry": {"coordinates": [-85.63537495495, 41.93311909024792], "type": "Point"}, "id": "1766", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150782}, "type": "Feature"}, {"bbox": [-85.6351797594161, 41.93313387645157, -85.6351797594161, 41.93313387645157], "geometry": {"coordinates": [-85.6351797594161, 41.93313387645157], "type": "Point"}, "id": "1767", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150782}, "type": "Feature"}, {"bbox": [-85.63498337970805, 41.93313943822603, -85.63498337970805, 41.93313943822603], "geometry": {"coordinates": [-85.63498337970805, 41.93313943822603], "type": "Point"}, "id": "1768", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150782}, "type": "Feature"}, {"bbox": [-85.6200474, 41.94473839999999, -85.6200474, 41.94473839999999], "geometry": {"coordinates": [-85.6200474, 41.94473839999999], "type": "Point"}, "id": "1769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004793155151, 41.94460427265143, -85.62004793155151, 41.94460427265143], "geometry": {"coordinates": [-85.62004793155151, 41.94460427265143], "type": "Point"}, "id": "1770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004846310302, 41.944470145020695, -85.62004846310302, 41.944470145020695], "geometry": {"coordinates": [-85.62004846310302, 41.944470145020695], "type": "Point"}, "id": "1771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004899465452, 41.9443360171078, -85.62004899465452, 41.9443360171078], "geometry": {"coordinates": [-85.62004899465452, 41.9443360171078], "type": "Point"}, "id": "1772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004952620602, 41.94420188891273, -85.62004952620602, 41.94420188891273], "geometry": {"coordinates": [-85.62004952620602, 41.94420188891273], "type": "Point"}, "id": "1773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62005005775752, 41.9440677604355, -85.62005005775752, 41.9440677604355], "geometry": {"coordinates": [-85.62005005775752, 41.9440677604355], "type": "Point"}, "id": "1774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62005058930902, 41.94393363167611, -85.62005058930902, 41.94393363167611], "geometry": {"coordinates": [-85.62005058930902, 41.94393363167611], "type": "Point"}, "id": "1775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62004697711406, 41.94379964964632, -85.62004697711406, 41.94379964964632], "geometry": {"coordinates": [-85.62004697711406, 41.94379964964632], "type": "Point"}, "id": "1776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62002928423256, 41.943666166890466, -85.62002928423256, 41.943666166890466], "geometry": {"coordinates": [-85.62002928423256, 41.943666166890466], "type": "Point"}, "id": "1777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62001159135106, 41.94353268385515, -85.62001159135106, 41.94353268385515], "geometry": {"coordinates": [-85.62001159135106, 41.94353268385515], "type": "Point"}, "id": "1778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61999389846956, 41.943399200540384, -85.61999389846956, 41.943399200540384], "geometry": {"coordinates": [-85.61999389846956, 41.943399200540384], "type": "Point"}, "id": "1779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61997620558806, 41.943265716946165, -85.61997620558806, 41.943265716946165], "geometry": {"coordinates": [-85.61997620558806, 41.943265716946165], "type": "Point"}, "id": "1780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61994695698299, 41.94313356312099, -85.61994695698299, 41.94313356312099], "geometry": {"coordinates": [-85.61994695698299, 41.94313356312099], "type": "Point"}, "id": "1781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61990958100985, 41.94300234447313, -85.61990958100985, 41.94300234447313], "geometry": {"coordinates": [-85.61990958100985, 41.94300234447313], "type": "Point"}, "id": "1782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61987220503673, 41.94287112555522, -85.61987220503673, 41.94287112555522], "geometry": {"coordinates": [-85.61987220503673, 41.94287112555522], "type": "Point"}, "id": "1783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61976972149968, 41.942765879672415, -85.61976972149968, 41.942765879672415], "geometry": {"coordinates": [-85.61976972149968, 41.942765879672415], "type": "Point"}, "id": "1784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.61961463643478, 41.942748847885206, -85.61961463643478, 41.942748847885206], "geometry": {"coordinates": [-85.61961463643478, 41.942748847885206], "type": "Point"}, "id": "1785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964043}, "type": "Feature"}, {"bbox": [-85.62005099999999, 41.94382999999999, -85.62005099999999, 41.94382999999999], "geometry": {"coordinates": [-85.62005099999999, 41.94382999999999], "type": "Point"}, "id": "1786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62023673328629, 41.94382538847237, -85.62023673328629, 41.94382538847237], "geometry": {"coordinates": [-85.62023673328629, 41.94382538847237], "type": "Point"}, "id": "1787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62042246657258, 41.943820776944406, -85.62042246657258, 41.943820776944406], "geometry": {"coordinates": [-85.62042246657258, 41.943820776944406], "type": "Point"}, "id": "1788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62060819985888, 41.94381616541611, -85.62060819985888, 41.94381616541611], "geometry": {"coordinates": [-85.62060819985888, 41.94381616541611], "type": "Point"}, "id": "1789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62079393314517, 41.943811553887485, -85.62079393314517, 41.943811553887485], "geometry": {"coordinates": [-85.62079393314517, 41.943811553887485], "type": "Point"}, "id": "1790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62097966643145, 41.94380694235852, -85.62097966643145, 41.94380694235852], "geometry": {"coordinates": [-85.62097966643145, 41.94380694235852], "type": "Point"}, "id": "1791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62116539971774, 41.94380233082922, -85.62116539971774, 41.94380233082922], "geometry": {"coordinates": [-85.62116539971774, 41.94380233082922], "type": "Point"}, "id": "1792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62135119420778, 41.94380234639617, -85.62135119420778, 41.94380234639617], "geometry": {"coordinates": [-85.62135119420778, 41.94380234639617], "type": "Point"}, "id": "1793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62153701381878, 41.943804222958676, -85.62153701381878, 41.943804222958676], "geometry": {"coordinates": [-85.62153701381878, 41.943804222958676], "type": "Point"}, "id": "1794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.6217228334298, 41.943806099521126, -85.6217228334298, 41.943806099521126], "geometry": {"coordinates": [-85.6217228334298, 41.943806099521126], "type": "Point"}, "id": "1795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62190866038269, 41.943807409311106, -85.62190866038269, 41.943807409311106], "geometry": {"coordinates": [-85.62190866038269, 41.943807409311106], "type": "Point"}, "id": "1796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62209449410877, 41.943808196229234, -85.62209449410877, 41.943808196229234], "geometry": {"coordinates": [-85.62209449410877, 41.943808196229234], "type": "Point"}, "id": "1797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62228032783486, 41.943808983147356, -85.62228032783486, 41.943808983147356], "geometry": {"coordinates": [-85.62228032783486, 41.943808983147356], "type": "Point"}, "id": "1798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62246616156092, 41.943809770065464, -85.62246616156092, 41.943809770065464], "geometry": {"coordinates": [-85.62246616156092, 41.943809770065464], "type": "Point"}, "id": "1799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62265199528701, 41.94381055698356, -85.62265199528701, 41.94381055698356], "geometry": {"coordinates": [-85.62265199528701, 41.94381055698356], "type": "Point"}, "id": "1800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.6228378290131, 41.94381134390165, -85.6228378290131, 41.94381134390165], "geometry": {"coordinates": [-85.6228378290131, 41.94381134390165], "type": "Point"}, "id": "1801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62302366273917, 41.94381213081973, -85.62302366273917, 41.94381213081973], "geometry": {"coordinates": [-85.62302366273917, 41.94381213081973], "type": "Point"}, "id": "1802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62320949646525, 41.9438129177378, -85.62320949646525, 41.9438129177378], "geometry": {"coordinates": [-85.62320949646525, 41.9438129177378], "type": "Point"}, "id": "1803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62339533019134, 41.94381370465586, -85.62339533019134, 41.94381370465586], "geometry": {"coordinates": [-85.62339533019134, 41.94381370465586], "type": "Point"}, "id": "1804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62358116391742, 41.94381449157391, -85.62358116391742, 41.94381449157391], "geometry": {"coordinates": [-85.62358116391742, 41.94381449157391], "type": "Point"}, "id": "1805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62376699764349, 41.943815278491954, -85.62376699764349, 41.943815278491954], "geometry": {"coordinates": [-85.62376699764349, 41.943815278491954], "type": "Point"}, "id": "1806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62395283136958, 41.94381606540999, -85.62395283136958, 41.94381606540999], "geometry": {"coordinates": [-85.62395283136958, 41.94381606540999], "type": "Point"}, "id": "1807", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62413866509567, 41.94381685232801, -85.62413866509567, 41.94381685232801], "geometry": {"coordinates": [-85.62413866509567, 41.94381685232801], "type": "Point"}, "id": "1808", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62432449882174, 41.94381763924602, -85.62432449882174, 41.94381763924602], "geometry": {"coordinates": [-85.62432449882174, 41.94381763924602], "type": "Point"}, "id": "1809", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62451033254781, 41.94381842616402, -85.62451033254781, 41.94381842616402], "geometry": {"coordinates": [-85.62451033254781, 41.94381842616402], "type": "Point"}, "id": "1810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62469616627392, 41.943819213082016, -85.62469616627392, 41.943819213082016], "geometry": {"coordinates": [-85.62469616627392, 41.943819213082016], "type": "Point"}, "id": "1811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965846}, "type": "Feature"}, {"bbox": [-85.62479199999999, 41.935214, -85.62479199999999, 41.935214], "geometry": {"coordinates": [-85.62479199999999, 41.935214], "type": "Point"}, "id": "1812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62497410388058, 41.935213114950386, -85.62497410388058, 41.935213114950386], "geometry": {"coordinates": [-85.62497410388058, 41.935213114950386], "type": "Point"}, "id": "1813", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62515620776115, 41.935212229900756, -85.62515620776115, 41.935212229900756], "geometry": {"coordinates": [-85.62515620776115, 41.935212229900756], "type": "Point"}, "id": "1814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62533831164174, 41.93521134485111, -85.62533831164174, 41.93521134485111], "geometry": {"coordinates": [-85.62533831164174, 41.93521134485111], "type": "Point"}, "id": "1815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62552041552233, 41.93521045980146, -85.62552041552233, 41.93521045980146], "geometry": {"coordinates": [-85.62552041552233, 41.93521045980146], "type": "Point"}, "id": "1816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.6257025194029, 41.935209574751795, -85.6257025194029, 41.935209574751795], "geometry": {"coordinates": [-85.6257025194029, 41.935209574751795], "type": "Point"}, "id": "1817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62588462336596, 41.93520869914541, -85.62588462336596, 41.93520869914541], "geometry": {"coordinates": [-85.62588462336596, 41.93520869914541], "type": "Point"}, "id": "1818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62606672733659, 41.9352078244102, -85.62606672733659, 41.9352078244102], "geometry": {"coordinates": [-85.62606672733659, 41.9352078244102], "type": "Point"}, "id": "1819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62624883130722, 41.93520694967496, -85.62624883130722, 41.93520694967496], "geometry": {"coordinates": [-85.62624883130722, 41.93520694967496], "type": "Point"}, "id": "1820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62643093528246, 41.93520607546772, -85.62643093528246, 41.93520607546772], "geometry": {"coordinates": [-85.62643093528246, 41.93520607546772], "type": "Point"}, "id": "1821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62661303928509, 41.9352052044256, -85.62661303928509, 41.9352052044256], "geometry": {"coordinates": [-85.62661303928509, 41.9352052044256], "type": "Point"}, "id": "1822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62679514328772, 41.93520433338347, -85.62679514328772, 41.93520433338347], "geometry": {"coordinates": [-85.62679514328772, 41.93520433338347], "type": "Point"}, "id": "1823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62697724729036, 41.93520346234133, -85.62697724729036, 41.93520346234133], "geometry": {"coordinates": [-85.62697724729036, 41.93520346234133], "type": "Point"}, "id": "1824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62715935125742, 41.93520258720173, -85.62715935125742, 41.93520258720173], "geometry": {"coordinates": [-85.62715935125742, 41.93520258720173], "type": "Point"}, "id": "1825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62734145519917, 41.93520170914358, -85.62734145519917, 41.93520170914358], "geometry": {"coordinates": [-85.62734145519917, 41.93520170914358], "type": "Point"}, "id": "1826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62752355914091, 41.9352008310854, -85.62752355914091, 41.9352008310854], "geometry": {"coordinates": [-85.62752355914091, 41.9352008310854], "type": "Point"}, "id": "1827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62770566308266, 41.93519995302722, -85.62770566308266, 41.93519995302722], "geometry": {"coordinates": [-85.62770566308266, 41.93519995302722], "type": "Point"}, "id": "1828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62788776701238, 41.93519907358932, -85.62788776701238, 41.93519907358932], "geometry": {"coordinates": [-85.62788776701238, 41.93519907358932], "type": "Point"}, "id": "1829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62806987093954, 41.935198193860195, -85.62806987093954, 41.935198193860195], "geometry": {"coordinates": [-85.62806987093954, 41.935198193860195], "type": "Point"}, "id": "1830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.6282519675329, 41.93519672611387, -85.6282519675329, 41.93519672611387], "geometry": {"coordinates": [-85.6282519675329, 41.93519672611387], "type": "Point"}, "id": "1831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62843406341058, 41.93519520834357, -85.62843406341058, 41.93519520834357], "geometry": {"coordinates": [-85.62843406341058, 41.93519520834357], "type": "Point"}, "id": "1832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.6286161686014, 41.935194487762736, -85.6286161686014, 41.935194487762736], "geometry": {"coordinates": [-85.6286161686014, 41.935194487762736], "type": "Point"}, "id": "1833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62879827379221, 41.9351937671819, -85.62879827379221, 41.9351937671819], "geometry": {"coordinates": [-85.62879827379221, 41.9351937671819], "type": "Point"}, "id": "1834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62898037898303, 41.93519304660105, -85.62898037898303, 41.93519304660105], "geometry": {"coordinates": [-85.62898037898303, 41.93519304660105], "type": "Point"}, "id": "1835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62916248421946, 41.935192332444124, -85.62916248421946, 41.935192332444124], "geometry": {"coordinates": [-85.62916248421946, 41.935192332444124], "type": "Point"}, "id": "1836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62934458947964, 41.93519162162942, -85.62934458947964, 41.93519162162942], "geometry": {"coordinates": [-85.62934458947964, 41.93519162162942], "type": "Point"}, "id": "1837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62952669473984, 41.93519091081471, -85.62952669473984, 41.93519091081471], "geometry": {"coordinates": [-85.62952669473984, 41.93519091081471], "type": "Point"}, "id": "1838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964767}, "type": "Feature"}, {"bbox": [-85.62689999999999, 41.930199, -85.62689999999999, 41.930199], "geometry": {"coordinates": [-85.62689999999999, 41.930199], "type": "Point"}, "id": "1839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62708651796946, 41.930196769555074, -85.62708651796946, 41.930196769555074], "geometry": {"coordinates": [-85.62708651796946, 41.930196769555074], "type": "Point"}, "id": "1840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62727303593891, 41.93019453911007, -85.62727303593891, 41.93019453911007], "geometry": {"coordinates": [-85.62727303593891, 41.93019453911007], "type": "Point"}, "id": "1841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62745955390838, 41.93019230866498, -85.62745955390838, 41.93019230866498], "geometry": {"coordinates": [-85.62745955390838, 41.93019230866498], "type": "Point"}, "id": "1842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62764607187782, 41.93019007821982, -85.62764607187782, 41.93019007821982], "geometry": {"coordinates": [-85.62764607187782, 41.93019007821982], "type": "Point"}, "id": "1843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62783259029915, 41.930187868808154, -85.62783259029915, 41.930187868808154], "geometry": {"coordinates": [-85.62783259029915, 41.930187868808154], "type": "Point"}, "id": "1844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62801910881275, 41.93018566369141, -85.62801910881275, 41.93018566369141], "geometry": {"coordinates": [-85.62801910881275, 41.93018566369141], "type": "Point"}, "id": "1845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62820562732632, 41.9301834585746, -85.62820562732632, 41.9301834585746], "geometry": {"coordinates": [-85.62820562732632, 41.9301834585746], "type": "Point"}, "id": "1846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62839214713382, 41.93018131671278, -85.62839214713382, 41.93018131671278], "geometry": {"coordinates": [-85.62839214713382, 41.93018131671278], "type": "Point"}, "id": "1847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62857866946933, 41.93017929843701, -85.62857866946933, 41.93017929843701], "geometry": {"coordinates": [-85.62857866946933, 41.93017929843701], "type": "Point"}, "id": "1848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62876519180482, 41.930177280161175, -85.62876519180482, 41.930177280161175], "geometry": {"coordinates": [-85.62876519180482, 41.930177280161175], "type": "Point"}, "id": "1849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62895171414031, 41.930175261885275, -85.62895171414031, 41.930175261885275], "geometry": {"coordinates": [-85.62895171414031, 41.930175261885275], "type": "Point"}, "id": "1850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.6291382364758, 41.93017324360931, -85.6291382364758, 41.93017324360931], "geometry": {"coordinates": [-85.6291382364758, 41.93017324360931], "type": "Point"}, "id": "1851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62932475881128, 41.930171225333275, -85.62932475881128, 41.930171225333275], "geometry": {"coordinates": [-85.62932475881128, 41.930171225333275], "type": "Point"}, "id": "1852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62951128114679, 41.93016920705718, -85.62951128114679, 41.93016920705718], "geometry": {"coordinates": [-85.62951128114679, 41.93016920705718], "type": "Point"}, "id": "1853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.6296978074503, 41.93016755346502, -85.6296978074503, 41.93016755346502], "geometry": {"coordinates": [-85.6296978074503, 41.93016755346502], "type": "Point"}, "id": "1854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.62988434926095, 41.930167325069775, -85.62988434926095, 41.930167325069775], "geometry": {"coordinates": [-85.62988434926095, 41.930167325069775], "type": "Point"}, "id": "1855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63007089107161, 41.93016709667454, -85.63007089107161, 41.93016709667454], "geometry": {"coordinates": [-85.63007089107161, 41.93016709667454], "type": "Point"}, "id": "1856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63025743288226, 41.9301668682793, -85.63025743288226, 41.9301668682793], "geometry": {"coordinates": [-85.63025743288226, 41.9301668682793], "type": "Point"}, "id": "1857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63044397466928, 41.93016662952317, -85.63044397466928, 41.93016662952317], "geometry": {"coordinates": [-85.63044397466928, 41.93016662952317], "type": "Point"}, "id": "1858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63063051644617, 41.93016638634878, -85.63063051644617, 41.93016638634878], "geometry": {"coordinates": [-85.63063051644617, 41.93016638634878], "type": "Point"}, "id": "1859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63081705822309, 41.93016614317438, -85.63081705822309, 41.93016614317438], "geometry": {"coordinates": [-85.63081705822309, 41.93016614317438], "type": "Point"}, "id": "1860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150818}, "type": "Feature"}, {"bbox": [-85.63099699999998, 41.92920600000001, -85.63099699999998, 41.92920600000001], "geometry": {"coordinates": [-85.63099699999998, 41.92920600000001], "type": "Point"}, "id": "1861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63099793754475, 41.92934235682351, -85.63099793754475, 41.92934235682351], "geometry": {"coordinates": [-85.63099793754475, 41.92934235682351], "type": "Point"}, "id": "1862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63099887508953, 41.929478713355536, -85.63099887508953, 41.929478713355536], "geometry": {"coordinates": [-85.63099887508953, 41.929478713355536], "type": "Point"}, "id": "1863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6309998126343, 41.9296150695961, -85.6309998126343, 41.9296150695961], "geometry": {"coordinates": [-85.6309998126343, 41.9296150695961], "type": "Point"}, "id": "1864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100075017907, 41.929751425545206, -85.63100075017907, 41.929751425545206], "geometry": {"coordinates": [-85.63100075017907, 41.929751425545206], "type": "Point"}, "id": "1865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100168772384, 41.92988778120284, -85.63100168772384, 41.92988778120284], "geometry": {"coordinates": [-85.63100168772384, 41.92988778120284], "type": "Point"}, "id": "1866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100262526862, 41.930024136568996, -85.63100262526862, 41.930024136568996], "geometry": {"coordinates": [-85.63100262526862, 41.930024136568996], "type": "Point"}, "id": "1867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6310035628134, 41.93016049164369, -85.6310035628134, 41.93016049164369], "geometry": {"coordinates": [-85.6310035628134, 41.93016049164369], "type": "Point"}, "id": "1868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100449332592, 41.930296846453565, -85.63100449332592, 41.930296846453565], "geometry": {"coordinates": [-85.63100449332592, 41.930296846453565], "type": "Point"}, "id": "1869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.631005423548, 41.930433200973084, -85.631005423548, 41.930433200973084], "geometry": {"coordinates": [-85.631005423548, 41.930433200973084], "type": "Point"}, "id": "1870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100635377006, 41.93056955520113, -85.63100635377006, 41.93056955520113], "geometry": {"coordinates": [-85.63100635377006, 41.93056955520113], "type": "Point"}, "id": "1871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100728399212, 41.9307059091377, -85.63100728399212, 41.9307059091377], "geometry": {"coordinates": [-85.63100728399212, 41.9307059091377], "type": "Point"}, "id": "1872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6310082142142, 41.930842262782804, -85.6310082142142, 41.930842262782804], "geometry": {"coordinates": [-85.6310082142142, 41.930842262782804], "type": "Point"}, "id": "1873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63100914443629, 41.93097861613644, -85.63100914443629, 41.93097861613644], "geometry": {"coordinates": [-85.63100914443629, 41.93097861613644], "type": "Point"}, "id": "1874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101007465836, 41.93111496919861, -85.63101007465836, 41.93111496919861], "geometry": {"coordinates": [-85.63101007465836, 41.93111496919861], "type": "Point"}, "id": "1875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101101291636, 41.93125132193879, -85.63101101291636, 41.93125132193879], "geometry": {"coordinates": [-85.63101101291636, 41.93125132193879], "type": "Point"}, "id": "1876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101195374334, 41.931387674377746, -85.63101195374334, 41.931387674377746], "geometry": {"coordinates": [-85.63101195374334, 41.931387674377746], "type": "Point"}, "id": "1877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101289457033, 41.93152402652523, -85.63101289457033, 41.93152402652523], "geometry": {"coordinates": [-85.63101289457033, 41.93152402652523], "type": "Point"}, "id": "1878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101383539733, 41.93166037838125, -85.63101383539733, 41.93166037838125], "geometry": {"coordinates": [-85.63101383539733, 41.93166037838125], "type": "Point"}, "id": "1879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101477622429, 41.9317967299458, -85.63101477622429, 41.9317967299458], "geometry": {"coordinates": [-85.63101477622429, 41.9317967299458], "type": "Point"}, "id": "1880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101571705127, 41.93193308121887, -85.63101571705127, 41.93193308121887], "geometry": {"coordinates": [-85.63101571705127, 41.93193308121887], "type": "Point"}, "id": "1881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101665787826, 41.932069432200485, -85.63101665787826, 41.932069432200485], "geometry": {"coordinates": [-85.63101665787826, 41.932069432200485], "type": "Point"}, "id": "1882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101759932589, 41.93220578288824, -85.63101759932589, 41.93220578288824], "geometry": {"coordinates": [-85.63101759932589, 41.93220578288824], "type": "Point"}, "id": "1883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101854161738, 41.93234213328132, -85.63101854161738, 41.93234213328132], "geometry": {"coordinates": [-85.63101854161738, 41.93234213328132], "type": "Point"}, "id": "1884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63101948390887, 41.9324784833829, -85.63101948390887, 41.9324784833829], "geometry": {"coordinates": [-85.63101948390887, 41.9324784833829], "type": "Point"}, "id": "1885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6310204262004, 41.932614833193036, -85.6310204262004, 41.932614833193036], "geometry": {"coordinates": [-85.6310204262004, 41.932614833193036], "type": "Point"}, "id": "1886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102136849187, 41.93275118271169, -85.63102136849187, 41.93275118271169], "geometry": {"coordinates": [-85.63102136849187, 41.93275118271169], "type": "Point"}, "id": "1887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102231078337, 41.932887531938874, -85.63102231078337, 41.932887531938874], "geometry": {"coordinates": [-85.63102231078337, 41.932887531938874], "type": "Point"}, "id": "1888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102325307486, 41.93302388087458, -85.63102325307486, 41.93302388087458], "geometry": {"coordinates": [-85.63102325307486, 41.93302388087458], "type": "Point"}, "id": "1889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102419536636, 41.93316022951882, -85.63102419536636, 41.93316022951882], "geometry": {"coordinates": [-85.63102419536636, 41.93316022951882], "type": "Point"}, "id": "1890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102513706825, 41.93329657787384, -85.63102513706825, 41.93329657787384], "geometry": {"coordinates": [-85.63102513706825, 41.93329657787384], "type": "Point"}, "id": "1891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102607876723, 41.9334329259374, -85.63102607876723, 41.9334329259374], "geometry": {"coordinates": [-85.63102607876723, 41.9334329259374], "type": "Point"}, "id": "1892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102702046619, 41.933569273709494, -85.63102702046619, 41.933569273709494], "geometry": {"coordinates": [-85.63102702046619, 41.933569273709494], "type": "Point"}, "id": "1893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102796216518, 41.933705621190114, -85.63102796216518, 41.933705621190114], "geometry": {"coordinates": [-85.63102796216518, 41.933705621190114], "type": "Point"}, "id": "1894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63102890386413, 41.933841968379255, -85.63102890386413, 41.933841968379255], "geometry": {"coordinates": [-85.63102890386413, 41.933841968379255], "type": "Point"}, "id": "1895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.6310298455631, 41.933978315276924, -85.6310298455631, 41.933978315276924], "geometry": {"coordinates": [-85.6310298455631, 41.933978315276924], "type": "Point"}, "id": "1896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63103078726208, 41.93411466188312, -85.63103078726208, 41.93411466188312], "geometry": {"coordinates": [-85.63103078726208, 41.93411466188312], "type": "Point"}, "id": "1897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63103172666835, 41.934251008206594, -85.63103172666835, 41.934251008206594], "geometry": {"coordinates": [-85.63103172666835, 41.934251008206594], "type": "Point"}, "id": "1898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.63103266333417, 41.93438735424903, -85.63103266333417, 41.93438735424903], "geometry": {"coordinates": [-85.63103266333417, 41.93438735424903], "type": "Point"}, "id": "1899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966084}, "type": "Feature"}, {"bbox": [-85.62863749999998, 41.9446764, -85.62863749999998, 41.9446764], "geometry": {"coordinates": [-85.62863749999998, 41.9446764], "type": "Point"}, "id": "1900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62863997104559, 41.94481346259269, -85.62863997104559, 41.94481346259269], "geometry": {"coordinates": [-85.62863997104559, 41.94481346259269], "type": "Point"}, "id": "1901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62864244209118, 41.944950524890736, -85.62864244209118, 41.944950524890736], "geometry": {"coordinates": [-85.62864244209118, 41.944950524890736], "type": "Point"}, "id": "1902", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62864491313678, 41.94508758689412, -85.62864491313678, 41.94508758689412], "geometry": {"coordinates": [-85.62864491313678, 41.94508758689412], "type": "Point"}, "id": "1903", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62864738418237, 41.94522464860285, -85.62864738418237, 41.94522464860285], "geometry": {"coordinates": [-85.62864738418237, 41.94522464860285], "type": "Point"}, "id": "1904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62864613148537, 41.94536129151687, -85.62864613148537, 41.94536129151687], "geometry": {"coordinates": [-85.62864613148537, 41.94536129151687], "type": "Point"}, "id": "1905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62858562572129, 41.945490384668105, -85.62858562572129, 41.945490384668105], "geometry": {"coordinates": [-85.62858562572129, 41.945490384668105], "type": "Point"}, "id": "1906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62848571376949, 41.94560556584523, -85.62848571376949, 41.94560556584523], "geometry": {"coordinates": [-85.62848571376949, 41.94560556584523], "type": "Point"}, "id": "1907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62837892259685, 41.94571727137437, -85.62837892259685, 41.94571727137437], "geometry": {"coordinates": [-85.62837892259685, 41.94571727137437], "type": "Point"}, "id": "1908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.6282717907973, 41.94582880462053, -85.6282717907973, 41.94582880462053], "geometry": {"coordinates": [-85.6282717907973, 41.94582880462053], "type": "Point"}, "id": "1909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62816465899776, 41.94594033767157, -85.62816465899776, 41.94594033767157], "geometry": {"coordinates": [-85.62816465899776, 41.94594033767157], "type": "Point"}, "id": "1910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62805752719821, 41.94605187052749, -85.62805752719821, 41.94605187052749], "geometry": {"coordinates": [-85.62805752719821, 41.94605187052749], "type": "Point"}, "id": "1911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62795039539866, 41.946163403188294, -85.62795039539866, 41.946163403188294], "geometry": {"coordinates": [-85.62795039539866, 41.946163403188294], "type": "Point"}, "id": "1912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.6278432635991, 41.946274935653975, -85.6278432635991, 41.946274935653975], "geometry": {"coordinates": [-85.6278432635991, 41.946274935653975], "type": "Point"}, "id": "1913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.62773613179957, 41.946386467924555, -85.62773613179957, 41.946386467924555], "geometry": {"coordinates": [-85.62773613179957, 41.946386467924555], "type": "Point"}, "id": "1914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967561}, "type": "Feature"}, {"bbox": [-85.63773199999999, 41.932761, -85.63773199999999, 41.932761], "geometry": {"coordinates": [-85.63773199999999, 41.932761], "type": "Point"}, "id": "1915", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63772713621371, 41.93289575013338, -85.63772713621371, 41.93289575013338], "geometry": {"coordinates": [-85.63772713621371, 41.93289575013338], "type": "Point"}, "id": "1916", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63772227242744, 41.9330304999821, -85.63772227242744, 41.9330304999821], "geometry": {"coordinates": [-85.63772227242744, 41.9330304999821], "type": "Point"}, "id": "1917", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63771740864115, 41.93316524954614, -85.63771740864115, 41.93316524954614], "geometry": {"coordinates": [-85.63771740864115, 41.93316524954614], "type": "Point"}, "id": "1918", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63771254485486, 41.93329999882551, -85.63771254485486, 41.93329999882551], "geometry": {"coordinates": [-85.63771254485486, 41.93329999882551], "type": "Point"}, "id": "1919", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63770768106859, 41.9334347478202, -85.63770768106859, 41.9334347478202], "geometry": {"coordinates": [-85.63770768106859, 41.9334347478202], "type": "Point"}, "id": "1920", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63770281728232, 41.93356949653021, -85.63770281728232, 41.93356949653021], "geometry": {"coordinates": [-85.63770281728232, 41.93356949653021], "type": "Point"}, "id": "1921", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63769795349604, 41.93370424495555, -85.63769795349604, 41.93370424495555], "geometry": {"coordinates": [-85.63769795349604, 41.93370424495555], "type": "Point"}, "id": "1922", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63769308970974, 41.93383899309622, -85.63769308970974, 41.93383899309622], "geometry": {"coordinates": [-85.63769308970974, 41.93383899309622], "type": "Point"}, "id": "1923", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63768822592347, 41.933973740952204, -85.63768822592347, 41.933973740952204], "geometry": {"coordinates": [-85.63768822592347, 41.933973740952204], "type": "Point"}, "id": "1924", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6376864132185, 41.93410852941667, -85.6376864132185, 41.93410852941667], "geometry": {"coordinates": [-85.6376864132185, 41.93410852941667], "type": "Point"}, "id": "1925", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6376840305583, 41.934243307643754, -85.6376840305583, 41.934243307643754], "geometry": {"coordinates": [-85.6376840305583, 41.934243307643754], "type": "Point"}, "id": "1926", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63767759976385, 41.93437801829653, -85.63767759976385, 41.93437801829653], "geometry": {"coordinates": [-85.63767759976385, 41.93437801829653], "type": "Point"}, "id": "1927", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63767116896939, 41.93451272866477, -85.63767116896939, 41.93451272866477], "geometry": {"coordinates": [-85.63767116896939, 41.93451272866477], "type": "Point"}, "id": "1928", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63766473817492, 41.934647438748485, -85.63766473817492, 41.934647438748485], "geometry": {"coordinates": [-85.63766473817492, 41.934647438748485], "type": "Point"}, "id": "1929", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63765830738045, 41.93478214854768, -85.63765830738045, 41.93478214854768], "geometry": {"coordinates": [-85.63765830738045, 41.93478214854768], "type": "Point"}, "id": "1930", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.637651876586, 41.93491685806236, -85.637651876586, 41.93491685806236], "geometry": {"coordinates": [-85.637651876586, 41.93491685806236], "type": "Point"}, "id": "1931", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63764562823843, 41.935051571787355, -85.63764562823843, 41.935051571787355], "geometry": {"coordinates": [-85.63764562823843, 41.935051571787355], "type": "Point"}, "id": "1932", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63764006383828, 41.935186302077824, -85.63764006383828, 41.935186302077824], "geometry": {"coordinates": [-85.63764006383828, 41.935186302077824], "type": "Point"}, "id": "1933", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6376344994381, 41.93532103208368, -85.6376344994381, 41.93532103208368], "geometry": {"coordinates": [-85.6376344994381, 41.93532103208368], "type": "Point"}, "id": "1934", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63762893503792, 41.93545576180492, -85.63762893503792, 41.93545576180492], "geometry": {"coordinates": [-85.63762893503792, 41.93545576180492], "type": "Point"}, "id": "1935", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63762337063774, 41.93559049124155, -85.63762337063774, 41.93559049124155], "geometry": {"coordinates": [-85.63762337063774, 41.93559049124155], "type": "Point"}, "id": "1936", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63761780623759, 41.93572522039356, -85.63761780623759, 41.93572522039356], "geometry": {"coordinates": [-85.63761780623759, 41.93572522039356], "type": "Point"}, "id": "1937", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6376122418374, 41.93585994926095, -85.6376122418374, 41.93585994926095], "geometry": {"coordinates": [-85.6376122418374, 41.93585994926095], "type": "Point"}, "id": "1938", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63760667743723, 41.93599467784373, -85.63760667743723, 41.93599467784373], "geometry": {"coordinates": [-85.63760667743723, 41.93599467784373], "type": "Point"}, "id": "1939", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63760111303706, 41.9361294061419, -85.63760111303706, 41.9361294061419], "geometry": {"coordinates": [-85.63760111303706, 41.9361294061419], "type": "Point"}, "id": "1940", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6375955486369, 41.93626413415545, -85.6375955486369, 41.93626413415545], "geometry": {"coordinates": [-85.6375955486369, 41.93626413415545], "type": "Point"}, "id": "1941", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63758998423671, 41.93639886188439, -85.63758998423671, 41.93639886188439], "geometry": {"coordinates": [-85.63758998423671, 41.93639886188439], "type": "Point"}, "id": "1942", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63758441983656, 41.93653358932871, -85.63758441983656, 41.93653358932871], "geometry": {"coordinates": [-85.63758441983656, 41.93653358932871], "type": "Point"}, "id": "1943", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63757885543637, 41.936668316488415, -85.63757885543637, 41.936668316488415], "geometry": {"coordinates": [-85.63757885543637, 41.936668316488415], "type": "Point"}, "id": "1944", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6375732910362, 41.93680304336351, -85.6375732910362, 41.93680304336351], "geometry": {"coordinates": [-85.6375732910362, 41.93680304336351], "type": "Point"}, "id": "1945", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63756772663604, 41.936937769953985, -85.63756772663604, 41.936937769953985], "geometry": {"coordinates": [-85.63756772663604, 41.936937769953985], "type": "Point"}, "id": "1946", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63755998396289, 41.9370724169021, -85.63755998396289, 41.9370724169021], "geometry": {"coordinates": [-85.63755998396289, 41.9370724169021], "type": "Point"}, "id": "1947", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63754782416655, 41.937206902643865, -85.63754782416655, 41.937206902643865], "geometry": {"coordinates": [-85.63754782416655, 41.937206902643865], "type": "Point"}, "id": "1948", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63753566437019, 41.93734138810205, -85.63753566437019, 41.93734138810205], "geometry": {"coordinates": [-85.63753566437019, 41.93734138810205], "type": "Point"}, "id": "1949", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63752350457385, 41.937475873276625, -85.63752350457385, 41.937475873276625], "geometry": {"coordinates": [-85.63752350457385, 41.937475873276625], "type": "Point"}, "id": "1950", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63751134477751, 41.937610358167596, -85.63751134477751, 41.937610358167596], "geometry": {"coordinates": [-85.63751134477751, 41.937610358167596], "type": "Point"}, "id": "1951", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63749918498115, 41.93774484277496, -85.63749918498115, 41.93774484277496], "geometry": {"coordinates": [-85.63749918498115, 41.93774484277496], "type": "Point"}, "id": "1952", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63748702518481, 41.93787932709873, -85.63748702518481, 41.93787932709873], "geometry": {"coordinates": [-85.63748702518481, 41.93787932709873], "type": "Point"}, "id": "1953", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63747486538846, 41.938013811138894, -85.63747486538846, 41.938013811138894], "geometry": {"coordinates": [-85.63747486538846, 41.938013811138894], "type": "Point"}, "id": "1954", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6374627055921, 41.938148294895456, -85.6374627055921, 41.938148294895456], "geometry": {"coordinates": [-85.6374627055921, 41.938148294895456], "type": "Point"}, "id": "1955", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63745272026762, 41.938282874991515, -85.63745272026762, 41.938282874991515], "geometry": {"coordinates": [-85.63745272026762, 41.938282874991515], "type": "Point"}, "id": "1956", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63744327121366, 41.938417478632815, -85.63744327121366, 41.938417478632815], "geometry": {"coordinates": [-85.63744327121366, 41.938417478632815], "type": "Point"}, "id": "1957", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63743382215971, 41.93855208198999, -85.63743382215971, 41.93855208198999], "geometry": {"coordinates": [-85.63743382215971, 41.93855208198999], "type": "Point"}, "id": "1958", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63742437310574, 41.93868668506306, -85.63742437310574, 41.93868668506306], "geometry": {"coordinates": [-85.63742437310574, 41.93868668506306], "type": "Point"}, "id": "1959", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6374085672405, 41.93882095403029, -85.6374085672405, 41.93882095403029], "geometry": {"coordinates": [-85.6374085672405, 41.93882095403029], "type": "Point"}, "id": "1960", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63739250005128, 41.93895520899167, -85.63739250005128, 41.93895520899167], "geometry": {"coordinates": [-85.63739250005128, 41.93895520899167], "type": "Point"}, "id": "1961", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63737643286206, 41.93908946367042, -85.63737643286206, 41.93908946367042], "geometry": {"coordinates": [-85.63737643286206, 41.93908946367042], "type": "Point"}, "id": "1962", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63736036567285, 41.93922371806651, -85.63736036567285, 41.93922371806651], "geometry": {"coordinates": [-85.63736036567285, 41.93922371806651], "type": "Point"}, "id": "1963", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63734429848361, 41.939357972179955, -85.63734429848361, 41.939357972179955], "geometry": {"coordinates": [-85.63734429848361, 41.939357972179955], "type": "Point"}, "id": "1964", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63732824252448, 41.93949222675332, -85.63732824252448, 41.93949222675332], "geometry": {"coordinates": [-85.63732824252448, 41.93949222675332], "type": "Point"}, "id": "1965", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63731220033574, 41.939626481953916, -85.63731220033574, 41.939626481953916], "geometry": {"coordinates": [-85.63731220033574, 41.939626481953916], "type": "Point"}, "id": "1966", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.6372961187308, 41.939760734264375, -85.6372961187308, 41.939760734264375], "geometry": {"coordinates": [-85.6372961187308, 41.939760734264375], "type": "Point"}, "id": "1967", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63728003712588, 41.9398949862922, -85.63728003712588, 41.9398949862922], "geometry": {"coordinates": [-85.63728003712588, 41.9398949862922], "type": "Point"}, "id": "1968", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63726395552095, 41.94002923803739, -85.63726395552095, 41.94002923803739], "geometry": {"coordinates": [-85.63726395552095, 41.94002923803739], "type": "Point"}, "id": "1969", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63724148434481, 41.94016287295166, -85.63724148434481, 41.94016287295166], "geometry": {"coordinates": [-85.63724148434481, 41.94016287295166], "type": "Point"}, "id": "1970", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63721098324102, 41.940295732756496, -85.63721098324102, 41.940295732756496], "geometry": {"coordinates": [-85.63721098324102, 41.940295732756496], "type": "Point"}, "id": "1971", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63718048213723, 41.94042859228451, -85.63718048213723, 41.94042859228451], "geometry": {"coordinates": [-85.63718048213723, 41.94042859228451], "type": "Point"}, "id": "1972", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63714998103343, 41.94056145153572, -85.63714998103343, 41.94056145153572], "geometry": {"coordinates": [-85.63714998103343, 41.94056145153572], "type": "Point"}, "id": "1973", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63711947992964, 41.9406943105101, -85.63711947992964, 41.9406943105101], "geometry": {"coordinates": [-85.63711947992964, 41.9406943105101], "type": "Point"}, "id": "1974", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63708897882584, 41.94082716920767, -85.63708897882584, 41.94082716920767], "geometry": {"coordinates": [-85.63708897882584, 41.94082716920767], "type": "Point"}, "id": "1975", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63705847772205, 41.94096002762843, -85.63705847772205, 41.94096002762843], "geometry": {"coordinates": [-85.63705847772205, 41.94096002762843], "type": "Point"}, "id": "1976", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63702797661827, 41.941092885772356, -85.63702797661827, 41.941092885772356], "geometry": {"coordinates": [-85.63702797661827, 41.941092885772356], "type": "Point"}, "id": "1977", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63701595866844, 41.941227045185315, -85.63701595866844, 41.941227045185315], "geometry": {"coordinates": [-85.63701595866844, 41.941227045185315], "type": "Point"}, "id": "1978", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694418}, "type": "Feature"}, {"bbox": [-85.63928000000001, 41.92922099999999, -85.63928000000001, 41.92922099999999], "geometry": {"coordinates": [-85.63928000000001, 41.92922099999999], "type": "Point"}, "id": "1979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63933180797066, 41.92935051997282, -85.63933180797066, 41.92935051997282], "geometry": {"coordinates": [-85.63933180797066, 41.92935051997282], "type": "Point"}, "id": "1980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63938332416284, 41.92948010397628, -85.63938332416284, 41.92948010397628], "geometry": {"coordinates": [-85.63938332416284, 41.92948010397628], "type": "Point"}, "id": "1981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63943468245247, 41.92960972251038, -85.63943468245247, 41.92960972251038], "geometry": {"coordinates": [-85.63943468245247, 41.92960972251038], "type": "Point"}, "id": "1982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6394860356893, 41.92973934188906, -85.6394860356893, 41.92973934188906], "geometry": {"coordinates": [-85.6394860356893, 41.92973934188906], "type": "Point"}, "id": "1983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63953738134533, 41.929868962666646, -85.63953738134533, 41.929868962666646], "geometry": {"coordinates": [-85.63953738134533, 41.929868962666646], "type": "Point"}, "id": "1984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63958872700132, 41.929998583180854, -85.63958872700132, 41.929998583180854], "geometry": {"coordinates": [-85.63958872700132, 41.929998583180854], "type": "Point"}, "id": "1985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63964007265734, 41.93012820343167, -85.63964007265734, 41.93012820343167], "geometry": {"coordinates": [-85.63964007265734, 41.93012820343167], "type": "Point"}, "id": "1986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63969141831335, 41.9302578234191, -85.63969141831335, 41.9302578234191], "geometry": {"coordinates": [-85.63969141831335, 41.9302578234191], "type": "Point"}, "id": "1987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63973857279565, 41.93038830769996, -85.63973857279565, 41.93038830769996], "geometry": {"coordinates": [-85.63973857279565, 41.93038830769996], "type": "Point"}, "id": "1988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63978717280733, 41.93051848315388, -85.63978717280733, 41.93051848315388], "geometry": {"coordinates": [-85.63978717280733, 41.93051848315388], "type": "Point"}, "id": "1989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63984007439693, 41.93064775558707, -85.63984007439693, 41.93064775558707], "geometry": {"coordinates": [-85.63984007439693, 41.93064775558707], "type": "Point"}, "id": "1990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63989297598653, 41.930777027758275, -85.63989297598653, 41.930777027758275], "geometry": {"coordinates": [-85.63989297598653, 41.930777027758275], "type": "Point"}, "id": "1991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63994587757612, 41.93090629966749, -85.63994587757612, 41.93090629966749], "geometry": {"coordinates": [-85.63994587757612, 41.93090629966749], "type": "Point"}, "id": "1992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999877916574, 41.93103557131473, -85.63999877916574, 41.93103557131473], "geometry": {"coordinates": [-85.63999877916574, 41.93103557131473], "type": "Point"}, "id": "1993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64004868568186, 41.93116545408978, -85.64004868568186, 41.93116545408978], "geometry": {"coordinates": [-85.64004868568186, 41.93116545408978], "type": "Point"}, "id": "1994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64009050780777, 41.9312969526436, -85.64009050780777, 41.9312969526436], "geometry": {"coordinates": [-85.64009050780777, 41.9312969526436], "type": "Point"}, "id": "1995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64013232993366, 41.93142845092633, -85.64013232993366, 41.93142845092633], "geometry": {"coordinates": [-85.64013232993366, 41.93142845092633], "type": "Point"}, "id": "1996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64015394435863, 41.9315623234811, -85.64015394435863, 41.9315623234811], "geometry": {"coordinates": [-85.64015394435863, 41.9315623234811], "type": "Point"}, "id": "1997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64016863733082, 41.931697009071236, -85.64016863733082, 41.931697009071236], "geometry": {"coordinates": [-85.64016863733082, 41.931697009071236], "type": "Point"}, "id": "1998", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64017966964151, 41.93183175543782, -85.64017966964151, 41.93183175543782], "geometry": {"coordinates": [-85.64017966964151, 41.93183175543782], "type": "Point"}, "id": "1999", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64017310587198, 41.9319667950266, -85.64017310587198, 41.9319667950266], "geometry": {"coordinates": [-85.64017310587198, 41.9319667950266], "type": "Point"}, "id": "2000", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64016654210243, 41.93210183432949, -85.64016654210243, 41.93210183432949], "geometry": {"coordinates": [-85.64016654210243, 41.93210183432949], "type": "Point"}, "id": "2001", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6401599783329, 41.93223687334648, -85.6401599783329, 41.93223687334648], "geometry": {"coordinates": [-85.6401599783329, 41.93223687334648], "type": "Point"}, "id": "2002", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64015341456336, 41.93237191207759, -85.64015341456336, 41.93237191207759], "geometry": {"coordinates": [-85.64015341456336, 41.93237191207759], "type": "Point"}, "id": "2003", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64014685079381, 41.9325069505228, -85.64014685079381, 41.9325069505228], "geometry": {"coordinates": [-85.64014685079381, 41.9325069505228], "type": "Point"}, "id": "2004", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64014028702428, 41.93264198868213, -85.64014028702428, 41.93264198868213], "geometry": {"coordinates": [-85.64014028702428, 41.93264198868213], "type": "Point"}, "id": "2005", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64013356881941, 41.93277702228547, -85.64013356881941, 41.93277702228547], "geometry": {"coordinates": [-85.64013356881941, 41.93277702228547], "type": "Point"}, "id": "2006", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64012663744369, 41.93291204970693, -85.64012663744369, 41.93291204970693], "geometry": {"coordinates": [-85.64012663744369, 41.93291204970693], "type": "Point"}, "id": "2007", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64011970555126, 41.93304707682786, -85.64011970555126, 41.93304707682786], "geometry": {"coordinates": [-85.64011970555126, 41.93304707682786], "type": "Point"}, "id": "2008", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6401127736588, 41.93318210366294, -85.6401127736588, 41.93318210366294], "geometry": {"coordinates": [-85.6401127736588, 41.93318210366294], "type": "Point"}, "id": "2009", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64010584176636, 41.93331713021218, -85.64010584176636, 41.93331713021218], "geometry": {"coordinates": [-85.64010584176636, 41.93331713021218], "type": "Point"}, "id": "2010", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64009890987391, 41.933452156475575, -85.64009890987391, 41.933452156475575], "geometry": {"coordinates": [-85.64009890987391, 41.933452156475575], "type": "Point"}, "id": "2011", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64009197798147, 41.9335871824531, -85.64009197798147, 41.9335871824531], "geometry": {"coordinates": [-85.64009197798147, 41.9335871824531], "type": "Point"}, "id": "2012", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64008504608903, 41.933722208144786, -85.64008504608903, 41.933722208144786], "geometry": {"coordinates": [-85.64008504608903, 41.933722208144786], "type": "Point"}, "id": "2013", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007811419657, 41.93385723355063, -85.64007811419657, 41.93385723355063], "geometry": {"coordinates": [-85.64007811419657, 41.93385723355063], "type": "Point"}, "id": "2014", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007283541758, 41.93399228302789, -85.64007283541758, 41.93399228302789], "geometry": {"coordinates": [-85.64007283541758, 41.93399228302789], "type": "Point"}, "id": "2015", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007257479024, 41.93412740615735, -85.64007257479024, 41.93412740615735], "geometry": {"coordinates": [-85.64007257479024, 41.93412740615735], "type": "Point"}, "id": "2016", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007231416288, 41.934262529000534, -85.64007231416288, 41.934262529000534], "geometry": {"coordinates": [-85.64007231416288, 41.934262529000534], "type": "Point"}, "id": "2017", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007205353553, 41.934397651557475, -85.64007205353553, 41.934397651557475], "geometry": {"coordinates": [-85.64007205353553, 41.934397651557475], "type": "Point"}, "id": "2018", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007179290819, 41.93453277382813, -85.64007179290819, 41.93453277382813], "geometry": {"coordinates": [-85.64007179290819, 41.93453277382813], "type": "Point"}, "id": "2019", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007153228086, 41.93466789581254, -85.64007153228086, 41.93466789581254], "geometry": {"coordinates": [-85.64007153228086, 41.93466789581254], "type": "Point"}, "id": "2020", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007127165351, 41.93480301751066, -85.64007127165351, 41.93480301751066], "geometry": {"coordinates": [-85.64007127165351, 41.93480301751066], "type": "Point"}, "id": "2021", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64007101102617, 41.93493813892253, -85.64007101102617, 41.93493813892253], "geometry": {"coordinates": [-85.64007101102617, 41.93493813892253], "type": "Point"}, "id": "2022", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64006825754554, 41.935073235213665, -85.64006825754554, 41.935073235213665], "geometry": {"coordinates": [-85.64006825754554, 41.935073235213665], "type": "Point"}, "id": "2023", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64006365399946, 41.93520831278786, -85.64006365399946, 41.93520831278786], "geometry": {"coordinates": [-85.64006365399946, 41.93520831278786], "type": "Point"}, "id": "2024", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64005905045335, 41.93534339007596, -85.64005905045335, 41.93534339007596], "geometry": {"coordinates": [-85.64005905045335, 41.93534339007596], "type": "Point"}, "id": "2025", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64005444690726, 41.93547846707797, -85.64005444690726, 41.93547846707797], "geometry": {"coordinates": [-85.64005444690726, 41.93547846707797], "type": "Point"}, "id": "2026", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64004984336115, 41.9356135437939, -85.64004984336115, 41.9356135437939], "geometry": {"coordinates": [-85.64004984336115, 41.9356135437939], "type": "Point"}, "id": "2027", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64004523981505, 41.935748620223755, -85.64004523981505, 41.935748620223755], "geometry": {"coordinates": [-85.64004523981505, 41.935748620223755], "type": "Point"}, "id": "2028", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64004063626895, 41.93588369636752, -85.64004063626895, 41.93588369636752], "geometry": {"coordinates": [-85.64004063626895, 41.93588369636752], "type": "Point"}, "id": "2029", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64003603272285, 41.9360187722252, -85.64003603272285, 41.9360187722252], "geometry": {"coordinates": [-85.64003603272285, 41.9360187722252], "type": "Point"}, "id": "2030", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64003142917674, 41.9361538477968, -85.64003142917674, 41.9361538477968], "geometry": {"coordinates": [-85.64003142917674, 41.9361538477968], "type": "Point"}, "id": "2031", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64002682563064, 41.936288923082316, -85.64002682563064, 41.936288923082316], "geometry": {"coordinates": [-85.64002682563064, 41.936288923082316], "type": "Point"}, "id": "2032", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64002222208455, 41.936423998081736, -85.64002222208455, 41.936423998081736], "geometry": {"coordinates": [-85.64002222208455, 41.936423998081736], "type": "Point"}, "id": "2033", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64001761853844, 41.93655907279508, -85.64001761853844, 41.93655907279508], "geometry": {"coordinates": [-85.64001761853844, 41.93655907279508], "type": "Point"}, "id": "2034", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64001301499233, 41.93669414722233, -85.64001301499233, 41.93669414722233], "geometry": {"coordinates": [-85.64001301499233, 41.93669414722233], "type": "Point"}, "id": "2035", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64000841144625, 41.93682922136351, -85.64000841144625, 41.93682922136351], "geometry": {"coordinates": [-85.64000841144625, 41.93682922136351], "type": "Point"}, "id": "2036", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.64000380790014, 41.9369642952186, -85.64000380790014, 41.9369642952186], "geometry": {"coordinates": [-85.64000380790014, 41.9369642952186], "type": "Point"}, "id": "2037", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.640001121503, 41.93709939580944, -85.640001121503, 41.93709939580944], "geometry": {"coordinates": [-85.640001121503, 41.93709939580944], "type": "Point"}, "id": "2038", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999884316945, 41.937234501865646, -85.63999884316945, 41.937234501865646], "geometry": {"coordinates": [-85.63999884316945, 41.937234501865646], "type": "Point"}, "id": "2039", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999656483591, 41.937369607635624, -85.63999656483591, 41.937369607635624], "geometry": {"coordinates": [-85.63999656483591, 41.937369607635624], "type": "Point"}, "id": "2040", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999428650239, 41.93750471311939, -85.63999428650239, 41.93750471311939], "geometry": {"coordinates": [-85.63999428650239, 41.93750471311939], "type": "Point"}, "id": "2041", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63999200816883, 41.93763981831692, -85.63999200816883, 41.93763981831692], "geometry": {"coordinates": [-85.63999200816883, 41.93763981831692], "type": "Point"}, "id": "2042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6399897298353, 41.93777492322822, -85.6399897298353, 41.93777492322822], "geometry": {"coordinates": [-85.6399897298353, 41.93777492322822], "type": "Point"}, "id": "2043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63998745150175, 41.9379100278533, -85.63998745150175, 41.9379100278533], "geometry": {"coordinates": [-85.63998745150175, 41.9379100278533], "type": "Point"}, "id": "2044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63998517316823, 41.93804513219216, -85.63998517316823, 41.93804513219216], "geometry": {"coordinates": [-85.63998517316823, 41.93804513219216], "type": "Point"}, "id": "2045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63998278725046, 41.93818023472722, -85.63998278725046, 41.93818023472722], "geometry": {"coordinates": [-85.63998278725046, 41.93818023472722], "type": "Point"}, "id": "2046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63997817817953, 41.938315305616584, -85.63997817817953, 41.938315305616584], "geometry": {"coordinates": [-85.63997817817953, 41.938315305616584], "type": "Point"}, "id": "2047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63997356910858, 41.938450376219855, -85.63997356910858, 41.938450376219855], "geometry": {"coordinates": [-85.63997356910858, 41.938450376219855], "type": "Point"}, "id": "2048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63996896003763, 41.938585446537054, -85.63996896003763, 41.938585446537054], "geometry": {"coordinates": [-85.63996896003763, 41.938585446537054], "type": "Point"}, "id": "2049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63996435096671, 41.938720516568154, -85.63996435096671, 41.938720516568154], "geometry": {"coordinates": [-85.63996435096671, 41.938720516568154], "type": "Point"}, "id": "2050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63995974189577, 41.938855586313174, -85.63995974189577, 41.938855586313174], "geometry": {"coordinates": [-85.63995974189577, 41.938855586313174], "type": "Point"}, "id": "2051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63995513282482, 41.93899065577211, -85.63995513282482, 41.93899065577211], "geometry": {"coordinates": [-85.63995513282482, 41.93899065577211], "type": "Point"}, "id": "2052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63995052375388, 41.93912572494495, -85.63995052375388, 41.93912572494495], "geometry": {"coordinates": [-85.63995052375388, 41.93912572494495], "type": "Point"}, "id": "2053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63994591468293, 41.93926079383171, -85.63994591468293, 41.93926079383171], "geometry": {"coordinates": [-85.63994591468293, 41.93926079383171], "type": "Point"}, "id": "2054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.639941305612, 41.93939586243238, -85.639941305612, 41.93939586243238], "geometry": {"coordinates": [-85.639941305612, 41.93939586243238], "type": "Point"}, "id": "2055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63993669654104, 41.939530930746955, -85.63993669654104, 41.939530930746955], "geometry": {"coordinates": [-85.63993669654104, 41.939530930746955], "type": "Point"}, "id": "2056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6399320874701, 41.93966599877545, -85.6399320874701, 41.93966599877545], "geometry": {"coordinates": [-85.6399320874701, 41.93966599877545], "type": "Point"}, "id": "2057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63992747839917, 41.93980106651786, -85.63992747839917, 41.93980106651786], "geometry": {"coordinates": [-85.63992747839917, 41.93980106651786], "type": "Point"}, "id": "2058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.6399228616603, 41.93993613382891, -85.6399228616603, 41.93993613382891], "geometry": {"coordinates": [-85.6399228616603, 41.93993613382891], "type": "Point"}, "id": "2059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966039}, "type": "Feature"}, {"bbox": [-85.63116059999999, 41.9651699, -85.63116059999999, 41.9651699], "geometry": {"coordinates": [-85.63116059999999, 41.9651699], "type": "Point"}, "id": "2060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968020}, "type": "Feature"}, {"bbox": [-85.63094523695844, 41.96517948866195, -85.63094523695844, 41.96517948866195], "geometry": {"coordinates": [-85.63094523695844, 41.96517948866195], "type": "Point"}, "id": "2061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968020}, "type": "Feature"}, {"bbox": [-85.63073702255205, 41.96514653056617, -85.63073702255205, 41.96514653056617], "geometry": {"coordinates": [-85.63073702255205, 41.96514653056617], "type": "Point"}, "id": "2062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968020}, "type": "Feature"}, {"bbox": [-85.63056990193465, 41.96504845992521, -85.63056990193465, 41.96504845992521], "geometry": {"coordinates": [-85.63056990193465, 41.96504845992521], "type": "Point"}, "id": "2063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968020}, "type": "Feature"}, {"bbox": [-85.6382347, 41.9426146, -85.6382347, 41.9426146], "geometry": {"coordinates": [-85.6382347, 41.9426146], "type": "Point"}, "id": "2064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63823588432082, 41.94276594394016, -85.63823588432082, 41.94276594394016], "geometry": {"coordinates": [-85.63823588432082, 41.94276594394016], "type": "Point"}, "id": "2065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63823710304536, 41.9429172873714, -85.63823710304536, 41.9429172873714], "geometry": {"coordinates": [-85.63823710304536, 41.9429172873714], "type": "Point"}, "id": "2066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63823829640675, 41.94306863055444, -85.63823829640675, 41.94306863055444], "geometry": {"coordinates": [-85.63823829640675, 41.94306863055444], "type": "Point"}, "id": "2067", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63823947230507, 41.94321997345468, -85.63823947230507, 41.94321997345468], "geometry": {"coordinates": [-85.63823947230507, 41.94321997345468], "type": "Point"}, "id": "2068", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63824064820338, 41.943371315995684, -85.63824064820338, 41.943371315995684], "geometry": {"coordinates": [-85.63824064820338, 41.943371315995684], "type": "Point"}, "id": "2069", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.63824182410168, 41.94352265817746, -85.63824182410168, 41.94352265817746], "geometry": {"coordinates": [-85.63824182410168, 41.94352265817746], "type": "Point"}, "id": "2070", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967397}, "type": "Feature"}, {"bbox": [-85.642213, 41.940043, -85.642213, 41.940043], "geometry": {"coordinates": [-85.642213, 41.940043], "type": "Point"}, "id": "2071", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64239815486638, 41.9400357519462, -85.64239815486638, 41.9400357519462], "geometry": {"coordinates": [-85.64239815486638, 41.9400357519462], "type": "Point"}, "id": "2072", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64258330973277, 41.94002850389157, -85.64258330973277, 41.94002850389157], "geometry": {"coordinates": [-85.64258330973277, 41.94002850389157], "type": "Point"}, "id": "2073", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64276846459914, 41.940021255836115, -85.64276846459914, 41.940021255836115], "geometry": {"coordinates": [-85.64276846459914, 41.940021255836115], "type": "Point"}, "id": "2074", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64295361946553, 41.94001400777983, -85.64295361946553, 41.94001400777983], "geometry": {"coordinates": [-85.64295361946553, 41.94001400777983], "type": "Point"}, "id": "2075", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.643138687708, 41.94000570699341, -85.643138687708, 41.94000570699341], "geometry": {"coordinates": [-85.643138687708, 41.94000570699341], "type": "Point"}, "id": "2076", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64332364880858, 41.939996104123445, -85.64332364880858, 41.939996104123445], "geometry": {"coordinates": [-85.64332364880858, 41.939996104123445], "type": "Point"}, "id": "2077", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64350860990913, 41.939986501252015, -85.64350860990913, 41.939986501252015], "geometry": {"coordinates": [-85.64350860990913, 41.939986501252015], "type": "Point"}, "id": "2078", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64369357100969, 41.93997689837915, -85.64369357100969, 41.93997689837915], "geometry": {"coordinates": [-85.64369357100969, 41.93997689837915], "type": "Point"}, "id": "2079", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64387853211025, 41.939967295504836, -85.64387853211025, 41.939967295504836], "geometry": {"coordinates": [-85.64387853211025, 41.939967295504836], "type": "Point"}, "id": "2080", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64406349321081, 41.93995769262908, -85.64406349321081, 41.93995769262908], "geometry": {"coordinates": [-85.64406349321081, 41.93995769262908], "type": "Point"}, "id": "2081", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64424845404882, 41.939948086955035, -85.64424845404882, 41.939948086955035], "geometry": {"coordinates": [-85.64424845404882, 41.939948086955035], "type": "Point"}, "id": "2082", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64443345114131, 41.939938912677476, -85.64443345114131, 41.939938912677476], "geometry": {"coordinates": [-85.64443345114131, 41.939938912677476], "type": "Point"}, "id": "2083", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64461856443144, 41.939931099082884, -85.64461856443144, 41.939931099082884], "geometry": {"coordinates": [-85.64461856443144, 41.939931099082884], "type": "Point"}, "id": "2084", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64480367772157, 41.93992328548733, -85.64480367772157, 41.93992328548733], "geometry": {"coordinates": [-85.64480367772157, 41.93992328548733], "type": "Point"}, "id": "2085", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64498879101168, 41.939915471890835, -85.64498879101168, 41.939915471890835], "geometry": {"coordinates": [-85.64498879101168, 41.939915471890835], "type": "Point"}, "id": "2086", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64517390430183, 41.93990765829337, -85.64517390430183, 41.93990765829337], "geometry": {"coordinates": [-85.64517390430183, 41.93990765829337], "type": "Point"}, "id": "2087", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64535901766554, 41.939899845660825, -85.64535901766554, 41.939899845660825], "geometry": {"coordinates": [-85.64535901766554, 41.939899845660825], "type": "Point"}, "id": "2088", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64554413257383, 41.93989205330237, -85.64554413257383, 41.93989205330237], "geometry": {"coordinates": [-85.64554413257383, 41.93989205330237], "type": "Point"}, "id": "2089", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64572924748215, 41.939884260942975, -85.64572924748215, 41.939884260942975], "geometry": {"coordinates": [-85.64572924748215, 41.939884260942975], "type": "Point"}, "id": "2090", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64591462054005, 41.939882418799364, -85.64591462054005, 41.939882418799364], "geometry": {"coordinates": [-85.64591462054005, 41.939882418799364], "type": "Point"}, "id": "2091", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64610002503696, 41.939881256057355, -85.64610002503696, 41.939881256057355], "geometry": {"coordinates": [-85.64610002503696, 41.939881256057355], "type": "Point"}, "id": "2092", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64628536810146, 41.93987783517568, -85.64628536810146, 41.93987783517568], "geometry": {"coordinates": [-85.64628536810146, 41.93987783517568], "type": "Point"}, "id": "2093", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.64647068405074, 41.939873417588, -85.64647068405074, 41.939873417588], "geometry": {"coordinates": [-85.64647068405074, 41.939873417588], "type": "Point"}, "id": "2094", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 382320149}, "type": "Feature"}, {"bbox": [-85.6412224, 41.931841000000006, -85.6412224, 41.931841000000006], "geometry": {"coordinates": [-85.6412224, 41.931841000000006], "type": "Point"}, "id": "2095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.64102508880983, 41.93178669495036, -85.64102508880983, 41.93178669495036], "geometry": {"coordinates": [-85.64102508880983, 41.93178669495036], "type": "Point"}, "id": "2096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.64081453635467, 41.93177869489745, -85.64081453635467, 41.93177869489745], "geometry": {"coordinates": [-85.64081453635467, 41.93177869489745], "type": "Point"}, "id": "2097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.64060314639825, 41.931787076704076, -85.64060314639825, 41.931787076704076], "geometry": {"coordinates": [-85.64060314639825, 41.931787076704076], "type": "Point"}, "id": "2098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.64039175644184, 41.9317954585096, -85.64039175644184, 41.9317954585096], "geometry": {"coordinates": [-85.64039175644184, 41.9317954585096], "type": "Point"}, "id": "2099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967609}, "type": "Feature"}, {"bbox": [-85.63466799999999, 41.94987499999999, -85.63466799999999, 41.94987499999999], "geometry": {"coordinates": [-85.63466799999999, 41.94987499999999], "type": "Point"}, "id": "2100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63485727843627, 41.94987566958891, -85.63485727843627, 41.94987566958891], "geometry": {"coordinates": [-85.63485727843627, 41.94987566958891], "type": "Point"}, "id": "2101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63504655687257, 41.949876339177834, -85.63504655687257, 41.949876339177834], "geometry": {"coordinates": [-85.63504655687257, 41.949876339177834], "type": "Point"}, "id": "2102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63523583530883, 41.94987700876674, -85.63523583530883, 41.94987700876674], "geometry": {"coordinates": [-85.63523583530883, 41.94987700876674], "type": "Point"}, "id": "2103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63542511374513, 41.94987767835565, -85.63542511374513, 41.94987767835565], "geometry": {"coordinates": [-85.63542511374513, 41.94987767835565], "type": "Point"}, "id": "2104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63561439228474, 41.94987833154525, -85.63561439228474, 41.94987833154525], "geometry": {"coordinates": [-85.63561439228474, 41.94987833154525], "type": "Point"}, "id": "2105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63580367084727, 41.9498789810942, -85.63580367084727, 41.9498789810942], "geometry": {"coordinates": [-85.63580367084727, 41.9498789810942], "type": "Point"}, "id": "2106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.6359929494098, 41.94987963064313, -85.6359929494098, 41.94987963064313], "geometry": {"coordinates": [-85.6359929494098, 41.94987963064313], "type": "Point"}, "id": "2107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63618222797234, 41.949880280192076, -85.63618222797234, 41.949880280192076], "geometry": {"coordinates": [-85.63618222797234, 41.949880280192076], "type": "Point"}, "id": "2108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63637150592567, 41.94987957871894, -85.63637150592567, 41.94987957871894], "geometry": {"coordinates": [-85.63637150592567, 41.94987957871894], "type": "Point"}, "id": "2109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63656078385985, 41.94987883475066, -85.63656078385985, 41.94987883475066], "geometry": {"coordinates": [-85.63656078385985, 41.94987883475066], "type": "Point"}, "id": "2110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.636750061794, 41.94987809078238, -85.636750061794, 41.94987809078238], "geometry": {"coordinates": [-85.636750061794, 41.94987809078238], "type": "Point"}, "id": "2111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63693933972819, 41.94987734681408, -85.63693933972819, 41.94987734681408], "geometry": {"coordinates": [-85.63693933972819, 41.94987734681408], "type": "Point"}, "id": "2112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63712861766236, 41.94987660284577, -85.63712861766236, 41.94987660284577], "geometry": {"coordinates": [-85.63712861766236, 41.94987660284577], "type": "Point"}, "id": "2113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63731789559654, 41.94987585887745, -85.63731789559654, 41.94987585887745], "geometry": {"coordinates": [-85.63731789559654, 41.94987585887745], "type": "Point"}, "id": "2114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63750717245162, 41.949874984975104, -85.63750717245162, 41.949874984975104], "geometry": {"coordinates": [-85.63750717245162, 41.949874984975104], "type": "Point"}, "id": "2115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63769644830107, 41.949873989983416, -85.63769644830107, 41.949873989983416], "geometry": {"coordinates": [-85.63769644830107, 41.949873989983416], "type": "Point"}, "id": "2116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.63788572415054, 41.94987299499172, -85.63788572415054, 41.94987299499172], "geometry": {"coordinates": [-85.63788572415054, 41.94987299499172], "type": "Point"}, "id": "2117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967208}, "type": "Feature"}, {"bbox": [-85.6392066, 41.952388600000006, -85.6392066, 41.952388600000006], "geometry": {"coordinates": [-85.6392066, 41.952388600000006], "type": "Point"}, "id": "2118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 818299135}, "type": "Feature"}, {"bbox": [-85.63943813333333, 41.952386300000086, -85.63943813333333, 41.952386300000086], "geometry": {"coordinates": [-85.63943813333333, 41.952386300000086], "type": "Point"}, "id": "2119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 818299135}, "type": "Feature"}, {"bbox": [-85.63966966666668, 41.95238400000009, -85.63966966666668, 41.95238400000009], "geometry": {"coordinates": [-85.63966966666668, 41.95238400000009], "type": "Point"}, "id": "2120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 818299135}, "type": "Feature"}, {"bbox": [-85.6599876, 41.9253801, -85.6599876, 41.9253801], "geometry": {"coordinates": [-85.6599876, 41.9253801], "type": "Point"}, "id": "2121", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 1010837499}, "type": "Feature"}, {"bbox": [-85.65981787499999, 41.92543092506073, -85.65981787499999, 41.92543092506073], "geometry": {"coordinates": [-85.65981787499999, 41.92543092506073], "type": "Point"}, "id": "2122", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 1010837499}, "type": "Feature"}, {"bbox": [-85.65964815, 41.925481750080976, -85.65964815, 41.925481750080976], "geometry": {"coordinates": [-85.65964815, 41.925481750080976], "type": "Point"}, "id": "2123", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 1010837499}, "type": "Feature"}, {"bbox": [-85.659478425, 41.925532575060735, -85.659478425, 41.925532575060735], "geometry": {"coordinates": [-85.659478425, 41.925532575060735], "type": "Point"}, "id": "2124", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 1010837499}, "type": "Feature"}, {"bbox": [-85.61705139999998, 41.9585743, -85.61705139999998, 41.9585743], "geometry": {"coordinates": [-85.61705139999998, 41.9585743], "type": "Point"}, "id": "2125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.61704540887621, 41.95871108479123, -85.61704540887621, 41.95871108479123], "geometry": {"coordinates": [-85.61704540887621, 41.95871108479123], "type": "Point"}, "id": "2126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.61690928381944, 41.95879981298008, -85.61690928381944, 41.95879981298008], "geometry": {"coordinates": [-85.61690928381944, 41.95879981298008], "type": "Point"}, "id": "2127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.61675177462422, 41.95887654973132, -85.61675177462422, 41.95887654973132], "geometry": {"coordinates": [-85.61675177462422, 41.95887654973132], "type": "Point"}, "id": "2128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.6165747050343, 41.95891109539132, -85.6165747050343, 41.95891109539132], "geometry": {"coordinates": [-85.6165747050343, 41.95891109539132], "type": "Point"}, "id": "2129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.6163864358025, 41.95890419454541, -85.6163864358025, 41.95890419454541], "geometry": {"coordinates": [-85.6163864358025, 41.95890419454541], "type": "Point"}, "id": "2130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.61620804805712, 41.95893903196748, -85.61620804805712, 41.95893903196748], "geometry": {"coordinates": [-85.61620804805712, 41.95893903196748], "type": "Point"}, "id": "2131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.6160584997431, 41.95902330972826, -85.6160584997431, 41.95902330972826], "geometry": {"coordinates": [-85.6160584997431, 41.95902330972826], "type": "Point"}, "id": "2132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675124}, "type": "Feature"}, {"bbox": [-85.629033, 41.93913, -85.629033, 41.93913], "geometry": {"coordinates": [-85.629033, 41.93913], "type": "Point"}, "id": "2133", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62885054737988, 41.93913133597939, -85.62885054737988, 41.93913133597939], "geometry": {"coordinates": [-85.62885054737988, 41.93913133597939], "type": "Point"}, "id": "2134", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62866809519895, 41.939132705091346, -85.62866809519895, 41.939132705091346], "geometry": {"coordinates": [-85.62866809519895, 41.939132705091346], "type": "Point"}, "id": "2135", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.628485643018, 41.93913407420327, -85.628485643018, 41.93913407420327], "geometry": {"coordinates": [-85.628485643018, 41.93913407420327], "type": "Point"}, "id": "2136", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62830319089188, 41.93913544734918, -85.62830319089188, 41.93913544734918], "geometry": {"coordinates": [-85.62830319089188, 41.93913544734918], "type": "Point"}, "id": "2137", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62812073879051, 41.93913682231592, -85.62812073879051, 41.93913682231592], "geometry": {"coordinates": [-85.62812073879051, 41.93913682231592], "type": "Point"}, "id": "2138", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62793828668914, 41.93913819728265, -85.62793828668914, 41.93913819728265], "geometry": {"coordinates": [-85.62793828668914, 41.93913819728265], "type": "Point"}, "id": "2139", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62775583458777, 41.93913957224934, -85.62775583458777, 41.93913957224934], "geometry": {"coordinates": [-85.62775583458777, 41.93913957224934], "type": "Point"}, "id": "2140", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.6275733824864, 41.939140947216, -85.6275733824864, 41.939140947216], "geometry": {"coordinates": [-85.6275733824864, 41.939140947216], "type": "Point"}, "id": "2141", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62739093038503, 41.93914232218264, -85.62739093038503, 41.93914232218264], "geometry": {"coordinates": [-85.62739093038503, 41.93914232218264], "type": "Point"}, "id": "2142", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62720847828366, 41.93914369714925, -85.62720847828366, 41.93914369714925], "geometry": {"coordinates": [-85.62720847828366, 41.93914369714925], "type": "Point"}, "id": "2143", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62702602616679, 41.93914507096068, -85.62702602616679, 41.93914507096068], "geometry": {"coordinates": [-85.62702602616679, 41.93914507096068], "type": "Point"}, "id": "2144", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62684357394069, 41.93914643673766, -85.62684357394069, 41.93914643673766], "geometry": {"coordinates": [-85.62684357394069, 41.93914643673766], "type": "Point"}, "id": "2145", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62666112171456, 41.93914780251462, -85.62666112171456, 41.93914780251462], "geometry": {"coordinates": [-85.62666112171456, 41.93914780251462], "type": "Point"}, "id": "2146", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62647866948846, 41.93914916829153, -85.62647866948846, 41.93914916829153], "geometry": {"coordinates": [-85.62647866948846, 41.93914916829153], "type": "Point"}, "id": "2147", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62629621726235, 41.939150534068425, -85.62629621726235, 41.939150534068425], "geometry": {"coordinates": [-85.62629621726235, 41.939150534068425], "type": "Point"}, "id": "2148", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62611376503625, 41.93915189984529, -85.62611376503625, 41.93915189984529], "geometry": {"coordinates": [-85.62611376503625, 41.93915189984529], "type": "Point"}, "id": "2149", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62593131281012, 41.93915326562212, -85.62593131281012, 41.93915326562212], "geometry": {"coordinates": [-85.62593131281012, 41.93915326562212], "type": "Point"}, "id": "2150", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62574886058403, 41.93915463139893, -85.62574886058403, 41.93915463139893], "geometry": {"coordinates": [-85.62574886058403, 41.93915463139893], "type": "Point"}, "id": "2151", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62556640835791, 41.93915599717571, -85.62556640835791, 41.93915599717571], "geometry": {"coordinates": [-85.62556640835791, 41.93915599717571], "type": "Point"}, "id": "2152", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.6253839561318, 41.93915736295245, -85.6253839561318, 41.93915736295245], "geometry": {"coordinates": [-85.6253839561318, 41.93915736295245], "type": "Point"}, "id": "2153", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.6252015039057, 41.93915872872917, -85.6252015039057, 41.93915872872917], "geometry": {"coordinates": [-85.6252015039057, 41.93915872872917], "type": "Point"}, "id": "2154", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.62501905167957, 41.93916009450586, -85.62501905167957, 41.93916009450586], "geometry": {"coordinates": [-85.62501905167957, 41.93916009450586], "type": "Point"}, "id": "2155", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17964467}, "type": "Feature"}, {"bbox": [-85.63248809999999, 41.9436973, -85.63248809999999, 41.9436973], "geometry": {"coordinates": [-85.63248809999999, 41.9436973], "type": "Point"}, "id": "2156", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 847427774}, "type": "Feature"}, {"bbox": [-85.63259238349566, 41.94381774147046, -85.63259238349566, 41.94381774147046], "geometry": {"coordinates": [-85.63259238349566, 41.94381774147046], "type": "Point"}, "id": "2157", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 847427774}, "type": "Feature"}, {"bbox": [-85.63269666699132, 41.9439381827134, -85.63269666699132, 41.9439381827134], "geometry": {"coordinates": [-85.63269666699132, 41.9439381827134], "type": "Point"}, "id": "2158", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 847427774}, "type": "Feature"}, {"bbox": [-85.643195, 41.949261, -85.643195, 41.949261], "geometry": {"coordinates": [-85.643195, 41.949261], "type": "Point"}, "id": "2159", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64319717608457, 41.94940354709696, -85.64319717608457, 41.94940354709696], "geometry": {"coordinates": [-85.64319717608457, 41.94940354709696], "type": "Point"}, "id": "2160", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64319935216915, 41.94954609387517, -85.64319935216915, 41.94954609387517], "geometry": {"coordinates": [-85.64319935216915, 41.94954609387517], "type": "Point"}, "id": "2161", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64320152825373, 41.94968864033462, -85.64320152825373, 41.94968864033462], "geometry": {"coordinates": [-85.64320152825373, 41.94968864033462], "type": "Point"}, "id": "2162", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64320370437193, 41.94983118647504, -85.64320370437193, 41.94983118647504], "geometry": {"coordinates": [-85.64320370437193, 41.94983118647504], "type": "Point"}, "id": "2163", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64320588063748, 41.94997373229545, -85.64320588063748, 41.94997373229545], "geometry": {"coordinates": [-85.64320588063748, 41.94997373229545], "type": "Point"}, "id": "2164", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64320805690305, 41.95011627779709, -85.64320805690305, 41.95011627779709], "geometry": {"coordinates": [-85.64320805690305, 41.95011627779709], "type": "Point"}, "id": "2165", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64321023316862, 41.95025882297999, -85.64321023316862, 41.95025882297999], "geometry": {"coordinates": [-85.64321023316862, 41.95025882297999], "type": "Point"}, "id": "2166", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64321241222929, 41.95040136782041, -85.64321241222929, 41.95040136782041], "geometry": {"coordinates": [-85.64321241222929, 41.95040136782041], "type": "Point"}, "id": "2167", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64321460815286, 41.95054391219903, -85.64321460815286, 41.95054391219903], "geometry": {"coordinates": [-85.64321460815286, 41.95054391219903], "type": "Point"}, "id": "2168", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.64321680407643, 41.9506864562589, -85.64321680407643, 41.9506864562589], "geometry": {"coordinates": [-85.64321680407643, 41.9506864562589], "type": "Point"}, "id": "2169", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694370}, "type": "Feature"}, {"bbox": [-85.63472599999999, 41.955921, -85.63472599999999, 41.955921], "geometry": {"coordinates": [-85.63472599999999, 41.955921], "type": "Point"}, "id": "2170", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63490913326356, 41.95592076369901, -85.63490913326356, 41.95592076369901], "geometry": {"coordinates": [-85.63490913326356, 41.95592076369901], "type": "Point"}, "id": "2171", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63509226652714, 41.955920527398035, -85.63509226652714, 41.955920527398035], "geometry": {"coordinates": [-85.63509226652714, 41.955920527398035], "type": "Point"}, "id": "2172", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63527539979069, 41.95592029109705, -85.63527539979069, 41.95592029109705], "geometry": {"coordinates": [-85.63527539979069, 41.95592029109705], "type": "Point"}, "id": "2173", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63545853305426, 41.95592005479606, -85.63545853305426, 41.95592005479606], "geometry": {"coordinates": [-85.63545853305426, 41.95592005479606], "type": "Point"}, "id": "2174", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63564166631782, 41.95591981849508, -85.63564166631782, 41.95591981849508], "geometry": {"coordinates": [-85.63564166631782, 41.95591981849508], "type": "Point"}, "id": "2175", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63582479958139, 41.95591958219409, -85.63582479958139, 41.95591958219409], "geometry": {"coordinates": [-85.63582479958139, 41.95591958219409], "type": "Point"}, "id": "2176", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63600793284496, 41.9559193458931, -85.63600793284496, 41.9559193458931], "geometry": {"coordinates": [-85.63600793284496, 41.9559193458931], "type": "Point"}, "id": "2177", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63619106610854, 41.95591910959212, -85.63619106610854, 41.95591910959212], "geometry": {"coordinates": [-85.63619106610854, 41.95591910959212], "type": "Point"}, "id": "2178", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63637419945795, 41.95591908203798, -85.63637419945795, 41.95591908203798], "geometry": {"coordinates": [-85.63637419945795, 41.95591908203798], "type": "Point"}, "id": "2179", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63655733288162, 41.955919235031644, -85.63655733288162, 41.955919235031644], "geometry": {"coordinates": [-85.63655733288162, 41.955919235031644], "type": "Point"}, "id": "2180", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63674046630531, 41.955919388025315, -85.63674046630531, 41.955919388025315], "geometry": {"coordinates": [-85.63674046630531, 41.955919388025315], "type": "Point"}, "id": "2181", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63692359972896, 41.955919541018986, -85.63692359972896, 41.955919541018986], "geometry": {"coordinates": [-85.63692359972896, 41.955919541018986], "type": "Point"}, "id": "2182", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63710673315265, 41.955919694012664, -85.63710673315265, 41.955919694012664], "geometry": {"coordinates": [-85.63710673315265, 41.955919694012664], "type": "Point"}, "id": "2183", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63728986657631, 41.955919847006335, -85.63728986657631, 41.955919847006335], "geometry": {"coordinates": [-85.63728986657631, 41.955919847006335], "type": "Point"}, "id": "2184", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967465}, "type": "Feature"}, {"bbox": [-85.63120649999999, 41.94446750000001, -85.63120649999999, 41.94446750000001], "geometry": {"coordinates": [-85.63120649999999, 41.94446750000001], "type": "Point"}, "id": "2185", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150802}, "type": "Feature"}, {"bbox": [-85.63139214999998, 41.94443170001006, -85.63139214999998, 41.94443170001006], "geometry": {"coordinates": [-85.63139214999998, 41.94443170001006], "type": "Point"}, "id": "2186", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150802}, "type": "Feature"}, {"bbox": [-85.622643, 41.940128, -85.622643, 41.940128], "geometry": {"coordinates": [-85.622643, 41.940128], "type": "Point"}, "id": "2187", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968113}, "type": "Feature"}, {"bbox": [-85.622643, 41.9402970004479, -85.622643, 41.9402970004479], "geometry": {"coordinates": [-85.622643, 41.9402970004479], "type": "Point"}, "id": "2188", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968113}, "type": "Feature"}, {"bbox": [-85.622643, 41.9404660004479, -85.622643, 41.9404660004479], "geometry": {"coordinates": [-85.622643, 41.9404660004479], "type": "Point"}, "id": "2189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968113}, "type": "Feature"}, {"bbox": [-85.63097199999999, 41.961495, -85.63097199999999, 41.961495], "geometry": {"coordinates": [-85.63097199999999, 41.961495], "type": "Point"}, "id": "2190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63115580606062, 41.96149459063238, -85.63115580606062, 41.96149459063238], "geometry": {"coordinates": [-85.63115580606062, 41.96149459063238], "type": "Point"}, "id": "2191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63133961212124, 41.96149418126476, -85.63133961212124, 41.96149418126476], "geometry": {"coordinates": [-85.63133961212124, 41.96149418126476], "type": "Point"}, "id": "2192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63152341848135, 41.96149386541592, -85.63152341848135, 41.96149386541592], "geometry": {"coordinates": [-85.63152341848135, 41.96149386541592], "type": "Point"}, "id": "2193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63170722507942, 41.96149362388295, -85.63170722507942, 41.96149362388295], "geometry": {"coordinates": [-85.63170722507942, 41.96149362388295], "type": "Point"}, "id": "2194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.6318910316775, 41.961493382349964, -85.6318910316775, 41.961493382349964], "geometry": {"coordinates": [-85.6318910316775, 41.961493382349964], "type": "Point"}, "id": "2195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63207483827559, 41.961493140816984, -85.63207483827559, 41.961493140816984], "geometry": {"coordinates": [-85.63207483827559, 41.961493140816984], "type": "Point"}, "id": "2196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63225864453224, 41.961492802312016, -85.63225864453224, 41.961492802312016], "geometry": {"coordinates": [-85.63225864453224, 41.961492802312016], "type": "Point"}, "id": "2197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63244245031157, 41.96149232822479, -85.63244245031157, 41.96149232822479], "geometry": {"coordinates": [-85.63244245031157, 41.96149232822479], "type": "Point"}, "id": "2198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63262625609093, 41.961491854137556, -85.63262625609093, 41.961491854137556], "geometry": {"coordinates": [-85.63262625609093, 41.961491854137556], "type": "Point"}, "id": "2199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63281006187026, 41.96149138005032, -85.63281006187026, 41.96149138005032], "geometry": {"coordinates": [-85.63281006187026, 41.96149138005032], "type": "Point"}, "id": "2200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.6329938676496, 41.961490905963075, -85.6329938676496, 41.961490905963075], "geometry": {"coordinates": [-85.6329938676496, 41.961490905963075], "type": "Point"}, "id": "2201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63317767342893, 41.96149043187583, -85.63317767342893, 41.96149043187583], "geometry": {"coordinates": [-85.63317767342893, 41.96149043187583], "type": "Point"}, "id": "2202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63336147920828, 41.96148995778858, -85.63336147920828, 41.96148995778858], "geometry": {"coordinates": [-85.63336147920828, 41.96148995778858], "type": "Point"}, "id": "2203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.6335452849876, 41.961489483701335, -85.6335452849876, 41.961489483701335], "geometry": {"coordinates": [-85.6335452849876, 41.961489483701335], "type": "Point"}, "id": "2204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63372909076693, 41.961489009614084, -85.63372909076693, 41.961489009614084], "geometry": {"coordinates": [-85.63372909076693, 41.961489009614084], "type": "Point"}, "id": "2205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63391289587258, 41.961488449071545, -85.63391289587258, 41.961488449071545], "geometry": {"coordinates": [-85.63391289587258, 41.961488449071545], "type": "Point"}, "id": "2206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63409669669807, 41.961487339257275, -85.63409669669807, 41.961487339257275], "geometry": {"coordinates": [-85.63409669669807, 41.961487339257275], "type": "Point"}, "id": "2207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63428049752353, 41.96148622944298, -85.63428049752353, 41.96148622944298], "geometry": {"coordinates": [-85.63428049752353, 41.96148622944298], "type": "Point"}, "id": "2208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63446429834902, 41.96148511962867, -85.63446429834902, 41.96148511962867], "geometry": {"coordinates": [-85.63446429834902, 41.96148511962867], "type": "Point"}, "id": "2209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63464809917451, 41.96148400981435, -85.63464809917451, 41.96148400981435], "geometry": {"coordinates": [-85.63464809917451, 41.96148400981435], "type": "Point"}, "id": "2210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967215}, "type": "Feature"}, {"bbox": [-85.63332989999999, 41.955927100000004, -85.63332989999999, 41.955927100000004], "geometry": {"coordinates": [-85.63332989999999, 41.955927100000004], "type": "Point"}, "id": "2211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63352934288014, 41.95592623148391, -85.63352934288014, 41.95592623148391], "geometry": {"coordinates": [-85.63352934288014, 41.95592623148391], "type": "Point"}, "id": "2212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63372878576033, 41.95592536296781, -85.63372878576033, 41.95592536296781], "geometry": {"coordinates": [-85.63372878576033, 41.95592536296781], "type": "Point"}, "id": "2213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63392822864047, 41.95592449445169, -85.63392822864047, 41.95592449445169], "geometry": {"coordinates": [-85.63392822864047, 41.95592449445169], "type": "Point"}, "id": "2214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63412767151054, 41.95592362465889, -85.63412767151054, 41.95592362465889], "geometry": {"coordinates": [-85.63412767151054, 41.95592362465889], "type": "Point"}, "id": "2215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63432711434037, 41.9559227497726, -85.63432711434037, 41.9559227497726], "geometry": {"coordinates": [-85.63432711434037, 41.9559227497726], "type": "Point"}, "id": "2216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.63452655717016, 41.95592187488631, -85.63452655717016, 41.95592187488631], "geometry": {"coordinates": [-85.63452655717016, 41.95592187488631], "type": "Point"}, "id": "2217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967970}, "type": "Feature"}, {"bbox": [-85.6487523, 41.942523, -85.6487523, 41.942523], "geometry": {"coordinates": [-85.6487523, 41.942523], "type": "Point"}, "id": "2218", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17965146}, "type": "Feature"}, {"bbox": [-85.64000299999998, 41.93698800000001, -85.64000299999998, 41.93698800000001], "geometry": {"coordinates": [-85.64000299999998, 41.93698800000001], "type": "Point"}, "id": "2219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64019433332231, 41.936987331586664, -85.64019433332231, 41.936987331586664], "geometry": {"coordinates": [-85.64019433332231, 41.936987331586664], "type": "Point"}, "id": "2220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64038566664466, 41.93698666317332, -85.64038566664466, 41.93698666317332], "geometry": {"coordinates": [-85.64038566664466, 41.93698666317332], "type": "Point"}, "id": "2221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64057699996698, 41.93698599475997, -85.64057699996698, 41.93698599475997], "geometry": {"coordinates": [-85.64057699996698, 41.93698599475997], "type": "Point"}, "id": "2222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64076833328932, 41.936985326346615, -85.64076833328932, 41.936985326346615], "geometry": {"coordinates": [-85.64076833328932, 41.936985326346615], "type": "Point"}, "id": "2223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64095966661166, 41.936984657933245, -85.64095966661166, 41.936984657933245], "geometry": {"coordinates": [-85.64095966661166, 41.936984657933245], "type": "Point"}, "id": "2224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64115099993433, 41.936984010425476, -85.64115099993433, 41.936984010425476], "geometry": {"coordinates": [-85.64115099993433, 41.936984010425476], "type": "Point"}, "id": "2225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64134233327862, 41.93698467535459, -85.64134233327862, 41.93698467535459], "geometry": {"coordinates": [-85.64134233327862, 41.93698467535459], "type": "Point"}, "id": "2226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64153366662289, 41.936985340283684, -85.64153366662289, 41.936985340283684], "geometry": {"coordinates": [-85.64153366662289, 41.936985340283684], "type": "Point"}, "id": "2227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64172499996715, 41.93698600521278, -85.64172499996715, 41.93698600521278], "geometry": {"coordinates": [-85.64172499996715, 41.93698600521278], "type": "Point"}, "id": "2228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64191633331143, 41.93698667014185, -85.64191633331143, 41.93698667014185], "geometry": {"coordinates": [-85.64191633331143, 41.93698667014185], "type": "Point"}, "id": "2229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.64210766665572, 41.93698733507093, -85.64210766665572, 41.93698733507093], "geometry": {"coordinates": [-85.64210766665572, 41.93698733507093], "type": "Point"}, "id": "2230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965905}, "type": "Feature"}, {"bbox": [-85.61869239999999, 41.95814529999999, -85.61869239999999, 41.95814529999999], "geometry": {"coordinates": [-85.61869239999999, 41.95814529999999], "type": "Point"}, "id": "2231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61850757333332, 41.9581463000001, -85.61850757333332, 41.9581463000001], "geometry": {"coordinates": [-85.61850757333332, 41.9581463000001], "type": "Point"}, "id": "2232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61832274666666, 41.958147300000206, -85.61832274666666, 41.958147300000206], "geometry": {"coordinates": [-85.61832274666666, 41.958147300000206], "type": "Point"}, "id": "2233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61813791999998, 41.958148300000275, -85.61813791999998, 41.958148300000275], "geometry": {"coordinates": [-85.61813791999998, 41.958148300000275], "type": "Point"}, "id": "2234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61795309333333, 41.958149300000336, -85.61795309333333, 41.958149300000336], "geometry": {"coordinates": [-85.61795309333333, 41.958149300000336], "type": "Point"}, "id": "2235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61776826666666, 41.95815030000039, -85.61776826666666, 41.95815030000039], "geometry": {"coordinates": [-85.61776826666666, 41.95815030000039], "type": "Point"}, "id": "2236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61758344, 41.95815130000042, -85.61758344, 41.95815130000042], "geometry": {"coordinates": [-85.61758344, 41.95815130000042], "type": "Point"}, "id": "2237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61739861333331, 41.958152300000435, -85.61739861333331, 41.958152300000435], "geometry": {"coordinates": [-85.61739861333331, 41.958152300000435], "type": "Point"}, "id": "2238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61721378666667, 41.95815330000044, -85.61721378666667, 41.95815330000044], "geometry": {"coordinates": [-85.61721378666667, 41.95815330000044], "type": "Point"}, "id": "2239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61702895999998, 41.95815430000042, -85.61702895999998, 41.95815430000042], "geometry": {"coordinates": [-85.61702895999998, 41.95815430000042], "type": "Point"}, "id": "2240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61684413333333, 41.95815530000039, -85.61684413333333, 41.95815530000039], "geometry": {"coordinates": [-85.61684413333333, 41.95815530000039], "type": "Point"}, "id": "2241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61665930666665, 41.958156300000354, -85.61665930666665, 41.958156300000354], "geometry": {"coordinates": [-85.61665930666665, 41.958156300000354], "type": "Point"}, "id": "2242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61647448, 41.95815730000028, -85.61647448, 41.95815730000028], "geometry": {"coordinates": [-85.61647448, 41.95815730000028], "type": "Point"}, "id": "2243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61628965333333, 41.9581583000002, -85.61628965333333, 41.9581583000002], "geometry": {"coordinates": [-85.61628965333333, 41.9581583000002], "type": "Point"}, "id": "2244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.61610482666666, 41.95815930000011, -85.61610482666666, 41.95815930000011], "geometry": {"coordinates": [-85.61610482666666, 41.95815930000011], "type": "Point"}, "id": "2245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966857}, "type": "Feature"}, {"bbox": [-85.62488399999998, 41.94350800000001, -85.62488399999998, 41.94350800000001], "geometry": {"coordinates": [-85.62488399999998, 41.94350800000001], "type": "Point"}, "id": "2246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62506378913696, 41.943508585632365, -85.62506378913696, 41.943508585632365], "geometry": {"coordinates": [-85.62506378913696, 41.943508585632365], "type": "Point"}, "id": "2247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62524357713396, 41.943508690722766, -85.62524357713396, 41.943508690722766], "geometry": {"coordinates": [-85.62524357713396, 41.943508690722766], "type": "Point"}, "id": "2248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.6254233623728, 41.94350763316264, -85.6254233623728, 41.94350763316264], "geometry": {"coordinates": [-85.6254233623728, 41.94350763316264], "type": "Point"}, "id": "2249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62560314761164, 41.943506575602484, -85.62560314761164, 41.943506575602484], "geometry": {"coordinates": [-85.62560314761164, 41.943506575602484], "type": "Point"}, "id": "2250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62578293285047, 41.94350551804232, -85.62578293285047, 41.94350551804232], "geometry": {"coordinates": [-85.62578293285047, 41.94350551804232], "type": "Point"}, "id": "2251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.6259627180893, 41.94350446048213, -85.6259627180893, 41.94350446048213], "geometry": {"coordinates": [-85.6259627180893, 41.94350446048213], "type": "Point"}, "id": "2252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62614250332814, 41.94350340292193, -85.62614250332814, 41.94350340292193], "geometry": {"coordinates": [-85.62614250332814, 41.94350340292193], "type": "Point"}, "id": "2253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62632228856697, 41.9435023453617, -85.62632228856697, 41.9435023453617], "geometry": {"coordinates": [-85.62632228856697, 41.9435023453617], "type": "Point"}, "id": "2254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62650207380581, 41.94350128780147, -85.62650207380581, 41.94350128780147], "geometry": {"coordinates": [-85.62650207380581, 41.94350128780147], "type": "Point"}, "id": "2255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62668185904465, 41.943500230241206, -85.62668185904465, 41.943500230241206], "geometry": {"coordinates": [-85.62668185904465, 41.943500230241206], "type": "Point"}, "id": "2256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.6268616442835, 41.94349917268094, -85.6268616442835, 41.94349917268094], "geometry": {"coordinates": [-85.6268616442835, 41.94349917268094], "type": "Point"}, "id": "2257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62704142952232, 41.94349811512064, -85.62704142952232, 41.94349811512064], "geometry": {"coordinates": [-85.62704142952232, 41.94349811512064], "type": "Point"}, "id": "2258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62722121476116, 41.943497057560336, -85.62722121476116, 41.943497057560336], "geometry": {"coordinates": [-85.62722121476116, 41.943497057560336], "type": "Point"}, "id": "2259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965845}, "type": "Feature"}, {"bbox": [-85.62842889999999, 41.9391345, -85.62842889999999, 41.9391345], "geometry": {"coordinates": [-85.62842889999999, 41.9391345], "type": "Point"}, "id": "2260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843034285713, 41.939270429440654, -85.62843034285713, 41.939270429440654], "geometry": {"coordinates": [-85.62843034285713, 41.939270429440654], "type": "Point"}, "id": "2261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843178571428, 41.939406358591576, -85.62843178571428, 41.939406358591576], "geometry": {"coordinates": [-85.62843178571428, 41.939406358591576], "type": "Point"}, "id": "2262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843322857144, 41.93954228745275, -85.62843322857144, 41.93954228745275], "geometry": {"coordinates": [-85.62843322857144, 41.93954228745275], "type": "Point"}, "id": "2263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843467142856, 41.939678216024184, -85.62843467142856, 41.939678216024184], "geometry": {"coordinates": [-85.62843467142856, 41.939678216024184], "type": "Point"}, "id": "2264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.6284361142857, 41.93981414430587, -85.6284361142857, 41.93981414430587], "geometry": {"coordinates": [-85.6284361142857, 41.93981414430587], "type": "Point"}, "id": "2265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.62843755714285, 41.93995007229781, -85.62843755714285, 41.93995007229781], "geometry": {"coordinates": [-85.62843755714285, 41.93995007229781], "type": "Point"}, "id": "2266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967776}, "type": "Feature"}, {"bbox": [-85.63363509999999, 41.9435757, -85.63363509999999, 41.9435757], "geometry": {"coordinates": [-85.63363509999999, 41.9435757], "type": "Point"}, "id": "2267", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427776}, "type": "Feature"}, {"bbox": [-85.639454, 41.943871, -85.639454, 41.943871], "geometry": {"coordinates": [-85.639454, 41.943871], "type": "Point"}, "id": "2268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.63963649231441, 41.94387040264383, -85.63963649231441, 41.94387040264383], "geometry": {"coordinates": [-85.63963649231441, 41.94387040264383], "type": "Point"}, "id": "2269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.63981898462882, 41.943869805287655, -85.63981898462882, 41.943869805287655], "geometry": {"coordinates": [-85.63981898462882, 41.943869805287655], "type": "Point"}, "id": "2270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64000147694323, 41.94386920793147, -85.64000147694323, 41.94386920793147], "geometry": {"coordinates": [-85.64000147694323, 41.94386920793147], "type": "Point"}, "id": "2271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64018396925763, 41.94386861057528, -85.64018396925763, 41.94386861057528], "geometry": {"coordinates": [-85.64018396925763, 41.94386861057528], "type": "Point"}, "id": "2272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64036646157203, 41.943868013219095, -85.64036646157203, 41.943868013219095], "geometry": {"coordinates": [-85.64036646157203, 41.943868013219095], "type": "Point"}, "id": "2273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64054895388644, 41.9438674158629, -85.64054895388644, 41.9438674158629], "geometry": {"coordinates": [-85.64054895388644, 41.9438674158629], "type": "Point"}, "id": "2274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64073143927531, 41.943866323395575, -85.64073143927531, 41.943866323395575], "geometry": {"coordinates": [-85.64073143927531, 41.943866323395575], "type": "Point"}, "id": "2275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64091390836552, 41.94386407711252, -85.64091390836552, 41.94386407711252], "geometry": {"coordinates": [-85.64091390836552, 41.94386407711252], "type": "Point"}, "id": "2276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64109637715111, 41.94386181712401, -85.64109637715111, 41.94386181712401], "geometry": {"coordinates": [-85.64109637715111, 41.94386181712401], "type": "Point"}, "id": "2277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64127884593671, 41.943859557135426, -85.64127884593671, 41.943859557135426], "geometry": {"coordinates": [-85.64127884593671, 41.943859557135426], "type": "Point"}, "id": "2278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64146131472232, 41.943857297146764, -85.64146131472232, 41.943857297146764], "geometry": {"coordinates": [-85.64146131472232, 41.943857297146764], "type": "Point"}, "id": "2279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64164378350792, 41.94385503715802, -85.64164378350792, 41.94385503715802], "geometry": {"coordinates": [-85.64164378350792, 41.94385503715802], "type": "Point"}, "id": "2280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64182625229351, 41.94385277716919, -85.64182625229351, 41.94385277716919], "geometry": {"coordinates": [-85.64182625229351, 41.94385277716919], "type": "Point"}, "id": "2281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64200872902063, 41.94385092915555, -85.64200872902063, 41.94385092915555], "geometry": {"coordinates": [-85.64200872902063, 41.94385092915555], "type": "Point"}, "id": "2282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64219120959842, 41.94384927789715, -85.64219120959842, 41.94384927789715], "geometry": {"coordinates": [-85.64219120959842, 41.94384927789715], "type": "Point"}, "id": "2283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64237369017624, 41.94384762663871, -85.64237369017624, 41.94384762663871], "geometry": {"coordinates": [-85.64237369017624, 41.94384762663871], "type": "Point"}, "id": "2284", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64255617075405, 41.94384597538022, -85.64255617075405, 41.94384597538022], "geometry": {"coordinates": [-85.64255617075405, 41.94384597538022], "type": "Point"}, "id": "2285", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64273865133187, 41.943844324121685, -85.64273865133187, 41.943844324121685], "geometry": {"coordinates": [-85.64273865133187, 41.943844324121685], "type": "Point"}, "id": "2286", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64292113190967, 41.94384267286311, -85.64292113190967, 41.94384267286311], "geometry": {"coordinates": [-85.64292113190967, 41.94384267286311], "type": "Point"}, "id": "2287", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.6431036124875, 41.94384102160449, -85.6431036124875, 41.94384102160449], "geometry": {"coordinates": [-85.6431036124875, 41.94384102160449], "type": "Point"}, "id": "2288", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64328609638018, 41.94383958747946, -85.64328609638018, 41.94383958747946], "geometry": {"coordinates": [-85.64328609638018, 41.94383958747946], "type": "Point"}, "id": "2289", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64346858031682, 41.943838156232964, -85.64346858031682, 41.943838156232964], "geometry": {"coordinates": [-85.64346858031682, 41.943838156232964], "type": "Point"}, "id": "2290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64365106425343, 41.94383672498644, -85.64365106425343, 41.94383672498644], "geometry": {"coordinates": [-85.64365106425343, 41.94383672498644], "type": "Point"}, "id": "2291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64383354819009, 41.94383529373987, -85.64383354819009, 41.94383529373987], "geometry": {"coordinates": [-85.64383354819009, 41.94383529373987], "type": "Point"}, "id": "2292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64401603212671, 41.94383386249328, -85.64401603212671, 41.94383386249328], "geometry": {"coordinates": [-85.64401603212671, 41.94383386249328], "type": "Point"}, "id": "2293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.64419851606335, 41.943832431246655, -85.64419851606335, 41.943832431246655], "geometry": {"coordinates": [-85.64419851606335, 41.943832431246655], "type": "Point"}, "id": "2294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968193}, "type": "Feature"}, {"bbox": [-85.6477466, 41.94587239999999, -85.6477466, 41.94587239999999], "geometry": {"coordinates": [-85.6477466, 41.94587239999999], "type": "Point"}, "id": "2295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64754391888658, 41.94587881470445, -85.64754391888658, 41.94587881470445], "geometry": {"coordinates": [-85.64754391888658, 41.94587881470445], "type": "Point"}, "id": "2296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64734118485163, 41.945883689307806, -85.64734118485163, 41.945883689307806], "geometry": {"coordinates": [-85.64734118485163, 41.945883689307806], "type": "Point"}, "id": "2297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64713832778997, 41.94588498363944, -85.64713832778997, 41.94588498363944], "geometry": {"coordinates": [-85.64713832778997, 41.94588498363944], "type": "Point"}, "id": "2298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64693547072831, 41.94588627797104, -85.64693547072831, 41.94588627797104], "geometry": {"coordinates": [-85.64693547072831, 41.94588627797104], "type": "Point"}, "id": "2299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64673261366666, 41.945887572302624, -85.64673261366666, 41.945887572302624], "geometry": {"coordinates": [-85.64673261366666, 41.945887572302624], "type": "Point"}, "id": "2300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64652975662734, 41.945888868545346, -85.64652975662734, 41.945888868545346], "geometry": {"coordinates": [-85.64652975662734, 41.945888868545346], "type": "Point"}, "id": "2301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968028}, "type": "Feature"}, {"bbox": [-85.64797469999999, 41.9440825, -85.64797469999999, 41.9440825], "geometry": {"coordinates": [-85.64797469999999, 41.9440825], "type": "Point"}, "id": "2302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.64777388498388, 41.944057375957016, -85.64777388498388, 41.944057375957016], "geometry": {"coordinates": [-85.64777388498388, 41.944057375957016], "type": "Point"}, "id": "2303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.6475637637379, 41.94405778196778, -85.6475637637379, 41.94405778196778], "geometry": {"coordinates": [-85.6475637637379, 41.94405778196778], "type": "Point"}, "id": "2304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.64735364249195, 41.94405818797852, -85.64735364249195, 41.94405818797852], "geometry": {"coordinates": [-85.64735364249195, 41.94405818797852], "type": "Point"}, "id": "2305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.64714352124597, 41.94405859398927, -85.64714352124597, 41.94405859398927], "geometry": {"coordinates": [-85.64714352124597, 41.94405859398927], "type": "Point"}, "id": "2306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968025}, "type": "Feature"}, {"bbox": [-85.6272913, 41.9321591, -85.6272913, 41.9321591], "geometry": {"coordinates": [-85.6272913, 41.9321591], "type": "Point"}, "id": "2307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62747759985639, 41.9321594453652, -85.62747759985639, 41.9321594453652], "geometry": {"coordinates": [-85.62747759985639, 41.9321594453652], "type": "Point"}, "id": "2308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62766389971277, 41.932159790730395, -85.62766389971277, 41.932159790730395], "geometry": {"coordinates": [-85.62766389971277, 41.932159790730395], "type": "Point"}, "id": "2309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62785019960836, 41.932160124183476, -85.62785019960836, 41.932160124183476], "geometry": {"coordinates": [-85.62785019960836, 41.932160124183476], "type": "Point"}, "id": "2310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62803649950501, 41.932160457308015, -85.62803649950501, 41.932160457308015], "geometry": {"coordinates": [-85.62803649950501, 41.932160457308015], "type": "Point"}, "id": "2311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62822279940168, 41.93216079043255, -85.62822279940168, 41.93216079043255], "geometry": {"coordinates": [-85.62822279940168, 41.93216079043255], "type": "Point"}, "id": "2312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62840909413094, 41.932160359312626, -85.62840909413094, 41.932160359312626], "geometry": {"coordinates": [-85.62840909413094, 41.932160359312626], "type": "Point"}, "id": "2313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62859538009565, 41.932158631943544, -85.62859538009565, 41.932158631943544], "geometry": {"coordinates": [-85.62859538009565, 41.932158631943544], "type": "Point"}, "id": "2314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62878166606036, 41.93215690457443, -85.62878166606036, 41.93215690457443], "geometry": {"coordinates": [-85.62878166606036, 41.93215690457443], "type": "Point"}, "id": "2315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62896795202505, 41.932155177205246, -85.62896795202505, 41.932155177205246], "geometry": {"coordinates": [-85.62896795202505, 41.932155177205246], "type": "Point"}, "id": "2316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62915423772229, 41.93215343398047, -85.62915423772229, 41.93215343398047], "geometry": {"coordinates": [-85.62915423772229, 41.93215343398047], "type": "Point"}, "id": "2317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62934052328528, 41.93215168279858, -85.62934052328528, 41.93215168279858], "geometry": {"coordinates": [-85.62934052328528, 41.93215168279858], "type": "Point"}, "id": "2318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62952680884825, 41.932149931616664, -85.62952680884825, 41.932149931616664], "geometry": {"coordinates": [-85.62952680884825, 41.932149931616664], "type": "Point"}, "id": "2319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62971309712084, 41.93214848729649, -85.62971309712084, 41.93214848729649], "geometry": {"coordinates": [-85.62971309712084, 41.93214848729649], "type": "Point"}, "id": "2320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.62989939753216, 41.932148417682704, -85.62989939753216, 41.932148417682704], "geometry": {"coordinates": [-85.62989939753216, 41.932148417682704], "type": "Point"}, "id": "2321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63008569794347, 41.93214834806893, -85.63008569794347, 41.93214834806893], "geometry": {"coordinates": [-85.63008569794347, 41.93214834806893], "type": "Point"}, "id": "2322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63027199835477, 41.93214827845513, -85.63027199835477, 41.93214827845513], "geometry": {"coordinates": [-85.63027199835477, 41.93214827845513], "type": "Point"}, "id": "2323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63045829876609, 41.932148208841355, -85.63045829876609, 41.932148208841355], "geometry": {"coordinates": [-85.63045829876609, 41.932148208841355], "type": "Point"}, "id": "2324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63064459917737, 41.932148139227564, -85.63064459917737, 41.932148139227564], "geometry": {"coordinates": [-85.63064459917737, 41.932148139227564], "type": "Point"}, "id": "2325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.63083089958869, 41.93214806961378, -85.63083089958869, 41.93214806961378], "geometry": {"coordinates": [-85.63083089958869, 41.93214806961378], "type": "Point"}, "id": "2326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150774}, "type": "Feature"}, {"bbox": [-85.61730179999999, 41.9346369, -85.61730179999999, 41.9346369], "geometry": {"coordinates": [-85.61730179999999, 41.9346369], "type": "Point"}, "id": "2327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61730685995349, 41.93477179150707, -85.61730685995349, 41.93477179150707], "geometry": {"coordinates": [-85.61730685995349, 41.93477179150707], "type": "Point"}, "id": "2328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61731191990697, 41.93490668272885, -85.61731191990697, 41.93490668272885], "geometry": {"coordinates": [-85.61731191990697, 41.93490668272885], "type": "Point"}, "id": "2329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61731697986045, 41.93504157366533, -85.61731697986045, 41.93504157366533], "geometry": {"coordinates": [-85.61731697986045, 41.93504157366533], "type": "Point"}, "id": "2330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61732203981393, 41.93517646431652, -85.61732203981393, 41.93517646431652], "geometry": {"coordinates": [-85.61732203981393, 41.93517646431652], "type": "Point"}, "id": "2331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61732709976742, 41.93531135468242, -85.61732709976742, 41.93531135468242], "geometry": {"coordinates": [-85.61732709976742, 41.93531135468242], "type": "Point"}, "id": "2332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61733215972089, 41.935446244763035, -85.61733215972089, 41.935446244763035], "geometry": {"coordinates": [-85.61733215972089, 41.935446244763035], "type": "Point"}, "id": "2333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173372196744, 41.93558113455835, -85.6173372196744, 41.93558113455835], "geometry": {"coordinates": [-85.6173372196744, 41.93558113455835], "type": "Point"}, "id": "2334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61734374649456, 41.935715987855914, -85.61734374649456, 41.935715987855914], "geometry": {"coordinates": [-85.61734374649456, 41.935715987855914], "type": "Point"}, "id": "2335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735071958957, 41.935850829851205, -85.61735071958957, 41.935850829851205], "geometry": {"coordinates": [-85.61735071958957, 41.935850829851205], "type": "Point"}, "id": "2336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735769268458, 41.93598567156139, -85.61735769268458, 41.93598567156139], "geometry": {"coordinates": [-85.61735769268458, 41.93598567156139], "type": "Point"}, "id": "2337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173646657796, 41.936120512986484, -85.6173646657796, 41.936120512986484], "geometry": {"coordinates": [-85.6173646657796, 41.936120512986484], "type": "Point"}, "id": "2338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736415909733, 41.936254267373045, -85.61736415909733, 41.936254267373045], "geometry": {"coordinates": [-85.61736415909733, 41.936254267373045], "type": "Point"}, "id": "2339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61732218136972, 41.93638387064173, -85.61732218136972, 41.93638387064173], "geometry": {"coordinates": [-85.61732218136972, 41.93638387064173], "type": "Point"}, "id": "2340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173367983729, 41.9365183721632, -85.6173367983729, 41.9365183721632], "geometry": {"coordinates": [-85.6173367983729, 41.9365183721632], "type": "Point"}, "id": "2341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735141537608, 41.936652873401016, -85.61735141537608, 41.936652873401016], "geometry": {"coordinates": [-85.61735141537608, 41.936652873401016], "type": "Point"}, "id": "2342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735683437394, 41.93678766829224, -85.61735683437394, 41.93678766829224], "geometry": {"coordinates": [-85.61735683437394, 41.93678766829224], "type": "Point"}, "id": "2343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735777744636, 41.93692260593365, -85.61735777744636, 41.93692260593365], "geometry": {"coordinates": [-85.61735777744636, 41.93692260593365], "type": "Point"}, "id": "2344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735872051881, 41.937057543289555, -85.61735872051881, 41.937057543289555], "geometry": {"coordinates": [-85.61735872051881, 41.937057543289555], "type": "Point"}, "id": "2345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61735966359124, 41.93719248035996, -85.61735966359124, 41.93719248035996], "geometry": {"coordinates": [-85.61735966359124, 41.93719248035996], "type": "Point"}, "id": "2346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173606066637, 41.93732741714484, -85.6173606066637, 41.93732741714484], "geometry": {"coordinates": [-85.6173606066637, 41.93732741714484], "type": "Point"}, "id": "2347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736154973612, 41.93746235364422, -85.61736154973612, 41.93746235364422], "geometry": {"coordinates": [-85.61736154973612, 41.93746235364422], "type": "Point"}, "id": "2348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736249280855, 41.937597289858104, -85.61736249280855, 41.937597289858104], "geometry": {"coordinates": [-85.61736249280855, 41.937597289858104], "type": "Point"}, "id": "2349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736343588099, 41.93773222578646, -85.61736343588099, 41.93773222578646], "geometry": {"coordinates": [-85.61736343588099, 41.93773222578646], "type": "Point"}, "id": "2350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736521537046, 41.93786715665543, -85.61736521537046, 41.93786715665543], "geometry": {"coordinates": [-85.61736521537046, 41.93786715665543], "type": "Point"}, "id": "2351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173670558759, 41.93800208689065, -85.6173670558759, 41.93800208689065], "geometry": {"coordinates": [-85.6173670558759, 41.93800208689065], "type": "Point"}, "id": "2352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736889638136, 41.93813701684039, -85.61736889638136, 41.93813701684039], "geometry": {"coordinates": [-85.61736889638136, 41.93813701684039], "type": "Point"}, "id": "2353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61737017747933, 41.93827194968807, -85.61737017747933, 41.93827194968807], "geometry": {"coordinates": [-85.61737017747933, 41.93827194968807], "type": "Point"}, "id": "2354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6173711123603, 41.93840688422047, -85.6173711123603, 41.93840688422047], "geometry": {"coordinates": [-85.6173711123603, 41.93840688422047], "type": "Point"}, "id": "2355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61737194537676, 41.93854181843684, -85.61737194537676, 41.93854181843684], "geometry": {"coordinates": [-85.61737194537676, 41.93854181843684], "type": "Point"}, "id": "2356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61737086440954, 41.93867675179441, -85.61737086440954, 41.93867675179441], "geometry": {"coordinates": [-85.61737086440954, 41.93867675179441], "type": "Point"}, "id": "2357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736978344234, 41.93881168486646, -85.61736978344234, 41.93881168486646], "geometry": {"coordinates": [-85.61736978344234, 41.93881168486646], "type": "Point"}, "id": "2358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736870247512, 41.938946617653, -85.61736870247512, 41.938946617653], "geometry": {"coordinates": [-85.61736870247512, 41.938946617653], "type": "Point"}, "id": "2359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736762150791, 41.93908155015405, -85.61736762150791, 41.93908155015405], "geometry": {"coordinates": [-85.61736762150791, 41.93908155015405], "type": "Point"}, "id": "2360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736654562738, 41.93921648239206, -85.61736654562738, 41.93921648239206], "geometry": {"coordinates": [-85.61736654562738, 41.93921648239206], "type": "Point"}, "id": "2361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736547105784, 41.93935141435036, -85.61736547105784, 41.93935141435036], "geometry": {"coordinates": [-85.61736547105784, 41.93935141435036], "type": "Point"}, "id": "2362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736439648828, 41.93948634602316, -85.61736439648828, 41.93948634602316], "geometry": {"coordinates": [-85.61736439648828, 41.93948634602316], "type": "Point"}, "id": "2363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736332191873, 41.93962127741044, -85.61736332191873, 41.93962127741044], "geometry": {"coordinates": [-85.61736332191873, 41.93962127741044], "type": "Point"}, "id": "2364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736224287448, 41.93975620849243, -85.61736224287448, 41.93975620849243], "geometry": {"coordinates": [-85.61736224287448, 41.93975620849243], "type": "Point"}, "id": "2365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736116191632, 41.93989113928047, -85.61736116191632, 41.93989113928047], "geometry": {"coordinates": [-85.61736116191632, 41.93989113928047], "type": "Point"}, "id": "2366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.61736008095815, 41.940026069782995, -85.61736008095815, 41.940026069782995], "geometry": {"coordinates": [-85.61736008095815, 41.940026069782995], "type": "Point"}, "id": "2367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965366}, "type": "Feature"}, {"bbox": [-85.6418749, 41.94258640000001, -85.6418749, 41.94258640000001], "geometry": {"coordinates": [-85.6418749, 41.94258640000001], "type": "Point"}, "id": "2368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64187638947276, 41.94272255930541, -85.64187638947276, 41.94272255930541], "geometry": {"coordinates": [-85.64187638947276, 41.94272255930541], "type": "Point"}, "id": "2369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64187794315056, 41.942858717928225, -85.64187794315056, 41.942858717928225], "geometry": {"coordinates": [-85.64187794315056, 41.942858717928225], "type": "Point"}, "id": "2370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64187942997665, 41.942994876672884, -85.64187942997665, 41.942994876672884], "geometry": {"coordinates": [-85.64187942997665, 41.942994876672884], "type": "Point"}, "id": "2371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188091426372, 41.943131035142464, -85.64188091426372, 41.943131035142464], "geometry": {"coordinates": [-85.64188091426372, 41.943131035142464], "type": "Point"}, "id": "2372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188243926499, 41.943267193072145, -85.64188243926499, 41.943267193072145], "geometry": {"coordinates": [-85.64188243926499, 41.943267193072145], "type": "Point"}, "id": "2373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188396676218, 41.9434033506958, -85.64188396676218, 41.9434033506958], "geometry": {"coordinates": [-85.64188396676218, 41.9434033506958], "type": "Point"}, "id": "2374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188549425938, 41.9435395080287, -85.64188549425938, 41.9435395080287], "geometry": {"coordinates": [-85.64188549425938, 41.9435395080287], "type": "Point"}, "id": "2375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188702175659, 41.943675665070835, -85.64188702175659, 41.943675665070835], "geometry": {"coordinates": [-85.64188702175659, 41.943675665070835], "type": "Point"}, "id": "2376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64188854925379, 41.94381182182221, -85.64188854925379, 41.94381182182221], "geometry": {"coordinates": [-85.64188854925379, 41.94381182182221], "type": "Point"}, "id": "2377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.6418914954863, 41.94394796367507, -85.6418914954863, 41.94394796367507], "geometry": {"coordinates": [-85.6418914954863, 41.94394796367507], "type": "Point"}, "id": "2378", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64189503562548, 41.9440840991222, -85.64189503562548, 41.9440840991222], "geometry": {"coordinates": [-85.64189503562548, 41.9440840991222], "type": "Point"}, "id": "2379", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64189857576464, 41.94422023427865, -85.64189857576464, 41.94422023427865], "geometry": {"coordinates": [-85.64189857576464, 41.94422023427865], "type": "Point"}, "id": "2380", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64190211590382, 41.94435636914442, -85.64190211590382, 41.94435636914442], "geometry": {"coordinates": [-85.64190211590382, 41.94435636914442], "type": "Point"}, "id": "2381", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.641905656043, 41.94449250371953, -85.641905656043, 41.94449250371953], "geometry": {"coordinates": [-85.641905656043, 41.94449250371953], "type": "Point"}, "id": "2382", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64190919618217, 41.94462863800398, -85.64190919618217, 41.94462863800398], "geometry": {"coordinates": [-85.64190919618217, 41.94462863800398], "type": "Point"}, "id": "2383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64191273632134, 41.94476477199773, -85.64191273632134, 41.94476477199773], "geometry": {"coordinates": [-85.64191273632134, 41.94476477199773], "type": "Point"}, "id": "2384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.6419162764605, 41.94490090570082, -85.6419162764605, 41.94490090570082], "geometry": {"coordinates": [-85.6419162764605, 41.94490090570082], "type": "Point"}, "id": "2385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64191981659968, 41.94503703911323, -85.64191981659968, 41.94503703911323], "geometry": {"coordinates": [-85.64191981659968, 41.94503703911323], "type": "Point"}, "id": "2386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64192296922302, 41.94517317701354, -85.64192296922302, 41.94517317701354], "geometry": {"coordinates": [-85.64192296922302, 41.94517317701354], "type": "Point"}, "id": "2387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64192549821703, 41.945309322313285, -85.64192549821703, 41.945309322313285], "geometry": {"coordinates": [-85.64192549821703, 41.945309322313285], "type": "Point"}, "id": "2388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64192802721101, 41.9454454673223, -85.64192802721101, 41.9454454673223], "geometry": {"coordinates": [-85.64192802721101, 41.9454454673223], "type": "Point"}, "id": "2389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64193055620503, 41.945581612040584, -85.64193055620503, 41.945581612040584], "geometry": {"coordinates": [-85.64193055620503, 41.945581612040584], "type": "Point"}, "id": "2390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64193308519901, 41.94571775646814, -85.64193308519901, 41.94571775646814], "geometry": {"coordinates": [-85.64193308519901, 41.94571775646814], "type": "Point"}, "id": "2391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64193561419303, 41.94585390060497, -85.64193561419303, 41.94585390060497], "geometry": {"coordinates": [-85.64193561419303, 41.94585390060497], "type": "Point"}, "id": "2392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64193814318702, 41.94599004445108, -85.64193814318702, 41.94599004445108], "geometry": {"coordinates": [-85.64193814318702, 41.94599004445108], "type": "Point"}, "id": "2393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194067218102, 41.94612618800645, -85.64194067218102, 41.94612618800645], "geometry": {"coordinates": [-85.64194067218102, 41.94612618800645], "type": "Point"}, "id": "2394", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194320117502, 41.9462623312711, -85.64194320117502, 41.9462623312711], "geometry": {"coordinates": [-85.64194320117502, 41.9462623312711], "type": "Point"}, "id": "2395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194573016903, 41.94639847424503, -85.64194573016903, 41.94639847424503], "geometry": {"coordinates": [-85.64194573016903, 41.94639847424503], "type": "Point"}, "id": "2396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194649167666, 41.94653462798564, -85.64194649167666, 41.94653462798564], "geometry": {"coordinates": [-85.64194649167666, 41.94653462798564], "type": "Point"}, "id": "2397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194704207844, 41.946670782756165, -85.64194704207844, 41.946670782756165], "geometry": {"coordinates": [-85.64194704207844, 41.946670782756165], "type": "Point"}, "id": "2398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194759248024, 41.9468069372359, -85.64194759248024, 41.9468069372359], "geometry": {"coordinates": [-85.64194759248024, 41.9468069372359], "type": "Point"}, "id": "2399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194814288201, 41.94694309142486, -85.64194814288201, 41.94694309142486], "geometry": {"coordinates": [-85.64194814288201, 41.94694309142486], "type": "Point"}, "id": "2400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194869328378, 41.94707924532304, -85.64194869328378, 41.94707924532304], "geometry": {"coordinates": [-85.64194869328378, 41.94707924532304], "type": "Point"}, "id": "2401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194924368556, 41.94721539893043, -85.64194924368556, 41.94721539893043], "geometry": {"coordinates": [-85.64194924368556, 41.94721539893043], "type": "Point"}, "id": "2402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64194979408734, 41.94735155224705, -85.64194979408734, 41.94735155224705], "geometry": {"coordinates": [-85.64194979408734, 41.94735155224705], "type": "Point"}, "id": "2403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.64195174174446, 41.94748765295759, -85.64195174174446, 41.94748765295759], "geometry": {"coordinates": [-85.64195174174446, 41.94748765295759], "type": "Point"}, "id": "2404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965444}, "type": "Feature"}, {"bbox": [-85.6331258, 41.94439199999999, -85.6331258, 41.94439199999999], "geometry": {"coordinates": [-85.6331258, 41.94439199999999], "type": "Point"}, "id": "2405", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.63323209834935, 41.94450110945344, -85.63323209834935, 41.94450110945344], "geometry": {"coordinates": [-85.63323209834935, 41.94450110945344], "type": "Point"}, "id": "2406", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.6333383966987, 41.94461021872018, -85.6333383966987, 41.94461021872018], "geometry": {"coordinates": [-85.6333383966987, 41.94461021872018], "type": "Point"}, "id": "2407", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.63344925514303, 41.94471674905204, -85.63344925514303, 41.94471674905204], "geometry": {"coordinates": [-85.63344925514303, 41.94471674905204], "type": "Point"}, "id": "2408", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.63356218500273, 41.94482210781588, -85.63356218500273, 41.94482210781588], "geometry": {"coordinates": [-85.63356218500273, 41.94482210781588], "type": "Point"}, "id": "2409", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.63367655087384, 41.944926605556745, -85.63367655087384, 41.944926605556745], "geometry": {"coordinates": [-85.63367655087384, 41.944926605556745], "type": "Point"}, "id": "2410", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.63379098069908, 41.9450310647877, -85.63379098069908, 41.9450310647877], "geometry": {"coordinates": [-85.63379098069908, 41.9450310647877], "type": "Point"}, "id": "2411", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.6339054105243, 41.94513552384749, -85.6339054105243, 41.94513552384749], "geometry": {"coordinates": [-85.6339054105243, 41.94513552384749], "type": "Point"}, "id": "2412", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.63401984034955, 41.94523998273614, -85.63401984034955, 41.94523998273614], "geometry": {"coordinates": [-85.63401984034955, 41.94523998273614], "type": "Point"}, "id": "2413", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.63413427017477, 41.94534444145364, -85.63413427017477, 41.94534444145364], "geometry": {"coordinates": [-85.63413427017477, 41.94534444145364], "type": "Point"}, "id": "2414", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427770}, "type": "Feature"}, {"bbox": [-85.63332989999999, 41.955927100000004, -85.63332989999999, 41.955927100000004], "geometry": {"coordinates": [-85.63332989999999, 41.955927100000004], "type": "Point"}, "id": "2415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63314329233062, 41.95592601320287, -85.63314329233062, 41.95592601320287], "geometry": {"coordinates": [-85.63314329233062, 41.95592601320287], "type": "Point"}, "id": "2416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63295668466125, 41.9559249264057, -85.63295668466125, 41.9559249264057], "geometry": {"coordinates": [-85.63295668466125, 41.9559249264057], "type": "Point"}, "id": "2417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63277007699186, 41.95592383960853, -85.63277007699186, 41.95592383960853], "geometry": {"coordinates": [-85.63277007699186, 41.95592383960853], "type": "Point"}, "id": "2418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.6325834693225, 41.95592275281135, -85.6325834693225, 41.95592275281135], "geometry": {"coordinates": [-85.6325834693225, 41.95592275281135], "type": "Point"}, "id": "2419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63239686165312, 41.955921666014135, -85.63239686165312, 41.955921666014135], "geometry": {"coordinates": [-85.63239686165312, 41.955921666014135], "type": "Point"}, "id": "2420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63221025398374, 41.9559205792169, -85.63221025398374, 41.9559205792169], "geometry": {"coordinates": [-85.63221025398374, 41.9559205792169], "type": "Point"}, "id": "2421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63202364629282, 41.955919494468084, -85.63202364629282, 41.955919494468084], "geometry": {"coordinates": [-85.63202364629282, 41.955919494468084], "type": "Point"}, "id": "2422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63183703857736, 41.95591841205678, -85.63183703857736, 41.95591841205678], "geometry": {"coordinates": [-85.63183703857736, 41.95591841205678], "type": "Point"}, "id": "2423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.6316504308619, 41.95591732964546, -85.6316504308619, 41.95591732964546], "geometry": {"coordinates": [-85.6316504308619, 41.95591732964546], "type": "Point"}, "id": "2424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.6314638231464, 41.95591624723413, -85.6314638231464, 41.95591624723413], "geometry": {"coordinates": [-85.6314638231464, 41.95591624723413], "type": "Point"}, "id": "2425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63127721543094, 41.95591516482276, -85.63127721543094, 41.95591516482276], "geometry": {"coordinates": [-85.63127721543094, 41.95591516482276], "type": "Point"}, "id": "2426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.63109060771546, 41.9559140824114, -85.63109060771546, 41.9559140824114], "geometry": {"coordinates": [-85.63109060771546, 41.9559140824114], "type": "Point"}, "id": "2427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966214}, "type": "Feature"}, {"bbox": [-85.6321351, 41.9581654, -85.6321351, 41.9581654], "geometry": {"coordinates": [-85.6321351, 41.9581654], "type": "Point"}, "id": "2428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 776693873}, "type": "Feature"}, {"bbox": [-85.6322909, 41.94346959999999, -85.6322909, 41.94346959999999], "geometry": {"coordinates": [-85.6322909, 41.94346959999999], "type": "Point"}, "id": "2429", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 134150801}, "type": "Feature"}, {"bbox": [-85.63238951929718, 41.94358344085453, -85.63238951929718, 41.94358344085453], "geometry": {"coordinates": [-85.63238951929718, 41.94358344085453], "type": "Point"}, "id": "2430", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 134150801}, "type": "Feature"}, {"bbox": [-85.621459, 41.944756, -85.621459, 41.944756], "geometry": {"coordinates": [-85.621459, 41.944756], "type": "Point"}, "id": "2431", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.6212817962768, 41.944788553724905, -85.6212817962768, 41.944788553724905], "geometry": {"coordinates": [-85.6212817962768, 41.944788553724905], "type": "Point"}, "id": "2432", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.62111326037389, 41.94484078249177, -85.62111326037389, 41.94484078249177], "geometry": {"coordinates": [-85.62111326037389, 41.94484078249177], "type": "Point"}, "id": "2433", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.62095433701958, 41.94490729453387, -85.62095433701958, 41.94490729453387], "geometry": {"coordinates": [-85.62095433701958, 41.94490729453387], "type": "Point"}, "id": "2434", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.62080137106645, 41.94498165297927, -85.62080137106645, 41.94498165297927], "geometry": {"coordinates": [-85.62080137106645, 41.94498165297927], "type": "Point"}, "id": "2435", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.62065445119195, 41.945062236903496, -85.62065445119195, 41.945062236903496], "geometry": {"coordinates": [-85.62065445119195, 41.945062236903496], "type": "Point"}, "id": "2436", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.62052447854444, 41.94515738515951, -85.62052447854444, 41.94515738515951], "geometry": {"coordinates": [-85.62052447854444, 41.94515738515951], "type": "Point"}, "id": "2437", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.62040688898273, 41.94526137690767, -85.62040688898273, 41.94526137690767], "geometry": {"coordinates": [-85.62040688898273, 41.94526137690767], "type": "Point"}, "id": "2438", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.6203065758238, 41.9453746953345, -85.6203065758238, 41.9453746953345], "geometry": {"coordinates": [-85.6203065758238, 41.9453746953345], "type": "Point"}, "id": "2439", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.62023172375149, 41.94549862064942, -85.62023172375149, 41.94549862064942], "geometry": {"coordinates": [-85.62023172375149, 41.94549862064942], "type": "Point"}, "id": "2440", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 17966773}, "type": "Feature"}, {"bbox": [-85.6251435, 41.961477800000004, -85.6251435, 41.961477800000004], "geometry": {"coordinates": [-85.6251435, 41.961477800000004], "type": "Point"}, "id": "2441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968016}, "type": "Feature"}, {"bbox": [-85.62503270585798, 41.96134964744622, -85.62503270585798, 41.96134964744622], "geometry": {"coordinates": [-85.62503270585798, 41.96134964744622], "type": "Point"}, "id": "2442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968016}, "type": "Feature"}, {"bbox": [-85.62494863283227, 41.96121307440526, -85.62494863283227, 41.96121307440526], "geometry": {"coordinates": [-85.62494863283227, 41.96121307440526], "type": "Point"}, "id": "2443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968016}, "type": "Feature"}, {"bbox": [-85.62496773767555, 41.961063272242036, -85.62496773767555, 41.961063272242036], "geometry": {"coordinates": [-85.62496773767555, 41.961063272242036], "type": "Point"}, "id": "2444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968016}, "type": "Feature"}, {"bbox": [-85.61591419999999, 41.957757799999996, -85.61591419999999, 41.957757799999996], "geometry": {"coordinates": [-85.61591419999999, 41.957757799999996], "type": "Point"}, "id": "2445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61573962923315, 41.957789960034546, -85.61573962923315, 41.957789960034546], "geometry": {"coordinates": [-85.61573962923315, 41.957789960034546], "type": "Point"}, "id": "2446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61556505846629, 41.95782212005285, -85.61556505846629, 41.95782212005285], "geometry": {"coordinates": [-85.61556505846629, 41.95782212005285], "type": "Point"}, "id": "2447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.6154040232548, 41.957875412551076, -85.6154040232548, 41.957875412551076], "geometry": {"coordinates": [-85.6154040232548, 41.957875412551076], "type": "Point"}, "id": "2448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537006367809, 41.95800146306048, -85.61537006367809, 41.95800146306048], "geometry": {"coordinates": [-85.61537006367809, 41.95800146306048], "type": "Point"}, "id": "2449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537407782676, 41.95813517077555, -85.61537407782676, 41.95813517077555], "geometry": {"coordinates": [-85.61537407782676, 41.95813517077555], "type": "Point"}, "id": "2450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537809197542, 41.958268878210085, -85.61537809197542, 41.958268878210085], "geometry": {"coordinates": [-85.61537809197542, 41.958268878210085], "type": "Point"}, "id": "2451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537859999999, 41.958402614464326, -85.61537859999999, 41.958402614464326], "geometry": {"coordinates": [-85.61537859999999, 41.958402614464326], "type": "Point"}, "id": "2452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537859999999, 41.95853635465443, -85.61537859999999, 41.95853635465443], "geometry": {"coordinates": [-85.61537859999999, 41.95853635465443], "type": "Point"}, "id": "2453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61537859999999, 41.95867009456385, -85.61537859999999, 41.95867009456385], "geometry": {"coordinates": [-85.61537859999999, 41.95867009456385], "type": "Point"}, "id": "2454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61538084192881, 41.9588038200303, -85.61538084192881, 41.9588038200303], "geometry": {"coordinates": [-85.61538084192881, 41.9588038200303], "type": "Point"}, "id": "2455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61538389728229, 41.95893754007772, -85.61538389728229, 41.95893754007772], "geometry": {"coordinates": [-85.61538389728229, 41.95893754007772], "type": "Point"}, "id": "2456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61538695263575, 41.95907125984455, -85.61538695263575, 41.95907125984455], "geometry": {"coordinates": [-85.61538695263575, 41.95907125984455], "type": "Point"}, "id": "2457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61539160300894, 41.959204906798796, -85.61539160300894, 41.959204906798796], "geometry": {"coordinates": [-85.61539160300894, 41.959204906798796], "type": "Point"}, "id": "2458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.6154104814787, 41.95933790646513, -85.6154104814787, 41.95933790646513], "geometry": {"coordinates": [-85.6154104814787, 41.95933790646513], "type": "Point"}, "id": "2459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.61555747766022, 41.959381382100965, -85.61555747766022, 41.959381382100965], "geometry": {"coordinates": [-85.61555747766022, 41.959381382100965], "type": "Point"}, "id": "2460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 907675123}, "type": "Feature"}, {"bbox": [-85.643102, 41.945102999999996, -85.643102, 41.945102999999996], "geometry": {"coordinates": [-85.643102, 41.945102999999996], "type": "Point"}, "id": "2461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64328198690713, 41.94510092482449, -85.64328198690713, 41.94510092482449], "geometry": {"coordinates": [-85.64328198690713, 41.94510092482449], "type": "Point"}, "id": "2462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64346197381424, 41.945098849648915, -85.64346197381424, 41.945098849648915], "geometry": {"coordinates": [-85.64346197381424, 41.945098849648915], "type": "Point"}, "id": "2463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64364196072137, 41.94509677447327, -85.64364196072137, 41.94509677447327], "geometry": {"coordinates": [-85.64364196072137, 41.94509677447327], "type": "Point"}, "id": "2464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64382194762848, 41.94509469929756, -85.64382194762848, 41.94509469929756], "geometry": {"coordinates": [-85.64382194762848, 41.94509469929756], "type": "Point"}, "id": "2465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.6440019345356, 41.94509262412179, -85.6440019345356, 41.94509262412179], "geometry": {"coordinates": [-85.6440019345356, 41.94509262412179], "type": "Point"}, "id": "2466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64418192144272, 41.94509054894594, -85.64418192144272, 41.94509054894594], "geometry": {"coordinates": [-85.64418192144272, 41.94509054894594], "type": "Point"}, "id": "2467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64436190834984, 41.945088473770035, -85.64436190834984, 41.945088473770035], "geometry": {"coordinates": [-85.64436190834984, 41.945088473770035], "type": "Point"}, "id": "2468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64454191023084, 41.94508748695718, -85.64454191023084, 41.94508748695718], "geometry": {"coordinates": [-85.64454191023084, 41.94508748695718], "type": "Point"}, "id": "2469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64472191654183, 41.94508682213254, -85.64472191654183, 41.94508682213254], "geometry": {"coordinates": [-85.64472191654183, 41.94508682213254], "type": "Point"}, "id": "2470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.6449019228528, 41.94508615730789, -85.6449019228528, 41.94508615730789], "geometry": {"coordinates": [-85.6449019228528, 41.94508615730789], "type": "Point"}, "id": "2471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64508192916375, 41.94508549248324, -85.64508192916375, 41.94508549248324], "geometry": {"coordinates": [-85.64508192916375, 41.94508549248324], "type": "Point"}, "id": "2472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64526193547472, 41.945084827658576, -85.64526193547472, 41.945084827658576], "geometry": {"coordinates": [-85.64526193547472, 41.945084827658576], "type": "Point"}, "id": "2473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64544194178512, 41.94508416274803, -85.64544194178512, 41.94508416274803], "geometry": {"coordinates": [-85.64544194178512, 41.94508416274803], "type": "Point"}, "id": "2474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64562194884704, 41.945083627004244, -85.64562194884704, 41.945083627004244], "geometry": {"coordinates": [-85.64562194884704, 41.945083627004244], "type": "Point"}, "id": "2475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64580195615255, 41.94508313312759, -85.64580195615255, 41.94508313312759], "geometry": {"coordinates": [-85.64580195615255, 41.94508313312759], "type": "Point"}, "id": "2476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64598196345806, 41.945082639250934, -85.64598196345806, 41.945082639250934], "geometry": {"coordinates": [-85.64598196345806, 41.945082639250934], "type": "Point"}, "id": "2477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64616197076356, 41.94508214537427, -85.64616197076356, 41.94508214537427], "geometry": {"coordinates": [-85.64616197076356, 41.94508214537427], "type": "Point"}, "id": "2478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.6463419781887, 41.94508169976608, -85.6463419781887, 41.94508169976608], "geometry": {"coordinates": [-85.6463419781887, 41.94508169976608], "type": "Point"}, "id": "2479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.64651432399029, 41.945100293206224, -85.64651432399029, 41.945100293206224], "geometry": {"coordinates": [-85.64651432399029, 41.945100293206224], "type": "Point"}, "id": "2480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694344}, "type": "Feature"}, {"bbox": [-85.63325799999998, 41.949892999999996, -85.63325799999998, 41.949892999999996], "geometry": {"coordinates": [-85.63325799999998, 41.949892999999996], "type": "Point"}, "id": "2481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63345942857143, 41.949890428571734, -85.63345942857143, 41.949890428571734], "geometry": {"coordinates": [-85.63345942857143, 41.949890428571734], "type": "Point"}, "id": "2482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63366085714284, 41.94988785714337, -85.63366085714284, 41.94988785714337], "geometry": {"coordinates": [-85.63366085714284, 41.94988785714337], "type": "Point"}, "id": "2483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63386228571427, 41.949885285714906, -85.63386228571427, 41.949885285714906], "geometry": {"coordinates": [-85.63386228571427, 41.949885285714906], "type": "Point"}, "id": "2484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.6340637142857, 41.94988271428633, -85.6340637142857, 41.94988271428633], "geometry": {"coordinates": [-85.6340637142857, 41.94988271428633], "type": "Point"}, "id": "2485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63426514285715, 41.94988014285766, -85.63426514285715, 41.94988014285766], "geometry": {"coordinates": [-85.63426514285715, 41.94988014285766], "type": "Point"}, "id": "2486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.63446657142856, 41.94987757142888, -85.63446657142856, 41.94987757142888], "geometry": {"coordinates": [-85.63446657142856, 41.94987757142888], "type": "Point"}, "id": "2487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835853}, "type": "Feature"}, {"bbox": [-85.641825, 41.94131600000001, -85.641825, 41.94131600000001], "geometry": {"coordinates": [-85.641825, 41.94131600000001], "type": "Point"}, "id": "2488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.6418326431582, 41.941457104568684, -85.6418326431582, 41.941457104568684], "geometry": {"coordinates": [-85.6418326431582, 41.941457104568684], "type": "Point"}, "id": "2489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64183951312982, 41.94159822807444, -85.64183951312982, 41.94159822807444], "geometry": {"coordinates": [-85.64183951312982, 41.94159822807444], "type": "Point"}, "id": "2490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64184457152452, 41.94173939636898, -85.64184457152452, 41.94173939636898], "geometry": {"coordinates": [-85.64184457152452, 41.94173939636898], "type": "Point"}, "id": "2491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64184962991918, 41.94188056435099, -85.64184962991918, 41.94188056435099], "geometry": {"coordinates": [-85.64184962991918, 41.94188056435099], "type": "Point"}, "id": "2492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64185468831384, 41.942021732020464, -85.64185468831384, 41.942021732020464], "geometry": {"coordinates": [-85.64185468831384, 41.942021732020464], "type": "Point"}, "id": "2493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.6418597467085, 41.942162899377394, -85.6418597467085, 41.942162899377394], "geometry": {"coordinates": [-85.6418597467085, 41.942162899377394], "type": "Point"}, "id": "2494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64186480510318, 41.94230406642179, -85.64186480510318, 41.94230406642179], "geometry": {"coordinates": [-85.64186480510318, 41.94230406642179], "type": "Point"}, "id": "2495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.64186987197634, 41.94244523298511, -85.64186987197634, 41.94244523298511], "geometry": {"coordinates": [-85.64186987197634, 41.94244523298511], "type": "Point"}, "id": "2496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965749}, "type": "Feature"}, {"bbox": [-85.63419010000001, 41.9432732, -85.63419010000001, 41.9432732], "geometry": {"coordinates": [-85.63419010000001, 41.9432732], "type": "Point"}, "id": "2497", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150800}, "type": "Feature"}, {"bbox": [-85.6348719, 41.94303670000001, -85.6348719, 41.94303670000001], "geometry": {"coordinates": [-85.6348719, 41.94303670000001], "type": "Point"}, "id": "2498", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150795}, "type": "Feature"}, {"bbox": [-85.630935, 41.959037, -85.630935, 41.959037], "geometry": {"coordinates": [-85.630935, 41.959037], "type": "Point"}, "id": "2499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63111747466718, 41.959035322072054, -85.63111747466718, 41.959035322072054], "geometry": {"coordinates": [-85.63111747466718, 41.959035322072054], "type": "Point"}, "id": "2500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63129994933438, 41.959033644144064, -85.63129994933438, 41.959033644144064], "geometry": {"coordinates": [-85.63129994933438, 41.959033644144064], "type": "Point"}, "id": "2501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63148242218291, 41.959031862094555, -85.63148242218291, 41.959031862094555], "geometry": {"coordinates": [-85.63148242218291, 41.959031862094555], "type": "Point"}, "id": "2502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63166489389828, 41.95903001516757, -85.63166489389828, 41.95903001516757], "geometry": {"coordinates": [-85.63166489389828, 41.95903001516757], "type": "Point"}, "id": "2503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63184736561364, 41.959028168240536, -85.63184736561364, 41.959028168240536], "geometry": {"coordinates": [-85.63184736561364, 41.959028168240536], "type": "Point"}, "id": "2504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63202983732901, 41.95902632131345, -85.63202983732901, 41.95902632131345], "geometry": {"coordinates": [-85.63202983732901, 41.95902632131345], "type": "Point"}, "id": "2505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63221231399504, 41.959024869865985, -85.63221231399504, 41.959024869865985], "geometry": {"coordinates": [-85.63221231399504, 41.959024869865985], "type": "Point"}, "id": "2506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63239480032573, 41.9590241904679, -85.63239480032573, 41.9590241904679], "geometry": {"coordinates": [-85.63239480032573, 41.9590241904679], "type": "Point"}, "id": "2507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.6325772866564, 41.959023511069795, -85.6325772866564, 41.959023511069795], "geometry": {"coordinates": [-85.6325772866564, 41.959023511069795], "type": "Point"}, "id": "2508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63275977298709, 41.95902283167168, -85.63275977298709, 41.95902283167168], "geometry": {"coordinates": [-85.63275977298709, 41.95902283167168], "type": "Point"}, "id": "2509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63294225931774, 41.95902215227357, -85.63294225931774, 41.95902215227357], "geometry": {"coordinates": [-85.63294225931774, 41.95902215227357], "type": "Point"}, "id": "2510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63312474561361, 41.95902146772458, -85.63312474561361, 41.95902146772458], "geometry": {"coordinates": [-85.63312474561361, 41.95902146772458], "type": "Point"}, "id": "2511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63330723190657, 41.959020782746244, -85.63330723190657, 41.959020782746244], "geometry": {"coordinates": [-85.63330723190657, 41.959020782746244], "type": "Point"}, "id": "2512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63348971819953, 41.9590200977679, -85.63348971819953, 41.9590200977679], "geometry": {"coordinates": [-85.63348971819953, 41.9590200977679], "type": "Point"}, "id": "2513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63367220449247, 41.959019412789544, -85.63367220449247, 41.959019412789544], "geometry": {"coordinates": [-85.63367220449247, 41.959019412789544], "type": "Point"}, "id": "2514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63385469078544, 41.959018727811184, -85.63385469078544, 41.959018727811184], "geometry": {"coordinates": [-85.63385469078544, 41.959018727811184], "type": "Point"}, "id": "2515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63403717707838, 41.95901804283281, -85.63403717707838, 41.95901804283281], "geometry": {"coordinates": [-85.63403717707838, 41.95901804283281], "type": "Point"}, "id": "2516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63421966337134, 41.95901735785444, -85.63421966337134, 41.95901735785444], "geometry": {"coordinates": [-85.63421966337134, 41.95901735785444], "type": "Point"}, "id": "2517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63440212609973, 41.95901545794521, -85.63440212609973, 41.95901545794521], "geometry": {"coordinates": [-85.63440212609973, 41.95901545794521], "type": "Point"}, "id": "2518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.63458456304986, 41.95901222897269, -85.63458456304986, 41.95901222897269], "geometry": {"coordinates": [-85.63458456304986, 41.95901222897269], "type": "Point"}, "id": "2519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964793}, "type": "Feature"}, {"bbox": [-85.6344047, 41.93954960000001, -85.6344047, 41.93954960000001], "geometry": {"coordinates": [-85.6344047, 41.93954960000001], "type": "Point"}, "id": "2520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63442473621903, 41.93941367589305, -85.63442473621903, 41.93941367589305], "geometry": {"coordinates": [-85.63442473621903, 41.93941367589305], "type": "Point"}, "id": "2521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63444477243807, 41.93927775149637, -85.63444477243807, 41.93927775149637], "geometry": {"coordinates": [-85.63444477243807, 41.93927775149637], "type": "Point"}, "id": "2522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.6344648086571, 41.939141826809966, -85.6344648086571, 41.939141826809966], "geometry": {"coordinates": [-85.6344648086571, 41.939141826809966], "type": "Point"}, "id": "2523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63448484487613, 41.93900590183384, -85.63448484487613, 41.93900590183384], "geometry": {"coordinates": [-85.63448484487613, 41.93900590183384], "type": "Point"}, "id": "2524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63449394264288, 41.938869401158755, -85.63449394264288, 41.938869401158755], "geometry": {"coordinates": [-85.63449394264288, 41.938869401158755], "type": "Point"}, "id": "2525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63449982190312, 41.93873273088398, -85.63449982190312, 41.93873273088398], "geometry": {"coordinates": [-85.63449982190312, 41.93873273088398], "type": "Point"}, "id": "2526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63450570116339, 41.93859606031628, -85.63450570116339, 41.93859606031628], "geometry": {"coordinates": [-85.63450570116339, 41.93859606031628], "type": "Point"}, "id": "2527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63451158042362, 41.93845938945568, -85.63451158042362, 41.93845938945568], "geometry": {"coordinates": [-85.63451158042362, 41.93845938945568], "type": "Point"}, "id": "2528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63451745968388, 41.938322718302175, -85.63451745968388, 41.938322718302175], "geometry": {"coordinates": [-85.63451745968388, 41.938322718302175], "type": "Point"}, "id": "2529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63453994862593, 41.93819340228717, -85.63453994862593, 41.93819340228717], "geometry": {"coordinates": [-85.63453994862593, 41.93819340228717], "type": "Point"}, "id": "2530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63469864338508, 41.9381243877992, -85.63469864338508, 41.9381243877992], "geometry": {"coordinates": [-85.63469864338508, 41.9381243877992], "type": "Point"}, "id": "2531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63485733424322, 41.938055368272124, -85.63485733424322, 41.938055368272124], "geometry": {"coordinates": [-85.63485733424322, 41.938055368272124], "type": "Point"}, "id": "2532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63501602510136, 41.93798634867035, -85.63501602510136, 41.93798634867035], "geometry": {"coordinates": [-85.63501602510136, 41.93798634867035], "type": "Point"}, "id": "2533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63508842948774, 41.93786480495363, -85.63508842948774, 41.93786480495363], "geometry": {"coordinates": [-85.63508842948774, 41.93786480495363], "type": "Point"}, "id": "2534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63514794255721, 41.93773542705297, -85.63514794255721, 41.93773542705297], "geometry": {"coordinates": [-85.63514794255721, 41.93773542705297], "type": "Point"}, "id": "2535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.6352074556267, 41.93760604888984, -85.6352074556267, 41.93760604888984], "geometry": {"coordinates": [-85.6352074556267, 41.93760604888984], "type": "Point"}, "id": "2536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63518778142412, 41.93747188349864, -85.63518778142412, 41.93747188349864], "geometry": {"coordinates": [-85.63518778142412, 41.93747188349864], "type": "Point"}, "id": "2537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63515713196865, 41.93733705435655, -85.63515713196865, 41.93733705435655], "geometry": {"coordinates": [-85.63515713196865, 41.93733705435655], "type": "Point"}, "id": "2538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63513861346523, 41.93720109370517, -85.63513861346523, 41.93720109370517], "geometry": {"coordinates": [-85.63513861346523, 41.93720109370517], "type": "Point"}, "id": "2539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63512353400765, 41.937064810761136, -85.63512353400765, 41.937064810761136], "geometry": {"coordinates": [-85.63512353400765, 41.937064810761136], "type": "Point"}, "id": "2540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63512091735025, 41.93692825785039, -85.63512091735025, 41.93692825785039], "geometry": {"coordinates": [-85.63512091735025, 41.93692825785039], "type": "Point"}, "id": "2541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.6351440230222, 41.9367936357061, -85.6351440230222, 41.9367936357061], "geometry": {"coordinates": [-85.6351440230222, 41.9367936357061], "type": "Point"}, "id": "2542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63519363821405, 41.93666196599848, -85.63519363821405, 41.93666196599848], "geometry": {"coordinates": [-85.63519363821405, 41.93666196599848], "type": "Point"}, "id": "2543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63524325340587, 41.936530296019036, -85.63524325340587, 41.936530296019036], "geometry": {"coordinates": [-85.63524325340587, 41.936530296019036], "type": "Point"}, "id": "2544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63530975505509, 41.936407351233974, -85.63530975505509, 41.936407351233974], "geometry": {"coordinates": [-85.63530975505509, 41.936407351233974], "type": "Point"}, "id": "2545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63545830337006, 41.936326800924384, -85.63545830337006, 41.936326800924384], "geometry": {"coordinates": [-85.63545830337006, 41.936326800924384], "type": "Point"}, "id": "2546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63560685168501, 41.93624625051306, -85.63560685168501, 41.93624625051306], "geometry": {"coordinates": [-85.63560685168501, 41.93624625051306], "type": "Point"}, "id": "2547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 170995908}, "type": "Feature"}, {"bbox": [-85.63674599999999, 41.92922099999999, -85.63674599999999, 41.92922099999999], "geometry": {"coordinates": [-85.63674599999999, 41.92922099999999], "type": "Point"}, "id": "2548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63678757155473, 41.92935218136161, -85.63678757155473, 41.92935218136161], "geometry": {"coordinates": [-85.63678757155473, 41.92935218136161], "type": "Point"}, "id": "2549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63683595460998, 41.92948205391423, -85.63683595460998, 41.92948205391423], "geometry": {"coordinates": [-85.63683595460998, 41.92948205391423], "type": "Point"}, "id": "2550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63688494990838, 41.929611808586294, -85.63688494990838, 41.929611808586294], "geometry": {"coordinates": [-85.63688494990838, 41.929611808586294], "type": "Point"}, "id": "2551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63693394520676, 41.92974156299441, -85.63693394520676, 41.92974156299441], "geometry": {"coordinates": [-85.63693394520676, 41.92974156299441], "type": "Point"}, "id": "2552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63698294050518, 41.92987131713861, -85.63698294050518, 41.92987131713861], "geometry": {"coordinates": [-85.63698294050518, 41.92987131713861], "type": "Point"}, "id": "2553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63703193580356, 41.93000107101888, -85.63703193580356, 41.93000107101888], "geometry": {"coordinates": [-85.63703193580356, 41.93000107101888], "type": "Point"}, "id": "2554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63708093110193, 41.93013082463522, -85.63708093110193, 41.93013082463522], "geometry": {"coordinates": [-85.63708093110193, 41.93013082463522], "type": "Point"}, "id": "2555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63712992640033, 41.93026057798764, -85.63712992640033, 41.93026057798764], "geometry": {"coordinates": [-85.63712992640033, 41.93026057798764], "type": "Point"}, "id": "2556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63717892169873, 41.93039033107611, -85.63717892169873, 41.93039033107611], "geometry": {"coordinates": [-85.63717892169873, 41.93039033107611], "type": "Point"}, "id": "2557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63722791699712, 41.93052008390066, -85.63722791699712, 41.93052008390066], "geometry": {"coordinates": [-85.63722791699712, 41.93052008390066], "type": "Point"}, "id": "2558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63727691229552, 41.930649836461285, -85.63727691229552, 41.930649836461285], "geometry": {"coordinates": [-85.63727691229552, 41.930649836461285], "type": "Point"}, "id": "2559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.6373259075939, 41.93077958875797, -85.6373259075939, 41.93077958875797], "geometry": {"coordinates": [-85.6373259075939, 41.93077958875797], "type": "Point"}, "id": "2560", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.6373749028923, 41.930909340790734, -85.6373749028923, 41.930909340790734], "geometry": {"coordinates": [-85.6373749028923, 41.930909340790734], "type": "Point"}, "id": "2561", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63742389819068, 41.931039092559566, -85.63742389819068, 41.931039092559566], "geometry": {"coordinates": [-85.63742389819068, 41.931039092559566], "type": "Point"}, "id": "2562", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63747289424876, 41.93116884390567, -85.63747289424876, 41.93116884390567], "geometry": {"coordinates": [-85.63747289424876, 41.93116884390567], "type": "Point"}, "id": "2563", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63752190732653, 41.93129859143019, -85.63752190732653, 41.93129859143019], "geometry": {"coordinates": [-85.63752190732653, 41.93129859143019], "type": "Point"}, "id": "2564", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.6375709204043, 41.93142833869079, -85.6375709204043, 41.93142833869079], "geometry": {"coordinates": [-85.6375709204043, 41.93142833869079], "type": "Point"}, "id": "2565", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63762248820684, 41.93155751844506, -85.63762248820684, 41.93155751844506], "geometry": {"coordinates": [-85.63762248820684, 41.93155751844506], "type": "Point"}, "id": "2566", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63767394476402, 41.93168661146992, -85.63767394476402, 41.93168661146992], "geometry": {"coordinates": [-85.63767394476402, 41.93168661146992], "type": "Point"}, "id": "2567", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63770734342756, 41.931819074030706, -85.63770734342756, 41.931819074030706], "geometry": {"coordinates": [-85.63770734342756, 41.931819074030706], "type": "Point"}, "id": "2568", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63772728091195, 41.93195241489078, -85.63772728091195, 41.93195241489078], "geometry": {"coordinates": [-85.63772728091195, 41.93195241489078], "type": "Point"}, "id": "2569", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63772539608942, 41.93208717975139, -85.63772539608942, 41.93208717975139], "geometry": {"coordinates": [-85.63772539608942, 41.93208717975139], "type": "Point"}, "id": "2570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63772448702707, 41.93222194434044, -85.63772448702707, 41.93222194434044], "geometry": {"coordinates": [-85.63772448702707, 41.93222194434044], "type": "Point"}, "id": "2571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.6377263652703, 41.932356708682434, -85.6377263652703, 41.932356708682434], "geometry": {"coordinates": [-85.6377263652703, 41.932356708682434], "type": "Point"}, "id": "2572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63772824351354, 41.932491472739684, -85.63772824351354, 41.932491472739684], "geometry": {"coordinates": [-85.63772824351354, 41.932491472739684], "type": "Point"}, "id": "2573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.63773012175676, 41.9326262365122, -85.63773012175676, 41.9326262365122], "geometry": {"coordinates": [-85.63773012175676, 41.9326262365122], "type": "Point"}, "id": "2574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964497}, "type": "Feature"}, {"bbox": [-85.62351099999998, 41.934216, -85.62351099999998, 41.934216], "geometry": {"coordinates": [-85.62351099999998, 41.934216], "type": "Point"}, "id": "2575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62369466315471, 41.934216289005754, -85.62369466315471, 41.934216289005754], "geometry": {"coordinates": [-85.62369466315471, 41.934216289005754], "type": "Point"}, "id": "2576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62387832630942, 41.9342165780115, -85.62387832630942, 41.9342165780115], "geometry": {"coordinates": [-85.62387832630942, 41.9342165780115], "type": "Point"}, "id": "2577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62406198946415, 41.934216867017255, -85.62406198946415, 41.934216867017255], "geometry": {"coordinates": [-85.62406198946415, 41.934216867017255], "type": "Point"}, "id": "2578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6242456526189, 41.93421715602302, -85.6242456526189, 41.93421715602302], "geometry": {"coordinates": [-85.6242456526189, 41.93421715602302], "type": "Point"}, "id": "2579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62442931577361, 41.93421744502875, -85.62442931577361, 41.93421744502875], "geometry": {"coordinates": [-85.62442931577361, 41.93421744502875], "type": "Point"}, "id": "2580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62461297892833, 41.934217734034505, -85.62461297892833, 41.934217734034505], "geometry": {"coordinates": [-85.62461297892833, 41.934217734034505], "type": "Point"}, "id": "2581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62479664185796, 41.93421793535603, -85.62479664185796, 41.93421793535603], "geometry": {"coordinates": [-85.62479664185796, 41.93421793535603], "type": "Point"}, "id": "2582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6249803021891, 41.934217124493664, -85.6249803021891, 41.934217124493664], "geometry": {"coordinates": [-85.6249803021891, 41.934217124493664], "type": "Point"}, "id": "2583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62516396252026, 41.93421631363128, -85.62516396252026, 41.93421631363128], "geometry": {"coordinates": [-85.62516396252026, 41.93421631363128], "type": "Point"}, "id": "2584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6253476228514, 41.93421550276889, -85.6253476228514, 41.93421550276889], "geometry": {"coordinates": [-85.6253476228514, 41.93421550276889], "type": "Point"}, "id": "2585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62553128318257, 41.93421469190649, -85.62553128318257, 41.93421469190649], "geometry": {"coordinates": [-85.62553128318257, 41.93421469190649], "type": "Point"}, "id": "2586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62571494314919, 41.934213841821034, -85.62571494314919, 41.934213841821034], "geometry": {"coordinates": [-85.62571494314919, 41.934213841821034], "type": "Point"}, "id": "2587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62589860099567, 41.934212763594964, -85.62589860099567, 41.934212763594964], "geometry": {"coordinates": [-85.62589860099567, 41.934212763594964], "type": "Point"}, "id": "2588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62608225884216, 41.934211685368865, -85.62608225884216, 41.934211685368865], "geometry": {"coordinates": [-85.62608225884216, 41.934211685368865], "type": "Point"}, "id": "2589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62626591668865, 41.934210607142745, -85.62626591668865, 41.934210607142745], "geometry": {"coordinates": [-85.62626591668865, 41.934210607142745], "type": "Point"}, "id": "2590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62644957455419, 41.9342095307193, -85.62644957455419, 41.9342095307193], "geometry": {"coordinates": [-85.62644957455419, 41.9342095307193], "type": "Point"}, "id": "2591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62663323247648, 41.934208459663296, -85.62663323247648, 41.934208459663296], "geometry": {"coordinates": [-85.62663323247648, 41.934208459663296], "type": "Point"}, "id": "2592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62681689039877, 41.93420738860727, -85.62681689039877, 41.93420738860727], "geometry": {"coordinates": [-85.62681689039877, 41.93420738860727], "type": "Point"}, "id": "2593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62700054832106, 41.93420631755124, -85.62700054832106, 41.93420631755124], "geometry": {"coordinates": [-85.62700054832106, 41.93420631755124], "type": "Point"}, "id": "2594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62718420369376, 41.934206965597326, -85.62718420369376, 41.934206965597326], "geometry": {"coordinates": [-85.62718420369376, 41.934206965597326], "type": "Point"}, "id": "2595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62736785799196, 41.934208338128485, -85.62736785799196, 41.934208338128485], "geometry": {"coordinates": [-85.62736785799196, 41.934208338128485], "type": "Point"}, "id": "2596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62755151229013, 41.93420971065963, -85.62755151229013, 41.93420971065963], "geometry": {"coordinates": [-85.62755151229013, 41.93420971065963], "type": "Point"}, "id": "2597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62773516658832, 41.93421108319074, -85.62773516658832, 41.93421108319074], "geometry": {"coordinates": [-85.62773516658832, 41.93421108319074], "type": "Point"}, "id": "2598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62791882081358, 41.934212461105396, -85.62791882081358, 41.934212461105396], "geometry": {"coordinates": [-85.62791882081358, 41.934212461105396], "type": "Point"}, "id": "2599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62810247497926, 41.93421384341403, -85.62810247497926, 41.93421384341403], "geometry": {"coordinates": [-85.62810247497926, 41.93421384341403], "type": "Point"}, "id": "2600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62828612914493, 41.934215225722625, -85.62828612914493, 41.934215225722625], "geometry": {"coordinates": [-85.62828612914493, 41.934215225722625], "type": "Point"}, "id": "2601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62846977251206, 41.9342148445096, -85.62846977251206, 41.9342148445096], "geometry": {"coordinates": [-85.62846977251206, 41.9342148445096], "type": "Point"}, "id": "2602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62865340212808, 41.93421221759777, -85.62865340212808, 41.93421221759777], "geometry": {"coordinates": [-85.62865340212808, 41.93421221759777], "type": "Point"}, "id": "2603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62883703174414, 41.934209590685846, -85.62883703174414, 41.934209590685846], "geometry": {"coordinates": [-85.62883703174414, 41.934209590685846], "type": "Point"}, "id": "2604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62902066136016, 41.93420696377382, -85.62902066136016, 41.93420696377382], "geometry": {"coordinates": [-85.62902066136016, 41.93420696377382], "type": "Point"}, "id": "2605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62920429124483, 41.934204347276335, -85.62920429124483, 41.934204347276335], "geometry": {"coordinates": [-85.62920429124483, 41.934204347276335], "type": "Point"}, "id": "2606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62938792115948, 41.934201731941236, -85.62938792115948, 41.934201731941236], "geometry": {"coordinates": [-85.62938792115948, 41.934201731941236], "type": "Point"}, "id": "2607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62957155107412, 41.93419911660602, -85.62957155107412, 41.93419911660602], "geometry": {"coordinates": [-85.62957155107412, 41.93419911660602], "type": "Point"}, "id": "2608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6297551876232, 41.93419682446136, -85.6297551876232, 41.93419682446136], "geometry": {"coordinates": [-85.6297551876232, 41.93419682446136], "type": "Point"}, "id": "2609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.62993883926146, 41.93419526737182, -85.62993883926146, 41.93419526737182], "geometry": {"coordinates": [-85.62993883926146, 41.93419526737182], "type": "Point"}, "id": "2610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6301224908997, 41.93419371028224, -85.6301224908997, 41.93419371028224], "geometry": {"coordinates": [-85.6301224908997, 41.93419371028224], "type": "Point"}, "id": "2611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63030614253795, 41.93419215319262, -85.63030614253795, 41.93419215319262], "geometry": {"coordinates": [-85.63030614253795, 41.93419215319262], "type": "Point"}, "id": "2612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63048980108852, 41.93419119750819, -85.63048980108852, 41.93419119750819], "geometry": {"coordinates": [-85.63048980108852, 41.93419119750819], "type": "Point"}, "id": "2613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63067346166697, 41.93419041826068, -85.63067346166697, 41.93419041826068], "geometry": {"coordinates": [-85.63067346166697, 41.93419041826068], "type": "Point"}, "id": "2614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63085712224542, 41.934189639013155, -85.63085712224542, 41.934189639013155], "geometry": {"coordinates": [-85.63085712224542, 41.934189639013155], "type": "Point"}, "id": "2615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63104076988786, 41.934188529461295, -85.63104076988786, 41.934188529461295], "geometry": {"coordinates": [-85.63104076988786, 41.934188529461295], "type": "Point"}, "id": "2616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63122417992524, 41.934181352975, -85.63122417992524, 41.934181352975], "geometry": {"coordinates": [-85.63122417992524, 41.934181352975], "type": "Point"}, "id": "2617", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.63140758996262, 41.93417417648791, -85.63140758996262, 41.93417417648791], "geometry": {"coordinates": [-85.63140758996262, 41.93417417648791], "type": "Point"}, "id": "2618", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968171}, "type": "Feature"}, {"bbox": [-85.6304857, 41.95119449999999, -85.6304857, 41.95119449999999], "geometry": {"coordinates": [-85.6304857, 41.95119449999999], "type": "Point"}, "id": "2619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63067161708915, 41.95119576116738, -85.63067161708915, 41.95119576116738], "geometry": {"coordinates": [-85.63067161708915, 41.95119576116738], "type": "Point"}, "id": "2620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63085752910148, 41.95119655906989, -85.63085752910148, 41.95119655906989], "geometry": {"coordinates": [-85.63085752910148, 41.95119655906989], "type": "Point"}, "id": "2621", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.6310433938528, 41.951193044369504, -85.6310433938528, 41.951193044369504], "geometry": {"coordinates": [-85.6310433938528, 41.951193044369504], "type": "Point"}, "id": "2622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63122925860418, 41.95118952966891, -85.63122925860418, 41.95118952966891], "geometry": {"coordinates": [-85.63122925860418, 41.95118952966891], "type": "Point"}, "id": "2623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63141512335551, 41.95118601496812, -85.63141512335551, 41.95118601496812], "geometry": {"coordinates": [-85.63141512335551, 41.95118601496812], "type": "Point"}, "id": "2624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63160098810685, 41.95118250026715, -85.63160098810685, 41.95118250026715], "geometry": {"coordinates": [-85.63160098810685, 41.95118250026715], "type": "Point"}, "id": "2625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63178685285821, 41.95117898556599, -85.63178685285821, 41.95117898556599], "geometry": {"coordinates": [-85.63178685285821, 41.95117898556599], "type": "Point"}, "id": "2626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63197271760954, 41.95117547086461, -85.63197271760954, 41.95117547086461], "geometry": {"coordinates": [-85.63197271760954, 41.95117547086461], "type": "Point"}, "id": "2627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63215860260581, 41.951172674671916, -85.63215860260581, 41.951172674671916], "geometry": {"coordinates": [-85.63215860260581, 41.951172674671916], "type": "Point"}, "id": "2628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63234450217152, 41.95117039556014, -85.63234450217152, 41.95117039556014], "geometry": {"coordinates": [-85.63234450217152, 41.95117039556014], "type": "Point"}, "id": "2629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.6325304017372, 41.95116811644827, -85.6325304017372, 41.95116811644827], "geometry": {"coordinates": [-85.6325304017372, 41.95116811644827], "type": "Point"}, "id": "2630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.6327163013029, 41.951165837336326, -85.6327163013029, 41.951165837336326], "geometry": {"coordinates": [-85.6327163013029, 41.951165837336326], "type": "Point"}, "id": "2631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63290220086861, 41.951163558224295, -85.63290220086861, 41.951163558224295], "geometry": {"coordinates": [-85.63290220086861, 41.951163558224295], "type": "Point"}, "id": "2632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.63308810043429, 41.95116127911219, -85.63308810043429, 41.95116127911219], "geometry": {"coordinates": [-85.63308810043429, 41.95116127911219], "type": "Point"}, "id": "2633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967386}, "type": "Feature"}, {"bbox": [-85.644228, 41.932672, -85.644228, 41.932672], "geometry": {"coordinates": [-85.644228, 41.932672], "type": "Point"}, "id": "2634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64422792824341, 41.93280870552756, -85.64422792824341, 41.93280870552756], "geometry": {"coordinates": [-85.64422792824341, 41.93280870552756], "type": "Point"}, "id": "2635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64422985092965, 41.93294540090325, -85.64422985092965, 41.93294540090325], "geometry": {"coordinates": [-85.64422985092965, 41.93294540090325], "type": "Point"}, "id": "2636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64423235022997, 41.93308209321901, -85.64423235022997, 41.93308209321901], "geometry": {"coordinates": [-85.64423235022997, 41.93308209321901], "type": "Point"}, "id": "2637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64423484953028, 41.93321878524183, -85.64423484953028, 41.93321878524183], "geometry": {"coordinates": [-85.64423484953028, 41.93321878524183], "type": "Point"}, "id": "2638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64423734883057, 41.933355476971705, -85.64423734883057, 41.933355476971705], "geometry": {"coordinates": [-85.64423734883057, 41.933355476971705], "type": "Point"}, "id": "2639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64423984813088, 41.93349216840864, -85.64423984813088, 41.93349216840864], "geometry": {"coordinates": [-85.64423984813088, 41.93349216840864], "type": "Point"}, "id": "2640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64424234743119, 41.933628859552634, -85.64424234743119, 41.933628859552634], "geometry": {"coordinates": [-85.64424234743119, 41.933628859552634], "type": "Point"}, "id": "2641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64424484673151, 41.933765550403685, -85.64424484673151, 41.933765550403685], "geometry": {"coordinates": [-85.64424484673151, 41.933765550403685], "type": "Point"}, "id": "2642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.6442473460318, 41.93390224096179, -85.6442473460318, 41.93390224096179], "geometry": {"coordinates": [-85.6442473460318, 41.93390224096179], "type": "Point"}, "id": "2643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64425255640833, 41.93403888645215, -85.64425255640833, 41.93403888645215], "geometry": {"coordinates": [-85.64425255640833, 41.93403888645215], "type": "Point"}, "id": "2644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64425821409773, 41.93417552426219, -85.64425821409773, 41.93417552426219], "geometry": {"coordinates": [-85.64425821409773, 41.93417552426219], "type": "Point"}, "id": "2645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64426387178716, 41.9343121617795, -85.64426387178716, 41.9343121617795], "geometry": {"coordinates": [-85.64426387178716, 41.9343121617795], "type": "Point"}, "id": "2646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64426952947659, 41.93444879900409, -85.64426952947659, 41.93444879900409], "geometry": {"coordinates": [-85.64426952947659, 41.93444879900409], "type": "Point"}, "id": "2647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64427518716599, 41.934585435935965, -85.64427518716599, 41.934585435935965], "geometry": {"coordinates": [-85.64427518716599, 41.934585435935965], "type": "Point"}, "id": "2648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64428084485542, 41.93472207257511, -85.64428084485542, 41.93472207257511], "geometry": {"coordinates": [-85.64428084485542, 41.93472207257511], "type": "Point"}, "id": "2649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64428650254483, 41.93485870892154, -85.64428650254483, 41.93485870892154], "geometry": {"coordinates": [-85.64428650254483, 41.93485870892154], "type": "Point"}, "id": "2650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429163365072, 41.93499535222804, -85.64429163365072, 41.93499535222804], "geometry": {"coordinates": [-85.64429163365072, 41.93499535222804], "type": "Point"}, "id": "2651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429277893245, 41.935132050139664, -85.64429277893245, 41.935132050139664], "geometry": {"coordinates": [-85.64429277893245, 41.935132050139664], "type": "Point"}, "id": "2652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429392421417, 41.9352687477583, -85.64429392421417, 41.9352687477583], "geometry": {"coordinates": [-85.64429392421417, 41.9352687477583], "type": "Point"}, "id": "2653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.6442950694959, 41.935405445083944, -85.6442950694959, 41.935405445083944], "geometry": {"coordinates": [-85.6442950694959, 41.935405445083944], "type": "Point"}, "id": "2654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429620500113, 41.935542142161495, -85.64429620500113, 41.935542142161495], "geometry": {"coordinates": [-85.64429620500113, 41.935542142161495], "type": "Point"}, "id": "2655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429732853199, 41.935678839001056, -85.64429732853199, 41.935678839001056], "geometry": {"coordinates": [-85.64429732853199, 41.935678839001056], "type": "Point"}, "id": "2656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429845206288, 41.93581553554761, -85.64429845206288, 41.93581553554761], "geometry": {"coordinates": [-85.64429845206288, 41.93581553554761], "type": "Point"}, "id": "2657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64429957559378, 41.935952231801195, -85.64429957559378, 41.935952231801195], "geometry": {"coordinates": [-85.64429957559378, 41.935952231801195], "type": "Point"}, "id": "2658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64430069912466, 41.936088927761794, -85.64430069912466, 41.936088927761794], "geometry": {"coordinates": [-85.64430069912466, 41.936088927761794], "type": "Point"}, "id": "2659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.64430182265555, 41.93622562342939, -85.64430182265555, 41.93622562342939], "geometry": {"coordinates": [-85.64430182265555, 41.93622562342939], "type": "Point"}, "id": "2660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 78480220}, "type": "Feature"}, {"bbox": [-85.637685, 41.934223, -85.637685, 41.934223], "geometry": {"coordinates": [-85.637685, 41.934223], "type": "Point"}, "id": "2661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964970}, "type": "Feature"}, {"bbox": [-85.63747225, 41.934223, -85.63747225, 41.934223], "geometry": {"coordinates": [-85.63747225, 41.934223], "type": "Point"}, "id": "2662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964970}, "type": "Feature"}, {"bbox": [-85.6372595, 41.934223, -85.6372595, 41.934223], "geometry": {"coordinates": [-85.6372595, 41.934223], "type": "Point"}, "id": "2663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964970}, "type": "Feature"}, {"bbox": [-85.63704674999998, 41.934223, -85.63704674999998, 41.934223], "geometry": {"coordinates": [-85.63704674999998, 41.934223], "type": "Point"}, "id": "2664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964970}, "type": "Feature"}, {"bbox": [-85.6440766, 41.954346199999996, -85.6440766, 41.954346199999996], "geometry": {"coordinates": [-85.6440766, 41.954346199999996], "type": "Point"}, "id": "2665", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550668}, "type": "Feature"}, {"bbox": [-85.64428118, 41.95431358003339, -85.64428118, 41.95431358003339], "geometry": {"coordinates": [-85.64428118, 41.95431358003339], "type": "Point"}, "id": "2666", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550668}, "type": "Feature"}, {"bbox": [-85.64448576000001, 41.95428096005009, -85.64448576000001, 41.95428096005009], "geometry": {"coordinates": [-85.64448576000001, 41.95428096005009], "type": "Point"}, "id": "2667", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550668}, "type": "Feature"}, {"bbox": [-85.64469034, 41.95424834005009, -85.64469034, 41.95424834005009], "geometry": {"coordinates": [-85.64469034, 41.95424834005009], "type": "Point"}, "id": "2668", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550668}, "type": "Feature"}, {"bbox": [-85.64489492000001, 41.954215720033396, -85.64489492000001, 41.954215720033396], "geometry": {"coordinates": [-85.64489492000001, 41.954215720033396], "type": "Point"}, "id": "2669", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550668}, "type": "Feature"}, {"bbox": [-85.627127, 41.940086, -85.627127, 41.940086], "geometry": {"coordinates": [-85.627127, 41.940086], "type": "Point"}, "id": "2670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62731313291931, 41.940082170520135, -85.62731313291931, 41.940082170520135], "geometry": {"coordinates": [-85.62731313291931, 41.940082170520135], "type": "Point"}, "id": "2671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62749937098955, 41.940082803982975, -85.62749937098955, 41.940082803982975], "geometry": {"coordinates": [-85.62749937098955, 41.940082803982975], "type": "Point"}, "id": "2672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62768560905981, 41.9400834374458, -85.62768560905981, 41.9400834374458], "geometry": {"coordinates": [-85.62768560905981, 41.9400834374458], "type": "Point"}, "id": "2673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62787184713005, 41.94008407090863, -85.62787184713005, 41.94008407090863], "geometry": {"coordinates": [-85.62787184713005, 41.94008407090863], "type": "Point"}, "id": "2674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62805808520031, 41.94008470437146, -85.62805808520031, 41.94008470437146], "geometry": {"coordinates": [-85.62805808520031, 41.94008470437146], "type": "Point"}, "id": "2675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62824432327054, 41.940085337834276, -85.62824432327054, 41.940085337834276], "geometry": {"coordinates": [-85.62824432327054, 41.940085337834276], "type": "Point"}, "id": "2676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62843056134076, 41.94008597129707, -85.62843056134076, 41.94008597129707], "geometry": {"coordinates": [-85.62843056134076, 41.94008597129707], "type": "Point"}, "id": "2677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62861679554139, 41.94008493835304, -85.62861679554139, 41.94008493835304], "geometry": {"coordinates": [-85.62861679554139, 41.94008493835304], "type": "Point"}, "id": "2678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62880302955834, 41.94008382631851, -85.62880302955834, 41.94008382631851], "geometry": {"coordinates": [-85.62880302955834, 41.94008382631851], "type": "Point"}, "id": "2679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62898926357529, 41.94008271428396, -85.62898926357529, 41.94008271428396], "geometry": {"coordinates": [-85.62898926357529, 41.94008271428396], "type": "Point"}, "id": "2680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62917549759223, 41.940081602249386, -85.62917549759223, 41.940081602249386], "geometry": {"coordinates": [-85.62917549759223, 41.940081602249386], "type": "Point"}, "id": "2681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62936173160918, 41.9400804902148, -85.62936173160918, 41.9400804902148], "geometry": {"coordinates": [-85.62936173160918, 41.9400804902148], "type": "Point"}, "id": "2682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.62954796562612, 41.94007937818019, -85.62954796562612, 41.94007937818019], "geometry": {"coordinates": [-85.62954796562612, 41.94007937818019], "type": "Point"}, "id": "2683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967751}, "type": "Feature"}, {"bbox": [-85.63711299999999, 41.9486, -85.63711299999999, 41.9486], "geometry": {"coordinates": [-85.63711299999999, 41.9486], "type": "Point"}, "id": "2684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63719766430333, 41.94871804528692, -85.63719766430333, 41.94871804528692], "geometry": {"coordinates": [-85.63719766430333, 41.94871804528692], "type": "Point"}, "id": "2685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63728232860666, 41.94883609035525, -85.63728232860666, 41.94883609035525], "geometry": {"coordinates": [-85.63728232860666, 41.94883609035525], "type": "Point"}, "id": "2686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63736699290999, 41.948954135204986, -85.63736699290999, 41.948954135204986], "geometry": {"coordinates": [-85.63736699290999, 41.948954135204986], "type": "Point"}, "id": "2687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63739713131886, 41.949082561696926, -85.63739713131886, 41.949082561696926], "geometry": {"coordinates": [-85.63739713131886, 41.949082561696926], "type": "Point"}, "id": "2688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63739914923522, 41.94921634212775, -85.63739914923522, 41.94921634212775], "geometry": {"coordinates": [-85.63739914923522, 41.94921634212775], "type": "Point"}, "id": "2689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374011671516, 41.949350122277814, -85.6374011671516, 41.949350122277814], "geometry": {"coordinates": [-85.6374011671516, 41.949350122277814], "type": "Point"}, "id": "2690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374032240736, 41.94948390181849, -85.6374032240736, 41.94948390181849], "geometry": {"coordinates": [-85.6374032240736, 41.94948390181849], "type": "Point"}, "id": "2691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740528164107, 41.94961768107297, -85.63740528164107, 41.94961768107297], "geometry": {"coordinates": [-85.63740528164107, 41.94961768107297], "type": "Point"}, "id": "2692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740732741705, 41.949751460146096, -85.63740732741705, 41.949751460146096], "geometry": {"coordinates": [-85.63740732741705, 41.949751460146096], "type": "Point"}, "id": "2693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740922163683, 41.94988523975957, -85.63740922163683, 41.94988523975957], "geometry": {"coordinates": [-85.63740922163683, 41.94988523975957], "type": "Point"}, "id": "2694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740951884428, 41.95001902674119, -85.63740951884428, 41.95001902674119], "geometry": {"coordinates": [-85.63740951884428, 41.95001902674119], "type": "Point"}, "id": "2695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63740981605176, 41.95015281344202, -85.63740981605176, 41.95015281344202], "geometry": {"coordinates": [-85.63740981605176, 41.95015281344202], "type": "Point"}, "id": "2696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741011325924, 41.950286599862046, -85.63741011325924, 41.950286599862046], "geometry": {"coordinates": [-85.63741011325924, 41.950286599862046], "type": "Point"}, "id": "2697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741041046669, 41.95042038600129, -85.63741041046669, 41.95042038600129], "geometry": {"coordinates": [-85.63741041046669, 41.95042038600129], "type": "Point"}, "id": "2698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741070767418, 41.95055417185976, -85.63741070767418, 41.95055417185976], "geometry": {"coordinates": [-85.63741070767418, 41.95055417185976], "type": "Point"}, "id": "2699", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741100488163, 41.95068795743742, -85.63741100488163, 41.95068795743742], "geometry": {"coordinates": [-85.63741100488163, 41.95068795743742], "type": "Point"}, "id": "2700", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374113020891, 41.9508217427343, -85.6374113020891, 41.9508217427343], "geometry": {"coordinates": [-85.6374113020891, 41.9508217427343], "type": "Point"}, "id": "2701", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741159929658, 41.9509555277504, -85.63741159929658, 41.9509555277504], "geometry": {"coordinates": [-85.63741159929658, 41.9509555277504], "type": "Point"}, "id": "2702", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741189650403, 41.9510893124857, -85.63741189650403, 41.9510893124857], "geometry": {"coordinates": [-85.63741189650403, 41.9510893124857], "type": "Point"}, "id": "2703", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741338057491, 41.95122309101395, -85.63741338057491, 41.95122309101395], "geometry": {"coordinates": [-85.63741338057491, 41.95122309101395], "type": "Point"}, "id": "2704", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374154987616, 41.951356866095175, -85.6374154987616, 41.951356866095175], "geometry": {"coordinates": [-85.6374154987616, 41.951356866095175], "type": "Point"}, "id": "2705", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741761694826, 41.95149064089565, -85.63741761694826, 41.95149064089565], "geometry": {"coordinates": [-85.63741761694826, 41.95149064089565], "type": "Point"}, "id": "2706", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63741973513493, 41.95162441541537, -85.63741973513493, 41.95162441541537], "geometry": {"coordinates": [-85.63741973513493, 41.95162441541537], "type": "Point"}, "id": "2707", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374218533216, 41.95175818965433, -85.6374218533216, 41.95175818965433], "geometry": {"coordinates": [-85.6374218533216, 41.95175818965433], "type": "Point"}, "id": "2708", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63742397150827, 41.951891963612546, -85.63742397150827, 41.951891963612546], "geometry": {"coordinates": [-85.63742397150827, 41.951891963612546], "type": "Point"}, "id": "2709", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63742608969493, 41.952025737290015, -85.63742608969493, 41.952025737290015], "geometry": {"coordinates": [-85.63742608969493, 41.952025737290015], "type": "Point"}, "id": "2710", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63742820788161, 41.95215951068671, -85.63742820788161, 41.95215951068671], "geometry": {"coordinates": [-85.63742820788161, 41.95215951068671], "type": "Point"}, "id": "2711", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743032606827, 41.95229328380268, -85.63743032606827, 41.95229328380268], "geometry": {"coordinates": [-85.63743032606827, 41.95229328380268], "type": "Point"}, "id": "2712", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743244322866, 41.95242705664686, -85.63743244322866, 41.95242705664686], "geometry": {"coordinates": [-85.63743244322866, 41.95242705664686], "type": "Point"}, "id": "2713", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743455652198, 41.95256082924411, -85.63743455652198, 41.95256082924411], "geometry": {"coordinates": [-85.63743455652198, 41.95256082924411], "type": "Point"}, "id": "2714", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743666981532, 41.952694601560616, -85.63743666981532, 41.952694601560616], "geometry": {"coordinates": [-85.63743666981532, 41.952694601560616], "type": "Point"}, "id": "2715", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63743878310865, 41.95282837359637, -85.63743878310865, 41.95282837359637], "geometry": {"coordinates": [-85.63743878310865, 41.95282837359637], "type": "Point"}, "id": "2716", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.637440896402, 41.952962145351364, -85.637440896402, 41.952962145351364], "geometry": {"coordinates": [-85.637440896402, 41.952962145351364], "type": "Point"}, "id": "2717", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63744300969533, 41.9530959168256, -85.63744300969533, 41.9530959168256], "geometry": {"coordinates": [-85.63744300969533, 41.9530959168256], "type": "Point"}, "id": "2718", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63744512298865, 41.95322968801909, -85.63744512298865, 41.95322968801909], "geometry": {"coordinates": [-85.63744512298865, 41.95322968801909], "type": "Point"}, "id": "2719", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63744723628199, 41.953363458931825, -85.63744723628199, 41.953363458931825], "geometry": {"coordinates": [-85.63744723628199, 41.953363458931825], "type": "Point"}, "id": "2720", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63744934957532, 41.9534972295638, -85.63744934957532, 41.9534972295638], "geometry": {"coordinates": [-85.63744934957532, 41.9534972295638], "type": "Point"}, "id": "2721", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745146286865, 41.953630999915035, -85.63745146286865, 41.953630999915035], "geometry": {"coordinates": [-85.63745146286865, 41.953630999915035], "type": "Point"}, "id": "2722", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745280003687, 41.95376477509703, -85.63745280003687, 41.95376477509703], "geometry": {"coordinates": [-85.63745280003687, 41.95376477509703], "type": "Point"}, "id": "2723", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745387271379, 41.95389855174019, -85.63745387271379, 41.95389855174019], "geometry": {"coordinates": [-85.63745387271379, 41.95389855174019], "type": "Point"}, "id": "2724", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745494539073, 41.95403232810257, -85.63745494539073, 41.95403232810257], "geometry": {"coordinates": [-85.63745494539073, 41.95403232810257], "type": "Point"}, "id": "2725", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745601806765, 41.954166104184154, -85.63745601806765, 41.954166104184154], "geometry": {"coordinates": [-85.63745601806765, 41.954166104184154], "type": "Point"}, "id": "2726", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745709074458, 41.954299879984966, -85.63745709074458, 41.954299879984966], "geometry": {"coordinates": [-85.63745709074458, 41.954299879984966], "type": "Point"}, "id": "2727", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745816342151, 41.95443365550498, -85.63745816342151, 41.95443365550498], "geometry": {"coordinates": [-85.63745816342151, 41.95443365550498], "type": "Point"}, "id": "2728", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63745923609845, 41.95456743074422, -85.63745923609845, 41.95456743074422], "geometry": {"coordinates": [-85.63745923609845, 41.95456743074422], "type": "Point"}, "id": "2729", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746044256115, 41.9547012050455, -85.63746044256115, 41.9547012050455], "geometry": {"coordinates": [-85.63746044256115, 41.9547012050455], "type": "Point"}, "id": "2730", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746181892355, 41.954834978185765, -85.63746181892355, 41.954834978185765], "geometry": {"coordinates": [-85.63746181892355, 41.954834978185765], "type": "Point"}, "id": "2731", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746319743342, 41.95496875103304, -85.63746319743342, 41.95496875103304], "geometry": {"coordinates": [-85.63746319743342, 41.95496875103304], "type": "Point"}, "id": "2732", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746457594327, 41.95510252359955, -85.63746457594327, 41.95510252359955], "geometry": {"coordinates": [-85.63746457594327, 41.95510252359955], "type": "Point"}, "id": "2733", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746595445313, 41.95523629588527, -85.63746595445313, 41.95523629588527], "geometry": {"coordinates": [-85.63746595445313, 41.95523629588527], "type": "Point"}, "id": "2734", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.637467332963, 41.95537006789022, -85.637467332963, 41.95537006789022], "geometry": {"coordinates": [-85.637467332963, 41.95537006789022], "type": "Point"}, "id": "2735", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746871147286, 41.95550383961439, -85.63746871147286, 41.95550383961439], "geometry": {"coordinates": [-85.63746871147286, 41.95550383961439], "type": "Point"}, "id": "2736", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747008998271, 41.955637611057774, -85.63747008998271, 41.955637611057774], "geometry": {"coordinates": [-85.63747008998271, 41.955637611057774], "type": "Point"}, "id": "2737", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747146849256, 41.955771382220384, -85.63747146849256, 41.955771382220384], "geometry": {"coordinates": [-85.63747146849256, 41.955771382220384], "type": "Point"}, "id": "2738", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747284700244, 41.955905153102215, -85.63747284700244, 41.955905153102215], "geometry": {"coordinates": [-85.63747284700244, 41.955905153102215], "type": "Point"}, "id": "2739", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747239834923, 41.956038926353656, -85.63747239834923, 41.956038926353656], "geometry": {"coordinates": [-85.63747239834923, 41.956038926353656], "type": "Point"}, "id": "2740", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747171301063, 41.95617269963091, -85.63747171301063, 41.95617269963091], "geometry": {"coordinates": [-85.63747171301063, 41.95617269963091], "type": "Point"}, "id": "2741", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747102091088, 41.95630647260826, -85.63747102091088, 41.95630647260826], "geometry": {"coordinates": [-85.63747102091088, 41.95630647260826], "type": "Point"}, "id": "2742", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747033960612, 41.95644024533526, -85.63747033960612, 41.95644024533526], "geometry": {"coordinates": [-85.63747033960612, 41.95644024533526], "type": "Point"}, "id": "2743", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746966763416, 41.95657401780777, -85.63746966763416, 41.95657401780777], "geometry": {"coordinates": [-85.63746966763416, 41.95657401780777], "type": "Point"}, "id": "2744", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746899566218, 41.956707789999484, -85.63746899566218, 41.956707789999484], "geometry": {"coordinates": [-85.63746899566218, 41.956707789999484], "type": "Point"}, "id": "2745", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374683236902, 41.956841561910416, -85.6374683236902, 41.956841561910416], "geometry": {"coordinates": [-85.6374683236902, 41.956841561910416], "type": "Point"}, "id": "2746", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63746873913772, 41.95697533184551, -85.63746873913772, 41.95697533184551], "geometry": {"coordinates": [-85.63746873913772, 41.95697533184551], "type": "Point"}, "id": "2747", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747016522393, 41.957109099924466, -85.63747016522393, 41.957109099924466], "geometry": {"coordinates": [-85.63747016522393, 41.957109099924466], "type": "Point"}, "id": "2748", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747159131017, 41.95724286772265, -85.63747159131017, 41.95724286772265], "geometry": {"coordinates": [-85.63747159131017, 41.95724286772265], "type": "Point"}, "id": "2749", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374730173964, 41.957376635240045, -85.6374730173964, 41.957376635240045], "geometry": {"coordinates": [-85.6374730173964, 41.957376635240045], "type": "Point"}, "id": "2750", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747444348262, 41.957510402476665, -85.63747444348262, 41.957510402476665], "geometry": {"coordinates": [-85.63747444348262, 41.957510402476665], "type": "Point"}, "id": "2751", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747586956885, 41.9576441694325, -85.63747586956885, 41.9576441694325], "geometry": {"coordinates": [-85.63747586956885, 41.9576441694325], "type": "Point"}, "id": "2752", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63747729565509, 41.95777793610756, -85.63747729565509, 41.95777793610756], "geometry": {"coordinates": [-85.63747729565509, 41.95777793610756], "type": "Point"}, "id": "2753", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.6374787217413, 41.95791170250184, -85.6374787217413, 41.95791170250184], "geometry": {"coordinates": [-85.6374787217413, 41.95791170250184], "type": "Point"}, "id": "2754", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63748014782755, 41.958045468615346, -85.63748014782755, 41.958045468615346], "geometry": {"coordinates": [-85.63748014782755, 41.958045468615346], "type": "Point"}, "id": "2755", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.63748157391376, 41.95817923444807, -85.63748157391376, 41.95817923444807], "geometry": {"coordinates": [-85.63748157391376, 41.95817923444807], "type": "Point"}, "id": "2756", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965097}, "type": "Feature"}, {"bbox": [-85.64436079999999, 41.9425645, -85.64436079999999, 41.9425645], "geometry": {"coordinates": [-85.64436079999999, 41.9425645], "type": "Point"}, "id": "2757", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64436292147803, 41.942698137631005, -85.64436292147803, 41.942698137631005], "geometry": {"coordinates": [-85.64436292147803, 41.942698137631005], "type": "Point"}, "id": "2758", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64436505753291, 41.94283177485368, -85.64436505753291, 41.94283177485368], "geometry": {"coordinates": [-85.64436505753291, 41.94283177485368], "type": "Point"}, "id": "2759", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64436719358777, 41.94296541179626, -85.64436719358777, 41.94296541179626], "geometry": {"coordinates": [-85.64436719358777, 41.94296541179626], "type": "Point"}, "id": "2760", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64436932964264, 41.943099048458755, -85.64436932964264, 41.943099048458755], "geometry": {"coordinates": [-85.64436932964264, 41.943099048458755], "type": "Point"}, "id": "2761", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64437146227691, 41.94323268487136, -85.64437146227691, 41.94323268487136], "geometry": {"coordinates": [-85.64437146227691, 41.94323268487136], "type": "Point"}, "id": "2762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64437359255895, 41.943366321024655, -85.64437359255895, 41.943366321024655], "geometry": {"coordinates": [-85.64437359255895, 41.943366321024655], "type": "Point"}, "id": "2763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.644375722841, 41.94349995689786, -85.644375722841, 41.94349995689786], "geometry": {"coordinates": [-85.644375722841, 41.94349995689786], "type": "Point"}, "id": "2764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64437785312305, 41.94363359249097, -85.64437785312305, 41.94363359249097], "geometry": {"coordinates": [-85.64437785312305, 41.94363359249097], "type": "Point"}, "id": "2765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6443799834051, 41.94376722780399, -85.6443799834051, 41.94376722780399], "geometry": {"coordinates": [-85.6443799834051, 41.94376722780399], "type": "Point"}, "id": "2766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64438222270954, 41.94390086182836, -85.64438222270954, 41.94390086182836], "geometry": {"coordinates": [-85.64438222270954, 41.94390086182836], "type": "Point"}, "id": "2767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6443845615317, 41.94403449465201, -85.6443845615317, 41.94403449465201], "geometry": {"coordinates": [-85.6443845615317, 41.94403449465201], "type": "Point"}, "id": "2768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64438690035385, 41.94416812719559, -85.64438690035385, 41.94416812719559], "geometry": {"coordinates": [-85.64438690035385, 41.94416812719559], "type": "Point"}, "id": "2769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.644389239176, 41.94430175945907, -85.644389239176, 41.94430175945907], "geometry": {"coordinates": [-85.644389239176, 41.94430175945907], "type": "Point"}, "id": "2770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64439157799815, 41.944435391442475, -85.64439157799815, 41.944435391442475], "geometry": {"coordinates": [-85.64439157799815, 41.944435391442475], "type": "Point"}, "id": "2771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6443939168203, 41.944569023145796, -85.6443939168203, 41.944569023145796], "geometry": {"coordinates": [-85.6443939168203, 41.944569023145796], "type": "Point"}, "id": "2772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64439625564245, 41.94470265456903, -85.64439625564245, 41.94470265456903], "geometry": {"coordinates": [-85.64439625564245, 41.94470265456903], "type": "Point"}, "id": "2773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64439859446459, 41.94483628571219, -85.64439859446459, 41.94483628571219], "geometry": {"coordinates": [-85.64439859446459, 41.94483628571219], "type": "Point"}, "id": "2774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64440093328675, 41.94496991657525, -85.64440093328675, 41.94496991657525], "geometry": {"coordinates": [-85.64440093328675, 41.94496991657525], "type": "Point"}, "id": "2775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6444031708136, 41.94510354795646, -85.6444031708136, 41.94510354795646], "geometry": {"coordinates": [-85.6444031708136, 41.94510354795646], "type": "Point"}, "id": "2776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6444046389856, 41.94523718512014, -85.6444046389856, 41.94523718512014], "geometry": {"coordinates": [-85.6444046389856, 41.94523718512014], "type": "Point"}, "id": "2777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64440610715762, 41.94537082200372, -85.64440610715762, 41.94537082200372], "geometry": {"coordinates": [-85.64440610715762, 41.94537082200372], "type": "Point"}, "id": "2778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64440757532964, 41.94550445860717, -85.64440757532964, 41.94550445860717], "geometry": {"coordinates": [-85.64440757532964, 41.94550445860717], "type": "Point"}, "id": "2779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64440904350165, 41.945638094930516, -85.64440904350165, 41.945638094930516], "geometry": {"coordinates": [-85.64440904350165, 41.945638094930516], "type": "Point"}, "id": "2780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441051167364, 41.945771730973746, -85.64441051167364, 41.945771730973746], "geometry": {"coordinates": [-85.64441051167364, 41.945771730973746], "type": "Point"}, "id": "2781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441197984566, 41.94590536673686, -85.64441197984566, 41.94590536673686], "geometry": {"coordinates": [-85.64441197984566, 41.94590536673686], "type": "Point"}, "id": "2782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441344801766, 41.94603900221987, -85.64441344801766, 41.94603900221987], "geometry": {"coordinates": [-85.64441344801766, 41.94603900221987], "type": "Point"}, "id": "2783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441491618967, 41.946172637422755, -85.64441491618967, 41.946172637422755], "geometry": {"coordinates": [-85.64441491618967, 41.946172637422755], "type": "Point"}, "id": "2784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441638436169, 41.94630627234554, -85.64441638436169, 41.94630627234554], "geometry": {"coordinates": [-85.64441638436169, 41.94630627234554], "type": "Point"}, "id": "2785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441771779711, 41.94643990775541, -85.64441771779711, 41.94643990775541], "geometry": {"coordinates": [-85.64441771779711, 41.94643990775541], "type": "Point"}, "id": "2786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64441898148021, 41.946573543274205, -85.64441898148021, 41.946573543274205], "geometry": {"coordinates": [-85.64441898148021, 41.946573543274205], "type": "Point"}, "id": "2787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442024516333, 41.94670717851289, -85.64442024516333, 41.94670717851289], "geometry": {"coordinates": [-85.64442024516333, 41.94670717851289], "type": "Point"}, "id": "2788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442150884642, 41.946840813471454, -85.64442150884642, 41.946840813471454], "geometry": {"coordinates": [-85.64442150884642, 41.946840813471454], "type": "Point"}, "id": "2789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442277252951, 41.94697444814989, -85.64442277252951, 41.94697444814989], "geometry": {"coordinates": [-85.64442277252951, 41.94697444814989], "type": "Point"}, "id": "2790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442403621261, 41.94710808254821, -85.64442403621261, 41.94710808254821], "geometry": {"coordinates": [-85.64442403621261, 41.94710808254821], "type": "Point"}, "id": "2791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442529989573, 41.94724171666642, -85.64442529989573, 41.94724171666642], "geometry": {"coordinates": [-85.64442529989573, 41.94724171666642], "type": "Point"}, "id": "2792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442656357883, 41.9473753505045, -85.64442656357883, 41.9473753505045], "geometry": {"coordinates": [-85.64442656357883, 41.9473753505045], "type": "Point"}, "id": "2793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442782726192, 41.94750898406246, -85.64442782726192, 41.94750898406246], "geometry": {"coordinates": [-85.64442782726192, 41.94750898406246], "type": "Point"}, "id": "2794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64442921994883, 41.947642616186805, -85.64442921994883, 41.947642616186805], "geometry": {"coordinates": [-85.64442921994883, 41.947642616186805], "type": "Point"}, "id": "2795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64443227614248, 41.947776233156674, -85.64443227614248, 41.947776233156674], "geometry": {"coordinates": [-85.64443227614248, 41.947776233156674], "type": "Point"}, "id": "2796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64443533233613, 41.94790984984651, -85.64443533233613, 41.94790984984651], "geometry": {"coordinates": [-85.64443533233613, 41.94790984984651], "type": "Point"}, "id": "2797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.644438402929, 41.94804346607341, -85.644438402929, 41.94804346607341], "geometry": {"coordinates": [-85.644438402929, 41.94804346607341], "type": "Point"}, "id": "2798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6444414824248, 41.94817708190718, -85.6444414824248, 41.94817708190718], "geometry": {"coordinates": [-85.6444414824248, 41.94817708190718], "type": "Point"}, "id": "2799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64444455827048, 41.9483106975074, -85.64444455827048, 41.9483106975074], "geometry": {"coordinates": [-85.64444455827048, 41.9483106975074], "type": "Point"}, "id": "2800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64444763354358, 41.948444312834866, -85.64444763354358, 41.948444312834866], "geometry": {"coordinates": [-85.64444763354358, 41.948444312834866], "type": "Point"}, "id": "2801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64445070821806, 41.94857792788987, -85.64445070821806, 41.94857792788987], "geometry": {"coordinates": [-85.64445070821806, 41.94857792788987], "type": "Point"}, "id": "2802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64445376657444, 41.948711542872, -85.64445376657444, 41.948711542872], "geometry": {"coordinates": [-85.64445376657444, 41.948711542872], "type": "Point"}, "id": "2803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64445682493083, 41.94884515757408, -85.64445682493083, 41.94884515757408], "geometry": {"coordinates": [-85.64445682493083, 41.94884515757408], "type": "Point"}, "id": "2804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64445988328721, 41.9489787719961, -85.64445988328721, 41.9489787719961], "geometry": {"coordinates": [-85.64445988328721, 41.9489787719961], "type": "Point"}, "id": "2805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.6444629416436, 41.94911238613808, -85.6444629416436, 41.94911238613808], "geometry": {"coordinates": [-85.6444629416436, 41.94911238613808], "type": "Point"}, "id": "2806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966729}, "type": "Feature"}, {"bbox": [-85.64310309999999, 41.94257540000001, -85.64310309999999, 41.94257540000001], "geometry": {"coordinates": [-85.64310309999999, 41.94257540000001], "type": "Point"}, "id": "2807", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310339027675, 41.94270914506904, -85.64310339027675, 41.94270914506904], "geometry": {"coordinates": [-85.64310339027675, 41.94270914506904], "type": "Point"}, "id": "2808", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.6431095588564, 41.94284276780679, -85.6431095588564, 41.94284276780679], "geometry": {"coordinates": [-85.6431095588564, 41.94284276780679], "type": "Point"}, "id": "2809", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310520103987, 41.942976434325885, -85.64310520103987, 41.942976434325885], "geometry": {"coordinates": [-85.64310520103987, 41.942976434325885], "type": "Point"}, "id": "2810", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310434435852, 41.94311016561301, -85.64310434435852, 41.94311016561301], "geometry": {"coordinates": [-85.64310434435852, 41.94311016561301], "type": "Point"}, "id": "2811", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310464734228, 41.94324390954473, -85.64310464734228, 41.94324390954473], "geometry": {"coordinates": [-85.64310464734228, 41.94324390954473], "type": "Point"}, "id": "2812", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310495032606, 41.94337765319591, -85.64310495032606, 41.94337765319591], "geometry": {"coordinates": [-85.64310495032606, 41.94337765319591], "type": "Point"}, "id": "2813", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310525330986, 41.94351139656655, -85.64310525330986, 41.94351139656655], "geometry": {"coordinates": [-85.64310525330986, 41.94351139656655], "type": "Point"}, "id": "2814", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310555629362, 41.943645139656645, -85.64310555629362, 41.943645139656645], "geometry": {"coordinates": [-85.64310555629362, 41.943645139656645], "type": "Point"}, "id": "2815", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310585927743, 41.9437788824662, -85.64310585927743, 41.9437788824662], "geometry": {"coordinates": [-85.64310585927743, 41.9437788824662], "type": "Point"}, "id": "2816", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310577298184, 41.943912624897855, -85.64310577298184, 41.943912624897855], "geometry": {"coordinates": [-85.64310577298184, 41.943912624897855], "type": "Point"}, "id": "2817", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310534907999, 41.94404636696454, -85.64310534907999, 41.94404636696454], "geometry": {"coordinates": [-85.64310534907999, 41.94404636696454], "type": "Point"}, "id": "2818", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310492517814, 41.94418010875068, -85.64310492517814, 41.94418010875068], "geometry": {"coordinates": [-85.64310492517814, 41.94418010875068], "type": "Point"}, "id": "2819", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.6431045012763, 41.94431385025628, -85.6431045012763, 41.94431385025628], "geometry": {"coordinates": [-85.6431045012763, 41.94431385025628], "type": "Point"}, "id": "2820", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310407737443, 41.944447591481335, -85.64310407737443, 41.944447591481335], "geometry": {"coordinates": [-85.64310407737443, 41.944447591481335], "type": "Point"}, "id": "2821", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.6431036534726, 41.94458133242585, -85.6431036534726, 41.94458133242585], "geometry": {"coordinates": [-85.6431036534726, 41.94458133242585], "type": "Point"}, "id": "2822", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310322957073, 41.944715073089824, -85.64310322957073, 41.944715073089824], "geometry": {"coordinates": [-85.64310322957073, 41.944715073089824], "type": "Point"}, "id": "2823", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310280566889, 41.94484881347326, -85.64310280566889, 41.94484881347326], "geometry": {"coordinates": [-85.64310280566889, 41.94484881347326], "type": "Point"}, "id": "2824", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310238176705, 41.944982553576146, -85.64310238176705, 41.944982553576146], "geometry": {"coordinates": [-85.64310238176705, 41.944982553576146], "type": "Point"}, "id": "2825", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310247533098, 41.945116288733274, -85.64310247533098, 41.945116288733274], "geometry": {"coordinates": [-85.64310247533098, 41.945116288733274], "type": "Point"}, "id": "2826", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64310725745042, 41.94524998134026, -85.64310725745042, 41.94524998134026], "geometry": {"coordinates": [-85.64310725745042, 41.94524998134026], "type": "Point"}, "id": "2827", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64311203956989, 41.9453836736669, -85.64311203956989, 41.9453836736669], "geometry": {"coordinates": [-85.64311203956989, 41.9453836736669], "type": "Point"}, "id": "2828", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64311682168933, 41.9455173657132, -85.64311682168933, 41.9455173657132], "geometry": {"coordinates": [-85.64311682168933, 41.9455173657132], "type": "Point"}, "id": "2829", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64312160380882, 41.94565105747915, -85.64312160380882, 41.94565105747915], "geometry": {"coordinates": [-85.64312160380882, 41.94565105747915], "type": "Point"}, "id": "2830", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64312638592827, 41.94578474896475, -85.64312638592827, 41.94578474896475], "geometry": {"coordinates": [-85.64312638592827, 41.94578474896475], "type": "Point"}, "id": "2831", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64313116804773, 41.94591844017001, -85.64313116804773, 41.94591844017001], "geometry": {"coordinates": [-85.64313116804773, 41.94591844017001], "type": "Point"}, "id": "2832", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64313595016718, 41.94605213109491, -85.64313595016718, 41.94605213109491], "geometry": {"coordinates": [-85.64313595016718, 41.94605213109491], "type": "Point"}, "id": "2833", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64314073228665, 41.946185821739476, -85.64314073228665, 41.946185821739476], "geometry": {"coordinates": [-85.64314073228665, 41.946185821739476], "type": "Point"}, "id": "2834", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.6431455144061, 41.9463195121037, -85.6431455144061, 41.9463195121037], "geometry": {"coordinates": [-85.6431455144061, 41.9463195121037], "type": "Point"}, "id": "2835", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64315074402535, 41.946453192469015, -85.64315074402535, 41.946453192469015], "geometry": {"coordinates": [-85.64315074402535, 41.946453192469015], "type": "Point"}, "id": "2836", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64315645798618, 41.94658686203541, -85.64315645798618, 41.94658686203541], "geometry": {"coordinates": [-85.64315645798618, 41.94658686203541], "type": "Point"}, "id": "2837", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64316217194698, 41.946720531321525, -85.64316217194698, 41.946720531321525], "geometry": {"coordinates": [-85.64316217194698, 41.946720531321525], "type": "Point"}, "id": "2838", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64316788590779, 41.946854200327394, -85.64316788590779, 41.946854200327394], "geometry": {"coordinates": [-85.64316788590779, 41.946854200327394], "type": "Point"}, "id": "2839", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.6431735998686, 41.94698786905299, -85.6431735998686, 41.94698786905299], "geometry": {"coordinates": [-85.6431735998686, 41.94698786905299], "type": "Point"}, "id": "2840", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64317931382942, 41.94712153749833, -85.64317931382942, 41.94712153749833], "geometry": {"coordinates": [-85.64317931382942, 41.94712153749833], "type": "Point"}, "id": "2841", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64318502779022, 41.9472552056634, -85.64318502779022, 41.9472552056634], "geometry": {"coordinates": [-85.64318502779022, 41.9472552056634], "type": "Point"}, "id": "2842", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319074175104, 41.94738887354821, -85.64319074175104, 41.94738887354821], "geometry": {"coordinates": [-85.64319074175104, 41.94738887354821], "type": "Point"}, "id": "2843", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319645571186, 41.947522541152765, -85.64319645571186, 41.947522541152765], "geometry": {"coordinates": [-85.64319645571186, 41.947522541152765], "type": "Point"}, "id": "2844", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64320187296893, 41.94765621163267, -85.64320187296893, 41.94765621163267], "geometry": {"coordinates": [-85.64320187296893, 41.94765621163267], "type": "Point"}, "id": "2845", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64320130022152, 41.94778994553961, -85.64320130022152, 41.94778994553961], "geometry": {"coordinates": [-85.64320130022152, 41.94778994553961], "type": "Point"}, "id": "2846", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64320072747412, 41.94792367916601, -85.64320072747412, 41.94792367916601], "geometry": {"coordinates": [-85.64320072747412, 41.94792367916601], "type": "Point"}, "id": "2847", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.6432001547267, 41.94805741251186, -85.6432001547267, 41.94805741251186], "geometry": {"coordinates": [-85.6432001547267, 41.94805741251186], "type": "Point"}, "id": "2848", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.6431995819793, 41.94819114557716, -85.6431995819793, 41.94819114557716], "geometry": {"coordinates": [-85.6431995819793, 41.94819114557716], "type": "Point"}, "id": "2849", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319900923188, 41.94832487836192, -85.64319900923188, 41.94832487836192], "geometry": {"coordinates": [-85.64319900923188, 41.94832487836192], "type": "Point"}, "id": "2850", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319843648447, 41.94845861086615, -85.64319843648447, 41.94845861086615], "geometry": {"coordinates": [-85.64319843648447, 41.94845861086615], "type": "Point"}, "id": "2851", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319786373704, 41.948592343089814, -85.64319786373704, 41.948592343089814], "geometry": {"coordinates": [-85.64319786373704, 41.948592343089814], "type": "Point"}, "id": "2852", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319729098965, 41.948726075032944, -85.64319729098965, 41.948726075032944], "geometry": {"coordinates": [-85.64319729098965, 41.948726075032944], "type": "Point"}, "id": "2853", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319671824224, 41.94885980669552, -85.64319671824224, 41.94885980669552], "geometry": {"coordinates": [-85.64319671824224, 41.94885980669552], "type": "Point"}, "id": "2854", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319614549484, 41.948993538077566, -85.64319614549484, 41.948993538077566], "geometry": {"coordinates": [-85.64319614549484, 41.948993538077566], "type": "Point"}, "id": "2855", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.64319557274742, 41.94912726917905, -85.64319557274742, 41.94912726917905], "geometry": {"coordinates": [-85.64319557274742, 41.94912726917905], "type": "Point"}, "id": "2856", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967390}, "type": "Feature"}, {"bbox": [-85.65174869999998, 41.93254369999999, -85.65174869999998, 41.93254369999999], "geometry": {"coordinates": [-85.65174869999998, 41.93254369999999], "type": "Point"}, "id": "2857", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.6519339332683, 41.932540177380346, -85.6519339332683, 41.932540177380346], "geometry": {"coordinates": [-85.6519339332683, 41.932540177380346], "type": "Point"}, "id": "2858", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65211916840914, 41.93253670964012, -85.65211916840914, 41.93253670964012], "geometry": {"coordinates": [-85.65211916840914, 41.93253670964012], "type": "Point"}, "id": "2859", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65230440355002, 41.93253324189969, -85.65230440355002, 41.93253324189969], "geometry": {"coordinates": [-85.65230440355002, 41.93253324189969], "type": "Point"}, "id": "2860", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65248963869091, 41.93252977415908, -85.65248963869091, 41.93252977415908], "geometry": {"coordinates": [-85.65248963869091, 41.93252977415908], "type": "Point"}, "id": "2861", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65267487383178, 41.93252630641828, -85.65267487383178, 41.93252630641828], "geometry": {"coordinates": [-85.65267487383178, 41.93252630641828], "type": "Point"}, "id": "2862", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65286014379984, 41.932524838604344, -85.65286014379984, 41.932524838604344], "geometry": {"coordinates": [-85.65286014379984, 41.932524838604344], "type": "Point"}, "id": "2863", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65304543432295, 41.93252544505675, -85.65304543432295, 41.93252544505675], "geometry": {"coordinates": [-85.65304543432295, 41.93252544505675], "type": "Point"}, "id": "2864", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65323072293192, 41.93252647511115, -85.65323072293192, 41.93252647511115], "geometry": {"coordinates": [-85.65323072293192, 41.93252647511115], "type": "Point"}, "id": "2865", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65341601154087, 41.93252750516554, -85.65341601154087, 41.93252750516554], "geometry": {"coordinates": [-85.65341601154087, 41.93252750516554], "type": "Point"}, "id": "2866", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65360128590598, 41.93252716900091, -85.65360128590598, 41.93252716900091], "geometry": {"coordinates": [-85.65360128590598, 41.93252716900091], "type": "Point"}, "id": "2867", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65378653074679, 41.932524000975775, -85.65378653074679, 41.932524000975775], "geometry": {"coordinates": [-85.65378653074679, 41.932524000975775], "type": "Point"}, "id": "2868", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65397177558762, 41.93252083295046, -85.65397177558762, 41.93252083295046], "geometry": {"coordinates": [-85.65397177558762, 41.93252083295046], "type": "Point"}, "id": "2869", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65415702042844, 41.932517664925, -85.65415702042844, 41.932517664925], "geometry": {"coordinates": [-85.65415702042844, 41.932517664925], "type": "Point"}, "id": "2870", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65434226583567, 41.93251451566002, -85.65434226583567, 41.93251451566002], "geometry": {"coordinates": [-85.65434226583567, 41.93251451566002], "type": "Point"}, "id": "2871", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.6545275105571, 41.932511343773506, -85.6545275105571, 41.932511343773506], "geometry": {"coordinates": [-85.6545275105571, 41.932511343773506], "type": "Point"}, "id": "2872", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.65471275527855, 41.93250817188682, -85.65471275527855, 41.93250817188682], "geometry": {"coordinates": [-85.65471275527855, 41.93250817188682], "type": "Point"}, "id": "2873", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965484}, "type": "Feature"}, {"bbox": [-85.6514073, 41.932542999999995, -85.6514073, 41.932542999999995], "geometry": {"coordinates": [-85.6514073, 41.932542999999995], "type": "Point"}, "id": "2874", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6512256393372, 41.93254679610086, -85.6512256393372, 41.93254679610086], "geometry": {"coordinates": [-85.6512256393372, 41.93254679610086], "type": "Point"}, "id": "2875", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6510439786744, 41.93255059220149, -85.6510439786744, 41.93255059220149], "geometry": {"coordinates": [-85.6510439786744, 41.93255059220149], "type": "Point"}, "id": "2876", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.65086231801159, 41.93255438830189, -85.65086231801159, 41.93255438830189], "geometry": {"coordinates": [-85.65086231801159, 41.93255438830189], "type": "Point"}, "id": "2877", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.65068065734879, 41.93255818440207, -85.65068065734879, 41.93255818440207], "geometry": {"coordinates": [-85.65068065734879, 41.93255818440207], "type": "Point"}, "id": "2878", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.65049895106925, 41.93255989774484, -85.65049895106925, 41.93255989774484], "geometry": {"coordinates": [-85.65049895106925, 41.93255989774484], "type": "Point"}, "id": "2879", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6503172315697, 41.932561030300946, -85.6503172315697, 41.932561030300946], "geometry": {"coordinates": [-85.6503172315697, 41.932561030300946], "type": "Point"}, "id": "2880", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.65013556385067, 41.93256463467586, -85.65013556385067, 41.93256463467586], "geometry": {"coordinates": [-85.65013556385067, 41.93256463467586], "type": "Point"}, "id": "2881", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64995389613163, 41.93256823905056, -85.64995389613163, 41.93256823905056], "geometry": {"coordinates": [-85.64995389613163, 41.93256823905056], "type": "Point"}, "id": "2882", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6497722284126, 41.93257184342507, -85.6497722284126, 41.93257184342507], "geometry": {"coordinates": [-85.6497722284126, 41.93257184342507], "type": "Point"}, "id": "2883", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64959056069358, 41.932575447799366, -85.64959056069358, 41.932575447799366], "geometry": {"coordinates": [-85.64959056069358, 41.932575447799366], "type": "Point"}, "id": "2884", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64940889297456, 41.932579052173466, -85.64940889297456, 41.932579052173466], "geometry": {"coordinates": [-85.64940889297456, 41.932579052173466], "type": "Point"}, "id": "2885", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64922736350572, 41.93258517013523, -85.64922736350572, 41.93258517013523], "geometry": {"coordinates": [-85.64922736350572, 41.93258517013523], "type": "Point"}, "id": "2886", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6490456620378, 41.93258681821776, -85.6490456620378, 41.93258681821776], "geometry": {"coordinates": [-85.6490456620378, 41.93258681821776], "type": "Point"}, "id": "2887", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64886409039953, 41.932592502101194, -85.64886409039953, 41.932592502101194], "geometry": {"coordinates": [-85.64886409039953, 41.932592502101194], "type": "Point"}, "id": "2888", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64868251876123, 41.93259818598412, -85.64868251876123, 41.93259818598412], "geometry": {"coordinates": [-85.64868251876123, 41.93259818598412], "type": "Point"}, "id": "2889", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64850094712297, 41.932603869866526, -85.64850094712297, 41.932603869866526], "geometry": {"coordinates": [-85.64850094712297, 41.932603869866526], "type": "Point"}, "id": "2890", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6483192884567, 41.93260729972833, -85.6483192884567, 41.93260729972833], "geometry": {"coordinates": [-85.6483192884567, 41.93260729972833], "type": "Point"}, "id": "2891", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64813757762545, 41.93260937851985, -85.64813757762545, 41.93260937851985], "geometry": {"coordinates": [-85.64813757762545, 41.93260937851985], "type": "Point"}, "id": "2892", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64795586679419, 41.93261145731129, -85.64795586679419, 41.93261145731129], "geometry": {"coordinates": [-85.64795586679419, 41.93261145731129], "type": "Point"}, "id": "2893", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64777415604166, 41.93261353990072, -85.64777415604166, 41.93261353990072], "geometry": {"coordinates": [-85.64777415604166, 41.93261353990072], "type": "Point"}, "id": "2894", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64759244473584, 41.93261558982102, -85.64759244473584, 41.93261558982102], "geometry": {"coordinates": [-85.64759244473584, 41.93261558982102], "type": "Point"}, "id": "2895", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64741072287583, 41.932617040026194, -85.64741072287583, 41.932617040026194], "geometry": {"coordinates": [-85.64741072287583, 41.932617040026194], "type": "Point"}, "id": "2896", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64722900101584, 41.932618490231356, -85.64722900101584, 41.932618490231356], "geometry": {"coordinates": [-85.64722900101584, 41.932618490231356], "type": "Point"}, "id": "2897", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64704727915584, 41.932619940436474, -85.64704727915584, 41.932619940436474], "geometry": {"coordinates": [-85.64704727915584, 41.932619940436474], "type": "Point"}, "id": "2898", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64686556644598, 41.93262186337565, -85.64686556644598, 41.93262186337565], "geometry": {"coordinates": [-85.64686556644598, 41.93262186337565], "type": "Point"}, "id": "2899", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64668386379938, 41.93262430622491, -85.64668386379938, 41.93262430622491], "geometry": {"coordinates": [-85.64668386379938, 41.93262430622491], "type": "Point"}, "id": "2900", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6465021611528, 41.932626749074075, -85.6465021611528, 41.932626749074075], "geometry": {"coordinates": [-85.6465021611528, 41.932626749074075], "type": "Point"}, "id": "2901", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6463204585062, 41.93262919192314, -85.6463204585062, 41.93262919192314], "geometry": {"coordinates": [-85.6463204585062, 41.93262919192314], "type": "Point"}, "id": "2902", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64613888090238, 41.932633732431896, -85.64613888090238, 41.932633732431896], "geometry": {"coordinates": [-85.64613888090238, 41.932633732431896], "type": "Point"}, "id": "2903", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64595778267166, 41.932645016305756, -85.64595778267166, 41.932645016305756], "geometry": {"coordinates": [-85.64595778267166, 41.932645016305756], "type": "Point"}, "id": "2904", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6457761757317, 41.93264964630768, -85.6457761757317, 41.93264964630768], "geometry": {"coordinates": [-85.6457761757317, 41.93264964630768], "type": "Point"}, "id": "2905", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64559452556716, 41.932653710935675, -85.64559452556716, 41.932653710935675], "geometry": {"coordinates": [-85.64559452556716, 41.932653710935675], "type": "Point"}, "id": "2906", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64541282970205, 41.932656354600596, -85.64541282970205, 41.932656354600596], "geometry": {"coordinates": [-85.64541282970205, 41.932656354600596], "type": "Point"}, "id": "2907", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64523112609128, 41.93265875743007, -85.64523112609128, 41.93265875743007], "geometry": {"coordinates": [-85.64523112609128, 41.93265875743007], "type": "Point"}, "id": "2908", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6450494224805, 41.93266116025945, -85.6450494224805, 41.93266116025945], "geometry": {"coordinates": [-85.6450494224805, 41.93266116025945], "type": "Point"}, "id": "2909", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64486771886973, 41.932663563088745, -85.64486771886973, 41.932663563088745], "geometry": {"coordinates": [-85.64486771886973, 41.932663563088745], "type": "Point"}, "id": "2910", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64468601525896, 41.93266596591795, -85.64468601525896, 41.93266596591795], "geometry": {"coordinates": [-85.64468601525896, 41.93266596591795], "type": "Point"}, "id": "2911", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64450431164818, 41.932668368747066, -85.64450431164818, 41.932668368747066], "geometry": {"coordinates": [-85.64450431164818, 41.932668368747066], "type": "Point"}, "id": "2912", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64432260770738, 41.932670757715805, -85.64432260770738, 41.932670757715805], "geometry": {"coordinates": [-85.64432260770738, 41.932670757715805], "type": "Point"}, "id": "2913", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64414090767391, 41.93267330060469, -85.64414090767391, 41.93267330060469], "geometry": {"coordinates": [-85.64414090767391, 41.93267330060469], "type": "Point"}, "id": "2914", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64395921196315, 41.93267601398136, -85.64395921196315, 41.93267601398136], "geometry": {"coordinates": [-85.64395921196315, 41.93267601398136], "type": "Point"}, "id": "2915", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64377751625238, 41.93267872735792, -85.64377751625238, 41.93267872735792], "geometry": {"coordinates": [-85.64377751625238, 41.93267872735792], "type": "Point"}, "id": "2916", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64359582054163, 41.932681440734356, -85.64359582054163, 41.932681440734356], "geometry": {"coordinates": [-85.64359582054163, 41.932681440734356], "type": "Point"}, "id": "2917", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64341412483085, 41.93268415411069, -85.64341412483085, 41.93268415411069], "geometry": {"coordinates": [-85.64341412483085, 41.93268415411069], "type": "Point"}, "id": "2918", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64323242912008, 41.93268686748689, -85.64323242912008, 41.93268686748689], "geometry": {"coordinates": [-85.64323242912008, 41.93268686748689], "type": "Point"}, "id": "2919", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64305073340934, 41.932689580862984, -85.64305073340934, 41.932689580862984], "geometry": {"coordinates": [-85.64305073340934, 41.932689580862984], "type": "Point"}, "id": "2920", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64286903769856, 41.93269229423897, -85.64286903769856, 41.93269229423897], "geometry": {"coordinates": [-85.64286903769856, 41.93269229423897], "type": "Point"}, "id": "2921", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64268734198778, 41.93269500761483, -85.64268734198778, 41.93269500761483], "geometry": {"coordinates": [-85.64268734198778, 41.93269500761483], "type": "Point"}, "id": "2922", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64250564627703, 41.93269772099058, -85.64250564627703, 41.93269772099058], "geometry": {"coordinates": [-85.64250564627703, 41.93269772099058], "type": "Point"}, "id": "2923", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64232393305879, 41.93269944266559, -85.64232393305879, 41.93269944266559], "geometry": {"coordinates": [-85.64232393305879, 41.93269944266559], "type": "Point"}, "id": "2924", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64214220422933, 41.93270028005144, -85.64214220422933, 41.93270028005144], "geometry": {"coordinates": [-85.64214220422933, 41.93270028005144], "type": "Point"}, "id": "2925", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64196047539987, 41.93270111743729, -85.64196047539987, 41.93270111743729], "geometry": {"coordinates": [-85.64196047539987, 41.93270111743729], "type": "Point"}, "id": "2926", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64177874657041, 41.93270195482312, -85.64177874657041, 41.93270195482312], "geometry": {"coordinates": [-85.64177874657041, 41.93270195482312], "type": "Point"}, "id": "2927", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64159701774095, 41.93270279220895, -85.64159701774095, 41.93270279220895], "geometry": {"coordinates": [-85.64159701774095, 41.93270279220895], "type": "Point"}, "id": "2928", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6414152889115, 41.93270362959476, -85.6414152889115, 41.93270362959476], "geometry": {"coordinates": [-85.6414152889115, 41.93270362959476], "type": "Point"}, "id": "2929", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64123356864042, 41.932704987465335, -85.64123356864042, 41.932704987465335], "geometry": {"coordinates": [-85.64123356864042, 41.932704987465335], "type": "Point"}, "id": "2930", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64105186665438, 41.93270745735402, -85.64105186665438, 41.93270745735402], "geometry": {"coordinates": [-85.64105186665438, 41.93270745735402], "type": "Point"}, "id": "2931", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64087016466837, 41.93270992724263, -85.64087016466837, 41.93270992724263], "geometry": {"coordinates": [-85.64087016466837, 41.93270992724263], "type": "Point"}, "id": "2932", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64068846268233, 41.93271239713112, -85.64068846268233, 41.93271239713112], "geometry": {"coordinates": [-85.64068846268233, 41.93271239713112], "type": "Point"}, "id": "2933", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6405067606963, 41.93271486701953, -85.6405067606963, 41.93271486701953], "geometry": {"coordinates": [-85.6405067606963, 41.93271486701953], "type": "Point"}, "id": "2934", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64032505871029, 41.932717336907835, -85.64032505871029, 41.932717336907835], "geometry": {"coordinates": [-85.64032505871029, 41.932717336907835], "type": "Point"}, "id": "2935", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.64014335672425, 41.93271980679605, -85.64014335672425, 41.93271980679605], "geometry": {"coordinates": [-85.64014335672425, 41.93271980679605], "type": "Point"}, "id": "2936", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6399616436987, 41.93272177405548, -85.6399616436987, 41.93272177405548], "geometry": {"coordinates": [-85.6399616436987, 41.93272177405548], "type": "Point"}, "id": "2937", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63977993024024, 41.93272372160378, -85.63977993024024, 41.93272372160378], "geometry": {"coordinates": [-85.63977993024024, 41.93272372160378], "type": "Point"}, "id": "2938", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63959821678178, 41.93272566915202, -85.63959821678178, 41.93272566915202], "geometry": {"coordinates": [-85.63959821678178, 41.93272566915202], "type": "Point"}, "id": "2939", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6394165033233, 41.932727616700205, -85.6394165033233, 41.932727616700205], "geometry": {"coordinates": [-85.6394165033233, 41.932727616700205], "type": "Point"}, "id": "2940", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63923478986483, 41.93272956424832, -85.63923478986483, 41.93272956424832], "geometry": {"coordinates": [-85.63923478986483, 41.93272956424832], "type": "Point"}, "id": "2941", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63905307640637, 41.932731511796376, -85.63905307640637, 41.932731511796376], "geometry": {"coordinates": [-85.63905307640637, 41.932731511796376], "type": "Point"}, "id": "2942", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63887136527846, 41.93273353342505, -85.63887136527846, 41.93273353342505], "geometry": {"coordinates": [-85.63887136527846, 41.93273353342505], "type": "Point"}, "id": "2943", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63868972830396, 41.932737912131834, -85.63868972830396, 41.932737912131834], "geometry": {"coordinates": [-85.63868972830396, 41.932737912131834], "type": "Point"}, "id": "2944", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63850809132943, 41.93274229083832, -85.63850809132943, 41.93274229083832], "geometry": {"coordinates": [-85.63850809132943, 41.93274229083832], "type": "Point"}, "id": "2945", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63832645435494, 41.932746669544514, -85.63832645435494, 41.932746669544514], "geometry": {"coordinates": [-85.63832645435494, 41.932746669544514], "type": "Point"}, "id": "2946", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63814481738042, 41.932751048250395, -85.63814481738042, 41.932751048250395], "geometry": {"coordinates": [-85.63814481738042, 41.932751048250395], "type": "Point"}, "id": "2947", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6379631804059, 41.93275542695598, -85.6379631804059, 41.93275542695598], "geometry": {"coordinates": [-85.6379631804059, 41.93275542695598], "type": "Point"}, "id": "2948", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.6377815434314, 41.932759805661256, -85.6377815434314, 41.932759805661256], "geometry": {"coordinates": [-85.6377815434314, 41.932759805661256], "type": "Point"}, "id": "2949", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63760062879291, 41.93277174540387, -85.63760062879291, 41.93277174540387], "geometry": {"coordinates": [-85.63760062879291, 41.93277174540387], "type": "Point"}, "id": "2950", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63741998507608, 41.9327865210107, -85.63741998507608, 41.9327865210107], "geometry": {"coordinates": [-85.63741998507608, 41.9327865210107], "type": "Point"}, "id": "2951", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63724152059116, 41.93281091971268, -85.63724152059116, 41.93281091971268], "geometry": {"coordinates": [-85.63724152059116, 41.93281091971268], "type": "Point"}, "id": "2952", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63706434044336, 41.932840989805776, -85.63706434044336, 41.932840989805776], "geometry": {"coordinates": [-85.63706434044336, 41.932840989805776], "type": "Point"}, "id": "2953", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63688716029557, 41.932871059884704, -85.63688716029557, 41.932871059884704], "geometry": {"coordinates": [-85.63688716029557, 41.932871059884704], "type": "Point"}, "id": "2954", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.63670998014778, 41.932901129949435, -85.63670998014778, 41.932901129949435], "geometry": {"coordinates": [-85.63670998014778, 41.932901129949435], "type": "Point"}, "id": "2955", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967984}, "type": "Feature"}, {"bbox": [-85.643056, 41.94001, -85.643056, 41.94001], "geometry": {"coordinates": [-85.643056, 41.94001], "type": "Point"}, "id": "2956", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.6430575941821, 41.940145032635726, -85.6430575941821, 41.940145032635726], "geometry": {"coordinates": [-85.6430575941821, 41.940145032635726], "type": "Point"}, "id": "2957", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64305918836418, 41.94028006498552, -85.64305918836418, 41.94028006498552], "geometry": {"coordinates": [-85.64305918836418, 41.94028006498552], "type": "Point"}, "id": "2958", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306078254627, 41.94041509704937, -85.64306078254627, 41.94041509704937], "geometry": {"coordinates": [-85.64306078254627, 41.94041509704937], "type": "Point"}, "id": "2959", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306237672835, 41.940550128827276, -85.64306237672835, 41.940550128827276], "geometry": {"coordinates": [-85.64306237672835, 41.940550128827276], "type": "Point"}, "id": "2960", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306396389784, 41.94068516036495, -85.64306396389784, 41.94068516036495], "geometry": {"coordinates": [-85.64306396389784, 41.94068516036495], "type": "Point"}, "id": "2961", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306555096344, 41.94082019161735, -85.64306555096344, 41.94082019161735], "geometry": {"coordinates": [-85.64306555096344, 41.94082019161735], "type": "Point"}, "id": "2962", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306713802902, 41.94095522258381, -85.64306713802902, 41.94095522258381], "geometry": {"coordinates": [-85.64306713802902, 41.94095522258381], "type": "Point"}, "id": "2963", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64306872509462, 41.94109025326432, -85.64306872509462, 41.94109025326432], "geometry": {"coordinates": [-85.64306872509462, 41.94109025326432], "type": "Point"}, "id": "2964", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64307028979886, 41.94122528380165, -85.64307028979886, 41.94122528380165], "geometry": {"coordinates": [-85.64307028979886, 41.94122528380165], "type": "Point"}, "id": "2965", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.6430728081727, 41.941360304337486, -85.6430728081727, 41.941360304337486], "geometry": {"coordinates": [-85.6430728081727, 41.941360304337486], "type": "Point"}, "id": "2966", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64307618452251, 41.94149531596424, -85.64307618452251, 41.94149531596424], "geometry": {"coordinates": [-85.64307618452251, 41.94149531596424], "type": "Point"}, "id": "2967", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64307956087234, 41.941630327305134, -85.64307956087234, 41.941630327305134], "geometry": {"coordinates": [-85.64307956087234, 41.941630327305134], "type": "Point"}, "id": "2968", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64308293722216, 41.941765338360156, -85.64308293722216, 41.941765338360156], "geometry": {"coordinates": [-85.64308293722216, 41.941765338360156], "type": "Point"}, "id": "2969", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64308631357197, 41.941900349129305, -85.64308631357197, 41.941900349129305], "geometry": {"coordinates": [-85.64308631357197, 41.941900349129305], "type": "Point"}, "id": "2970", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64308966490573, 41.942035359957224, -85.64308966490573, 41.942035359957224], "geometry": {"coordinates": [-85.64308966490573, 41.942035359957224], "type": "Point"}, "id": "2971", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64309301202883, 41.94217037055728, -85.64309301202883, 41.94217037055728], "geometry": {"coordinates": [-85.64309301202883, 41.94217037055728], "type": "Point"}, "id": "2972", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64309635915193, 41.94230538087146, -85.64309635915193, 41.94230538087146], "geometry": {"coordinates": [-85.64309635915193, 41.94230538087146], "type": "Point"}, "id": "2973", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.64309972138696, 41.94244039069152, -85.64309972138696, 41.94244039069152], "geometry": {"coordinates": [-85.64309972138696, 41.94244039069152], "type": "Point"}, "id": "2974", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966327}, "type": "Feature"}, {"bbox": [-85.62007199999998, 41.946538, -85.62007199999998, 41.946538], "geometry": {"coordinates": [-85.62007199999998, 41.946538], "type": "Point"}, "id": "2975", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62025502151498, 41.94653779272762, -85.62025502151498, 41.94653779272762], "geometry": {"coordinates": [-85.62025502151498, 41.94653779272762], "type": "Point"}, "id": "2976", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62043804302995, 41.94653758545524, -85.62043804302995, 41.94653758545524], "geometry": {"coordinates": [-85.62043804302995, 41.94653758545524], "type": "Point"}, "id": "2977", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62062106454495, 41.94653737818286, -85.62062106454495, 41.94653737818286], "geometry": {"coordinates": [-85.62062106454495, 41.94653737818286], "type": "Point"}, "id": "2978", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62080408605992, 41.94653717091048, -85.62080408605992, 41.94653717091048], "geometry": {"coordinates": [-85.62080408605992, 41.94653717091048], "type": "Point"}, "id": "2979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6209871075749, 41.946536963638096, -85.6209871075749, 41.946536963638096], "geometry": {"coordinates": [-85.6209871075749, 41.946536963638096], "type": "Point"}, "id": "2980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6211701290899, 41.94653675636572, -85.6211701290899, 41.94653675636572], "geometry": {"coordinates": [-85.6211701290899, 41.94653675636572], "type": "Point"}, "id": "2981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62135315060488, 41.94653654909333, -85.62135315060488, 41.94653654909333], "geometry": {"coordinates": [-85.62135315060488, 41.94653654909333], "type": "Point"}, "id": "2982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62153617211986, 41.946536341820945, -85.62153617211986, 41.946536341820945], "geometry": {"coordinates": [-85.62153617211986, 41.946536341820945], "type": "Point"}, "id": "2983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62171919363486, 41.946536134548566, -85.62171919363486, 41.946536134548566], "geometry": {"coordinates": [-85.62171919363486, 41.946536134548566], "type": "Point"}, "id": "2984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62190221514983, 41.94653592727617, -85.62190221514983, 41.94653592727617], "geometry": {"coordinates": [-85.62190221514983, 41.94653592727617], "type": "Point"}, "id": "2985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62208523666483, 41.946535720003794, -85.62208523666483, 41.946535720003794], "geometry": {"coordinates": [-85.62208523666483, 41.946535720003794], "type": "Point"}, "id": "2986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6222682581798, 41.94653551273141, -85.6222682581798, 41.94653551273141], "geometry": {"coordinates": [-85.6222682581798, 41.94653551273141], "type": "Point"}, "id": "2987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62245127969479, 41.94653530545902, -85.62245127969479, 41.94653530545902], "geometry": {"coordinates": [-85.62245127969479, 41.94653530545902], "type": "Point"}, "id": "2988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62263430120977, 41.94653509818663, -85.62263430120977, 41.94653509818663], "geometry": {"coordinates": [-85.62263430120977, 41.94653509818663], "type": "Point"}, "id": "2989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62281732064206, 41.946534516418545, -85.62281732064206, 41.946534516418545], "geometry": {"coordinates": [-85.62281732064206, 41.946534516418545], "type": "Point"}, "id": "2990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62300033819973, 41.94653359757191, -85.62300033819973, 41.94653359757191], "geometry": {"coordinates": [-85.62300033819973, 41.94653359757191], "type": "Point"}, "id": "2991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62318335575738, 41.94653267872524, -85.62318335575738, 41.94653267872524], "geometry": {"coordinates": [-85.62318335575738, 41.94653267872524], "type": "Point"}, "id": "2992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62336637331505, 41.94653175987858, -85.62336637331505, 41.94653175987858], "geometry": {"coordinates": [-85.62336637331505, 41.94653175987858], "type": "Point"}, "id": "2993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62354939087272, 41.9465308410319, -85.62354939087272, 41.9465308410319], "geometry": {"coordinates": [-85.62354939087272, 41.9465308410319], "type": "Point"}, "id": "2994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62373240843039, 41.946529922185206, -85.62373240843039, 41.946529922185206], "geometry": {"coordinates": [-85.62373240843039, 41.946529922185206], "type": "Point"}, "id": "2995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62391542598805, 41.94652900333849, -85.62391542598805, 41.94652900333849], "geometry": {"coordinates": [-85.62391542598805, 41.94652900333849], "type": "Point"}, "id": "2996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6240984435457, 41.946528084491774, -85.6240984435457, 41.946528084491774], "geometry": {"coordinates": [-85.6240984435457, 41.946528084491774], "type": "Point"}, "id": "2997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62428146110338, 41.94652716564504, -85.62428146110338, 41.94652716564504], "geometry": {"coordinates": [-85.62428146110338, 41.94652716564504], "type": "Point"}, "id": "2998", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62446447866105, 41.94652624679829, -85.62446447866105, 41.94652624679829], "geometry": {"coordinates": [-85.62446447866105, 41.94652624679829], "type": "Point"}, "id": "2999", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62464749621871, 41.946525327951534, -85.62464749621871, 41.946525327951534], "geometry": {"coordinates": [-85.62464749621871, 41.946525327951534], "type": "Point"}, "id": "3000", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62483051377637, 41.946524409104754, -85.62483051377637, 41.946524409104754], "geometry": {"coordinates": [-85.62483051377637, 41.946524409104754], "type": "Point"}, "id": "3001", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62501352524446, 41.94652302846674, -85.62501352524446, 41.94652302846674], "geometry": {"coordinates": [-85.62501352524446, 41.94652302846674], "type": "Point"}, "id": "3002", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62519653182518, 41.94652127720791, -85.62519653182518, 41.94652127720791], "geometry": {"coordinates": [-85.62519653182518, 41.94652127720791], "type": "Point"}, "id": "3003", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62537953840592, 41.94651952594902, -85.62537953840592, 41.94651952594902], "geometry": {"coordinates": [-85.62537953840592, 41.94651952594902], "type": "Point"}, "id": "3004", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62556254498666, 41.946517774690086, -85.62556254498666, 41.946517774690086], "geometry": {"coordinates": [-85.62556254498666, 41.946517774690086], "type": "Point"}, "id": "3005", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6257455515674, 41.9465160234311, -85.6257455515674, 41.9465160234311], "geometry": {"coordinates": [-85.6257455515674, 41.9465160234311], "type": "Point"}, "id": "3006", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62592855814813, 41.94651427217207, -85.62592855814813, 41.94651427217207], "geometry": {"coordinates": [-85.62592855814813, 41.94651427217207], "type": "Point"}, "id": "3007", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62611156472887, 41.94651252091299, -85.62611156472887, 41.94651252091299], "geometry": {"coordinates": [-85.62611156472887, 41.94651252091299], "type": "Point"}, "id": "3008", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62629457130961, 41.94651076965386, -85.62629457130961, 41.94651076965386], "geometry": {"coordinates": [-85.62629457130961, 41.94651076965386], "type": "Point"}, "id": "3009", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62647757789034, 41.94650901839469, -85.62647757789034, 41.94650901839469], "geometry": {"coordinates": [-85.62647757789034, 41.94650901839469], "type": "Point"}, "id": "3010", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62666058447107, 41.94650726713546, -85.62666058447107, 41.94650726713546], "geometry": {"coordinates": [-85.62666058447107, 41.94650726713546], "type": "Point"}, "id": "3011", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62684359105182, 41.94650551587619, -85.62684359105182, 41.94650551587619], "geometry": {"coordinates": [-85.62684359105182, 41.94650551587619], "type": "Point"}, "id": "3012", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62702659763255, 41.94650376461687, -85.62702659763255, 41.94650376461687], "geometry": {"coordinates": [-85.62702659763255, 41.94650376461687], "type": "Point"}, "id": "3013", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62720960421329, 41.94650201335751, -85.62720960421329, 41.94650201335751], "geometry": {"coordinates": [-85.62720960421329, 41.94650201335751], "type": "Point"}, "id": "3014", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62739261079403, 41.94650026209809, -85.62739261079403, 41.94650026209809], "geometry": {"coordinates": [-85.62739261079403, 41.94650026209809], "type": "Point"}, "id": "3015", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62757561737477, 41.94649851083862, -85.62757561737477, 41.94649851083862], "geometry": {"coordinates": [-85.62757561737477, 41.94649851083862], "type": "Point"}, "id": "3016", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62771102764273, 41.94657266127231, -85.62771102764273, 41.94657266127231], "geometry": {"coordinates": [-85.62771102764273, 41.94657266127231], "type": "Point"}, "id": "3017", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62782683647114, 41.94667806991232, -85.62782683647114, 41.94667806991232], "geometry": {"coordinates": [-85.62782683647114, 41.94667806991232], "type": "Point"}, "id": "3018", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62794264529958, 41.94678347837805, -85.62794264529958, 41.94678347837805], "geometry": {"coordinates": [-85.62794264529958, 41.94678347837805], "type": "Point"}, "id": "3019", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.628058454128, 41.946888886669505, -85.628058454128, 41.946888886669505], "geometry": {"coordinates": [-85.628058454128, 41.946888886669505], "type": "Point"}, "id": "3020", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.62818076627885, 41.946989613725016, -85.62818076627885, 41.946989613725016], "geometry": {"coordinates": [-85.62818076627885, 41.946989613725016], "type": "Point"}, "id": "3021", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967603}, "type": "Feature"}, {"bbox": [-85.6362328, 41.9536856, -85.6362328, 41.9536856], "geometry": {"coordinates": [-85.6362328, 41.9536856], "type": "Point"}, "id": "3022", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623325518758, 41.95382165637853, -85.63623325518758, 41.95382165637853], "geometry": {"coordinates": [-85.63623325518758, 41.95382165637853], "type": "Point"}, "id": "3023", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623371037514, 41.95395771246662, -85.63623371037514, 41.95395771246662], "geometry": {"coordinates": [-85.63623371037514, 41.95395771246662], "type": "Point"}, "id": "3024", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623416556271, 41.95409376826427, -85.63623416556271, 41.95409376826427], "geometry": {"coordinates": [-85.63623416556271, 41.95409376826427], "type": "Point"}, "id": "3025", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362346207503, 41.9542298237715, -85.6362346207503, 41.9542298237715], "geometry": {"coordinates": [-85.6362346207503, 41.9542298237715], "type": "Point"}, "id": "3026", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623507593786, 41.954365878988284, -85.63623507593786, 41.954365878988284], "geometry": {"coordinates": [-85.63623507593786, 41.954365878988284], "type": "Point"}, "id": "3027", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623553112545, 41.95450193391464, -85.63623553112545, 41.95450193391464], "geometry": {"coordinates": [-85.63623553112545, 41.95450193391464], "type": "Point"}, "id": "3028", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623595112237, 41.95463798860952, -85.63623595112237, 41.95463798860952], "geometry": {"coordinates": [-85.63623595112237, 41.95463798860952], "type": "Point"}, "id": "3029", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63623977475761, 41.954774009954505, -85.63623977475761, 41.954774009954505], "geometry": {"coordinates": [-85.63623977475761, 41.954774009954505], "type": "Point"}, "id": "3030", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63624407802976, 41.95491002678835, -85.63624407802976, 41.95491002678835], "geometry": {"coordinates": [-85.63624407802976, 41.95491002678835], "type": "Point"}, "id": "3031", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63624838130191, 41.955046043331905, -85.63624838130191, 41.955046043331905], "geometry": {"coordinates": [-85.63624838130191, 41.955046043331905], "type": "Point"}, "id": "3032", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63625268457405, 41.95518205958519, -85.63625268457405, 41.95518205958519], "geometry": {"coordinates": [-85.63625268457405, 41.95518205958519], "type": "Point"}, "id": "3033", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63625698784621, 41.9553180755482, -85.63625698784621, 41.9553180755482], "geometry": {"coordinates": [-85.63625698784621, 41.9553180755482], "type": "Point"}, "id": "3034", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63626129111834, 41.955454091220936, -85.63626129111834, 41.955454091220936], "geometry": {"coordinates": [-85.63626129111834, 41.955454091220936], "type": "Point"}, "id": "3035", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362655943905, 41.955590106603395, -85.6362655943905, 41.955590106603395], "geometry": {"coordinates": [-85.6362655943905, 41.955590106603395], "type": "Point"}, "id": "3036", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63626989766266, 41.95572612169557, -85.63626989766266, 41.95572612169557], "geometry": {"coordinates": [-85.63626989766266, 41.95572612169557], "type": "Point"}, "id": "3037", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362742009348, 41.95586213649747, -85.6362742009348, 41.95586213649747], "geometry": {"coordinates": [-85.6362742009348, 41.95586213649747], "type": "Point"}, "id": "3038", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627624381172, 41.95599817270638, -85.63627624381172, 41.95599817270638], "geometry": {"coordinates": [-85.63627624381172, 41.95599817270638], "type": "Point"}, "id": "3039", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627666278194, 41.95613422421258, -85.63627666278194, 41.95613422421258], "geometry": {"coordinates": [-85.63627666278194, 41.95613422421258], "type": "Point"}, "id": "3040", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627708175216, 41.95627027542835, -85.63627708175216, 41.95627027542835], "geometry": {"coordinates": [-85.63627708175216, 41.95627027542835], "type": "Point"}, "id": "3041", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627750072237, 41.956406326353694, -85.63627750072237, 41.956406326353694], "geometry": {"coordinates": [-85.63627750072237, 41.956406326353694], "type": "Point"}, "id": "3042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362779196926, 41.95654237698859, -85.6362779196926, 41.95654237698859], "geometry": {"coordinates": [-85.6362779196926, 41.95654237698859], "type": "Point"}, "id": "3043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627833461064, 41.95667842733984, -85.63627833461064, 41.95667842733984], "geometry": {"coordinates": [-85.63627833461064, 41.95667842733984], "type": "Point"}, "id": "3044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627874133718, 41.95681447741441, -85.63627874133718, 41.95681447741441], "geometry": {"coordinates": [-85.63627874133718, 41.95681447741441], "type": "Point"}, "id": "3045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6362787189994, 41.95695052688011, -85.6362787189994, 41.95695052688011], "geometry": {"coordinates": [-85.6362787189994, 41.95695052688011], "type": "Point"}, "id": "3046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627794709947, 41.95708657549905, -85.63627794709947, 41.95708657549905], "geometry": {"coordinates": [-85.63627794709947, 41.95708657549905], "type": "Point"}, "id": "3047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627717519952, 41.95722262382756, -85.63627717519952, 41.95722262382756], "geometry": {"coordinates": [-85.63627717519952, 41.95722262382756], "type": "Point"}, "id": "3048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627640329959, 41.95735867186564, -85.63627640329959, 41.95735867186564], "geometry": {"coordinates": [-85.63627640329959, 41.95735867186564], "type": "Point"}, "id": "3049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627563139966, 41.95749471961328, -85.63627563139966, 41.95749471961328], "geometry": {"coordinates": [-85.63627563139966, 41.95749471961328], "type": "Point"}, "id": "3050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627485949971, 41.9576307670705, -85.63627485949971, 41.9576307670705], "geometry": {"coordinates": [-85.63627485949971, 41.9576307670705], "type": "Point"}, "id": "3051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627408759976, 41.95776681423727, -85.63627408759976, 41.95776681423727], "geometry": {"coordinates": [-85.63627408759976, 41.95776681423727], "type": "Point"}, "id": "3052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627331569981, 41.9579028611136, -85.63627331569981, 41.9579028611136], "geometry": {"coordinates": [-85.63627331569981, 41.9579028611136], "type": "Point"}, "id": "3053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627254379988, 41.9580389076995, -85.63627254379988, 41.9580389076995], "geometry": {"coordinates": [-85.63627254379988, 41.9580389076995], "type": "Point"}, "id": "3054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.63627177189993, 41.95817495399498, -85.63627177189993, 41.95817495399498], "geometry": {"coordinates": [-85.63627177189993, 41.95817495399498], "type": "Point"}, "id": "3055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299769}, "type": "Feature"}, {"bbox": [-85.6295992, 41.9524346, -85.6295992, 41.9524346], "geometry": {"coordinates": [-85.6295992, 41.9524346], "type": "Point"}, "id": "3056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.6297777859091, 41.952468650956625, -85.6297777859091, 41.952468650956625], "geometry": {"coordinates": [-85.6297777859091, 41.952468650956625], "type": "Point"}, "id": "3057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.62996248278021, 41.95246580890584, -85.62996248278021, 41.95246580890584], "geometry": {"coordinates": [-85.62996248278021, 41.95246580890584], "type": "Point"}, "id": "3058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63014717965135, 41.95246296685494, -85.63014717965135, 41.95246296685494], "geometry": {"coordinates": [-85.63014717965135, 41.95246296685494], "type": "Point"}, "id": "3059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63033187631662, 41.95246011743652, -85.63033187631662, 41.95246011743652], "geometry": {"coordinates": [-85.63033187631662, 41.95246011743652], "type": "Point"}, "id": "3060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63051657251934, 41.95245725146106, -85.63051657251934, 41.95245725146106], "geometry": {"coordinates": [-85.63051657251934, 41.95245725146106], "type": "Point"}, "id": "3061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63070126872205, 41.95245438548547, -85.63070126872205, 41.95245438548547], "geometry": {"coordinates": [-85.63070126872205, 41.95245438548547], "type": "Point"}, "id": "3062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63088597164118, 41.952452028114216, -85.63088597164118, 41.952452028114216], "geometry": {"coordinates": [-85.63088597164118, 41.952452028114216], "type": "Point"}, "id": "3063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.6310707079052, 41.95245219580681, -85.6310707079052, 41.95245219580681], "geometry": {"coordinates": [-85.6310707079052, 41.95245219580681], "type": "Point"}, "id": "3064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63125544416921, 41.95245236349941, -85.63125544416921, 41.95245236349941], "geometry": {"coordinates": [-85.63125544416921, 41.95245236349941], "type": "Point"}, "id": "3065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63144018043324, 41.95245253119201, -85.63144018043324, 41.95245253119201], "geometry": {"coordinates": [-85.63144018043324, 41.95245253119201], "type": "Point"}, "id": "3066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63162491669728, 41.9524526988846, -85.63162491669728, 41.9524526988846], "geometry": {"coordinates": [-85.63162491669728, 41.9524526988846], "type": "Point"}, "id": "3067", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.6318096529613, 41.952452866577204, -85.6318096529613, 41.952452866577204], "geometry": {"coordinates": [-85.6318096529613, 41.952452866577204], "type": "Point"}, "id": "3068", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63199438922533, 41.95245303426981, -85.63199438922533, 41.95245303426981], "geometry": {"coordinates": [-85.63199438922533, 41.95245303426981], "type": "Point"}, "id": "3069", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63217907551896, 41.95245060642028, -85.63217907551896, 41.95245060642028], "geometry": {"coordinates": [-85.63217907551896, 41.95245060642028], "type": "Point"}, "id": "3070", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63236372959915, 41.952446505350885, -85.63236372959915, 41.952446505350885], "geometry": {"coordinates": [-85.63236372959915, 41.952446505350885], "type": "Point"}, "id": "3071", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.6325483836793, 41.952442404281236, -85.6325483836793, 41.952442404281236], "geometry": {"coordinates": [-85.6325483836793, 41.952442404281236], "type": "Point"}, "id": "3072", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63273303775948, 41.95243830321132, -85.63273303775948, 41.95243830321132], "geometry": {"coordinates": [-85.63273303775948, 41.95243830321132], "type": "Point"}, "id": "3073", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63291769183965, 41.95243420214115, -85.63291769183965, 41.95243420214115], "geometry": {"coordinates": [-85.63291769183965, 41.95243420214115], "type": "Point"}, "id": "3074", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.63310234591982, 41.95243010107071, -85.63310234591982, 41.95243010107071], "geometry": {"coordinates": [-85.63310234591982, 41.95243010107071], "type": "Point"}, "id": "3075", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967573}, "type": "Feature"}, {"bbox": [-85.64194599999999, 41.94641300000001, -85.64194599999999, 41.94641300000001], "geometry": {"coordinates": [-85.64194599999999, 41.94641300000001], "type": "Point"}, "id": "3076", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64213613522477, 41.946411408910265, -85.64213613522477, 41.946411408910265], "geometry": {"coordinates": [-85.64213613522477, 41.946411408910265], "type": "Point"}, "id": "3077", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.6423262127934, 41.94640777395536, -85.6423262127934, 41.94640777395536], "geometry": {"coordinates": [-85.6423262127934, 41.94640777395536], "type": "Point"}, "id": "3078", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.6425162704191, 41.94640343203698, -85.6425162704191, 41.94640343203698], "geometry": {"coordinates": [-85.6425162704191, 41.94640343203698], "type": "Point"}, "id": "3079", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64270632804475, 41.946399090118305, -85.64270632804475, 41.946399090118305], "geometry": {"coordinates": [-85.64270632804475, 41.946399090118305], "type": "Point"}, "id": "3080", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64289638567041, 41.94639474819933, -85.64289638567041, 41.94639474819933], "geometry": {"coordinates": [-85.64289638567041, 41.94639474819933], "type": "Point"}, "id": "3081", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64308644329607, 41.94639040628007, -85.64308644329607, 41.94639040628007], "geometry": {"coordinates": [-85.64308644329607, 41.94639040628007], "type": "Point"}, "id": "3082", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64327651644948, 41.946386468155495, -85.64327651644948, 41.946386468155495], "geometry": {"coordinates": [-85.64327651644948, 41.946386468155495], "type": "Point"}, "id": "3083", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64346659704123, 41.946382723463465, -85.64346659704123, 41.946382723463465], "geometry": {"coordinates": [-85.64346659704123, 41.946382723463465], "type": "Point"}, "id": "3084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64365667763299, 41.94637897877121, -85.64365667763299, 41.94637897877121], "geometry": {"coordinates": [-85.64365667763299, 41.94637897877121], "type": "Point"}, "id": "3085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64384675822474, 41.94637523407873, -85.64384675822474, 41.94637523407873], "geometry": {"coordinates": [-85.64384675822474, 41.94637523407873], "type": "Point"}, "id": "3086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64403683881649, 41.946371489386046, -85.64403683881649, 41.946371489386046], "geometry": {"coordinates": [-85.64403683881649, 41.946371489386046], "type": "Point"}, "id": "3087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.64422691940824, 41.946367744693134, -85.64422691940824, 41.946367744693134], "geometry": {"coordinates": [-85.64422691940824, 41.946367744693134], "type": "Point"}, "id": "3088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965353}, "type": "Feature"}, {"bbox": [-85.63580439999998, 41.941951399999994, -85.63580439999998, 41.941951399999994], "geometry": {"coordinates": [-85.63580439999998, 41.941951399999994], "type": "Point"}, "id": "3089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63562238283758, 41.941953588758615, -85.63562238283758, 41.941953588758615], "geometry": {"coordinates": [-85.63562238283758, 41.941953588758615], "type": "Point"}, "id": "3090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63544036567521, 41.94195577751716, -85.63544036567521, 41.94195577751716], "geometry": {"coordinates": [-85.63544036567521, 41.94195577751716], "type": "Point"}, "id": "3091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63526007957874, 41.94194140114244, -85.63526007957874, 41.94194140114244], "geometry": {"coordinates": [-85.63526007957874, 41.94194140114244], "type": "Point"}, "id": "3092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63509408649381, 41.94188783270936, -85.63509408649381, 41.94188783270936], "geometry": {"coordinates": [-85.63509408649381, 41.94188783270936], "type": "Point"}, "id": "3093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63497429754415, 41.94178587318898, -85.63497429754415, 41.94178587318898], "geometry": {"coordinates": [-85.63497429754415, 41.94178587318898], "type": "Point"}, "id": "3094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6348576734017, 41.941681918863566, -85.6348576734017, 41.941681918863566], "geometry": {"coordinates": [-85.6348576734017, 41.941681918863566], "type": "Point"}, "id": "3095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63473440172605, 41.94158233852896, -85.63473440172605, 41.94158233852896], "geometry": {"coordinates": [-85.63473440172605, 41.94158233852896], "type": "Point"}, "id": "3096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6345923374202, 41.94149887740454, -85.6345923374202, 41.94149887740454], "geometry": {"coordinates": [-85.6345923374202, 41.94149887740454], "type": "Point"}, "id": "3097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63443103675107, 41.941436224223416, -85.63443103675107, 41.941436224223416], "geometry": {"coordinates": [-85.63443103675107, 41.941436224223416], "type": "Point"}, "id": "3098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63426715696953, 41.94137726753417, -85.63426715696953, 41.94137726753417], "geometry": {"coordinates": [-85.63426715696953, 41.94137726753417], "type": "Point"}, "id": "3099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63410327718799, 41.94131831079042, -85.63410327718799, 41.94131831079042], "geometry": {"coordinates": [-85.63410327718799, 41.94131831079042], "type": "Point"}, "id": "3100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63393939740645, 41.94125935399216, -85.63393939740645, 41.94125935399216], "geometry": {"coordinates": [-85.63393939740645, 41.94125935399216], "type": "Point"}, "id": "3101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63377707370755, 41.941198121222016, -85.63377707370755, 41.941198121222016], "geometry": {"coordinates": [-85.63377707370755, 41.941198121222016], "type": "Point"}, "id": "3102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63363352976937, 41.941116391036466, -85.63363352976937, 41.941116391036466], "geometry": {"coordinates": [-85.63363352976937, 41.941116391036466], "type": "Point"}, "id": "3103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6335433269688, 41.940999924960956, -85.6335433269688, 41.940999924960956], "geometry": {"coordinates": [-85.6335433269688, 41.940999924960956], "type": "Point"}, "id": "3104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6334888275033, 41.940870805256445, -85.6334888275033, 41.940870805256445], "geometry": {"coordinates": [-85.6334888275033, 41.940870805256445], "type": "Point"}, "id": "3105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63345056921065, 41.94073848521812, -85.63345056921065, 41.94073848521812], "geometry": {"coordinates": [-85.63345056921065, 41.94073848521812], "type": "Point"}, "id": "3106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63342500253157, 41.94060462067412, -85.63342500253157, 41.94060462067412], "geometry": {"coordinates": [-85.63342500253157, 41.94060462067412], "type": "Point"}, "id": "3107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63340842306792, 41.940469774304596, -85.63340842306792, 41.940469774304596], "geometry": {"coordinates": [-85.63340842306792, 41.940469774304596], "type": "Point"}, "id": "3108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.633408172877, 41.940334684585515, -85.633408172877, 41.940334684585515], "geometry": {"coordinates": [-85.633408172877, 41.940334684585515], "type": "Point"}, "id": "3109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.633469762653, 41.940208364517574, -85.633469762653, 41.940208364517574], "geometry": {"coordinates": [-85.633469762653, 41.940208364517574], "type": "Point"}, "id": "3110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63361740083563, 41.9401343787098, -85.63361740083563, 41.9401343787098], "geometry": {"coordinates": [-85.63361740083563, 41.9401343787098], "type": "Point"}, "id": "3111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63379655213151, 41.94011416461743, -85.63379655213151, 41.94011416461743], "geometry": {"coordinates": [-85.63379655213151, 41.94011416461743], "type": "Point"}, "id": "3112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63397858180312, 41.94011265755741, -85.63397858180312, 41.94011265755741], "geometry": {"coordinates": [-85.63397858180312, 41.94011265755741], "type": "Point"}, "id": "3113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63416061147471, 41.94011115049735, -85.63416061147471, 41.94011115049735], "geometry": {"coordinates": [-85.63416061147471, 41.94011115049735], "type": "Point"}, "id": "3114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63434264114632, 41.94010964343727, -85.63434264114632, 41.94010964343727], "geometry": {"coordinates": [-85.63434264114632, 41.94010964343727], "type": "Point"}, "id": "3115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63452467081791, 41.94010813637713, -85.63452467081791, 41.94010813637713], "geometry": {"coordinates": [-85.63452467081791, 41.94010813637713], "type": "Point"}, "id": "3116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63470669955007, 41.94010903181419, -85.63470669955007, 41.94010903181419], "geometry": {"coordinates": [-85.63470669955007, 41.94010903181419], "type": "Point"}, "id": "3117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63488872752048, 41.94011064857257, -85.63488872752048, 41.94011064857257], "geometry": {"coordinates": [-85.63488872752048, 41.94011064857257], "type": "Point"}, "id": "3118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63507075554882, 41.94011226161718, -85.63507075554882, 41.94011226161718], "geometry": {"coordinates": [-85.63507075554882, 41.94011226161718], "type": "Point"}, "id": "3119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63525278495261, 41.94011378647081, -85.63525278495261, 41.94011378647081], "geometry": {"coordinates": [-85.63525278495261, 41.94011378647081], "type": "Point"}, "id": "3120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6354348132247, 41.94011538430934, -85.6354348132247, 41.94011538430934], "geometry": {"coordinates": [-85.6354348132247, 41.94011538430934], "type": "Point"}, "id": "3121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63561684152495, 41.940116980387415, -85.63561684152495, 41.940116980387415], "geometry": {"coordinates": [-85.63561684152495, 41.940116980387415], "type": "Point"}, "id": "3122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63579887058572, 41.94011827995138, -85.63579887058572, 41.94011827995138], "geometry": {"coordinates": [-85.63579887058572, 41.94011827995138], "type": "Point"}, "id": "3123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63598090552811, 41.940117180182796, -85.63598090552811, 41.940117180182796], "geometry": {"coordinates": [-85.63598090552811, 41.940117180182796], "type": "Point"}, "id": "3124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63616294047051, 41.94011608041419, -85.63616294047051, 41.94011608041419], "geometry": {"coordinates": [-85.63616294047051, 41.94011608041419], "type": "Point"}, "id": "3125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6363449754129, 41.94011498064558, -85.6363449754129, 41.94011498064558], "geometry": {"coordinates": [-85.6363449754129, 41.94011498064558], "type": "Point"}, "id": "3126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63652701035528, 41.94011388087695, -85.63652701035528, 41.94011388087695], "geometry": {"coordinates": [-85.63652701035528, 41.94011388087695], "type": "Point"}, "id": "3127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63670904529768, 41.94011278110829, -85.63670904529768, 41.94011278110829], "geometry": {"coordinates": [-85.63670904529768, 41.94011278110829], "type": "Point"}, "id": "3128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63689108024008, 41.94011168133962, -85.63689108024008, 41.94011168133962], "geometry": {"coordinates": [-85.63689108024008, 41.94011168133962], "type": "Point"}, "id": "3129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.63707305586324, 41.94010841553268, -85.63707305586324, 41.94010841553268], "geometry": {"coordinates": [-85.63707305586324, 41.94010841553268], "type": "Point"}, "id": "3130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966942}, "type": "Feature"}, {"bbox": [-85.6269868, 41.941035, -85.6269868, 41.941035], "geometry": {"coordinates": [-85.6269868, 41.941035], "type": "Point"}, "id": "3131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62713921663176, 41.94110727009846, -85.62713921663176, 41.94110727009846], "geometry": {"coordinates": [-85.62713921663176, 41.94110727009846], "type": "Point"}, "id": "3132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62725817139669, 41.941203392699116, -85.62725817139669, 41.941203392699116], "geometry": {"coordinates": [-85.62725817139669, 41.941203392699116], "type": "Point"}, "id": "3133", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6273045015589, 41.94133333818054, -85.6273045015589, 41.94133333818054], "geometry": {"coordinates": [-85.6273045015589, 41.94133333818054], "type": "Point"}, "id": "3134", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62734683319809, 41.94146404638603, -85.62734683319809, 41.94146404638603], "geometry": {"coordinates": [-85.62734683319809, 41.94146404638603], "type": "Point"}, "id": "3135", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62735472003149, 41.941598019758146, -85.62735472003149, 41.941598019758146], "geometry": {"coordinates": [-85.62735472003149, 41.941598019758146], "type": "Point"}, "id": "3136", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62735781821249, 41.94173244682137, -85.62735781821249, 41.94173244682137], "geometry": {"coordinates": [-85.62735781821249, 41.94173244682137], "type": "Point"}, "id": "3137", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62736091639346, 41.94186687360119, -85.62736091639346, 41.94186687360119], "geometry": {"coordinates": [-85.62736091639346, 41.94186687360119], "type": "Point"}, "id": "3138", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62736401457445, 41.94200130009761, -85.62736401457445, 41.94200130009761], "geometry": {"coordinates": [-85.62736401457445, 41.94200130009761], "type": "Point"}, "id": "3139", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62736711275542, 41.94213572631064, -85.62736711275542, 41.94213572631064], "geometry": {"coordinates": [-85.62736711275542, 41.94213572631064], "type": "Point"}, "id": "3140", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62737022942001, 41.94227015199424, -85.62737022942001, 41.94227015199424], "geometry": {"coordinates": [-85.62737022942001, 41.94227015199424], "type": "Point"}, "id": "3141", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6273735990833, 41.94240457402696, -85.6273735990833, 41.94240457402696], "geometry": {"coordinates": [-85.6273735990833, 41.94240457402696], "type": "Point"}, "id": "3142", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6273769687466, 41.94253899577631, -85.6273769687466, 41.94253899577631], "geometry": {"coordinates": [-85.6273769687466, 41.94253899577631], "type": "Point"}, "id": "3143", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62738033840989, 41.94267341724226, -85.62738033840989, 41.94267341724226], "geometry": {"coordinates": [-85.62738033840989, 41.94267341724226], "type": "Point"}, "id": "3144", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.6273837080732, 41.942807838424834, -85.6273837080732, 41.942807838424834], "geometry": {"coordinates": [-85.6273837080732, 41.942807838424834], "type": "Point"}, "id": "3145", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62738707773649, 41.94294225932402, -85.62738707773649, 41.94294225932402], "geometry": {"coordinates": [-85.62738707773649, 41.94294225932402], "type": "Point"}, "id": "3146", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62739044739979, 41.94307667993983, -85.62739044739979, 41.94307667993983], "geometry": {"coordinates": [-85.62739044739979, 41.94307667993983], "type": "Point"}, "id": "3147", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62739381706308, 41.94321110027224, -85.62739381706308, 41.94321110027224], "geometry": {"coordinates": [-85.62739381706308, 41.94321110027224], "type": "Point"}, "id": "3148", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62739720220104, 41.94334552010592, -85.62739720220104, 41.94334552010592], "geometry": {"coordinates": [-85.62739720220104, 41.94334552010592], "type": "Point"}, "id": "3149", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740059466738, 41.94347993955425, -85.62740059466738, 41.94347993955425], "geometry": {"coordinates": [-85.62740059466738, 41.94347993955425], "type": "Point"}, "id": "3150", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740283522002, 41.94361437170117, -85.62740283522002, 41.94361437170117], "geometry": {"coordinates": [-85.62740283522002, 41.94361437170117], "type": "Point"}, "id": "3151", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740253556603, 41.94374881307055, -85.62740253556603, 41.94374881307055], "geometry": {"coordinates": [-85.62740253556603, 41.94374881307055], "type": "Point"}, "id": "3152", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740207334232, 41.94388325491092, -85.62740207334232, 41.94388325491092], "geometry": {"coordinates": [-85.62740207334232, 41.94388325491092], "type": "Point"}, "id": "3153", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740161111859, 41.9440176964678, -85.62740161111859, 41.9440176964678], "geometry": {"coordinates": [-85.62740161111859, 41.9440176964678], "type": "Point"}, "id": "3154", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740114889486, 41.94415213774121, -85.62740114889486, 41.94415213774121], "geometry": {"coordinates": [-85.62740114889486, 41.94415213774121], "type": "Point"}, "id": "3155", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740068667115, 41.94428657873114, -85.62740068667115, 41.94428657873114], "geometry": {"coordinates": [-85.62740068667115, 41.94428657873114], "type": "Point"}, "id": "3156", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62740022444743, 41.94442101943757, -85.62740022444743, 41.94442101943757], "geometry": {"coordinates": [-85.62740022444743, 41.94442101943757], "type": "Point"}, "id": "3157", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.62739976222369, 41.94455545986053, -85.62739976222369, 41.94455545986053], "geometry": {"coordinates": [-85.62739976222369, 41.94455545986053], "type": "Point"}, "id": "3158", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964989}, "type": "Feature"}, {"bbox": [-85.63464489999998, 41.9460571, -85.63464489999998, 41.9460571], "geometry": {"coordinates": [-85.63464489999998, 41.9460571], "type": "Point"}, "id": "3159", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967628}, "type": "Feature"}, {"bbox": [-85.63484057119206, 41.94605262230305, -85.63484057119206, 41.94605262230305], "geometry": {"coordinates": [-85.63484057119206, 41.94605262230305], "type": "Point"}, "id": "3160", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967628}, "type": "Feature"}, {"bbox": [-85.63503624105992, 41.94604811262642, -85.63503624105992, 41.94604811262642], "geometry": {"coordinates": [-85.63503624105992, 41.94604811262642], "type": "Point"}, "id": "3161", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967628}, "type": "Feature"}, {"bbox": [-85.63523191092779, 41.946043602949466, -85.63523191092779, 41.946043602949466], "geometry": {"coordinates": [-85.63523191092779, 41.946043602949466], "type": "Point"}, "id": "3162", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967628}, "type": "Feature"}, {"bbox": [-85.63542717874034, 41.946043953630166, -85.63542717874034, 41.946043953630166], "geometry": {"coordinates": [-85.63542717874034, 41.946043953630166], "type": "Point"}, "id": "3163", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967628}, "type": "Feature"}, {"bbox": [-85.63562293937018, 41.94604312681509, -85.63562293937018, 41.94604312681509], "geometry": {"coordinates": [-85.63562293937018, 41.94604312681509], "type": "Point"}, "id": "3164", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967628}, "type": "Feature"}, {"bbox": [-85.6299942, 41.9446689, -85.6299942, 41.9446689], "geometry": {"coordinates": [-85.6299942, 41.9446689], "type": "Point"}, "id": "3165", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62999511475546, 41.944531704879346, -85.62999511475546, 41.944531704879346], "geometry": {"coordinates": [-85.62999511475546, 41.944531704879346], "type": "Point"}, "id": "3166", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62999598722516, 41.94439450930906, -85.62999598722516, 41.94439450930906], "geometry": {"coordinates": [-85.62999598722516, 41.94439450930906], "type": "Point"}, "id": "3167", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62999685969483, 41.94425731344354, -85.62999685969483, 41.94425731344354], "geometry": {"coordinates": [-85.62999685969483, 41.94425731344354], "type": "Point"}, "id": "3168", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6299977321645, 41.944120117282814, -85.6299977321645, 41.944120117282814], "geometry": {"coordinates": [-85.6299977321645, 41.944120117282814], "type": "Point"}, "id": "3169", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62998176119609, 41.9439836900654, -85.62998176119609, 41.9439836900654], "geometry": {"coordinates": [-85.62998176119609, 41.9439836900654], "type": "Point"}, "id": "3170", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62995887241797, 41.94384755259309, -85.62995887241797, 41.94384755259309], "geometry": {"coordinates": [-85.62995887241797, 41.94384755259309], "type": "Point"}, "id": "3171", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62991998232418, 41.94371389869542, -85.62991998232418, 41.94371389869542], "geometry": {"coordinates": [-85.62991998232418, 41.94371389869542], "type": "Point"}, "id": "3172", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62986804662137, 41.94358225046352, -85.62986804662137, 41.94358225046352], "geometry": {"coordinates": [-85.62986804662137, 41.94358225046352], "type": "Point"}, "id": "3173", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62981611091853, 41.943450601959796, -85.62981611091853, 41.943450601959796], "geometry": {"coordinates": [-85.62981611091853, 41.943450601959796], "type": "Point"}, "id": "3174", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62976417521568, 41.94331895318425, -85.62976417521568, 41.94331895318425], "geometry": {"coordinates": [-85.62976417521568, 41.94331895318425], "type": "Point"}, "id": "3175", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62971223951284, 41.94318730413688, -85.62971223951284, 41.94318730413688], "geometry": {"coordinates": [-85.62971223951284, 41.94318730413688], "type": "Point"}, "id": "3176", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62965241253869, 41.94305761547565, -85.62965241253869, 41.94305761547565], "geometry": {"coordinates": [-85.62965241253869, 41.94305761547565], "type": "Point"}, "id": "3177", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62958754661553, 41.94292917852578, -85.62958754661553, 41.94292917852578], "geometry": {"coordinates": [-85.62958754661553, 41.94292917852578], "type": "Point"}, "id": "3178", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6295348402793, 41.94279773181881, -85.6295348402793, 41.94279773181881], "geometry": {"coordinates": [-85.6295348402793, 41.94279773181881], "type": "Point"}, "id": "3179", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6294934320407, 41.94266420684528, -85.6294934320407, 41.94266420684528], "geometry": {"coordinates": [-85.6294934320407, 41.94266420684528], "type": "Point"}, "id": "3180", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62946361056687, 41.94252886193597, -85.62946361056687, 41.94252886193597], "geometry": {"coordinates": [-85.62946361056687, 41.94252886193597], "type": "Point"}, "id": "3181", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62944089465977, 41.942392707939234, -85.62944089465977, 41.942392707939234], "geometry": {"coordinates": [-85.62944089465977, 41.942392707939234], "type": "Point"}, "id": "3182", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.629421001218, 41.94225630649426, -85.629421001218, 41.94225630649426], "geometry": {"coordinates": [-85.629421001218, 41.94225630649426], "type": "Point"}, "id": "3183", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62940116105702, 41.94211990046527, -85.62940116105702, 41.94211990046527], "geometry": {"coordinates": [-85.62940116105702, 41.94211990046527], "type": "Point"}, "id": "3184", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6293833626968, 41.94198334723747, -85.6293833626968, 41.94198334723747], "geometry": {"coordinates": [-85.6293833626968, 41.94198334723747], "type": "Point"}, "id": "3185", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62936683382554, 41.94184671352318, -85.62936683382554, 41.94184671352318], "geometry": {"coordinates": [-85.62936683382554, 41.94184671352318], "type": "Point"}, "id": "3186", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62934004857452, 41.941710988747666, -85.62934004857452, 41.941710988747666], "geometry": {"coordinates": [-85.62934004857452, 41.941710988747666], "type": "Point"}, "id": "3187", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6292803331141, 41.941582936113015, -85.6292803331141, 41.941582936113015], "geometry": {"coordinates": [-85.6292803331141, 41.941582936113015], "type": "Point"}, "id": "3188", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62912892174575, 41.94150796744398, -85.62912892174575, 41.94150796744398], "geometry": {"coordinates": [-85.62912892174575, 41.94150796744398], "type": "Point"}, "id": "3189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62895640403485, 41.94145954066271, -85.62895640403485, 41.94145954066271], "geometry": {"coordinates": [-85.62895640403485, 41.94145954066271], "type": "Point"}, "id": "3190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62878204300844, 41.9414147732303, -85.62878204300844, 41.9414147732303], "geometry": {"coordinates": [-85.62878204300844, 41.9414147732303], "type": "Point"}, "id": "3191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62860768198203, 41.94137000576645, -85.62860768198203, 41.94137000576645], "geometry": {"coordinates": [-85.62860768198203, 41.94137000576645], "type": "Point"}, "id": "3192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62843332095561, 41.94132523827118, -85.62843332095561, 41.94132523827118], "geometry": {"coordinates": [-85.62843332095561, 41.94132523827118], "type": "Point"}, "id": "3193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6282589599292, 41.941280470744466, -85.6282589599292, 41.941280470744466], "geometry": {"coordinates": [-85.6282589599292, 41.941280470744466], "type": "Point"}, "id": "3194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62808459890277, 41.94123570318634, -85.62808459890277, 41.94123570318634], "geometry": {"coordinates": [-85.62808459890277, 41.94123570318634], "type": "Point"}, "id": "3195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62791023787636, 41.94119093559679, -85.62791023787636, 41.94119093559679], "geometry": {"coordinates": [-85.62791023787636, 41.94119093559679], "type": "Point"}, "id": "3196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62773587684995, 41.94114616797578, -85.62773587684995, 41.94114616797578], "geometry": {"coordinates": [-85.62773587684995, 41.94114616797578], "type": "Point"}, "id": "3197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62756151582354, 41.94110140032336, -85.62756151582354, 41.94110140032336], "geometry": {"coordinates": [-85.62756151582354, 41.94110140032336], "type": "Point"}, "id": "3198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62738715479712, 41.9410566326395, -85.62738715479712, 41.9410566326395], "geometry": {"coordinates": [-85.62738715479712, 41.9410566326395], "type": "Point"}, "id": "3199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.62722079431107, 41.9409992218577, -85.62722079431107, 41.9409992218577], "geometry": {"coordinates": [-85.62722079431107, 41.9409992218577], "type": "Point"}, "id": "3200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965305}, "type": "Feature"}, {"bbox": [-85.6321612, 41.959859, -85.6321612, 41.959859], "geometry": {"coordinates": [-85.6321612, 41.959859], "type": "Point"}, "id": "3201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63234797142856, 41.95985721428604, -85.63234797142856, 41.95985721428604], "geometry": {"coordinates": [-85.63234797142856, 41.95985721428604], "type": "Point"}, "id": "3202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63253474285715, 41.95985542857203, -85.63253474285715, 41.95985542857203], "geometry": {"coordinates": [-85.63253474285715, 41.95985542857203], "type": "Point"}, "id": "3203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63272151428572, 41.95985364285797, -85.63272151428572, 41.95985364285797], "geometry": {"coordinates": [-85.63272151428572, 41.95985364285797], "type": "Point"}, "id": "3204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63290828571428, 41.95985185714387, -85.63290828571428, 41.95985185714387], "geometry": {"coordinates": [-85.63290828571428, 41.95985185714387], "type": "Point"}, "id": "3205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63309505714285, 41.95985007142969, -85.63309505714285, 41.95985007142969], "geometry": {"coordinates": [-85.63309505714285, 41.95985007142969], "type": "Point"}, "id": "3206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63328182857143, 41.95984828571549, -85.63328182857143, 41.95984828571549], "geometry": {"coordinates": [-85.63328182857143, 41.95984828571549], "type": "Point"}, "id": "3207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.6334686, 41.95984650000123, -85.6334686, 41.95984650000123], "geometry": {"coordinates": [-85.6334686, 41.95984650000123], "type": "Point"}, "id": "3208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63365537142856, 41.959844714286916, -85.63365537142856, 41.959844714286916], "geometry": {"coordinates": [-85.63365537142856, 41.959844714286916], "type": "Point"}, "id": "3209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63384214285715, 41.959842928572556, -85.63384214285715, 41.959842928572556], "geometry": {"coordinates": [-85.63384214285715, 41.959842928572556], "type": "Point"}, "id": "3210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63402891428572, 41.959841142858146, -85.63402891428572, 41.959841142858146], "geometry": {"coordinates": [-85.63402891428572, 41.959841142858146], "type": "Point"}, "id": "3211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63421568571428, 41.95983935714368, -85.63421568571428, 41.95983935714368], "geometry": {"coordinates": [-85.63421568571428, 41.95983935714368], "type": "Point"}, "id": "3212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63440245714284, 41.95983757142918, -85.63440245714284, 41.95983757142918], "geometry": {"coordinates": [-85.63440245714284, 41.95983757142918], "type": "Point"}, "id": "3213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.63458922857143, 41.95983578571461, -85.63458922857143, 41.95983578571461], "geometry": {"coordinates": [-85.63458922857143, 41.95983578571461], "type": "Point"}, "id": "3214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965196}, "type": "Feature"}, {"bbox": [-85.6302318, 41.965951, -85.6302318, 41.965951], "geometry": {"coordinates": [-85.6302318, 41.965951], "type": "Point"}, "id": "3215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63023081530234, 41.96579970831323, -85.63023081530234, 41.96579970831323], "geometry": {"coordinates": [-85.63023081530234, 41.96579970831323], "type": "Point"}, "id": "3216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63022979082791, 41.96564841641529, -85.63022979082791, 41.96564841641529], "geometry": {"coordinates": [-85.63022979082791, 41.96564841641529], "type": "Point"}, "id": "3217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63022873734135, 41.96549712426614, -85.63022873734135, 41.96549712426614], "geometry": {"coordinates": [-85.63022873734135, 41.96549712426614], "type": "Point"}, "id": "3218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63022768385478, 41.965345831757716, -85.63022768385478, 41.965345831757716], "geometry": {"coordinates": [-85.63022768385478, 41.965345831757716], "type": "Point"}, "id": "3219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.63023495578553, 41.96519530541286, -85.63023495578553, 41.96519530541286], "geometry": {"coordinates": [-85.63023495578553, 41.96519530541286], "type": "Point"}, "id": "3220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.6302977930373, 41.965051913782105, -85.6302977930373, 41.965051913782105], "geometry": {"coordinates": [-85.6302977930373, 41.965051913782105], "type": "Point"}, "id": "3221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968019}, "type": "Feature"}, {"bbox": [-85.614617, 41.95163900000001, -85.614617, 41.95163900000001], "geometry": {"coordinates": [-85.614617, 41.95163900000001], "type": "Point"}, "id": "3222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61462558668069, 41.95177968954043, -85.61462558668069, 41.95177968954043], "geometry": {"coordinates": [-85.61462558668069, 41.95177968954043], "type": "Point"}, "id": "3223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463051853995, 41.95192044808841, -85.61463051853995, 41.95192044808841], "geometry": {"coordinates": [-85.61463051853995, 41.95192044808841], "type": "Point"}, "id": "3224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463158543464, 41.95206127962909, -85.61463158543464, 41.95206127962909], "geometry": {"coordinates": [-85.61463158543464, 41.95206127962909], "type": "Point"}, "id": "3225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.6146326523293, 41.95220211085862, -85.6146326523293, 41.95220211085862], "geometry": {"coordinates": [-85.6146326523293, 41.95220211085862], "type": "Point"}, "id": "3226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.614633719224, 41.95234294177699, -85.614633719224, 41.95234294177699], "geometry": {"coordinates": [-85.614633719224, 41.95234294177699], "type": "Point"}, "id": "3227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463478611867, 41.9524837723842, -85.61463478611867, 41.9524837723842], "geometry": {"coordinates": [-85.61463478611867, 41.9524837723842], "type": "Point"}, "id": "3228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463585301335, 41.952624602680245, -85.61463585301335, 41.952624602680245], "geometry": {"coordinates": [-85.61463585301335, 41.952624602680245], "type": "Point"}, "id": "3229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463691990802, 41.95276543266514, -85.61463691990802, 41.95276543266514], "geometry": {"coordinates": [-85.61463691990802, 41.95276543266514], "type": "Point"}, "id": "3230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463798680272, 41.95290626233886, -85.61463798680272, 41.95290626233886], "geometry": {"coordinates": [-85.61463798680272, 41.95290626233886], "type": "Point"}, "id": "3231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463905369739, 41.95304709170143, -85.61463905369739, 41.95304709170143], "geometry": {"coordinates": [-85.61463905369739, 41.95304709170143], "type": "Point"}, "id": "3232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61464012059206, 41.95318792075283, -85.61464012059206, 41.95318792075283], "geometry": {"coordinates": [-85.61464012059206, 41.95318792075283], "type": "Point"}, "id": "3233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61464118748674, 41.95332874949308, -85.61464118748674, 41.95332874949308], "geometry": {"coordinates": [-85.61464118748674, 41.95332874949308], "type": "Point"}, "id": "3234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61463016533138, 41.95346840447079, -85.61463016533138, 41.95346840447079], "geometry": {"coordinates": [-85.61463016533138, 41.95346840447079], "type": "Point"}, "id": "3235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.6145458779485, 41.95358883755263, -85.6145458779485, 41.95358883755263], "geometry": {"coordinates": [-85.6145458779485, 41.95358883755263], "type": "Point"}, "id": "3236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.61438707694707, 41.95366155465087, -85.61438707694707, 41.95366155465087], "geometry": {"coordinates": [-85.61438707694707, 41.95366155465087], "type": "Point"}, "id": "3237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965156}, "type": "Feature"}, {"bbox": [-85.6397719, 41.9638513, -85.6397719, 41.9638513], "geometry": {"coordinates": [-85.6397719, 41.9638513], "type": "Point"}, "id": "3238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63958894094286, 41.963852014910266, -85.63958894094286, 41.963852014910266], "geometry": {"coordinates": [-85.63958894094286, 41.963852014910266], "type": "Point"}, "id": "3239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63940598188572, 41.96385272982052, -85.63940598188572, 41.96385272982052], "geometry": {"coordinates": [-85.63940598188572, 41.96385272982052], "type": "Point"}, "id": "3240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63922302282859, 41.963853444730766, -85.63922302282859, 41.963853444730766], "geometry": {"coordinates": [-85.63922302282859, 41.963853444730766], "type": "Point"}, "id": "3241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63904006377145, 41.963854159641, -85.63904006377145, 41.963854159641], "geometry": {"coordinates": [-85.63904006377145, 41.963854159641], "type": "Point"}, "id": "3242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63885710471432, 41.96385487455123, -85.63885710471432, 41.96385487455123], "geometry": {"coordinates": [-85.63885710471432, 41.96385487455123], "type": "Point"}, "id": "3243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63867414679436, 41.96385573291171, -85.63867414679436, 41.96385573291171], "geometry": {"coordinates": [-85.63867414679436, 41.96385573291171], "type": "Point"}, "id": "3244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63849118911641, 41.963856621801156, -85.63849118911641, 41.963856621801156], "geometry": {"coordinates": [-85.63849118911641, 41.963856621801156], "type": "Point"}, "id": "3245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63830823143847, 41.96385751069059, -85.63830823143847, 41.96385751069059], "geometry": {"coordinates": [-85.63830823143847, 41.96385751069059], "type": "Point"}, "id": "3246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63812527376052, 41.963858399580005, -85.63812527376052, 41.963858399580005], "geometry": {"coordinates": [-85.63812527376052, 41.963858399580005], "type": "Point"}, "id": "3247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63794231608259, 41.96385928846941, -85.63794231608259, 41.96385928846941], "geometry": {"coordinates": [-85.63794231608259, 41.96385928846941], "type": "Point"}, "id": "3248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63775935840464, 41.96386017735882, -85.63775935840464, 41.96386017735882], "geometry": {"coordinates": [-85.63775935840464, 41.96386017735882], "type": "Point"}, "id": "3249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.6375764007267, 41.9638610662482, -85.6375764007267, 41.9638610662482], "geometry": {"coordinates": [-85.6375764007267, 41.9638610662482], "type": "Point"}, "id": "3250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63739344304875, 41.963861955137574, -85.63739344304875, 41.963861955137574], "geometry": {"coordinates": [-85.63739344304875, 41.963861955137574], "type": "Point"}, "id": "3251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63721048537082, 41.96386284402693, -85.63721048537082, 41.96386284402693], "geometry": {"coordinates": [-85.63721048537082, 41.96386284402693], "type": "Point"}, "id": "3252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63702752769287, 41.96386373291627, -85.63702752769287, 41.96386373291627], "geometry": {"coordinates": [-85.63702752769287, 41.96386373291627], "type": "Point"}, "id": "3253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63684457001493, 41.963864621805605, -85.63684457001493, 41.963864621805605], "geometry": {"coordinates": [-85.63684457001493, 41.963864621805605], "type": "Point"}, "id": "3254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63666161233698, 41.96386551069492, -85.63666161233698, 41.96386551069492], "geometry": {"coordinates": [-85.63666161233698, 41.96386551069492], "type": "Point"}, "id": "3255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63647865418717, 41.9638663, -85.63647865418717, 41.9638663], "geometry": {"coordinates": [-85.63647865418717, 41.9638663], "type": "Point"}, "id": "3256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63629569260378, 41.9638663, -85.63629569260378, 41.9638663], "geometry": {"coordinates": [-85.63629569260378, 41.9638663], "type": "Point"}, "id": "3257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63611273102065, 41.96386629879407, -85.63611273102065, 41.96386629879407], "geometry": {"coordinates": [-85.63611273102065, 41.96386629879407], "type": "Point"}, "id": "3258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63592976944628, 41.96386625610921, -85.63592976944628, 41.96386625610921], "geometry": {"coordinates": [-85.63592976944628, 41.96386625610921], "type": "Point"}, "id": "3259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63574680787188, 41.963866213424346, -85.63574680787188, 41.963866213424346], "geometry": {"coordinates": [-85.63574680787188, 41.963866213424346], "type": "Point"}, "id": "3260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63556384629752, 41.96386617073948, -85.63556384629752, 41.96386617073948], "geometry": {"coordinates": [-85.63556384629752, 41.96386617073948], "type": "Point"}, "id": "3261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63538088472312, 41.963866128054605, -85.63538088472312, 41.963866128054605], "geometry": {"coordinates": [-85.63538088472312, 41.963866128054605], "type": "Point"}, "id": "3262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63519792314875, 41.963866085369744, -85.63519792314875, 41.963866085369744], "geometry": {"coordinates": [-85.63519792314875, 41.963866085369744], "type": "Point"}, "id": "3263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.63501496157437, 41.96386604268487, -85.63501496157437, 41.96386604268487], "geometry": {"coordinates": [-85.63501496157437, 41.96386604268487], "type": "Point"}, "id": "3264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965733}, "type": "Feature"}, {"bbox": [-85.64431939999999, 41.93994440000001, -85.64431939999999, 41.93994440000001], "geometry": {"coordinates": [-85.64431939999999, 41.93994440000001], "type": "Point"}, "id": "3265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64437414246188, 41.94007740081265, -85.64437414246188, 41.94007740081265], "geometry": {"coordinates": [-85.64437414246188, 41.94007740081265], "type": "Point"}, "id": "3266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64455896550132, 41.94009193548425, -85.64455896550132, 41.94009193548425], "geometry": {"coordinates": [-85.64455896550132, 41.94009193548425], "type": "Point"}, "id": "3267", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64475369925916, 41.9400914010759, -85.64475369925916, 41.9400914010759], "geometry": {"coordinates": [-85.64475369925916, 41.9400914010759], "type": "Point"}, "id": "3268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64494843301698, 41.94009086666754, -85.64494843301698, 41.94009086666754], "geometry": {"coordinates": [-85.64494843301698, 41.94009086666754], "type": "Point"}, "id": "3269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64514316677482, 41.940090332259174, -85.64514316677482, 41.940090332259174], "geometry": {"coordinates": [-85.64514316677482, 41.940090332259174], "type": "Point"}, "id": "3270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.64530668982098, 41.940032970577555, -85.64530668982098, 41.940032970577555], "geometry": {"coordinates": [-85.64530668982098, 41.940032970577555], "type": "Point"}, "id": "3271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968032}, "type": "Feature"}, {"bbox": [-85.6393662, 41.940078, -85.6393662, 41.940078], "geometry": {"coordinates": [-85.6393662, 41.940078], "type": "Point"}, "id": "3272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63937017833402, 41.94021868757875, -85.63937017833402, 41.94021868757875], "geometry": {"coordinates": [-85.63937017833402, 41.94021868757875], "type": "Point"}, "id": "3273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63937415666804, 41.94035937484711, -85.63937415666804, 41.94035937484711], "geometry": {"coordinates": [-85.63937415666804, 41.94035937484711], "type": "Point"}, "id": "3274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63937813500208, 41.94050006180507, -85.63937813500208, 41.94050006180507], "geometry": {"coordinates": [-85.63937813500208, 41.94050006180507], "type": "Point"}, "id": "3275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63938211333611, 41.94064074845264, -85.63938211333611, 41.94064074845264], "geometry": {"coordinates": [-85.63938211333611, 41.94064074845264], "type": "Point"}, "id": "3276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63938609167012, 41.94078143478981, -85.63938609167012, 41.94078143478981], "geometry": {"coordinates": [-85.63938609167012, 41.94078143478981], "type": "Point"}, "id": "3277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63939007000415, 41.94092212081658, -85.63939007000415, 41.94092212081658], "geometry": {"coordinates": [-85.63939007000415, 41.94092212081658], "type": "Point"}, "id": "3278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63939404833819, 41.94106280653297, -85.63939404833819, 41.94106280653297], "geometry": {"coordinates": [-85.63939404833819, 41.94106280653297], "type": "Point"}, "id": "3279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.6393980266722, 41.94120349193896, -85.6393980266722, 41.94120349193896], "geometry": {"coordinates": [-85.6393980266722, 41.94120349193896], "type": "Point"}, "id": "3280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63940200738809, 41.9413441769884, -85.63940200738809, 41.9413441769884], "geometry": {"coordinates": [-85.63940200738809, 41.9413441769884], "type": "Point"}, "id": "3281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.6394078785289, 41.94148482510924, -85.6394078785289, 41.94148482510924], "geometry": {"coordinates": [-85.6394078785289, 41.94148482510924], "type": "Point"}, "id": "3282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63941374966973, 41.94162547291984, -85.63941374966973, 41.94162547291984], "geometry": {"coordinates": [-85.63941374966973, 41.94162547291984], "type": "Point"}, "id": "3283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63941962081053, 41.941766120420205, -85.63941962081053, 41.941766120420205], "geometry": {"coordinates": [-85.63941962081053, 41.941766120420205], "type": "Point"}, "id": "3284", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63942549195134, 41.941906767610334, -85.63942549195134, 41.941906767610334], "geometry": {"coordinates": [-85.63942549195134, 41.941906767610334], "type": "Point"}, "id": "3285", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63943136309214, 41.94204741449023, -85.63943136309214, 41.94204741449023], "geometry": {"coordinates": [-85.63943136309214, 41.94204741449023], "type": "Point"}, "id": "3286", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63943723423296, 41.94218806105989, -85.63943723423296, 41.94218806105989], "geometry": {"coordinates": [-85.63943723423296, 41.94218806105989], "type": "Point"}, "id": "3287", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63944310537376, 41.94232870731931, -85.63944310537376, 41.94232870731931], "geometry": {"coordinates": [-85.63944310537376, 41.94232870731931], "type": "Point"}, "id": "3288", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.63944897651457, 41.94246935326851, -85.63944897651457, 41.94246935326851], "geometry": {"coordinates": [-85.63944897651457, 41.94246935326851], "type": "Point"}, "id": "3289", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966879}, "type": "Feature"}, {"bbox": [-85.637424, 41.938692, -85.637424, 41.938692], "geometry": {"coordinates": [-85.637424, 41.938692], "type": "Point"}, "id": "3290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63723953333333, 41.93869321111121, -85.63723953333333, 41.93869321111121], "geometry": {"coordinates": [-85.63723953333333, 41.93869321111121], "type": "Point"}, "id": "3291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63705506666666, 41.9386944222224, -85.63705506666666, 41.9386944222224], "geometry": {"coordinates": [-85.63705506666666, 41.9386944222224], "type": "Point"}, "id": "3292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63687060000001, 41.938695633333545, -85.63687060000001, 41.938695633333545], "geometry": {"coordinates": [-85.63687060000001, 41.938695633333545], "type": "Point"}, "id": "3293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63668613333333, 41.93869684444468, -85.63668613333333, 41.93869684444468], "geometry": {"coordinates": [-85.63668613333333, 41.93869684444468], "type": "Point"}, "id": "3294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63650166666667, 41.9386980555558, -85.63650166666667, 41.9386980555558], "geometry": {"coordinates": [-85.63650166666667, 41.9386980555558], "type": "Point"}, "id": "3295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63631720000001, 41.93869926666689, -85.63631720000001, 41.93869926666689], "geometry": {"coordinates": [-85.63631720000001, 41.93869926666689], "type": "Point"}, "id": "3296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63613273333333, 41.93870047777794, -85.63613273333333, 41.93870047777794], "geometry": {"coordinates": [-85.63613273333333, 41.93870047777794], "type": "Point"}, "id": "3297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.63594826666669, 41.93870168888899, -85.63594826666669, 41.93870168888899], "geometry": {"coordinates": [-85.63594826666669, 41.93870168888899], "type": "Point"}, "id": "3298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966229}, "type": "Feature"}, {"bbox": [-85.636163, 41.94738199999999, -85.636163, 41.94738199999999], "geometry": {"coordinates": [-85.636163, 41.94738199999999], "type": "Point"}, "id": "3299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.636258, 41.94750380104719, -85.636258, 41.94750380104719], "geometry": {"coordinates": [-85.636258, 41.94750380104719], "type": "Point"}, "id": "3300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.636353, 41.947625601861674, -85.636353, 41.947625601861674], "geometry": {"coordinates": [-85.636353, 41.947625601861674], "type": "Point"}, "id": "3301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63644799999999, 41.947747402443454, -85.63644799999999, 41.947747402443454], "geometry": {"coordinates": [-85.63644799999999, 41.947747402443454], "type": "Point"}, "id": "3302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63654299999999, 41.947869202792525, -85.63654299999999, 41.947869202792525], "geometry": {"coordinates": [-85.63654299999999, 41.947869202792525], "type": "Point"}, "id": "3303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63663799999999, 41.947991002908886, -85.63663799999999, 41.947991002908886], "geometry": {"coordinates": [-85.63663799999999, 41.947991002908886], "type": "Point"}, "id": "3304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63673299999999, 41.94811280279252, -85.63673299999999, 41.94811280279252], "geometry": {"coordinates": [-85.63673299999999, 41.94811280279252], "type": "Point"}, "id": "3305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.636828, 41.94823460244346, -85.636828, 41.94823460244346], "geometry": {"coordinates": [-85.636828, 41.94823460244346], "type": "Point"}, "id": "3306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63692299999998, 41.94835640186169, -85.63692299999998, 41.94835640186169], "geometry": {"coordinates": [-85.63692299999998, 41.94835640186169], "type": "Point"}, "id": "3307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.63701799999998, 41.948478201047195, -85.63701799999998, 41.948478201047195], "geometry": {"coordinates": [-85.63701799999998, 41.948478201047195], "type": "Point"}, "id": "3308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967764}, "type": "Feature"}, {"bbox": [-85.634686, 41.95241499999999, -85.634686, 41.95241499999999], "geometry": {"coordinates": [-85.634686, 41.95241499999999], "type": "Point"}, "id": "3309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.6348677965774, 41.952413002235645, -85.6348677965774, 41.952413002235645], "geometry": {"coordinates": [-85.6348677965774, 41.952413002235645], "type": "Point"}, "id": "3310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63504959315482, 41.95241100447123, -85.63504959315482, 41.95241100447123], "geometry": {"coordinates": [-85.63504959315482, 41.95241100447123], "type": "Point"}, "id": "3311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63523138973223, 41.952409006706745, -85.63523138973223, 41.952409006706745], "geometry": {"coordinates": [-85.63523138973223, 41.952409006706745], "type": "Point"}, "id": "3312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63541318630962, 41.95240700894222, -85.63541318630962, 41.95240700894222], "geometry": {"coordinates": [-85.63541318630962, 41.95240700894222], "type": "Point"}, "id": "3313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63559498288704, 41.95240501117761, -85.63559498288704, 41.95240501117761], "geometry": {"coordinates": [-85.63559498288704, 41.95240501117761], "type": "Point"}, "id": "3314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63577677946444, 41.95240301341294, -85.63577677946444, 41.95240301341294], "geometry": {"coordinates": [-85.63577677946444, 41.95240301341294], "type": "Point"}, "id": "3315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63595857604183, 41.95240101564822, -85.63595857604183, 41.95240101564822], "geometry": {"coordinates": [-85.63595857604183, 41.95240101564822], "type": "Point"}, "id": "3316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63614037261924, 41.95239901788342, -85.63614037261924, 41.95239901788342], "geometry": {"coordinates": [-85.63614037261924, 41.95239901788342], "type": "Point"}, "id": "3317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63632217887437, 41.95239807437771, -85.63632217887437, 41.95239807437771], "geometry": {"coordinates": [-85.63632217887437, 41.95239807437771], "type": "Point"}, "id": "3318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63650399518252, 41.952398226017664, -85.63650399518252, 41.952398226017664], "geometry": {"coordinates": [-85.63650399518252, 41.952398226017664], "type": "Point"}, "id": "3319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63668581149071, 41.95239837765763, -85.63668581149071, 41.95239837765763], "geometry": {"coordinates": [-85.63668581149071, 41.95239837765763], "type": "Point"}, "id": "3320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63686762779888, 41.952398529297575, -85.63686762779888, 41.952398529297575], "geometry": {"coordinates": [-85.63686762779888, 41.952398529297575], "type": "Point"}, "id": "3321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63704944410703, 41.95239868093754, -85.63704944410703, 41.95239868093754], "geometry": {"coordinates": [-85.63704944410703, 41.95239868093754], "type": "Point"}, "id": "3322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63723126041522, 41.952398832577494, -85.63723126041522, 41.952398832577494], "geometry": {"coordinates": [-85.63723126041522, 41.952398832577494], "type": "Point"}, "id": "3323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63741307672336, 41.95239898421745, -85.63741307672336, 41.95239898421745], "geometry": {"coordinates": [-85.63741307672336, 41.95239898421745], "type": "Point"}, "id": "3324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63759487666019, 41.952397277138815, -85.63759487666019, 41.952397277138815], "geometry": {"coordinates": [-85.63759487666019, 41.952397277138815], "type": "Point"}, "id": "3325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63777667469513, 41.95239535413287, -85.63777667469513, 41.95239535413287], "geometry": {"coordinates": [-85.63777667469513, 41.95239535413287], "type": "Point"}, "id": "3326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63795847273008, 41.95239343112686, -85.63795847273008, 41.95239343112686], "geometry": {"coordinates": [-85.63795847273008, 41.95239343112686], "type": "Point"}, "id": "3327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63814027076502, 41.9523915081208, -85.63814027076502, 41.9523915081208], "geometry": {"coordinates": [-85.63814027076502, 41.9523915081208], "type": "Point"}, "id": "3328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63832206879997, 41.952389585114666, -85.63832206879997, 41.952389585114666], "geometry": {"coordinates": [-85.63832206879997, 41.952389585114666], "type": "Point"}, "id": "3329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63850386683491, 41.952387662108485, -85.63850386683491, 41.952387662108485], "geometry": {"coordinates": [-85.63850386683491, 41.952387662108485], "type": "Point"}, "id": "3330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63868566735123, 41.95238598094205, -85.63868566735123, 41.95238598094205], "geometry": {"coordinates": [-85.63868566735123, 41.95238598094205], "type": "Point"}, "id": "3331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.63886748367561, 41.952385840471024, -85.63886748367561, 41.952385840471024], "geometry": {"coordinates": [-85.63886748367561, 41.952385840471024], "type": "Point"}, "id": "3332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966975}, "type": "Feature"}, {"bbox": [-85.64801849999999, 41.94477869999999, -85.64801849999999, 41.94477869999999], "geometry": {"coordinates": [-85.64801849999999, 41.94477869999999], "type": "Point"}, "id": "3333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64784031606945, 41.94480004172205, -85.64784031606945, 41.94480004172205], "geometry": {"coordinates": [-85.64784031606945, 41.94480004172205], "type": "Point"}, "id": "3334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.6476621321389, 41.94482138343697, -85.6476621321389, 41.94482138343697], "geometry": {"coordinates": [-85.6476621321389, 41.94482138343697], "type": "Point"}, "id": "3335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64748725851494, 41.944852445116105, -85.64748725851494, 41.944852445116105], "geometry": {"coordinates": [-85.64748725851494, 41.944852445116105], "type": "Point"}, "id": "3336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64731690244655, 41.944896771558014, -85.64731690244655, 41.944896771558014], "geometry": {"coordinates": [-85.64731690244655, 41.944896771558014], "type": "Point"}, "id": "3337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64714654637817, 41.944941097969114, -85.64714654637817, 41.944941097969114], "geometry": {"coordinates": [-85.64714654637817, 41.944941097969114], "type": "Point"}, "id": "3338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64697941674578, 41.94498980307762, -85.64697941674578, 41.94498980307762], "geometry": {"coordinates": [-85.64697941674578, 41.94498980307762], "type": "Point"}, "id": "3339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64683756144383, 41.94507279407186, -85.64683756144383, 41.94507279407186], "geometry": {"coordinates": [-85.64683756144383, 41.94507279407186], "type": "Point"}, "id": "3340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64669571511482, 41.94515579344508, -85.64669571511482, 41.94515579344508], "geometry": {"coordinates": [-85.64669571511482, 41.94515579344508], "type": "Point"}, "id": "3341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64659135148275, 41.94526351589609, -85.64659135148275, 41.94526351589609], "geometry": {"coordinates": [-85.64659135148275, 41.94526351589609], "type": "Point"}, "id": "3342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64649752036792, 41.945378185287296, -85.64649752036792, 41.945378185287296], "geometry": {"coordinates": [-85.64649752036792, 41.945378185287296], "type": "Point"}, "id": "3343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64641470978515, 41.9454963532465, -85.64641470978515, 41.9454963532465], "geometry": {"coordinates": [-85.64641470978515, 41.9454963532465], "type": "Point"}, "id": "3344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64636828964689, 41.94562607412202, -85.64636828964689, 41.94562607412202], "geometry": {"coordinates": [-85.64636828964689, 41.94562607412202], "type": "Point"}, "id": "3345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.64632392377342, 41.94575598178833, -85.64632392377342, 41.94575598178833], "geometry": {"coordinates": [-85.64632392377342, 41.94575598178833], "type": "Point"}, "id": "3346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968027}, "type": "Feature"}, {"bbox": [-85.6321102, 41.94325419999999, -85.6321102, 41.94325419999999], "geometry": {"coordinates": [-85.6321102, 41.94325419999999], "type": "Point"}, "id": "3347", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 847427775}, "type": "Feature"}, {"bbox": [-85.65174869999998, 41.93254369999999, -85.65174869999998, 41.93254369999999], "geometry": {"coordinates": [-85.65174869999998, 41.93254369999999], "type": "Point"}, "id": "3348", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965840}, "type": "Feature"}, {"bbox": [-85.634686, 41.951158, -85.634686, 41.951158], "geometry": {"coordinates": [-85.634686, 41.951158], "type": "Point"}, "id": "3349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63487153352087, 41.95115649854456, -85.63487153352087, 41.95115649854456], "geometry": {"coordinates": [-85.63487153352087, 41.95115649854456], "type": "Point"}, "id": "3350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63505706704169, 41.951154997089105, -85.63505706704169, 41.951154997089105], "geometry": {"coordinates": [-85.63505706704169, 41.951154997089105], "type": "Point"}, "id": "3351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63524260056255, 41.95115349563359, -85.63524260056255, 41.95115349563359], "geometry": {"coordinates": [-85.63524260056255, 41.95115349563359], "type": "Point"}, "id": "3352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63542813408338, 41.951151994178055, -85.63542813408338, 41.951151994178055], "geometry": {"coordinates": [-85.63542813408338, 41.951151994178055], "type": "Point"}, "id": "3353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63561366760423, 41.951150492722476, -85.63561366760423, 41.951150492722476], "geometry": {"coordinates": [-85.63561366760423, 41.951150492722476], "type": "Point"}, "id": "3354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63579920112507, 41.95114899126687, -85.63579920112507, 41.95114899126687], "geometry": {"coordinates": [-85.63579920112507, 41.95114899126687], "type": "Point"}, "id": "3355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63598473464592, 41.95114748981123, -85.63598473464592, 41.95114748981123], "geometry": {"coordinates": [-85.63598473464592, 41.95114748981123], "type": "Point"}, "id": "3356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63617026816677, 41.95114598835554, -85.63617026816677, 41.95114598835554], "geometry": {"coordinates": [-85.63617026816677, 41.95114598835554], "type": "Point"}, "id": "3357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.6363558016157, 41.95114448199508, -85.6363558016157, 41.95114448199508], "geometry": {"coordinates": [-85.6363558016157, 41.95114448199508], "type": "Point"}, "id": "3358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63654133504755, 41.951142974468716, -85.63654133504755, 41.951142974468716], "geometry": {"coordinates": [-85.63654133504755, 41.951142974468716], "type": "Point"}, "id": "3359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.6367268684794, 41.95114146694231, -85.6367268684794, 41.95114146694231], "geometry": {"coordinates": [-85.6367268684794, 41.95114146694231], "type": "Point"}, "id": "3360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63691240191123, 41.95113995941587, -85.63691240191123, 41.95113995941587], "geometry": {"coordinates": [-85.63691240191123, 41.95113995941587], "type": "Point"}, "id": "3361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63709793534308, 41.951138451889406, -85.63709793534308, 41.951138451889406], "geometry": {"coordinates": [-85.63709793534308, 41.951138451889406], "type": "Point"}, "id": "3362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63728346877491, 41.951136944362894, -85.63728346877491, 41.951136944362894], "geometry": {"coordinates": [-85.63728346877491, 41.951136944362894], "type": "Point"}, "id": "3363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63746899586228, 41.95113511605853, -85.63746899586228, 41.95113511605853], "geometry": {"coordinates": [-85.63746899586228, 41.95113511605853], "type": "Point"}, "id": "3364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63765450864379, 41.95113256444939, -85.63765450864379, 41.95113256444939], "geometry": {"coordinates": [-85.63765450864379, 41.95113256444939], "type": "Point"}, "id": "3365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.6378400214253, 41.95113001284014, -85.6378400214253, 41.95113001284014], "geometry": {"coordinates": [-85.6378400214253, 41.95113001284014], "type": "Point"}, "id": "3366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63802553420682, 41.951127461230776, -85.63802553420682, 41.951127461230776], "geometry": {"coordinates": [-85.63802553420682, 41.951127461230776], "type": "Point"}, "id": "3367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63821104698833, 41.95112490962132, -85.63821104698833, 41.95112490962132], "geometry": {"coordinates": [-85.63821104698833, 41.95112490962132], "type": "Point"}, "id": "3368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.63839655976984, 41.95112235801176, -85.63839655976984, 41.95112235801176], "geometry": {"coordinates": [-85.63839655976984, 41.95112235801176], "type": "Point"}, "id": "3369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966118}, "type": "Feature"}, {"bbox": [-85.627629, 41.946498000000005, -85.627629, 41.946498000000005], "geometry": {"coordinates": [-85.627629, 41.946498000000005], "type": "Point"}, "id": "3370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62751671428572, 41.946617286383876, -85.62751671428572, 41.946617286383876], "geometry": {"coordinates": [-85.62751671428572, 41.946617286383876], "type": "Point"}, "id": "3371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62740442857142, 41.946736572544545, -85.62740442857142, 41.946736572544545], "geometry": {"coordinates": [-85.62740442857142, 41.946736572544545], "type": "Point"}, "id": "3372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62729214285714, 41.946855858482024, -85.62729214285714, 41.946855858482024], "geometry": {"coordinates": [-85.62729214285714, 41.946855858482024], "type": "Point"}, "id": "3373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62717985714285, 41.94697514419631, -85.62717985714285, 41.94697514419631], "geometry": {"coordinates": [-85.62717985714285, 41.94697514419631], "type": "Point"}, "id": "3374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62706757142857, 41.9470944296874, -85.62706757142857, 41.9470944296874], "geometry": {"coordinates": [-85.62706757142857, 41.9470944296874], "type": "Point"}, "id": "3375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.62695528571427, 41.947213714955296, -85.62695528571427, 41.947213714955296], "geometry": {"coordinates": [-85.62695528571427, 41.947213714955296], "type": "Point"}, "id": "3376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966061}, "type": "Feature"}, {"bbox": [-85.6370124, 41.9413618, -85.6370124, 41.9413618], "geometry": {"coordinates": [-85.6370124, 41.9413618], "type": "Point"}, "id": "3377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63719751254001, 41.941360817970654, -85.63719751254001, 41.941360817970654], "geometry": {"coordinates": [-85.63719751254001, 41.941360817970654], "type": "Point"}, "id": "3378", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63738262508004, 41.941359835941284, -85.63738262508004, 41.941359835941284], "geometry": {"coordinates": [-85.63738262508004, 41.941359835941284], "type": "Point"}, "id": "3379", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63756773762007, 41.941358853911915, -85.63756773762007, 41.941358853911915], "geometry": {"coordinates": [-85.63756773762007, 41.941358853911915], "type": "Point"}, "id": "3380", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63775285016008, 41.94135787188251, -85.63775285016008, 41.94135787188251], "geometry": {"coordinates": [-85.63775285016008, 41.94135787188251], "type": "Point"}, "id": "3381", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63793796270011, 41.9413568898531, -85.63793796270011, 41.9413568898531], "geometry": {"coordinates": [-85.63793796270011, 41.9413568898531], "type": "Point"}, "id": "3382", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63812307524014, 41.94135590782368, -85.63812307524014, 41.94135590782368], "geometry": {"coordinates": [-85.63812307524014, 41.94135590782368], "type": "Point"}, "id": "3383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63830818255545, 41.941354538809115, -85.63830818255545, 41.941354538809115], "geometry": {"coordinates": [-85.63830818255545, 41.941354538809115], "type": "Point"}, "id": "3384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63849328427565, 41.9413527553748, -85.63849328427565, 41.9413527553748], "geometry": {"coordinates": [-85.63849328427565, 41.9413527553748], "type": "Point"}, "id": "3385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63867838599585, 41.941350971940444, -85.63867838599585, 41.941350971940444], "geometry": {"coordinates": [-85.63867838599585, 41.941350971940444], "type": "Point"}, "id": "3386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63886348771602, 41.941349188506024, -85.63886348771602, 41.941349188506024], "geometry": {"coordinates": [-85.63886348771602, 41.941349188506024], "type": "Point"}, "id": "3387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63904858943623, 41.94134740507156, -85.63904858943623, 41.94134740507156], "geometry": {"coordinates": [-85.63904858943623, 41.94134740507156], "type": "Point"}, "id": "3388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63923369115642, 41.941345621637055, -85.63923369115642, 41.941345621637055], "geometry": {"coordinates": [-85.63923369115642, 41.941345621637055], "type": "Point"}, "id": "3389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63941879327218, 41.94134386278453, -85.63941879327218, 41.94134386278453], "geometry": {"coordinates": [-85.63941879327218, 41.94134386278453], "type": "Point"}, "id": "3390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63960389935237, 41.94134235030877, -85.63960389935237, 41.94134235030877], "geometry": {"coordinates": [-85.63960389935237, 41.94134235030877], "type": "Point"}, "id": "3391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63978900543258, 41.941340837832975, -85.63978900543258, 41.941340837832975], "geometry": {"coordinates": [-85.63978900543258, 41.941340837832975], "type": "Point"}, "id": "3392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.63997411151279, 41.94133932535714, -85.63997411151279, 41.94133932535714], "geometry": {"coordinates": [-85.63997411151279, 41.94133932535714], "type": "Point"}, "id": "3393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64015921759298, 41.94133781288127, -85.64015921759298, 41.94133781288127], "geometry": {"coordinates": [-85.64015921759298, 41.94133781288127], "type": "Point"}, "id": "3394", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64034432367318, 41.94133630040536, -85.64034432367318, 41.94133630040536], "geometry": {"coordinates": [-85.64034432367318, 41.94133630040536], "type": "Point"}, "id": "3395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64052942975336, 41.94133478792942, -85.64052942975336, 41.94133478792942], "geometry": {"coordinates": [-85.64052942975336, 41.94133478792942], "type": "Point"}, "id": "3396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64071452473819, 41.941332747415416, -85.64071452473819, 41.941332747415416], "geometry": {"coordinates": [-85.64071452473819, 41.941332747415416], "type": "Point"}, "id": "3397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64089960394848, 41.941329956179814, -85.64089960394848, 41.941329956179814], "geometry": {"coordinates": [-85.64089960394848, 41.941329956179814], "type": "Point"}, "id": "3398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64108468315878, 41.9413271649441, -85.64108468315878, 41.9413271649441], "geometry": {"coordinates": [-85.64108468315878, 41.9413271649441], "type": "Point"}, "id": "3399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64126976236909, 41.94132437370826, -85.64126976236909, 41.94132437370826], "geometry": {"coordinates": [-85.64126976236909, 41.94132437370826], "type": "Point"}, "id": "3400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.64145484157939, 41.9413215824723, -85.64145484157939, 41.9413215824723], "geometry": {"coordinates": [-85.64145484157939, 41.9413215824723], "type": "Point"}, "id": "3401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.6416399207897, 41.94131879123621, -85.6416399207897, 41.94131879123621], "geometry": {"coordinates": [-85.6416399207897, 41.94131879123621], "type": "Point"}, "id": "3402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966102}, "type": "Feature"}, {"bbox": [-85.650247, 41.95096, -85.650247, 41.95096], "geometry": {"coordinates": [-85.650247, 41.95096], "type": "Point"}, "id": "3403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.65006296579878, 41.95095373965731, -85.65006296579878, 41.95095373965731], "geometry": {"coordinates": [-85.65006296579878, 41.95095373965731], "type": "Point"}, "id": "3404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64988061733725, 41.95096884204249, -85.64988061733725, 41.95096884204249], "geometry": {"coordinates": [-85.64988061733725, 41.95096884204249], "type": "Point"}, "id": "3405", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64971743410756, 41.95102775194085, -85.64971743410756, 41.95102775194085], "geometry": {"coordinates": [-85.64971743410756, 41.95102775194085], "type": "Point"}, "id": "3406", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64961011428001, 41.9511382816522, -85.64961011428001, 41.9511382816522], "geometry": {"coordinates": [-85.64961011428001, 41.9511382816522], "type": "Point"}, "id": "3407", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.6495209421971, 41.951258010503466, -85.6495209421971, 41.951258010503466], "geometry": {"coordinates": [-85.6495209421971, 41.951258010503466], "type": "Point"}, "id": "3408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64945028103531, 41.951384543273065, -85.64945028103531, 41.951384543273065], "geometry": {"coordinates": [-85.64945028103531, 41.951384543273065], "type": "Point"}, "id": "3409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64937492981925, 41.95150956543377, -85.64937492981925, 41.95150956543377], "geometry": {"coordinates": [-85.64937492981925, 41.95150956543377], "type": "Point"}, "id": "3410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64929919976724, 41.95163446535138, -85.64929919976724, 41.95163446535138], "geometry": {"coordinates": [-85.64929919976724, 41.95163446535138], "type": "Point"}, "id": "3411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64922346971524, 41.951759365024266, -85.64922346971524, 41.951759365024266], "geometry": {"coordinates": [-85.64922346971524, 41.951759365024266], "type": "Point"}, "id": "3412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64914773966323, 41.9518842644524, -85.64914773966323, 41.9518842644524], "geometry": {"coordinates": [-85.64914773966323, 41.9518842644524], "type": "Point"}, "id": "3413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64909358358818, 41.95201341468772, -85.64909358358818, 41.95201341468772], "geometry": {"coordinates": [-85.64909358358818, 41.95201341468772], "type": "Point"}, "id": "3414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64909661485207, 41.95214975355605, -85.64909661485207, 41.95214975355605], "geometry": {"coordinates": [-85.64909661485207, 41.95214975355605], "type": "Point"}, "id": "3415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64916999742773, 41.95227400853037, -85.64916999742773, 41.95227400853037], "geometry": {"coordinates": [-85.64916999742773, 41.95227400853037], "type": "Point"}, "id": "3416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64928121351119, 41.95238301431317, -85.64928121351119, 41.95238301431317], "geometry": {"coordinates": [-85.64928121351119, 41.95238301431317], "type": "Point"}, "id": "3417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.6494028596585, 41.95248590773337, -85.6494028596585, 41.95248590773337], "geometry": {"coordinates": [-85.6494028596585, 41.95248590773337], "type": "Point"}, "id": "3418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64952450580577, 41.95258880098748, -85.64952450580577, 41.95258880098748], "geometry": {"coordinates": [-85.64952450580577, 41.95258880098748], "type": "Point"}, "id": "3419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64964615195306, 41.95269169407548, -85.64964615195306, 41.95269169407548], "geometry": {"coordinates": [-85.64964615195306, 41.95269169407548], "type": "Point"}, "id": "3420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64976779810036, 41.95279458699739, -85.64976779810036, 41.95279458699739], "geometry": {"coordinates": [-85.64976779810036, 41.95279458699739], "type": "Point"}, "id": "3421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.64988944424763, 41.952897479753204, -85.64988944424763, 41.952897479753204], "geometry": {"coordinates": [-85.64988944424763, 41.952897479753204], "type": "Point"}, "id": "3422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.65001515140794, 41.95299743391781, -85.65001515140794, 41.95299743391781], "geometry": {"coordinates": [-85.65001515140794, 41.95299743391781], "type": "Point"}, "id": "3423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.65014187575062, 41.95309566906665, -85.65014187575062, 41.95309566906665], "geometry": {"coordinates": [-85.65014187575062, 41.95309566906665], "type": "Point"}, "id": "3424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966996}, "type": "Feature"}, {"bbox": [-85.62566999999999, 41.929295, -85.62566999999999, 41.929295], "geometry": {"coordinates": [-85.62566999999999, 41.929295], "type": "Point"}, "id": "3425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570390996443, 41.92942658842375, -85.62570390996443, 41.92942658842375], "geometry": {"coordinates": [-85.62570390996443, 41.92942658842375], "type": "Point"}, "id": "3426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571302245347, 41.929560745663466, -85.62571302245347, 41.929560745663466], "geometry": {"coordinates": [-85.62571302245347, 41.929560745663466], "type": "Point"}, "id": "3427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257163889911, 41.929695153131625, -85.6257163889911, 41.929695153131625], "geometry": {"coordinates": [-85.6257163889911, 41.929695153131625], "type": "Point"}, "id": "3428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257197555287, 41.92982956031658, -85.6257197555287, 41.92982956031658], "geometry": {"coordinates": [-85.6257197555287, 41.92982956031658], "type": "Point"}, "id": "3429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257231220663, 41.92996396721834, -85.6257231220663, 41.92996396721834], "geometry": {"coordinates": [-85.6257231220663, 41.92996396721834], "type": "Point"}, "id": "3430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257264886039, 41.93009837383691, -85.6257264886039, 41.93009837383691], "geometry": {"coordinates": [-85.6257264886039, 41.93009837383691], "type": "Point"}, "id": "3431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62572869778238, 41.93023278198021, -85.62572869778238, 41.93023278198021], "geometry": {"coordinates": [-85.62572869778238, 41.93023278198021], "type": "Point"}, "id": "3432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62572619587489, 41.93036719847921, -85.62572619587489, 41.93036719847921], "geometry": {"coordinates": [-85.62572619587489, 41.93036719847921], "type": "Point"}, "id": "3433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257236939674, 41.93050161469495, -85.6257236939674, 41.93050161469495], "geometry": {"coordinates": [-85.6257236939674, 41.93050161469495], "type": "Point"}, "id": "3434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62572119205991, 41.93063603062747, -85.62572119205991, 41.93063603062747], "geometry": {"coordinates": [-85.62572119205991, 41.93063603062747], "type": "Point"}, "id": "3435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571869015242, 41.93077044627673, -85.62571869015242, 41.93077044627673], "geometry": {"coordinates": [-85.62571869015242, 41.93077044627673], "type": "Point"}, "id": "3436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571618824492, 41.93090486164275, -85.62571618824492, 41.93090486164275], "geometry": {"coordinates": [-85.62571618824492, 41.93090486164275], "type": "Point"}, "id": "3437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571368633743, 41.93103927672554, -85.62571368633743, 41.93103927672554], "geometry": {"coordinates": [-85.62571368633743, 41.93103927672554], "type": "Point"}, "id": "3438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62571118442993, 41.93117369152508, -85.62571118442993, 41.93117369152508], "geometry": {"coordinates": [-85.62571118442993, 41.93117369152508], "type": "Point"}, "id": "3439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6257089865272, 41.9313081089677, -85.6257089865272, 41.9313081089677], "geometry": {"coordinates": [-85.6257089865272, 41.9313081089677], "type": "Point"}, "id": "3440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570681281782, 41.93144252635994, -85.62570681281782, 41.93144252635994], "geometry": {"coordinates": [-85.62570681281782, 41.93144252635994], "type": "Point"}, "id": "3441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570463910845, 41.931576943468926, -85.62570463910845, 41.931576943468926], "geometry": {"coordinates": [-85.62570463910845, 41.931576943468926], "type": "Point"}, "id": "3442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570246539906, 41.93171136029466, -85.62570246539906, 41.93171136029466], "geometry": {"coordinates": [-85.62570246539906, 41.93171136029466], "type": "Point"}, "id": "3443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62570029168968, 41.931845776837136, -85.62570029168968, 41.931845776837136], "geometry": {"coordinates": [-85.62570029168968, 41.931845776837136], "type": "Point"}, "id": "3444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6256981179803, 41.931980193096344, -85.6256981179803, 41.931980193096344], "geometry": {"coordinates": [-85.6256981179803, 41.931980193096344], "type": "Point"}, "id": "3445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569594427093, 41.932114609072315, -85.62569594427093, 41.932114609072315], "geometry": {"coordinates": [-85.62569594427093, 41.932114609072315], "type": "Point"}, "id": "3446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6256949252412, 41.93224903024621, -85.6256949252412, 41.93224903024621], "geometry": {"coordinates": [-85.6256949252412, 41.93224903024621], "type": "Point"}, "id": "3447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6256947930639, 41.93238345534665, -85.6256947930639, 41.93238345534665], "geometry": {"coordinates": [-85.6256947930639, 41.93238345534665], "type": "Point"}, "id": "3448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569466088658, 41.932517880163786, -85.62569466088658, 41.932517880163786], "geometry": {"coordinates": [-85.62569466088658, 41.932517880163786], "type": "Point"}, "id": "3449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569452870926, 41.932652304697626, -85.62569452870926, 41.932652304697626], "geometry": {"coordinates": [-85.62569452870926, 41.932652304697626], "type": "Point"}, "id": "3450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569439653194, 41.93278672894817, -85.62569439653194, 41.93278672894817], "geometry": {"coordinates": [-85.62569439653194, 41.93278672894817], "type": "Point"}, "id": "3451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569426435462, 41.93292115291541, -85.62569426435462, 41.93292115291541], "geometry": {"coordinates": [-85.62569426435462, 41.93292115291541], "type": "Point"}, "id": "3452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.62569413217732, 41.93305557659936, -85.62569413217732, 41.93305557659936], "geometry": {"coordinates": [-85.62569413217732, 41.93305557659936], "type": "Point"}, "id": "3453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967211}, "type": "Feature"}, {"bbox": [-85.6359052, 41.9298799, -85.6359052, 41.9298799], "geometry": {"coordinates": [-85.6359052, 41.9298799], "type": "Point"}, "id": "3454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63596028103674, 41.9300135510169, -85.63596028103674, 41.9300135510169], "geometry": {"coordinates": [-85.63596028103674, 41.9300135510169], "type": "Point"}, "id": "3455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63601536207352, 41.930147201753776, -85.63601536207352, 41.930147201753776], "geometry": {"coordinates": [-85.63601536207352, 41.930147201753776], "type": "Point"}, "id": "3456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63607044311026, 41.93028085221063, -85.63607044311026, 41.93028085221063], "geometry": {"coordinates": [-85.63607044311026, 41.93028085221063], "type": "Point"}, "id": "3457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.636125524147, 41.93041450238746, -85.636125524147, 41.93041450238746], "geometry": {"coordinates": [-85.636125524147, 41.93041450238746], "type": "Point"}, "id": "3458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63618060518375, 41.93054815228427, -85.63618060518375, 41.93054815228427], "geometry": {"coordinates": [-85.63618060518375, 41.93054815228427], "type": "Point"}, "id": "3459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63623568622052, 41.93068180190105, -85.63623568622052, 41.93068180190105], "geometry": {"coordinates": [-85.63623568622052, 41.93068180190105], "type": "Point"}, "id": "3460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63629076725725, 41.93081545123781, -85.63629076725725, 41.93081545123781], "geometry": {"coordinates": [-85.63629076725725, 41.93081545123781], "type": "Point"}, "id": "3461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63636897815948, 41.93094171459924, -85.63636897815948, 41.93094171459924], "geometry": {"coordinates": [-85.63636897815948, 41.93094171459924], "type": "Point"}, "id": "3462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63646125862488, 41.9310634851074, -85.63646125862488, 41.9310634851074], "geometry": {"coordinates": [-85.63646125862488, 41.9310634851074], "type": "Point"}, "id": "3463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63659590712433, 41.931157092312404, -85.63659590712433, 41.931157092312404], "geometry": {"coordinates": [-85.63659590712433, 41.931157092312404], "type": "Point"}, "id": "3464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63674820902823, 41.93123896474297, -85.63674820902823, 41.93123896474297], "geometry": {"coordinates": [-85.63674820902823, 41.93123896474297], "type": "Point"}, "id": "3465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63691985918581, 41.93125204104404, -85.63691985918581, 41.93125204104404], "geometry": {"coordinates": [-85.63691985918581, 41.93125204104404], "type": "Point"}, "id": "3466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63710350612389, 41.93122246070974, -85.63710350612389, 41.93122246070974], "geometry": {"coordinates": [-85.63710350612389, 41.93122246070974], "type": "Point"}, "id": "3467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.63728715306195, 41.931192880361735, -85.63728715306195, 41.931192880361735], "geometry": {"coordinates": [-85.63728715306195, 41.931192880361735], "type": "Point"}, "id": "3468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968035}, "type": "Feature"}, {"bbox": [-85.62848099999998, 41.94561099999999, -85.62848099999998, 41.94561099999999], "geometry": {"coordinates": [-85.62848099999998, 41.94561099999999], "type": "Point"}, "id": "3469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62829995609275, 41.945611252290846, -85.62829995609275, 41.945611252290846], "geometry": {"coordinates": [-85.62829995609275, 41.945611252290846], "type": "Point"}, "id": "3470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62811891218551, 41.94561150458169, -85.62811891218551, 41.94561150458169], "geometry": {"coordinates": [-85.62811891218551, 41.94561150458169], "type": "Point"}, "id": "3471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6279378682783, 41.945611756872545, -85.6279378682783, 41.945611756872545], "geometry": {"coordinates": [-85.6279378682783, 41.945611756872545], "type": "Point"}, "id": "3472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62775682437105, 41.94561200916339, -85.62775682437105, 41.94561200916339], "geometry": {"coordinates": [-85.62775682437105, 41.94561200916339], "type": "Point"}, "id": "3473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62757578046381, 41.94561226145424, -85.62757578046381, 41.94561226145424], "geometry": {"coordinates": [-85.62757578046381, 41.94561226145424], "type": "Point"}, "id": "3474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62739473655658, 41.94561251374508, -85.62739473655658, 41.94561251374508], "geometry": {"coordinates": [-85.62739473655658, 41.94561251374508], "type": "Point"}, "id": "3475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62721369264936, 41.94561276603592, -85.62721369264936, 41.94561276603592], "geometry": {"coordinates": [-85.62721369264936, 41.94561276603592], "type": "Point"}, "id": "3476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62703264874213, 41.945613018326775, -85.62703264874213, 41.945613018326775], "geometry": {"coordinates": [-85.62703264874213, 41.945613018326775], "type": "Point"}, "id": "3477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6268516048349, 41.94561327061761, -85.6268516048349, 41.94561327061761], "geometry": {"coordinates": [-85.6268516048349, 41.94561327061761], "type": "Point"}, "id": "3478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62667056092766, 41.94561352290845, -85.62667056092766, 41.94561352290845], "geometry": {"coordinates": [-85.62667056092766, 41.94561352290845], "type": "Point"}, "id": "3479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62648951702042, 41.9456137751993, -85.62648951702042, 41.9456137751993], "geometry": {"coordinates": [-85.62648951702042, 41.9456137751993], "type": "Point"}, "id": "3480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6263084731132, 41.94561402749014, -85.6263084731132, 41.94561402749014], "geometry": {"coordinates": [-85.6263084731132, 41.94561402749014], "type": "Point"}, "id": "3481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62612742920597, 41.94561427978097, -85.62612742920597, 41.94561427978097], "geometry": {"coordinates": [-85.62612742920597, 41.94561427978097], "type": "Point"}, "id": "3482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62594638529873, 41.945614532071815, -85.62594638529873, 41.945614532071815], "geometry": {"coordinates": [-85.62594638529873, 41.945614532071815], "type": "Point"}, "id": "3483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62576534139151, 41.94561478436265, -85.62576534139151, 41.94561478436265], "geometry": {"coordinates": [-85.62576534139151, 41.94561478436265], "type": "Point"}, "id": "3484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62558429748428, 41.945615036653486, -85.62558429748428, 41.945615036653486], "geometry": {"coordinates": [-85.62558429748428, 41.945615036653486], "type": "Point"}, "id": "3485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62540325357706, 41.94561528894432, -85.62540325357706, 41.94561528894432], "geometry": {"coordinates": [-85.62540325357706, 41.94561528894432], "type": "Point"}, "id": "3486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6252222096698, 41.94561554123514, -85.6252222096698, 41.94561554123514], "geometry": {"coordinates": [-85.6252222096698, 41.94561554123514], "type": "Point"}, "id": "3487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62504116576258, 41.94561579352599, -85.62504116576258, 41.94561579352599], "geometry": {"coordinates": [-85.62504116576258, 41.94561579352599], "type": "Point"}, "id": "3488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62486012342234, 41.94561624310521, -85.62486012342234, 41.94561624310521], "geometry": {"coordinates": [-85.62486012342234, 41.94561624310521], "type": "Point"}, "id": "3489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62467908814378, 41.945617581767, -85.62467908814378, 41.945617581767], "geometry": {"coordinates": [-85.62467908814378, 41.945617581767], "type": "Point"}, "id": "3490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6244980528652, 41.94561892042875, -85.6244980528652, 41.94561892042875], "geometry": {"coordinates": [-85.6244980528652, 41.94561892042875], "type": "Point"}, "id": "3491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62431701758662, 41.94562025909049, -85.62431701758662, 41.94562025909049], "geometry": {"coordinates": [-85.62431701758662, 41.94562025909049], "type": "Point"}, "id": "3492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62413598230806, 41.94562159775219, -85.62413598230806, 41.94562159775219], "geometry": {"coordinates": [-85.62413598230806, 41.94562159775219], "type": "Point"}, "id": "3493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62395494702949, 41.94562293641387, -85.62395494702949, 41.94562293641387], "geometry": {"coordinates": [-85.62395494702949, 41.94562293641387], "type": "Point"}, "id": "3494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62377391175092, 41.94562427507551, -85.62377391175092, 41.94562427507551], "geometry": {"coordinates": [-85.62377391175092, 41.94562427507551], "type": "Point"}, "id": "3495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62359287647233, 41.94562561373713, -85.62359287647233, 41.94562561373713], "geometry": {"coordinates": [-85.62359287647233, 41.94562561373713], "type": "Point"}, "id": "3496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62341184119377, 41.94562695239872, -85.62341184119377, 41.94562695239872], "geometry": {"coordinates": [-85.62341184119377, 41.94562695239872], "type": "Point"}, "id": "3497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6232308059152, 41.94562829106028, -85.6232308059152, 41.94562829106028], "geometry": {"coordinates": [-85.6232308059152, 41.94562829106028], "type": "Point"}, "id": "3498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62304977063661, 41.945629629721815, -85.62304977063661, 41.945629629721815], "geometry": {"coordinates": [-85.62304977063661, 41.945629629721815], "type": "Point"}, "id": "3499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62286873535804, 41.94563096838332, -85.62286873535804, 41.94563096838332], "geometry": {"coordinates": [-85.62286873535804, 41.94563096838332], "type": "Point"}, "id": "3500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6226876987975, 41.945632043858886, -85.6226876987975, 41.945632043858886], "geometry": {"coordinates": [-85.6226876987975, 41.945632043858886], "type": "Point"}, "id": "3501", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62250665523028, 41.94563168087499, -85.62250665523028, 41.94563168087499], "geometry": {"coordinates": [-85.62250665523028, 41.94563168087499], "type": "Point"}, "id": "3502", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62232561166306, 41.94563131789108, -85.62232561166306, 41.94563131789108], "geometry": {"coordinates": [-85.62232561166306, 41.94563131789108], "type": "Point"}, "id": "3503", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62214456809583, 41.945630954907166, -85.62214456809583, 41.945630954907166], "geometry": {"coordinates": [-85.62214456809583, 41.945630954907166], "type": "Point"}, "id": "3504", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62196352452862, 41.945630591923255, -85.62196352452862, 41.945630591923255], "geometry": {"coordinates": [-85.62196352452862, 41.945630591923255], "type": "Point"}, "id": "3505", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6217824809614, 41.94563022893935, -85.6217824809614, 41.94563022893935], "geometry": {"coordinates": [-85.6217824809614, 41.94563022893935], "type": "Point"}, "id": "3506", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62160143739416, 41.94562986595543, -85.62160143739416, 41.94562986595543], "geometry": {"coordinates": [-85.62160143739416, 41.94562986595543], "type": "Point"}, "id": "3507", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62142039382694, 41.945629502971514, -85.62142039382694, 41.945629502971514], "geometry": {"coordinates": [-85.62142039382694, 41.945629502971514], "type": "Point"}, "id": "3508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62123935025973, 41.945629139987595, -85.62123935025973, 41.945629139987595], "geometry": {"coordinates": [-85.62123935025973, 41.945629139987595], "type": "Point"}, "id": "3509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62105830669249, 41.94562877700368, -85.62105830669249, 41.94562877700368], "geometry": {"coordinates": [-85.62105830669249, 41.94562877700368], "type": "Point"}, "id": "3510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62087726312527, 41.94562841401975, -85.62087726312527, 41.94562841401975], "geometry": {"coordinates": [-85.62087726312527, 41.94562841401975], "type": "Point"}, "id": "3511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62069621955804, 41.94562805103583, -85.62069621955804, 41.94562805103583], "geometry": {"coordinates": [-85.62069621955804, 41.94562805103583], "type": "Point"}, "id": "3512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6205151759908, 41.94562768805191, -85.6205151759908, 41.94562768805191], "geometry": {"coordinates": [-85.6205151759908, 41.94562768805191], "type": "Point"}, "id": "3513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6203341324236, 41.94562732506798, -85.6203341324236, 41.94562732506798], "geometry": {"coordinates": [-85.6203341324236, 41.94562732506798], "type": "Point"}, "id": "3514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.62015309079582, 41.945626795022214, -85.62015309079582, 41.945626795022214], "geometry": {"coordinates": [-85.62015309079582, 41.945626795022214], "type": "Point"}, "id": "3515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61997206579575, 41.94562483269186, -85.61997206579575, 41.94562483269186], "geometry": {"coordinates": [-85.61997206579575, 41.94562483269186], "type": "Point"}, "id": "3516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61979104079566, 41.94562287036145, -85.61979104079566, 41.94562287036145], "geometry": {"coordinates": [-85.61979104079566, 41.94562287036145], "type": "Point"}, "id": "3517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61961001579556, 41.94562090803097, -85.61961001579556, 41.94562090803097], "geometry": {"coordinates": [-85.61961001579556, 41.94562090803097], "type": "Point"}, "id": "3518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61942899079547, 41.945618945700446, -85.61942899079547, 41.945618945700446], "geometry": {"coordinates": [-85.61942899079547, 41.945618945700446], "type": "Point"}, "id": "3519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61924796579541, 41.94561698336984, -85.61924796579541, 41.94561698336984], "geometry": {"coordinates": [-85.61924796579541, 41.94561698336984], "type": "Point"}, "id": "3520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61906694079532, 41.94561502103919, -85.61906694079532, 41.94561502103919], "geometry": {"coordinates": [-85.61906694079532, 41.94561502103919], "type": "Point"}, "id": "3521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61888591579522, 41.945613058708474, -85.61888591579522, 41.945613058708474], "geometry": {"coordinates": [-85.61888591579522, 41.945613058708474], "type": "Point"}, "id": "3522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61870489079513, 41.9456110963777, -85.61870489079513, 41.9456110963777], "geometry": {"coordinates": [-85.61870489079513, 41.9456110963777], "type": "Point"}, "id": "3523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61852386579504, 41.945609134046855, -85.61852386579504, 41.945609134046855], "geometry": {"coordinates": [-85.61852386579504, 41.945609134046855], "type": "Point"}, "id": "3524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61834284079498, 41.94560717171596, -85.61834284079498, 41.94560717171596], "geometry": {"coordinates": [-85.61834284079498, 41.94560717171596], "type": "Point"}, "id": "3525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61816180024105, 41.94560639708118, -85.61816180024105, 41.94560639708118], "geometry": {"coordinates": [-85.61816180024105, 41.94560639708118], "type": "Point"}, "id": "3526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61798075819556, 41.94560573634381, -85.61798075819556, 41.94560573634381], "geometry": {"coordinates": [-85.61798075819556, 41.94560573634381], "type": "Point"}, "id": "3527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61779971615007, 41.94560507560642, -85.61779971615007, 41.94560507560642], "geometry": {"coordinates": [-85.61779971615007, 41.94560507560642], "type": "Point"}, "id": "3528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61761867410458, 41.945604414869024, -85.61761867410458, 41.945604414869024], "geometry": {"coordinates": [-85.61761867410458, 41.945604414869024], "type": "Point"}, "id": "3529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6174376320591, 41.945603754131625, -85.6174376320591, 41.945603754131625], "geometry": {"coordinates": [-85.6174376320591, 41.945603754131625], "type": "Point"}, "id": "3530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6172565900136, 41.94560309339422, -85.6172565900136, 41.94560309339422], "geometry": {"coordinates": [-85.6172565900136, 41.94560309339422], "type": "Point"}, "id": "3531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61707554619507, 41.94560286991313, -85.61707554619507, 41.94560286991313], "geometry": {"coordinates": [-85.61707554619507, 41.94560286991313], "type": "Point"}, "id": "3532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61689450208465, 41.94560271841179, -85.61689450208465, 41.94560271841179], "geometry": {"coordinates": [-85.61689450208465, 41.94560271841179], "type": "Point"}, "id": "3533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61671345797424, 41.94560256691044, -85.61671345797424, 41.94560256691044], "geometry": {"coordinates": [-85.61671345797424, 41.94560256691044], "type": "Point"}, "id": "3534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61653241389214, 41.94560239840592, -85.61653241389214, 41.94560239840592], "geometry": {"coordinates": [-85.61653241389214, 41.94560239840592], "type": "Point"}, "id": "3535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61635136983243, 41.94560221645209, -85.61635136983243, 41.94560221645209], "geometry": {"coordinates": [-85.61635136983243, 41.94560221645209], "type": "Point"}, "id": "3536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61617032577273, 41.94560203449826, -85.61617032577273, 41.94560203449826], "geometry": {"coordinates": [-85.61617032577273, 41.94560203449826], "type": "Point"}, "id": "3537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.6159892886852, 41.945600925978695, -85.6159892886852, 41.945600925978695], "geometry": {"coordinates": [-85.6159892886852, 41.945600925978695], "type": "Point"}, "id": "3538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61580825322886, 41.94559960068254, -85.61580825322886, 41.94559960068254], "geometry": {"coordinates": [-85.61580825322886, 41.94559960068254], "type": "Point"}, "id": "3539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61562721777253, 41.94559827538637, -85.61562721777253, 41.94559827538637], "geometry": {"coordinates": [-85.61562721777253, 41.94559827538637], "type": "Point"}, "id": "3540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.61544646732727, 41.945598451705486, -85.61544646732727, 41.945598451705486], "geometry": {"coordinates": [-85.61544646732727, 41.945598451705486], "type": "Point"}, "id": "3541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967107}, "type": "Feature"}, {"bbox": [-85.637688, 41.93398, -85.637688, 41.93398], "geometry": {"coordinates": [-85.637688, 41.93398], "type": "Point"}, "id": "3542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63787021382272, 41.93397837366043, -85.63787021382272, 41.93397837366043], "geometry": {"coordinates": [-85.63787021382272, 41.93397837366043], "type": "Point"}, "id": "3543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63805242764546, 41.933976747320806, -85.63805242764546, 41.933976747320806], "geometry": {"coordinates": [-85.63805242764546, 41.933976747320806], "type": "Point"}, "id": "3544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63823464146819, 41.93397512098115, -85.63823464146819, 41.93397512098115], "geometry": {"coordinates": [-85.63823464146819, 41.93397512098115], "type": "Point"}, "id": "3545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63841685529094, 41.93397349464146, -85.63841685529094, 41.93397349464146], "geometry": {"coordinates": [-85.63841685529094, 41.93397349464146], "type": "Point"}, "id": "3546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63859906911367, 41.93397186830172, -85.63859906911367, 41.93397186830172], "geometry": {"coordinates": [-85.63859906911367, 41.93397186830172], "type": "Point"}, "id": "3547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63878128293639, 41.93397024196194, -85.63878128293639, 41.93397024196194], "geometry": {"coordinates": [-85.63878128293639, 41.93397024196194], "type": "Point"}, "id": "3548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63896349690724, 41.933968624840304, -85.63896349690724, 41.933968624840304], "geometry": {"coordinates": [-85.63896349690724, 41.933968624840304], "type": "Point"}, "id": "3549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6391457109333, 41.933967011158494, -85.6391457109333, 41.933967011158494], "geometry": {"coordinates": [-85.6391457109333, 41.933967011158494], "type": "Point"}, "id": "3550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6393279249594, 41.93396539747664, -85.6393279249594, 41.93396539747664], "geometry": {"coordinates": [-85.6393279249594, 41.93396539747664], "type": "Point"}, "id": "3551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63951013898549, 41.93396378379475, -85.63951013898549, 41.93396378379475], "geometry": {"coordinates": [-85.63951013898549, 41.93396378379475], "type": "Point"}, "id": "3552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63969235301158, 41.93396217011282, -85.63969235301158, 41.93396217011282], "geometry": {"coordinates": [-85.63969235301158, 41.93396217011282], "type": "Point"}, "id": "3553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.63987456703767, 41.93396055643084, -85.63987456703767, 41.93396055643084], "geometry": {"coordinates": [-85.63987456703767, 41.93396055643084], "type": "Point"}, "id": "3554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64005678106376, 41.933958942748816, -85.64005678106376, 41.933958942748816], "geometry": {"coordinates": [-85.64005678106376, 41.933958942748816], "type": "Point"}, "id": "3555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64023899486287, 41.933957314950554, -85.64023899486287, 41.933957314950554], "geometry": {"coordinates": [-85.64023899486287, 41.933957314950554], "type": "Point"}, "id": "3556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64042120863995, 41.9339556857823, -85.64042120863995, 41.9339556857823], "geometry": {"coordinates": [-85.64042120863995, 41.9339556857823], "type": "Point"}, "id": "3557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64060342241703, 41.93395405661401, -85.64060342241703, 41.93395405661401], "geometry": {"coordinates": [-85.64060342241703, 41.93395405661401], "type": "Point"}, "id": "3558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64078563619412, 41.93395242744568, -85.64078563619412, 41.93395242744568], "geometry": {"coordinates": [-85.64078563619412, 41.93395242744568], "type": "Point"}, "id": "3559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64096784997118, 41.93395079827732, -85.64096784997118, 41.93395079827732], "geometry": {"coordinates": [-85.64096784997118, 41.93395079827732], "type": "Point"}, "id": "3560", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64115006374826, 41.93394916910891, -85.64115006374826, 41.93394916910891], "geometry": {"coordinates": [-85.64115006374826, 41.93394916910891], "type": "Point"}, "id": "3561", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64133227754152, 41.933947540942675, -85.64133227754152, 41.933947540942675], "geometry": {"coordinates": [-85.64133227754152, 41.933947540942675], "type": "Point"}, "id": "3562", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64151449134609, 41.93394591347491, -85.64151449134609, 41.93394591347491], "geometry": {"coordinates": [-85.64151449134609, 41.93394591347491], "type": "Point"}, "id": "3563", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64169670515062, 41.93394428600711, -85.64169670515062, 41.93394428600711], "geometry": {"coordinates": [-85.64169670515062, 41.93394428600711], "type": "Point"}, "id": "3564", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64187891895517, 41.93394265853925, -85.64187891895517, 41.93394265853925], "geometry": {"coordinates": [-85.64187891895517, 41.93394265853925], "type": "Point"}, "id": "3565", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64206113275972, 41.93394103107136, -85.64206113275972, 41.93394103107136], "geometry": {"coordinates": [-85.64206113275972, 41.93394103107136], "type": "Point"}, "id": "3566", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64224334656426, 41.93393940360343, -85.64224334656426, 41.93393940360343], "geometry": {"coordinates": [-85.64224334656426, 41.93393940360343], "type": "Point"}, "id": "3567", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64242556039974, 41.93393777805825, -85.64242556039974, 41.93393777805825], "geometry": {"coordinates": [-85.64242556039974, 41.93393777805825], "type": "Point"}, "id": "3568", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64260777435976, 41.933936160252614, -85.64260777435976, 41.933936160252614], "geometry": {"coordinates": [-85.64260777435976, 41.933936160252614], "type": "Point"}, "id": "3569", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6427899883198, 41.933934542446934, -85.6427899883198, 41.933934542446934], "geometry": {"coordinates": [-85.6427899883198, 41.933934542446934], "type": "Point"}, "id": "3570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64297220227982, 41.93393292464121, -85.64297220227982, 41.93393292464121], "geometry": {"coordinates": [-85.64297220227982, 41.93393292464121], "type": "Point"}, "id": "3571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64315441623984, 41.93393130683545, -85.64315441623984, 41.93393130683545], "geometry": {"coordinates": [-85.64315441623984, 41.93393130683545], "type": "Point"}, "id": "3572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64333663019988, 41.93392968902964, -85.64333663019988, 41.93392968902964], "geometry": {"coordinates": [-85.64333663019988, 41.93392968902964], "type": "Point"}, "id": "3573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.6435188441599, 41.9339280712238, -85.6435188441599, 41.9339280712238], "geometry": {"coordinates": [-85.6435188441599, 41.9339280712238], "type": "Point"}, "id": "3574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64370105811993, 41.933926453417904, -85.64370105811993, 41.933926453417904], "geometry": {"coordinates": [-85.64370105811993, 41.933926453417904], "type": "Point"}, "id": "3575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64388327207995, 41.93392483561198, -85.64388327207995, 41.93392483561198], "geometry": {"coordinates": [-85.64388327207995, 41.93392483561198], "type": "Point"}, "id": "3576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.64406548603998, 41.93392321780601, -85.64406548603998, 41.93392321780601], "geometry": {"coordinates": [-85.64406548603998, 41.93392321780601], "type": "Point"}, "id": "3577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964972}, "type": "Feature"}, {"bbox": [-85.61118699999999, 41.951686, -85.61118699999999, 41.951686], "geometry": {"coordinates": [-85.61118699999999, 41.951686], "type": "Point"}, "id": "3578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61106546041496, 41.95178611122974, -85.61106546041496, 41.95178611122974], "geometry": {"coordinates": [-85.61106546041496, 41.95178611122974], "type": "Point"}, "id": "3579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.6110223475364, 41.95192191480253, -85.6110223475364, 41.95192191480253], "geometry": {"coordinates": [-85.6110223475364, 41.95192191480253], "type": "Point"}, "id": "3580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61101391404924, 41.952061980789146, -85.61101391404924, 41.952061980789146], "geometry": {"coordinates": [-85.61101391404924, 41.952061980789146], "type": "Point"}, "id": "3581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61101104322071, 41.952202333479924, -85.61101104322071, 41.952202333479924], "geometry": {"coordinates": [-85.61101104322071, 41.952202333479924], "type": "Point"}, "id": "3582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61100817239219, 41.952342685861645, -85.61100817239219, 41.952342685861645], "geometry": {"coordinates": [-85.61100817239219, 41.952342685861645], "type": "Point"}, "id": "3583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61100530156368, 41.95248303793432, -85.61100530156368, 41.95248303793432], "geometry": {"coordinates": [-85.61100530156368, 41.95248303793432], "type": "Point"}, "id": "3584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61100243073518, 41.95262338969795, -85.61100243073518, 41.95262338969795], "geometry": {"coordinates": [-85.61100243073518, 41.95262338969795], "type": "Point"}, "id": "3585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099955990665, 41.95276374115253, -85.61099955990665, 41.95276374115253], "geometry": {"coordinates": [-85.61099955990665, 41.95276374115253], "type": "Point"}, "id": "3586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099668907812, 41.952904092298056, -85.61099668907812, 41.952904092298056], "geometry": {"coordinates": [-85.61099668907812, 41.952904092298056], "type": "Point"}, "id": "3587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099381824961, 41.95304444313453, -85.61099381824961, 41.95304444313453], "geometry": {"coordinates": [-85.61099381824961, 41.95304444313453], "type": "Point"}, "id": "3588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099094742109, 41.953184793661954, -85.61099094742109, 41.953184793661954], "geometry": {"coordinates": [-85.61099094742109, 41.953184793661954], "type": "Point"}, "id": "3589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61099603449938, 41.95332484498957, -85.61099603449938, 41.95332484498957], "geometry": {"coordinates": [-85.61099603449938, 41.95332484498957], "type": "Point"}, "id": "3590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61101790441352, 41.95346426566477, -85.61101790441352, 41.95346426566477], "geometry": {"coordinates": [-85.61101790441352, 41.95346426566477], "type": "Point"}, "id": "3591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.6110859390192, 41.953594396340094, -85.6110859390192, 41.953594396340094], "geometry": {"coordinates": [-85.6110859390192, 41.953594396340094], "type": "Point"}, "id": "3592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.6112412306531, 41.95366728516146, -85.6112412306531, 41.95366728516146], "geometry": {"coordinates": [-85.6112412306531, 41.95366728516146], "type": "Point"}, "id": "3593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.61142712834354, 41.95369052713268, -85.61142712834354, 41.95369052713268], "geometry": {"coordinates": [-85.61142712834354, 41.95369052713268], "type": "Point"}, "id": "3594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964508}, "type": "Feature"}, {"bbox": [-85.62003499999999, 41.933297, -85.62003499999999, 41.933297], "geometry": {"coordinates": [-85.62003499999999, 41.933297], "type": "Point"}, "id": "3595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62021155959668, 41.93326401081591, -85.62021155959668, 41.93326401081591], "geometry": {"coordinates": [-85.62021155959668, 41.93326401081591], "type": "Point"}, "id": "3596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.6203939698454, 41.93325721713872, -85.6203939698454, 41.93325721713872], "geometry": {"coordinates": [-85.6203939698454, 41.93325721713872], "type": "Point"}, "id": "3597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62057638009408, 41.9332504234608, -85.62057638009408, 41.9332504234608], "geometry": {"coordinates": [-85.62057638009408, 41.9332504234608], "type": "Point"}, "id": "3598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62075881852653, 41.93324585403804, -85.62075881852653, 41.93324585403804], "geometry": {"coordinates": [-85.62075881852653, 41.93324585403804], "type": "Point"}, "id": "3599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62094136851303, 41.93325008844504, -85.62094136851303, 41.93325008844504], "geometry": {"coordinates": [-85.62094136851303, 41.93325008844504], "type": "Point"}, "id": "3600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62112392421147, 41.93325387264442, -85.62112392421147, 41.93325387264442], "geometry": {"coordinates": [-85.62112392421147, 41.93325387264442], "type": "Point"}, "id": "3601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.6213065491135, 41.93325220229471, -85.6213065491135, 41.93325220229471], "geometry": {"coordinates": [-85.6213065491135, 41.93325220229471], "type": "Point"}, "id": "3602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62148917396169, 41.93325052871731, -85.62148917396169, 41.93325052871731], "geometry": {"coordinates": [-85.62148917396169, 41.93325052871731], "type": "Point"}, "id": "3603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62167179832842, 41.933248826286786, -85.62167179832842, 41.933248826286786], "geometry": {"coordinates": [-85.62167179832842, 41.933248826286786], "type": "Point"}, "id": "3604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62185442276183, 41.933247127842456, -85.62185442276183, 41.933247127842456], "geometry": {"coordinates": [-85.62185442276183, 41.933247127842456], "type": "Point"}, "id": "3605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62203704753955, 41.933245449987005, -85.62203704753955, 41.933245449987005], "geometry": {"coordinates": [-85.62203704753955, 41.933245449987005], "type": "Point"}, "id": "3606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62221967231727, 41.933243772131526, -85.62221967231727, 41.933243772131526], "geometry": {"coordinates": [-85.62221967231727, 41.933243772131526], "type": "Point"}, "id": "3607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62240229709496, 41.933242094276004, -85.62240229709496, 41.933242094276004], "geometry": {"coordinates": [-85.62240229709496, 41.933242094276004], "type": "Point"}, "id": "3608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62258492187267, 41.93324041642043, -85.62258492187267, 41.93324041642043], "geometry": {"coordinates": [-85.62258492187267, 41.93324041642043], "type": "Point"}, "id": "3609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.6227675466504, 41.93323873856481, -85.6227675466504, 41.93323873856481], "geometry": {"coordinates": [-85.6227675466504, 41.93323873856481], "type": "Point"}, "id": "3610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62295017142812, 41.93323706070915, -85.62295017142812, 41.93323706070915], "geometry": {"coordinates": [-85.62295017142812, 41.93323706070915], "type": "Point"}, "id": "3611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62313279620582, 41.933235382853454, -85.62313279620582, 41.933235382853454], "geometry": {"coordinates": [-85.62313279620582, 41.933235382853454], "type": "Point"}, "id": "3612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62331542098354, 41.93323370499771, -85.62331542098354, 41.93323370499771], "geometry": {"coordinates": [-85.62331542098354, 41.93323370499771], "type": "Point"}, "id": "3613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62349804576124, 41.93323202714191, -85.62349804576124, 41.93323202714191], "geometry": {"coordinates": [-85.62349804576124, 41.93323202714191], "type": "Point"}, "id": "3614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62368061148479, 41.93322819646337, -85.62368061148479, 41.93322819646337], "geometry": {"coordinates": [-85.62368061148479, 41.93322819646337], "type": "Point"}, "id": "3615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62386317623732, 41.93322433038673, -85.62386317623732, 41.93322433038673], "geometry": {"coordinates": [-85.62386317623732, 41.93322433038673], "type": "Point"}, "id": "3616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62404574098984, 41.93322046430985, -85.62404574098984, 41.93322046430985], "geometry": {"coordinates": [-85.62404574098984, 41.93322046430985], "type": "Point"}, "id": "3617", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62422830574239, 41.93321659823275, -85.62422830574239, 41.93321659823275], "geometry": {"coordinates": [-85.62422830574239, 41.93321659823275], "type": "Point"}, "id": "3618", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62441087049491, 41.933212732155404, -85.62441087049491, 41.933212732155404], "geometry": {"coordinates": [-85.62441087049491, 41.933212732155404], "type": "Point"}, "id": "3619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.62459343524746, 41.93320886607781, -85.62459343524746, 41.93320886607781], "geometry": {"coordinates": [-85.62459343524746, 41.93320886607781], "type": "Point"}, "id": "3620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962489}, "type": "Feature"}, {"bbox": [-85.6244542, 41.9547066, -85.6244542, 41.9547066], "geometry": {"coordinates": [-85.6244542, 41.9547066], "type": "Point"}, "id": "3621", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484345}, "type": "Feature"}, {"bbox": [-85.6240991, 41.954708, -85.6240991, 41.954708], "geometry": {"coordinates": [-85.6240991, 41.954708], "type": "Point"}, "id": "3622", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62392155931323, 41.95467971918516, -85.62392155931323, 41.95467971918516], "geometry": {"coordinates": [-85.62392155931323, 41.95467971918516], "type": "Point"}, "id": "3623", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62374588694856, 41.95464590963503, -85.62374588694856, 41.95464590963503], "geometry": {"coordinates": [-85.62374588694856, 41.95464590963503], "type": "Point"}, "id": "3624", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62357146139053, 41.9546084105252, -85.62357146139053, 41.9546084105252], "geometry": {"coordinates": [-85.62357146139053, 41.9546084105252], "type": "Point"}, "id": "3625", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62339703583251, 41.95457091139331, -85.62339703583251, 41.95457091139331], "geometry": {"coordinates": [-85.62339703583251, 41.95457091139331], "type": "Point"}, "id": "3626", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.6232226102745, 41.95453341223936, -85.6232226102745, 41.95453341223936], "geometry": {"coordinates": [-85.6232226102745, 41.95453341223936], "type": "Point"}, "id": "3627", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62304818471648, 41.95449591306335, -85.62304818471648, 41.95449591306335], "geometry": {"coordinates": [-85.62304818471648, 41.95449591306335], "type": "Point"}, "id": "3628", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62287192410771, 41.95446579742616, -85.62287192410771, 41.95446579742616], "geometry": {"coordinates": [-85.62287192410771, 41.95446579742616], "type": "Point"}, "id": "3629", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62269099825964, 41.954454452965415, -85.62269099825964, 41.954454452965415], "geometry": {"coordinates": [-85.62269099825964, 41.954454452965415], "type": "Point"}, "id": "3630", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62251002491999, 41.95446346374004, -85.62251002491999, 41.95446346374004], "geometry": {"coordinates": [-85.62251002491999, 41.95446346374004], "type": "Point"}, "id": "3631", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62232945001742, 41.95447676930574, -85.62232945001742, 41.95447676930574], "geometry": {"coordinates": [-85.62232945001742, 41.95447676930574], "type": "Point"}, "id": "3632", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62215034372795, 41.95449892787542, -85.62215034372795, 41.95449892787542], "geometry": {"coordinates": [-85.62215034372795, 41.95449892787542], "type": "Point"}, "id": "3633", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62197123743847, 41.9545210864374, -85.62197123743847, 41.9545210864374], "geometry": {"coordinates": [-85.62197123743847, 41.9545210864374], "type": "Point"}, "id": "3634", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62179213114896, 41.95454324499167, -85.62179213114896, 41.95454324499167], "geometry": {"coordinates": [-85.62179213114896, 41.95454324499167], "type": "Point"}, "id": "3635", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62161302485949, 41.95456540353824, -85.62161302485949, 41.95456540353824], "geometry": {"coordinates": [-85.62161302485949, 41.95456540353824], "type": "Point"}, "id": "3636", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62143391857002, 41.95458756207711, -85.62143391857002, 41.95458756207711], "geometry": {"coordinates": [-85.62143391857002, 41.95458756207711], "type": "Point"}, "id": "3637", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62125481228051, 41.954609720608275, -85.62125481228051, 41.954609720608275], "geometry": {"coordinates": [-85.62125481228051, 41.954609720608275], "type": "Point"}, "id": "3638", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62107570599103, 41.954631879131725, -85.62107570599103, 41.954631879131725], "geometry": {"coordinates": [-85.62107570599103, 41.954631879131725], "type": "Point"}, "id": "3639", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62089659970157, 41.95465403764748, -85.62089659970157, 41.95465403764748], "geometry": {"coordinates": [-85.62089659970157, 41.95465403764748], "type": "Point"}, "id": "3640", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62071749341207, 41.954676196155525, -85.62071749341207, 41.954676196155525], "geometry": {"coordinates": [-85.62071749341207, 41.954676196155525], "type": "Point"}, "id": "3641", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62053825215949, 41.95469773251929, -85.62053825215949, 41.95469773251929], "geometry": {"coordinates": [-85.62053825215949, 41.95469773251929], "type": "Point"}, "id": "3642", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62035884963669, 41.954718523446594, -85.62035884963669, 41.954718523446594], "geometry": {"coordinates": [-85.62035884963669, 41.954718523446594], "type": "Point"}, "id": "3643", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.62017944389402, 41.95473929901859, -85.62017944389402, 41.95473929901859], "geometry": {"coordinates": [-85.62017944389402, 41.95473929901859], "type": "Point"}, "id": "3644", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61999798356334, 41.95473950632453, -85.61999798356334, 41.95473950632453], "geometry": {"coordinates": [-85.61999798356334, 41.95473950632453], "type": "Point"}, "id": "3645", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61981641923028, 41.954738672473525, -85.61981641923028, 41.954738672473525], "geometry": {"coordinates": [-85.61981641923028, 41.954738672473525], "type": "Point"}, "id": "3646", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61963485489723, 41.954737838622506, -85.61963485489723, 41.954737838622506], "geometry": {"coordinates": [-85.61963485489723, 41.954737838622506], "type": "Point"}, "id": "3647", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61945329046742, 41.954737016793196, -85.61945329046742, 41.954737016793196], "geometry": {"coordinates": [-85.61945329046742, 41.954737016793196], "type": "Point"}, "id": "3648", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61927172572109, 41.954736234288745, -85.61927172572109, 41.954736234288745], "geometry": {"coordinates": [-85.61927172572109, 41.954736234288745], "type": "Point"}, "id": "3649", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61909016097478, 41.954735451784295, -85.61909016097478, 41.954735451784295], "geometry": {"coordinates": [-85.61909016097478, 41.954735451784295], "type": "Point"}, "id": "3650", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61890859622848, 41.95473466927984, -85.61890859622848, 41.95473466927984], "geometry": {"coordinates": [-85.61890859622848, 41.95473466927984], "type": "Point"}, "id": "3651", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61872703148833, 41.95473388600451, -85.61872703148833, 41.95473388600451], "geometry": {"coordinates": [-85.61872703148833, 41.95473388600451], "type": "Point"}, "id": "3652", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61854547104082, 41.95473428558387, -85.61854547104082, 41.95473428558387], "geometry": {"coordinates": [-85.61854547104082, 41.95473428558387], "type": "Point"}, "id": "3653", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61836391402723, 41.95473575705596, -85.61836391402723, 41.95473575705596], "geometry": {"coordinates": [-85.61836391402723, 41.95473575705596], "type": "Point"}, "id": "3654", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.61818235701361, 41.954737228527996, -85.61818235701361, 41.954737228527996], "geometry": {"coordinates": [-85.61818235701361, 41.954737228527996], "type": "Point"}, "id": "3655", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 201484348}, "type": "Feature"}, {"bbox": [-85.633287, 41.952425999999996, -85.633287, 41.952425999999996], "geometry": {"coordinates": [-85.633287, 41.952425999999996], "type": "Point"}, "id": "3656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63328911901542, 41.95256098248776, -85.63328911901542, 41.95256098248776], "geometry": {"coordinates": [-85.63328911901542, 41.95256098248776], "type": "Point"}, "id": "3657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329123803082, 41.95269596468965, -85.63329123803082, 41.95269596468965], "geometry": {"coordinates": [-85.63329123803082, 41.95269596468965], "type": "Point"}, "id": "3658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329335704624, 41.9528309466057, -85.63329335704624, 41.9528309466057], "geometry": {"coordinates": [-85.63329335704624, 41.9528309466057], "type": "Point"}, "id": "3659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329547606163, 41.95296592823589, -85.63329547606163, 41.95296592823589], "geometry": {"coordinates": [-85.63329547606163, 41.95296592823589], "type": "Point"}, "id": "3660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329759507707, 41.95310090958023, -85.63329759507707, 41.95310090958023], "geometry": {"coordinates": [-85.63329759507707, 41.95310090958023], "type": "Point"}, "id": "3661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63329971409246, 41.953235890638716, -85.63329971409246, 41.953235890638716], "geometry": {"coordinates": [-85.63329971409246, 41.953235890638716], "type": "Point"}, "id": "3662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330183310788, 41.95337087141133, -85.63330183310788, 41.95337087141133], "geometry": {"coordinates": [-85.63330183310788, 41.95337087141133], "type": "Point"}, "id": "3663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330395212328, 41.9535058518981, -85.63330395212328, 41.9535058518981], "geometry": {"coordinates": [-85.63330395212328, 41.9535058518981], "type": "Point"}, "id": "3664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333060711387, 41.95364083209901, -85.6333060711387, 41.95364083209901], "geometry": {"coordinates": [-85.6333060711387, 41.95364083209901], "type": "Point"}, "id": "3665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330731262725, 41.953775816824155, -85.63330731262725, 41.953775816824155], "geometry": {"coordinates": [-85.63330731262725, 41.953775816824155], "type": "Point"}, "id": "3666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330786924591, 41.95391080501744, -85.63330786924591, 41.95391080501744], "geometry": {"coordinates": [-85.63330786924591, 41.95391080501744], "type": "Point"}, "id": "3667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330842586457, 41.95404579292485, -85.63330842586457, 41.95404579292485], "geometry": {"coordinates": [-85.63330842586457, 41.95404579292485], "type": "Point"}, "id": "3668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330898248323, 41.954180780546366, -85.63330898248323, 41.954180780546366], "geometry": {"coordinates": [-85.63330898248323, 41.954180780546366], "type": "Point"}, "id": "3669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63330953910189, 41.95431576788199, -85.63330953910189, 41.95431576788199], "geometry": {"coordinates": [-85.63330953910189, 41.95431576788199], "type": "Point"}, "id": "3670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331009572056, 41.954450754931706, -85.63331009572056, 41.954450754931706], "geometry": {"coordinates": [-85.63331009572056, 41.954450754931706], "type": "Point"}, "id": "3671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331065233919, 41.95458574169554, -85.63331065233919, 41.95458574169554], "geometry": {"coordinates": [-85.63331065233919, 41.95458574169554], "type": "Point"}, "id": "3672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331163747665, 41.95472072575615, -85.63331163747665, 41.95472072575615], "geometry": {"coordinates": [-85.63331163747665, 41.95472072575615], "type": "Point"}, "id": "3673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333136900336, 41.95485570395213, -85.6333136900336, 41.95485570395213], "geometry": {"coordinates": [-85.6333136900336, 41.95485570395213], "type": "Point"}, "id": "3674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331573981158, 41.95499068188566, -85.63331573981158, 41.95499068188566], "geometry": {"coordinates": [-85.63331573981158, 41.95499068188566], "type": "Point"}, "id": "3675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331778958955, 41.95512565953333, -85.63331778958955, 41.95512565953333], "geometry": {"coordinates": [-85.63331778958955, 41.95512565953333], "type": "Point"}, "id": "3676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63331982668652, 41.95526063700125, -85.63331982668652, 41.95526063700125], "geometry": {"coordinates": [-85.63331982668652, 41.95526063700125], "type": "Point"}, "id": "3677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63332186152037, 41.95539561420226, -85.63332186152037, 41.95539561420226], "geometry": {"coordinates": [-85.63332186152037, 41.95539561420226], "type": "Point"}, "id": "3678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63332390263513, 41.95553059106494, -85.63332390263513, 41.95553059106494], "geometry": {"coordinates": [-85.63332390263513, 41.95553059106494], "type": "Point"}, "id": "3679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63332594420854, 41.95566556763794, -85.63332594420854, 41.95566556763794], "geometry": {"coordinates": [-85.63332594420854, 41.95566556763794], "type": "Point"}, "id": "3680", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63332798578192, 41.95580054392508, -85.63332798578192, 41.95580054392508], "geometry": {"coordinates": [-85.63332798578192, 41.95580054392508], "type": "Point"}, "id": "3681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.633330012762, 41.955935520041436, -85.633330012762, 41.955935520041436], "geometry": {"coordinates": [-85.633330012762, 41.955935520041436], "type": "Point"}, "id": "3682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63333182039655, 41.95607049760158, -85.63333182039655, 41.95607049760158], "geometry": {"coordinates": [-85.63333182039655, 41.95607049760158], "type": "Point"}, "id": "3683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333336280311, 41.95620547487584, -85.6333336280311, 41.95620547487584], "geometry": {"coordinates": [-85.6333336280311, 41.95620547487584], "type": "Point"}, "id": "3684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63333543566563, 41.956340451864236, -85.63333543566563, 41.956340451864236], "geometry": {"coordinates": [-85.63333543566563, 41.956340451864236], "type": "Point"}, "id": "3685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63333724330019, 41.95647542856677, -85.63333724330019, 41.95647542856677], "geometry": {"coordinates": [-85.63333724330019, 41.95647542856677], "type": "Point"}, "id": "3686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63333905093472, 41.95661040498344, -85.63333905093472, 41.95661040498344], "geometry": {"coordinates": [-85.63333905093472, 41.95661040498344], "type": "Point"}, "id": "3687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334085856928, 41.956745381114224, -85.63334085856928, 41.956745381114224], "geometry": {"coordinates": [-85.63334085856928, 41.956745381114224], "type": "Point"}, "id": "3688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334266620382, 41.95688035695915, -85.63334266620382, 41.95688035695915], "geometry": {"coordinates": [-85.63334266620382, 41.95688035695915], "type": "Point"}, "id": "3689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334447383836, 41.957015332518196, -85.63334447383836, 41.957015332518196], "geometry": {"coordinates": [-85.63334447383836, 41.957015332518196], "type": "Point"}, "id": "3690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333462814729, 41.95715030779138, -85.6333462814729, 41.95715030779138], "geometry": {"coordinates": [-85.6333462814729, 41.95715030779138], "type": "Point"}, "id": "3691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334808910744, 41.95728528277869, -85.63334808910744, 41.95728528277869], "geometry": {"coordinates": [-85.63334808910744, 41.95728528277869], "type": "Point"}, "id": "3692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63334989560884, 41.9574202574885, -85.63334989560884, 41.9574202574885], "geometry": {"coordinates": [-85.63334989560884, 41.9574202574885], "type": "Point"}, "id": "3693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.6333516963407, 41.957555231955105, -85.6333516963407, 41.957555231955105], "geometry": {"coordinates": [-85.6333516963407, 41.957555231955105], "type": "Point"}, "id": "3694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63335349707255, 41.957690206135815, -85.63335349707255, 41.957690206135815], "geometry": {"coordinates": [-85.63335349707255, 41.957690206135815], "type": "Point"}, "id": "3695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63335529780441, 41.957825180030675, -85.63335529780441, 41.957825180030675], "geometry": {"coordinates": [-85.63335529780441, 41.957825180030675], "type": "Point"}, "id": "3696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63335709853628, 41.957960153639654, -85.63335709853628, 41.957960153639654], "geometry": {"coordinates": [-85.63335709853628, 41.957960153639654], "type": "Point"}, "id": "3697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.63335889926812, 41.958095126962775, -85.63335889926812, 41.958095126962775], "geometry": {"coordinates": [-85.63335889926812, 41.958095126962775], "type": "Point"}, "id": "3698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171420}, "type": "Feature"}, {"bbox": [-85.61433, 41.940167, -85.61433, 41.940167], "geometry": {"coordinates": [-85.61433, 41.940167], "type": "Point"}, "id": "3699", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61450973447263, 41.94016664007298, -85.61450973447263, 41.94016664007298], "geometry": {"coordinates": [-85.61450973447263, 41.94016664007298], "type": "Point"}, "id": "3700", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61468946894527, 41.94016628014595, -85.61468946894527, 41.94016628014595], "geometry": {"coordinates": [-85.61468946894527, 41.94016628014595], "type": "Point"}, "id": "3701", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61486920341791, 41.940165920218924, -85.61486920341791, 41.940165920218924], "geometry": {"coordinates": [-85.61486920341791, 41.940165920218924], "type": "Point"}, "id": "3702", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61504893789055, 41.94016556029188, -85.61504893789055, 41.94016556029188], "geometry": {"coordinates": [-85.61504893789055, 41.94016556029188], "type": "Point"}, "id": "3703", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61522867236317, 41.940165200364845, -85.61522867236317, 41.940165200364845], "geometry": {"coordinates": [-85.61522867236317, 41.940165200364845], "type": "Point"}, "id": "3704", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61540840683583, 41.94016484043782, -85.61540840683583, 41.94016484043782], "geometry": {"coordinates": [-85.61540840683583, 41.94016484043782], "type": "Point"}, "id": "3705", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61558814130846, 41.940164480510774, -85.61558814130846, 41.940164480510774], "geometry": {"coordinates": [-85.61558814130846, 41.940164480510774], "type": "Point"}, "id": "3706", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61576787578109, 41.94016412058374, -85.61576787578109, 41.94016412058374], "geometry": {"coordinates": [-85.61576787578109, 41.94016412058374], "type": "Point"}, "id": "3707", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61594761025373, 41.94016376065669, -85.61594761025373, 41.94016376065669], "geometry": {"coordinates": [-85.61594761025373, 41.94016376065669], "type": "Point"}, "id": "3708", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.6161273447518, 41.94016340784098, -85.6161273447518, 41.94016340784098], "geometry": {"coordinates": [-85.6161273447518, 41.94016340784098], "type": "Point"}, "id": "3709", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61630707925502, 41.9401630564666, -85.61630707925502, 41.9401630564666], "geometry": {"coordinates": [-85.61630707925502, 41.9401630564666], "type": "Point"}, "id": "3710", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61648681375824, 41.94016270509222, -85.61648681375824, 41.94016270509222], "geometry": {"coordinates": [-85.61648681375824, 41.94016270509222], "type": "Point"}, "id": "3711", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61666654826148, 41.940162353717845, -85.61666654826148, 41.940162353717845], "geometry": {"coordinates": [-85.61666654826148, 41.940162353717845], "type": "Point"}, "id": "3712", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61684628276468, 41.94016200234346, -85.61684628276468, 41.94016200234346], "geometry": {"coordinates": [-85.61684628276468, 41.94016200234346], "type": "Point"}, "id": "3713", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61702601726792, 41.940161650969074, -85.61702601726792, 41.940161650969074], "geometry": {"coordinates": [-85.61702601726792, 41.940161650969074], "type": "Point"}, "id": "3714", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61720575177114, 41.94016129959469, -85.61720575177114, 41.94016129959469], "geometry": {"coordinates": [-85.61720575177114, 41.94016129959469], "type": "Point"}, "id": "3715", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61738548597963, 41.940160893606425, -85.61738548597963, 41.940160893606425], "geometry": {"coordinates": [-85.61738548597963, 41.940160893606425], "type": "Point"}, "id": "3716", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61756521848282, 41.940160171625045, -85.61756521848282, 41.940160171625045], "geometry": {"coordinates": [-85.61756521848282, 41.940160171625045], "type": "Point"}, "id": "3717", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61774495098604, 41.940159449643645, -85.61774495098604, 41.940159449643645], "geometry": {"coordinates": [-85.61774495098604, 41.940159449643645], "type": "Point"}, "id": "3718", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61792468348922, 41.94015872766225, -85.61792468348922, 41.94015872766225], "geometry": {"coordinates": [-85.61792468348922, 41.94015872766225], "type": "Point"}, "id": "3719", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61810441599242, 41.94015800568085, -85.61810441599242, 41.94015800568085], "geometry": {"coordinates": [-85.61810441599242, 41.94015800568085], "type": "Point"}, "id": "3720", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61828414849562, 41.940157283699435, -85.61828414849562, 41.940157283699435], "geometry": {"coordinates": [-85.61828414849562, 41.940157283699435], "type": "Point"}, "id": "3721", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61846388099882, 41.94015656171801, -85.61846388099882, 41.94015656171801], "geometry": {"coordinates": [-85.61846388099882, 41.94015656171801], "type": "Point"}, "id": "3722", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61864361350203, 41.940155839736576, -85.61864361350203, 41.940155839736576], "geometry": {"coordinates": [-85.61864361350203, 41.940155839736576], "type": "Point"}, "id": "3723", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61882334594576, 41.94015510962224, -85.61882334594576, 41.94015510962224], "geometry": {"coordinates": [-85.61882334594576, 41.94015510962224], "type": "Point"}, "id": "3724", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61900307837524, 41.94015437755603, -85.61900307837524, 41.94015437755603], "geometry": {"coordinates": [-85.61900307837524, 41.94015437755603], "type": "Point"}, "id": "3725", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61918281080472, 41.940153645489815, -85.61918281080472, 41.940153645489815], "geometry": {"coordinates": [-85.61918281080472, 41.940153645489815], "type": "Point"}, "id": "3726", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61936254323419, 41.94015291342359, -85.61936254323419, 41.94015291342359], "geometry": {"coordinates": [-85.61936254323419, 41.94015291342359], "type": "Point"}, "id": "3727", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61954227566365, 41.940152181357355, -85.61954227566365, 41.940152181357355], "geometry": {"coordinates": [-85.61954227566365, 41.940152181357355], "type": "Point"}, "id": "3728", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.61972200809312, 41.940151449291115, -85.61972200809312, 41.940151449291115], "geometry": {"coordinates": [-85.61972200809312, 41.940151449291115], "type": "Point"}, "id": "3729", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.6199017405226, 41.94015071722487, -85.6199017405226, 41.94015071722487], "geometry": {"coordinates": [-85.6199017405226, 41.94015071722487], "type": "Point"}, "id": "3730", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62008147295207, 41.940149985158605, -85.62008147295207, 41.940149985158605], "geometry": {"coordinates": [-85.62008147295207, 41.940149985158605], "type": "Point"}, "id": "3731", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62026120538155, 41.940149253092336, -85.62026120538155, 41.940149253092336], "geometry": {"coordinates": [-85.62026120538155, 41.940149253092336], "type": "Point"}, "id": "3732", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62044093781101, 41.94014852102605, -85.62044093781101, 41.94014852102605], "geometry": {"coordinates": [-85.62044093781101, 41.94014852102605], "type": "Point"}, "id": "3733", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62062066933818, 41.94014767544849, -85.62062066933818, 41.94014767544849], "geometry": {"coordinates": [-85.62062066933818, 41.94014767544849], "type": "Point"}, "id": "3734", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62080040083866, 41.94014682651429, -85.62080040083866, 41.94014682651429], "geometry": {"coordinates": [-85.62080040083866, 41.94014682651429], "type": "Point"}, "id": "3735", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62098013233916, 41.94014597758008, -85.62098013233916, 41.94014597758008], "geometry": {"coordinates": [-85.62098013233916, 41.94014597758008], "type": "Point"}, "id": "3736", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62115986383964, 41.94014512864585, -85.62115986383964, 41.94014512864585], "geometry": {"coordinates": [-85.62115986383964, 41.94014512864585], "type": "Point"}, "id": "3737", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62133959533654, 41.940144279295744, -85.62133959533654, 41.940144279295744], "geometry": {"coordinates": [-85.62133959533654, 41.940144279295744], "type": "Point"}, "id": "3738", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62151932668694, 41.94014341295998, -85.62151932668694, 41.94014341295998], "geometry": {"coordinates": [-85.62151932668694, 41.94014341295998], "type": "Point"}, "id": "3739", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62169904226714, 41.94014164100784, -85.62169904226714, 41.94014164100784], "geometry": {"coordinates": [-85.62169904226714, 41.94014164100784], "type": "Point"}, "id": "3740", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62187874348291, 41.94013904416966, -85.62187874348291, 41.94013904416966], "geometry": {"coordinates": [-85.62187874348291, 41.94013904416966], "type": "Point"}, "id": "3741", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.6220584446987, 41.940136447331376, -85.6220584446987, 41.940136447331376], "geometry": {"coordinates": [-85.6220584446987, 41.940136447331376], "type": "Point"}, "id": "3742", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62223814591447, 41.940133850492984, -85.62223814591447, 41.940133850492984], "geometry": {"coordinates": [-85.62223814591447, 41.940133850492984], "type": "Point"}, "id": "3743", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62241784713025, 41.94013125365449, -85.62241784713025, 41.94013125365449], "geometry": {"coordinates": [-85.62241784713025, 41.94013125365449], "type": "Point"}, "id": "3744", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62259754834604, 41.94012865681589, -85.62259754834604, 41.94012865681589], "geometry": {"coordinates": [-85.62259754834604, 41.94012865681589], "type": "Point"}, "id": "3745", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62277727263931, 41.94012742123864, -85.62277727263931, 41.94012742123864], "geometry": {"coordinates": [-85.62277727263931, 41.94012742123864], "type": "Point"}, "id": "3746", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62295700474574, 41.940126646531304, -85.62295700474574, 41.940126646531304], "geometry": {"coordinates": [-85.62295700474574, 41.940126646531304], "type": "Point"}, "id": "3747", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62313673685219, 41.940125871823945, -85.62313673685219, 41.940125871823945], "geometry": {"coordinates": [-85.62313673685219, 41.940125871823945], "type": "Point"}, "id": "3748", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.6233164689586, 41.94012509711658, -85.6233164689586, 41.94012509711658], "geometry": {"coordinates": [-85.6233164689586, 41.94012509711658], "type": "Point"}, "id": "3749", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62349620106505, 41.94012432240921, -85.62349620106505, 41.94012432240921], "geometry": {"coordinates": [-85.62349620106505, 41.94012432240921], "type": "Point"}, "id": "3750", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62367591207654, 41.94012562906962, -85.62367591207654, 41.94012562906962], "geometry": {"coordinates": [-85.62367591207654, 41.94012562906962], "type": "Point"}, "id": "3751", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62385560805102, 41.940128419379874, -85.62385560805102, 41.940128419379874], "geometry": {"coordinates": [-85.62385560805102, 41.940128419379874], "type": "Point"}, "id": "3752", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62403530402551, 41.940131209689994, -85.62403530402551, 41.940131209689994], "geometry": {"coordinates": [-85.62403530402551, 41.940131209689994], "type": "Point"}, "id": "3753", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17967745}, "type": "Feature"}, {"bbox": [-85.62663, 41.929251, -85.62663, 41.929251], "geometry": {"coordinates": [-85.62663, 41.929251], "type": "Point"}, "id": "3754", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62681195826798, 41.92924912148587, -85.62681195826798, 41.92924912148587], "geometry": {"coordinates": [-85.62681195826798, 41.92924912148587], "type": "Point"}, "id": "3755", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62699391653592, 41.929247242971684, -85.62699391653592, 41.929247242971684], "geometry": {"coordinates": [-85.62699391653592, 41.929247242971684], "type": "Point"}, "id": "3756", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.6271758748039, 41.92924536445745, -85.6271758748039, 41.92924536445745], "geometry": {"coordinates": [-85.6271758748039, 41.92924536445745], "type": "Point"}, "id": "3757", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62735783307184, 41.92924348594315, -85.62735783307184, 41.92924348594315], "geometry": {"coordinates": [-85.62735783307184, 41.92924348594315], "type": "Point"}, "id": "3758", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62753979133983, 41.9292416074288, -85.62753979133983, 41.9292416074288], "geometry": {"coordinates": [-85.62753979133983, 41.9292416074288], "type": "Point"}, "id": "3759", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62772174960777, 41.9292397289144, -85.62772174960777, 41.9292397289144], "geometry": {"coordinates": [-85.62772174960777, 41.9292397289144], "type": "Point"}, "id": "3760", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62790370787575, 41.929237850399936, -85.62790370787575, 41.929237850399936], "geometry": {"coordinates": [-85.62790370787575, 41.929237850399936], "type": "Point"}, "id": "3761", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62808566614369, 41.92923597188542, -85.62808566614369, 41.92923597188542], "geometry": {"coordinates": [-85.62808566614369, 41.92923597188542], "type": "Point"}, "id": "3762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62826762441166, 41.92923409337085, -85.62826762441166, 41.92923409337085], "geometry": {"coordinates": [-85.62826762441166, 41.92923409337085], "type": "Point"}, "id": "3763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62844958282146, 41.92923222248249, -85.62844958282146, 41.92923222248249], "geometry": {"coordinates": [-85.62844958282146, 41.92923222248249], "type": "Point"}, "id": "3764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62863154129673, 41.92923035511523, -85.62863154129673, 41.92923035511523], "geometry": {"coordinates": [-85.62863154129673, 41.92923035511523], "type": "Point"}, "id": "3765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.628813499772, 41.92922848774792, -85.628813499772, 41.92922848774792], "geometry": {"coordinates": [-85.628813499772, 41.92922848774792], "type": "Point"}, "id": "3766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62899545824726, 41.929226620380554, -85.62899545824726, 41.929226620380554], "geometry": {"coordinates": [-85.62899545824726, 41.929226620380554], "type": "Point"}, "id": "3767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62917741672253, 41.929224753013145, -85.62917741672253, 41.929224753013145], "geometry": {"coordinates": [-85.62917741672253, 41.929224753013145], "type": "Point"}, "id": "3768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.6293593751978, 41.92922288564567, -85.6293593751978, 41.92922288564567], "geometry": {"coordinates": [-85.6293593751978, 41.92922288564567], "type": "Point"}, "id": "3769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62954133367306, 41.92922101827814, -85.62954133367306, 41.92922101827814], "geometry": {"coordinates": [-85.62954133367306, 41.92922101827814], "type": "Point"}, "id": "3770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62972329206838, 41.92921914661049, -85.62972329206838, 41.92921914661049], "geometry": {"coordinates": [-85.62972329206838, 41.92921914661049], "type": "Point"}, "id": "3771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.62990525034432, 41.92921726852345, -85.62990525034432, 41.92921726852345], "geometry": {"coordinates": [-85.62990525034432, 41.92921726852345], "type": "Point"}, "id": "3772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.63008720862025, 41.92921539043634, -85.63008720862025, 41.92921539043634], "geometry": {"coordinates": [-85.63008720862025, 41.92921539043634], "type": "Point"}, "id": "3773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.63026916689621, 41.92921351234919, -85.63026916689621, 41.92921351234919], "geometry": {"coordinates": [-85.63026916689621, 41.92921351234919], "type": "Point"}, "id": "3774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.63045112517214, 41.92921163426198, -85.63045112517214, 41.92921163426198], "geometry": {"coordinates": [-85.63045112517214, 41.92921163426198], "type": "Point"}, "id": "3775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.6306330834481, 41.92920975617471, -85.6306330834481, 41.92920975617471], "geometry": {"coordinates": [-85.6306330834481, 41.92920975617471], "type": "Point"}, "id": "3776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.63081504172403, 41.92920787808739, -85.63081504172403, 41.92920787808739], "geometry": {"coordinates": [-85.63081504172403, 41.92920787808739], "type": "Point"}, "id": "3777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966558}, "type": "Feature"}, {"bbox": [-85.6375025, 41.9458685, -85.6375025, 41.9458685], "geometry": {"coordinates": [-85.6375025, 41.9458685], "type": "Point"}, "id": "3778", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63766829745755, 41.9458137213034, -85.63766829745755, 41.9458137213034], "geometry": {"coordinates": [-85.63766829745755, 41.9458137213034], "type": "Point"}, "id": "3779", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63783409491509, 41.94575894255974, -85.63783409491509, 41.94575894255974], "geometry": {"coordinates": [-85.63783409491509, 41.94575894255974], "type": "Point"}, "id": "3780", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63799989237265, 41.945704163769, -85.63799989237265, 41.945704163769], "geometry": {"coordinates": [-85.63799989237265, 41.945704163769], "type": "Point"}, "id": "3781", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6381656898302, 41.945649384931215, -85.6381656898302, 41.945649384931215], "geometry": {"coordinates": [-85.6381656898302, 41.945649384931215], "type": "Point"}, "id": "3782", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63833148728774, 41.94559460604634, -85.63833148728774, 41.94559460604634], "geometry": {"coordinates": [-85.63833148728774, 41.94559460604634], "type": "Point"}, "id": "3783", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6384972847453, 41.94553982711441, -85.6384972847453, 41.94553982711441], "geometry": {"coordinates": [-85.6384972847453, 41.94553982711441], "type": "Point"}, "id": "3784", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63866117399986, 41.94548212096862, -85.63866117399986, 41.94548212096862], "geometry": {"coordinates": [-85.63866117399986, 41.94548212096862], "type": "Point"}, "id": "3785", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63882167932722, 41.94541922385062, -85.63882167932722, 41.94541922385062], "geometry": {"coordinates": [-85.63882167932722, 41.94541922385062], "type": "Point"}, "id": "3786", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63898318049654, 41.94535777540156, -85.63898318049654, 41.94535777540156], "geometry": {"coordinates": [-85.63898318049654, 41.94535777540156], "type": "Point"}, "id": "3787", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63914616995343, 41.94529856216081, -85.63914616995343, 41.94529856216081], "geometry": {"coordinates": [-85.63914616995343, 41.94529856216081], "type": "Point"}, "id": "3788", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63931285837974, 41.94524529980958, -85.63931285837974, 41.94524529980958], "geometry": {"coordinates": [-85.63931285837974, 41.94524529980958], "type": "Point"}, "id": "3789", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63948167398647, 41.94519593493323, -85.63948167398647, 41.94519593493323], "geometry": {"coordinates": [-85.63948167398647, 41.94519593493323], "type": "Point"}, "id": "3790", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.63965817852906, 41.9451648097585, -85.63965817852906, 41.9451648097585], "geometry": {"coordinates": [-85.63965817852906, 41.9451648097585], "type": "Point"}, "id": "3791", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6398369189877, 41.94514232491862, -85.6398369189877, 41.94514232491862], "geometry": {"coordinates": [-85.6398369189877, 41.94514232491862], "type": "Point"}, "id": "3792", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64001830367528, 41.945139682675965, -85.64001830367528, 41.945139682675965], "geometry": {"coordinates": [-85.64001830367528, 41.945139682675965], "type": "Point"}, "id": "3793", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64019968836284, 41.945137040433195, -85.64019968836284, 41.945137040433195], "geometry": {"coordinates": [-85.64019968836284, 41.945137040433195], "type": "Point"}, "id": "3794", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64038107305043, 41.94513439819031, -85.64038107305043, 41.94513439819031], "geometry": {"coordinates": [-85.64038107305043, 41.94513439819031], "type": "Point"}, "id": "3795", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64056245773801, 41.94513175594733, -85.64056245773801, 41.94513175594733], "geometry": {"coordinates": [-85.64056245773801, 41.94513175594733], "type": "Point"}, "id": "3796", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64074385119142, 41.94512955798169, -85.64074385119142, 41.94512955798169], "geometry": {"coordinates": [-85.64074385119142, 41.94512955798169], "type": "Point"}, "id": "3797", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6409252620118, 41.94512824022762, -85.6409252620118, 41.94512824022762], "geometry": {"coordinates": [-85.6409252620118, 41.94512824022762], "type": "Point"}, "id": "3798", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6411066728322, 41.94512692247352, -85.6411066728322, 41.94512692247352], "geometry": {"coordinates": [-85.6411066728322, 41.94512692247352], "type": "Point"}, "id": "3799", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6412880836526, 41.94512560471939, -85.6412880836526, 41.94512560471939], "geometry": {"coordinates": [-85.6412880836526, 41.94512560471939], "type": "Point"}, "id": "3800", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64146949447299, 41.94512428696523, -85.64146949447299, 41.94512428696523], "geometry": {"coordinates": [-85.64146949447299, 41.94512428696523], "type": "Point"}, "id": "3801", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64165090529337, 41.945122969211056, -85.64165090529337, 41.945122969211056], "geometry": {"coordinates": [-85.64165090529337, 41.945122969211056], "type": "Point"}, "id": "3802", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64183231611378, 41.945121651456844, -85.64183231611378, 41.945121651456844], "geometry": {"coordinates": [-85.64183231611378, 41.945121651456844], "type": "Point"}, "id": "3803", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6420137120227, 41.94511960100323, -85.6420137120227, 41.94511960100323], "geometry": {"coordinates": [-85.6420137120227, 41.94511960100323], "type": "Point"}, "id": "3804", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64219509335224, 41.94511683416965, -85.64219509335224, 41.94511683416965], "geometry": {"coordinates": [-85.64219509335224, 41.94511683416965], "type": "Point"}, "id": "3805", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6423764746818, 41.945114067335965, -85.6423764746818, 41.945114067335965], "geometry": {"coordinates": [-85.6423764746818, 41.945114067335965], "type": "Point"}, "id": "3806", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64255785601135, 41.945111300502155, -85.64255785601135, 41.945111300502155], "geometry": {"coordinates": [-85.64255785601135, 41.945111300502155], "type": "Point"}, "id": "3807", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6427392373409, 41.94510853366822, -85.6427392373409, 41.94510853366822], "geometry": {"coordinates": [-85.6427392373409, 41.94510853366822], "type": "Point"}, "id": "3808", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.64292061867044, 41.94510576683417, -85.64292061867044, 41.94510576683417], "geometry": {"coordinates": [-85.64292061867044, 41.94510576683417], "type": "Point"}, "id": "3809", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966281}, "type": "Feature"}, {"bbox": [-85.6335028, 41.964788600000006, -85.6335028, 41.964788600000006], "geometry": {"coordinates": [-85.6335028, 41.964788600000006], "type": "Point"}, "id": "3810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.6336909121877, 41.964815798084885, -85.6336909121877, 41.964815798084885], "geometry": {"coordinates": [-85.6336909121877, 41.964815798084885], "type": "Point"}, "id": "3811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.6338753789681, 41.96485430453375, -85.6338753789681, 41.96485430453375], "geometry": {"coordinates": [-85.6338753789681, 41.96485430453375], "type": "Point"}, "id": "3812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.6340647748783, 41.96487330579076, -85.6340647748783, 41.96487330579076], "geometry": {"coordinates": [-85.6340647748783, 41.96487330579076], "type": "Point"}, "id": "3813", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.63425640615873, 41.964874254343094, -85.63425640615873, 41.964874254343094], "geometry": {"coordinates": [-85.63425640615873, 41.964874254343094], "type": "Point"}, "id": "3814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.63444803743914, 41.964875202895406, -85.63444803743914, 41.964875202895406], "geometry": {"coordinates": [-85.63444803743914, 41.964875202895406], "type": "Point"}, "id": "3815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.63463966871957, 41.964876151447726, -85.63463966871957, 41.964876151447726], "geometry": {"coordinates": [-85.63463966871957, 41.964876151447726], "type": "Point"}, "id": "3816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1033167061}, "type": "Feature"}, {"bbox": [-85.624703, 41.925597, -85.624703, 41.925597], "geometry": {"coordinates": [-85.624703, 41.925597], "type": "Point"}, "id": "3817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.624704002439, 41.92573287077313, -85.624704002439, 41.92573287077313], "geometry": {"coordinates": [-85.624704002439, 41.92573287077313], "type": "Point"}, "id": "3818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470500487801, 41.925868741256906, -85.62470500487801, 41.925868741256906], "geometry": {"coordinates": [-85.62470500487801, 41.925868741256906], "type": "Point"}, "id": "3819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470600731704, 41.92600461145132, -85.62470600731704, 41.92600461145132], "geometry": {"coordinates": [-85.62470600731704, 41.92600461145132], "type": "Point"}, "id": "3820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470700975605, 41.92614048135638, -85.62470700975605, 41.92614048135638], "geometry": {"coordinates": [-85.62470700975605, 41.92614048135638], "type": "Point"}, "id": "3821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470801219506, 41.926276350972074, -85.62470801219506, 41.926276350972074], "geometry": {"coordinates": [-85.62470801219506, 41.926276350972074], "type": "Point"}, "id": "3822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62470901463408, 41.92641222029842, -85.62470901463408, 41.92641222029842], "geometry": {"coordinates": [-85.62470901463408, 41.92641222029842], "type": "Point"}, "id": "3823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247100170731, 41.926548089335405, -85.6247100170731, 41.926548089335405], "geometry": {"coordinates": [-85.6247100170731, 41.926548089335405], "type": "Point"}, "id": "3824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247110195121, 41.92668395808303, -85.6247110195121, 41.92668395808303], "geometry": {"coordinates": [-85.6247110195121, 41.92668395808303], "type": "Point"}, "id": "3825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471202195111, 41.9268198265413, -85.62471202195111, 41.9268198265413], "geometry": {"coordinates": [-85.62471202195111, 41.9268198265413], "type": "Point"}, "id": "3826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471302439012, 41.9269556947102, -85.62471302439012, 41.9269556947102], "geometry": {"coordinates": [-85.62471302439012, 41.9269556947102], "type": "Point"}, "id": "3827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471402682915, 41.92709156258975, -85.62471402682915, 41.92709156258975], "geometry": {"coordinates": [-85.62471402682915, 41.92709156258975], "type": "Point"}, "id": "3828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471502926816, 41.927227430179954, -85.62471502926816, 41.927227430179954], "geometry": {"coordinates": [-85.62471502926816, 41.927227430179954], "type": "Point"}, "id": "3829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471601119718, 41.927363297537454, -85.62471601119718, 41.927363297537454], "geometry": {"coordinates": [-85.62471601119718, 41.927363297537454], "type": "Point"}, "id": "3830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471636520165, 41.927499166340596, -85.62471636520165, 41.927499166340596], "geometry": {"coordinates": [-85.62471636520165, 41.927499166340596], "type": "Point"}, "id": "3831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471671920609, 41.927635034854376, -85.62471671920609, 41.927635034854376], "geometry": {"coordinates": [-85.62471671920609, 41.927635034854376], "type": "Point"}, "id": "3832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471707321058, 41.92777090307878, -85.62471707321058, 41.92777090307878], "geometry": {"coordinates": [-85.62471707321058, 41.92777090307878], "type": "Point"}, "id": "3833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471742721503, 41.92790677101382, -85.62471742721503, 41.92790677101382], "geometry": {"coordinates": [-85.62471742721503, 41.92790677101382], "type": "Point"}, "id": "3834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471778121949, 41.9280426386595, -85.62471778121949, 41.9280426386595], "geometry": {"coordinates": [-85.62471778121949, 41.9280426386595], "type": "Point"}, "id": "3835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471813522394, 41.928178506015804, -85.62471813522394, 41.928178506015804], "geometry": {"coordinates": [-85.62471813522394, 41.928178506015804], "type": "Point"}, "id": "3836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471848922843, 41.92831437308275, -85.62471848922843, 41.92831437308275], "geometry": {"coordinates": [-85.62471848922843, 41.92831437308275], "type": "Point"}, "id": "3837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471884323288, 41.92845023986032, -85.62471884323288, 41.92845023986032], "geometry": {"coordinates": [-85.62471884323288, 41.92845023986032], "type": "Point"}, "id": "3838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471919723734, 41.928586106348526, -85.62471919723734, 41.928586106348526], "geometry": {"coordinates": [-85.62471919723734, 41.928586106348526], "type": "Point"}, "id": "3839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247195512418, 41.928721972547365, -85.6247195512418, 41.928721972547365], "geometry": {"coordinates": [-85.6247195512418, 41.928721972547365], "type": "Point"}, "id": "3840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62471990524627, 41.928857838456835, -85.62471990524627, 41.928857838456835], "geometry": {"coordinates": [-85.62471990524627, 41.928857838456835], "type": "Point"}, "id": "3841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472025925074, 41.928993704076944, -85.62472025925074, 41.928993704076944], "geometry": {"coordinates": [-85.62472025925074, 41.928993704076944], "type": "Point"}, "id": "3842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472061325518, 41.92912956940767, -85.62472061325518, 41.92912956940767], "geometry": {"coordinates": [-85.62472061325518, 41.92912956940767], "type": "Point"}, "id": "3843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472096725965, 41.929265434449036, -85.62472096725965, 41.929265434449036], "geometry": {"coordinates": [-85.62472096725965, 41.929265434449036], "type": "Point"}, "id": "3844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247237035584, 41.929401283026074, -85.6247237035584, 41.929401283026074], "geometry": {"coordinates": [-85.6247237035584, 41.929401283026074], "type": "Point"}, "id": "3845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472668263902, 41.929537129665405, -85.62472668263902, 41.929537129665405], "geometry": {"coordinates": [-85.62472668263902, 41.929537129665405], "type": "Point"}, "id": "3846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62472966171961, 41.92967297601544, -85.62472966171961, 41.92967297601544], "geometry": {"coordinates": [-85.62472966171961, 41.92967297601544], "type": "Point"}, "id": "3847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62473264080022, 41.92980882207619, -85.62473264080022, 41.92980882207619], "geometry": {"coordinates": [-85.62473264080022, 41.92980882207619], "type": "Point"}, "id": "3848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62473561988082, 41.92994466784764, -85.62473561988082, 41.92994466784764], "geometry": {"coordinates": [-85.62473561988082, 41.92994466784764], "type": "Point"}, "id": "3849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62473859896143, 41.930080513329806, -85.62473859896143, 41.930080513329806], "geometry": {"coordinates": [-85.62473859896143, 41.930080513329806], "type": "Point"}, "id": "3850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474123725114, 41.93021636143959, -85.62474123725114, 41.93021636143959], "geometry": {"coordinates": [-85.62474123725114, 41.93021636143959], "type": "Point"}, "id": "3851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247424599828, 41.93035222137621, -85.6247424599828, 41.93035222137621], "geometry": {"coordinates": [-85.6247424599828, 41.93035222137621], "type": "Point"}, "id": "3852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474368271445, 41.930488081023455, -85.62474368271445, 41.930488081023455], "geometry": {"coordinates": [-85.62474368271445, 41.930488081023455], "type": "Point"}, "id": "3853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474490544612, 41.93062394038136, -85.62474490544612, 41.93062394038136], "geometry": {"coordinates": [-85.62474490544612, 41.93062394038136], "type": "Point"}, "id": "3854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474612817775, 41.930759799449895, -85.62474612817775, 41.930759799449895], "geometry": {"coordinates": [-85.62474612817775, 41.930759799449895], "type": "Point"}, "id": "3855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474735090942, 41.93089565822908, -85.62474735090942, 41.93089565822908], "geometry": {"coordinates": [-85.62474735090942, 41.93089565822908], "type": "Point"}, "id": "3856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474857364107, 41.9310315167189, -85.62474857364107, 41.9310315167189], "geometry": {"coordinates": [-85.62474857364107, 41.9310315167189], "type": "Point"}, "id": "3857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62474979637271, 41.93116737491937, -85.62474979637271, 41.93116737491937], "geometry": {"coordinates": [-85.62474979637271, 41.93116737491937], "type": "Point"}, "id": "3858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62475346546672, 41.93130320601567, -85.62475346546672, 41.93130320601567], "geometry": {"coordinates": [-85.62475346546672, 41.93130320601567], "type": "Point"}, "id": "3859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62475762336851, 41.93143903146487, -85.62475762336851, 41.93143903146487], "geometry": {"coordinates": [-85.62475762336851, 41.93143903146487], "type": "Point"}, "id": "3860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247617812703, 41.93157485662485, -85.6247617812703, 41.93157485662485], "geometry": {"coordinates": [-85.6247617812703, 41.93157485662485], "type": "Point"}, "id": "3861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62476593917206, 41.93171068149561, -85.62476593917206, 41.93171068149561], "geometry": {"coordinates": [-85.62476593917206, 41.93171068149561], "type": "Point"}, "id": "3862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477009707385, 41.93184650607715, -85.62477009707385, 41.93184650607715], "geometry": {"coordinates": [-85.62477009707385, 41.93184650607715], "type": "Point"}, "id": "3863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477425497562, 41.93198233036946, -85.62477425497562, 41.93198233036946], "geometry": {"coordinates": [-85.62477425497562, 41.93198233036946], "type": "Point"}, "id": "3864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477841287742, 41.93211815437255, -85.62477841287742, 41.93211815437255], "geometry": {"coordinates": [-85.62477841287742, 41.93211815437255], "type": "Point"}, "id": "3865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477967536663, 41.93225399951374, -85.62477967536663, 41.93225399951374], "geometry": {"coordinates": [-85.62477967536663, 41.93225399951374], "type": "Point"}, "id": "3866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477915031424, 41.932389857594174, -85.62477915031424, 41.932389857594174], "geometry": {"coordinates": [-85.62477915031424, 41.932389857594174], "type": "Point"}, "id": "3867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477862526187, 41.93252571538524, -85.62477862526187, 41.93252571538524], "geometry": {"coordinates": [-85.62477862526187, 41.93252571538524], "type": "Point"}, "id": "3868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.6247781002095, 41.93266157288693, -85.6247781002095, 41.93266157288693], "geometry": {"coordinates": [-85.6247781002095, 41.93266157288693], "type": "Point"}, "id": "3869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477757515713, 41.93279743009926, -85.62477757515713, 41.93279743009926], "geometry": {"coordinates": [-85.62477757515713, 41.93279743009926], "type": "Point"}, "id": "3870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477705010475, 41.932933287022216, -85.62477705010475, 41.932933287022216], "geometry": {"coordinates": [-85.62477705010475, 41.932933287022216], "type": "Point"}, "id": "3871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.62477652505237, 41.9330691436558, -85.62477652505237, 41.9330691436558], "geometry": {"coordinates": [-85.62477652505237, 41.9330691436558], "type": "Point"}, "id": "3872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966211}, "type": "Feature"}, {"bbox": [-85.63857049999999, 41.951159100000005, -85.63857049999999, 41.951159100000005], "geometry": {"coordinates": [-85.63857049999999, 41.951159100000005], "type": "Point"}, "id": "3873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63861235306312, 41.9512859185629, -85.63861235306312, 41.9512859185629], "geometry": {"coordinates": [-85.63861235306312, 41.9512859185629], "type": "Point"}, "id": "3874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63861830060095, 41.95142041470863, -85.63861830060095, 41.95142041470863], "geometry": {"coordinates": [-85.63861830060095, 41.95142041470863], "type": "Point"}, "id": "3875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63862424813877, 41.951554910570565, -85.63862424813877, 41.951554910570565], "geometry": {"coordinates": [-85.63862424813877, 41.951554910570565], "type": "Point"}, "id": "3876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63863019567658, 41.95168940614871, -85.63863019567658, 41.95168940614871], "geometry": {"coordinates": [-85.63863019567658, 41.95168940614871], "type": "Point"}, "id": "3877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63863614321441, 41.95182390144307, -85.63863614321441, 41.95182390144307], "geometry": {"coordinates": [-85.63863614321441, 41.95182390144307], "type": "Point"}, "id": "3878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63864209075223, 41.95195839645364, -85.63864209075223, 41.95195839645364], "geometry": {"coordinates": [-85.63864209075223, 41.95195839645364], "type": "Point"}, "id": "3879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63864803829006, 41.95209289118043, -85.63864803829006, 41.95209289118043], "geometry": {"coordinates": [-85.63864803829006, 41.95209289118043], "type": "Point"}, "id": "3880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865398582789, 41.952227385623424, -85.63865398582789, 41.952227385623424], "geometry": {"coordinates": [-85.63865398582789, 41.952227385623424], "type": "Point"}, "id": "3881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386599333657, 41.952361879782636, -85.6386599333657, 41.952361879782636], "geometry": {"coordinates": [-85.6386599333657, 41.952361879782636], "type": "Point"}, "id": "3882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63866039560608, 41.95249643241697, -85.63866039560608, 41.95249643241697], "geometry": {"coordinates": [-85.63866039560608, 41.95249643241697], "type": "Point"}, "id": "3883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865965913266, 41.952630997607955, -85.63865965913266, 41.952630997607955], "geometry": {"coordinates": [-85.63865965913266, 41.952630997607955], "type": "Point"}, "id": "3884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386589226592, 41.95276556251485, -85.6386589226592, 41.95276556251485], "geometry": {"coordinates": [-85.6386589226592, 41.95276556251485], "type": "Point"}, "id": "3885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386581861858, 41.95290012713765, -85.6386581861858, 41.95290012713765], "geometry": {"coordinates": [-85.6386581861858, 41.95290012713765], "type": "Point"}, "id": "3886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865744971237, 41.95303469147637, -85.63865744971237, 41.95303469147637], "geometry": {"coordinates": [-85.63865744971237, 41.95303469147637], "type": "Point"}, "id": "3887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865671323893, 41.953169255530995, -85.63865671323893, 41.953169255530995], "geometry": {"coordinates": [-85.63865671323893, 41.953169255530995], "type": "Point"}, "id": "3888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386559767655, 41.953303819301524, -85.6386559767655, 41.953303819301524], "geometry": {"coordinates": [-85.6386559767655, 41.953303819301524], "type": "Point"}, "id": "3889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865524029208, 41.953438382787965, -85.63865524029208, 41.953438382787965], "geometry": {"coordinates": [-85.63865524029208, 41.953438382787965], "type": "Point"}, "id": "3890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865450381867, 41.95357294599031, -85.63865450381867, 41.95357294599031], "geometry": {"coordinates": [-85.63865450381867, 41.95357294599031], "type": "Point"}, "id": "3891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63865572687847, 41.95370748985685, -85.63865572687847, 41.95370748985685], "geometry": {"coordinates": [-85.63865572687847, 41.95370748985685], "type": "Point"}, "id": "3892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.6386611933476, 41.95384199218258, -85.6386611933476, 41.95384199218258], "geometry": {"coordinates": [-85.6386611933476, 41.95384199218258], "type": "Point"}, "id": "3893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63866665981674, 41.953976494224484, -85.63866665981674, 41.953976494224484], "geometry": {"coordinates": [-85.63866665981674, 41.953976494224484], "type": "Point"}, "id": "3894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63867212628588, 41.95411099598255, -85.63867212628588, 41.95411099598255], "geometry": {"coordinates": [-85.63867212628588, 41.95411099598255], "type": "Point"}, "id": "3895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63867759275503, 41.95424549745677, -85.63867759275503, 41.95424549745677], "geometry": {"coordinates": [-85.63867759275503, 41.95424549745677], "type": "Point"}, "id": "3896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63868305922416, 41.95437999864716, -85.63868305922416, 41.95437999864716], "geometry": {"coordinates": [-85.63868305922416, 41.95437999864716], "type": "Point"}, "id": "3897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.63868852569331, 41.95451449955371, -85.63868852569331, 41.95451449955371], "geometry": {"coordinates": [-85.63868852569331, 41.95451449955371], "type": "Point"}, "id": "3898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965149}, "type": "Feature"}, {"bbox": [-85.61917089999999, 41.9567483, -85.61917089999999, 41.9567483], "geometry": {"coordinates": [-85.61917089999999, 41.9567483], "type": "Point"}, "id": "3899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1056815666}, "type": "Feature"}, {"bbox": [-85.61898446666665, 41.95678943335988, -85.61898446666665, 41.95678943335988], "geometry": {"coordinates": [-85.61898446666665, 41.95678943335988], "type": "Point"}, "id": "3900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1056815666}, "type": "Feature"}, {"bbox": [-85.61879803333332, 41.95683056669321, -85.61879803333332, 41.95683056669321], "geometry": {"coordinates": [-85.61879803333332, 41.95683056669321], "type": "Point"}, "id": "3901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1056815666}, "type": "Feature"}, {"bbox": [-85.632801, 41.944058600000005, -85.632801, 41.944058600000005], "geometry": {"coordinates": [-85.632801, 41.944058600000005], "type": "Point"}, "id": "3902", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 143497377}, "type": "Feature"}, {"bbox": [-85.63294500543991, 41.94420634723368, -85.63294500543991, 41.94420634723368], "geometry": {"coordinates": [-85.63294500543991, 41.94420634723368], "type": "Point"}, "id": "3903", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 143497377}, "type": "Feature"}, {"bbox": [-85.6276, 41.937412, -85.6276, 41.937412], "geometry": {"coordinates": [-85.6276, 41.937412], "type": "Point"}, "id": "3904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62748356534384, 41.93751905739353, -85.62748356534384, 41.93751905739353], "geometry": {"coordinates": [-85.62748356534384, 41.93751905739353], "type": "Point"}, "id": "3905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62736763495806, 41.93762635211607, -85.62736763495806, 41.93762635211607], "geometry": {"coordinates": [-85.62736763495806, 41.93762635211607], "type": "Point"}, "id": "3906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62726805798847, 41.93774234671138, -85.62726805798847, 41.93774234671138], "geometry": {"coordinates": [-85.62726805798847, 41.93774234671138], "type": "Point"}, "id": "3907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62718880167152, 41.93786644084367, -85.62718880167152, 41.93786644084367], "geometry": {"coordinates": [-85.62718880167152, 41.93786644084367], "type": "Point"}, "id": "3908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62713772799678, 41.93799858703852, -85.62713772799678, 41.93799858703852], "geometry": {"coordinates": [-85.62713772799678, 41.93799858703852], "type": "Point"}, "id": "3909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62711235031239, 41.93813499209264, -85.62711235031239, 41.93813499209264], "geometry": {"coordinates": [-85.62711235031239, 41.93813499209264], "type": "Point"}, "id": "3910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710724882345, 41.938272518199035, -85.62710724882345, 41.938272518199035], "geometry": {"coordinates": [-85.62710724882345, 41.938272518199035], "type": "Point"}, "id": "3911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710523129701, 41.93841021456231, -85.62710523129701, 41.93841021456231], "geometry": {"coordinates": [-85.62710523129701, 41.93841021456231], "type": "Point"}, "id": "3912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710321377054, 41.93854791062827, -85.62710321377054, 41.93854791062827], "geometry": {"coordinates": [-85.62710321377054, 41.93854791062827], "type": "Point"}, "id": "3913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710119624407, 41.938685606396916, -85.62710119624407, 41.938685606396916], "geometry": {"coordinates": [-85.62710119624407, 41.938685606396916], "type": "Point"}, "id": "3914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710136274127, 41.9388233089581, -85.62710136274127, 41.9388233089581], "geometry": {"coordinates": [-85.62710136274127, 41.9388233089581], "type": "Point"}, "id": "3915", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.6271017645681, 41.93896101198587, -85.6271017645681, 41.93896101198587], "geometry": {"coordinates": [-85.6271017645681, 41.93896101198587], "type": "Point"}, "id": "3916", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710216639493, 41.939098714716295, -85.62710216639493, 41.939098714716295], "geometry": {"coordinates": [-85.62710216639493, 41.939098714716295], "type": "Point"}, "id": "3917", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710471095234, 41.93923639986876, -85.62710471095234, 41.93923639986876], "geometry": {"coordinates": [-85.62710471095234, 41.93923639986876], "type": "Point"}, "id": "3918", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62710832283422, 41.93937407611627, -85.62710832283422, 41.93937407611627], "geometry": {"coordinates": [-85.62710832283422, 41.93937407611627], "type": "Point"}, "id": "3919", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62711193471608, 41.939511752066544, -85.62711193471608, 41.939511752066544], "geometry": {"coordinates": [-85.62711193471608, 41.939511752066544], "type": "Point"}, "id": "3920", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62711554659796, 41.93964942771957, -85.62711554659796, 41.93964942771957], "geometry": {"coordinates": [-85.62711554659796, 41.93964942771957], "type": "Point"}, "id": "3921", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62711915847983, 41.93978710307536, -85.62711915847983, 41.93978710307536], "geometry": {"coordinates": [-85.62711915847983, 41.93978710307536], "type": "Point"}, "id": "3922", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62712277036171, 41.93992477813391, -85.62712277036171, 41.93992477813391], "geometry": {"coordinates": [-85.62712277036171, 41.93992477813391], "type": "Point"}, "id": "3923", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.62712638224359, 41.94006245289522, -85.62712638224359, 41.94006245289522], "geometry": {"coordinates": [-85.62712638224359, 41.94006245289522], "type": "Point"}, "id": "3924", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966740}, "type": "Feature"}, {"bbox": [-85.621459, 41.944756, -85.621459, 41.944756], "geometry": {"coordinates": [-85.621459, 41.944756], "type": "Point"}, "id": "3925", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62164007354144, 41.94475318422782, -85.62164007354144, 41.94475318422782], "geometry": {"coordinates": [-85.62164007354144, 41.94475318422782], "type": "Point"}, "id": "3926", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62182114708291, 41.94475036845552, -85.62182114708291, 41.94475036845552], "geometry": {"coordinates": [-85.62182114708291, 41.94475036845552], "type": "Point"}, "id": "3927", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62200222062437, 41.9447475526831, -85.62200222062437, 41.9447475526831], "geometry": {"coordinates": [-85.62200222062437, 41.9447475526831], "type": "Point"}, "id": "3928", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62218329416584, 41.94474473691055, -85.62218329416584, 41.94474473691055], "geometry": {"coordinates": [-85.62218329416584, 41.94474473691055], "type": "Point"}, "id": "3929", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62236436770728, 41.944741921137876, -85.62236436770728, 41.944741921137876], "geometry": {"coordinates": [-85.62236436770728, 41.944741921137876], "type": "Point"}, "id": "3930", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62254544124873, 41.94473910536507, -85.62254544124873, 41.94473910536507], "geometry": {"coordinates": [-85.62254544124873, 41.94473910536507], "type": "Point"}, "id": "3931", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62272652457538, 41.94473679590857, -85.62272652457538, 41.94473679590857], "geometry": {"coordinates": [-85.62272652457538, 41.94473679590857], "type": "Point"}, "id": "3932", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62290763211566, 41.94473573933881, -85.62290763211566, 41.94473573933881], "geometry": {"coordinates": [-85.62290763211566, 41.94473573933881], "type": "Point"}, "id": "3933", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.6230887396559, 41.944734682769024, -85.6230887396559, 41.944734682769024], "geometry": {"coordinates": [-85.6230887396559, 41.944734682769024], "type": "Point"}, "id": "3934", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62326984719616, 41.94473362619922, -85.62326984719616, 41.94473362619922], "geometry": {"coordinates": [-85.62326984719616, 41.94473362619922], "type": "Point"}, "id": "3935", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.6234509547364, 41.944732569629416, -85.6234509547364, 41.944732569629416], "geometry": {"coordinates": [-85.6234509547364, 41.944732569629416], "type": "Point"}, "id": "3936", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62363206227666, 41.94473151305957, -85.62363206227666, 41.94473151305957], "geometry": {"coordinates": [-85.62363206227666, 41.94473151305957], "type": "Point"}, "id": "3937", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.6238131698169, 41.94473045648972, -85.6238131698169, 41.94473045648972], "geometry": {"coordinates": [-85.6238131698169, 41.94473045648972], "type": "Point"}, "id": "3938", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62399427735716, 41.94472939991986, -85.62399427735716, 41.94472939991986], "geometry": {"coordinates": [-85.62399427735716, 41.94472939991986], "type": "Point"}, "id": "3939", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.6241753848974, 41.94472834334997, -85.6241753848974, 41.94472834334997], "geometry": {"coordinates": [-85.6241753848974, 41.94472834334997], "type": "Point"}, "id": "3940", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62435649243767, 41.944727286780065, -85.62435649243767, 41.944727286780065], "geometry": {"coordinates": [-85.62435649243767, 41.944727286780065], "type": "Point"}, "id": "3941", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62453759997791, 41.944726230210144, -85.62453759997791, 41.944726230210144], "geometry": {"coordinates": [-85.62453759997791, 41.944726230210144], "type": "Point"}, "id": "3942", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62471870751817, 41.94472517364021, -85.62471870751817, 41.94472517364021], "geometry": {"coordinates": [-85.62471870751817, 41.94472517364021], "type": "Point"}, "id": "3943", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.6248998131041, 41.94472400605907, -85.6248998131041, 41.94472400605907], "geometry": {"coordinates": [-85.6248998131041, 41.94472400605907], "type": "Point"}, "id": "3944", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62508089574533, 41.944721535146435, -85.62508089574533, 41.944721535146435], "geometry": {"coordinates": [-85.62508089574533, 41.944721535146435], "type": "Point"}, "id": "3945", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62526197838658, 41.94471906423372, -85.62526197838658, 41.94471906423372], "geometry": {"coordinates": [-85.62526197838658, 41.94471906423372], "type": "Point"}, "id": "3946", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62544306102781, 41.944716593320905, -85.62544306102781, 41.944716593320905], "geometry": {"coordinates": [-85.62544306102781, 41.944716593320905], "type": "Point"}, "id": "3947", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62562414366906, 41.944714122407994, -85.62562414366906, 41.944714122407994], "geometry": {"coordinates": [-85.62562414366906, 41.944714122407994], "type": "Point"}, "id": "3948", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62580522631029, 41.944711651494984, -85.62580522631029, 41.944711651494984], "geometry": {"coordinates": [-85.62580522631029, 41.944711651494984], "type": "Point"}, "id": "3949", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62598630895152, 41.94470918058188, -85.62598630895152, 41.94470918058188], "geometry": {"coordinates": [-85.62598630895152, 41.94470918058188], "type": "Point"}, "id": "3950", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62616739159277, 41.94470670966868, -85.62616739159277, 41.94470670966868], "geometry": {"coordinates": [-85.62616739159277, 41.94470670966868], "type": "Point"}, "id": "3951", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.626348474234, 41.944704238755385, -85.626348474234, 41.944704238755385], "geometry": {"coordinates": [-85.626348474234, 41.944704238755385], "type": "Point"}, "id": "3952", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62652955687524, 41.944701767842, -85.62652955687524, 41.944701767842], "geometry": {"coordinates": [-85.62652955687524, 41.944701767842], "type": "Point"}, "id": "3953", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62671063951647, 41.94469929692851, -85.62671063951647, 41.94469929692851], "geometry": {"coordinates": [-85.62671063951647, 41.94469929692851], "type": "Point"}, "id": "3954", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62689172215772, 41.94469682601493, -85.62689172215772, 41.94469682601493], "geometry": {"coordinates": [-85.62689172215772, 41.94469682601493], "type": "Point"}, "id": "3955", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62707280479896, 41.94469435510125, -85.62707280479896, 41.94469435510125], "geometry": {"coordinates": [-85.62707280479896, 41.94469435510125], "type": "Point"}, "id": "3956", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.6272538874402, 41.944691884187485, -85.6272538874402, 41.944691884187485], "geometry": {"coordinates": [-85.6272538874402, 41.944691884187485], "type": "Point"}, "id": "3957", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62743497225115, 41.944689511068205, -85.62743497225115, 41.944689511068205], "geometry": {"coordinates": [-85.62743497225115, 41.944689511068205], "type": "Point"}, "id": "3958", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62761606590712, 41.944687536618076, -85.62761606590712, 41.944687536618076], "geometry": {"coordinates": [-85.62761606590712, 41.944687536618076], "type": "Point"}, "id": "3959", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62779715956307, 41.94468556216789, -85.62779715956307, 41.94468556216789], "geometry": {"coordinates": [-85.62779715956307, 41.94468556216789], "type": "Point"}, "id": "3960", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62797825321904, 41.94468358771764, -85.62797825321904, 41.94468358771764], "geometry": {"coordinates": [-85.62797825321904, 41.94468358771764], "type": "Point"}, "id": "3961", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62815934687501, 41.94468161326733, -85.62815934687501, 41.94468161326733], "geometry": {"coordinates": [-85.62815934687501, 41.94468161326733], "type": "Point"}, "id": "3962", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62834044053098, 41.94467963881696, -85.62834044053098, 41.94467963881696], "geometry": {"coordinates": [-85.62834044053098, 41.94467963881696], "type": "Point"}, "id": "3963", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62852153418696, 41.94467766436652, -85.62852153418696, 41.94467766436652], "geometry": {"coordinates": [-85.62852153418696, 41.94467766436652], "type": "Point"}, "id": "3964", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62870263304673, 41.94467604053748, -85.62870263304673, 41.94467604053748], "geometry": {"coordinates": [-85.62870263304673, 41.94467604053748], "type": "Point"}, "id": "3965", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.6288837411724, 41.94467504102055, -85.6288837411724, 41.94467504102055], "geometry": {"coordinates": [-85.6288837411724, 41.94467504102055], "type": "Point"}, "id": "3966", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62906484929805, 41.94467404150362, -85.62906484929805, 41.94467404150362], "geometry": {"coordinates": [-85.62906484929805, 41.94467404150362], "type": "Point"}, "id": "3967", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.6292459574237, 41.944673041986654, -85.6292459574237, 41.944673041986654], "geometry": {"coordinates": [-85.6292459574237, 41.944673041986654], "type": "Point"}, "id": "3968", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62942706554938, 41.944672042469676, -85.62942706554938, 41.944672042469676], "geometry": {"coordinates": [-85.62942706554938, 41.944672042469676], "type": "Point"}, "id": "3969", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62960817364224, 41.9446710396721, -85.62960817364224, 41.9446710396721], "geometry": {"coordinates": [-85.62960817364224, 41.9446710396721], "type": "Point"}, "id": "3970", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62978928172457, 41.94467003582379, -85.62978928172457, 41.94467003582379], "geometry": {"coordinates": [-85.62978928172457, 41.94467003582379], "type": "Point"}, "id": "3971", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62997038980694, 41.94466903197546, -85.62997038980694, 41.94466903197546], "geometry": {"coordinates": [-85.62997038980694, 41.94466903197546], "type": "Point"}, "id": "3972", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.63015083070019, 41.94465906542047, -85.63015083070019, 41.94465906542047], "geometry": {"coordinates": [-85.63015083070019, 41.94465906542047], "type": "Point"}, "id": "3973", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.63032753530332, 41.94462955458776, -85.63032753530332, 41.94462955458776], "geometry": {"coordinates": [-85.63032753530332, 41.94462955458776], "type": "Point"}, "id": "3974", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.63050332824264, 41.94459714370316, -85.63050332824264, 41.94459714370316], "geometry": {"coordinates": [-85.63050332824264, 41.94459714370316], "type": "Point"}, "id": "3975", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.63067912118197, 41.944564732802085, -85.63067912118197, 41.944564732802085], "geometry": {"coordinates": [-85.63067912118197, 41.944564732802085], "type": "Point"}, "id": "3976", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.63085491412133, 41.94453232188454, -85.63085491412133, 41.94453232188454], "geometry": {"coordinates": [-85.63085491412133, 41.94453232188454], "type": "Point"}, "id": "3977", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.63103070706066, 41.94449991095051, -85.63103070706066, 41.94449991095051], "geometry": {"coordinates": [-85.63103070706066, 41.94449991095051], "type": "Point"}, "id": "3978", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074896}, "type": "Feature"}, {"bbox": [-85.62863899999999, 41.953725, -85.62863899999999, 41.953725], "geometry": {"coordinates": [-85.62863899999999, 41.953725], "type": "Point"}, "id": "3979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62882026480725, 41.953725, -85.62882026480725, 41.953725], "geometry": {"coordinates": [-85.62882026480725, 41.953725], "type": "Point"}, "id": "3980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62900152961447, 41.953725, -85.62900152961447, 41.953725], "geometry": {"coordinates": [-85.62900152961447, 41.953725], "type": "Point"}, "id": "3981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6291827839147, 41.95372607692594, -85.6291827839147, 41.95372607692594], "geometry": {"coordinates": [-85.6291827839147, 41.95372607692594], "type": "Point"}, "id": "3982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62936402963716, 41.95372803303495, -85.62936402963716, 41.95372803303495], "geometry": {"coordinates": [-85.62936402963716, 41.95372803303495], "type": "Point"}, "id": "3983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6295452753596, 41.9537299891439, -85.6295452753596, 41.9537299891439], "geometry": {"coordinates": [-85.6295452753596, 41.9537299891439], "type": "Point"}, "id": "3984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62972651655252, 41.95373065810141, -85.62972651655252, 41.95373065810141], "geometry": {"coordinates": [-85.62972651655252, 41.95373065810141], "type": "Point"}, "id": "3985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.62990774602518, 41.95372799652047, -85.62990774602518, 41.95372799652047], "geometry": {"coordinates": [-85.62990774602518, 41.95372799652047], "type": "Point"}, "id": "3986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63008897549783, 41.95372533493942, -85.63008897549783, 41.95372533493942], "geometry": {"coordinates": [-85.63008897549783, 41.95372533493942], "type": "Point"}, "id": "3987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63027020497047, 41.95372267335826, -85.63027020497047, 41.95372267335826], "geometry": {"coordinates": [-85.63027020497047, 41.95372267335826], "type": "Point"}, "id": "3988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63045143501783, 41.95372003833833, -85.63045143501783, 41.95372003833833], "geometry": {"coordinates": [-85.63045143501783, 41.95372003833833], "type": "Point"}, "id": "3989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63063266420136, 41.95371736589155, -85.63063266420136, 41.95371736589155], "geometry": {"coordinates": [-85.63063266420136, 41.95371736589155], "type": "Point"}, "id": "3990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6308138933849, 41.953714693444645, -85.6308138933849, 41.953714693444645], "geometry": {"coordinates": [-85.6308138933849, 41.953714693444645], "type": "Point"}, "id": "3991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63099514379128, 41.95371316575597, -85.63099514379128, 41.95371316575597], "geometry": {"coordinates": [-85.63099514379128, 41.95371316575597], "type": "Point"}, "id": "3992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.6311764031594, 41.95371212146336, -85.6311764031594, 41.95371212146336], "geometry": {"coordinates": [-85.6311764031594, 41.95371212146336], "type": "Point"}, "id": "3993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63135766252752, 41.95371107717071, -85.63135766252752, 41.95371107717071], "geometry": {"coordinates": [-85.63135766252752, 41.95371107717071], "type": "Point"}, "id": "3994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63153892189564, 41.95371003287806, -85.63153892189564, 41.95371003287806], "geometry": {"coordinates": [-85.63153892189564, 41.95371003287806], "type": "Point"}, "id": "3995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63172018126376, 41.95370898858538, -85.63172018126376, 41.95370898858538], "geometry": {"coordinates": [-85.63172018126376, 41.95370898858538], "type": "Point"}, "id": "3996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.63190144063188, 41.9537079442927, -85.63190144063188, 41.9537079442927], "geometry": {"coordinates": [-85.63190144063188, 41.9537079442927], "type": "Point"}, "id": "3997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966787}, "type": "Feature"}, {"bbox": [-85.61712729999999, 41.954688, -85.61712729999999, 41.954688], "geometry": {"coordinates": [-85.61712729999999, 41.954688], "type": "Point"}, "id": "3998", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61694765200637, 41.954712845479406, -85.61694765200637, 41.954712845479406], "geometry": {"coordinates": [-85.61694765200637, 41.954712845479406], "type": "Point"}, "id": "3999", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61676793919975, 41.95473734194597, -85.61676793919975, 41.95473734194597], "geometry": {"coordinates": [-85.61676793919975, 41.95473734194597], "type": "Point"}, "id": "4000", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.6165854973918, 41.95474254510967, -85.6165854973918, 41.95474254510967], "geometry": {"coordinates": [-85.6165854973918, 41.95474254510967], "type": "Point"}, "id": "4001", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61640277306866, 41.95474342266479, -85.61640277306866, 41.95474342266479], "geometry": {"coordinates": [-85.61640277306866, 41.95474342266479], "type": "Point"}, "id": "4002", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.6162200487455, 41.95474430021989, -85.6162200487455, 41.95474430021989], "geometry": {"coordinates": [-85.6162200487455, 41.95474430021989], "type": "Point"}, "id": "4003", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61603732442236, 41.95474517777498, -85.61603732442236, 41.95474517777498], "geometry": {"coordinates": [-85.61603732442236, 41.95474517777498], "type": "Point"}, "id": "4004", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61585460009921, 41.95474605533007, -85.61585460009921, 41.95474605533007], "geometry": {"coordinates": [-85.61585460009921, 41.95474605533007], "type": "Point"}, "id": "4005", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61567187577604, 41.95474693288513, -85.61567187577604, 41.95474693288513], "geometry": {"coordinates": [-85.61567187577604, 41.95474693288513], "type": "Point"}, "id": "4006", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61548915145292, 41.95474781044019, -85.61548915145292, 41.95474781044019], "geometry": {"coordinates": [-85.61548915145292, 41.95474781044019], "type": "Point"}, "id": "4007", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61530642712977, 41.95474868799523, -85.61530642712977, 41.95474868799523], "geometry": {"coordinates": [-85.61530642712977, 41.95474868799523], "type": "Point"}, "id": "4008", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61512370280663, 41.954749565550266, -85.61512370280663, 41.954749565550266], "geometry": {"coordinates": [-85.61512370280663, 41.954749565550266], "type": "Point"}, "id": "4009", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61494097848349, 41.95475044310528, -85.61494097848349, 41.95475044310528], "geometry": {"coordinates": [-85.61494097848349, 41.95475044310528], "type": "Point"}, "id": "4010", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61475825414354, 41.954751318717975, -85.61475825414354, 41.954751318717975], "geometry": {"coordinates": [-85.61475825414354, 41.954751318717975], "type": "Point"}, "id": "4011", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.6145755297536, 41.95475218854846, -85.6145755297536, 41.95475218854846], "geometry": {"coordinates": [-85.6145755297536, 41.95475218854846], "type": "Point"}, "id": "4012", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61439280536368, 41.95475305837895, -85.61439280536368, 41.95475305837895], "geometry": {"coordinates": [-85.61439280536368, 41.95475305837895], "type": "Point"}, "id": "4013", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61421008097375, 41.95475392820941, -85.61421008097375, 41.95475392820941], "geometry": {"coordinates": [-85.61421008097375, 41.95475392820941], "type": "Point"}, "id": "4014", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61402735457109, 41.95475451346226, -85.61402735457109, 41.95475451346226], "geometry": {"coordinates": [-85.61402735457109, 41.95475451346226], "type": "Point"}, "id": "4015", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61384462798736, 41.954755073114896, -85.61384462798736, 41.954755073114896], "geometry": {"coordinates": [-85.61384462798736, 41.954755073114896], "type": "Point"}, "id": "4016", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61366190140363, 41.95475563276754, -85.61366190140363, 41.95475563276754], "geometry": {"coordinates": [-85.61366190140363, 41.95475563276754], "type": "Point"}, "id": "4017", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61347917560715, 41.95475630287498, -85.61347917560715, 41.95475630287498], "geometry": {"coordinates": [-85.61347917560715, 41.95475630287498], "type": "Point"}, "id": "4018", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.6132964513132, 41.95475718378468, -85.6132964513132, 41.95475718378468], "geometry": {"coordinates": [-85.6132964513132, 41.95475718378468], "type": "Point"}, "id": "4019", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61311372701925, 41.95475806469435, -85.61311372701925, 41.95475806469435], "geometry": {"coordinates": [-85.61311372701925, 41.95475806469435], "type": "Point"}, "id": "4020", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61293100272529, 41.95475894560401, -85.61293100272529, 41.95475894560401], "geometry": {"coordinates": [-85.61293100272529, 41.95475894560401], "type": "Point"}, "id": "4021", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61274827843134, 41.954759826513666, -85.61274827843134, 41.954759826513666], "geometry": {"coordinates": [-85.61274827843134, 41.954759826513666], "type": "Point"}, "id": "4022", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61256555413738, 41.954760707423304, -85.61256555413738, 41.954760707423304], "geometry": {"coordinates": [-85.61256555413738, 41.954760707423304], "type": "Point"}, "id": "4023", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.6123828298434, 41.95476158833293, -85.6123828298434, 41.95476158833293], "geometry": {"coordinates": [-85.6123828298434, 41.95476158833293], "type": "Point"}, "id": "4024", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61220010554948, 41.954762469242546, -85.61220010554948, 41.954762469242546], "geometry": {"coordinates": [-85.61220010554948, 41.954762469242546], "type": "Point"}, "id": "4025", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.6120173812555, 41.954763350152156, -85.6120173812555, 41.954763350152156], "geometry": {"coordinates": [-85.6120173812555, 41.954763350152156], "type": "Point"}, "id": "4026", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61183465847613, 41.95476409156825, -85.61183465847613, 41.95476409156825], "geometry": {"coordinates": [-85.61183465847613, 41.95476409156825], "type": "Point"}, "id": "4027", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61165197713568, 41.954761016448366, -85.61165197713568, 41.954761016448366], "geometry": {"coordinates": [-85.61165197713568, 41.954761016448366], "type": "Point"}, "id": "4028", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61146926625247, 41.95476284862201, -85.61146926625247, 41.95476284862201], "geometry": {"coordinates": [-85.61146926625247, 41.95476284862201], "type": "Point"}, "id": "4029", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61128655521038, 41.95476470718514, -85.61128655521038, 41.95476470718514], "geometry": {"coordinates": [-85.61128655521038, 41.95476470718514], "type": "Point"}, "id": "4030", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.6111038441683, 41.95476656574823, -85.6111038441683, 41.95476656574823], "geometry": {"coordinates": [-85.6111038441683, 41.95476656574823], "type": "Point"}, "id": "4031", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61092113312623, 41.95476842431125, -85.61092113312623, 41.95476842431125], "geometry": {"coordinates": [-85.61092113312623, 41.95476842431125], "type": "Point"}, "id": "4032", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61073842208415, 41.954770282874215, -85.61073842208415, 41.954770282874215], "geometry": {"coordinates": [-85.61073842208415, 41.954770282874215], "type": "Point"}, "id": "4033", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.61055571104208, 41.95477214143713, -85.61055571104208, 41.95477214143713], "geometry": {"coordinates": [-85.61055571104208, 41.95477214143713], "type": "Point"}, "id": "4034", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41074899}, "type": "Feature"}, {"bbox": [-85.6365328, 41.932931200000006, -85.6365328, 41.932931200000006], "geometry": {"coordinates": [-85.6365328, 41.932931200000006], "type": "Point"}, "id": "4035", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150815}, "type": "Feature"}, {"bbox": [-85.63634008000001, 41.93296434003444, -85.63634008000001, 41.93296434003444], "geometry": {"coordinates": [-85.63634008000001, 41.93296434003444], "type": "Point"}, "id": "4036", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150815}, "type": "Feature"}, {"bbox": [-85.63614736000001, 41.93299748005166, -85.63614736000001, 41.93299748005166], "geometry": {"coordinates": [-85.63614736000001, 41.93299748005166], "type": "Point"}, "id": "4037", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150815}, "type": "Feature"}, {"bbox": [-85.63595464000001, 41.93303062005166, -85.63595464000001, 41.93303062005166], "geometry": {"coordinates": [-85.63595464000001, 41.93303062005166], "type": "Point"}, "id": "4038", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150815}, "type": "Feature"}, {"bbox": [-85.63576192000001, 41.93306376003444, -85.63576192000001, 41.93306376003444], "geometry": {"coordinates": [-85.63576192000001, 41.93306376003444], "type": "Point"}, "id": "4039", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150815}, "type": "Feature"}, {"bbox": [-85.6517841, 41.9397701, -85.6517841, 41.9397701], "geometry": {"coordinates": [-85.6517841, 41.9397701], "type": "Point"}, "id": "4040", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.65160086612997, 41.93976909899553, -85.65160086612997, 41.93976909899553], "geometry": {"coordinates": [-85.65160086612997, 41.93976909899553], "type": "Point"}, "id": "4041", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.65141763315202, 41.939768119147466, -85.65141763315202, 41.939768119147466], "geometry": {"coordinates": [-85.65141763315202, 41.939768119147466], "type": "Point"}, "id": "4042", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.65123481513761, 41.939777239747265, -85.65123481513761, 41.939777239747265], "geometry": {"coordinates": [-85.65123481513761, 41.939777239747265], "type": "Point"}, "id": "4043", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.6510516661118, 41.93978150611451, -85.6510516661118, 41.93978150611451], "geometry": {"coordinates": [-85.6510516661118, 41.93978150611451], "type": "Point"}, "id": "4044", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.65086851708597, 41.939785772481464, -85.65086851708597, 41.939785772481464], "geometry": {"coordinates": [-85.65086851708597, 41.939785772481464], "type": "Point"}, "id": "4045", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.65068536806015, 41.93979003884814, -85.65068536806015, 41.93979003884814], "geometry": {"coordinates": [-85.65068536806015, 41.93979003884814], "type": "Point"}, "id": "4046", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.65050221903432, 41.939794305214534, -85.65050221903432, 41.939794305214534], "geometry": {"coordinates": [-85.65050221903432, 41.939794305214534], "type": "Point"}, "id": "4047", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.6503190700085, 41.93979857158063, -85.6503190700085, 41.93979857158063], "geometry": {"coordinates": [-85.6503190700085, 41.93979857158063], "type": "Point"}, "id": "4048", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.65013591325844, 41.939802649448445, -85.65013591325844, 41.939802649448445], "geometry": {"coordinates": [-85.65013591325844, 41.939802649448445], "type": "Point"}, "id": "4049", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64995275491806, 41.93980668850659, -85.64995275491806, 41.93980668850659], "geometry": {"coordinates": [-85.64995275491806, 41.93980668850659], "type": "Point"}, "id": "4050", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.6497695965777, 41.93981072756449, -85.6497695965777, 41.93981072756449], "geometry": {"coordinates": [-85.6497695965777, 41.93981072756449], "type": "Point"}, "id": "4051", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64958643823732, 41.93981476662213, -85.64958643823732, 41.93981476662213], "geometry": {"coordinates": [-85.64958643823732, 41.93981476662213], "type": "Point"}, "id": "4052", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64940327989694, 41.939818805679515, -85.64940327989694, 41.939818805679515], "geometry": {"coordinates": [-85.64940327989694, 41.939818805679515], "type": "Point"}, "id": "4053", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64922012155657, 41.93982284473664, -85.64922012155657, 41.93982284473664], "geometry": {"coordinates": [-85.64922012155657, 41.93982284473664], "type": "Point"}, "id": "4054", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64903696321619, 41.93982688379351, -85.64903696321619, 41.93982688379351], "geometry": {"coordinates": [-85.64903696321619, 41.93982688379351], "type": "Point"}, "id": "4055", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64885376878779, 41.93982946307736, -85.64885376878779, 41.93982946307736], "geometry": {"coordinates": [-85.64885376878779, 41.93982946307736], "type": "Point"}, "id": "4056", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64867053464246, 41.939830435797795, -85.64867053464246, 41.939830435797795], "geometry": {"coordinates": [-85.64867053464246, 41.939830435797795], "type": "Point"}, "id": "4057", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64848730049714, 41.93983140851822, -85.64848730049714, 41.93983140851822], "geometry": {"coordinates": [-85.64848730049714, 41.93983140851822], "type": "Point"}, "id": "4058", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64830406635181, 41.939832381238624, -85.64830406635181, 41.939832381238624], "geometry": {"coordinates": [-85.64830406635181, 41.939832381238624], "type": "Point"}, "id": "4059", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64812083220647, 41.93983335395902, -85.64812083220647, 41.93983335395902], "geometry": {"coordinates": [-85.64812083220647, 41.93983335395902], "type": "Point"}, "id": "4060", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64793759806115, 41.93983432667939, -85.64793759806115, 41.93983432667939], "geometry": {"coordinates": [-85.64793759806115, 41.93983432667939], "type": "Point"}, "id": "4061", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64775436405881, 41.939835314034276, -85.64775436405881, 41.939835314034276], "geometry": {"coordinates": [-85.64775436405881, 41.939835314034276], "type": "Point"}, "id": "4062", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64757114153136, 41.93983706931123, -85.64757114153136, 41.93983706931123], "geometry": {"coordinates": [-85.64757114153136, 41.93983706931123], "type": "Point"}, "id": "4063", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64738803728906, 41.939841722016276, -85.64738803728906, 41.939841722016276], "geometry": {"coordinates": [-85.64738803728906, 41.939841722016276], "type": "Point"}, "id": "4064", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64720502760939, 41.939848536206725, -85.64720502760939, 41.939848536206725], "geometry": {"coordinates": [-85.64720502760939, 41.939848536206725], "type": "Point"}, "id": "4065", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.6470220179297, 41.93985535039645, -85.6470220179297, 41.93985535039645], "geometry": {"coordinates": [-85.6470220179297, 41.93985535039645], "type": "Point"}, "id": "4066", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.64683900887314, 41.939862173837014, -85.64683900887314, 41.939862173837014], "geometry": {"coordinates": [-85.64683900887314, 41.939862173837014], "type": "Point"}, "id": "4067", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694336}, "type": "Feature"}, {"bbox": [-85.6514226, 41.94251129999999, -85.6514226, 41.94251129999999], "geometry": {"coordinates": [-85.6514226, 41.94251129999999], "type": "Point"}, "id": "4068", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 945352903}, "type": "Feature"}, {"bbox": [-85.65164814477171, 41.942484512133284, -85.65164814477171, 41.942484512133284], "geometry": {"coordinates": [-85.65164814477171, 41.942484512133284], "type": "Point"}, "id": "4069", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 945352903}, "type": "Feature"}, {"bbox": [-85.6177994, 41.9545412, -85.6177994, 41.9545412], "geometry": {"coordinates": [-85.6177994, 41.9545412], "type": "Point"}, "id": "4070", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 652550661}, "type": "Feature"}, {"bbox": [-85.617578684161, 41.954598602771156, -85.617578684161, 41.954598602771156], "geometry": {"coordinates": [-85.617578684161, 41.954598602771156], "type": "Point"}, "id": "4071", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 652550661}, "type": "Feature"}, {"bbox": [-85.61735493999292, 41.954648274322054, -85.61735493999292, 41.954648274322054], "geometry": {"coordinates": [-85.61735493999292, 41.954648274322054], "type": "Point"}, "id": "4072", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 652550661}, "type": "Feature"}, {"bbox": [-85.63576, 41.9381878, -85.63576, 41.9381878], "geometry": {"coordinates": [-85.63576, 41.9381878], "type": "Point"}, "id": "4073", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576099266001, 41.93832235807764, -85.63576099266001, 41.93832235807764], "geometry": {"coordinates": [-85.63576099266001, 41.93832235807764], "type": "Point"}, "id": "4074", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576198532003, 41.93845691587136, -85.63576198532003, 41.93845691587136], "geometry": {"coordinates": [-85.63576198532003, 41.93845691587136], "type": "Point"}, "id": "4075", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576297798002, 41.938591473381166, -85.63576297798002, 41.938591473381166], "geometry": {"coordinates": [-85.63576297798002, 41.938591473381166], "type": "Point"}, "id": "4076", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576404837546, 41.938726030217445, -85.63576404837546, 41.938726030217445], "geometry": {"coordinates": [-85.63576404837546, 41.938726030217445], "type": "Point"}, "id": "4077", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576549324391, 41.93886058489301, -85.63576549324391, 41.93886058489301], "geometry": {"coordinates": [-85.63576549324391, 41.93886058489301], "type": "Point"}, "id": "4078", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576693811234, 41.938995139284664, -85.63576693811234, 41.938995139284664], "geometry": {"coordinates": [-85.63576693811234, 41.938995139284664], "type": "Point"}, "id": "4079", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63576838298077, 41.93912969339241, -85.63576838298077, 41.93912969339241], "geometry": {"coordinates": [-85.63576838298077, 41.93912969339241], "type": "Point"}, "id": "4080", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.6357698278492, 41.93926424721625, -85.6357698278492, 41.93926424721625], "geometry": {"coordinates": [-85.6357698278492, 41.93926424721625], "type": "Point"}, "id": "4081", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63577127271763, 41.93939880075618, -85.63577127271763, 41.93939880075618], "geometry": {"coordinates": [-85.63577127271763, 41.93939880075618], "type": "Point"}, "id": "4082", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63577271758608, 41.9395333540122, -85.63577271758608, 41.9395333540122], "geometry": {"coordinates": [-85.63577271758608, 41.9395333540122], "type": "Point"}, "id": "4083", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.6357741624545, 41.9396679069843, -85.6357741624545, 41.9396679069843], "geometry": {"coordinates": [-85.6357741624545, 41.9396679069843], "type": "Point"}, "id": "4084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63577560732294, 41.9398024596725, -85.63577560732294, 41.9398024596725], "geometry": {"coordinates": [-85.63577560732294, 41.9398024596725], "type": "Point"}, "id": "4085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63577705219137, 41.93993701207678, -85.63577705219137, 41.93993701207678], "geometry": {"coordinates": [-85.63577705219137, 41.93993701207678], "type": "Point"}, "id": "4086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.6357784970598, 41.94007156419717, -85.6357784970598, 41.94007156419717], "geometry": {"coordinates": [-85.6357784970598, 41.94007156419717], "type": "Point"}, "id": "4087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578044224745, 41.940206112271376, -85.63578044224745, 41.940206112271376], "geometry": {"coordinates": [-85.63578044224745, 41.940206112271376], "type": "Point"}, "id": "4088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578265457926, 41.94034065805285, -85.63578265457926, 41.94034065805285], "geometry": {"coordinates": [-85.63578265457926, 41.94034065805285], "type": "Point"}, "id": "4089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578486691107, 41.94047520355043, -85.63578486691107, 41.94047520355043], "geometry": {"coordinates": [-85.63578486691107, 41.94047520355043], "type": "Point"}, "id": "4090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578707924287, 41.94060974876414, -85.63578707924287, 41.94060974876414], "geometry": {"coordinates": [-85.63578707924287, 41.94060974876414], "type": "Point"}, "id": "4091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63578929157468, 41.940744293693946, -85.63578929157468, 41.940744293693946], "geometry": {"coordinates": [-85.63578929157468, 41.940744293693946], "type": "Point"}, "id": "4092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579150390647, 41.94087883833988, -85.63579150390647, 41.94087883833988], "geometry": {"coordinates": [-85.63579150390647, 41.94087883833988], "type": "Point"}, "id": "4093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579371623828, 41.94101338270192, -85.63579371623828, 41.94101338270192], "geometry": {"coordinates": [-85.63579371623828, 41.94101338270192], "type": "Point"}, "id": "4094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579573549383, 41.94114792826683, -85.63579573549383, 41.94114792826683], "geometry": {"coordinates": [-85.63579573549383, 41.94114792826683], "type": "Point"}, "id": "4095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579726826939, 41.9412824772939, -85.63579726826939, 41.9412824772939], "geometry": {"coordinates": [-85.63579726826939, 41.9412824772939], "type": "Point"}, "id": "4096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579883170497, 41.941417025833985, -85.63579883170497, 41.941417025833985], "geometry": {"coordinates": [-85.63579883170497, 41.941417025833985], "type": "Point"}, "id": "4097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63579993365526, 41.94155157588314, -85.63579993365526, 41.94155157588314], "geometry": {"coordinates": [-85.63579993365526, 41.94155157588314], "type": "Point"}, "id": "4098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580142532139, 41.94168612431413, -85.63580142532139, 41.94168612431413], "geometry": {"coordinates": [-85.63580142532139, 41.94168612431413], "type": "Point"}, "id": "4099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580291698752, 41.9418206724612, -85.63580291698752, 41.9418206724612], "geometry": {"coordinates": [-85.63580291698752, 41.9418206724612], "type": "Point"}, "id": "4100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580444310955, 41.94195522010775, -85.63580444310955, 41.94195522010775], "geometry": {"coordinates": [-85.63580444310955, 41.94195522010775], "type": "Point"}, "id": "4101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580596146676, 41.94208976752181, -85.63580596146676, 41.94208976752181], "geometry": {"coordinates": [-85.63580596146676, 41.94208976752181], "type": "Point"}, "id": "4102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63580747982397, 41.942224314651966, -85.63580747982397, 41.942224314651966], "geometry": {"coordinates": [-85.63580747982397, 41.942224314651966], "type": "Point"}, "id": "4103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.6358089981622, 41.942358861498334, -85.6358089981622, 41.942358861498334], "geometry": {"coordinates": [-85.6358089981622, 41.942358861498334], "type": "Point"}, "id": "4104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63581051637405, 41.94249340806157, -85.63581051637405, 41.94249340806157], "geometry": {"coordinates": [-85.63581051637405, 41.94249340806157], "type": "Point"}, "id": "4105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.63581203458591, 41.94262795434091, -85.63581203458591, 41.94262795434091], "geometry": {"coordinates": [-85.63581203458591, 41.94262795434091], "type": "Point"}, "id": "4106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 237686060}, "type": "Feature"}, {"bbox": [-85.61118699999999, 41.951686, -85.61118699999999, 41.951686], "geometry": {"coordinates": [-85.61118699999999, 41.951686], "type": "Point"}, "id": "4107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.6113608400868, 41.95165226846938, -85.6113608400868, 41.95165226846938], "geometry": {"coordinates": [-85.6113608400868, 41.95165226846938], "type": "Point"}, "id": "4108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61154168742112, 41.951648772299635, -85.61154168742112, 41.951648772299635], "geometry": {"coordinates": [-85.61154168742112, 41.951648772299635], "type": "Point"}, "id": "4109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61172253475544, 41.9516452761297, -85.61172253475544, 41.9516452761297], "geometry": {"coordinates": [-85.61172253475544, 41.9516452761297], "type": "Point"}, "id": "4110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61190338583653, 41.95164196485854, -85.61190338583653, 41.95164196485854], "geometry": {"coordinates": [-85.61190338583653, 41.95164196485854], "type": "Point"}, "id": "4111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61208429270202, 41.95164140650401, -85.61208429270202, 41.95164140650401], "geometry": {"coordinates": [-85.61208429270202, 41.95164140650401], "type": "Point"}, "id": "4112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61226519976911, 41.95164089005638, -85.61226519976911, 41.95164089005638], "geometry": {"coordinates": [-85.61226519976911, 41.95164089005638], "type": "Point"}, "id": "4113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61244610737583, 41.951640485793575, -85.61244610737583, 41.951640485793575], "geometry": {"coordinates": [-85.61244610737583, 41.951640485793575], "type": "Point"}, "id": "4114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61262701498254, 41.95164008153077, -85.61262701498254, 41.95164008153077], "geometry": {"coordinates": [-85.61262701498254, 41.95164008153077], "type": "Point"}, "id": "4115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61280792258924, 41.95163967726797, -85.61280792258924, 41.95163967726797], "geometry": {"coordinates": [-85.61280792258924, 41.95163967726797], "type": "Point"}, "id": "4116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61298883019596, 41.951639273005156, -85.61298883019596, 41.951639273005156], "geometry": {"coordinates": [-85.61298883019596, 41.951639273005156], "type": "Point"}, "id": "4117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.6131697374141, 41.951639206096196, -85.6131697374141, 41.951639206096196], "geometry": {"coordinates": [-85.6131697374141, 41.951639206096196], "type": "Point"}, "id": "4118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61335064382406, 41.95163984085552, -85.61335064382406, 41.95163984085552], "geometry": {"coordinates": [-85.61335064382406, 41.95163984085552], "type": "Point"}, "id": "4119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61353155174264, 41.951640000000005, -85.61353155174264, 41.951640000000005], "geometry": {"coordinates": [-85.61353155174264, 41.951640000000005], "type": "Point"}, "id": "4120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.613712460166, 41.951640000000005, -85.613712460166, 41.951640000000005], "geometry": {"coordinates": [-85.613712460166, 41.951640000000005], "type": "Point"}, "id": "4121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61389336858936, 41.951640000000005, -85.61389336858936, 41.951640000000005], "geometry": {"coordinates": [-85.61389336858936, 41.951640000000005], "type": "Point"}, "id": "4122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61407427701272, 41.951640000000005, -85.61407427701272, 41.951640000000005], "geometry": {"coordinates": [-85.61407427701272, 41.951640000000005], "type": "Point"}, "id": "4123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.61425518523902, 41.95163991367364, -85.61425518523902, 41.95163991367364], "geometry": {"coordinates": [-85.61425518523902, 41.95163991367364], "type": "Point"}, "id": "4124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.6144360926195, 41.95163945683682, -85.6144360926195, 41.95163945683682], "geometry": {"coordinates": [-85.6144360926195, 41.95163945683682], "type": "Point"}, "id": "4125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965307}, "type": "Feature"}, {"bbox": [-85.624776, 41.93320500000001, -85.624776, 41.93320500000001], "geometry": {"coordinates": [-85.624776, 41.93320500000001], "type": "Point"}, "id": "4126", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62495798441812, 41.93320202639868, -85.62495798441812, 41.93320202639868], "geometry": {"coordinates": [-85.62495798441812, 41.93320202639868], "type": "Point"}, "id": "4127", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62513996883625, 41.93319905279722, -85.62513996883625, 41.93319905279722], "geometry": {"coordinates": [-85.62513996883625, 41.93319905279722], "type": "Point"}, "id": "4128", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62532195325439, 41.933196079195625, -85.62532195325439, 41.933196079195625], "geometry": {"coordinates": [-85.62532195325439, 41.933196079195625], "type": "Point"}, "id": "4129", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62550393767252, 41.93319310559389, -85.62550393767252, 41.93319310559389], "geometry": {"coordinates": [-85.62550393767252, 41.93319310559389], "type": "Point"}, "id": "4130", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62568592209064, 41.933190131992006, -85.62568592209064, 41.933190131992006], "geometry": {"coordinates": [-85.62568592209064, 41.933190131992006], "type": "Point"}, "id": "4131", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62586794845306, 41.93319, -85.62586794845306, 41.93319], "geometry": {"coordinates": [-85.62586794845306, 41.93319], "type": "Point"}, "id": "4132", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6260499767638, 41.93319, -85.6260499767638, 41.93319], "geometry": {"coordinates": [-85.6260499767638, 41.93319], "type": "Point"}, "id": "4133", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62623200507451, 41.93319, -85.62623200507451, 41.93319], "geometry": {"coordinates": [-85.62623200507451, 41.93319], "type": "Point"}, "id": "4134", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62641403338525, 41.93319, -85.62641403338525, 41.93319], "geometry": {"coordinates": [-85.62641403338525, 41.93319], "type": "Point"}, "id": "4135", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62659606169598, 41.93319, -85.62659606169598, 41.93319], "geometry": {"coordinates": [-85.62659606169598, 41.93319], "type": "Point"}, "id": "4136", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6267780900067, 41.93319, -85.6267780900067, 41.93319], "geometry": {"coordinates": [-85.6267780900067, 41.93319], "type": "Point"}, "id": "4137", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62696011831741, 41.93319, -85.62696011831741, 41.93319], "geometry": {"coordinates": [-85.62696011831741, 41.93319], "type": "Point"}, "id": "4138", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.627142122374, 41.933188637663285, -85.627142122374, 41.933188637663285], "geometry": {"coordinates": [-85.627142122374, 41.933188637663285], "type": "Point"}, "id": "4139", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6273240868357, 41.933185051315434, -85.6273240868357, 41.933185051315434], "geometry": {"coordinates": [-85.6273240868357, 41.933185051315434], "type": "Point"}, "id": "4140", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62750605352664, 41.933181563587176, -85.62750605352664, 41.933181563587176], "geometry": {"coordinates": [-85.62750605352664, 41.933181563587176], "type": "Point"}, "id": "4141", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62768807719526, 41.93318059649449, -85.62768807719526, 41.93318059649449], "geometry": {"coordinates": [-85.62768807719526, 41.93318059649449], "type": "Point"}, "id": "4142", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6278701008639, 41.933179629401785, -85.6278701008639, 41.933179629401785], "geometry": {"coordinates": [-85.6278701008639, 41.933179629401785], "type": "Point"}, "id": "4143", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62805212453252, 41.93317866230906, -85.62805212453252, 41.93317866230906], "geometry": {"coordinates": [-85.62805212453252, 41.93317866230906], "type": "Point"}, "id": "4144", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62823414820114, 41.93317769521632, -85.62823414820114, 41.93317769521632], "geometry": {"coordinates": [-85.62823414820114, 41.93317769521632], "type": "Point"}, "id": "4145", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62841617074285, 41.933176628861354, -85.62841617074285, 41.933176628861354], "geometry": {"coordinates": [-85.62841617074285, 41.933176628861354], "type": "Point"}, "id": "4146", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62859819040293, 41.933175308682515, -85.62859819040293, 41.933175308682515], "geometry": {"coordinates": [-85.62859819040293, 41.933175308682515], "type": "Point"}, "id": "4147", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62878021006298, 41.93317398850366, -85.62878021006298, 41.93317398850366], "geometry": {"coordinates": [-85.62878021006298, 41.93317398850366], "type": "Point"}, "id": "4148", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62896222972306, 41.93317266832477, -85.62896222972306, 41.93317266832477], "geometry": {"coordinates": [-85.62896222972306, 41.93317266832477], "type": "Point"}, "id": "4149", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62914424939157, 41.933171348788974, -85.62914424939157, 41.933171348788974], "geometry": {"coordinates": [-85.62914424939157, 41.933171348788974], "type": "Point"}, "id": "4150", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62932626906469, 41.93317002960671, -85.62932626906469, 41.93317002960671], "geometry": {"coordinates": [-85.62932626906469, 41.93317002960671], "type": "Point"}, "id": "4151", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62950828873784, 41.9331687104244, -85.62950828873784, 41.9331687104244], "geometry": {"coordinates": [-85.62950828873784, 41.9331687104244], "type": "Point"}, "id": "4152", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62969030844523, 41.933167394445164, -85.62969030844523, 41.933167394445164], "geometry": {"coordinates": [-85.62969030844523, 41.933167394445164], "type": "Point"}, "id": "4153", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.62987233328117, 41.933166557735525, -85.62987233328117, 41.933166557735525], "geometry": {"coordinates": [-85.62987233328117, 41.933166557735525], "type": "Point"}, "id": "4154", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63005435811712, 41.93316572102588, -85.63005435811712, 41.93316572102588], "geometry": {"coordinates": [-85.63005435811712, 41.93316572102588], "type": "Point"}, "id": "4155", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63023638295309, 41.93316488431622, -85.63023638295309, 41.93316488431622], "geometry": {"coordinates": [-85.63023638295309, 41.93316488431622], "type": "Point"}, "id": "4156", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63041840752352, 41.93316401744275, -85.63041840752352, 41.93316401744275], "geometry": {"coordinates": [-85.63041840752352, 41.93316401744275], "type": "Point"}, "id": "4157", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6306004314793, 41.93316308073707, -85.6306004314793, 41.93316308073707], "geometry": {"coordinates": [-85.6306004314793, 41.93316308073707], "type": "Point"}, "id": "4158", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63078245543505, 41.933162144031385, -85.63078245543505, 41.933162144031385], "geometry": {"coordinates": [-85.63078245543505, 41.933162144031385], "type": "Point"}, "id": "4159", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63096447939083, 41.933161207325675, -85.63096447939083, 41.933161207325675], "geometry": {"coordinates": [-85.63096447939083, 41.933161207325675], "type": "Point"}, "id": "4160", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6311465013371, 41.93316008259913, -85.6311465013371, 41.93316008259913], "geometry": {"coordinates": [-85.6311465013371, 41.93316008259913], "type": "Point"}, "id": "4161", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63132852230213, 41.933158866062186, -85.63132852230213, 41.933158866062186], "geometry": {"coordinates": [-85.63132852230213, 41.933158866062186], "type": "Point"}, "id": "4162", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63151054326717, 41.93315764952521, -85.63151054326717, 41.93315764952521], "geometry": {"coordinates": [-85.63151054326717, 41.93315764952521], "type": "Point"}, "id": "4163", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63169256423224, 41.933156432988206, -85.63169256423224, 41.933156432988206], "geometry": {"coordinates": [-85.63169256423224, 41.933156432988206], "type": "Point"}, "id": "4164", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63187458530516, 41.933155225419384, -85.63187458530516, 41.933155225419384], "geometry": {"coordinates": [-85.63187458530516, 41.933155225419384], "type": "Point"}, "id": "4165", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6320566063811, 41.933154018100495, -85.6320566063811, 41.933154018100495], "geometry": {"coordinates": [-85.6320566063811, 41.933154018100495], "type": "Point"}, "id": "4166", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63223862748684, 41.93315281328434, -85.63223862748684, 41.93315281328434], "geometry": {"coordinates": [-85.63223862748684, 41.93315281328434], "type": "Point"}, "id": "4167", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63242064875291, 41.93315162193429, -85.63242064875291, 41.93315162193429], "geometry": {"coordinates": [-85.63242064875291, 41.93315162193429], "type": "Point"}, "id": "4168", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63260267551571, 41.93315107039491, -85.63260267551571, 41.93315107039491], "geometry": {"coordinates": [-85.63260267551571, 41.93315107039491], "type": "Point"}, "id": "4169", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63278470247118, 41.933150548141306, -85.63278470247118, 41.933150548141306], "geometry": {"coordinates": [-85.63278470247118, 41.933150548141306], "type": "Point"}, "id": "4170", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63296672951671, 41.933150043253114, -85.63296672951671, 41.933150043253114], "geometry": {"coordinates": [-85.63296672951671, 41.933150043253114], "type": "Point"}, "id": "4171", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6331487565622, 41.93314953836492, -85.6331487565622, 41.93314953836492], "geometry": {"coordinates": [-85.6331487565622, 41.93314953836492], "type": "Point"}, "id": "4172", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63333078360773, 41.933149033476724, -85.63333078360773, 41.933149033476724], "geometry": {"coordinates": [-85.63333078360773, 41.933149033476724], "type": "Point"}, "id": "4173", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63351281065323, 41.93314852858852, -85.63351281065323, 41.93314852858852], "geometry": {"coordinates": [-85.63351281065323, 41.93314852858852], "type": "Point"}, "id": "4174", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63369483769874, 41.93314802370031, -85.63369483769874, 41.93314802370031], "geometry": {"coordinates": [-85.63369483769874, 41.93314802370031], "type": "Point"}, "id": "4175", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63387686474424, 41.9331475188121, -85.63387686474424, 41.9331475188121], "geometry": {"coordinates": [-85.63387686474424, 41.9331475188121], "type": "Point"}, "id": "4176", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63405889179428, 41.933147014827284, -85.63405889179428, 41.933147014827284], "geometry": {"coordinates": [-85.63405889179428, 41.933147014827284], "type": "Point"}, "id": "4177", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6342409188457, 41.93314651112047, -85.6342409188457, 41.93314651112047], "geometry": {"coordinates": [-85.6342409188457, 41.93314651112047], "type": "Point"}, "id": "4178", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63442294589714, 41.93314600741365, -85.63442294589714, 41.93314600741365], "geometry": {"coordinates": [-85.63442294589714, 41.93314600741365], "type": "Point"}, "id": "4179", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.63460497294857, 41.93314550370683, -85.63460497294857, 41.93314550370683], "geometry": {"coordinates": [-85.63460497294857, 41.93314550370683], "type": "Point"}, "id": "4180", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694384}, "type": "Feature"}, {"bbox": [-85.6248366, 41.9391615, -85.6248366, 41.9391615], "geometry": {"coordinates": [-85.6248366, 41.9391615], "type": "Point"}, "id": "4181", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 1080064916}, "type": "Feature"}, {"bbox": [-85.62483517112872, 41.93930126148918, -85.62483517112872, 41.93930126148918], "geometry": {"coordinates": [-85.62483517112872, 41.93930126148918], "type": "Point"}, "id": "4182", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 1080064916}, "type": "Feature"}, {"bbox": [-85.624808243143, 41.939439197950044, -85.624808243143, 41.939439197950044], "geometry": {"coordinates": [-85.624808243143, 41.939439197950044], "type": "Point"}, "id": "4183", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 1080064916}, "type": "Feature"}, {"bbox": [-85.62472577149016, 41.93956477991699, -85.62472577149016, 41.93956477991699], "geometry": {"coordinates": [-85.62472577149016, 41.93956477991699], "type": "Point"}, "id": "4184", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 1080064916}, "type": "Feature"}, {"bbox": [-85.62464329983733, 41.93969036163663, -85.62464329983733, 41.93969036163663], "geometry": {"coordinates": [-85.62464329983733, 41.93969036163663], "type": "Point"}, "id": "4185", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 1080064916}, "type": "Feature"}, {"bbox": [-85.62455149025064, 41.939812276906004, -85.62455149025064, 41.939812276906004], "geometry": {"coordinates": [-85.62455149025064, 41.939812276906004], "type": "Point"}, "id": "4186", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 1080064916}, "type": "Feature"}, {"bbox": [-85.62445863574776, 41.939933781694414, -85.62445863574776, 41.939933781694414], "geometry": {"coordinates": [-85.62445863574776, 41.939933781694414], "type": "Point"}, "id": "4187", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 1080064916}, "type": "Feature"}, {"bbox": [-85.62436568495355, 41.94005523130003, -85.62436568495355, 41.94005523130003], "geometry": {"coordinates": [-85.62436568495355, 41.94005523130003], "type": "Point"}, "id": "4188", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 1080064916}, "type": "Feature"}, {"bbox": [-85.6186943, 41.95500010000001, -85.6186943, 41.95500010000001], "geometry": {"coordinates": [-85.6186943, 41.95500010000001], "type": "Point"}, "id": "4189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1068082269}, "type": "Feature"}, {"bbox": [-85.61873239044141, 41.954871450384424, -85.61873239044141, 41.954871450384424], "geometry": {"coordinates": [-85.61873239044141, 41.954871450384424], "type": "Point"}, "id": "4190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1068082269}, "type": "Feature"}, {"bbox": [-85.611615, 41.953704, -85.611615, 41.953704], "geometry": {"coordinates": [-85.611615, 41.953704], "type": "Point"}, "id": "4191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.6116285289151, 41.953854750866675, -85.6116285289151, 41.953854750866675], "geometry": {"coordinates": [-85.6116285289151, 41.953854750866675], "type": "Point"}, "id": "4192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61163723289671, 41.95400564533323, -85.61163723289671, 41.95400564533323], "geometry": {"coordinates": [-85.61163723289671, 41.95400564533323], "type": "Point"}, "id": "4193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61163998631737, 41.95415671698275, -85.61163998631737, 41.95415671698275], "geometry": {"coordinates": [-85.61163998631737, 41.95415671698275], "type": "Point"}, "id": "4194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61164273973802, 41.954307788274185, -85.61164273973802, 41.954307788274185], "geometry": {"coordinates": [-85.61164273973802, 41.954307788274185], "type": "Point"}, "id": "4195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61164549315868, 41.954458859207534, -85.61164549315868, 41.954458859207534], "geometry": {"coordinates": [-85.61164549315868, 41.954458859207534], "type": "Point"}, "id": "4196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.61164824657934, 41.95460992978281, -85.61164824657934, 41.95460992978281], "geometry": {"coordinates": [-85.61164824657934, 41.95460992978281], "type": "Point"}, "id": "4197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964507}, "type": "Feature"}, {"bbox": [-85.6186424, 41.95473350000001, -85.6186424, 41.95473350000001], "geometry": {"coordinates": [-85.6186424, 41.95473350000001], "type": "Point"}, "id": "4198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1068082268}, "type": "Feature"}, {"bbox": [-85.61864447128255, 41.95487328027997, -85.61864447128255, 41.95487328027997], "geometry": {"coordinates": [-85.61864447128255, 41.95487328027997], "type": "Point"}, "id": "4199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 1068082268}, "type": "Feature"}, {"bbox": [-85.64201479999998, 41.9476126, -85.64201479999998, 41.9476126], "geometry": {"coordinates": [-85.64201479999998, 41.9476126], "type": "Point"}, "id": "4200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.6421876402203, 41.94765599810832, -85.6421876402203, 41.94765599810832], "geometry": {"coordinates": [-85.6421876402203, 41.94765599810832], "type": "Point"}, "id": "4201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64237440639329, 41.94765552977147, -85.64237440639329, 41.94765552977147], "geometry": {"coordinates": [-85.64237440639329, 41.94765552977147], "type": "Point"}, "id": "4202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64256120208637, 41.94765425892537, -85.64256120208637, 41.94765425892537], "geometry": {"coordinates": [-85.64256120208637, 41.94765425892537], "type": "Point"}, "id": "4203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64274799777944, 41.947652988079234, -85.64274799777944, 41.947652988079234], "geometry": {"coordinates": [-85.64274799777944, 41.947652988079234], "type": "Point"}, "id": "4204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64293479347252, 41.94765171723307, -85.64293479347252, 41.94765171723307], "geometry": {"coordinates": [-85.64293479347252, 41.94765171723307], "type": "Point"}, "id": "4205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.6431215891656, 41.9476504463869, -85.6431215891656, 41.9476504463869], "geometry": {"coordinates": [-85.6431215891656, 41.9476504463869], "type": "Point"}, "id": "4206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64330837106134, 41.947648433647856, -85.64330837106134, 41.947648433647856], "geometry": {"coordinates": [-85.64330837106134, 41.947648433647856], "type": "Point"}, "id": "4207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.6434951425511, 41.94764586137348, -85.6434951425511, 41.94764586137348], "geometry": {"coordinates": [-85.6434951425511, 41.94764586137348], "type": "Point"}, "id": "4208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64368191404088, 41.94764328909899, -85.64368191404088, 41.94764328909899], "geometry": {"coordinates": [-85.64368191404088, 41.94764328909899], "type": "Point"}, "id": "4209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64386868553065, 41.9476407168244, -85.64386868553065, 41.9476407168244], "geometry": {"coordinates": [-85.64386868553065, 41.9476407168244], "type": "Point"}, "id": "4210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64405545702044, 41.94763814454971, -85.64405545702044, 41.94763814454971], "geometry": {"coordinates": [-85.64405545702044, 41.94763814454971], "type": "Point"}, "id": "4211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.64424222851022, 41.9476355722749, -85.64424222851022, 41.9476355722749], "geometry": {"coordinates": [-85.64424222851022, 41.9476355722749], "type": "Point"}, "id": "4212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967618}, "type": "Feature"}, {"bbox": [-85.636516, 41.935036, -85.636516, 41.935036], "geometry": {"coordinates": [-85.636516, 41.935036], "type": "Point"}, "id": "4213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63669615931738, 41.935033960701205, -85.63669615931738, 41.935033960701205], "geometry": {"coordinates": [-85.63669615931738, 41.935033960701205], "type": "Point"}, "id": "4214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63687631863479, 41.93503192140236, -85.63687631863479, 41.93503192140236], "geometry": {"coordinates": [-85.63687631863479, 41.93503192140236], "type": "Point"}, "id": "4215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63705647795219, 41.93502988210344, -85.63705647795219, 41.93502988210344], "geometry": {"coordinates": [-85.63705647795219, 41.93502988210344], "type": "Point"}, "id": "4216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63723663726958, 41.93502784280446, -85.63723663726958, 41.93502784280446], "geometry": {"coordinates": [-85.63723663726958, 41.93502784280446], "type": "Point"}, "id": "4217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63741679658698, 41.93502580350542, -85.63741679658698, 41.93502580350542], "geometry": {"coordinates": [-85.63741679658698, 41.93502580350542], "type": "Point"}, "id": "4218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63759695590437, 41.9350237642063, -85.63759695590437, 41.9350237642063], "geometry": {"coordinates": [-85.63759695590437, 41.9350237642063], "type": "Point"}, "id": "4219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63777711514, 41.93502172091551, -85.63777711514, 41.93502172091551], "geometry": {"coordinates": [-85.63777711514, 41.93502172091551], "type": "Point"}, "id": "4220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63795727434437, 41.93501967609791, -85.63795727434437, 41.93501967609791], "geometry": {"coordinates": [-85.63795727434437, 41.93501967609791], "type": "Point"}, "id": "4221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63813743354872, 41.935017631280246, -85.63813743354872, 41.935017631280246], "geometry": {"coordinates": [-85.63813743354872, 41.935017631280246], "type": "Point"}, "id": "4222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6383175927531, 41.93501558646252, -85.6383175927531, 41.93501558646252], "geometry": {"coordinates": [-85.6383175927531, 41.93501558646252], "type": "Point"}, "id": "4223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63849775195747, 41.93501354164472, -85.63849775195747, 41.93501354164472], "geometry": {"coordinates": [-85.63849775195747, 41.93501354164472], "type": "Point"}, "id": "4224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63867791116184, 41.93501149682686, -85.63867791116184, 41.93501149682686], "geometry": {"coordinates": [-85.63867791116184, 41.93501149682686], "type": "Point"}, "id": "4225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63885807037504, 41.9350094524401, -85.63885807037504, 41.9350094524401], "geometry": {"coordinates": [-85.63885807037504, 41.9350094524401], "type": "Point"}, "id": "4226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63903822961976, 41.9350074095901, -85.63903822961976, 41.9350074095901], "geometry": {"coordinates": [-85.63903822961976, 41.9350074095901], "type": "Point"}, "id": "4227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63921838886445, 41.935005366740036, -85.63921838886445, 41.935005366740036], "geometry": {"coordinates": [-85.63921838886445, 41.935005366740036], "type": "Point"}, "id": "4228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63939854810917, 41.935003323889916, -85.63939854810917, 41.935003323889916], "geometry": {"coordinates": [-85.63939854810917, 41.935003323889916], "type": "Point"}, "id": "4229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63957870735389, 41.93500128103972, -85.63957870735389, 41.93500128103972], "geometry": {"coordinates": [-85.63957870735389, 41.93500128103972], "type": "Point"}, "id": "4230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63975886659858, 41.934999238189455, -85.63975886659858, 41.934999238189455], "geometry": {"coordinates": [-85.63975886659858, 41.934999238189455], "type": "Point"}, "id": "4231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63993902584329, 41.93499719533914, -85.63993902584329, 41.93499719533914], "geometry": {"coordinates": [-85.63993902584329, 41.93499719533914], "type": "Point"}, "id": "4232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64011918512722, 41.93499515440539, -85.64011918512722, 41.93499515440539], "geometry": {"coordinates": [-85.64011918512722, 41.93499515440539], "type": "Point"}, "id": "4233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6402993445182, 41.93499311870622, -85.6402993445182, 41.93499311870622], "geometry": {"coordinates": [-85.6402993445182, 41.93499311870622], "type": "Point"}, "id": "4234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64047950390918, 41.93499108300697, -85.64047950390918, 41.93499108300697], "geometry": {"coordinates": [-85.64047950390918, 41.93499108300697], "type": "Point"}, "id": "4235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64065966330017, 41.93498904730767, -85.64065966330017, 41.93498904730767], "geometry": {"coordinates": [-85.64065966330017, 41.93498904730767], "type": "Point"}, "id": "4236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64083982269115, 41.9349870116083, -85.64083982269115, 41.9349870116083], "geometry": {"coordinates": [-85.64083982269115, 41.9349870116083], "type": "Point"}, "id": "4237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64101998208213, 41.93498497590887, -85.64101998208213, 41.93498497590887], "geometry": {"coordinates": [-85.64101998208213, 41.93498497590887], "type": "Point"}, "id": "4238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64120014147312, 41.934982940209366, -85.64120014147312, 41.934982940209366], "geometry": {"coordinates": [-85.64120014147312, 41.934982940209366], "type": "Point"}, "id": "4239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64138031067552, 41.934981475986895, -85.64138031067552, 41.934981475986895], "geometry": {"coordinates": [-85.64138031067552, 41.934981475986895], "type": "Point"}, "id": "4240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64156048119052, 41.934980088219376, -85.64156048119052, 41.934980088219376], "geometry": {"coordinates": [-85.64156048119052, 41.934980088219376], "type": "Point"}, "id": "4241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64174065170553, 41.934978700451815, -85.64174065170553, 41.934978700451815], "geometry": {"coordinates": [-85.64174065170553, 41.934978700451815], "type": "Point"}, "id": "4242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64192082222053, 41.934977312684225, -85.64192082222053, 41.934977312684225], "geometry": {"coordinates": [-85.64192082222053, 41.934977312684225], "type": "Point"}, "id": "4243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64210099273555, 41.934975924916614, -85.64210099273555, 41.934975924916614], "geometry": {"coordinates": [-85.64210099273555, 41.934975924916614], "type": "Point"}, "id": "4244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64228116325054, 41.93497453714896, -85.64228116325054, 41.93497453714896], "geometry": {"coordinates": [-85.64228116325054, 41.93497453714896], "type": "Point"}, "id": "4245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64246133891254, 41.934974307312245, -85.64246133891254, 41.934974307312245], "geometry": {"coordinates": [-85.64246133891254, 41.934974307312245], "type": "Point"}, "id": "4246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64264151782473, 41.934974808686135, -85.64264151782473, 41.934974808686135], "geometry": {"coordinates": [-85.64264151782473, 41.934974808686135], "type": "Point"}, "id": "4247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64282169673695, 41.93497531006001, -85.64282169673695, 41.93497531006001], "geometry": {"coordinates": [-85.64282169673695, 41.93497531006001], "type": "Point"}, "id": "4248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64300187564913, 41.93497581143389, -85.64300187564913, 41.93497581143389], "geometry": {"coordinates": [-85.64300187564913, 41.93497581143389], "type": "Point"}, "id": "4249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64318205456132, 41.934976312807756, -85.64318205456132, 41.934976312807756], "geometry": {"coordinates": [-85.64318205456132, 41.934976312807756], "type": "Point"}, "id": "4250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64336223347351, 41.93497681418163, -85.64336223347351, 41.93497681418163], "geometry": {"coordinates": [-85.64336223347351, 41.93497681418163], "type": "Point"}, "id": "4251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64354241238573, 41.934977315555486, -85.64354241238573, 41.934977315555486], "geometry": {"coordinates": [-85.64354241238573, 41.934977315555486], "type": "Point"}, "id": "4252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64372259129792, 41.93497781692935, -85.64372259129792, 41.93497781692935], "geometry": {"coordinates": [-85.64372259129792, 41.93497781692935], "type": "Point"}, "id": "4253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6439027702101, 41.93497831830321, -85.6439027702101, 41.93497831830321], "geometry": {"coordinates": [-85.6439027702101, 41.93497831830321], "type": "Point"}, "id": "4254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6440829491223, 41.93497881967705, -85.6440829491223, 41.93497881967705], "geometry": {"coordinates": [-85.6440829491223, 41.93497881967705], "type": "Point"}, "id": "4255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64426312803451, 41.93497932105091, -85.64426312803451, 41.93497932105091], "geometry": {"coordinates": [-85.64426312803451, 41.93497932105091], "type": "Point"}, "id": "4256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6444432636682, 41.934976670720985, -85.6444432636682, 41.934976670720985], "geometry": {"coordinates": [-85.6444432636682, 41.934976670720985], "type": "Point"}, "id": "4257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64462339121333, 41.934973431353114, -85.64462339121333, 41.934973431353114], "geometry": {"coordinates": [-85.64462339121333, 41.934973431353114], "type": "Point"}, "id": "4258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64480351875847, 41.93497019198507, -85.64480351875847, 41.93497019198507], "geometry": {"coordinates": [-85.64480351875847, 41.93497019198507], "type": "Point"}, "id": "4259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64498364668455, 41.93496696437306, -85.64498364668455, 41.93496696437306], "geometry": {"coordinates": [-85.64498364668455, 41.93496696437306], "type": "Point"}, "id": "4260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64516377483243, 41.93496374360534, -85.64516377483243, 41.93496374360534], "geometry": {"coordinates": [-85.64516377483243, 41.93496374360534], "type": "Point"}, "id": "4261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.6453439029803, 41.93496052283745, -85.6453439029803, 41.93496052283745], "geometry": {"coordinates": [-85.6453439029803, 41.93496052283745], "type": "Point"}, "id": "4262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64552403052724, 41.934957283553075, -85.64552403052724, 41.934957283553075], "geometry": {"coordinates": [-85.64552403052724, 41.934957283553075], "type": "Point"}, "id": "4263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64570415638468, 41.93495399279136, -85.64570415638468, 41.93495399279136], "geometry": {"coordinates": [-85.64570415638468, 41.93495399279136], "type": "Point"}, "id": "4264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64588428442386, 41.93495076893254, -85.64588428442386, 41.93495076893254], "geometry": {"coordinates": [-85.64588428442386, 41.93495076893254], "type": "Point"}, "id": "4265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64606441254422, 41.93494754731274, -85.64606441254422, 41.93494754731274], "geometry": {"coordinates": [-85.64606441254422, 41.93494754731274], "type": "Point"}, "id": "4266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64624454066458, 41.934944325692776, -85.64624454066458, 41.934944325692776], "geometry": {"coordinates": [-85.64624454066458, 41.934944325692776], "type": "Point"}, "id": "4267", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64642466878496, 41.93494110407265, -85.64642466878496, 41.93494110407265], "geometry": {"coordinates": [-85.64642466878496, 41.93494110407265], "type": "Point"}, "id": "4268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64660473428854, 41.93494356190197, -85.64660473428854, 41.93494356190197], "geometry": {"coordinates": [-85.64660473428854, 41.93494356190197], "type": "Point"}, "id": "4269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.64678476714428, 41.934948980951205, -85.64678476714428, 41.934948980951205], "geometry": {"coordinates": [-85.64678476714428, 41.934948980951205], "type": "Point"}, "id": "4270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965641}, "type": "Feature"}, {"bbox": [-85.63339989999999, 41.9437132, -85.63339989999999, 41.9437132], "geometry": {"coordinates": [-85.63339989999999, 41.9437132], "type": "Point"}, "id": "4271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967752}, "type": "Feature"}, {"bbox": [-85.63354115673935, 41.943851546343225, -85.63354115673935, 41.943851546343225], "geometry": {"coordinates": [-85.63354115673935, 41.943851546343225], "type": "Point"}, "id": "4272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967752}, "type": "Feature"}, {"bbox": [-85.625694, 41.93319, -85.625694, 41.93319], "geometry": {"coordinates": [-85.625694, 41.93319], "type": "Point"}, "id": "4273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.625693210873, 41.933324678611775, -85.625693210873, 41.933324678611775], "geometry": {"coordinates": [-85.625693210873, 41.933324678611775], "type": "Point"}, "id": "4274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569242174602, 41.93345935693916, -85.62569242174602, 41.93345935693916], "geometry": {"coordinates": [-85.62569242174602, 41.93345935693916], "type": "Point"}, "id": "4275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569163261902, 41.93359403498217, -85.62569163261902, 41.93359403498217], "geometry": {"coordinates": [-85.62569163261902, 41.93359403498217], "type": "Point"}, "id": "4276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569084349204, 41.9337287127408, -85.62569084349204, 41.9337287127408], "geometry": {"coordinates": [-85.62569084349204, 41.9337287127408], "type": "Point"}, "id": "4277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569005436504, 41.93386339021506, -85.62569005436504, 41.93386339021506], "geometry": {"coordinates": [-85.62569005436504, 41.93386339021506], "type": "Point"}, "id": "4278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62568926523805, 41.93399806740494, -85.62568926523805, 41.93399806740494], "geometry": {"coordinates": [-85.62568926523805, 41.93399806740494], "type": "Point"}, "id": "4279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62568847611107, 41.93413274431044, -85.62568847611107, 41.93413274431044], "geometry": {"coordinates": [-85.62568847611107, 41.93413274431044], "type": "Point"}, "id": "4280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62568960410917, 41.93426740810938, -85.62568960410917, 41.93426740810938], "geometry": {"coordinates": [-85.62568960410917, 41.93426740810938], "type": "Point"}, "id": "4281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569364813943, 41.93440205212092, -85.62569364813943, 41.93440205212092], "geometry": {"coordinates": [-85.62569364813943, 41.93440205212092], "type": "Point"}, "id": "4282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62569769216972, 41.93453669584822, -85.62569769216972, 41.93453669584822], "geometry": {"coordinates": [-85.62569769216972, 41.93453669584822], "type": "Point"}, "id": "4283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62570173620001, 41.93467133929128, -85.62570173620001, 41.93467133929128], "geometry": {"coordinates": [-85.62570173620001, 41.93467133929128], "type": "Point"}, "id": "4284", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62570578023029, 41.934805982450094, -85.62570578023029, 41.934805982450094], "geometry": {"coordinates": [-85.62570578023029, 41.934805982450094], "type": "Point"}, "id": "4285", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62570982426058, 41.93494062532467, -85.62570982426058, 41.93494062532467], "geometry": {"coordinates": [-85.62570982426058, 41.93494062532467], "type": "Point"}, "id": "4286", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62571386829087, 41.935075267915, -85.62571386829087, 41.935075267915], "geometry": {"coordinates": [-85.62571386829087, 41.935075267915], "type": "Point"}, "id": "4287", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62571790873356, 41.935209910272036, -85.62571790873356, 41.935209910272036], "geometry": {"coordinates": [-85.62571790873356, 41.935209910272036], "type": "Point"}, "id": "4288", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62572077524621, 41.93534456901523, -85.62572077524621, 41.93534456901523], "geometry": {"coordinates": [-85.62572077524621, 41.93534456901523], "type": "Point"}, "id": "4289", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62572364175888, 41.93547922747408, -85.62572364175888, 41.93547922747408], "geometry": {"coordinates": [-85.62572364175888, 41.93547922747408], "type": "Point"}, "id": "4290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62572650827153, 41.935613885648635, -85.62572650827153, 41.935613885648635], "geometry": {"coordinates": [-85.62572650827153, 41.935613885648635], "type": "Point"}, "id": "4291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257293747842, 41.93574854353888, -85.6257293747842, 41.93574854353888], "geometry": {"coordinates": [-85.6257293747842, 41.93574854353888], "type": "Point"}, "id": "4292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573224129684, 41.93588320114481, -85.62573224129684, 41.93588320114481], "geometry": {"coordinates": [-85.62573224129684, 41.93588320114481], "type": "Point"}, "id": "4293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257351078095, 41.93601785846642, -85.6257351078095, 41.93601785846642], "geometry": {"coordinates": [-85.6257351078095, 41.93601785846642], "type": "Point"}, "id": "4294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573797432218, 41.936152515503714, -85.62573797432218, 41.936152515503714], "geometry": {"coordinates": [-85.62573797432218, 41.936152515503714], "type": "Point"}, "id": "4295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573871265062, 41.9362871835809, -85.62573871265062, 41.9362871835809], "geometry": {"coordinates": [-85.62573871265062, 41.9362871835809], "type": "Point"}, "id": "4296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573843594524, 41.93642185677478, -85.62573843594524, 41.93642185677478], "geometry": {"coordinates": [-85.62573843594524, 41.93642185677478], "type": "Point"}, "id": "4297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573815923987, 41.93655652968427, -85.62573815923987, 41.93655652968427], "geometry": {"coordinates": [-85.62573815923987, 41.93655652968427], "type": "Point"}, "id": "4298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573788253452, 41.93669120230936, -85.62573788253452, 41.93669120230936], "geometry": {"coordinates": [-85.62573788253452, 41.93669120230936], "type": "Point"}, "id": "4299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573760582916, 41.93682587465008, -85.62573760582916, 41.93682587465008], "geometry": {"coordinates": [-85.62573760582916, 41.93682587465008], "type": "Point"}, "id": "4300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257373291238, 41.936960546706416, -85.6257373291238, 41.936960546706416], "geometry": {"coordinates": [-85.6257373291238, 41.936960546706416], "type": "Point"}, "id": "4301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62573705241842, 41.937095218478355, -85.62573705241842, 41.937095218478355], "geometry": {"coordinates": [-85.62573705241842, 41.937095218478355], "type": "Point"}, "id": "4302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257379219222, 41.937229885259725, -85.6257379219222, 41.937229885259725], "geometry": {"coordinates": [-85.6257379219222, 41.937229885259725], "type": "Point"}, "id": "4303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62574019707142, 41.93736454598532, -85.62574019707142, 41.93736454598532], "geometry": {"coordinates": [-85.62574019707142, 41.93736454598532], "type": "Point"}, "id": "4304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62574247222065, 41.937499206426565, -85.62574247222065, 41.937499206426565], "geometry": {"coordinates": [-85.62574247222065, 41.937499206426565], "type": "Point"}, "id": "4305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257447473699, 41.937633866583475, -85.6257447473699, 41.937633866583475], "geometry": {"coordinates": [-85.6257447473699, 41.937633866583475], "type": "Point"}, "id": "4306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62574702190194, 41.9377685264618, -85.62574702190194, 41.9377685264618], "geometry": {"coordinates": [-85.62574702190194, 41.9377685264618], "type": "Point"}, "id": "4307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.62574929436389, 41.93790318607513, -85.62574929436389, 41.93790318607513], "geometry": {"coordinates": [-85.62574929436389, 41.93790318607513], "type": "Point"}, "id": "4308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.6257418723105, 41.938037655675544, -85.6257418723105, 41.938037655675544], "geometry": {"coordinates": [-85.6257418723105, 41.938037655675544], "type": "Point"}, "id": "4309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 379694409}, "type": "Feature"}, {"bbox": [-85.61523799999999, 41.94746799999999, -85.61523799999999, 41.94746799999999], "geometry": {"coordinates": [-85.61523799999999, 41.94746799999999], "type": "Point"}, "id": "4310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61523373756633, 41.94732591983399, -85.61523373756633, 41.94732591983399], "geometry": {"coordinates": [-85.61523373756633, 41.94732591983399], "type": "Point"}, "id": "4311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61522947513268, 41.94718383935135, -85.61522947513268, 41.94718383935135], "geometry": {"coordinates": [-85.61522947513268, 41.94718383935135], "type": "Point"}, "id": "4312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61522521269902, 41.94704175855204, -85.61522521269902, 41.94704175855204], "geometry": {"coordinates": [-85.61522521269902, 41.94704175855204], "type": "Point"}, "id": "4313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61522095026535, 41.946899677436086, -85.61522095026535, 41.946899677436086], "geometry": {"coordinates": [-85.61522095026535, 41.946899677436086], "type": "Point"}, "id": "4314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.6152166878317, 41.946757596003486, -85.6152166878317, 41.946757596003486], "geometry": {"coordinates": [-85.6152166878317, 41.946757596003486], "type": "Point"}, "id": "4315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61521242539804, 41.94661551425424, -85.61521242539804, 41.94661551425424], "geometry": {"coordinates": [-85.61521242539804, 41.94661551425424], "type": "Point"}, "id": "4316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61520816296436, 41.94647343218834, -85.61520816296436, 41.94647343218834], "geometry": {"coordinates": [-85.61520816296436, 41.94647343218834], "type": "Point"}, "id": "4317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61520393299689, 41.94633134926914, -85.61520393299689, 41.94633134926914], "geometry": {"coordinates": [-85.61520393299689, 41.94633134926914], "type": "Point"}, "id": "4318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61519970432, 41.94618926601193, -85.61519970432, 41.94618926601193], "geometry": {"coordinates": [-85.61519970432, 41.94618926601193], "type": "Point"}, "id": "4319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61519547564313, 41.94604718243808, -85.61519547564313, 41.94604718243808], "geometry": {"coordinates": [-85.61519547564313, 41.94604718243808], "type": "Point"}, "id": "4320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61519124696626, 41.945905098547584, -85.61519124696626, 41.945905098547584], "geometry": {"coordinates": [-85.61519124696626, 41.945905098547584], "type": "Point"}, "id": "4321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.61519619190304, 41.94576357373312, -85.61519619190304, 41.94576357373312], "geometry": {"coordinates": [-85.61519619190304, 41.94576357373312], "type": "Point"}, "id": "4322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964647}, "type": "Feature"}, {"bbox": [-85.645806, 41.9398831, -85.645806, 41.9398831], "geometry": {"coordinates": [-85.645806, 41.9398831], "type": "Point"}, "id": "4323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64580878875041, 41.94002318483871, -85.64580878875041, 41.94002318483871], "geometry": {"coordinates": [-85.64580878875041, 41.94002318483871], "type": "Point"}, "id": "4324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64581157750082, 41.94016326936966, -85.64581157750082, 41.94016326936966], "geometry": {"coordinates": [-85.64581157750082, 41.94016326936966], "type": "Point"}, "id": "4325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64581436625124, 41.9403033535929, -85.64581436625124, 41.9403033535929], "geometry": {"coordinates": [-85.64581436625124, 41.9403033535929], "type": "Point"}, "id": "4326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64581715500167, 41.940443437508385, -85.64581715500167, 41.940443437508385], "geometry": {"coordinates": [-85.64581715500167, 41.940443437508385], "type": "Point"}, "id": "4327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.6458199437521, 41.94058352111613, -85.6458199437521, 41.94058352111613], "geometry": {"coordinates": [-85.6458199437521, 41.94058352111613], "type": "Point"}, "id": "4328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64582273250251, 41.940723604416135, -85.64582273250251, 41.940723604416135], "geometry": {"coordinates": [-85.64582273250251, 41.940723604416135], "type": "Point"}, "id": "4329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64582552125292, 41.94086368740841, -85.64582552125292, 41.94086368740841], "geometry": {"coordinates": [-85.64582552125292, 41.94086368740841], "type": "Point"}, "id": "4330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64582831000334, 41.94100377009294, -85.64582831000334, 41.94100377009294], "geometry": {"coordinates": [-85.64582831000334, 41.94100377009294], "type": "Point"}, "id": "4331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64583109875376, 41.94114385246973, -85.64583109875376, 41.94114385246973], "geometry": {"coordinates": [-85.64583109875376, 41.94114385246973], "type": "Point"}, "id": "4332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64572809074264, 41.94124247600372, -85.64572809074264, 41.94124247600372], "geometry": {"coordinates": [-85.64572809074264, 41.94124247600372], "type": "Point"}, "id": "4333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.6455397452714, 41.94124222079305, -85.6455397452714, 41.94124222079305], "geometry": {"coordinates": [-85.6455397452714, 41.94124222079305], "type": "Point"}, "id": "4334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968033}, "type": "Feature"}, {"bbox": [-85.64742299999999, 41.9471251, -85.64742299999999, 41.9471251], "geometry": {"coordinates": [-85.64742299999999, 41.9471251], "type": "Point"}, "id": "4335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64742068340216, 41.94698712346677, -85.64742068340216, 41.94698712346677], "geometry": {"coordinates": [-85.64742068340216, 41.94698712346677], "type": "Point"}, "id": "4336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64741842287644, 41.94684914611988, -85.64741842287644, 41.94684914611988], "geometry": {"coordinates": [-85.64741842287644, 41.94684914611988], "type": "Point"}, "id": "4337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64741606679944, 41.94671116936663, -85.64741606679944, 41.94671116936663], "geometry": {"coordinates": [-85.64741606679944, 41.94671116936663], "type": "Point"}, "id": "4338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64741376147848, 41.946573191832606, -85.64741376147848, 41.946573191832606], "geometry": {"coordinates": [-85.64741376147848, 41.946573191832606], "type": "Point"}, "id": "4339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64741144918277, 41.94643521406332, -85.64741144918277, 41.94643521406332], "geometry": {"coordinates": [-85.64741144918277, 41.94643521406332], "type": "Point"}, "id": "4340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64740913688708, 41.946297235995424, -85.64740913688708, 41.946297235995424], "geometry": {"coordinates": [-85.64740913688708, 41.946297235995424], "type": "Point"}, "id": "4341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.6474068245914, 41.94615925762889, -85.6474068245914, 41.94615925762889], "geometry": {"coordinates": [-85.6474068245914, 41.94615925762889], "type": "Point"}, "id": "4342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.6474045122957, 41.946021278963755, -85.6474045122957, 41.946021278963755], "geometry": {"coordinates": [-85.6474045122957, 41.946021278963755], "type": "Point"}, "id": "4343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968030}, "type": "Feature"}, {"bbox": [-85.64307099999999, 41.941288, -85.64307099999999, 41.941288], "geometry": {"coordinates": [-85.64307099999999, 41.941288], "type": "Point"}, "id": "4344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64286333205199, 41.941292635445336, -85.64286333205199, 41.941292635445336], "geometry": {"coordinates": [-85.64286333205199, 41.941292635445336], "type": "Point"}, "id": "4345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64265566481691, 41.94129728850569, -85.64265566481691, 41.94129728850569], "geometry": {"coordinates": [-85.64265566481691, 41.94129728850569], "type": "Point"}, "id": "4346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64244799806158, 41.94130195341922, -85.64244799806158, 41.94130195341922], "geometry": {"coordinates": [-85.64244799806158, 41.94130195341922], "type": "Point"}, "id": "4347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64224033130624, 41.941306618332405, -85.64224033130624, 41.941306618332405], "geometry": {"coordinates": [-85.64224033130624, 41.941306618332405], "type": "Point"}, "id": "4348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.64203266455088, 41.94131128324525, -85.64203266455088, 41.94131128324525], "geometry": {"coordinates": [-85.64203266455088, 41.94131128324525], "type": "Point"}, "id": "4349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 204000205}, "type": "Feature"}, {"bbox": [-85.6370124, 41.9413618, -85.6370124, 41.9413618], "geometry": {"coordinates": [-85.6370124, 41.9413618], "type": "Point"}, "id": "4350", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.63701300090402, 41.941501993254256, -85.63701300090402, 41.941501993254256], "geometry": {"coordinates": [-85.63701300090402, 41.941501993254256], "type": "Point"}, "id": "4351", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.63701360180804, 41.94164218620029, -85.63701360180804, 41.94164218620029], "geometry": {"coordinates": [-85.63701360180804, 41.94164218620029], "type": "Point"}, "id": "4352", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.63701420271205, 41.941782378838084, -85.63701420271205, 41.941782378838084], "geometry": {"coordinates": [-85.63701420271205, 41.941782378838084], "type": "Point"}, "id": "4353", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.63701480361608, 41.941922571167645, -85.63701480361608, 41.941922571167645], "geometry": {"coordinates": [-85.63701480361608, 41.941922571167645], "type": "Point"}, "id": "4354", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.6370154045201, 41.94206276318898, -85.6370154045201, 41.94206276318898], "geometry": {"coordinates": [-85.6370154045201, 41.94206276318898], "type": "Point"}, "id": "4355", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.63701600542412, 41.94220295490208, -85.63701600542412, 41.94220295490208], "geometry": {"coordinates": [-85.63701600542412, 41.94220295490208], "type": "Point"}, "id": "4356", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.63701660632815, 41.94234314630695, -85.63701660632815, 41.94234314630695], "geometry": {"coordinates": [-85.63701660632815, 41.94234314630695], "type": "Point"}, "id": "4357", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.63702172342997, 41.94248327900036, -85.63702172342997, 41.94248327900036], "geometry": {"coordinates": [-85.63702172342997, 41.94248327900036], "type": "Point"}, "id": "4358", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966400}, "type": "Feature"}, {"bbox": [-85.6344386, 41.9456229, -85.6344386, 41.9456229], "geometry": {"coordinates": [-85.6344386, 41.9456229], "type": "Point"}, "id": "4359", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427781}, "type": "Feature"}, {"bbox": [-85.63456444856088, 41.94574976564382, -85.63456444856088, 41.94574976564382], "geometry": {"coordinates": [-85.63456444856088, 41.94574976564382], "type": "Point"}, "id": "4360", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427781}, "type": "Feature"}, {"bbox": [-85.63462963143182, 41.94589951686111, -85.63462963143182, 41.94589951686111], "geometry": {"coordinates": [-85.63462963143182, 41.94589951686111], "type": "Point"}, "id": "4361", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427781}, "type": "Feature"}, {"bbox": [-85.63819409999999, 41.9400924, -85.63819409999999, 41.9400924], "geometry": {"coordinates": [-85.63819409999999, 41.9400924], "type": "Point"}, "id": "4362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63819684025849, 41.94023252052428, -85.63819684025849, 41.94023252052428], "geometry": {"coordinates": [-85.63819684025849, 41.94023252052428], "type": "Point"}, "id": "4363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63819958051698, 41.94037264074067, -85.63819958051698, 41.94037264074067], "geometry": {"coordinates": [-85.63819958051698, 41.94037264074067], "type": "Point"}, "id": "4364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63820232077548, 41.940512760649156, -85.63820232077548, 41.940512760649156], "geometry": {"coordinates": [-85.63820232077548, 41.940512760649156], "type": "Point"}, "id": "4365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63820506103396, 41.94065288024974, -85.63820506103396, 41.94065288024974], "geometry": {"coordinates": [-85.63820506103396, 41.94065288024974], "type": "Point"}, "id": "4366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63820780129247, 41.94079299954243, -85.63820780129247, 41.94079299954243], "geometry": {"coordinates": [-85.63820780129247, 41.94079299954243], "type": "Point"}, "id": "4367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63821054155096, 41.94093311852723, -85.63821054155096, 41.94093311852723], "geometry": {"coordinates": [-85.63821054155096, 41.94093311852723], "type": "Point"}, "id": "4368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63821328180944, 41.94107323720412, -85.63821328180944, 41.94107323720412], "geometry": {"coordinates": [-85.63821328180944, 41.94107323720412], "type": "Point"}, "id": "4369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63821602206794, 41.94121335557311, -85.63821602206794, 41.94121335557311], "geometry": {"coordinates": [-85.63821602206794, 41.94121335557311], "type": "Point"}, "id": "4370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63821876232643, 41.941353473634216, -85.63821876232643, 41.941353473634216], "geometry": {"coordinates": [-85.63821876232643, 41.941353473634216], "type": "Point"}, "id": "4371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822054077458, 41.94149359994244, -85.63822054077458, 41.94149359994244], "geometry": {"coordinates": [-85.63822054077458, 41.94149359994244], "type": "Point"}, "id": "4372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822230581528, 41.94163372606199, -85.63822230581528, 41.94163372606199], "geometry": {"coordinates": [-85.63822230581528, 41.94163372606199], "type": "Point"}, "id": "4373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822407085597, 41.9417738518736, -85.63822407085597, 41.9417738518736], "geometry": {"coordinates": [-85.63822407085597, 41.9417738518736], "type": "Point"}, "id": "4374", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822583589668, 41.94191397737727, -85.63822583589668, 41.94191397737727], "geometry": {"coordinates": [-85.63822583589668, 41.94191397737727], "type": "Point"}, "id": "4375", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822760093737, 41.94205410257301, -85.63822760093737, 41.94205410257301], "geometry": {"coordinates": [-85.63822760093737, 41.94205410257301], "type": "Point"}, "id": "4376", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63822936597805, 41.94219422746082, -85.63822936597805, 41.94219422746082], "geometry": {"coordinates": [-85.63822936597805, 41.94219422746082], "type": "Point"}, "id": "4377", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63823113101874, 41.94233435204068, -85.63823113101874, 41.94233435204068], "geometry": {"coordinates": [-85.63823113101874, 41.94233435204068], "type": "Point"}, "id": "4378", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63823289605942, 41.942474476312604, -85.63823289605942, 41.942474476312604], "geometry": {"coordinates": [-85.63823289605942, 41.942474476312604], "type": "Point"}, "id": "4379", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967315}, "type": "Feature"}, {"bbox": [-85.63644330000001, 41.94604230000001, -85.63644330000001, 41.94604230000001], "geometry": {"coordinates": [-85.63644330000001, 41.94604230000001], "type": "Point"}, "id": "4380", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150840}, "type": "Feature"}, {"bbox": [-85.63663965333066, 41.94602557195134, -85.63663965333066, 41.94602557195134], "geometry": {"coordinates": [-85.63663965333066, 41.94602557195134], "type": "Point"}, "id": "4381", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150840}, "type": "Feature"}, {"bbox": [-85.63683523018378, 41.94600435919482, -85.63683523018378, 41.94600435919482], "geometry": {"coordinates": [-85.63683523018378, 41.94600435919482], "type": "Point"}, "id": "4382", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150840}, "type": "Feature"}, {"bbox": [-85.64691539999998, 41.94254269999999, -85.64691539999998, 41.94254269999999], "geometry": {"coordinates": [-85.64691539999998, 41.94254269999999], "type": "Point"}, "id": "4383", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64691707675186, 41.94268054667246, -85.64691707675186, 41.94268054667246], "geometry": {"coordinates": [-85.64691707675186, 41.94268054667246], "type": "Point"}, "id": "4384", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64691869783931, 41.94281839341977, -85.64691869783931, 41.94281839341977], "geometry": {"coordinates": [-85.64691869783931, 41.94281839341977], "type": "Point"}, "id": "4385", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692031892676, 41.942956239869055, -85.64692031892676, 41.942956239869055], "geometry": {"coordinates": [-85.64692031892676, 41.942956239869055], "type": "Point"}, "id": "4386", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.6469219400142, 41.94309408602034, -85.6469219400142, 41.94309408602034], "geometry": {"coordinates": [-85.6469219400142, 41.94309408602034], "type": "Point"}, "id": "4387", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692357308564, 41.94323193179524, -85.64692357308564, 41.94323193179524], "geometry": {"coordinates": [-85.64692357308564, 41.94323193179524], "type": "Point"}, "id": "4388", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692521090471, 41.94336977724106, -85.64692521090471, 41.94336977724106], "geometry": {"coordinates": [-85.64692521090471, 41.94336977724106], "type": "Point"}, "id": "4389", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692684872377, 41.94350762238888, -85.64692684872377, 41.94350762238888], "geometry": {"coordinates": [-85.64692684872377, 41.94350762238888], "type": "Point"}, "id": "4390", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64692848654282, 41.94364546723868, -85.64692848654282, 41.94364546723868], "geometry": {"coordinates": [-85.64692848654282, 41.94364546723868], "type": "Point"}, "id": "4391", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64693012436187, 41.94378331179047, -85.64693012436187, 41.94378331179047], "geometry": {"coordinates": [-85.64693012436187, 41.94378331179047], "type": "Point"}, "id": "4392", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64693176218093, 41.94392115604425, -85.64693176218093, 41.94392115604425], "geometry": {"coordinates": [-85.64693176218093, 41.94392115604425], "type": "Point"}, "id": "4393", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968024}, "type": "Feature"}, {"bbox": [-85.64655509999999, 41.9540853, -85.64655509999999, 41.9540853], "geometry": {"coordinates": [-85.64655509999999, 41.9540853], "type": "Point"}, "id": "4394", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 652550667}, "type": "Feature"}, {"bbox": [-85.6406114, 41.9400627, -85.6406114, 41.9400627], "geometry": {"coordinates": [-85.6406114, 41.9400627], "type": "Point"}, "id": "4395", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64061436184063, 41.94020371592447, -85.64061436184063, 41.94020371592447], "geometry": {"coordinates": [-85.64061436184063, 41.94020371592447], "type": "Point"}, "id": "4396", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64061732368125, 41.94034473153709, -85.64061732368125, 41.94034473153709], "geometry": {"coordinates": [-85.64061732368125, 41.94034473153709], "type": "Point"}, "id": "4397", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6406202855219, 41.94048574683788, -85.6406202855219, 41.94048574683788], "geometry": {"coordinates": [-85.6406202855219, 41.94048574683788], "type": "Point"}, "id": "4398", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64062324736254, 41.940626761826806, -85.64062324736254, 41.940626761826806], "geometry": {"coordinates": [-85.64062324736254, 41.940626761826806], "type": "Point"}, "id": "4399", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64062620920318, 41.9407677765039, -85.64062620920318, 41.9407677765039], "geometry": {"coordinates": [-85.64062620920318, 41.9407677765039], "type": "Point"}, "id": "4400", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64062917104381, 41.94090879086913, -85.64062917104381, 41.94090879086913], "geometry": {"coordinates": [-85.64062917104381, 41.94090879086913], "type": "Point"}, "id": "4401", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64063213288445, 41.94104980492254, -85.64063213288445, 41.94104980492254], "geometry": {"coordinates": [-85.64063213288445, 41.94104980492254], "type": "Point"}, "id": "4402", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6406350947251, 41.94119081866409, -85.6406350947251, 41.94119081866409], "geometry": {"coordinates": [-85.6406350947251, 41.94119081866409], "type": "Point"}, "id": "4403", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64063805656572, 41.941331832093795, -85.64063805656572, 41.941331832093795], "geometry": {"coordinates": [-85.64063805656572, 41.941331832093795], "type": "Point"}, "id": "4404", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64064036422735, 41.941472851961734, -85.64064036422735, 41.941472851961734], "geometry": {"coordinates": [-85.64064036422735, 41.941472851961734], "type": "Point"}, "id": "4405", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6406426621529, 41.941613871618245, -85.6406426621529, 41.941613871618245], "geometry": {"coordinates": [-85.6406426621529, 41.941613871618245], "type": "Point"}, "id": "4406", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64064496007846, 41.94175489096288, -85.64064496007846, 41.94175489096288], "geometry": {"coordinates": [-85.64064496007846, 41.94175489096288], "type": "Point"}, "id": "4407", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64064725800404, 41.94189590999565, -85.64064725800404, 41.94189590999565], "geometry": {"coordinates": [-85.64064725800404, 41.94189590999565], "type": "Point"}, "id": "4408", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64064955592958, 41.94203692871653, -85.64064955592958, 41.94203692871653], "geometry": {"coordinates": [-85.64064955592958, 41.94203692871653], "type": "Point"}, "id": "4409", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64065185385515, 41.94217794712555, -85.64065185385515, 41.94217794712555], "geometry": {"coordinates": [-85.64065185385515, 41.94217794712555], "type": "Point"}, "id": "4410", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.6406541517807, 41.942318965222675, -85.6406541517807, 41.942318965222675], "geometry": {"coordinates": [-85.6406541517807, 41.942318965222675], "type": "Point"}, "id": "4411", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.64065644970626, 41.94245998300792, -85.64065644970626, 41.94245998300792], "geometry": {"coordinates": [-85.64065644970626, 41.94245998300792], "type": "Point"}, "id": "4412", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966041}, "type": "Feature"}, {"bbox": [-85.63368239999998, 41.94398989999999, -85.63368239999998, 41.94398989999999], "geometry": {"coordinates": [-85.63368239999998, 41.94398989999999], "type": "Point"}, "id": "4413", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63379442279485, 41.944099620073814, -85.63379442279485, 41.944099620073814], "geometry": {"coordinates": [-85.63379442279485, 41.944099620073814], "type": "Point"}, "id": "4414", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63391102760018, 41.94420658464382, -85.63391102760018, 41.94420658464382], "geometry": {"coordinates": [-85.63391102760018, 41.94420658464382], "type": "Point"}, "id": "4415", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63403180279431, 41.944311041245264, -85.63403180279431, 41.944311041245264], "geometry": {"coordinates": [-85.63403180279431, 41.944311041245264], "type": "Point"}, "id": "4416", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63415514637421, 41.94441371360982, -85.63415514637421, 41.94441371360982], "geometry": {"coordinates": [-85.63415514637421, 41.94441371360982], "type": "Point"}, "id": "4417", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63428700875879, 41.94451046844086, -85.63428700875879, 41.94451046844086], "geometry": {"coordinates": [-85.63428700875879, 41.94451046844086], "type": "Point"}, "id": "4418", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63441887114337, 41.94460722312507, -85.63441887114337, 41.94460722312507], "geometry": {"coordinates": [-85.63441887114337, 41.94460722312507], "type": "Point"}, "id": "4419", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63455073352793, 41.94470397766245, -85.63455073352793, 41.94470397766245], "geometry": {"coordinates": [-85.63455073352793, 41.94470397766245], "type": "Point"}, "id": "4420", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63468259591251, 41.944800732053004, -85.63468259591251, 41.944800732053004], "geometry": {"coordinates": [-85.63468259591251, 41.944800732053004], "type": "Point"}, "id": "4421", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.6348144582971, 41.94489748629672, -85.6348144582971, 41.94489748629672], "geometry": {"coordinates": [-85.6348144582971, 41.94489748629672], "type": "Point"}, "id": "4422", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63494632068166, 41.94499424039361, -85.63494632068166, 41.94499424039361], "geometry": {"coordinates": [-85.63494632068166, 41.94499424039361], "type": "Point"}, "id": "4423", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63507818306623, 41.94509099434367, -85.63507818306623, 41.94509099434367], "geometry": {"coordinates": [-85.63507818306623, 41.94509099434367], "type": "Point"}, "id": "4424", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63520540650254, 41.94519110946698, -85.63520540650254, 41.94519110946698], "geometry": {"coordinates": [-85.63520540650254, 41.94519110946698], "type": "Point"}, "id": "4425", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63533202396218, 41.945291664256146, -85.63533202396218, 41.945291664256146], "geometry": {"coordinates": [-85.63533202396218, 41.945291664256146], "type": "Point"}, "id": "4426", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63544951344637, 41.945397987081236, -85.63544951344637, 41.945397987081236], "geometry": {"coordinates": [-85.63544951344637, 41.945397987081236], "type": "Point"}, "id": "4427", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.6355624761134, 41.94550717033234, -85.6355624761134, 41.94550717033234], "geometry": {"coordinates": [-85.6355624761134, 41.94550717033234], "type": "Point"}, "id": "4428", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.6356692694953, 41.94561940059449, -85.6356692694953, 41.94561940059449], "geometry": {"coordinates": [-85.6356692694953, 41.94561940059449], "type": "Point"}, "id": "4429", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63576074865117, 41.945739194808354, -85.63576074865117, 41.945739194808354], "geometry": {"coordinates": [-85.63576074865117, 41.945739194808354], "type": "Point"}, "id": "4430", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.63585222780704, 41.94585898879713, -85.63585222780704, 41.94585898879713], "geometry": {"coordinates": [-85.63585222780704, 41.94585898879713], "type": "Point"}, "id": "4431", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 847427777}, "type": "Feature"}, {"bbox": [-85.633183, 41.947315, -85.633183, 41.947315], "geometry": {"coordinates": [-85.633183, 41.947315], "type": "Point"}, "id": "4432", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63318622840521, 41.947450698402825, -85.63318622840521, 41.947450698402825], "geometry": {"coordinates": [-85.63318622840521, 41.947450698402825], "type": "Point"}, "id": "4433", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63318945681038, 41.9475863965168, -85.63318945681038, 41.9475863965168], "geometry": {"coordinates": [-85.63318945681038, 41.9475863965168], "type": "Point"}, "id": "4434", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6331926852156, 41.94772209434193, -85.6331926852156, 41.94772209434193], "geometry": {"coordinates": [-85.6331926852156, 41.94772209434193], "type": "Point"}, "id": "4435", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6331959136208, 41.947857791878214, -85.6331959136208, 41.947857791878214], "geometry": {"coordinates": [-85.6331959136208, 41.947857791878214], "type": "Point"}, "id": "4436", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.633199142026, 41.94799348912566, -85.633199142026, 41.94799348912566], "geometry": {"coordinates": [-85.633199142026, 41.94799348912566], "type": "Point"}, "id": "4437", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63320237043118, 41.94812918608426, -85.63320237043118, 41.94812918608426], "geometry": {"coordinates": [-85.63320237043118, 41.94812918608426], "type": "Point"}, "id": "4438", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63320559883638, 41.94826488275401, -85.63320559883638, 41.94826488275401], "geometry": {"coordinates": [-85.63320559883638, 41.94826488275401], "type": "Point"}, "id": "4439", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63320882724159, 41.948400579134926, -85.63320882724159, 41.948400579134926], "geometry": {"coordinates": [-85.63320882724159, 41.948400579134926], "type": "Point"}, "id": "4440", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6332120556468, 41.94853627522699, -85.6332120556468, 41.94853627522699], "geometry": {"coordinates": [-85.6332120556468, 41.94853627522699], "type": "Point"}, "id": "4441", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63321586219013, 41.94867196170802, -85.63321586219013, 41.94867196170802], "geometry": {"coordinates": [-85.63321586219013, 41.94867196170802], "type": "Point"}, "id": "4442", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.633220544169, 41.94880763378434, -85.633220544169, 41.94880763378434], "geometry": {"coordinates": [-85.633220544169, 41.94880763378434], "type": "Point"}, "id": "4443", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63322522614787, 41.9489433055719, -85.63322522614787, 41.9489433055719], "geometry": {"coordinates": [-85.63322522614787, 41.9489433055719], "type": "Point"}, "id": "4444", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63322990812674, 41.94907897707072, -85.63322990812674, 41.94907897707072], "geometry": {"coordinates": [-85.63322990812674, 41.94907897707072], "type": "Point"}, "id": "4445", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63323459010563, 41.9492146482808, -85.63323459010563, 41.9492146482808], "geometry": {"coordinates": [-85.63323459010563, 41.9492146482808], "type": "Point"}, "id": "4446", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6332392720845, 41.94935031920214, -85.6332392720845, 41.94935031920214], "geometry": {"coordinates": [-85.6332392720845, 41.94935031920214], "type": "Point"}, "id": "4447", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63324395406337, 41.94948598983471, -85.63324395406337, 41.94948598983471], "geometry": {"coordinates": [-85.63324395406337, 41.94948598983471], "type": "Point"}, "id": "4448", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.63324863604225, 41.94962166017856, -85.63324863604225, 41.94962166017856], "geometry": {"coordinates": [-85.63324863604225, 41.94962166017856], "type": "Point"}, "id": "4449", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.6332533180211, 41.94975733023365, -85.6332533180211, 41.94975733023365], "geometry": {"coordinates": [-85.6332533180211, 41.94975733023365], "type": "Point"}, "id": "4450", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967444}, "type": "Feature"}, {"bbox": [-85.64242189999999, 41.9317372, -85.64242189999999, 41.9317372], "geometry": {"coordinates": [-85.64242189999999, 41.9317372], "type": "Point"}, "id": "4451", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6424235116583, 41.93187141533725, -85.6424235116583, 41.93187141533725], "geometry": {"coordinates": [-85.6424235116583, 41.93187141533725], "type": "Point"}, "id": "4452", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64242315981643, 41.932005634440316, -85.64242315981643, 41.932005634440316], "geometry": {"coordinates": [-85.64242315981643, 41.932005634440316], "type": "Point"}, "id": "4453", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64242254815254, 41.932139853796635, -85.64242254815254, 41.932139853796635], "geometry": {"coordinates": [-85.64242254815254, 41.932139853796635], "type": "Point"}, "id": "4454", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64242193648866, 41.93227407287052, -85.64242193648866, 41.93227407287052], "geometry": {"coordinates": [-85.64242193648866, 41.93227407287052], "type": "Point"}, "id": "4455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6424213248248, 41.932408291661986, -85.6424213248248, 41.932408291661986], "geometry": {"coordinates": [-85.6424213248248, 41.932408291661986], "type": "Point"}, "id": "4456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6424207131609, 41.93254251017101, -85.6424207131609, 41.93254251017101], "geometry": {"coordinates": [-85.6424207131609, 41.93254251017101], "type": "Point"}, "id": "4457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64242010149702, 41.93267672839761, -85.64242010149702, 41.93267672839761], "geometry": {"coordinates": [-85.64242010149702, 41.93267672839761], "type": "Point"}, "id": "4458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64241723927859, 41.93281092814385, -85.64241723927859, 41.93281092814385], "geometry": {"coordinates": [-85.64241723927859, 41.93281092814385], "type": "Point"}, "id": "4459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64241391298931, 41.93294512376429, -85.64241391298931, 41.93294512376429], "geometry": {"coordinates": [-85.64241391298931, 41.93294512376429], "type": "Point"}, "id": "4460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64241058670005, 41.93307931910239, -85.64241058670005, 41.93307931910239], "geometry": {"coordinates": [-85.64241058670005, 41.93307931910239], "type": "Point"}, "id": "4461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64240726041079, 41.933213514158155, -85.64240726041079, 41.933213514158155], "geometry": {"coordinates": [-85.64240726041079, 41.933213514158155], "type": "Point"}, "id": "4462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64240393412155, 41.93334770893157, -85.64240393412155, 41.93334770893157], "geometry": {"coordinates": [-85.64240393412155, 41.93334770893157], "type": "Point"}, "id": "4463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64240060783229, 41.93348190342266, -85.64240060783229, 41.93348190342266], "geometry": {"coordinates": [-85.64240060783229, 41.93348190342266], "type": "Point"}, "id": "4464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64239728154303, 41.93361609763141, -85.64239728154303, 41.93361609763141], "geometry": {"coordinates": [-85.64239728154303, 41.93361609763141], "type": "Point"}, "id": "4465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64239395525377, 41.93375029155782, -85.64239395525377, 41.93375029155782], "geometry": {"coordinates": [-85.64239395525377, 41.93375029155782], "type": "Point"}, "id": "4466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6423906289645, 41.93388448520189, -85.6423906289645, 41.93388448520189], "geometry": {"coordinates": [-85.6423906289645, 41.93388448520189], "type": "Point"}, "id": "4467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64238631366574, 41.934018661636166, -85.64238631366574, 41.934018661636166], "geometry": {"coordinates": [-85.64238631366574, 41.934018661636166], "type": "Point"}, "id": "4468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64238134030747, 41.93415282652515, -85.64238134030747, 41.93415282652515], "geometry": {"coordinates": [-85.64238134030747, 41.93415282652515], "type": "Point"}, "id": "4469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64237636694922, 41.9342869911319, -85.64237636694922, 41.9342869911319], "geometry": {"coordinates": [-85.64237636694922, 41.9342869911319], "type": "Point"}, "id": "4470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64237139359095, 41.934421155456434, -85.64237139359095, 41.934421155456434], "geometry": {"coordinates": [-85.64237139359095, 41.934421155456434], "type": "Point"}, "id": "4471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64236642023268, 41.934555319498756, -85.64236642023268, 41.934555319498756], "geometry": {"coordinates": [-85.64236642023268, 41.934555319498756], "type": "Point"}, "id": "4472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6423614468744, 41.93468948325884, -85.6423614468744, 41.93468948325884], "geometry": {"coordinates": [-85.6423614468744, 41.93468948325884], "type": "Point"}, "id": "4473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64235647351614, 41.93482364673672, -85.64235647351614, 41.93482364673672], "geometry": {"coordinates": [-85.64235647351614, 41.93482364673672], "type": "Point"}, "id": "4474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.6423515001579, 41.93495780993237, -85.6423515001579, 41.93495780993237], "geometry": {"coordinates": [-85.6423515001579, 41.93495780993237], "type": "Point"}, "id": "4475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64234786682748, 41.93509199612118, -85.64234786682748, 41.93509199612118], "geometry": {"coordinates": [-85.64234786682748, 41.93509199612118], "type": "Point"}, "id": "4476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64234441739632, 41.93522618522188, -85.64234441739632, 41.93522618522188], "geometry": {"coordinates": [-85.64234441739632, 41.93522618522188], "type": "Point"}, "id": "4477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64234096796515, 41.93536037404024, -85.64234096796515, 41.93536037404024], "geometry": {"coordinates": [-85.64234096796515, 41.93536037404024], "type": "Point"}, "id": "4478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64233749804609, 41.93549456228346, -85.64233749804609, 41.93549456228346], "geometry": {"coordinates": [-85.64233749804609, 41.93549456228346], "type": "Point"}, "id": "4479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64233401621851, 41.935628750074144, -85.64233401621851, 41.935628750074144], "geometry": {"coordinates": [-85.64233401621851, 41.935628750074144], "type": "Point"}, "id": "4480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64233054551686, 41.935762937741686, -85.64233054551686, 41.935762937741686], "geometry": {"coordinates": [-85.64233054551686, 41.935762937741686], "type": "Point"}, "id": "4481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64232708843271, 41.93589712532173, -85.64232708843271, 41.93589712532173], "geometry": {"coordinates": [-85.64232708843271, 41.93589712532173], "type": "Point"}, "id": "4482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.64232363134857, 41.93603131261945, -85.64232363134857, 41.93603131261945], "geometry": {"coordinates": [-85.64232363134857, 41.93603131261945], "type": "Point"}, "id": "4483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966325}, "type": "Feature"}, {"bbox": [-85.633183, 41.947315, -85.633183, 41.947315], "geometry": {"coordinates": [-85.633183, 41.947315], "type": "Point"}, "id": "4484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63336459985595, 41.94731601452437, -85.63336459985595, 41.94731601452437], "geometry": {"coordinates": [-85.63336459985595, 41.94731601452437], "type": "Point"}, "id": "4485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63354619971192, 41.947317029048705, -85.63354619971192, 41.947317029048705], "geometry": {"coordinates": [-85.63354619971192, 41.947317029048705], "type": "Point"}, "id": "4486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63372779956785, 41.947318043573034, -85.63372779956785, 41.947318043573034], "geometry": {"coordinates": [-85.63372779956785, 41.947318043573034], "type": "Point"}, "id": "4487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63390939942381, 41.94731905809734, -85.63390939942381, 41.94731905809734], "geometry": {"coordinates": [-85.63390939942381, 41.94731905809734], "type": "Point"}, "id": "4488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63409099946729, 41.94732005387291, -85.63409099946729, 41.94732005387291], "geometry": {"coordinates": [-85.63409099946729, 41.94732005387291], "type": "Point"}, "id": "4489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.63427259951884, 41.94732104884072, -85.63427259951884, 41.94732104884072], "geometry": {"coordinates": [-85.63427259951884, 41.94732104884072], "type": "Point"}, "id": "4490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.6344541996448, 41.94732203617679, -85.6344541996448, 41.94732203617679], "geometry": {"coordinates": [-85.6344541996448, 41.94732203617679], "type": "Point"}, "id": "4491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965349}, "type": "Feature"}, {"bbox": [-85.643195, 41.949261, -85.643195, 41.949261], "geometry": {"coordinates": [-85.643195, 41.949261], "type": "Point"}, "id": "4492", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64337778073994, 41.9492588428711, -85.64337778073994, 41.9492588428711], "geometry": {"coordinates": [-85.64337778073994, 41.9492588428711], "type": "Point"}, "id": "4493", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64356056147986, 41.94925668574214, -85.64356056147986, 41.94925668574214], "geometry": {"coordinates": [-85.64356056147986, 41.94925668574214], "type": "Point"}, "id": "4494", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.6437433422198, 41.949254528613096, -85.6437433422198, 41.949254528613096], "geometry": {"coordinates": [-85.6437433422198, 41.949254528613096], "type": "Point"}, "id": "4495", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64392612295973, 41.949252371483986, -85.64392612295973, 41.949252371483986], "geometry": {"coordinates": [-85.64392612295973, 41.949252371483986], "type": "Point"}, "id": "4496", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64410890369966, 41.949250214354805, -85.64410890369966, 41.949250214354805], "geometry": {"coordinates": [-85.64410890369966, 41.949250214354805], "type": "Point"}, "id": "4497", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.6442916844396, 41.94924805722554, -85.6442916844396, 41.94924805722554], "geometry": {"coordinates": [-85.6442916844396, 41.94924805722554], "type": "Point"}, "id": "4498", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64447446297402, 41.94924582497828, -85.64447446297402, 41.94924582497828], "geometry": {"coordinates": [-85.64447446297402, 41.94924582497828], "type": "Point"}, "id": "4499", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64465719609231, 41.94924204589719, -85.64465719609231, 41.94924204589719], "geometry": {"coordinates": [-85.64465719609231, 41.94924204589719], "type": "Point"}, "id": "4500", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64483992921063, 41.949238266815875, -85.64483992921063, 41.949238266815875], "geometry": {"coordinates": [-85.64483992921063, 41.949238266815875], "type": "Point"}, "id": "4501", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64502266232894, 41.94923448773434, -85.64502266232894, 41.94923448773434], "geometry": {"coordinates": [-85.64502266232894, 41.94923448773434], "type": "Point"}, "id": "4502", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64520539503808, 41.94923069773476, -85.64520539503808, 41.94923069773476], "geometry": {"coordinates": [-85.64520539503808, 41.94923069773476], "type": "Point"}, "id": "4503", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64538812748154, 41.9492269006462, -85.64538812748154, 41.9492269006462], "geometry": {"coordinates": [-85.64538812748154, 41.9492269006462], "type": "Point"}, "id": "4504", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64557085992502, 41.94922310355741, -85.64557085992502, 41.94922310355741], "geometry": {"coordinates": [-85.64557085992502, 41.94922310355741], "type": "Point"}, "id": "4505", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.6457535923685, 41.9492193064684, -85.6457535923685, 41.9492193064684], "geometry": {"coordinates": [-85.6457535923685, 41.9492193064684], "type": "Point"}, "id": "4506", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64593632481196, 41.94921550937916, -85.64593632481196, 41.94921550937916], "geometry": {"coordinates": [-85.64593632481196, 41.94921550937916], "type": "Point"}, "id": "4507", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64611906841782, 41.94921203576834, -85.64611906841782, 41.94921203576834], "geometry": {"coordinates": [-85.64611906841782, 41.94921203576834], "type": "Point"}, "id": "4508", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.6463018221846, 41.949208856614526, -85.6463018221846, 41.949208856614526], "geometry": {"coordinates": [-85.6463018221846, 41.949208856614526], "type": "Point"}, "id": "4509", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64648457595138, 41.949205677460554, -85.64648457595138, 41.949205677460554], "geometry": {"coordinates": [-85.64648457595138, 41.949205677460554], "type": "Point"}, "id": "4510", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64666732971814, 41.94920249830642, -85.64666732971814, 41.94920249830642], "geometry": {"coordinates": [-85.64666732971814, 41.94920249830642], "type": "Point"}, "id": "4511", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64685008348492, 41.949199319152136, -85.64685008348492, 41.949199319152136], "geometry": {"coordinates": [-85.64685008348492, 41.949199319152136], "type": "Point"}, "id": "4512", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64703283468404, 41.9491960619005, -85.64703283468404, 41.9491960619005], "geometry": {"coordinates": [-85.64703283468404, 41.9491960619005], "type": "Point"}, "id": "4513", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.647215578959, 41.94919259404549, -85.647215578959, 41.94919259404549], "geometry": {"coordinates": [-85.647215578959, 41.94919259404549], "type": "Point"}, "id": "4514", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64739832323397, 41.94918912619028, -85.64739832323397, 41.94918912619028], "geometry": {"coordinates": [-85.64739832323397, 41.94918912619028], "type": "Point"}, "id": "4515", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64758106779544, 41.949185666700565, -85.64758106779544, 41.949185666700565], "geometry": {"coordinates": [-85.64758106779544, 41.949185666700565], "type": "Point"}, "id": "4516", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64776381247734, 41.94918221072662, -85.64776381247734, 41.94918221072662], "geometry": {"coordinates": [-85.64776381247734, 41.94918221072662], "type": "Point"}, "id": "4517", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64794655715923, 41.94917875475248, -85.64794655715923, 41.94917875475248], "geometry": {"coordinates": [-85.64794655715923, 41.94917875475248], "type": "Point"}, "id": "4518", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64812930184111, 41.94917529877815, -85.64812930184111, 41.94917529877815], "geometry": {"coordinates": [-85.64812930184111, 41.94917529877815], "type": "Point"}, "id": "4519", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.648312046523, 41.949171842803636, -85.648312046523, 41.949171842803636], "geometry": {"coordinates": [-85.648312046523, 41.949171842803636], "type": "Point"}, "id": "4520", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64849482098151, 41.949169507922164, -85.64849482098151, 41.949169507922164], "geometry": {"coordinates": [-85.64849482098151, 41.949169507922164], "type": "Point"}, "id": "4521", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64867760788454, 41.94916767825968, -85.64867760788454, 41.94916767825968], "geometry": {"coordinates": [-85.64867760788454, 41.94916767825968], "type": "Point"}, "id": "4522", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64886040533, 41.94916654907614, -85.64886040533, 41.94916654907614], "geometry": {"coordinates": [-85.64886040533, 41.94916654907614], "type": "Point"}, "id": "4523", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64904320277545, 41.94916541989259, -85.64904320277545, 41.94916541989259], "geometry": {"coordinates": [-85.64904320277545, 41.94916541989259], "type": "Point"}, "id": "4524", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64922600497623, 41.94916497106535, -85.64922600497623, 41.94916497106535], "geometry": {"coordinates": [-85.64922600497623, 41.94916497106535], "type": "Point"}, "id": "4525", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64940880780762, 41.949164628842176, -85.64940880780762, 41.949164628842176], "geometry": {"coordinates": [-85.64940880780762, 41.949164628842176], "type": "Point"}, "id": "4526", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17965839}, "type": "Feature"}, {"bbox": [-85.64472699999999, 41.941261999999995, -85.64472699999999, 41.941261999999995], "geometry": {"coordinates": [-85.64472699999999, 41.941261999999995], "type": "Point"}, "id": "4527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.6447324413617, 41.94140617835677, -85.6447324413617, 41.94140617835677], "geometry": {"coordinates": [-85.6447324413617, 41.94140617835677], "type": "Point"}, "id": "4528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.6447378827234, 41.94155035638754, -85.6447378827234, 41.94155035638754], "geometry": {"coordinates": [-85.6447378827234, 41.94155035638754], "type": "Point"}, "id": "4529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64477816711558, 41.941680350398755, -85.64477816711558, 41.941680350398755], "geometry": {"coordinates": [-85.64477816711558, 41.941680350398755], "type": "Point"}, "id": "4530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64495869292396, 41.94171051002141, -85.64495869292396, 41.94171051002141], "geometry": {"coordinates": [-85.64495869292396, 41.94171051002141], "type": "Point"}, "id": "4531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64513754758521, 41.941690139810504, -85.64513754758521, 41.941690139810504], "geometry": {"coordinates": [-85.64513754758521, 41.941690139810504], "type": "Point"}, "id": "4532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64515895160784, 41.9415486939436, -85.64515895160784, 41.9415486939436], "geometry": {"coordinates": [-85.64515895160784, 41.9415486939436], "type": "Point"}, "id": "4533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64516459106186, 41.94140452012083, -85.64516459106186, 41.94140452012083], "geometry": {"coordinates": [-85.64516459106186, 41.94140452012083], "type": "Point"}, "id": "4534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.64517023051586, 41.941260345972054, -85.64517023051586, 41.941260345972054], "geometry": {"coordinates": [-85.64517023051586, 41.941260345972054], "type": "Point"}, "id": "4535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962613}, "type": "Feature"}, {"bbox": [-85.6271414, 41.94072739999999, -85.6271414, 41.94072739999999], "geometry": {"coordinates": [-85.6271414, 41.94072739999999], "type": "Point"}, "id": "4536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150833}, "type": "Feature"}, {"bbox": [-85.62708698661208, 41.94088727516729, -85.62708698661208, 41.94088727516729], "geometry": {"coordinates": [-85.62708698661208, 41.94088727516729], "type": "Point"}, "id": "4537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 134150833}, "type": "Feature"}, {"bbox": [-85.624776, 41.93320500000001, -85.624776, 41.93320500000001], "geometry": {"coordinates": [-85.624776, 41.93320500000001], "type": "Point"}, "id": "4538", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62477680191006, 41.93334039007805, -85.62477680191006, 41.93334039007805], "geometry": {"coordinates": [-85.62477680191006, 41.93334039007805], "type": "Point"}, "id": "4539", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62477760382009, 41.933475779868715, -85.62477760382009, 41.933475779868715], "geometry": {"coordinates": [-85.62477760382009, 41.933475779868715], "type": "Point"}, "id": "4540", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62477840573014, 41.93361116937198, -85.62477840573014, 41.93361116937198], "geometry": {"coordinates": [-85.62477840573014, 41.93361116937198], "type": "Point"}, "id": "4541", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62477920764019, 41.93374655858785, -85.62477920764019, 41.93374655858785], "geometry": {"coordinates": [-85.62477920764019, 41.93374655858785], "type": "Point"}, "id": "4542", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62478000955025, 41.93388194751635, -85.62478000955025, 41.93388194751635], "geometry": {"coordinates": [-85.62478000955025, 41.93388194751635], "type": "Point"}, "id": "4543", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62478081146028, 41.93401733615744, -85.62478081146028, 41.93401733615744], "geometry": {"coordinates": [-85.62478081146028, 41.93401733615744], "type": "Point"}, "id": "4544", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62478161337033, 41.93415272451115, -85.62478161337033, 41.93415272451115], "geometry": {"coordinates": [-85.62478161337033, 41.93415272451115], "type": "Point"}, "id": "4545", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62478270392363, 41.934288111302514, -85.62478270392363, 41.934288111302514], "geometry": {"coordinates": [-85.62478270392363, 41.934288111302514], "type": "Point"}, "id": "4546", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62478406320628, 41.934423496619516, -85.62478406320628, 41.934423496619516], "geometry": {"coordinates": [-85.62478406320628, 41.934423496619516], "type": "Point"}, "id": "4547", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62478542248894, 41.93455888164914, -85.62478542248894, 41.93455888164914], "geometry": {"coordinates": [-85.62478542248894, 41.93455888164914], "type": "Point"}, "id": "4548", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62478678177159, 41.934694266391375, -85.62478678177159, 41.934694266391375], "geometry": {"coordinates": [-85.62478678177159, 41.934694266391375], "type": "Point"}, "id": "4549", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62478814105425, 41.93482965084624, -85.62478814105425, 41.93482965084624], "geometry": {"coordinates": [-85.62478814105425, 41.93482965084624], "type": "Point"}, "id": "4550", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.6247895003369, 41.934965035013725, -85.6247895003369, 41.934965035013725], "geometry": {"coordinates": [-85.6247895003369, 41.934965035013725], "type": "Point"}, "id": "4551", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479085961955, 41.93510041889382, -85.62479085961955, 41.93510041889382], "geometry": {"coordinates": [-85.62479085961955, 41.93510041889382], "type": "Point"}, "id": "4552", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479226280838, 41.935235802218116, -85.62479226280838, 41.935235802218116], "geometry": {"coordinates": [-85.62479226280838, 41.935235802218116], "type": "Point"}, "id": "4553", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479389472823, 41.93537118385671, -85.62479389472823, 41.93537118385671], "geometry": {"coordinates": [-85.62479389472823, 41.93537118385671], "type": "Point"}, "id": "4554", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.6247955266481, 41.93550656520794, -85.6247955266481, 41.93550656520794], "geometry": {"coordinates": [-85.6247955266481, 41.93550656520794], "type": "Point"}, "id": "4555", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479715856797, 41.93564194627179, -85.62479715856797, 41.93564194627179], "geometry": {"coordinates": [-85.62479715856797, 41.93564194627179], "type": "Point"}, "id": "4556", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479879048784, 41.935777327048264, -85.62479879048784, 41.935777327048264], "geometry": {"coordinates": [-85.62479879048784, 41.935777327048264], "type": "Point"}, "id": "4557", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.6248004224077, 41.93591270753736, -85.6248004224077, 41.93591270753736], "geometry": {"coordinates": [-85.6248004224077, 41.93591270753736], "type": "Point"}, "id": "4558", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62480205432757, 41.93604808773908, -85.62480205432757, 41.93604808773908], "geometry": {"coordinates": [-85.62480205432757, 41.93604808773908], "type": "Point"}, "id": "4559", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62480368624745, 41.936183467653436, -85.62480368624745, 41.936183467653436], "geometry": {"coordinates": [-85.62480368624745, 41.936183467653436], "type": "Point"}, "id": "4560", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.6248028079664, 41.93631884920573, -85.6248028079664, 41.93631884920573], "geometry": {"coordinates": [-85.6248028079664, 41.93631884920573], "type": "Point"}, "id": "4561", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62480155133657, 41.93645423076085, -85.62480155133657, 41.93645423076085], "geometry": {"coordinates": [-85.62480155133657, 41.93645423076085], "type": "Point"}, "id": "4562", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62480029470676, 41.93658961202857, -85.62480029470676, 41.93658961202857], "geometry": {"coordinates": [-85.62480029470676, 41.93658961202857], "type": "Point"}, "id": "4563", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479903807694, 41.93672499300891, -85.62479903807694, 41.93672499300891], "geometry": {"coordinates": [-85.62479903807694, 41.93672499300891], "type": "Point"}, "id": "4564", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479778144711, 41.93686037370186, -85.62479778144711, 41.93686037370186], "geometry": {"coordinates": [-85.62479778144711, 41.93686037370186], "type": "Point"}, "id": "4565", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479652481728, 41.936995754107436, -85.62479652481728, 41.936995754107436], "geometry": {"coordinates": [-85.62479652481728, 41.936995754107436], "type": "Point"}, "id": "4566", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479526818746, 41.937131134225616, -85.62479526818746, 41.937131134225616], "geometry": {"coordinates": [-85.62479526818746, 41.937131134225616], "type": "Point"}, "id": "4567", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479557161237, 41.93726651503422, -85.62479557161237, 41.93726651503422], "geometry": {"coordinates": [-85.62479557161237, 41.93726651503422], "type": "Point"}, "id": "4568", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479652155372, 41.93740189596066, -85.62479652155372, 41.93740189596066], "geometry": {"coordinates": [-85.62479652155372, 41.93740189596066], "type": "Point"}, "id": "4569", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479747149507, 41.93753727659971, -85.62479747149507, 41.93753727659971], "geometry": {"coordinates": [-85.62479747149507, 41.93753727659971], "type": "Point"}, "id": "4570", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62479842143644, 41.937672656951364, -85.62479842143644, 41.937672656951364], "geometry": {"coordinates": [-85.62479842143644, 41.937672656951364], "type": "Point"}, "id": "4571", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.6247993713778, 41.93780803701562, -85.6247993713778, 41.93780803701562], "geometry": {"coordinates": [-85.6247993713778, 41.93780803701562], "type": "Point"}, "id": "4572", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62480032131917, 41.937943416792486, -85.62480032131917, 41.937943416792486], "geometry": {"coordinates": [-85.62480032131917, 41.937943416792486], "type": "Point"}, "id": "4573", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62480127126052, 41.938078796281964, -85.62480127126052, 41.938078796281964], "geometry": {"coordinates": [-85.62480127126052, 41.938078796281964], "type": "Point"}, "id": "4574", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62480349891538, 41.938214160653466, -85.62480349891538, 41.938214160653466], "geometry": {"coordinates": [-85.62480349891538, 41.938214160653466], "type": "Point"}, "id": "4575", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62480822764175, 41.938349495707456, -85.62480822764175, 41.938349495707456], "geometry": {"coordinates": [-85.62480822764175, 41.938349495707456], "type": "Point"}, "id": "4576", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62481295636813, 41.93848483047422, -85.62481295636813, 41.93848483047422], "geometry": {"coordinates": [-85.62481295636813, 41.93848483047422], "type": "Point"}, "id": "4577", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.6248176850945, 41.9386201649538, -85.6248176850945, 41.9386201649538], "geometry": {"coordinates": [-85.6248176850945, 41.9386201649538], "type": "Point"}, "id": "4578", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62482241382088, 41.938755499146154, -85.62482241382088, 41.938755499146154], "geometry": {"coordinates": [-85.62482241382088, 41.938755499146154], "type": "Point"}, "id": "4579", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62482714254723, 41.93889083305132, -85.62482714254723, 41.93889083305132], "geometry": {"coordinates": [-85.62482714254723, 41.93889083305132], "type": "Point"}, "id": "4580", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.62483187127361, 41.93902616666926, -85.62483187127361, 41.93902616666926], "geometry": {"coordinates": [-85.62483187127361, 41.93902616666926], "type": "Point"}, "id": "4581", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 379694388}, "type": "Feature"}, {"bbox": [-85.63465169999999, 41.948626000000004, -85.63465169999999, 41.948626000000004], "geometry": {"coordinates": [-85.63465169999999, 41.948626000000004], "type": "Point"}, "id": "4582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63484104282793, 41.94862464903583, -85.63484104282793, 41.94862464903583], "geometry": {"coordinates": [-85.63484104282793, 41.94862464903583], "type": "Point"}, "id": "4583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63503038565587, 41.94862329807164, -85.63503038565587, 41.94862329807164], "geometry": {"coordinates": [-85.63503038565587, 41.94862329807164], "type": "Point"}, "id": "4584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63521972811837, 41.94862192100617, -85.63521972811837, 41.94862192100617], "geometry": {"coordinates": [-85.63521972811837, 41.94862192100617], "type": "Point"}, "id": "4585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63540906678647, 41.948620279451305, -85.63540906678647, 41.948620279451305], "geometry": {"coordinates": [-85.63540906678647, 41.948620279451305], "type": "Point"}, "id": "4586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63559840514125, 41.948618617498816, -85.63559840514125, 41.948618617498816], "geometry": {"coordinates": [-85.63559840514125, 41.948618617498816], "type": "Point"}, "id": "4587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63578774351335, 41.94861695663593, -85.63578774351335, 41.94861695663593], "geometry": {"coordinates": [-85.63578774351335, 41.94861695663593], "type": "Point"}, "id": "4588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63597708188546, 41.948615295772996, -85.63597708188546, 41.948615295772996], "geometry": {"coordinates": [-85.63597708188546, 41.948615295772996], "type": "Point"}, "id": "4589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63616642025755, 41.94861363491002, -85.63616642025755, 41.94861363491002], "geometry": {"coordinates": [-85.63616642025755, 41.94861363491002], "type": "Point"}, "id": "4590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63635573768727, 41.94861097835204, -85.63635573768727, 41.94861097835204], "geometry": {"coordinates": [-85.63635573768727, 41.94861097835204], "type": "Point"}, "id": "4591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63654505326544, 41.94860823376421, -85.63654505326544, 41.94860823376421], "geometry": {"coordinates": [-85.63654505326544, 41.94860823376421], "type": "Point"}, "id": "4592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.63673436884362, 41.94860548917625, -85.63673436884362, 41.94860548917625], "geometry": {"coordinates": [-85.63673436884362, 41.94860548917625], "type": "Point"}, "id": "4593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.6369236844218, 41.948602744588186, -85.6369236844218, 41.948602744588186], "geometry": {"coordinates": [-85.6369236844218, 41.948602744588186], "type": "Point"}, "id": "4594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965856}, "type": "Feature"}, {"bbox": [-85.6302304, 41.96573589999999, -85.6302304, 41.96573589999999], "geometry": {"coordinates": [-85.6302304, 41.96573589999999], "type": "Point"}, "id": "4595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63042310364692, 41.965734793361, -85.63042310364692, 41.965734793361], "geometry": {"coordinates": [-85.63042310364692, 41.965734793361], "type": "Point"}, "id": "4596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63061580729385, 41.96573368672199, -85.63061580729385, 41.96573368672199], "geometry": {"coordinates": [-85.63061580729385, 41.96573368672199], "type": "Point"}, "id": "4597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63080851094077, 41.965732580082964, -85.63080851094077, 41.965732580082964], "geometry": {"coordinates": [-85.63080851094077, 41.965732580082964], "type": "Point"}, "id": "4598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.6310012145877, 41.96573147344392, -85.6310012145877, 41.96573147344392], "geometry": {"coordinates": [-85.6310012145877, 41.96573147344392], "type": "Point"}, "id": "4599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63119391823463, 41.96573036680484, -85.63119391823463, 41.96573036680484], "geometry": {"coordinates": [-85.63119391823463, 41.96573036680484], "type": "Point"}, "id": "4600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63138662188156, 41.96572926016576, -85.63138662188156, 41.96572926016576], "geometry": {"coordinates": [-85.63138662188156, 41.96572926016576], "type": "Point"}, "id": "4601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63157932552849, 41.965728153526655, -85.63157932552849, 41.965728153526655], "geometry": {"coordinates": [-85.63157932552849, 41.965728153526655], "type": "Point"}, "id": "4602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.63177050254811, 41.96571454240349, -85.63177050254811, 41.96571454240349], "geometry": {"coordinates": [-85.63177050254811, 41.96571454240349], "type": "Point"}, "id": "4603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968021}, "type": "Feature"}, {"bbox": [-85.637468, 41.956906, -85.637468, 41.956906], "geometry": {"coordinates": [-85.637468, 41.956906], "type": "Point"}, "id": "4604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.63726983333332, 41.956905166666694, -85.63726983333332, 41.956905166666694], "geometry": {"coordinates": [-85.63726983333332, 41.956905166666694], "type": "Point"}, "id": "4605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.63707166666667, 41.95690433333337, -85.63707166666667, 41.95690433333337], "geometry": {"coordinates": [-85.63707166666667, 41.95690433333337], "type": "Point"}, "id": "4606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.6368735, 41.956903500000045, -85.6368735, 41.956903500000045], "geometry": {"coordinates": [-85.6368735, 41.956903500000045], "type": "Point"}, "id": "4607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.63667533333333, 41.95690266666671, -85.63667533333333, 41.95690266666671], "geometry": {"coordinates": [-85.63667533333333, 41.95690266666671], "type": "Point"}, "id": "4608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.63647716666664, 41.95690183333336, -85.63647716666664, 41.95690183333336], "geometry": {"coordinates": [-85.63647716666664, 41.95690183333336], "type": "Point"}, "id": "4609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967437}, "type": "Feature"}, {"bbox": [-85.62639999999999, 41.94226299999999, -85.62639999999999, 41.94226299999999], "geometry": {"coordinates": [-85.62639999999999, 41.94226299999999], "type": "Point"}, "id": "4610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62658270340594, 41.942262623291946, -85.62658270340594, 41.942262623291946], "geometry": {"coordinates": [-85.62658270340594, 41.942262623291946], "type": "Point"}, "id": "4611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62676540681187, 41.942262246583894, -85.62676540681187, 41.942262246583894], "geometry": {"coordinates": [-85.62676540681187, 41.942262246583894], "type": "Point"}, "id": "4612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62694811021781, 41.94226186987584, -85.62694811021781, 41.94226186987584], "geometry": {"coordinates": [-85.62694811021781, 41.94226186987584], "type": "Point"}, "id": "4613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62713081362372, 41.942261493167784, -85.62713081362372, 41.942261493167784], "geometry": {"coordinates": [-85.62713081362372, 41.942261493167784], "type": "Point"}, "id": "4614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62731351702968, 41.94226111645973, -85.62731351702968, 41.94226111645973], "geometry": {"coordinates": [-85.62731351702968, 41.94226111645973], "type": "Point"}, "id": "4615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.6274962129689, 41.942259947687404, -85.6274962129689, 41.942259947687404], "geometry": {"coordinates": [-85.6274962129689, 41.942259947687404], "type": "Point"}, "id": "4616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62767890668385, 41.942258498186774, -85.62767890668385, 41.942258498186774], "geometry": {"coordinates": [-85.62767890668385, 41.942258498186774], "type": "Point"}, "id": "4617", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62786160039884, 41.94225704868612, -85.62786160039884, 41.94225704868612], "geometry": {"coordinates": [-85.62786160039884, 41.94225704868612], "type": "Point"}, "id": "4618", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62804429411382, 41.94225559918542, -85.62804429411382, 41.94225559918542], "geometry": {"coordinates": [-85.62804429411382, 41.94225559918542], "type": "Point"}, "id": "4619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.6282269878288, 41.942254149684686, -85.6282269878288, 41.942254149684686], "geometry": {"coordinates": [-85.6282269878288, 41.942254149684686], "type": "Point"}, "id": "4620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62840968154377, 41.942252700183936, -85.62840968154377, 41.942252700183936], "geometry": {"coordinates": [-85.62840968154377, 41.942252700183936], "type": "Point"}, "id": "4621", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62859237525876, 41.942251250683135, -85.62859237525876, 41.942251250683135], "geometry": {"coordinates": [-85.62859237525876, 41.942251250683135], "type": "Point"}, "id": "4622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62877506897372, 41.94224980118231, -85.62877506897372, 41.94224980118231], "geometry": {"coordinates": [-85.62877506897372, 41.94224980118231], "type": "Point"}, "id": "4623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.6289577626887, 41.94224835168144, -85.6289577626887, 41.94224835168144], "geometry": {"coordinates": [-85.6289577626887, 41.94224835168144], "type": "Point"}, "id": "4624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62911482658991, 41.94229758992211, -85.62911482658991, 41.94229758992211], "geometry": {"coordinates": [-85.62911482658991, 41.94229758992211], "type": "Point"}, "id": "4625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62921808412763, 41.942409351854536, -85.62921808412763, 41.942409351854536], "geometry": {"coordinates": [-85.62921808412763, 41.942409351854536], "type": "Point"}, "id": "4626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62927161254233, 41.94253812747749, -85.62927161254233, 41.94253812747749], "geometry": {"coordinates": [-85.62927161254233, 41.94253812747749], "type": "Point"}, "id": "4627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62927418154149, 41.942673584002556, -85.62927418154149, 41.942673584002556], "geometry": {"coordinates": [-85.62927418154149, 41.942673584002556], "type": "Point"}, "id": "4628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62926901142413, 41.942809427298606, -85.62926901142413, 41.942809427298606], "geometry": {"coordinates": [-85.62926901142413, 41.942809427298606], "type": "Point"}, "id": "4629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62926384130677, 41.94294527030524, -85.62926384130677, 41.94294527030524], "geometry": {"coordinates": [-85.62926384130677, 41.94294527030524], "type": "Point"}, "id": "4630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.6292586711894, 41.943081113022444, -85.6292586711894, 41.943081113022444], "geometry": {"coordinates": [-85.6292586711894, 41.943081113022444], "type": "Point"}, "id": "4631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62925350107206, 41.94321695545025, -85.62925350107206, 41.94321695545025], "geometry": {"coordinates": [-85.62925350107206, 41.94321695545025], "type": "Point"}, "id": "4632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62924833095468, 41.94335279758863, -85.62924833095468, 41.94335279758863], "geometry": {"coordinates": [-85.62924833095468, 41.94335279758863], "type": "Point"}, "id": "4633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62924316083733, 41.943488639437604, -85.62924316083733, 41.943488639437604], "geometry": {"coordinates": [-85.62924316083733, 41.943488639437604], "type": "Point"}, "id": "4634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62925557394072, 41.943615332439485, -85.62925557394072, 41.943615332439485], "geometry": {"coordinates": [-85.62925557394072, 41.943615332439485], "type": "Point"}, "id": "4635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62942890545554, 41.943658299373055, -85.62942890545554, 41.943658299373055], "geometry": {"coordinates": [-85.62942890545554, 41.943658299373055], "type": "Point"}, "id": "4636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62960223697037, 41.94370126627765, -85.62960223697037, 41.94370126627765], "geometry": {"coordinates": [-85.62960223697037, 41.94370126627765], "type": "Point"}, "id": "4637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62977556848519, 41.94374423315331, -85.62977556848519, 41.94374423315331], "geometry": {"coordinates": [-85.62977556848519, 41.94374423315331], "type": "Point"}, "id": "4638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967539}, "type": "Feature"}, {"bbox": [-85.62275899999999, 41.951845, -85.62275899999999, 41.951845], "geometry": {"coordinates": [-85.62275899999999, 41.951845], "type": "Point"}, "id": "4639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62258908723975, 41.95189303386801, -85.62258908723975, 41.95189303386801], "geometry": {"coordinates": [-85.62258908723975, 41.95189303386801], "type": "Point"}, "id": "4640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.622401304058, 41.951901745446165, -85.622401304058, 41.951901745446165], "geometry": {"coordinates": [-85.622401304058, 41.951901745446165], "type": "Point"}, "id": "4641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.6222129377472, 41.95190329366253, -85.6222129377472, 41.95190329366253], "geometry": {"coordinates": [-85.6222129377472, 41.95190329366253], "type": "Point"}, "id": "4642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62202457143638, 41.95190484187886, -85.62202457143638, 41.95190484187886], "geometry": {"coordinates": [-85.62202457143638, 41.95190484187886], "type": "Point"}, "id": "4643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62183620512555, 41.95190639009515, -85.62183620512555, 41.95190639009515], "geometry": {"coordinates": [-85.62183620512555, 41.95190639009515], "type": "Point"}, "id": "4644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62164783881474, 41.95190793831139, -85.62164783881474, 41.95190793831139], "geometry": {"coordinates": [-85.62164783881474, 41.95190793831139], "type": "Point"}, "id": "4645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62145947250393, 41.951909486527605, -85.62145947250393, 41.951909486527605], "geometry": {"coordinates": [-85.62145947250393, 41.951909486527605], "type": "Point"}, "id": "4646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.6212711061931, 41.95191103474378, -85.6212711061931, 41.95191103474378], "geometry": {"coordinates": [-85.6212711061931, 41.95191103474378], "type": "Point"}, "id": "4647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62108273988228, 41.95191258295991, -85.62108273988228, 41.95191258295991], "geometry": {"coordinates": [-85.62108273988228, 41.95191258295991], "type": "Point"}, "id": "4648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.6208943877299, 41.95191114663624, -85.6208943877299, 41.95191114663624], "geometry": {"coordinates": [-85.6208943877299, 41.95191114663624], "type": "Point"}, "id": "4649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62070604079743, 41.95190860997734, -85.62070604079743, 41.95190860997734], "geometry": {"coordinates": [-85.62070604079743, 41.95190860997734], "type": "Point"}, "id": "4650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62051769386495, 41.95190607331833, -85.62051769386495, 41.95190607331833], "geometry": {"coordinates": [-85.62051769386495, 41.95190607331833], "type": "Point"}, "id": "4651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62032934693246, 41.951903536659216, -85.62032934693246, 41.951903536659216], "geometry": {"coordinates": [-85.62032934693246, 41.951903536659216], "type": "Point"}, "id": "4652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964707}, "type": "Feature"}, {"bbox": [-85.62010590000001, 41.950131999999996, -85.62010590000001, 41.950131999999996], "geometry": {"coordinates": [-85.62010590000001, 41.950131999999996], "type": "Point"}, "id": "4653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62029610714286, 41.95013107142866, -85.62029610714286, 41.95013107142866], "geometry": {"coordinates": [-85.62029610714286, 41.95013107142866], "type": "Point"}, "id": "4654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62048631428571, 41.95013014285731, -85.62048631428571, 41.95013014285731], "geometry": {"coordinates": [-85.62048631428571, 41.95013014285731], "type": "Point"}, "id": "4655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62067652142858, 41.95012921428594, -85.62067652142858, 41.95012921428594], "geometry": {"coordinates": [-85.62067652142858, 41.95012921428594], "type": "Point"}, "id": "4656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62086672857143, 41.95012828571455, -85.62086672857143, 41.95012828571455], "geometry": {"coordinates": [-85.62086672857143, 41.95012828571455], "type": "Point"}, "id": "4657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62105693571428, 41.95012735714316, -85.62105693571428, 41.95012735714316], "geometry": {"coordinates": [-85.62105693571428, 41.95012735714316], "type": "Point"}, "id": "4658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62124714285714, 41.95012642857175, -85.62124714285714, 41.95012642857175], "geometry": {"coordinates": [-85.62124714285714, 41.95012642857175], "type": "Point"}, "id": "4659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62143735000002, 41.95012550000033, -85.62143735000002, 41.95012550000033], "geometry": {"coordinates": [-85.62143735000002, 41.95012550000033], "type": "Point"}, "id": "4660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62162755714287, 41.9501245714289, -85.62162755714287, 41.9501245714289], "geometry": {"coordinates": [-85.62162755714287, 41.9501245714289], "type": "Point"}, "id": "4661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62181776428572, 41.95012364285745, -85.62181776428572, 41.95012364285745], "geometry": {"coordinates": [-85.62181776428572, 41.95012364285745], "type": "Point"}, "id": "4662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62200797142857, 41.95012271428598, -85.62200797142857, 41.95012271428598], "geometry": {"coordinates": [-85.62200797142857, 41.95012271428598], "type": "Point"}, "id": "4663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62219817857144, 41.9501217857145, -85.62219817857144, 41.9501217857145], "geometry": {"coordinates": [-85.62219817857144, 41.9501217857145], "type": "Point"}, "id": "4664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.6223883857143, 41.95012085714301, -85.6223883857143, 41.95012085714301], "geometry": {"coordinates": [-85.6223883857143, 41.95012085714301], "type": "Point"}, "id": "4665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.62257859285714, 41.95011992857151, -85.62257859285714, 41.95011992857151], "geometry": {"coordinates": [-85.62257859285714, 41.95011992857151], "type": "Point"}, "id": "4666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966129}, "type": "Feature"}, {"bbox": [-85.61917089999999, 41.9567483, -85.61917089999999, 41.9567483], "geometry": {"coordinates": [-85.61917089999999, 41.9567483], "type": "Point"}, "id": "4667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6190636550888, 41.95664173803389, -85.6190636550888, 41.95664173803389], "geometry": {"coordinates": [-85.6190636550888, 41.95664173803389], "type": "Point"}, "id": "4668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61894135132543, 41.95654337155376, -85.61894135132543, 41.95654337155376], "geometry": {"coordinates": [-85.61894135132543, 41.95654337155376], "type": "Point"}, "id": "4669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6188213995338, 41.95644346506036, -85.6188213995338, 41.95644346506036], "geometry": {"coordinates": [-85.6188213995338, 41.95644346506036], "type": "Point"}, "id": "4670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61876512390694, 41.95631641845283, -85.61876512390694, 41.95631641845283], "geometry": {"coordinates": [-85.61876512390694, 41.95631641845283], "type": "Point"}, "id": "4671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6187525980167, 41.956182809668704, -85.6187525980167, 41.956182809668704], "geometry": {"coordinates": [-85.6187525980167, 41.956182809668704], "type": "Point"}, "id": "4672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61873031555922, 41.95604986680519, -85.61873031555922, 41.95604986680519], "geometry": {"coordinates": [-85.61873031555922, 41.95604986680519], "type": "Point"}, "id": "4673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61875890591064, 41.9559199630717, -85.61875890591064, 41.9559199630717], "geometry": {"coordinates": [-85.61875890591064, 41.9559199630717], "type": "Point"}, "id": "4674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61880944278955, 41.95579137027626, -85.61880944278955, 41.95579137027626], "geometry": {"coordinates": [-85.61880944278955, 41.95579137027626], "type": "Point"}, "id": "4675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6188391028635, 41.95565928349583, -85.6188391028635, 41.95565928349583], "geometry": {"coordinates": [-85.6188391028635, 41.95565928349583], "type": "Point"}, "id": "4676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61874374690667, 41.95559846934935, -85.61874374690667, 41.95559846934935], "geometry": {"coordinates": [-85.61874374690667, 41.95559846934935], "type": "Point"}, "id": "4677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6185635979378, 41.95559764623291, -85.6185635979378, 41.95559764623291], "geometry": {"coordinates": [-85.6185635979378, 41.95559764623291], "type": "Point"}, "id": "4678", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.61838344896888, 41.95559682311646, -85.61838344896888, 41.95559682311646], "geometry": {"coordinates": [-85.61838344896888, 41.95559682311646], "type": "Point"}, "id": "4679", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 571308438}, "type": "Feature"}, {"bbox": [-85.6180008, 41.9547387, -85.6180008, 41.9547387], "geometry": {"coordinates": [-85.6180008, 41.9547387], "type": "Point"}, "id": "4680", "properties": {"__folium_color": "red", "highway": "tertiary_link", "osm_id": 614445618}, "type": "Feature"}, {"bbox": [-85.620172, 41.945627, -85.620172, 41.945627], "geometry": {"coordinates": [-85.620172, 41.945627], "type": "Point"}, "id": "4681", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.62005143982448, 41.94550578455218, -85.62005143982448, 41.94550578455218], "geometry": {"coordinates": [-85.62005143982448, 41.94550578455218], "type": "Point"}, "id": "4682", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.6200130009588, 41.94535611138541, -85.6200130009588, 41.94535611138541], "geometry": {"coordinates": [-85.6200130009588, 41.94535611138541], "type": "Point"}, "id": "4683", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.62002160071911, 41.94520168410013, -85.62002160071911, 41.94520168410013], "geometry": {"coordinates": [-85.62002160071911, 41.94520168410013], "type": "Point"}, "id": "4684", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.62003020047942, 41.945047256440795, -85.62003020047942, 41.945047256440795], "geometry": {"coordinates": [-85.62003020047942, 41.945047256440795], "type": "Point"}, "id": "4685", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.6200388002397, 41.94489282840742, -85.6200388002397, 41.94489282840742], "geometry": {"coordinates": [-85.6200388002397, 41.94489282840742], "type": "Point"}, "id": "4686", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 652967187}, "type": "Feature"}, {"bbox": [-85.62003499999999, 41.933297, -85.62003499999999, 41.933297], "geometry": {"coordinates": [-85.62003499999999, 41.933297], "type": "Point"}, "id": "4687", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61993884214493, 41.93340899456631, -85.61993884214493, 41.93340899456631], "geometry": {"coordinates": [-85.61993884214493, 41.93340899456631], "type": "Point"}, "id": "4688", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61991560171221, 41.93354410434854, -85.61991560171221, 41.93354410434854], "geometry": {"coordinates": [-85.61991560171221, 41.93354410434854], "type": "Point"}, "id": "4689", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61992103389086, 41.93368046425515, -85.61992103389086, 41.93368046425515], "geometry": {"coordinates": [-85.61992103389086, 41.93368046425515], "type": "Point"}, "id": "4690", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61992646606949, 41.93381682387023, -85.61992646606949, 41.93381682387023], "geometry": {"coordinates": [-85.61992646606949, 41.93381682387023], "type": "Point"}, "id": "4691", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61993189824811, 41.933953183193786, -85.61993189824811, 41.933953183193786], "geometry": {"coordinates": [-85.61993189824811, 41.933953183193786], "type": "Point"}, "id": "4692", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61993733042677, 41.93408954222582, -85.61993733042677, 41.93408954222582], "geometry": {"coordinates": [-85.61993733042677, 41.93408954222582], "type": "Point"}, "id": "4693", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.6199427626054, 41.934225900966325, -85.6199427626054, 41.934225900966325], "geometry": {"coordinates": [-85.6199427626054, 41.934225900966325], "type": "Point"}, "id": "4694", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61994819478403, 41.9343622594153, -85.61994819478403, 41.9343622594153], "geometry": {"coordinates": [-85.61994819478403, 41.9343622594153], "type": "Point"}, "id": "4695", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61995362696267, 41.934498617572764, -85.61995362696267, 41.934498617572764], "geometry": {"coordinates": [-85.61995362696267, 41.934498617572764], "type": "Point"}, "id": "4696", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61995905914132, 41.93463497543869, -85.61995905914132, 41.93463497543869], "geometry": {"coordinates": [-85.61995905914132, 41.93463497543869], "type": "Point"}, "id": "4697", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61996432570352, 41.934771336048534, -85.61996432570352, 41.934771336048534], "geometry": {"coordinates": [-85.61996432570352, 41.934771336048534], "type": "Point"}, "id": "4698", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61996792677789, 41.93490772689205, -85.61996792677789, 41.93490772689205], "geometry": {"coordinates": [-85.61996792677789, 41.93490772689205], "type": "Point"}, "id": "4699", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61997152785226, 41.935044117443894, -85.61997152785226, 41.935044117443894], "geometry": {"coordinates": [-85.61997152785226, 41.935044117443894], "type": "Point"}, "id": "4700", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61997495714019, 41.93518051014511, -85.61997495714019, 41.93518051014511], "geometry": {"coordinates": [-85.61997495714019, 41.93518051014511], "type": "Point"}, "id": "4701", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61997836050597, 41.935316902923, -85.61997836050597, 41.935316902923], "geometry": {"coordinates": [-85.61997836050597, 41.935316902923], "type": "Point"}, "id": "4702", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61998176387173, 41.935453295409204, -85.61998176387173, 41.935453295409204], "geometry": {"coordinates": [-85.61998176387173, 41.935453295409204], "type": "Point"}, "id": "4703", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61998516723752, 41.93558968760372, -85.61998516723752, 41.93558968760372], "geometry": {"coordinates": [-85.61998516723752, 41.93558968760372], "type": "Point"}, "id": "4704", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61998857060328, 41.93572607950656, -85.61998857060328, 41.93572607950656], "geometry": {"coordinates": [-85.61998857060328, 41.93572607950656], "type": "Point"}, "id": "4705", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61999197396906, 41.93586247111772, -85.61999197396906, 41.93586247111772], "geometry": {"coordinates": [-85.61999197396906, 41.93586247111772], "type": "Point"}, "id": "4706", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61999537733483, 41.935998862437195, -85.61999537733483, 41.935998862437195], "geometry": {"coordinates": [-85.61999537733483, 41.935998862437195], "type": "Point"}, "id": "4707", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.61999878070063, 41.936135253464975, -85.61999878070063, 41.936135253464975], "geometry": {"coordinates": [-85.61999878070063, 41.936135253464975], "type": "Point"}, "id": "4708", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000132753417, 41.93627165135533, -85.62000132753417, 41.93627165135533], "geometry": {"coordinates": [-85.62000132753417, 41.93627165135533], "type": "Point"}, "id": "4709", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000204186496, 41.936408064260036, -85.62000204186496, 41.936408064260036], "geometry": {"coordinates": [-85.62000204186496, 41.936408064260036], "type": "Point"}, "id": "4710", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000275619577, 41.93654447687296, -85.62000275619577, 41.93654447687296], "geometry": {"coordinates": [-85.62000275619577, 41.93654447687296], "type": "Point"}, "id": "4711", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000347052658, 41.93668088919411, -85.62000347052658, 41.93668088919411], "geometry": {"coordinates": [-85.62000347052658, 41.93668088919411], "type": "Point"}, "id": "4712", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000424977047, 41.93681730100234, -85.62000424977047, 41.93681730100234], "geometry": {"coordinates": [-85.62000424977047, 41.93681730100234], "type": "Point"}, "id": "4713", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000521494018, 41.93695371188546, -85.62000521494018, 41.93695371188546], "geometry": {"coordinates": [-85.62000521494018, 41.93695371188546], "type": "Point"}, "id": "4714", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000618010988, 41.937090122476775, -85.62000618010988, 41.937090122476775], "geometry": {"coordinates": [-85.62000618010988, 41.937090122476775], "type": "Point"}, "id": "4715", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000712421805, 41.93722653285282, -85.62000712421805, 41.93722653285282], "geometry": {"coordinates": [-85.62000712421805, 41.93722653285282], "type": "Point"}, "id": "4716", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000794946478, 41.93736294336871, -85.62000794946478, 41.93736294336871], "geometry": {"coordinates": [-85.62000794946478, 41.93736294336871], "type": "Point"}, "id": "4717", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000877471152, 41.937499353592834, -85.62000877471152, 41.937499353592834], "geometry": {"coordinates": [-85.62000877471152, 41.937499353592834], "type": "Point"}, "id": "4718", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62000959995825, 41.937635763525165, -85.62000959995825, 41.937635763525165], "geometry": {"coordinates": [-85.62000959995825, 41.937635763525165], "type": "Point"}, "id": "4719", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62001044764682, 41.93777217308944, -85.62001044764682, 41.93777217308944], "geometry": {"coordinates": [-85.62001044764682, 41.93777217308944], "type": "Point"}, "id": "4720", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62001129843121, 41.937908582351405, -85.62001129843121, 41.937908582351405], "geometry": {"coordinates": [-85.62001129843121, 41.937908582351405], "type": "Point"}, "id": "4721", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62001214921561, 41.9380449913216, -85.62001214921561, 41.9380449913216], "geometry": {"coordinates": [-85.62001214921561, 41.9380449913216], "type": "Point"}, "id": "4722", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967518}, "type": "Feature"}, {"bbox": [-85.62267439999998, 41.94473709999999, -85.62267439999998, 41.94473709999999], "geometry": {"coordinates": [-85.62267439999998, 41.94473709999999], "type": "Point"}, "id": "4723", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62268058624504, 41.944871161073934, -85.62268058624504, 41.944871161073934], "geometry": {"coordinates": [-85.62268058624504, 41.944871161073934], "type": "Point"}, "id": "4724", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62268677249007, 41.945005221865976, -85.62268677249007, 41.945005221865976], "geometry": {"coordinates": [-85.62268677249007, 41.945005221865976], "type": "Point"}, "id": "4725", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62269295873512, 41.94513928237614, -85.62269295873512, 41.94513928237614], "geometry": {"coordinates": [-85.62269295873512, 41.94513928237614], "type": "Point"}, "id": "4726", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62269914498017, 41.94527334260441, -85.62269914498017, 41.94527334260441], "geometry": {"coordinates": [-85.62269914498017, 41.94527334260441], "type": "Point"}, "id": "4727", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62270533122519, 41.94540740255079, -85.62270533122519, 41.94540740255079], "geometry": {"coordinates": [-85.62270533122519, 41.94540740255079], "type": "Point"}, "id": "4728", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271151747024, 41.94554146221528, -85.62271151747024, 41.94554146221528], "geometry": {"coordinates": [-85.62271151747024, 41.94554146221528], "type": "Point"}, "id": "4729", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227159550296, 41.94567554675177, -85.6227159550296, 41.94567554675177], "geometry": {"coordinates": [-85.6227159550296, 41.94567554675177], "type": "Point"}, "id": "4730", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271674240476, 41.94580968351208, -85.62271674240476, 41.94580968351208], "geometry": {"coordinates": [-85.62271674240476, 41.94580968351208], "type": "Point"}, "id": "4731", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271752977992, 41.94594381999018, -85.62271752977992, 41.94594381999018], "geometry": {"coordinates": [-85.62271752977992, 41.94594381999018], "type": "Point"}, "id": "4732", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271831715506, 41.946077956186045, -85.62271831715506, 41.946077956186045], "geometry": {"coordinates": [-85.62271831715506, 41.946077956186045], "type": "Point"}, "id": "4733", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62271910453023, 41.94621209209971, -85.62271910453023, 41.94621209209971], "geometry": {"coordinates": [-85.62271910453023, 41.94621209209971], "type": "Point"}, "id": "4734", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227198919054, 41.94634622773115, -85.6227198919054, 41.94634622773115], "geometry": {"coordinates": [-85.6227198919054, 41.94634622773115], "type": "Point"}, "id": "4735", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62272067928053, 41.94648036308037, -85.62272067928053, 41.94648036308037], "geometry": {"coordinates": [-85.62272067928053, 41.94648036308037], "type": "Point"}, "id": "4736", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62272427601012, 41.94661446155625, -85.62272427601012, 41.94661446155625], "geometry": {"coordinates": [-85.62272427601012, 41.94661446155625], "type": "Point"}, "id": "4737", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227298035307, 41.946748534602065, -85.6227298035307, 41.946748534602065], "geometry": {"coordinates": [-85.6227298035307, 41.946748534602065], "type": "Point"}, "id": "4738", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227353310513, 41.94688260736591, -85.6227353310513, 41.94688260736591], "geometry": {"coordinates": [-85.6227353310513, 41.94688260736591], "type": "Point"}, "id": "4739", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62274085857189, 41.9470166798478, -85.62274085857189, 41.9470166798478], "geometry": {"coordinates": [-85.62274085857189, 41.9470166798478], "type": "Point"}, "id": "4740", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62274638609247, 41.94715075204774, -85.62274638609247, 41.94715075204774], "geometry": {"coordinates": [-85.62274638609247, 41.94715075204774], "type": "Point"}, "id": "4741", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275191361307, 41.94728482396572, -85.62275191361307, 41.94728482396572], "geometry": {"coordinates": [-85.62275191361307, 41.94728482396572], "type": "Point"}, "id": "4742", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275744113367, 41.94741889560173, -85.62275744113367, 41.94741889560173], "geometry": {"coordinates": [-85.62275744113367, 41.94741889560173], "type": "Point"}, "id": "4743", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227582431478, 41.947553025448116, -85.6227582431478, 41.947553025448116], "geometry": {"coordinates": [-85.6227582431478, 41.947553025448116], "type": "Point"}, "id": "4744", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275871706395, 41.94768715907348, -85.62275871706395, 41.94768715907348], "geometry": {"coordinates": [-85.62275871706395, 41.94768715907348], "type": "Point"}, "id": "4745", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275919098008, 41.947821292416634, -85.62275919098008, 41.947821292416634], "geometry": {"coordinates": [-85.62275919098008, 41.947821292416634], "type": "Point"}, "id": "4746", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62275966489621, 41.94795542547755, -85.62275966489621, 41.94795542547755], "geometry": {"coordinates": [-85.62275966489621, 41.94795542547755], "type": "Point"}, "id": "4747", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276013881237, 41.94808955825625, -85.62276013881237, 41.94808955825625], "geometry": {"coordinates": [-85.62276013881237, 41.94808955825625], "type": "Point"}, "id": "4748", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227606127285, 41.94822369075273, -85.6227606127285, 41.94822369075273], "geometry": {"coordinates": [-85.6227606127285, 41.94822369075273], "type": "Point"}, "id": "4749", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276121677216, 41.94835782252167, -85.62276121677216, 41.94835782252167], "geometry": {"coordinates": [-85.62276121677216, 41.94835782252167], "type": "Point"}, "id": "4750", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276240244056, 41.94849195201803, -85.62276240244056, 41.94849195201803], "geometry": {"coordinates": [-85.62276240244056, 41.94849195201803], "type": "Point"}, "id": "4751", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276358810895, 41.94862608123217, -85.62276358810895, 41.94862608123217], "geometry": {"coordinates": [-85.62276358810895, 41.94862608123217], "type": "Point"}, "id": "4752", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276477377735, 41.9487602101641, -85.62276477377735, 41.9487602101641], "geometry": {"coordinates": [-85.62276477377735, 41.9487602101641], "type": "Point"}, "id": "4753", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276595944574, 41.948894338813815, -85.62276595944574, 41.948894338813815], "geometry": {"coordinates": [-85.62276595944574, 41.948894338813815], "type": "Point"}, "id": "4754", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276714511417, 41.94902846718132, -85.62276714511417, 41.94902846718132], "geometry": {"coordinates": [-85.62276714511417, 41.94902846718132], "type": "Point"}, "id": "4755", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276833078255, 41.94916259526661, -85.62276833078255, 41.94916259526661], "geometry": {"coordinates": [-85.62276833078255, 41.94916259526661], "type": "Point"}, "id": "4756", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227689867324, 41.94929672433148, -85.6227689867324, 41.94929672433148], "geometry": {"coordinates": [-85.6227689867324, 41.94929672433148], "type": "Point"}, "id": "4757", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276895627261, 41.949430854749174, -85.62276895627261, 41.949430854749174], "geometry": {"coordinates": [-85.62276895627261, 41.949430854749174], "type": "Point"}, "id": "4758", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276892581279, 41.94956498488464, -85.62276892581279, 41.94956498488464], "geometry": {"coordinates": [-85.62276892581279, 41.94956498488464], "type": "Point"}, "id": "4759", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276889535298, 41.94969911473788, -85.62276889535298, 41.94969911473788], "geometry": {"coordinates": [-85.62276889535298, 41.94969911473788], "type": "Point"}, "id": "4760", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276886489316, 41.9498332443089, -85.62276886489316, 41.9498332443089], "geometry": {"coordinates": [-85.62276886489316, 41.9498332443089], "type": "Point"}, "id": "4761", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276883443336, 41.949967373597694, -85.62276883443336, 41.949967373597694], "geometry": {"coordinates": [-85.62276883443336, 41.949967373597694], "type": "Point"}, "id": "4762", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276880397354, 41.95010150260425, -85.62276880397354, 41.95010150260425], "geometry": {"coordinates": [-85.62276880397354, 41.95010150260425], "type": "Point"}, "id": "4763", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277008335704, 41.950235627424696, -85.62277008335704, 41.950235627424696], "geometry": {"coordinates": [-85.62277008335704, 41.950235627424696], "type": "Point"}, "id": "4764", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227715592471, 41.95036975137725, -85.6227715592471, 41.95036975137725], "geometry": {"coordinates": [-85.6227715592471, 41.95036975137725], "type": "Point"}, "id": "4765", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277303513717, 41.9505038750476, -85.62277303513717, 41.9505038750476], "geometry": {"coordinates": [-85.62277303513717, 41.9505038750476], "type": "Point"}, "id": "4766", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277451102723, 41.950637998435745, -85.62277451102723, 41.950637998435745], "geometry": {"coordinates": [-85.62277451102723, 41.950637998435745], "type": "Point"}, "id": "4767", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227759869173, 41.950772121541675, -85.6227759869173, 41.950772121541675], "geometry": {"coordinates": [-85.6227759869173, 41.950772121541675], "type": "Point"}, "id": "4768", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277746280736, 41.9509062443654, -85.62277746280736, 41.9509062443654], "geometry": {"coordinates": [-85.62277746280736, 41.9509062443654], "type": "Point"}, "id": "4769", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277757956045, 41.95104036236462, -85.62277757956045, 41.95104036236462], "geometry": {"coordinates": [-85.62277757956045, 41.95104036236462], "type": "Point"}, "id": "4770", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277448296702, 41.95117446934254, -85.62277448296702, 41.95117446934254], "geometry": {"coordinates": [-85.62277448296702, 41.95117446934254], "type": "Point"}, "id": "4771", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62277138637361, 41.95130857603833, -85.62277138637361, 41.95130857603833], "geometry": {"coordinates": [-85.62277138637361, 41.95130857603833], "type": "Point"}, "id": "4772", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276828978021, 41.95144268245196, -85.62276828978021, 41.95144268245196], "geometry": {"coordinates": [-85.62276828978021, 41.95144268245196], "type": "Point"}, "id": "4773", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6227651931868, 41.951576788583445, -85.6227651931868, 41.951576788583445], "geometry": {"coordinates": [-85.6227651931868, 41.951576788583445], "type": "Point"}, "id": "4774", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.62276209659339, 41.9517108944328, -85.62276209659339, 41.9517108944328], "geometry": {"coordinates": [-85.62276209659339, 41.9517108944328], "type": "Point"}, "id": "4775", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17968192}, "type": "Feature"}, {"bbox": [-85.6222684, 41.9351903, -85.6222684, 41.9351903], "geometry": {"coordinates": [-85.6222684, 41.9351903], "type": "Point"}, "id": "4776", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62227082180607, 41.93532597502175, -85.62227082180607, 41.93532597502175], "geometry": {"coordinates": [-85.62227082180607, 41.93532597502175], "type": "Point"}, "id": "4777", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62227324361213, 41.93546164975488, -85.62227324361213, 41.93546164975488], "geometry": {"coordinates": [-85.62227324361213, 41.93546164975488], "type": "Point"}, "id": "4778", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.6222756654182, 41.93559732419938, -85.6222756654182, 41.93559732419938], "geometry": {"coordinates": [-85.6222756654182, 41.93559732419938], "type": "Point"}, "id": "4779", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62227808722427, 41.93573299835526, -85.62227808722427, 41.93573299835526], "geometry": {"coordinates": [-85.62227808722427, 41.93573299835526], "type": "Point"}, "id": "4780", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62228050903035, 41.935868672222526, -85.62228050903035, 41.935868672222526], "geometry": {"coordinates": [-85.62228050903035, 41.935868672222526], "type": "Point"}, "id": "4781", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62228293083642, 41.936004345801166, -85.62228293083642, 41.936004345801166], "geometry": {"coordinates": [-85.62228293083642, 41.936004345801166], "type": "Point"}, "id": "4782", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62228535264249, 41.93614001909119, -85.62228535264249, 41.93614001909119], "geometry": {"coordinates": [-85.62228535264249, 41.93614001909119], "type": "Point"}, "id": "4783", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62228772285334, 41.936275692589994, -85.62228772285334, 41.936275692589994], "geometry": {"coordinates": [-85.62228772285334, 41.936275692589994], "type": "Point"}, "id": "4784", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.6222900283638, 41.93641136642393, -85.6222900283638, 41.93641136642393], "geometry": {"coordinates": [-85.6222900283638, 41.93641136642393], "type": "Point"}, "id": "4785", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62229233387428, 41.93654703996924, -85.62229233387428, 41.93654703996924], "geometry": {"coordinates": [-85.62229233387428, 41.93654703996924], "type": "Point"}, "id": "4786", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62229463938478, 41.93668271322592, -85.62229463938478, 41.93668271322592], "geometry": {"coordinates": [-85.62229463938478, 41.93668271322592], "type": "Point"}, "id": "4787", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62229694489524, 41.93681838619397, -85.62229694489524, 41.93681838619397], "geometry": {"coordinates": [-85.62229694489524, 41.93681838619397], "type": "Point"}, "id": "4788", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62229925040572, 41.936954058873404, -85.62229925040572, 41.936954058873404], "geometry": {"coordinates": [-85.62229925040572, 41.936954058873404], "type": "Point"}, "id": "4789", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62230155591618, 41.9370897312642, -85.62230155591618, 41.9370897312642], "geometry": {"coordinates": [-85.62230155591618, 41.9370897312642], "type": "Point"}, "id": "4790", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62230386142666, 41.93722540336638, -85.62230386142666, 41.93722540336638], "geometry": {"coordinates": [-85.62230386142666, 41.93722540336638], "type": "Point"}, "id": "4791", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62230616693715, 41.93736107517992, -85.62230616693715, 41.93736107517992], "geometry": {"coordinates": [-85.62230616693715, 41.93736107517992], "type": "Point"}, "id": "4792", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62230847244761, 41.937496746704845, -85.62230847244761, 41.937496746704845], "geometry": {"coordinates": [-85.62230847244761, 41.937496746704845], "type": "Point"}, "id": "4793", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62231077795809, 41.93763241794113, -85.62231077795809, 41.93763241794113], "geometry": {"coordinates": [-85.62231077795809, 41.93763241794113], "type": "Point"}, "id": "4794", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62231308346855, 41.937768088888795, -85.62231308346855, 41.937768088888795], "geometry": {"coordinates": [-85.62231308346855, 41.937768088888795], "type": "Point"}, "id": "4795", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62231538897905, 41.93790375954782, -85.62231538897905, 41.93790375954782], "geometry": {"coordinates": [-85.62231538897905, 41.93790375954782], "type": "Point"}, "id": "4796", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.62231769448952, 41.93803942991823, -85.62231769448952, 41.93803942991823], "geometry": {"coordinates": [-85.62231769448952, 41.93803942991823], "type": "Point"}, "id": "4797", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965370}, "type": "Feature"}, {"bbox": [-85.6271604, 41.9262769, -85.6271604, 41.9262769], "geometry": {"coordinates": [-85.6271604, 41.9262769], "type": "Point"}, "id": "4798", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62696270167913, 41.92630296003648, -85.62696270167913, 41.92630296003648], "geometry": {"coordinates": [-85.62696270167913, 41.92630296003648], "type": "Point"}, "id": "4799", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62676500335826, 41.92632902006231, -85.62676500335826, 41.92632902006231], "geometry": {"coordinates": [-85.62676500335826, 41.92632902006231], "type": "Point"}, "id": "4800", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.6265673050374, 41.926355080077506, -85.6265673050374, 41.926355080077506], "geometry": {"coordinates": [-85.6265673050374, 41.926355080077506], "type": "Point"}, "id": "4801", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62636960671652, 41.92638114008206, -85.62636960671652, 41.92638114008206], "geometry": {"coordinates": [-85.62636960671652, 41.92638114008206], "type": "Point"}, "id": "4802", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62617409147006, 41.92641481928345, -85.62617409147006, 41.92641481928345], "geometry": {"coordinates": [-85.62617409147006, 41.92641481928345], "type": "Point"}, "id": "4803", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.62597929573504, 41.926451009652, -85.62597929573504, 41.926451009652], "geometry": {"coordinates": [-85.62597929573504, 41.926451009652], "type": "Point"}, "id": "4804", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967891}, "type": "Feature"}, {"bbox": [-85.6296112, 41.9273948, -85.6296112, 41.9273948], "geometry": {"coordinates": [-85.6296112, 41.9273948], "type": "Point"}, "id": "4805", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62943685185918, 41.927354838679975, -85.62943685185918, 41.927354838679975], "geometry": {"coordinates": [-85.62943685185918, 41.927354838679975], "type": "Point"}, "id": "4806", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62924852280733, 41.92735517590522, -85.62924852280733, 41.92735517590522], "geometry": {"coordinates": [-85.62924852280733, 41.92735517590522], "type": "Point"}, "id": "4807", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62906019375549, 41.92735551313045, -85.62906019375549, 41.92735551313045], "geometry": {"coordinates": [-85.62906019375549, 41.92735551313045], "type": "Point"}, "id": "4808", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62887186470363, 41.92735585035569, -85.62887186470363, 41.92735585035569], "geometry": {"coordinates": [-85.62887186470363, 41.92735585035569], "type": "Point"}, "id": "4809", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62868353565177, 41.92735618758092, -85.62868353565177, 41.92735618758092], "geometry": {"coordinates": [-85.62868353565177, 41.92735618758092], "type": "Point"}, "id": "4810", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62849520659994, 41.92735652480616, -85.62849520659994, 41.92735652480616], "geometry": {"coordinates": [-85.62849520659994, 41.92735652480616], "type": "Point"}, "id": "4811", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62830687754808, 41.92735686203138, -85.62830687754808, 41.92735686203138], "geometry": {"coordinates": [-85.62830687754808, 41.92735686203138], "type": "Point"}, "id": "4812", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62811854849625, 41.92735719925661, -85.62811854849625, 41.92735719925661], "geometry": {"coordinates": [-85.62811854849625, 41.92735719925661], "type": "Point"}, "id": "4813", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62793021944441, 41.927357536481836, -85.62793021944441, 41.927357536481836], "geometry": {"coordinates": [-85.62793021944441, 41.927357536481836], "type": "Point"}, "id": "4814", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62774189424019, 41.92735836586917, -85.62774189424019, 41.92735836586917], "geometry": {"coordinates": [-85.62774189424019, 41.92735836586917], "type": "Point"}, "id": "4815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62755357265794, 41.92735965855047, -85.62755357265794, 41.92735965855047], "geometry": {"coordinates": [-85.62755357265794, 41.92735965855047], "type": "Point"}, "id": "4816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.6273652510757, 41.927360951231755, -85.6273652510757, 41.927360951231755], "geometry": {"coordinates": [-85.6273652510757, 41.927360951231755], "type": "Point"}, "id": "4817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62717692949344, 41.92736224391301, -85.62717692949344, 41.92736224391301], "geometry": {"coordinates": [-85.62717692949344, 41.92736224391301], "type": "Point"}, "id": "4818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62698860791122, 41.92736353659424, -85.62698860791122, 41.92736353659424], "geometry": {"coordinates": [-85.62698860791122, 41.92736353659424], "type": "Point"}, "id": "4819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62680028632896, 41.92736482927545, -85.62680028632896, 41.92736482927545], "geometry": {"coordinates": [-85.62680028632896, 41.92736482927545], "type": "Point"}, "id": "4820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62661196474673, 41.92736612195662, -85.62661196474673, 41.92736612195662], "geometry": {"coordinates": [-85.62661196474673, 41.92736612195662], "type": "Point"}, "id": "4821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62642364316449, 41.92736741463778, -85.62642364316449, 41.92736741463778], "geometry": {"coordinates": [-85.62642364316449, 41.92736741463778], "type": "Point"}, "id": "4822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.62623532158223, 41.9273687073189, -85.62623532158223, 41.9273687073189], "geometry": {"coordinates": [-85.62623532158223, 41.9273687073189], "type": "Point"}, "id": "4823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965016}, "type": "Feature"}, {"bbox": [-85.621605, 41.940143, -85.621605, 41.940143], "geometry": {"coordinates": [-85.621605, 41.940143], "type": "Point"}, "id": "4824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.62160266666667, 41.9402983342793, -85.62160266666667, 41.9402983342793], "geometry": {"coordinates": [-85.62160266666667, 41.9402983342793], "type": "Point"}, "id": "4825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.62160033333333, 41.940453668180226, -85.62160033333333, 41.940453668180226], "geometry": {"coordinates": [-85.62160033333333, 41.940453668180226], "type": "Point"}, "id": "4826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.621598, 41.94060900170275, -85.621598, 41.94060900170275], "geometry": {"coordinates": [-85.621598, 41.94060900170275], "type": "Point"}, "id": "4827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.62159566666666, 41.94076433484688, -85.62159566666666, 41.94076433484688], "geometry": {"coordinates": [-85.62159566666666, 41.94076433484688], "type": "Point"}, "id": "4828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.62159333333334, 41.94091966761264, -85.62159333333334, 41.94091966761264], "geometry": {"coordinates": [-85.62159333333334, 41.94091966761264], "type": "Point"}, "id": "4829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964489}, "type": "Feature"}, {"bbox": [-85.6296112, 41.9273948, -85.6296112, 41.9273948], "geometry": {"coordinates": [-85.6296112, 41.9273948], "type": "Point"}, "id": "4830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296374061141, 41.92752801499899, -85.6296374061141, 41.92752801499899], "geometry": {"coordinates": [-85.6296374061141, 41.92752801499899], "type": "Point"}, "id": "4831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62963998253709, 41.92766307272644, -85.62963998253709, 41.92766307272644], "geometry": {"coordinates": [-85.62963998253709, 41.92766307272644], "type": "Point"}, "id": "4832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62964255896007, 41.927798130167965, -85.62964255896007, 41.927798130167965], "geometry": {"coordinates": [-85.62964255896007, 41.927798130167965], "type": "Point"}, "id": "4833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62964513538306, 41.92793318732357, -85.62964513538306, 41.92793318732357], "geometry": {"coordinates": [-85.62964513538306, 41.92793318732357], "type": "Point"}, "id": "4834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62964771180603, 41.928068244193234, -85.62964771180603, 41.928068244193234], "geometry": {"coordinates": [-85.62964771180603, 41.928068244193234], "type": "Point"}, "id": "4835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965028822902, 41.92820330077699, -85.62965028822902, 41.92820330077699], "geometry": {"coordinates": [-85.62965028822902, 41.92820330077699], "type": "Point"}, "id": "4836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965234353175, 41.92833835949162, -85.62965234353175, 41.92833835949162], "geometry": {"coordinates": [-85.62965234353175, 41.92833835949162], "type": "Point"}, "id": "4837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965203042417, 41.928473428904276, -85.62965203042417, 41.928473428904276], "geometry": {"coordinates": [-85.62965203042417, 41.928473428904276], "type": "Point"}, "id": "4838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965171731659, 41.928608498030954, -85.62965171731659, 41.928608498030954], "geometry": {"coordinates": [-85.62965171731659, 41.928608498030954], "type": "Point"}, "id": "4839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965140420901, 41.928743566871645, -85.62965140420901, 41.928743566871645], "geometry": {"coordinates": [-85.62965140420901, 41.928743566871645], "type": "Point"}, "id": "4840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965109110141, 41.928878635426365, -85.62965109110141, 41.928878635426365], "geometry": {"coordinates": [-85.62965109110141, 41.928878635426365], "type": "Point"}, "id": "4841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965077799382, 41.92901370369509, -85.62965077799382, 41.92901370369509], "geometry": {"coordinates": [-85.62965077799382, 41.92901370369509], "type": "Point"}, "id": "4842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965046488624, 41.92914877167784, -85.62965046488624, 41.92914877167784], "geometry": {"coordinates": [-85.62965046488624, 41.92914877167784], "type": "Point"}, "id": "4843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296509409242, 41.9292838376917, -85.6296509409242, 41.9292838376917], "geometry": {"coordinates": [-85.6296509409242, 41.9292838376917], "type": "Point"}, "id": "4844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965229483339, 41.92941890154747, -85.62965229483339, 41.92941890154747], "geometry": {"coordinates": [-85.62965229483339, 41.92941890154747], "type": "Point"}, "id": "4845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965364874258, 41.929553965117265, -85.62965364874258, 41.929553965117265], "geometry": {"coordinates": [-85.62965364874258, 41.929553965117265], "type": "Point"}, "id": "4846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965500265177, 41.92968902840109, -85.62965500265177, 41.92968902840109], "geometry": {"coordinates": [-85.62965500265177, 41.92968902840109], "type": "Point"}, "id": "4847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965635656096, 41.929824091398956, -85.62965635656096, 41.929824091398956], "geometry": {"coordinates": [-85.62965635656096, 41.929824091398956], "type": "Point"}, "id": "4848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965771047017, 41.929959154110854, -85.62965771047017, 41.929959154110854], "geometry": {"coordinates": [-85.62965771047017, 41.929959154110854], "type": "Point"}, "id": "4849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62965906437937, 41.93009421653678, -85.62965906437937, 41.93009421653678], "geometry": {"coordinates": [-85.62965906437937, 41.93009421653678], "type": "Point"}, "id": "4850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966039845566, 41.930229278785006, -85.62966039845566, 41.930229278785006], "geometry": {"coordinates": [-85.62966039845566, 41.930229278785006], "type": "Point"}, "id": "4851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966170893539, 41.930364340876096, -85.62966170893539, 41.930364340876096], "geometry": {"coordinates": [-85.62966170893539, 41.930364340876096], "type": "Point"}, "id": "4852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966301941512, 41.93049940268121, -85.62966301941512, 41.93049940268121], "geometry": {"coordinates": [-85.62966301941512, 41.93049940268121], "type": "Point"}, "id": "4853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966432989484, 41.930634464200345, -85.62966432989484, 41.930634464200345], "geometry": {"coordinates": [-85.62966432989484, 41.930634464200345], "type": "Point"}, "id": "4854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966564037458, 41.930769525433526, -85.62966564037458, 41.930769525433526], "geometry": {"coordinates": [-85.62966564037458, 41.930769525433526], "type": "Point"}, "id": "4855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966695085431, 41.93090458638073, -85.62966695085431, 41.93090458638073], "geometry": {"coordinates": [-85.62966695085431, 41.93090458638073], "type": "Point"}, "id": "4856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966826133405, 41.93103964704197, -85.62966826133405, 41.93103964704197], "geometry": {"coordinates": [-85.62966826133405, 41.93103964704197], "type": "Point"}, "id": "4857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62966957323304, 41.93117470740958, -85.62966957323304, 41.93117470740958], "geometry": {"coordinates": [-85.62966957323304, 41.93117470740958], "type": "Point"}, "id": "4858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.629670894538, 41.931309767440496, -85.629670894538, 41.931309767440496], "geometry": {"coordinates": [-85.629670894538, 41.931309767440496], "type": "Point"}, "id": "4859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967221584297, 41.931444827185445, -85.62967221584297, 41.931444827185445], "geometry": {"coordinates": [-85.62967221584297, 41.931444827185445], "type": "Point"}, "id": "4860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967353714792, 41.931579886644435, -85.62967353714792, 41.931579886644435], "geometry": {"coordinates": [-85.62967353714792, 41.931579886644435], "type": "Point"}, "id": "4861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967485845287, 41.93171494581745, -85.62967485845287, 41.93171494581745], "geometry": {"coordinates": [-85.62967485845287, 41.93171494581745], "type": "Point"}, "id": "4862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967617975787, 41.93185000470448, -85.62967617975787, 41.93185000470448], "geometry": {"coordinates": [-85.62967617975787, 41.93185000470448], "type": "Point"}, "id": "4863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296775010628, 41.931985063305554, -85.6296775010628, 41.931985063305554], "geometry": {"coordinates": [-85.6296775010628, 41.931985063305554], "type": "Point"}, "id": "4864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62967882236778, 41.93212012162065, -85.62967882236778, 41.93212012162065], "geometry": {"coordinates": [-85.62967882236778, 41.93212012162065], "type": "Point"}, "id": "4865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968014700037, 41.93225517963174, -85.62968014700037, 41.93225517963174], "geometry": {"coordinates": [-85.62968014700037, 41.93225517963174], "type": "Point"}, "id": "4866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296814725182, 41.93239023735205, -85.6296814725182, 41.93239023735205], "geometry": {"coordinates": [-85.6296814725182, 41.93239023735205], "type": "Point"}, "id": "4867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968279803603, 41.93252529478639, -85.62968279803603, 41.93252529478639], "geometry": {"coordinates": [-85.62968279803603, 41.93252529478639], "type": "Point"}, "id": "4868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968412355383, 41.93266035193476, -85.62968412355383, 41.93266035193476], "geometry": {"coordinates": [-85.62968412355383, 41.93266035193476], "type": "Point"}, "id": "4869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968544907164, 41.932795408797155, -85.62968544907164, 41.932795408797155], "geometry": {"coordinates": [-85.62968544907164, 41.932795408797155], "type": "Point"}, "id": "4870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968677458944, 41.93293046537359, -85.62968677458944, 41.93293046537359], "geometry": {"coordinates": [-85.62968677458944, 41.93293046537359], "type": "Point"}, "id": "4871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62968810010727, 41.93306552166404, -85.62968810010727, 41.93306552166404], "geometry": {"coordinates": [-85.62968810010727, 41.93306552166404], "type": "Point"}, "id": "4872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6296894221422, 41.93320057768734, -85.6296894221422, 41.93320057768734], "geometry": {"coordinates": [-85.6296894221422, 41.93320057768734], "type": "Point"}, "id": "4873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969073348233, 41.93333563348245, -85.62969073348233, 41.93333563348245], "geometry": {"coordinates": [-85.62969073348233, 41.93333563348245], "type": "Point"}, "id": "4874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969204482243, 41.93347068899158, -85.62969204482243, 41.93347068899158], "geometry": {"coordinates": [-85.62969204482243, 41.93347068899158], "type": "Point"}, "id": "4875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969335616255, 41.933605744214745, -85.62969335616255, 41.933605744214745], "geometry": {"coordinates": [-85.62969335616255, 41.933605744214745], "type": "Point"}, "id": "4876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969466750266, 41.933740799151934, -85.62969466750266, 41.933740799151934], "geometry": {"coordinates": [-85.62969466750266, 41.933740799151934], "type": "Point"}, "id": "4877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969597884276, 41.93387585380315, -85.62969597884276, 41.93387585380315], "geometry": {"coordinates": [-85.62969597884276, 41.93387585380315], "type": "Point"}, "id": "4878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969729018288, 41.934010908168396, -85.62969729018288, 41.934010908168396], "geometry": {"coordinates": [-85.62969729018288, 41.934010908168396], "type": "Point"}, "id": "4879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969860152299, 41.93414596224767, -85.62969860152299, 41.93414596224767], "geometry": {"coordinates": [-85.62969860152299, 41.93414596224767], "type": "Point"}, "id": "4880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62969991784627, 41.934281016014104, -85.62969991784627, 41.934281016014104], "geometry": {"coordinates": [-85.62969991784627, 41.934281016014104], "type": "Point"}, "id": "4881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970123722536, 41.934416069478104, -85.62970123722536, 41.934416069478104], "geometry": {"coordinates": [-85.62970123722536, 41.934416069478104], "type": "Point"}, "id": "4882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970255660446, 41.934551122656124, -85.62970255660446, 41.934551122656124], "geometry": {"coordinates": [-85.62970255660446, 41.934551122656124], "type": "Point"}, "id": "4883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970387598357, 41.93468617554817, -85.62970387598357, 41.93468617554817], "geometry": {"coordinates": [-85.62970387598357, 41.93468617554817], "type": "Point"}, "id": "4884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970519536266, 41.93482122815425, -85.62970519536266, 41.93482122815425], "geometry": {"coordinates": [-85.62970519536266, 41.93482122815425], "type": "Point"}, "id": "4885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970651474177, 41.93495628047435, -85.62970651474177, 41.93495628047435], "geometry": {"coordinates": [-85.62970651474177, 41.93495628047435], "type": "Point"}, "id": "4886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970783412088, 41.93509133250848, -85.62970783412088, 41.93509133250848], "geometry": {"coordinates": [-85.62970783412088, 41.93509133250848], "type": "Point"}, "id": "4887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62970915526951, 41.935226384247045, -85.62970915526951, 41.935226384247045], "geometry": {"coordinates": [-85.62970915526951, 41.935226384247045], "type": "Point"}, "id": "4888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971048125311, 41.93536143567343, -85.62971048125311, 41.93536143567343], "geometry": {"coordinates": [-85.62971048125311, 41.93536143567343], "type": "Point"}, "id": "4889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971180061231, 41.93549648684971, -85.62971180061231, 41.93549648684971], "geometry": {"coordinates": [-85.62971180061231, 41.93549648684971], "type": "Point"}, "id": "4890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971311787516, 41.93563153775137, -85.62971311787516, 41.93563153775137], "geometry": {"coordinates": [-85.62971311787516, 41.93563153775137], "type": "Point"}, "id": "4891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971443513801, 41.93576658836706, -85.62971443513801, 41.93576658836706], "geometry": {"coordinates": [-85.62971443513801, 41.93576658836706], "type": "Point"}, "id": "4892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971575240087, 41.93590163869677, -85.62971575240087, 41.93590163869677], "geometry": {"coordinates": [-85.62971575240087, 41.93590163869677], "type": "Point"}, "id": "4893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971706966371, 41.93603668874051, -85.62971706966371, 41.93603668874051], "geometry": {"coordinates": [-85.62971706966371, 41.93603668874051], "type": "Point"}, "id": "4894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971838692657, 41.936171738498274, -85.62971838692657, 41.936171738498274], "geometry": {"coordinates": [-85.62971838692657, 41.936171738498274], "type": "Point"}, "id": "4895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62971970418943, 41.93630678797006, -85.62971970418943, 41.93630678797006], "geometry": {"coordinates": [-85.62971970418943, 41.93630678797006], "type": "Point"}, "id": "4896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62972102145228, 41.936441837155876, -85.62972102145228, 41.936441837155876], "geometry": {"coordinates": [-85.62972102145228, 41.936441837155876], "type": "Point"}, "id": "4897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62972233871514, 41.93657688605571, -85.62972233871514, 41.93657688605571], "geometry": {"coordinates": [-85.62972233871514, 41.93657688605571], "type": "Point"}, "id": "4898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.629723655978, 41.93671193466957, -85.629723655978, 41.93671193466957], "geometry": {"coordinates": [-85.629723655978, 41.93671193466957], "type": "Point"}, "id": "4899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62972497324084, 41.93684698299745, -85.62972497324084, 41.93684698299745], "geometry": {"coordinates": [-85.62972497324084, 41.93684698299745], "type": "Point"}, "id": "4900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6297262905037, 41.93698203103936, -85.6297262905037, 41.93698203103936], "geometry": {"coordinates": [-85.6297262905037, 41.93698203103936], "type": "Point"}, "id": "4901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62972760776655, 41.93711707879529, -85.62972760776655, 41.93711707879529], "geometry": {"coordinates": [-85.62972760776655, 41.93711707879529], "type": "Point"}, "id": "4902", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6297289250294, 41.93725212626526, -85.6297289250294, 41.93725212626526], "geometry": {"coordinates": [-85.6297289250294, 41.93725212626526], "type": "Point"}, "id": "4903", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973024229225, 41.93738717344924, -85.62973024229225, 41.93738717344924], "geometry": {"coordinates": [-85.62973024229225, 41.93738717344924], "type": "Point"}, "id": "4904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973155955511, 41.93752222034724, -85.62973155955511, 41.93752222034724], "geometry": {"coordinates": [-85.62973155955511, 41.93752222034724], "type": "Point"}, "id": "4905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973287681797, 41.93765726695927, -85.62973287681797, 41.93765726695927], "geometry": {"coordinates": [-85.62973287681797, 41.93765726695927], "type": "Point"}, "id": "4906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973419408081, 41.937792313285314, -85.62973419408081, 41.937792313285314], "geometry": {"coordinates": [-85.62973419408081, 41.937792313285314], "type": "Point"}, "id": "4907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973551134368, 41.93792735932539, -85.62973551134368, 41.93792735932539], "geometry": {"coordinates": [-85.62973551134368, 41.93792735932539], "type": "Point"}, "id": "4908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973682860653, 41.938062405079485, -85.62973682860653, 41.938062405079485], "geometry": {"coordinates": [-85.62973682860653, 41.938062405079485], "type": "Point"}, "id": "4909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973814586938, 41.9381974505476, -85.62973814586938, 41.9381974505476], "geometry": {"coordinates": [-85.62973814586938, 41.9381974505476], "type": "Point"}, "id": "4910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62973945976862, 41.93833249574787, -85.62973945976862, 41.93833249574787], "geometry": {"coordinates": [-85.62973945976862, 41.93833249574787], "type": "Point"}, "id": "4911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974077352371, 41.938467540662955, -85.62974077352371, 41.938467540662955], "geometry": {"coordinates": [-85.62974077352371, 41.938467540662955], "type": "Point"}, "id": "4912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974208727881, 41.93860258529204, -85.62974208727881, 41.93860258529204], "geometry": {"coordinates": [-85.62974208727881, 41.93860258529204], "type": "Point"}, "id": "4913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974340103389, 41.93873762963516, -85.62974340103389, 41.93873762963516], "geometry": {"coordinates": [-85.62974340103389, 41.93873762963516], "type": "Point"}, "id": "4914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974471478897, 41.938872673692295, -85.62974471478897, 41.938872673692295], "geometry": {"coordinates": [-85.62974471478897, 41.938872673692295], "type": "Point"}, "id": "4915", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974602854408, 41.939007717463454, -85.62974602854408, 41.939007717463454], "geometry": {"coordinates": [-85.62974602854408, 41.939007717463454], "type": "Point"}, "id": "4916", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974734229915, 41.939142760948634, -85.62974734229915, 41.939142760948634], "geometry": {"coordinates": [-85.62974734229915, 41.939142760948634], "type": "Point"}, "id": "4917", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974865605423, 41.939277804147835, -85.62974865605423, 41.939277804147835], "geometry": {"coordinates": [-85.62974865605423, 41.939277804147835], "type": "Point"}, "id": "4918", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974996980934, 41.939412847061064, -85.62974996980934, 41.939412847061064], "geometry": {"coordinates": [-85.62974996980934, 41.939412847061064], "type": "Point"}, "id": "4919", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62975096667869, 41.93954788815971, -85.62975096667869, 41.93954788815971], "geometry": {"coordinates": [-85.62975096667869, 41.93954788815971], "type": "Point"}, "id": "4920", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.62974729852552, 41.93968290646931, -85.62974729852552, 41.93968290646931], "geometry": {"coordinates": [-85.62974729852552, 41.93968290646931], "type": "Point"}, "id": "4921", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.6297356559728, 41.939815805812984, -85.6297356559728, 41.939815805812984], "geometry": {"coordinates": [-85.6297356559728, 41.939815805812984], "type": "Point"}, "id": "4922", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965023}, "type": "Feature"}, {"bbox": [-85.624741, 41.93019, -85.624741, 41.93019], "geometry": {"coordinates": [-85.624741, 41.93019], "type": "Point"}, "id": "4923", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.62493864, 41.930193160000314, -85.62493864, 41.930193160000314], "geometry": {"coordinates": [-85.62493864, 41.930193160000314], "type": "Point"}, "id": "4924", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.62513627999999, 41.93019632000047, -85.62513627999999, 41.93019632000047], "geometry": {"coordinates": [-85.62513627999999, 41.93019632000047], "type": "Point"}, "id": "4925", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.62533392, 41.930199480000475, -85.62533392, 41.930199480000475], "geometry": {"coordinates": [-85.62533392, 41.930199480000475], "type": "Point"}, "id": "4926", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.62553156, 41.93020264000032, -85.62553156, 41.93020264000032], "geometry": {"coordinates": [-85.62553156, 41.93020264000032], "type": "Point"}, "id": "4927", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962519}, "type": "Feature"}, {"bbox": [-85.6269868, 41.941035, -85.6269868, 41.941035], "geometry": {"coordinates": [-85.6269868, 41.941035], "type": "Point"}, "id": "4928", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62683422801804, 41.94112141036266, -85.62683422801804, 41.94112141036266], "geometry": {"coordinates": [-85.62683422801804, 41.94112141036266], "type": "Point"}, "id": "4929", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62667078281872, 41.94119644850012, -85.62667078281872, 41.94119644850012], "geometry": {"coordinates": [-85.62667078281872, 41.94119644850012], "type": "Point"}, "id": "4930", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62650733761939, 41.94127148654927, -85.62650733761939, 41.94127148654927], "geometry": {"coordinates": [-85.62650733761939, 41.94127148654927], "type": "Point"}, "id": "4931", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62634389575625, 41.94134652853025, -85.62634389575625, 41.94134652853025], "geometry": {"coordinates": [-85.62634389575625, 41.94134652853025], "type": "Point"}, "id": "4932", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62618046056078, 41.941421578457465, -85.62618046056078, 41.941421578457465], "geometry": {"coordinates": [-85.62618046056078, 41.941421578457465], "type": "Point"}, "id": "4933", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62601702536527, 41.941496628296356, -85.62601702536527, 41.941496628296356], "geometry": {"coordinates": [-85.62601702536527, 41.941496628296356], "type": "Point"}, "id": "4934", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62585359016978, 41.941571678046905, -85.62585359016978, 41.941571678046905], "geometry": {"coordinates": [-85.62585359016978, 41.941571678046905], "type": "Point"}, "id": "4935", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62569015497428, 41.94164672770913, -85.62569015497428, 41.94164672770913], "geometry": {"coordinates": [-85.62569015497428, 41.94164672770913], "type": "Point"}, "id": "4936", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62552672384982, 41.94172178218784, -85.62552672384982, 41.94172178218784], "geometry": {"coordinates": [-85.62552672384982, 41.94172178218784], "type": "Point"}, "id": "4937", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62536329288736, 41.941796836773406, -85.62536329288736, 41.941796836773406], "geometry": {"coordinates": [-85.62536329288736, 41.941796836773406], "type": "Point"}, "id": "4938", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.6251998619249, 41.941871891270615, -85.6251998619249, 41.941871891270615], "geometry": {"coordinates": [-85.6251998619249, 41.941871891270615], "type": "Point"}, "id": "4939", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.62503643096245, 41.941946945679476, -85.62503643096245, 41.941946945679476], "geometry": {"coordinates": [-85.62503643096245, 41.941946945679476], "type": "Point"}, "id": "4940", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 378599359}, "type": "Feature"}, {"bbox": [-85.64000299999998, 41.93698800000001, -85.64000299999998, 41.93698800000001], "geometry": {"coordinates": [-85.64000299999998, 41.93698800000001], "type": "Point"}, "id": "4941", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63982205885128, 41.9369900379536, -85.63982205885128, 41.9369900379536], "geometry": {"coordinates": [-85.63982205885128, 41.9369900379536], "type": "Point"}, "id": "4942", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63964111770258, 41.93699207590713, -85.63964111770258, 41.93699207590713], "geometry": {"coordinates": [-85.63964111770258, 41.93699207590713], "type": "Point"}, "id": "4943", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6394601765539, 41.93699411386059, -85.6394601765539, 41.93699411386059], "geometry": {"coordinates": [-85.6394601765539, 41.93699411386059], "type": "Point"}, "id": "4944", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6392792354052, 41.93699615181399, -85.6392792354052, 41.93699615181399], "geometry": {"coordinates": [-85.6392792354052, 41.93699615181399], "type": "Point"}, "id": "4945", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6390982942565, 41.93699818976732, -85.6390982942565, 41.93699818976732], "geometry": {"coordinates": [-85.6390982942565, 41.93699818976732], "type": "Point"}, "id": "4946", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6389173531078, 41.93700022772059, -85.6389173531078, 41.93700022772059], "geometry": {"coordinates": [-85.6389173531078, 41.93700022772059], "type": "Point"}, "id": "4947", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63873641932278, 41.93700251262352, -85.63873641932278, 41.93700251262352], "geometry": {"coordinates": [-85.63873641932278, 41.93700251262352], "type": "Point"}, "id": "4948", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63855553465991, 41.937006444899446, -85.63855553465991, 41.937006444899446], "geometry": {"coordinates": [-85.63855553465991, 41.937006444899446], "type": "Point"}, "id": "4949", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63837464999708, 41.93701037717513, -85.63837464999708, 41.93701037717513], "geometry": {"coordinates": [-85.63837464999708, 41.93701037717513], "type": "Point"}, "id": "4950", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63819376533422, 41.937014309450575, -85.63819376533422, 41.937014309450575], "geometry": {"coordinates": [-85.63819376533422, 41.937014309450575], "type": "Point"}, "id": "4951", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63801288067137, 41.93701824172578, -85.63801288067137, 41.93701824172578], "geometry": {"coordinates": [-85.63801288067137, 41.93701824172578], "type": "Point"}, "id": "4952", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63783199600852, 41.93702217400074, -85.63783199600852, 41.93702217400074], "geometry": {"coordinates": [-85.63783199600852, 41.93702217400074], "type": "Point"}, "id": "4953", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63765111134566, 41.937026106275454, -85.63765111134566, 41.937026106275454], "geometry": {"coordinates": [-85.63765111134566, 41.937026106275454], "type": "Point"}, "id": "4954", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.637470193515, 41.93702884434286, -85.637470193515, 41.93702884434286], "geometry": {"coordinates": [-85.637470193515, 41.93702884434286], "type": "Point"}, "id": "4955", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63728924487292, 41.9370304730436, -85.63728924487292, 41.9370304730436], "geometry": {"coordinates": [-85.63728924487292, 41.9370304730436], "type": "Point"}, "id": "4956", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63710829623083, 41.93703210174429, -85.63710829623083, 41.93703210174429], "geometry": {"coordinates": [-85.63710829623083, 41.93703210174429], "type": "Point"}, "id": "4957", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63692734758875, 41.937033730444945, -85.63692734758875, 41.937033730444945], "geometry": {"coordinates": [-85.63692734758875, 41.937033730444945], "type": "Point"}, "id": "4958", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63674639894668, 41.937035359145554, -85.63674639894668, 41.937035359145554], "geometry": {"coordinates": [-85.63674639894668, 41.937035359145554], "type": "Point"}, "id": "4959", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.6365654503046, 41.93703698784612, -85.6365654503046, 41.93703698784612], "geometry": {"coordinates": [-85.6365654503046, 41.93703698784612], "type": "Point"}, "id": "4960", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63638451391562, 41.93703685591474, -85.63638451391562, 41.93703685591474], "geometry": {"coordinates": [-85.63638451391562, 41.93703685591474], "type": "Point"}, "id": "4961", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63620359764195, 41.937033833641635, -85.63620359764195, 41.937033833641635], "geometry": {"coordinates": [-85.63620359764195, 41.937033833641635], "type": "Point"}, "id": "4962", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63602268136829, 41.93703081136839, -85.63602268136829, 41.93703081136839], "geometry": {"coordinates": [-85.63602268136829, 41.93703081136839], "type": "Point"}, "id": "4963", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63584176509463, 41.937027789095, -85.63584176509463, 41.937027789095], "geometry": {"coordinates": [-85.63584176509463, 41.937027789095], "type": "Point"}, "id": "4964", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63566084882096, 41.93702476682146, -85.63566084882096, 41.93702476682146], "geometry": {"coordinates": [-85.63566084882096, 41.93702476682146], "type": "Point"}, "id": "4965", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63547993254731, 41.93702174454779, -85.63547993254731, 41.93702174454779], "geometry": {"coordinates": [-85.63547993254731, 41.93702174454779], "type": "Point"}, "id": "4966", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.63529901627365, 41.93701872227397, -85.63529901627365, 41.93701872227397], "geometry": {"coordinates": [-85.63529901627365, 41.93701872227397], "type": "Point"}, "id": "4967", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967780}, "type": "Feature"}, {"bbox": [-85.62474999999999, 41.93119, -85.62474999999999, 41.93119], "geometry": {"coordinates": [-85.62474999999999, 41.93119], "type": "Point"}, "id": "4968", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62493412658193, 41.931188773766834, -85.62493412658193, 41.931188773766834], "geometry": {"coordinates": [-85.62493412658193, 41.931188773766834], "type": "Point"}, "id": "4969", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62511825316389, 41.93118754753363, -85.62511825316389, 41.93118754753363], "geometry": {"coordinates": [-85.62511825316389, 41.93118754753363], "type": "Point"}, "id": "4970", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62530237974583, 41.931186321300416, -85.62530237974583, 41.931186321300416], "geometry": {"coordinates": [-85.62530237974583, 41.931186321300416], "type": "Point"}, "id": "4971", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62548650632777, 41.93118509506718, -85.62548650632777, 41.93118509506718], "geometry": {"coordinates": [-85.62548650632777, 41.93118509506718], "type": "Point"}, "id": "4972", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.6256706329097, 41.931183868833905, -85.6256706329097, 41.931183868833905], "geometry": {"coordinates": [-85.6256706329097, 41.931183868833905], "type": "Point"}, "id": "4973", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62585475943035, 41.93118263752057, -85.62585475943035, 41.93118263752057], "geometry": {"coordinates": [-85.62585475943035, 41.93118263752057], "type": "Point"}, "id": "4974", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.6260388859338, 41.93118140478076, -85.6260388859338, 41.93118140478076], "geometry": {"coordinates": [-85.6260388859338, 41.93118140478076], "type": "Point"}, "id": "4975", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62622301243724, 41.93118017204091, -85.62622301243724, 41.93118017204091], "geometry": {"coordinates": [-85.62622301243724, 41.93118017204091], "type": "Point"}, "id": "4976", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62640713892259, 41.931178937810266, -85.62640713892259, 41.931178937810266], "geometry": {"coordinates": [-85.62640713892259, 41.931178937810266], "type": "Point"}, "id": "4977", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62659126534052, 41.93117769802101, -85.62659126534052, 41.93117769802101], "geometry": {"coordinates": [-85.62659126534052, 41.93117769802101], "type": "Point"}, "id": "4978", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62677539175844, 41.93117645823173, -85.62677539175844, 41.93117645823173], "geometry": {"coordinates": [-85.62677539175844, 41.93117645823173], "type": "Point"}, "id": "4979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62695951762649, 41.93117517518753, -85.62695951762649, 41.93117517518753], "geometry": {"coordinates": [-85.62695951762649, 41.93117517518753], "type": "Point"}, "id": "4980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62714364356292, 41.93117389802102, -85.62714364356292, 41.93117389802102], "geometry": {"coordinates": [-85.62714364356292, 41.93117389802102], "type": "Point"}, "id": "4981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62732777019181, 41.9311726756958, -85.62732777019181, 41.9311726756958], "geometry": {"coordinates": [-85.62732777019181, 41.9311726756958], "type": "Point"}, "id": "4982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.6275118968207, 41.93117145337056, -85.6275118968207, 41.93117145337056], "geometry": {"coordinates": [-85.6275118968207, 41.93117145337056], "type": "Point"}, "id": "4983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62769602344959, 41.93117023104529, -85.62769602344959, 41.93117023104529], "geometry": {"coordinates": [-85.62769602344959, 41.93117023104529], "type": "Point"}, "id": "4984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62788014988641, 41.931168992812125, -85.62788014988641, 41.931168992812125], "geometry": {"coordinates": [-85.62788014988641, 41.931168992812125], "type": "Point"}, "id": "4985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62806427631821, 41.931167754164356, -85.62806427631821, 41.931167754164356], "geometry": {"coordinates": [-85.62806427631821, 41.931167754164356], "type": "Point"}, "id": "4986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62824840275002, 41.93116651551657, -85.62824840275002, 41.93116651551657], "geometry": {"coordinates": [-85.62824840275002, 41.93116651551657], "type": "Point"}, "id": "4987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62843252917179, 41.931165276043565, -85.62843252917179, 41.931165276043565], "geometry": {"coordinates": [-85.62843252917179, 41.931165276043565], "type": "Point"}, "id": "4988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62861665558364, 41.93116403575545, -85.62861665558364, 41.93116403575545], "geometry": {"coordinates": [-85.62861665558364, 41.93116403575545], "type": "Point"}, "id": "4989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62880078199551, 41.9311627954673, -85.62880078199551, 41.9311627954673], "geometry": {"coordinates": [-85.62880078199551, 41.9311627954673], "type": "Point"}, "id": "4990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62898490840735, 41.93116155517912, -85.62898490840735, 41.93116155517912], "geometry": {"coordinates": [-85.62898490840735, 41.93116155517912], "type": "Point"}, "id": "4991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62916903499416, 41.93116032935464, -85.62916903499416, 41.93116032935464], "geometry": {"coordinates": [-85.62916903499416, 41.93116032935464], "type": "Point"}, "id": "4992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62935316158914, 41.93115910420357, -85.62935316158914, 41.93115910420357], "geometry": {"coordinates": [-85.62935316158914, 41.93115910420357], "type": "Point"}, "id": "4993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62953728818408, 41.93115787905248, -85.62953728818408, 41.93115787905248], "geometry": {"coordinates": [-85.62953728818408, 41.93115787905248], "type": "Point"}, "id": "4994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.62972141478029, 41.9311566540037, -85.62972141478029, 41.9311566540037], "geometry": {"coordinates": [-85.62972141478029, 41.9311566540037], "type": "Point"}, "id": "4995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.6299055413796, 41.931155429214805, -85.6299055413796, 41.931155429214805], "geometry": {"coordinates": [-85.6299055413796, 41.931155429214805], "type": "Point"}, "id": "4996", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63008966797892, 41.9311542044259, -85.63008966797892, 41.9311542044259], "geometry": {"coordinates": [-85.63008966797892, 41.9311542044259], "type": "Point"}, "id": "4997", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63027379457823, 41.93115297963696, -85.63027379457823, 41.93115297963696], "geometry": {"coordinates": [-85.63027379457823, 41.93115297963696], "type": "Point"}, "id": "4998", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63045792096152, 41.93115173702524, -85.63045792096152, 41.93115173702524], "geometry": {"coordinates": [-85.63045792096152, 41.93115173702524], "type": "Point"}, "id": "4999", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63064204730769, 41.93115049135019, -85.63064204730769, 41.93115049135019], "geometry": {"coordinates": [-85.63064204730769, 41.93115049135019], "type": "Point"}, "id": "5000", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.63082617365382, 41.93114924567511, -85.63082617365382, 41.93114924567511], "geometry": {"coordinates": [-85.63082617365382, 41.93114924567511], "type": "Point"}, "id": "5001", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967503}, "type": "Feature"}, {"bbox": [-85.648941, 41.939829, -85.648941, 41.939829], "geometry": {"coordinates": [-85.648941, 41.939829], "type": "Point"}, "id": "5002", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.648944685083, 41.939963505618735, -85.648944685083, 41.939963505618735], "geometry": {"coordinates": [-85.648944685083, 41.939963505618735], "type": "Point"}, "id": "5003", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64894827412004, 41.94009801235867, -85.64894827412004, 41.94009801235867], "geometry": {"coordinates": [-85.64894827412004, 41.94009801235867], "type": "Point"}, "id": "5004", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.6489517008859, 41.94023252118851, -85.6489517008859, 41.94023252118851], "geometry": {"coordinates": [-85.6489517008859, 41.94023252118851], "type": "Point"}, "id": "5005", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64895512765177, 41.940367029734624, -85.64895512765177, 41.940367029734624], "geometry": {"coordinates": [-85.64895512765177, 41.940367029734624], "type": "Point"}, "id": "5006", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64895855441763, 41.940501537997, -85.64895855441763, 41.940501537997], "geometry": {"coordinates": [-85.64895855441763, 41.940501537997], "type": "Point"}, "id": "5007", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.6489619811835, 41.94063604597566, -85.6489619811835, 41.94063604597566], "geometry": {"coordinates": [-85.6489619811835, 41.94063604597566], "type": "Point"}, "id": "5008", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64896540794935, 41.940770553670575, -85.64896540794935, 41.940770553670575], "geometry": {"coordinates": [-85.64896540794935, 41.940770553670575], "type": "Point"}, "id": "5009", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64896883471522, 41.94090506108177, -85.64896883471522, 41.94090506108177], "geometry": {"coordinates": [-85.64896883471522, 41.94090506108177], "type": "Point"}, "id": "5010", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64897255202575, 41.941039562525795, -85.64897255202575, 41.941039562525795], "geometry": {"coordinates": [-85.64897255202575, 41.941039562525795], "type": "Point"}, "id": "5011", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64897897085469, 41.9411740087677, -85.64897897085469, 41.9411740087677], "geometry": {"coordinates": [-85.64897897085469, 41.9411740087677], "type": "Point"}, "id": "5012", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.6489853896836, 41.941308454726155, -85.6489853896836, 41.941308454726155], "geometry": {"coordinates": [-85.6489853896836, 41.941308454726155], "type": "Point"}, "id": "5013", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64899183596951, 41.941442899673895, -85.64899183596951, 41.941442899673895], "geometry": {"coordinates": [-85.64899183596951, 41.941442899673895], "type": "Point"}, "id": "5014", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64899828929805, 41.94157734415162, -85.64899828929805, 41.94157734415162], "geometry": {"coordinates": [-85.64899828929805, 41.94157734415162], "type": "Point"}, "id": "5015", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64900474262659, 41.941711788345884, -85.64900474262659, 41.941711788345884], "geometry": {"coordinates": [-85.64900474262659, 41.941711788345884], "type": "Point"}, "id": "5016", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64901118683616, 41.9418462324982, -85.64901118683616, 41.9418462324982], "geometry": {"coordinates": [-85.64901118683616, 41.9418462324982], "type": "Point"}, "id": "5017", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64901760546594, 41.94198067704453, -85.64901760546594, 41.94198067704453], "geometry": {"coordinates": [-85.64901760546594, 41.94198067704453], "type": "Point"}, "id": "5018", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64902402409571, 41.942115121307395, -85.64902402409571, 41.942115121307395], "geometry": {"coordinates": [-85.64902402409571, 41.942115121307395], "type": "Point"}, "id": "5019", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64903044272549, 41.94224956528678, -85.64903044272549, 41.94224956528678], "geometry": {"coordinates": [-85.64903044272549, 41.94224956528678], "type": "Point"}, "id": "5020", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.64903459634566, 41.942384055673195, -85.64903459634566, 41.942384055673195], "geometry": {"coordinates": [-85.64903459634566, 41.942384055673195], "type": "Point"}, "id": "5021", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967644}, "type": "Feature"}, {"bbox": [-85.65026399999999, 41.954238, -85.65026399999999, 41.954238], "geometry": {"coordinates": [-85.65026399999999, 41.954238], "type": "Point"}, "id": "5022", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65026039839955, 41.95410127352844, -85.65026039839955, 41.95410127352844], "geometry": {"coordinates": [-85.65026039839955, 41.95410127352844], "type": "Point"}, "id": "5023", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.6502567967991, 41.95396454676357, -85.6502567967991, 41.95396454676357], "geometry": {"coordinates": [-85.6502567967991, 41.95396454676357], "type": "Point"}, "id": "5024", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65025319519867, 41.9538278197054, -85.65025319519867, 41.9538278197054], "geometry": {"coordinates": [-85.65025319519867, 41.9538278197054], "type": "Point"}, "id": "5025", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024959359823, 41.953691092353935, -85.65024959359823, 41.953691092353935], "geometry": {"coordinates": [-85.65024959359823, 41.953691092353935], "type": "Point"}, "id": "5026", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024599199778, 41.953554364709156, -85.65024599199778, 41.953554364709156], "geometry": {"coordinates": [-85.65024599199778, 41.953554364709156], "type": "Point"}, "id": "5027", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024239039732, 41.95341763677107, -85.65024239039732, 41.95341763677107], "geometry": {"coordinates": [-85.65024239039732, 41.95341763677107], "type": "Point"}, "id": "5028", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65023878879687, 41.953280908539675, -85.65023878879687, 41.953280908539675], "geometry": {"coordinates": [-85.65023878879687, 41.953280908539675], "type": "Point"}, "id": "5029", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024272977418, 41.953144298834104, -85.65024272977418, 41.953144298834104], "geometry": {"coordinates": [-85.65024272977418, 41.953144298834104], "type": "Point"}, "id": "5030", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65025411344402, 41.95300780608161, -85.65025411344402, 41.95300780608161], "geometry": {"coordinates": [-85.65025411344402, 41.95300780608161], "type": "Point"}, "id": "5031", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65026549711388, 41.95287131303681, -85.65026549711388, 41.95287131303681], "geometry": {"coordinates": [-85.65026549711388, 41.95287131303681], "type": "Point"}, "id": "5032", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65027688078372, 41.95273481969973, -85.65027688078372, 41.95273481969973], "geometry": {"coordinates": [-85.65027688078372, 41.95273481969973], "type": "Point"}, "id": "5033", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65028826445356, 41.95259832607036, -85.65028826445356, 41.95259832607036], "geometry": {"coordinates": [-85.65028826445356, 41.95259832607036], "type": "Point"}, "id": "5034", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65029964812341, 41.95246183214869, -85.65029964812341, 41.95246183214869], "geometry": {"coordinates": [-85.65029964812341, 41.95246183214869], "type": "Point"}, "id": "5035", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65031103179325, 41.952325337934724, -85.65031103179325, 41.952325337934724], "geometry": {"coordinates": [-85.65031103179325, 41.952325337934724], "type": "Point"}, "id": "5036", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65031667398912, 41.952188830719635, -85.65031667398912, 41.952188830719635], "geometry": {"coordinates": [-85.65031667398912, 41.952188830719635], "type": "Point"}, "id": "5037", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65030638303, 41.95205228794387, -85.65030638303, 41.95205228794387], "geometry": {"coordinates": [-85.65030638303, 41.95205228794387], "type": "Point"}, "id": "5038", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65029609207087, 41.951915744875606, -85.65029609207087, 41.951915744875606], "geometry": {"coordinates": [-85.65029609207087, 41.951915744875606], "type": "Point"}, "id": "5039", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65028580111175, 41.95177920151484, -85.65028580111175, 41.95177920151484], "geometry": {"coordinates": [-85.65028580111175, 41.95177920151484], "type": "Point"}, "id": "5040", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65027551015265, 41.95164265786158, -85.65027551015265, 41.95164265786158], "geometry": {"coordinates": [-85.65027551015265, 41.95164265786158], "type": "Point"}, "id": "5041", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65026521919351, 41.951506113915826, -85.65026521919351, 41.951506113915826], "geometry": {"coordinates": [-85.65026521919351, 41.951506113915826], "type": "Point"}, "id": "5042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.6502549282344, 41.951369569677574, -85.6502549282344, 41.951369569677574], "geometry": {"coordinates": [-85.6502549282344, 41.951369569677574], "type": "Point"}, "id": "5043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.65024463727528, 41.95123302514682, -85.65024463727528, 41.95123302514682], "geometry": {"coordinates": [-85.65024463727528, 41.95123302514682], "type": "Point"}, "id": "5044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.6502353151351, 41.95109648305937, -85.6502353151351, 41.95109648305937], "geometry": {"coordinates": [-85.6502353151351, 41.95109648305937], "type": "Point"}, "id": "5045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964870}, "type": "Feature"}, {"bbox": [-85.6451706, 41.94125089999999, -85.6451706, 41.94125089999999], "geometry": {"coordinates": [-85.6451706, 41.94125089999999], "type": "Point"}, "id": "5046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962736}, "type": "Feature"}, {"bbox": [-85.64494872156881, 41.94125645196279, -85.64494872156881, 41.94125645196279], "geometry": {"coordinates": [-85.64494872156881, 41.94125645196279], "type": "Point"}, "id": "5047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962736}, "type": "Feature"}, {"bbox": [-85.64472684310716, 41.94126200318026, -85.64472684310716, 41.94126200318026], "geometry": {"coordinates": [-85.64472684310716, 41.94126200318026], "type": "Point"}, "id": "5048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962736}, "type": "Feature"}, {"bbox": [-85.64450492155359, 41.941266501590285, -85.64450492155359, 41.941266501590285], "geometry": {"coordinates": [-85.64450492155359, 41.941266501590285], "type": "Point"}, "id": "5049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17962736}, "type": "Feature"}, {"bbox": [-85.63695419999999, 41.9401113, -85.63695419999999, 41.9401113], "geometry": {"coordinates": [-85.63695419999999, 41.9401113], "type": "Point"}, "id": "5050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63695965349656, 41.94025766798474, -85.63695965349656, 41.94025766798474], "geometry": {"coordinates": [-85.63695965349656, 41.94025766798474], "type": "Point"}, "id": "5051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63696510699313, 41.94040403563351, -85.63696510699313, 41.94040403563351], "geometry": {"coordinates": [-85.63696510699313, 41.94040403563351], "type": "Point"}, "id": "5052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63697056048973, 41.94055040294633, -85.63697056048973, 41.94055040294633], "geometry": {"coordinates": [-85.63697056048973, 41.94055040294633], "type": "Point"}, "id": "5053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.6369760139863, 41.94069676992317, -85.6369760139863, 41.94069676992317], "geometry": {"coordinates": [-85.6369760139863, 41.94069676992317], "type": "Point"}, "id": "5054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63698146748287, 41.940843136564055, -85.63698146748287, 41.940843136564055], "geometry": {"coordinates": [-85.63698146748287, 41.940843136564055], "type": "Point"}, "id": "5055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.63699812270467, 41.94098895674332, -85.63699812270467, 41.94098895674332], "geometry": {"coordinates": [-85.63699812270467, 41.94098895674332], "type": "Point"}, "id": "5056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17963021}, "type": "Feature"}, {"bbox": [-85.6317718, 41.94436660000001, -85.6317718, 41.94436660000001], "geometry": {"coordinates": [-85.6317718, 41.94436660000001], "type": "Point"}, "id": "5057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63180980180012, 41.944498048996884, -85.63180980180012, 41.944498048996884], "geometry": {"coordinates": [-85.63180980180012, 41.944498048996884], "type": "Point"}, "id": "5058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63184780360027, 41.94462949772274, -85.63184780360027, 41.94462949772274], "geometry": {"coordinates": [-85.63184780360027, 41.94462949772274], "type": "Point"}, "id": "5059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.6319159922943, 41.94475353019685, -85.6319159922943, 41.94475353019685], "geometry": {"coordinates": [-85.6319159922943, 41.94475353019685], "type": "Point"}, "id": "5060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63201441123584, 41.944866308267684, -85.63201441123584, 41.944866308267684], "geometry": {"coordinates": [-85.63201441123584, 41.944866308267684], "type": "Point"}, "id": "5061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63211825969682, 41.94497628331729, -85.63211825969682, 41.94497628331729], "geometry": {"coordinates": [-85.63211825969682, 41.94497628331729], "type": "Point"}, "id": "5062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63222582475535, 41.945084341487984, -85.63222582475535, 41.945084341487984], "geometry": {"coordinates": [-85.63222582475535, 41.945084341487984], "type": "Point"}, "id": "5063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.6323333898139, 41.94519239947554, -85.6323333898139, 41.94519239947554], "geometry": {"coordinates": [-85.6323333898139, 41.94519239947554], "type": "Point"}, "id": "5064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63244095487244, 41.94530045727994, -85.63244095487244, 41.94530045727994], "geometry": {"coordinates": [-85.63244095487244, 41.94530045727994], "type": "Point"}, "id": "5065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63256086389399, 41.94540057938209, -85.63256086389399, 41.94540057938209], "geometry": {"coordinates": [-85.63256086389399, 41.94540057938209], "type": "Point"}, "id": "5066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63269691125684, 41.94548755552809, -85.63269691125684, 41.94548755552809], "geometry": {"coordinates": [-85.63269691125684, 41.94548755552809], "type": "Point"}, "id": "5067", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63285604572582, 41.945551230994404, -85.63285604572582, 41.945551230994404], "geometry": {"coordinates": [-85.63285604572582, 41.945551230994404], "type": "Point"}, "id": "5068", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63302259034906, 41.94560350634006, -85.63302259034906, 41.94560350634006], "geometry": {"coordinates": [-85.63302259034906, 41.94560350634006], "type": "Point"}, "id": "5069", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63318912432689, 41.945655800417605, -85.63318912432689, 41.945655800417605], "geometry": {"coordinates": [-85.63318912432689, 41.945655800417605], "type": "Point"}, "id": "5070", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63334992752816, 41.945716195032446, -85.63334992752816, 41.945716195032446], "geometry": {"coordinates": [-85.63334992752816, 41.945716195032446], "type": "Point"}, "id": "5071", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63349053661116, 41.94579969564152, -85.63349053661116, 41.94579969564152], "geometry": {"coordinates": [-85.63349053661116, 41.94579969564152], "type": "Point"}, "id": "5072", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63358649352263, 41.94590835350176, -85.63358649352263, 41.94590835350176], "geometry": {"coordinates": [-85.63358649352263, 41.94590835350176], "type": "Point"}, "id": "5073", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63365494071104, 41.94603181596439, -85.63365494071104, 41.94603181596439], "geometry": {"coordinates": [-85.63365494071104, 41.94603181596439], "type": "Point"}, "id": "5074", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.63378689862529, 41.94611814743792, -85.63378689862529, 41.94611814743792], "geometry": {"coordinates": [-85.63378689862529, 41.94611814743792], "type": "Point"}, "id": "5075", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964996}, "type": "Feature"}, {"bbox": [-85.6370321, 41.945991299999996, -85.6370321, 41.945991299999996], "geometry": {"coordinates": [-85.6370321, 41.945991299999996], "type": "Point"}, "id": "5076", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150778}, "type": "Feature"}, {"bbox": [-85.6372673, 41.945929900029576, -85.6372673, 41.945929900029576], "geometry": {"coordinates": [-85.6372673, 41.945929900029576], "type": "Point"}, "id": "5077", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150778}, "type": "Feature"}, {"bbox": [-85.6313855, 41.9499125, -85.6313855, 41.9499125], "geometry": {"coordinates": [-85.6313855, 41.9499125], "type": "Point"}, "id": "5078", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63157277299557, 41.94991203823888, -85.63157277299557, 41.94991203823888], "geometry": {"coordinates": [-85.63157277299557, 41.94991203823888], "type": "Point"}, "id": "5079", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63176004599116, 41.94991157647776, -85.63176004599116, 41.94991157647776], "geometry": {"coordinates": [-85.63176004599116, 41.94991157647776], "type": "Point"}, "id": "5080", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63194731898673, 41.94991111471663, -85.63194731898673, 41.94991111471663], "geometry": {"coordinates": [-85.63194731898673, 41.94991111471663], "type": "Point"}, "id": "5081", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63213457315638, 41.94990943457072, -85.63213457315638, 41.94990943457072], "geometry": {"coordinates": [-85.63213457315638, 41.94990943457072], "type": "Point"}, "id": "5082", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63232181096365, 41.94990669547589, -85.63232181096365, 41.94990669547589], "geometry": {"coordinates": [-85.63232181096365, 41.94990669547589], "type": "Point"}, "id": "5083", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63250904877091, 41.94990395638094, -85.63250904877091, 41.94990395638094], "geometry": {"coordinates": [-85.63250904877091, 41.94990395638094], "type": "Point"}, "id": "5084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63269628657818, 41.949901217285884, -85.63269628657818, 41.949901217285884], "geometry": {"coordinates": [-85.63269628657818, 41.949901217285884], "type": "Point"}, "id": "5085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63288352438545, 41.94989847819071, -85.63288352438545, 41.94989847819071], "geometry": {"coordinates": [-85.63288352438545, 41.94989847819071], "type": "Point"}, "id": "5086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.63307076219272, 41.94989573909541, -85.63307076219272, 41.94989573909541], "geometry": {"coordinates": [-85.63307076219272, 41.94989573909541], "type": "Point"}, "id": "5087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967844}, "type": "Feature"}, {"bbox": [-85.653554, 41.948114000000004, -85.653554, 41.948114000000004], "geometry": {"coordinates": [-85.653554, 41.948114000000004], "type": "Point"}, "id": "5088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65355157142857, 41.94824985801145, -85.65355157142857, 41.94824985801145], "geometry": {"coordinates": [-85.65355157142857, 41.94824985801145], "type": "Point"}, "id": "5089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65354914285714, 41.948385715733366, -85.65354914285714, 41.948385715733366], "geometry": {"coordinates": [-85.65354914285714, 41.948385715733366], "type": "Point"}, "id": "5090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65354671428572, 41.948521573165756, -85.65354671428572, 41.948521573165756], "geometry": {"coordinates": [-85.65354671428572, 41.948521573165756], "type": "Point"}, "id": "5091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65354428571428, 41.948657430308614, -85.65354428571428, 41.948657430308614], "geometry": {"coordinates": [-85.65354428571428, 41.948657430308614], "type": "Point"}, "id": "5092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65354185714286, 41.94879328716194, -85.65354185714286, 41.94879328716194], "geometry": {"coordinates": [-85.65354185714286, 41.94879328716194], "type": "Point"}, "id": "5093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65353942857142, 41.948929143725735, -85.65353942857142, 41.948929143725735], "geometry": {"coordinates": [-85.65353942857142, 41.948929143725735], "type": "Point"}, "id": "5094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966284}, "type": "Feature"}, {"bbox": [-85.65159049999998, 41.94584770000001, -85.65159049999998, 41.94584770000001], "geometry": {"coordinates": [-85.65159049999998, 41.94584770000001], "type": "Point"}, "id": "5095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158309237542, 41.94598193518371, -85.65158309237542, 41.94598193518371], "geometry": {"coordinates": [-85.65158309237542, 41.94598193518371], "type": "Point"}, "id": "5096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157389153045, 41.946116105332244, -85.65157389153045, 41.946116105332244], "geometry": {"coordinates": [-85.65157389153045, 41.946116105332244], "type": "Point"}, "id": "5097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157521296496, 41.94625043853154, -85.65157521296496, 41.94625043853154], "geometry": {"coordinates": [-85.65157521296496, 41.94625043853154], "type": "Point"}, "id": "5098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157832256855, 41.94638473222234, -85.65157832256855, 41.94638473222234], "geometry": {"coordinates": [-85.65157832256855, 41.94638473222234], "type": "Point"}, "id": "5099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157880551729, 41.946519078816124, -85.65157880551729, 41.946519078816124], "geometry": {"coordinates": [-85.65157880551729, 41.946519078816124], "type": "Point"}, "id": "5100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157928846602, 41.946653425126804, -85.65157928846602, 41.946653425126804], "geometry": {"coordinates": [-85.65157928846602, 41.946653425126804], "type": "Point"}, "id": "5101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65157977141476, 41.94678777115436, -85.65157977141476, 41.94678777115436], "geometry": {"coordinates": [-85.65157977141476, 41.94678777115436], "type": "Point"}, "id": "5102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515802543635, 41.946922116898826, -85.6515802543635, 41.946922116898826], "geometry": {"coordinates": [-85.6515802543635, 41.946922116898826], "type": "Point"}, "id": "5103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158073731222, 41.947056462360166, -85.65158073731222, 41.947056462360166], "geometry": {"coordinates": [-85.65158073731222, 41.947056462360166], "type": "Point"}, "id": "5104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158122026097, 41.947190807538405, -85.65158122026097, 41.947190807538405], "geometry": {"coordinates": [-85.65158122026097, 41.947190807538405], "type": "Point"}, "id": "5105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515817032097, 41.947325152433535, -85.6515817032097, 41.947325152433535], "geometry": {"coordinates": [-85.6515817032097, 41.947325152433535], "type": "Point"}, "id": "5106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158218615841, 41.947459497045564, -85.65158218615841, 41.947459497045564], "geometry": {"coordinates": [-85.65158218615841, 41.947459497045564], "type": "Point"}, "id": "5107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158265567213, 41.94759384140013, -85.65158265567213, 41.94759384140013], "geometry": {"coordinates": [-85.65158265567213, 41.94759384140013], "type": "Point"}, "id": "5108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158310025222, 41.9477281855192, -85.65158310025222, 41.9477281855192], "geometry": {"coordinates": [-85.65158310025222, 41.9477281855192], "type": "Point"}, "id": "5109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158354483228, 41.94786252935516, -85.65158354483228, 41.94786252935516], "geometry": {"coordinates": [-85.65158354483228, 41.94786252935516], "type": "Point"}, "id": "5110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158401564918, 41.94799687285837, -85.65158401564918, 41.94799687285837], "geometry": {"coordinates": [-85.65158401564918, 41.94799687285837], "type": "Point"}, "id": "5111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158449018304, 41.94813121607143, -85.65158449018304, 41.94813121607143], "geometry": {"coordinates": [-85.65158449018304, 41.94813121607143], "type": "Point"}, "id": "5112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158496471692, 41.948265559001385, -85.65158496471692, 41.948265559001385], "geometry": {"coordinates": [-85.65158496471692, 41.948265559001385], "type": "Point"}, "id": "5113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158543925078, 41.94839990164823, -85.65158543925078, 41.94839990164823], "geometry": {"coordinates": [-85.65158543925078, 41.94839990164823], "type": "Point"}, "id": "5114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158592449437, 41.948534243990764, -85.65158592449437, 41.948534243990764], "geometry": {"coordinates": [-85.65158592449437, 41.948534243990764], "type": "Point"}, "id": "5115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158641131026, 41.948668586047084, -85.65158641131026, 41.948668586047084], "geometry": {"coordinates": [-85.65158641131026, 41.948668586047084], "type": "Point"}, "id": "5116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158689812618, 41.948802927820296, -85.65158689812618, 41.948802927820296], "geometry": {"coordinates": [-85.65158689812618, 41.948802927820296], "type": "Point"}, "id": "5117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158738494209, 41.94893726931039, -85.65158738494209, 41.94893726931039], "geometry": {"coordinates": [-85.65158738494209, 41.94893726931039], "type": "Point"}, "id": "5118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.651587871758, 41.94907161051737, -85.651587871758, 41.94907161051737], "geometry": {"coordinates": [-85.651587871758, 41.94907161051737], "type": "Point"}, "id": "5119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158794654218, 41.949205951792635, -85.65158794654218, 41.949205951792635], "geometry": {"coordinates": [-85.65158794654218, 41.949205951792635], "type": "Point"}, "id": "5120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158787396545, 41.94934029291044, -85.65158787396545, 41.94934029291044], "geometry": {"coordinates": [-85.65158787396545, 41.94934029291044], "type": "Point"}, "id": "5121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158780138873, 41.949474633745155, -85.65158780138873, 41.949474633745155], "geometry": {"coordinates": [-85.65158780138873, 41.949474633745155], "type": "Point"}, "id": "5122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.651587728812, 41.949608974296744, -85.651587728812, 41.949608974296744], "geometry": {"coordinates": [-85.651587728812, 41.949608974296744], "type": "Point"}, "id": "5123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158765623528, 41.94974331456523, -85.65158765623528, 41.94974331456523], "geometry": {"coordinates": [-85.65158765623528, 41.94974331456523], "type": "Point"}, "id": "5124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158758365855, 41.94987765455059, -85.65158758365855, 41.94987765455059], "geometry": {"coordinates": [-85.65158758365855, 41.94987765455059], "type": "Point"}, "id": "5125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158751108183, 41.95001199425284, -85.65158751108183, 41.95001199425284], "geometry": {"coordinates": [-85.65158751108183, 41.95001199425284], "type": "Point"}, "id": "5126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515874385051, 41.95014633367198, -85.6515874385051, 41.95014633367198], "geometry": {"coordinates": [-85.6515874385051, 41.95014633367198], "type": "Point"}, "id": "5127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158736592838, 41.95028067280801, -85.65158736592838, 41.95028067280801], "geometry": {"coordinates": [-85.65158736592838, 41.95028067280801], "type": "Point"}, "id": "5128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158729335165, 41.950415011660915, -85.65158729335165, 41.950415011660915], "geometry": {"coordinates": [-85.65158729335165, 41.950415011660915], "type": "Point"}, "id": "5129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158722077493, 41.950549350230716, -85.65158722077493, 41.950549350230716], "geometry": {"coordinates": [-85.65158722077493, 41.950549350230716], "type": "Point"}, "id": "5130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515871481982, 41.950683688517394, -85.6515871481982, 41.950683688517394], "geometry": {"coordinates": [-85.6515871481982, 41.950683688517394], "type": "Point"}, "id": "5131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158707562148, 41.95081802652097, -85.65158707562148, 41.95081802652097], "geometry": {"coordinates": [-85.65158707562148, 41.95081802652097], "type": "Point"}, "id": "5132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158700304475, 41.95095236424142, -85.65158700304475, 41.95095236424142], "geometry": {"coordinates": [-85.65158700304475, 41.95095236424142], "type": "Point"}, "id": "5133", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158815207394, 41.95108669883704, -85.65158815207394, 41.95108669883704], "geometry": {"coordinates": [-85.65158815207394, 41.95108669883704], "type": "Point"}, "id": "5134", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65158935459637, 41.951221033025135, -85.65158935459637, 41.951221033025135], "geometry": {"coordinates": [-85.65158935459637, 41.951221033025135], "type": "Point"}, "id": "5135", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515905571188, 41.95135536693011, -85.6515905571188, 41.95135536693011], "geometry": {"coordinates": [-85.6515905571188, 41.95135536693011], "type": "Point"}, "id": "5136", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515917596412, 41.95148970055199, -85.6515917596412, 41.95148970055199], "geometry": {"coordinates": [-85.6515917596412, 41.95148970055199], "type": "Point"}, "id": "5137", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159296216365, 41.951624033890766, -85.65159296216365, 41.951624033890766], "geometry": {"coordinates": [-85.65159296216365, 41.951624033890766], "type": "Point"}, "id": "5138", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159416468606, 41.951758366946436, -85.65159416468606, 41.951758366946436], "geometry": {"coordinates": [-85.65159416468606, 41.951758366946436], "type": "Point"}, "id": "5139", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6515953672085, 41.95189269971901, -85.6515953672085, 41.95189269971901], "geometry": {"coordinates": [-85.6515953672085, 41.95189269971901], "type": "Point"}, "id": "5140", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159656973091, 41.95202703220848, -85.65159656973091, 41.95202703220848], "geometry": {"coordinates": [-85.65159656973091, 41.95202703220848], "type": "Point"}, "id": "5141", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159777225334, 41.95216136441484, -85.65159777225334, 41.95216136441484], "geometry": {"coordinates": [-85.65159777225334, 41.95216136441484], "type": "Point"}, "id": "5142", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65159897477577, 41.952295696338105, -85.65159897477577, 41.952295696338105], "geometry": {"coordinates": [-85.65159897477577, 41.952295696338105], "type": "Point"}, "id": "5143", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160017729819, 41.95243002797826, -85.65160017729819, 41.95243002797826], "geometry": {"coordinates": [-85.65160017729819, 41.95243002797826], "type": "Point"}, "id": "5144", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6516013798206, 41.95256435933532, -85.6516013798206, 41.95256435933532], "geometry": {"coordinates": [-85.6516013798206, 41.95256435933532], "type": "Point"}, "id": "5145", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160258234303, 41.952698690409264, -85.65160258234303, 41.952698690409264], "geometry": {"coordinates": [-85.65160258234303, 41.952698690409264], "type": "Point"}, "id": "5146", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160378486546, 41.952833021200114, -85.65160378486546, 41.952833021200114], "geometry": {"coordinates": [-85.65160378486546, 41.952833021200114], "type": "Point"}, "id": "5147", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160498738788, 41.95296735170785, -85.65160498738788, 41.95296735170785], "geometry": {"coordinates": [-85.65160498738788, 41.95296735170785], "type": "Point"}, "id": "5148", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6516061899103, 41.95310168193249, -85.6516061899103, 41.95310168193249], "geometry": {"coordinates": [-85.6516061899103, 41.95310168193249], "type": "Point"}, "id": "5149", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160739243274, 41.95323601187403, -85.65160739243274, 41.95323601187403], "geometry": {"coordinates": [-85.65160739243274, 41.95323601187403], "type": "Point"}, "id": "5150", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160859495515, 41.953370341532455, -85.65160859495515, 41.953370341532455], "geometry": {"coordinates": [-85.65160859495515, 41.953370341532455], "type": "Point"}, "id": "5151", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.65160979747758, 41.95350467090778, -85.65160979747758, 41.95350467090778], "geometry": {"coordinates": [-85.65160979747758, 41.95350467090778], "type": "Point"}, "id": "5152", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966293}, "type": "Feature"}, {"bbox": [-85.6450995, 41.9541831, -85.6450995, 41.9541831], "geometry": {"coordinates": [-85.6450995, 41.9541831], "type": "Point"}, "id": "5153", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151786}, "type": "Feature"}, {"bbox": [-85.64527957735827, 41.95415756417712, -85.64527957735827, 41.95415756417712], "geometry": {"coordinates": [-85.64527957735827, 41.95415756417712], "type": "Point"}, "id": "5154", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151786}, "type": "Feature"}, {"bbox": [-85.64545965471655, 41.95413202834401, -85.64545965471655, 41.95413202834401], "geometry": {"coordinates": [-85.64545965471655, 41.95413202834401], "type": "Point"}, "id": "5155", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151786}, "type": "Feature"}, {"bbox": [-85.6456404651252, 41.95411043578486, -85.6456404651252, 41.95411043578486], "geometry": {"coordinates": [-85.6456404651252, 41.95411043578486], "type": "Point"}, "id": "5156", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151786}, "type": "Feature"}, {"bbox": [-85.64582310410702, 41.95409867963007, -85.64582310410702, 41.95409867963007], "geometry": {"coordinates": [-85.64582310410702, 41.95409867963007], "type": "Point"}, "id": "5157", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151786}, "type": "Feature"}, {"bbox": [-85.64600574308885, 41.954086923473106, -85.64600574308885, 41.954086923473106], "geometry": {"coordinates": [-85.64600574308885, 41.954086923473106], "type": "Point"}, "id": "5158", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151786}, "type": "Feature"}, {"bbox": [-85.64618871538585, 41.95407955854764, -85.64618871538585, 41.95407955854764], "geometry": {"coordinates": [-85.64618871538585, 41.95407955854764], "type": "Point"}, "id": "5159", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151786}, "type": "Feature"}, {"bbox": [-85.64637202469542, 41.95407853323208, -85.64637202469542, 41.95407853323208], "geometry": {"coordinates": [-85.64637202469542, 41.95407853323208], "type": "Point"}, "id": "5160", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134151786}, "type": "Feature"}, {"bbox": [-85.6362328, 41.9536856, -85.6362328, 41.9536856], "geometry": {"coordinates": [-85.6362328, 41.9536856], "type": "Point"}, "id": "5161", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.636415068737, 41.95368252032853, -85.636415068737, 41.95368252032853], "geometry": {"coordinates": [-85.636415068737, 41.95368252032853], "type": "Point"}, "id": "5162", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63659733747402, 41.9536794406569, -85.63659733747402, 41.9536794406569], "geometry": {"coordinates": [-85.63659733747402, 41.9536794406569], "type": "Point"}, "id": "5163", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63677960621101, 41.95367636098512, -85.63677960621101, 41.95367636098512], "geometry": {"coordinates": [-85.63677960621101, 41.95367636098512], "type": "Point"}, "id": "5164", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63696187494801, 41.95367328131319, -85.63696187494801, 41.95367328131319], "geometry": {"coordinates": [-85.63696187494801, 41.95367328131319], "type": "Point"}, "id": "5165", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63714414368502, 41.953670201641124, -85.63714414368502, 41.953670201641124], "geometry": {"coordinates": [-85.63714414368502, 41.953670201641124], "type": "Point"}, "id": "5166", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63732641242203, 41.9536671219689, -85.63732641242203, 41.9536671219689], "geometry": {"coordinates": [-85.63732641242203, 41.9536671219689], "type": "Point"}, "id": "5167", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63750869578612, 41.953665, -85.63750869578612, 41.953665], "geometry": {"coordinates": [-85.63750869578612, 41.953665], "type": "Point"}, "id": "5168", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63769101155931, 41.953665, -85.63769101155931, 41.953665], "geometry": {"coordinates": [-85.63769101155931, 41.953665], "type": "Point"}, "id": "5169", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63787332733247, 41.953665, -85.63787332733247, 41.953665], "geometry": {"coordinates": [-85.63787332733247, 41.953665], "type": "Point"}, "id": "5170", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63805564310564, 41.953665, -85.63805564310564, 41.953665], "geometry": {"coordinates": [-85.63805564310564, 41.953665], "type": "Point"}, "id": "5171", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63823795887883, 41.953665, -85.63823795887883, 41.953665], "geometry": {"coordinates": [-85.63823795887883, 41.953665], "type": "Point"}, "id": "5172", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.638420274652, 41.953665, -85.638420274652, 41.953665], "geometry": {"coordinates": [-85.638420274652, 41.953665], "type": "Point"}, "id": "5173", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.6386025904252, 41.953665, -85.6386025904252, 41.953665], "geometry": {"coordinates": [-85.6386025904252, 41.953665], "type": "Point"}, "id": "5174", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63878489590411, 41.95366377911887, -85.63878489590411, 41.95366377911887], "geometry": {"coordinates": [-85.63878489590411, 41.95366377911887], "type": "Point"}, "id": "5175", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63896719734025, 41.9536620787724, -85.63896719734025, 41.9536620787724], "geometry": {"coordinates": [-85.63896719734025, 41.9536620787724], "type": "Point"}, "id": "5176", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63914949877643, 41.95366037842589, -85.63914949877643, 41.95366037842589], "geometry": {"coordinates": [-85.63914949877643, 41.95366037842589], "type": "Point"}, "id": "5177", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63933180021259, 41.95365867807933, -85.63933180021259, 41.95365867807933], "geometry": {"coordinates": [-85.63933180021259, 41.95365867807933], "type": "Point"}, "id": "5178", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.6395140790813, 41.95365605559733, -85.6395140790813, 41.95365605559733], "geometry": {"coordinates": [-85.6395140790813, 41.95365605559733], "type": "Point"}, "id": "5179", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63969634298078, 41.953652821454234, -85.63969634298078, 41.953652821454234], "geometry": {"coordinates": [-85.63969634298078, 41.953652821454234], "type": "Point"}, "id": "5180", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.63987860689906, 41.95364958789617, -85.63987860689906, 41.95364958789617], "geometry": {"coordinates": [-85.63987860689906, 41.95364958789617], "type": "Point"}, "id": "5181", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.6400608708531, 41.95364635545366, -85.6400608708531, 41.95364635545366], "geometry": {"coordinates": [-85.6400608708531, 41.95364635545366], "type": "Point"}, "id": "5182", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.64024313480718, 41.953643123010984, -85.64024313480718, 41.953643123010984], "geometry": {"coordinates": [-85.64024313480718, 41.953643123010984], "type": "Point"}, "id": "5183", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.64042539876124, 41.95363989056814, -85.64042539876124, 41.95363989056814], "geometry": {"coordinates": [-85.64042539876124, 41.95363989056814], "type": "Point"}, "id": "5184", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.64060768422682, 41.953638, -85.64060768422682, 41.953638], "geometry": {"coordinates": [-85.64060768422682, 41.953638], "type": "Point"}, "id": "5185", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 385299770}, "type": "Feature"}, {"bbox": [-85.6358187, 41.94604230000001, -85.6358187, 41.94604230000001], "geometry": {"coordinates": [-85.6358187, 41.94604230000001], "type": "Point"}, "id": "5186", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150808}, "type": "Feature"}, {"bbox": [-85.63602685299675, 41.9460478222447, -85.63602685299675, 41.9460478222447], "geometry": {"coordinates": [-85.63602685299675, 41.9460478222447], "type": "Point"}, "id": "5187", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150808}, "type": "Feature"}, {"bbox": [-85.63623510541262, 41.94604666222552, -85.63623510541262, 41.94604666222552], "geometry": {"coordinates": [-85.63623510541262, 41.94604666222552], "type": "Point"}, "id": "5188", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 134150808}, "type": "Feature"}, {"bbox": [-85.633287, 41.952425999999996, -85.633287, 41.952425999999996], "geometry": {"coordinates": [-85.633287, 41.952425999999996], "type": "Point"}, "id": "5189", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63348685714286, 41.95242442857155, -85.63348685714286, 41.95242442857155], "geometry": {"coordinates": [-85.63348685714286, 41.95242442857155], "type": "Point"}, "id": "5190", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63368671428572, 41.95242285714305, -85.63368671428572, 41.95242285714305], "geometry": {"coordinates": [-85.63368671428572, 41.95242285714305], "type": "Point"}, "id": "5191", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63388657142858, 41.952421285714514, -85.63388657142858, 41.952421285714514], "geometry": {"coordinates": [-85.63388657142858, 41.952421285714514], "type": "Point"}, "id": "5192", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63408642857142, 41.952419714285945, -85.63408642857142, 41.952419714285945], "geometry": {"coordinates": [-85.63408642857142, 41.952419714285945], "type": "Point"}, "id": "5193", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63428628571428, 41.952418142857326, -85.63428628571428, 41.952418142857326], "geometry": {"coordinates": [-85.63428628571428, 41.952418142857326], "type": "Point"}, "id": "5194", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.63448614285714, 41.95241657142868, -85.63448614285714, 41.95241657142868], "geometry": {"coordinates": [-85.63448614285714, 41.95241657142868], "type": "Point"}, "id": "5195", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 775171419}, "type": "Feature"}, {"bbox": [-85.633287, 41.952425999999996, -85.633287, 41.952425999999996], "geometry": {"coordinates": [-85.633287, 41.952425999999996], "type": "Point"}, "id": "5196", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63328555555555, 41.9522852234659, -85.63328555555555, 41.9522852234659], "geometry": {"coordinates": [-85.63328555555555, 41.9522852234659], "type": "Point"}, "id": "5197", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63328411111111, 41.952144446620885, -85.63328411111111, 41.952144446620885], "geometry": {"coordinates": [-85.63328411111111, 41.952144446620885], "type": "Point"}, "id": "5198", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63328266666666, 41.95200366946495, -85.63328266666666, 41.95200366946495], "geometry": {"coordinates": [-85.63328266666666, 41.95200366946495], "type": "Point"}, "id": "5199", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63328122222221, 41.95186289199808, -85.63328122222221, 41.95186289199808], "geometry": {"coordinates": [-85.63328122222221, 41.95186289199808], "type": "Point"}, "id": "5200", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63327977777779, 41.9517221142203, -85.63327977777779, 41.9517221142203], "geometry": {"coordinates": [-85.63327977777779, 41.9517221142203], "type": "Point"}, "id": "5201", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63327833333332, 41.9515813361316, -85.63327833333332, 41.9515813361316], "geometry": {"coordinates": [-85.63327833333332, 41.9515813361316], "type": "Point"}, "id": "5202", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63327688888889, 41.951440557731985, -85.63327688888889, 41.951440557731985], "geometry": {"coordinates": [-85.63327688888889, 41.951440557731985], "type": "Point"}, "id": "5203", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63327544444444, 41.95129977902145, -85.63327544444444, 41.95129977902145], "geometry": {"coordinates": [-85.63327544444444, 41.95129977902145], "type": "Point"}, "id": "5204", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835856}, "type": "Feature"}, {"bbox": [-85.63594149999999, 41.945979699999995, -85.63594149999999, 41.945979699999995], "geometry": {"coordinates": [-85.63594149999999, 41.945979699999995], "type": "Point"}, "id": "5205", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63600797346638, 41.946105971150836, -85.63600797346638, 41.946105971150836], "geometry": {"coordinates": [-85.63600797346638, 41.946105971150836], "type": "Point"}, "id": "5206", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63606866896863, 41.946233599660275, -85.63606866896863, 41.946233599660275], "geometry": {"coordinates": [-85.63606866896863, 41.946233599660275], "type": "Point"}, "id": "5207", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63611178967322, 41.94636535733573, -85.63611178967322, 41.94636535733573], "geometry": {"coordinates": [-85.63611178967322, 41.94636535733573], "type": "Point"}, "id": "5208", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361344384989, 41.946499907224435, -85.6361344384989, 41.946499907224435], "geometry": {"coordinates": [-85.6361344384989, 41.946499907224435], "type": "Point"}, "id": "5209", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63614561262187, 41.94663509384647, -85.63614561262187, 41.94663509384647], "geometry": {"coordinates": [-85.63614561262187, 41.94663509384647], "type": "Point"}, "id": "5210", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361498150441, 41.946770661884074, -85.6361498150441, 41.946770661884074], "geometry": {"coordinates": [-85.6361498150441, 41.946770661884074], "type": "Point"}, "id": "5211", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63615393360145, 41.94690623105877, -85.63615393360145, 41.94690623105877], "geometry": {"coordinates": [-85.63615393360145, 41.94690623105877], "type": "Point"}, "id": "5212", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361581270902, 41.947041798673666, -85.6361581270902, 41.947041798673666], "geometry": {"coordinates": [-85.6361581270902, 41.947041798673666], "type": "Point"}, "id": "5213", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616232576085, 41.94717736591234, -85.63616232576085, 41.94717736591234], "geometry": {"coordinates": [-85.63616232576085, 41.94717736591234], "type": "Point"}, "id": "5214", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616540936113, 41.94731293165678, -85.63616540936113, 41.94731293165678], "geometry": {"coordinates": [-85.63616540936113, 41.94731293165678], "type": "Point"}, "id": "5215", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616401527854, 41.94744850675178, -85.63616401527854, 41.94744850675178], "geometry": {"coordinates": [-85.63616401527854, 41.94744850675178], "type": "Point"}, "id": "5216", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616608522602, 41.947584100348074, -85.63616608522602, 41.947584100348074], "geometry": {"coordinates": [-85.63616608522602, 41.947584100348074], "type": "Point"}, "id": "5217", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63616815517354, 41.947719693655955, -85.63616815517354, 41.947719693655955], "geometry": {"coordinates": [-85.63616815517354, 41.947719693655955], "type": "Point"}, "id": "5218", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617022512105, 41.94785528667544, -85.63617022512105, 41.94785528667544], "geometry": {"coordinates": [-85.63617022512105, 41.94785528667544], "type": "Point"}, "id": "5219", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617229506856, 41.94799087940653, -85.63617229506856, 41.94799087940653], "geometry": {"coordinates": [-85.63617229506856, 41.94799087940653], "type": "Point"}, "id": "5220", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617436501607, 41.94812647184922, -85.63617436501607, 41.94812647184922], "geometry": {"coordinates": [-85.63617436501607, 41.94812647184922], "type": "Point"}, "id": "5221", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617643496359, 41.948262064003515, -85.63617643496359, 41.948262064003515], "geometry": {"coordinates": [-85.63617643496359, 41.948262064003515], "type": "Point"}, "id": "5222", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63617850491109, 41.94839765586941, -85.63617850491109, 41.94839765586941], "geometry": {"coordinates": [-85.63617850491109, 41.94839765586941], "type": "Point"}, "id": "5223", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361805748586, 41.948533247446896, -85.6361805748586, 41.948533247446896], "geometry": {"coordinates": [-85.6361805748586, 41.948533247446896], "type": "Point"}, "id": "5224", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618206861875, 41.948668841942265, -85.63618206861875, 41.948668841942265], "geometry": {"coordinates": [-85.63618206861875, 41.948668841942265], "type": "Point"}, "id": "5225", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618272678963, 41.948804440798945, -85.63618272678963, 41.948804440798945], "geometry": {"coordinates": [-85.63618272678963, 41.948804440798945], "type": "Point"}, "id": "5226", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618338496049, 41.9489400393672, -85.63618338496049, 41.9489400393672], "geometry": {"coordinates": [-85.63618338496049, 41.9489400393672], "type": "Point"}, "id": "5227", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618404313132, 41.949075637647006, -85.63618404313132, 41.949075637647006], "geometry": {"coordinates": [-85.63618404313132, 41.949075637647006], "type": "Point"}, "id": "5228", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361847013022, 41.949211235638394, -85.6361847013022, 41.949211235638394], "geometry": {"coordinates": [-85.6361847013022, 41.949211235638394], "type": "Point"}, "id": "5229", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618535947305, 41.949346833341345, -85.63618535947305, 41.949346833341345], "geometry": {"coordinates": [-85.63618535947305, 41.949346833341345], "type": "Point"}, "id": "5230", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361860176439, 41.94948243075586, -85.6361860176439, 41.94948243075586], "geometry": {"coordinates": [-85.6361860176439, 41.94948243075586], "type": "Point"}, "id": "5231", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6361866897301, 41.94961802784403, -85.6361866897301, 41.94961802784403], "geometry": {"coordinates": [-85.6361866897301, 41.94961802784403], "type": "Point"}, "id": "5232", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618736714936, 41.94975362462925, -85.63618736714936, 41.94975362462925], "geometry": {"coordinates": [-85.63618736714936, 41.94975362462925], "type": "Point"}, "id": "5233", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63618812618844, 41.94988922069394, -85.63618812618844, 41.94988922069394], "geometry": {"coordinates": [-85.63618812618844, 41.94988922069394], "type": "Point"}, "id": "5234", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619004418544, 41.950024810334895, -85.63619004418544, 41.950024810334895], "geometry": {"coordinates": [-85.63619004418544, 41.950024810334895], "type": "Point"}, "id": "5235", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619196218244, 41.95016039968745, -85.63619196218244, 41.95016039968745], "geometry": {"coordinates": [-85.63619196218244, 41.95016039968745], "type": "Point"}, "id": "5236", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619388017942, 41.95029598875158, -85.63619388017942, 41.95029598875158], "geometry": {"coordinates": [-85.63619388017942, 41.95029598875158], "type": "Point"}, "id": "5237", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619579817643, 41.95043157752731, -85.63619579817643, 41.95043157752731], "geometry": {"coordinates": [-85.63619579817643, 41.95043157752731], "type": "Point"}, "id": "5238", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619771617341, 41.95056716601464, -85.63619771617341, 41.95056716601464], "geometry": {"coordinates": [-85.63619771617341, 41.95056716601464], "type": "Point"}, "id": "5239", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63619963417042, 41.95070275421356, -85.63619963417042, 41.95070275421356], "geometry": {"coordinates": [-85.63619963417042, 41.95070275421356], "type": "Point"}, "id": "5240", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63620155216744, 41.950838342124065, -85.63620155216744, 41.950838342124065], "geometry": {"coordinates": [-85.63620155216744, 41.950838342124065], "type": "Point"}, "id": "5241", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63620347016442, 41.950973929746176, -85.63620347016442, 41.950973929746176], "geometry": {"coordinates": [-85.63620347016442, 41.950973929746176], "type": "Point"}, "id": "5242", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63620538816143, 41.95110951707987, -85.63620538816143, 41.95110951707987], "geometry": {"coordinates": [-85.63620538816143, 41.95110951707987], "type": "Point"}, "id": "5243", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63620805094438, 41.951245096754235, -85.63620805094438, 41.951245096754235], "geometry": {"coordinates": [-85.63620805094438, 41.951245096754235], "type": "Point"}, "id": "5244", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6362109848278, 41.95138067345724, -85.6362109848278, 41.95138067345724], "geometry": {"coordinates": [-85.6362109848278, 41.95138067345724], "type": "Point"}, "id": "5245", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6362139187112, 41.95151624987187, -85.6362139187112, 41.95151624987187], "geometry": {"coordinates": [-85.6362139187112, 41.95151624987187], "type": "Point"}, "id": "5246", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63621685259463, 41.951651825998134, -85.63621685259463, 41.951651825998134], "geometry": {"coordinates": [-85.63621685259463, 41.951651825998134], "type": "Point"}, "id": "5247", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63621978647804, 41.951787401836036, -85.63621978647804, 41.951787401836036], "geometry": {"coordinates": [-85.63621978647804, 41.951787401836036], "type": "Point"}, "id": "5248", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63622272036145, 41.95192297738558, -85.63622272036145, 41.95192297738558], "geometry": {"coordinates": [-85.63622272036145, 41.95192297738558], "type": "Point"}, "id": "5249", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63622565424487, 41.95205855264675, -85.63622565424487, 41.95205855264675], "geometry": {"coordinates": [-85.63622565424487, 41.95205855264675], "type": "Point"}, "id": "5250", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63622858812829, 41.95219412761955, -85.63622858812829, 41.95219412761955], "geometry": {"coordinates": [-85.63622858812829, 41.95219412761955], "type": "Point"}, "id": "5251", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623152201168, 41.952329702303985, -85.63623152201168, 41.952329702303985], "geometry": {"coordinates": [-85.63623152201168, 41.952329702303985], "type": "Point"}, "id": "5252", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623298954882, 41.95246528541191, -85.63623298954882, 41.95246528541191], "geometry": {"coordinates": [-85.63623298954882, 41.95246528541191], "type": "Point"}, "id": "5253", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623296848783, 41.95260087707546, -85.63623296848783, 41.95260087707546], "geometry": {"coordinates": [-85.63623296848783, 41.95260087707546], "type": "Point"}, "id": "5254", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623294742686, 41.952736468450574, -85.63623294742686, 41.952736468450574], "geometry": {"coordinates": [-85.63623294742686, 41.952736468450574], "type": "Point"}, "id": "5255", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623292636586, 41.95287205953725, -85.63623292636586, 41.95287205953725], "geometry": {"coordinates": [-85.63623292636586, 41.95287205953725], "type": "Point"}, "id": "5256", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.6362329053049, 41.953007650335486, -85.6362329053049, 41.953007650335486], "geometry": {"coordinates": [-85.6362329053049, 41.953007650335486], "type": "Point"}, "id": "5257", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623288424391, 41.95314324084526, -85.63623288424391, 41.95314324084526], "geometry": {"coordinates": [-85.63623288424391, 41.95314324084526], "type": "Point"}, "id": "5258", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623286318294, 41.95327883106661, -85.63623286318294, 41.95327883106661], "geometry": {"coordinates": [-85.63623286318294, 41.95327883106661], "type": "Point"}, "id": "5259", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623284212196, 41.95341442099952, -85.63623284212196, 41.95341442099952], "geometry": {"coordinates": [-85.63623284212196, 41.95341442099952], "type": "Point"}, "id": "5260", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.63623282106099, 41.95355001064398, -85.63623282106099, 41.95355001064398], "geometry": {"coordinates": [-85.63623282106099, 41.95355001064398], "type": "Point"}, "id": "5261", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967183}, "type": "Feature"}, {"bbox": [-85.64065879999998, 41.942600999999996, -85.64065879999998, 41.942600999999996], "geometry": {"coordinates": [-85.64065879999998, 41.942600999999996], "type": "Point"}, "id": "5262", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066064342488, 41.94273795589999, -85.64066064342488, 41.94273795589999], "geometry": {"coordinates": [-85.64066064342488, 41.94273795589999], "type": "Point"}, "id": "5263", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066251995888, 41.94287491125885, -85.64066251995888, 41.94287491125885], "geometry": {"coordinates": [-85.64066251995888, 41.94287491125885], "type": "Point"}, "id": "5264", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066439649288, 41.94301186632354, -85.64066439649288, 41.94301186632354], "geometry": {"coordinates": [-85.64066439649288, 41.94301186632354], "type": "Point"}, "id": "5265", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.6406662607629, 41.94314882118603, -85.6406662607629, 41.94314882118603], "geometry": {"coordinates": [-85.6406662607629, 41.94314882118603], "type": "Point"}, "id": "5266", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066809713516, 41.94328577596355, -85.64066809713516, 41.94328577596355], "geometry": {"coordinates": [-85.64066809713516, 41.94328577596355], "type": "Point"}, "id": "5267", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64066994581242, 41.94342273035434, -85.64066994581242, 41.94342273035434], "geometry": {"coordinates": [-85.64066994581242, 41.94342273035434], "type": "Point"}, "id": "5268", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067183430964, 41.94355968415136, -85.64067183430964, 41.94355968415136], "geometry": {"coordinates": [-85.64067183430964, 41.94355968415136], "type": "Point"}, "id": "5269", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067369234971, 41.9436966378845, -85.64067369234971, 41.9436966378845], "geometry": {"coordinates": [-85.64067369234971, 41.9436966378845], "type": "Point"}, "id": "5270", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067554746057, 41.943833591345616, -85.64067554746057, 41.943833591345616], "geometry": {"coordinates": [-85.64067554746057, 41.943833591345616], "type": "Point"}, "id": "5271", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067657389994, 41.943970548887975, -85.64067657389994, 41.943970548887975], "geometry": {"coordinates": [-85.64067657389994, 41.943970548887975], "type": "Point"}, "id": "5272", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.6406773329686, 41.94410750754785, -85.6406773329686, 41.94410750754785], "geometry": {"coordinates": [-85.6406773329686, 41.94410750754785], "type": "Point"}, "id": "5273", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067809203723, 41.94424446591353, -85.64067809203723, 41.94424446591353], "geometry": {"coordinates": [-85.64067809203723, 41.94424446591353], "type": "Point"}, "id": "5274", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.6406788511059, 41.94438142398501, -85.6406788511059, 41.94438142398501], "geometry": {"coordinates": [-85.6406788511059, 41.94438142398501], "type": "Point"}, "id": "5275", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64067961017454, 41.944518381762286, -85.64067961017454, 41.944518381762286], "geometry": {"coordinates": [-85.64067961017454, 41.944518381762286], "type": "Point"}, "id": "5276", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068036924321, 41.94465533924537, -85.64068036924321, 41.94465533924537], "geometry": {"coordinates": [-85.64068036924321, 41.94465533924537], "type": "Point"}, "id": "5277", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068112831185, 41.944792296434244, -85.64068112831185, 41.944792296434244], "geometry": {"coordinates": [-85.64068112831185, 41.944792296434244], "type": "Point"}, "id": "5278", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068188738052, 41.94492925332893, -85.64068188738052, 41.94492925332893], "geometry": {"coordinates": [-85.64068188738052, 41.94492925332893], "type": "Point"}, "id": "5279", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068264644916, 41.945066209929415, -85.64068264644916, 41.945066209929415], "geometry": {"coordinates": [-85.64068264644916, 41.945066209929415], "type": "Point"}, "id": "5280", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64068792313569, 41.94520307517079, -85.64068792313569, 41.94520307517079], "geometry": {"coordinates": [-85.64068792313569, 41.94520307517079], "type": "Point"}, "id": "5281", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64069713850854, 41.94533986072357, -85.64069713850854, 41.94533986072357], "geometry": {"coordinates": [-85.64069713850854, 41.94533986072357], "type": "Point"}, "id": "5282", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64070635388141, 41.94547664598288, -85.64070635388141, 41.94547664598288], "geometry": {"coordinates": [-85.64070635388141, 41.94547664598288], "type": "Point"}, "id": "5283", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64071556925425, 41.94561343094872, -85.64071556925425, 41.94561343094872], "geometry": {"coordinates": [-85.64071556925425, 41.94561343094872], "type": "Point"}, "id": "5284", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.64072478462712, 41.945750215621096, -85.64072478462712, 41.945750215621096], "geometry": {"coordinates": [-85.64072478462712, 41.945750215621096], "type": "Point"}, "id": "5285", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967073}, "type": "Feature"}, {"bbox": [-85.63339989999999, 41.9437132, -85.63339989999999, 41.9437132], "geometry": {"coordinates": [-85.63339989999999, 41.9437132], "type": "Point"}, "id": "5286", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427772}, "type": "Feature"}, {"bbox": [-85.63325024506118, 41.94379961751096, -85.63325024506118, 41.94379961751096], "geometry": {"coordinates": [-85.63325024506118, 41.94379961751096], "type": "Point"}, "id": "5287", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427772}, "type": "Feature"}, {"bbox": [-85.63310059012237, 41.94388603490479, -85.63310059012237, 41.94388603490479], "geometry": {"coordinates": [-85.63310059012237, 41.94388603490479], "type": "Point"}, "id": "5288", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427772}, "type": "Feature"}, {"bbox": [-85.63295093518354, 41.943972452181484, -85.63295093518354, 41.943972452181484], "geometry": {"coordinates": [-85.63295093518354, 41.943972452181484], "type": "Point"}, "id": "5289", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427772}, "type": "Feature"}, {"bbox": [-85.63096200000001, 41.9619135, -85.63096200000001, 41.9619135], "geometry": {"coordinates": [-85.63096200000001, 41.9619135], "type": "Point"}, "id": "5290", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.630965967461, 41.961779519819444, -85.630965967461, 41.961779519819444], "geometry": {"coordinates": [-85.630965967461, 41.961779519819444], "type": "Point"}, "id": "5291", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63096880854121, 41.9616455227292, -85.63096880854121, 41.9616455227292], "geometry": {"coordinates": [-85.63096880854121, 41.9616455227292], "type": "Point"}, "id": "5292", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309716496214, 41.96151152535717, -85.6309716496214, 41.96151152535717], "geometry": {"coordinates": [-85.6309716496214, 41.96151152535717], "type": "Point"}, "id": "5293", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63096915557483, 41.9613775321448, -85.63096915557483, 41.9613775321448], "geometry": {"coordinates": [-85.63096915557483, 41.9613775321448], "type": "Point"}, "id": "5294", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63096591101113, 41.961243539275465, -85.63096591101113, 41.961243539275465], "geometry": {"coordinates": [-85.63096591101113, 41.961243539275465], "type": "Point"}, "id": "5295", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63096266644743, 41.96110954612436, -85.63096266644743, 41.96110954612436], "geometry": {"coordinates": [-85.63096266644743, 41.96110954612436], "type": "Point"}, "id": "5296", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63095942188374, 41.960975552691494, -85.63095942188374, 41.960975552691494], "geometry": {"coordinates": [-85.63095942188374, 41.960975552691494], "type": "Point"}, "id": "5297", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63095619670415, 41.96084155871825, -85.63095619670415, 41.96084155871825], "geometry": {"coordinates": [-85.63095619670415, 41.96084155871825], "type": "Point"}, "id": "5298", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63095297524009, 41.96070756441367, -85.63095297524009, 41.96070756441367], "geometry": {"coordinates": [-85.63095297524009, 41.96070756441367], "type": "Point"}, "id": "5299", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63095101097271, 41.960573557792195, -85.63095101097271, 41.960573557792195], "geometry": {"coordinates": [-85.63095101097271, 41.960573557792195], "type": "Point"}, "id": "5300", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094959254077, 41.960439545663625, -85.63094959254077, 41.960439545663625], "geometry": {"coordinates": [-85.63094959254077, 41.960439545663625], "type": "Point"}, "id": "5301", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094817410884, 41.96030553325321, -85.63094817410884, 41.96030553325321], "geometry": {"coordinates": [-85.63094817410884, 41.96030553325321], "type": "Point"}, "id": "5302", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094676467966, 41.9601715205088, -85.63094676467966, 41.9601715205088], "geometry": {"coordinates": [-85.63094676467966, 41.9601715205088], "type": "Point"}, "id": "5303", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094537498769, 41.96003750736821, -85.63094537498769, 41.96003750736821], "geometry": {"coordinates": [-85.63094537498769, 41.96003750736821], "type": "Point"}, "id": "5304", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309439852957, 41.95990349394579, -85.6309439852957, 41.95990349394579], "geometry": {"coordinates": [-85.6309439852957, 41.95990349394579], "type": "Point"}, "id": "5305", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094259560374, 41.95976948024152, -85.63094259560374, 41.95976948024152], "geometry": {"coordinates": [-85.63094259560374, 41.95976948024152], "type": "Point"}, "id": "5306", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63094120591177, 41.959635466255406, -85.63094120591177, 41.959635466255406], "geometry": {"coordinates": [-85.63094120591177, 41.959635466255406], "type": "Point"}, "id": "5307", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093981621978, 41.95950145198746, -85.63093981621978, 41.95950145198746], "geometry": {"coordinates": [-85.63093981621978, 41.95950145198746], "type": "Point"}, "id": "5308", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093842652782, 41.95936743743768, -85.63093842652782, 41.95936743743768], "geometry": {"coordinates": [-85.63093842652782, 41.95936743743768], "type": "Point"}, "id": "5309", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093703683583, 41.959233422606054, -85.63093703683583, 41.959233422606054], "geometry": {"coordinates": [-85.63093703683583, 41.959233422606054], "type": "Point"}, "id": "5310", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093564714386, 41.959099407492594, -85.63093564714386, 41.959099407492594], "geometry": {"coordinates": [-85.63093564714386, 41.959099407492594], "type": "Point"}, "id": "5311", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309337625833, 41.958965395880625, -85.6309337625833, 41.958965395880625], "geometry": {"coordinates": [-85.6309337625833, 41.958965395880625], "type": "Point"}, "id": "5312", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63093144673599, 41.95883138728408, -85.63093144673599, 41.95883138728408], "geometry": {"coordinates": [-85.63093144673599, 41.95883138728408], "type": "Point"}, "id": "5313", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092913088866, 41.95869737840573, -85.63092913088866, 41.95869737840573], "geometry": {"coordinates": [-85.63092913088866, 41.95869737840573], "type": "Point"}, "id": "5314", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092681504133, 41.95856336924557, -85.63092681504133, 41.95856336924557], "geometry": {"coordinates": [-85.63092681504133, 41.95856336924557], "type": "Point"}, "id": "5315", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092449919401, 41.9584293598036, -85.63092449919401, 41.9584293598036], "geometry": {"coordinates": [-85.63092449919401, 41.9584293598036], "type": "Point"}, "id": "5316", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092306690285, 41.958295343943846, -85.63092306690285, 41.958295343943846], "geometry": {"coordinates": [-85.63092306690285, 41.958295343943846], "type": "Point"}, "id": "5317", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309220167451, 41.95816132514848, -85.6309220167451, 41.95816132514848], "geometry": {"coordinates": [-85.6309220167451, 41.95816132514848], "type": "Point"}, "id": "5318", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63092096658731, 41.95802730607127, -85.63092096658731, 41.95802730607127], "geometry": {"coordinates": [-85.63092096658731, 41.95802730607127], "type": "Point"}, "id": "5319", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091991642953, 41.957893286712206, -85.63091991642953, 41.957893286712206], "geometry": {"coordinates": [-85.63091991642953, 41.957893286712206], "type": "Point"}, "id": "5320", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091886627174, 41.95775926707132, -85.63091886627174, 41.95775926707132], "geometry": {"coordinates": [-85.63091886627174, 41.95775926707132], "type": "Point"}, "id": "5321", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091781611398, 41.95762524714856, -85.63091781611398, 41.95762524714856], "geometry": {"coordinates": [-85.63091781611398, 41.95762524714856], "type": "Point"}, "id": "5322", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091676595619, 41.95749122694397, -85.63091676595619, 41.95749122694397], "geometry": {"coordinates": [-85.63091676595619, 41.95749122694397], "type": "Point"}, "id": "5323", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091569940977, 41.957357206529764, -85.63091569940977, 41.957357206529764], "geometry": {"coordinates": [-85.63091569940977, 41.957357206529764], "type": "Point"}, "id": "5324", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6309146137076, 41.95722318591812, -85.6309146137076, 41.95722318591812], "geometry": {"coordinates": [-85.6309146137076, 41.95722318591812], "type": "Point"}, "id": "5325", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091352800542, 41.95708916502462, -85.63091352800542, 41.95708916502462], "geometry": {"coordinates": [-85.63091352800542, 41.95708916502462], "type": "Point"}, "id": "5326", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091244230326, 41.956955143849285, -85.63091244230326, 41.956955143849285], "geometry": {"coordinates": [-85.63091244230326, 41.956955143849285], "type": "Point"}, "id": "5327", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091135660106, 41.956821122392114, -85.63091135660106, 41.956821122392114], "geometry": {"coordinates": [-85.63091135660106, 41.956821122392114], "type": "Point"}, "id": "5328", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63091027089888, 41.9566871006531, -85.63091027089888, 41.9566871006531], "geometry": {"coordinates": [-85.63091027089888, 41.9566871006531], "type": "Point"}, "id": "5329", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090918519671, 41.95655307863224, -85.63090918519671, 41.95655307863224], "geometry": {"coordinates": [-85.63090918519671, 41.95655307863224], "type": "Point"}, "id": "5330", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090809949455, 41.95641905632954, -85.63090809949455, 41.95641905632954], "geometry": {"coordinates": [-85.63090809949455, 41.95641905632954], "type": "Point"}, "id": "5331", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090701379238, 41.956285033745, -85.63090701379238, 41.956285033745], "geometry": {"coordinates": [-85.63090701379238, 41.956285033745], "type": "Point"}, "id": "5332", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090592809019, 41.956151010878614, -85.63090592809019, 41.956151010878614], "geometry": {"coordinates": [-85.63090592809019, 41.956151010878614], "type": "Point"}, "id": "5333", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090484238802, 41.95601698773038, -85.63090484238802, 41.95601698773038], "geometry": {"coordinates": [-85.63090484238802, 41.95601698773038], "type": "Point"}, "id": "5334", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090348375285, 41.95588296620891, -85.63090348375285, 41.95588296620891], "geometry": {"coordinates": [-85.63090348375285, 41.95588296620891], "type": "Point"}, "id": "5335", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63090118018503, 41.95574895101343, -85.63090118018503, 41.95574895101343], "geometry": {"coordinates": [-85.63090118018503, 41.95574895101343], "type": "Point"}, "id": "5336", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63089887661722, 41.955614935536154, -85.63089887661722, 41.955614935536154], "geometry": {"coordinates": [-85.63089887661722, 41.955614935536154], "type": "Point"}, "id": "5337", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6308965730494, 41.95548091977708, -85.6308965730494, 41.95548091977708], "geometry": {"coordinates": [-85.6308965730494, 41.95548091977708], "type": "Point"}, "id": "5338", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6308942694816, 41.95534690373619, -85.6308942694816, 41.95534690373619], "geometry": {"coordinates": [-85.6308942694816, 41.95534690373619], "type": "Point"}, "id": "5339", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63089196591378, 41.955212887413495, -85.63089196591378, 41.955212887413495], "geometry": {"coordinates": [-85.63089196591378, 41.955212887413495], "type": "Point"}, "id": "5340", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088966234598, 41.955078870809, -85.63088966234598, 41.955078870809], "geometry": {"coordinates": [-85.63088966234598, 41.955078870809], "type": "Point"}, "id": "5341", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088735877815, 41.9549448539227, -85.63088735877815, 41.9549448539227], "geometry": {"coordinates": [-85.63088735877815, 41.9549448539227], "type": "Point"}, "id": "5342", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088505521036, 41.95481083675459, -85.63088505521036, 41.95481083675459], "geometry": {"coordinates": [-85.63088505521036, 41.95481083675459], "type": "Point"}, "id": "5343", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088275435719, 41.95467681928371, -85.63088275435719, 41.95467681928371], "geometry": {"coordinates": [-85.63088275435719, 41.95467681928371], "type": "Point"}, "id": "5344", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63088061937552, 41.95454280001125, -85.63088061937552, 41.95454280001125], "geometry": {"coordinates": [-85.63088061937552, 41.95454280001125], "type": "Point"}, "id": "5345", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087853050642, 41.95440878005188, -85.63087853050642, 41.95440878005188], "geometry": {"coordinates": [-85.63087853050642, 41.95440878005188], "type": "Point"}, "id": "5346", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087644163731, 41.95427475981071, -85.63087644163731, 41.95427475981071], "geometry": {"coordinates": [-85.63087644163731, 41.95427475981071], "type": "Point"}, "id": "5347", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087435276822, 41.954140739287716, -85.63087435276822, 41.954140739287716], "geometry": {"coordinates": [-85.63087435276822, 41.954140739287716], "type": "Point"}, "id": "5348", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087226389911, 41.95400671848292, -85.63087226389911, 41.95400671848292], "geometry": {"coordinates": [-85.63087226389911, 41.95400671848292], "type": "Point"}, "id": "5349", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63087017503001, 41.953872697396314, -85.63087017503001, 41.953872697396314], "geometry": {"coordinates": [-85.63087017503001, 41.953872697396314], "type": "Point"}, "id": "5350", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086808616092, 41.95373867602789, -85.63086808616092, 41.95373867602789], "geometry": {"coordinates": [-85.63086808616092, 41.95373867602789], "type": "Point"}, "id": "5351", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086660047841, 41.95360465009916, -85.63086660047841, 41.95360465009916], "geometry": {"coordinates": [-85.63086660047841, 41.95360465009916], "type": "Point"}, "id": "5352", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086525159392, 41.95347062291825, -85.63086525159392, 41.95347062291825], "geometry": {"coordinates": [-85.63086525159392, 41.95347062291825], "type": "Point"}, "id": "5353", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086390270941, 41.95333659545552, -85.63086390270941, 41.95333659545552], "geometry": {"coordinates": [-85.63086390270941, 41.95333659545552], "type": "Point"}, "id": "5354", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086255382493, 41.95320256771095, -85.63086255382493, 41.95320256771095], "geometry": {"coordinates": [-85.63086255382493, 41.95320256771095], "type": "Point"}, "id": "5355", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63086120494046, 41.953068539684544, -85.63086120494046, 41.953068539684544], "geometry": {"coordinates": [-85.63086120494046, 41.953068539684544], "type": "Point"}, "id": "5356", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085985605595, 41.952934511376306, -85.63085985605595, 41.952934511376306], "geometry": {"coordinates": [-85.63085985605595, 41.952934511376306], "type": "Point"}, "id": "5357", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085850717147, 41.952800482786245, -85.63085850717147, 41.952800482786245], "geometry": {"coordinates": [-85.63085850717147, 41.952800482786245], "type": "Point"}, "id": "5358", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085715828697, 41.95266645391434, -85.63085715828697, 41.95266645391434], "geometry": {"coordinates": [-85.63085715828697, 41.95266645391434], "type": "Point"}, "id": "5359", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085580940246, 41.95253242476061, -85.63085580940246, 41.95253242476061], "geometry": {"coordinates": [-85.63085580940246, 41.95253242476061], "type": "Point"}, "id": "5360", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6308543380061, 41.95239839608443, -85.6308543380061, 41.95239839608443], "geometry": {"coordinates": [-85.6308543380061, 41.95239839608443], "type": "Point"}, "id": "5361", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085268280116, 41.952264368265745, -85.63085268280116, 41.952264368265745], "geometry": {"coordinates": [-85.63085268280116, 41.952264368265745], "type": "Point"}, "id": "5362", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63085102759624, 41.95213034016523, -85.63085102759624, 41.95213034016523], "geometry": {"coordinates": [-85.63085102759624, 41.95213034016523], "type": "Point"}, "id": "5363", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084937239131, 41.9519963117829, -85.63084937239131, 41.9519963117829], "geometry": {"coordinates": [-85.63084937239131, 41.9519963117829], "type": "Point"}, "id": "5364", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084771718636, 41.95186228311874, -85.63084771718636, 41.95186228311874], "geometry": {"coordinates": [-85.63084771718636, 41.95186228311874], "type": "Point"}, "id": "5365", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084606198143, 41.951728254172764, -85.63084606198143, 41.951728254172764], "geometry": {"coordinates": [-85.63084606198143, 41.951728254172764], "type": "Point"}, "id": "5366", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6308444067765, 41.95159422494496, -85.6308444067765, 41.95159422494496], "geometry": {"coordinates": [-85.6308444067765, 41.95159422494496], "type": "Point"}, "id": "5367", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084275157156, 41.95146019543533, -85.63084275157156, 41.95146019543533], "geometry": {"coordinates": [-85.63084275157156, 41.95146019543533], "type": "Point"}, "id": "5368", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63084109636662, 41.95132616564388, -85.63084109636662, 41.95132616564388], "geometry": {"coordinates": [-85.63084109636662, 41.95132616564388], "type": "Point"}, "id": "5369", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63083946036139, 41.95119213546085, -85.63083946036139, 41.95119213546085], "geometry": {"coordinates": [-85.63083946036139, 41.95119213546085], "type": "Point"}, "id": "5370", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63083834527106, 41.9510581020184, -85.63083834527106, 41.9510581020184], "geometry": {"coordinates": [-85.63083834527106, 41.9510581020184], "type": "Point"}, "id": "5371", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63083723018069, 41.9509240682941, -85.63083723018069, 41.9509240682941], "geometry": {"coordinates": [-85.63083723018069, 41.9509240682941], "type": "Point"}, "id": "5372", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.63083611509036, 41.95079003428797, -85.63083611509036, 41.95079003428797], "geometry": {"coordinates": [-85.63083611509036, 41.95079003428797], "type": "Point"}, "id": "5373", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 290758901}, "type": "Feature"}, {"bbox": [-85.6487523, 41.942523, -85.6487523, 41.942523], "geometry": {"coordinates": [-85.6487523, 41.942523], "type": "Point"}, "id": "5374", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64857092096533, 41.94252638697606, -85.64857092096533, 41.94252638697606], "geometry": {"coordinates": [-85.64857092096533, 41.94252638697606], "type": "Point"}, "id": "5375", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64838951823842, 41.942529087658, -85.64838951823842, 41.942529087658], "geometry": {"coordinates": [-85.64838951823842, 41.942529087658], "type": "Point"}, "id": "5376", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64820811192041, 41.942531617142166, -85.64820811192041, 41.942531617142166], "geometry": {"coordinates": [-85.64820811192041, 41.942531617142166], "type": "Point"}, "id": "5377", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64802668445768, 41.94253314270871, -85.64802668445768, 41.94253314270871], "geometry": {"coordinates": [-85.64802668445768, 41.94253314270871], "type": "Point"}, "id": "5378", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64784525785593, 41.94253472418188, -85.64784525785593, 41.94253472418188], "geometry": {"coordinates": [-85.64784525785593, 41.94253472418188], "type": "Point"}, "id": "5379", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64766383119922, 41.94253630216124, -85.64766383119922, 41.94253630216124], "geometry": {"coordinates": [-85.64766383119922, 41.94253630216124], "type": "Point"}, "id": "5380", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64748240428166, 41.94253786182624, -85.64748240428166, 41.94253786182624], "geometry": {"coordinates": [-85.64748240428166, 41.94253786182624], "type": "Point"}, "id": "5381", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6473009764186, 41.942539358514374, -85.6473009764186, 41.942539358514374], "geometry": {"coordinates": [-85.6473009764186, 41.942539358514374], "type": "Point"}, "id": "5382", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64711955006786, 41.942540955557554, -85.64711955006786, 41.942540955557554], "geometry": {"coordinates": [-85.64711955006786, 41.942540955557554], "type": "Point"}, "id": "5383", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6469381230373, 41.9425425090501, -85.6469381230373, 41.9425425090501], "geometry": {"coordinates": [-85.6469381230373, 41.9425425090501], "type": "Point"}, "id": "5384", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64675669527, 41.94254401471374, -85.64675669527, 41.94254401471374], "geometry": {"coordinates": [-85.64675669527, 41.94254401471374], "type": "Point"}, "id": "5385", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6465752680596, 41.94254555704208, -85.6465752680596, 41.94254555704208], "geometry": {"coordinates": [-85.6465752680596, 41.94254555704208], "type": "Point"}, "id": "5386", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6463938408852, 41.94254710173924, -85.6463938408852, 41.94254710173924], "geometry": {"coordinates": [-85.6463938408852, 41.94254710173924], "type": "Point"}, "id": "5387", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64621241386295, 41.94254865629177, -85.64621241386295, 41.94254865629177], "geometry": {"coordinates": [-85.64621241386295, 41.94254865629177], "type": "Point"}, "id": "5388", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64603098766256, 41.94255026271481, -85.64603098766256, 41.94255026271481], "geometry": {"coordinates": [-85.64603098766256, 41.94255026271481], "type": "Point"}, "id": "5389", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64584956009485, 41.94255178159514, -85.64584956009485, 41.94255178159514], "geometry": {"coordinates": [-85.64584956009485, 41.94255178159514], "type": "Point"}, "id": "5390", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64566813301991, 41.94255333274492, -85.64566813301991, 41.94255333274492], "geometry": {"coordinates": [-85.64566813301991, 41.94255333274492], "type": "Point"}, "id": "5391", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64548670592676, 41.94255488271394, -85.64548670592676, 41.94255488271394], "geometry": {"coordinates": [-85.64548670592676, 41.94255488271394], "type": "Point"}, "id": "5392", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6453052788034, 41.94255643072697, -85.6453052788034, 41.94255643072697], "geometry": {"coordinates": [-85.6453052788034, 41.94255643072697], "type": "Point"}, "id": "5393", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64512385168005, 41.942557978739956, -85.64512385168005, 41.942557978739956], "geometry": {"coordinates": [-85.64512385168005, 41.942557978739956], "type": "Point"}, "id": "5394", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64494242457756, 41.942559528104276, -85.64494242457756, 41.942559528104276], "geometry": {"coordinates": [-85.64494242457756, 41.942559528104276], "type": "Point"}, "id": "5395", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64476099749865, 41.94256107899566, -85.64476099749865, 41.94256107899566], "geometry": {"coordinates": [-85.64476099749865, 41.94256107899566], "type": "Point"}, "id": "5396", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64457957041974, 41.94256262988699, -85.64457957041974, 41.94256262988699], "geometry": {"coordinates": [-85.64457957041974, 41.94256262988699], "type": "Point"}, "id": "5397", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64439814334081, 41.9425641807783, -85.64439814334081, 41.9425641807783], "geometry": {"coordinates": [-85.64439814334081, 41.9425641807783], "type": "Point"}, "id": "5398", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64421675966034, 41.94256740431797, -85.64421675966034, 41.94256740431797], "geometry": {"coordinates": [-85.64421675966034, 41.94256740431797], "type": "Point"}, "id": "5399", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64403534833343, 41.94256943143601, -85.64403534833343, 41.94256943143601], "geometry": {"coordinates": [-85.64403534833343, 41.94256943143601], "type": "Point"}, "id": "5400", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64385391568098, 41.94257056559267, -85.64385391568098, 41.94257056559267], "geometry": {"coordinates": [-85.64385391568098, 41.94257056559267], "type": "Point"}, "id": "5401", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64367248329097, 41.94257172275567, -85.64367248329097, 41.94257172275567], "geometry": {"coordinates": [-85.64367248329097, 41.94257172275567], "type": "Point"}, "id": "5402", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64349105090092, 41.94257287991865, -85.64349105090092, 41.94257287991865], "geometry": {"coordinates": [-85.64349105090092, 41.94257287991865], "type": "Point"}, "id": "5403", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6433096185109, 41.942574037081606, -85.6433096185109, 41.942574037081606], "geometry": {"coordinates": [-85.6433096185109, 41.942574037081606], "type": "Point"}, "id": "5404", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64312818651155, 41.94257522679049, -85.64312818651155, 41.94257522679049], "geometry": {"coordinates": [-85.64312818651155, 41.94257522679049], "type": "Point"}, "id": "5405", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64294675885694, 41.94257673203509, -85.64294675885694, 41.94257673203509], "geometry": {"coordinates": [-85.64294675885694, 41.94257673203509], "type": "Point"}, "id": "5406", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64276532926938, 41.94257811103528, -85.64276532926938, 41.94257811103528], "geometry": {"coordinates": [-85.64276532926938, 41.94257811103528], "type": "Point"}, "id": "5407", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6425838996818, 41.94257949003545, -85.6425838996818, 41.94257949003545], "geometry": {"coordinates": [-85.6425838996818, 41.94257949003545], "type": "Point"}, "id": "5408", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64240247009425, 41.94258086903559, -85.64240247009425, 41.94258086903559], "geometry": {"coordinates": [-85.64240247009425, 41.94258086903559], "type": "Point"}, "id": "5409", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64222104559336, 41.94258254858869, -85.64222104559336, 41.94258254858869], "geometry": {"coordinates": [-85.64222104559336, 41.94258254858869], "type": "Point"}, "id": "5410", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64203962683008, 41.94258456715632, -85.64203962683008, 41.94258456715632], "geometry": {"coordinates": [-85.64203962683008, 41.94258456715632], "type": "Point"}, "id": "5411", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64185820844484, 41.94258660365491, -85.64185820844484, 41.94258660365491], "geometry": {"coordinates": [-85.64185820844484, 41.94258660365491], "type": "Point"}, "id": "5412", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64167679379015, 41.942588817108465, -85.64167679379015, 41.942588817108465], "geometry": {"coordinates": [-85.64167679379015, 41.942588817108465], "type": "Point"}, "id": "5413", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6414953778003, 41.942590969132056, -85.6414953778003, 41.942590969132056], "geometry": {"coordinates": [-85.6414953778003, 41.942590969132056], "type": "Point"}, "id": "5414", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64131396175847, 41.9425931187656, -85.64131396175847, 41.9425931187656], "geometry": {"coordinates": [-85.64131396175847, 41.9425931187656], "type": "Point"}, "id": "5415", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64113254571666, 41.94259526839907, -85.64113254571666, 41.94259526839907], "geometry": {"coordinates": [-85.64113254571666, 41.94259526839907], "type": "Point"}, "id": "5416", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64095113087389, 41.94259747322002, -85.64095113087389, 41.94259747322002], "geometry": {"coordinates": [-85.64095113087389, 41.94259747322002], "type": "Point"}, "id": "5417", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64076971567539, 41.94259966187525, -85.64076971567539, 41.94259966187525], "geometry": {"coordinates": [-85.64076971567539, 41.94259966187525], "type": "Point"}, "id": "5418", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64058829491235, 41.94260153786463, -85.64058829491235, 41.94260153786463], "geometry": {"coordinates": [-85.64058829491235, 41.94260153786463], "type": "Point"}, "id": "5419", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64040686539467, 41.942602921942324, -85.64040686539467, 41.942602921942324], "geometry": {"coordinates": [-85.64040686539467, 41.942602921942324], "type": "Point"}, "id": "5420", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6402254355328, 41.942604280703286, -85.6402254355328, 41.942604280703286], "geometry": {"coordinates": [-85.6402254355328, 41.942604280703286], "type": "Point"}, "id": "5421", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.64004400548929, 41.942605626105966, -85.64004400548929, 41.942605626105966], "geometry": {"coordinates": [-85.64004400548929, 41.942605626105966], "type": "Point"}, "id": "5422", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63986257545965, 41.94260697254087, -85.63986257545965, 41.94260697254087], "geometry": {"coordinates": [-85.63986257545965, 41.94260697254087], "type": "Point"}, "id": "5423", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63968114543752, 41.942608319537044, -85.63968114543752, 41.942608319537044], "geometry": {"coordinates": [-85.63968114543752, 41.942608319537044], "type": "Point"}, "id": "5424", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6394997154154, 41.94260966653319, -85.6394997154154, 41.94260966653319], "geometry": {"coordinates": [-85.6394997154154, 41.94260966653319], "type": "Point"}, "id": "5425", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63931828034676, 41.942610514704064, -85.63931828034676, 41.942610514704064], "geometry": {"coordinates": [-85.63931828034676, 41.942610514704064], "type": "Point"}, "id": "5426", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63913684361775, 41.94261119875371, -85.63913684361775, 41.94261119875371], "geometry": {"coordinates": [-85.63913684361775, 41.94261119875371], "type": "Point"}, "id": "5427", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63895540688873, 41.94261188280334, -85.63895540688873, 41.94261188280334], "geometry": {"coordinates": [-85.63895540688873, 41.94261188280334], "type": "Point"}, "id": "5428", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63877397015969, 41.94261256685298, -85.63877397015969, 41.94261256685298], "geometry": {"coordinates": [-85.63877397015969, 41.94261256685298], "type": "Point"}, "id": "5429", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6385925334307, 41.942613250902596, -85.6385925334307, 41.942613250902596], "geometry": {"coordinates": [-85.6385925334307, 41.942613250902596], "type": "Point"}, "id": "5430", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63841109670166, 41.94261393495222, -85.63841109670166, 41.94261393495222], "geometry": {"coordinates": [-85.63841109670166, 41.94261393495222], "type": "Point"}, "id": "5431", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63822966010349, 41.94261463302685, -85.63822966010349, 41.94261463302685], "geometry": {"coordinates": [-85.63822966010349, 41.94261463302685], "type": "Point"}, "id": "5432", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63804823351103, 41.94261618752708, -85.63804823351103, 41.94261618752708], "geometry": {"coordinates": [-85.63804823351103, 41.94261618752708], "type": "Point"}, "id": "5433", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6378668104283, 41.9426179784756, -85.6378668104283, 41.9426179784756], "geometry": {"coordinates": [-85.6378668104283, 41.9426179784756], "type": "Point"}, "id": "5434", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63768538734558, 41.94261976942408, -85.63768538734558, 41.94261976942408], "geometry": {"coordinates": [-85.63768538734558, 41.94261976942408], "type": "Point"}, "id": "5435", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63750396022165, 41.942621041736686, -85.63750396022165, 41.942621041736686], "geometry": {"coordinates": [-85.63750396022165, 41.942621041736686], "type": "Point"}, "id": "5436", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6373225214178, 41.94262081507985, -85.6373225214178, 41.94262081507985], "geometry": {"coordinates": [-85.6373225214178, 41.94262081507985], "type": "Point"}, "id": "5437", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63714109680636, 41.94262188953441, -85.63714109680636, 41.94262188953441], "geometry": {"coordinates": [-85.63714109680636, 41.94262188953441], "type": "Point"}, "id": "5438", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63695975109033, 41.942625777886185, -85.63695975109033, 41.942625777886185], "geometry": {"coordinates": [-85.63695975109033, 41.942625777886185], "type": "Point"}, "id": "5439", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6367785072292, 41.94263203427569, -85.6367785072292, 41.94263203427569], "geometry": {"coordinates": [-85.6367785072292, 41.94263203427569], "type": "Point"}, "id": "5440", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63659740563138, 41.9426398588817, -85.63659740563138, 41.9426398588817], "geometry": {"coordinates": [-85.63659740563138, 41.9426398588817], "type": "Point"}, "id": "5441", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63641709192342, 41.942654383423445, -85.63641709192342, 41.942654383423445], "geometry": {"coordinates": [-85.63641709192342, 41.942654383423445], "type": "Point"}, "id": "5442", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63623832191145, 41.942677239557625, -85.63623832191145, 41.942677239557625], "geometry": {"coordinates": [-85.63623832191145, 41.942677239557625], "type": "Point"}, "id": "5443", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63606195546883, 41.94270881266494, -85.63606195546883, 41.94270881266494], "geometry": {"coordinates": [-85.63606195546883, 41.94270881266494], "type": "Point"}, "id": "5444", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63588742484508, 41.94274566650965, -85.63588742484508, 41.94274566650965], "geometry": {"coordinates": [-85.63588742484508, 41.94274566650965], "type": "Point"}, "id": "5445", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63571629769817, 41.94279027861294, -85.63571629769817, 41.94279027861294], "geometry": {"coordinates": [-85.63571629769817, 41.94279027861294], "type": "Point"}, "id": "5446", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63554859058894, 41.94284175918015, -85.63554859058894, 41.94284175918015], "geometry": {"coordinates": [-85.63554859058894, 41.94284175918015], "type": "Point"}, "id": "5447", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63538084638586, 41.94289317763999, -85.63538084638586, 41.94289317763999], "geometry": {"coordinates": [-85.63538084638586, 41.94289317763999], "type": "Point"}, "id": "5448", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63521188894877, 41.942942367779345, -85.63521188894877, 41.942942367779345], "geometry": {"coordinates": [-85.63521188894877, 41.942942367779345], "type": "Point"}, "id": "5449", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.6350420161682, 41.942989771415526, -85.6350420161682, 41.942989771415526], "geometry": {"coordinates": [-85.6350420161682, 41.942989771415526], "type": "Point"}, "id": "5450", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41785752}, "type": "Feature"}, {"bbox": [-85.63157779999999, 41.9443959, -85.63157779999999, 41.9443959], "geometry": {"coordinates": [-85.63157779999999, 41.9443959], "type": "Point"}, "id": "5451", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150836}, "type": "Feature"}, {"bbox": [-85.6317588845653, 41.94436855063051, -85.6317588845653, 41.94436855063051], "geometry": {"coordinates": [-85.6317588845653, 41.94436855063051], "type": "Point"}, "id": "5452", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150836}, "type": "Feature"}, {"bbox": [-85.63193939044834, 41.94433916666048, -85.63193939044834, 41.94433916666048], "geometry": {"coordinates": [-85.63193939044834, 41.94433916666048], "type": "Point"}, "id": "5453", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150836}, "type": "Feature"}, {"bbox": [-85.6321198518884, 41.94430962641985, -85.6321198518884, 41.94430962641985], "geometry": {"coordinates": [-85.6321198518884, 41.94430962641985], "type": "Point"}, "id": "5454", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 134150836}, "type": "Feature"}, {"bbox": [-85.633274, 41.951159, -85.633274, 41.951159], "geometry": {"coordinates": [-85.633274, 41.951159], "type": "Point"}, "id": "5455", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63347571428572, 41.95115885714285, -85.63347571428572, 41.95115885714285], "geometry": {"coordinates": [-85.63347571428572, 41.95115885714285], "type": "Point"}, "id": "5456", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63367742857143, 41.95115871428572, -85.63367742857143, 41.95115871428572], "geometry": {"coordinates": [-85.63367742857143, 41.95115871428572], "type": "Point"}, "id": "5457", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63387914285714, 41.95115857142857, -85.63387914285714, 41.95115857142857], "geometry": {"coordinates": [-85.63387914285714, 41.95115857142857], "type": "Point"}, "id": "5458", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63408085714285, 41.951158428571425, -85.63408085714285, 41.951158428571425], "geometry": {"coordinates": [-85.63408085714285, 41.951158428571425], "type": "Point"}, "id": "5459", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.63428257142859, 41.951158285714286, -85.63428257142859, 41.951158285714286], "geometry": {"coordinates": [-85.63428257142859, 41.951158285714286], "type": "Point"}, "id": "5460", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.6344842857143, 41.951158142857146, -85.6344842857143, 41.951158142857146], "geometry": {"coordinates": [-85.6344842857143, 41.951158142857146], "type": "Point"}, "id": "5461", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 772835855}, "type": "Feature"}, {"bbox": [-85.6453514, 41.941241899999994, -85.6453514, 41.941241899999994], "geometry": {"coordinates": [-85.6453514, 41.941241899999994], "type": "Point"}, "id": "5462", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64534745258399, 41.94110572833148, -85.64534745258399, 41.94110572833148], "geometry": {"coordinates": [-85.64534745258399, 41.94110572833148], "type": "Point"}, "id": "5463", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.645343505168, 41.94096955637215, -85.645343505168, 41.94096955637215], "geometry": {"coordinates": [-85.645343505168, 41.94096955637215], "type": "Point"}, "id": "5464", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64533955775198, 41.94083338412204, -85.64533955775198, 41.94083338412204], "geometry": {"coordinates": [-85.64533955775198, 41.94083338412204], "type": "Point"}, "id": "5465", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64528734785887, 41.94071292866163, -85.64528734785887, 41.94071292866163], "geometry": {"coordinates": [-85.64528734785887, 41.94071292866163], "type": "Point"}, "id": "5466", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64512000487534, 41.940687256645695, -85.64512000487534, 41.940687256645695], "geometry": {"coordinates": [-85.64512000487534, 41.940687256645695], "type": "Point"}, "id": "5467", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64493700312897, 41.940691949517266, -85.64493700312897, 41.940691949517266], "geometry": {"coordinates": [-85.64493700312897, 41.940691949517266], "type": "Point"}, "id": "5468", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64475400138261, 41.940696642388495, -85.64475400138261, 41.940696642388495], "geometry": {"coordinates": [-85.64475400138261, 41.940696642388495], "type": "Point"}, "id": "5469", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64457099963624, 41.94070133525938, -85.64457099963624, 41.94070133525938], "geometry": {"coordinates": [-85.64457099963624, 41.94070133525938], "type": "Point"}, "id": "5470", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.64438799788988, 41.94070602812992, -85.64438799788988, 41.94070602812992], "geometry": {"coordinates": [-85.64438799788988, 41.94070602812992], "type": "Point"}, "id": "5471", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968031}, "type": "Feature"}, {"bbox": [-85.636834, 41.934223, -85.636834, 41.934223], "geometry": {"coordinates": [-85.636834, 41.934223], "type": "Point"}, "id": "5472", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63676436169636, 41.93434978615311, -85.63676436169636, 41.93434978615311], "geometry": {"coordinates": [-85.63676436169636, 41.93434978615311], "type": "Point"}, "id": "5473", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63671619023563, 41.93448288262979, -85.63671619023563, 41.93448288262979], "geometry": {"coordinates": [-85.63671619023563, 41.93448288262979], "type": "Point"}, "id": "5474", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63666801877487, 41.93461597882872, -85.63666801877487, 41.93461597882872], "geometry": {"coordinates": [-85.63666801877487, 41.93461597882872], "type": "Point"}, "id": "5475", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63661984731412, 41.9347490747499, -85.63661984731412, 41.9347490747499], "geometry": {"coordinates": [-85.63661984731412, 41.9347490747499], "type": "Point"}, "id": "5476", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63657167585336, 41.934882170393344, -85.63657167585336, 41.934882170393344], "geometry": {"coordinates": [-85.63657167585336, 41.934882170393344], "type": "Point"}, "id": "5477", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63652350439261, 41.93501526575903, -85.63652350439261, 41.93501526575903], "geometry": {"coordinates": [-85.63652350439261, 41.93501526575903], "type": "Point"}, "id": "5478", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63651233930932, 41.9351523303343, -85.63651233930932, 41.9351523303343], "geometry": {"coordinates": [-85.63651233930932, 41.9351523303343], "type": "Point"}, "id": "5479", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63650800310255, 41.93529012711252, -85.63650800310255, 41.93529012711252], "geometry": {"coordinates": [-85.63650800310255, 41.93529012711252], "type": "Point"}, "id": "5480", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63650366689576, 41.935427923593025, -85.63650366689576, 41.935427923593025], "geometry": {"coordinates": [-85.63650366689576, 41.935427923593025], "type": "Point"}, "id": "5481", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63649933068896, 41.93556571977581, -85.63649933068896, 41.93556571977581], "geometry": {"coordinates": [-85.63649933068896, 41.93556571977581], "type": "Point"}, "id": "5482", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63649499448219, 41.93570351566088, -85.63649499448219, 41.93570351566088], "geometry": {"coordinates": [-85.63649499448219, 41.93570351566088], "type": "Point"}, "id": "5483", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.6364906582754, 41.935841311248225, -85.6364906582754, 41.935841311248225], "geometry": {"coordinates": [-85.6364906582754, 41.935841311248225], "type": "Point"}, "id": "5484", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.6364863220686, 41.93597910653786, -85.6364863220686, 41.93597910653786], "geometry": {"coordinates": [-85.6364863220686, 41.93597910653786], "type": "Point"}, "id": "5485", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.6364819858618, 41.93611690152977, -85.6364819858618, 41.93611690152977], "geometry": {"coordinates": [-85.6364819858618, 41.93611690152977], "type": "Point"}, "id": "5486", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63647764965503, 41.93625469622396, -85.63647764965503, 41.93625469622396], "geometry": {"coordinates": [-85.63647764965503, 41.93625469622396], "type": "Point"}, "id": "5487", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63647331344825, 41.936392490620435, -85.63647331344825, 41.936392490620435], "geometry": {"coordinates": [-85.63647331344825, 41.936392490620435], "type": "Point"}, "id": "5488", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63646897724145, 41.93653028471919, -85.63646897724145, 41.93653028471919], "geometry": {"coordinates": [-85.63646897724145, 41.93653028471919], "type": "Point"}, "id": "5489", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63646464103468, 41.93666807852022, -85.63646464103468, 41.93666807852022], "geometry": {"coordinates": [-85.63646464103468, 41.93666807852022], "type": "Point"}, "id": "5490", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63646030482789, 41.93680587202354, -85.63646030482789, 41.93680587202354], "geometry": {"coordinates": [-85.63646030482789, 41.93680587202354], "type": "Point"}, "id": "5491", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63645596862109, 41.93694366522913, -85.63645596862109, 41.93694366522913], "geometry": {"coordinates": [-85.63645596862109, 41.93694366522913], "type": "Point"}, "id": "5492", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63644836896856, 41.93708133332525, -85.63644836896856, 41.93708133332525], "geometry": {"coordinates": [-85.63644836896856, 41.93708133332525], "type": "Point"}, "id": "5493", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63643368534748, 41.93721873019564, -85.63643368534748, 41.93721873019564], "geometry": {"coordinates": [-85.63643368534748, 41.93721873019564], "type": "Point"}, "id": "5494", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63641900172642, 41.93735612677002, -85.63641900172642, 41.93735612677002], "geometry": {"coordinates": [-85.63641900172642, 41.93735612677002], "type": "Point"}, "id": "5495", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63640431810535, 41.93749352304838, -85.63640431810535, 41.93749352304838], "geometry": {"coordinates": [-85.63640431810535, 41.93749352304838], "type": "Point"}, "id": "5496", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63638963448429, 41.93763091903073, -85.63638963448429, 41.93763091903073], "geometry": {"coordinates": [-85.63638963448429, 41.93763091903073], "type": "Point"}, "id": "5497", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63637495086321, 41.93776831471707, -85.63637495086321, 41.93776831471707], "geometry": {"coordinates": [-85.63637495086321, 41.93776831471707], "type": "Point"}, "id": "5498", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63636026724213, 41.937905710107394, -85.63636026724213, 41.937905710107394], "geometry": {"coordinates": [-85.63636026724213, 41.937905710107394], "type": "Point"}, "id": "5499", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.63634558362108, 41.9380431052017, -85.63634558362108, 41.9380431052017], "geometry": {"coordinates": [-85.63634558362108, 41.9380431052017], "type": "Point"}, "id": "5500", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965836}, "type": "Feature"}, {"bbox": [-85.6593087, 41.9255834, -85.6593087, 41.9255834], "geometry": {"coordinates": [-85.6593087, 41.9255834], "type": "Point"}, "id": "5501", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41260271}, "type": "Feature"}, {"bbox": [-85.65910700645904, 41.92562809182291, -85.65910700645904, 41.92562809182291], "geometry": {"coordinates": [-85.65910700645904, 41.92562809182291], "type": "Point"}, "id": "5502", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41260271}, "type": "Feature"}, {"bbox": [-85.65890531291808, 41.925672783614495, -85.65890531291808, 41.925672783614495], "geometry": {"coordinates": [-85.65890531291808, 41.925672783614495], "type": "Point"}, "id": "5503", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41260271}, "type": "Feature"}, {"bbox": [-85.65870510365905, 41.92572101816607, -85.65870510365905, 41.92572101816607], "geometry": {"coordinates": [-85.65870510365905, 41.92572101816607], "type": "Point"}, "id": "5504", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41260271}, "type": "Feature"}, {"bbox": [-85.65850500182954, 41.925769509101464, -85.65850500182954, 41.925769509101464], "geometry": {"coordinates": [-85.65850500182954, 41.925769509101464], "type": "Point"}, "id": "5505", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 41260271}, "type": "Feature"}, {"bbox": [-85.63185199999998, 41.94294649999999, -85.63185199999998, 41.94294649999999], "geometry": {"coordinates": [-85.63185199999998, 41.94294649999999], "type": "Point"}, "id": "5506", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 134150830}, "type": "Feature"}, {"bbox": [-85.6319811, 41.9431003501856, -85.6319811, 41.9431003501856], "geometry": {"coordinates": [-85.6319811, 41.9431003501856], "type": "Point"}, "id": "5507", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 134150830}, "type": "Feature"}, {"bbox": [-85.6412224, 41.931841000000006, -85.6412224, 41.931841000000006], "geometry": {"coordinates": [-85.6412224, 41.931841000000006], "type": "Point"}, "id": "5508", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129071097106, 41.93196507720941, -85.64129071097106, 41.93196507720941], "geometry": {"coordinates": [-85.64129071097106, 41.93196507720941], "type": "Point"}, "id": "5509", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129085498445, 41.9320999823742, -85.64129085498445, 41.9320999823742], "geometry": {"coordinates": [-85.64129085498445, 41.9320999823742], "type": "Point"}, "id": "5510", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129099899783, 41.93223488725365, -85.64129099899783, 41.93223488725365], "geometry": {"coordinates": [-85.64129099899783, 41.93223488725365], "type": "Point"}, "id": "5511", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412911430112, 41.93236979184779, -85.6412911430112, 41.93236979184779], "geometry": {"coordinates": [-85.6412911430112, 41.93236979184779], "type": "Point"}, "id": "5512", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129128702461, 41.932504696156606, -85.64129128702461, 41.932504696156606], "geometry": {"coordinates": [-85.64129128702461, 41.932504696156606], "type": "Point"}, "id": "5513", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64129143103798, 41.93263960018009, -85.64129143103798, 41.93263960018009], "geometry": {"coordinates": [-85.64129143103798, 41.93263960018009], "type": "Point"}, "id": "5514", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64128773378589, 41.93277444808871, -85.64128773378589, 41.93277444808871], "geometry": {"coordinates": [-85.64128773378589, 41.93277444808871], "type": "Point"}, "id": "5515", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64128051837342, 41.93290924475173, -85.64128051837342, 41.93290924475173], "geometry": {"coordinates": [-85.64128051837342, 41.93290924475173], "type": "Point"}, "id": "5516", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64127330445305, 41.9330440411741, -85.64127330445305, 41.9330440411741], "geometry": {"coordinates": [-85.64127330445305, 41.9330440411741], "type": "Point"}, "id": "5517", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412660905327, 41.933178837311615, -85.6412660905327, 41.933178837311615], "geometry": {"coordinates": [-85.6412660905327, 41.933178837311615], "type": "Point"}, "id": "5518", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64125887661233, 41.933313633164246, -85.64125887661233, 41.933313633164246], "geometry": {"coordinates": [-85.64125887661233, 41.933313633164246], "type": "Point"}, "id": "5519", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64125166269197, 41.93344842873201, -85.64125166269197, 41.93344842873201], "geometry": {"coordinates": [-85.64125166269197, 41.93344842873201], "type": "Point"}, "id": "5520", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412444487716, 41.93358322401489, -85.6412444487716, 41.93358322401489], "geometry": {"coordinates": [-85.6412444487716, 41.93358322401489], "type": "Point"}, "id": "5521", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64123723485123, 41.93371801901291, -85.64123723485123, 41.93371801901291], "geometry": {"coordinates": [-85.64123723485123, 41.93371801901291], "type": "Point"}, "id": "5522", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64123002093086, 41.93385281372605, -85.64123002093086, 41.93385281372605], "geometry": {"coordinates": [-85.64123002093086, 41.93385281372605], "type": "Point"}, "id": "5523", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412247675445, 41.93398763901246, -85.6412247675445, 41.93398763901246], "geometry": {"coordinates": [-85.6412247675445, 41.93398763901246], "type": "Point"}, "id": "5524", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412243110093, 41.9341225395145, -85.6412243110093, 41.9341225395145], "geometry": {"coordinates": [-85.6412243110093, 41.9341225395145], "type": "Point"}, "id": "5525", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122385447408, 41.93425743973121, -85.64122385447408, 41.93425743973121], "geometry": {"coordinates": [-85.64122385447408, 41.93425743973121], "type": "Point"}, "id": "5526", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122339793886, 41.934392339662615, -85.64122339793886, 41.934392339662615], "geometry": {"coordinates": [-85.64122339793886, 41.934392339662615], "type": "Point"}, "id": "5527", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122294140365, 41.93452723930869, -85.64122294140365, 41.93452723930869], "geometry": {"coordinates": [-85.64122294140365, 41.93452723930869], "type": "Point"}, "id": "5528", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122248486844, 41.93466213866944, -85.64122248486844, 41.93466213866944], "geometry": {"coordinates": [-85.64122248486844, 41.93466213866944], "type": "Point"}, "id": "5529", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122202833323, 41.934797037744865, -85.64122202833323, 41.934797037744865], "geometry": {"coordinates": [-85.64122202833323, 41.934797037744865], "type": "Point"}, "id": "5530", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64122157179801, 41.934931936534966, -85.64122157179801, 41.934931936534966], "geometry": {"coordinates": [-85.64122157179801, 41.934931936534966], "type": "Point"}, "id": "5531", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6412183154342, 41.93506680401006, -85.6412183154342, 41.93506680401006], "geometry": {"coordinates": [-85.6412183154342, 41.93506680401006], "type": "Point"}, "id": "5532", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64121336977598, 41.93520165247807, -85.64121336977598, 41.93520165247807], "geometry": {"coordinates": [-85.64121336977598, 41.93520165247807], "type": "Point"}, "id": "5533", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64120842411778, 41.93533650066096, -85.64120842411778, 41.93533650066096], "geometry": {"coordinates": [-85.64120842411778, 41.93533650066096], "type": "Point"}, "id": "5534", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64120347845957, 41.93547134855872, -85.64120347845957, 41.93547134855872], "geometry": {"coordinates": [-85.64120347845957, 41.93547134855872], "type": "Point"}, "id": "5535", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64119853280137, 41.935606196171385, -85.64119853280137, 41.935606196171385], "geometry": {"coordinates": [-85.64119853280137, 41.935606196171385], "type": "Point"}, "id": "5536", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64119358714315, 41.93574104349892, -85.64119358714315, 41.93574104349892], "geometry": {"coordinates": [-85.64119358714315, 41.93574104349892], "type": "Point"}, "id": "5537", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64118864148494, 41.935875890541354, -85.64118864148494, 41.935875890541354], "geometry": {"coordinates": [-85.64118864148494, 41.935875890541354], "type": "Point"}, "id": "5538", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64118369582674, 41.93601073729867, -85.64118369582674, 41.93601073729867], "geometry": {"coordinates": [-85.64118369582674, 41.93601073729867], "type": "Point"}, "id": "5539", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64117875016854, 41.93614558377086, -85.64117875016854, 41.93614558377086], "geometry": {"coordinates": [-85.64117875016854, 41.93614558377086], "type": "Point"}, "id": "5540", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64117380451033, 41.93628042995796, -85.64117380451033, 41.93628042995796], "geometry": {"coordinates": [-85.64117380451033, 41.93628042995796], "type": "Point"}, "id": "5541", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64116885885211, 41.93641527585992, -85.64116885885211, 41.93641527585992], "geometry": {"coordinates": [-85.64116885885211, 41.93641527585992], "type": "Point"}, "id": "5542", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64116391319389, 41.93655012147678, -85.64116391319389, 41.93655012147678], "geometry": {"coordinates": [-85.64116391319389, 41.93655012147678], "type": "Point"}, "id": "5543", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6411589675357, 41.936684966808514, -85.6411589675357, 41.936684966808514], "geometry": {"coordinates": [-85.6411589675357, 41.936684966808514], "type": "Point"}, "id": "5544", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6411540218775, 41.936819811855145, -85.6411540218775, 41.936819811855145], "geometry": {"coordinates": [-85.6411540218775, 41.936819811855145], "type": "Point"}, "id": "5545", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64114907621928, 41.936954656616656, -85.64114907621928, 41.936954656616656], "geometry": {"coordinates": [-85.64114907621928, 41.936954656616656], "type": "Point"}, "id": "5546", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64114479455638, 41.93708951341209, -85.64114479455638, 41.93708951341209], "geometry": {"coordinates": [-85.64114479455638, 41.93708951341209], "type": "Point"}, "id": "5547", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64114069757261, 41.93722437334869, -85.64114069757261, 41.93722437334869], "geometry": {"coordinates": [-85.64114069757261, 41.93722437334869], "type": "Point"}, "id": "5548", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64113660058882, 41.937359233000095, -85.64113660058882, 41.937359233000095], "geometry": {"coordinates": [-85.64113660058882, 41.937359233000095], "type": "Point"}, "id": "5549", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64113250360506, 41.93749409236633, -85.64113250360506, 41.93749409236633], "geometry": {"coordinates": [-85.64113250360506, 41.93749409236633], "type": "Point"}, "id": "5550", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64112840662128, 41.93762895144738, -85.64112840662128, 41.93762895144738], "geometry": {"coordinates": [-85.64112840662128, 41.93762895144738], "type": "Point"}, "id": "5551", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64112430963749, 41.93776381024324, -85.64112430963749, 41.93776381024324], "geometry": {"coordinates": [-85.64112430963749, 41.93776381024324], "type": "Point"}, "id": "5552", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.6411202126537, 41.937898668753924, -85.6411202126537, 41.937898668753924], "geometry": {"coordinates": [-85.6411202126537, 41.937898668753924], "type": "Point"}, "id": "5553", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64111611566994, 41.938033526979424, -85.64111611566994, 41.938033526979424], "geometry": {"coordinates": [-85.64111611566994, 41.938033526979424], "type": "Point"}, "id": "5554", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64111201868616, 41.93816838491974, -85.64111201868616, 41.93816838491974], "geometry": {"coordinates": [-85.64111201868616, 41.93816838491974], "type": "Point"}, "id": "5555", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.641110713122, 41.93830327343712, -85.641110713122, 41.93830327343712], "geometry": {"coordinates": [-85.641110713122, 41.93830327343712], "type": "Point"}, "id": "5556", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110942034773, 41.938438161810595, -85.64110942034773, 41.938438161810595], "geometry": {"coordinates": [-85.64110942034773, 41.938438161810595], "type": "Point"}, "id": "5557", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110812757343, 41.93857304989874, -85.64110812757343, 41.93857304989874], "geometry": {"coordinates": [-85.64110812757343, 41.93857304989874], "type": "Point"}, "id": "5558", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110683479916, 41.93870793770159, -85.64110683479916, 41.93870793770159], "geometry": {"coordinates": [-85.64110683479916, 41.93870793770159], "type": "Point"}, "id": "5559", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110554202486, 41.938842825219105, -85.64110554202486, 41.938842825219105], "geometry": {"coordinates": [-85.64110554202486, 41.938842825219105], "type": "Point"}, "id": "5560", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110424925059, 41.93897771245132, -85.64110424925059, 41.93897771245132], "geometry": {"coordinates": [-85.64110424925059, 41.93897771245132], "type": "Point"}, "id": "5561", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110295647629, 41.93911259939821, -85.64110295647629, 41.93911259939821], "geometry": {"coordinates": [-85.64110295647629, 41.93911259939821], "type": "Point"}, "id": "5562", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110166370202, 41.93924748605979, -85.64110166370202, 41.93924748605979], "geometry": {"coordinates": [-85.64110166370202, 41.93924748605979], "type": "Point"}, "id": "5563", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64110037092773, 41.93938237243605, -85.64110037092773, 41.93938237243605], "geometry": {"coordinates": [-85.64110037092773, 41.93938237243605], "type": "Point"}, "id": "5564", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64109907815345, 41.93951725852699, -85.64109907815345, 41.93951725852699], "geometry": {"coordinates": [-85.64109907815345, 41.93951725852699], "type": "Point"}, "id": "5565", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64109778537916, 41.93965214433261, -85.64109778537916, 41.93965214433261], "geometry": {"coordinates": [-85.64109778537916, 41.93965214433261], "type": "Point"}, "id": "5566", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64109649260487, 41.93978702985293, -85.64109649260487, 41.93978702985293], "geometry": {"coordinates": [-85.64109649260487, 41.93978702985293], "type": "Point"}, "id": "5567", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.64109519983059, 41.939921915087936, -85.64109519983059, 41.939921915087936], "geometry": {"coordinates": [-85.64109519983059, 41.939921915087936], "type": "Point"}, "id": "5568", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965747}, "type": "Feature"}, {"bbox": [-85.63424869999999, 41.945448899999995, -85.63424869999999, 41.945448899999995], "geometry": {"coordinates": [-85.63424869999999, 41.945448899999995], "type": "Point"}, "id": "5569", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427780}, "type": "Feature"}, {"bbox": [-85.6263285, 41.928331, -85.6263285, 41.928331], "geometry": {"coordinates": [-85.6263285, 41.928331], "type": "Point"}, "id": "5570", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62651316105969, 41.928330049988894, -85.62651316105969, 41.928330049988894], "geometry": {"coordinates": [-85.62651316105969, 41.928330049988894], "type": "Point"}, "id": "5571", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62669782211938, 41.928329099977766, -85.62669782211938, 41.928329099977766], "geometry": {"coordinates": [-85.62669782211938, 41.928329099977766], "type": "Point"}, "id": "5572", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62688248317907, 41.928328149966624, -85.62688248317907, 41.928328149966624], "geometry": {"coordinates": [-85.62688248317907, 41.928328149966624], "type": "Point"}, "id": "5573", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62706714423875, 41.92832719995548, -85.62706714423875, 41.92832719995548], "geometry": {"coordinates": [-85.62706714423875, 41.92832719995548], "type": "Point"}, "id": "5574", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62725180529844, 41.92832624994432, -85.62725180529844, 41.92832624994432], "geometry": {"coordinates": [-85.62725180529844, 41.92832624994432], "type": "Point"}, "id": "5575", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62743646635815, 41.928325299933135, -85.62743646635815, 41.928325299933135], "geometry": {"coordinates": [-85.62743646635815, 41.928325299933135], "type": "Point"}, "id": "5576", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62762112741783, 41.928324349921944, -85.62762112741783, 41.928324349921944], "geometry": {"coordinates": [-85.62762112741783, 41.928324349921944], "type": "Point"}, "id": "5577", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62780578847752, 41.92832339991073, -85.62780578847752, 41.92832339991073], "geometry": {"coordinates": [-85.62780578847752, 41.92832339991073], "type": "Point"}, "id": "5578", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62799044953721, 41.92832244989951, -85.62799044953721, 41.92832244989951], "geometry": {"coordinates": [-85.62799044953721, 41.92832244989951], "type": "Point"}, "id": "5579", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62817511065403, 41.928321506074816, -85.62817511065403, 41.928321506074816], "geometry": {"coordinates": [-85.62817511065403, 41.928321506074816], "type": "Point"}, "id": "5580", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62835977182228, 41.92832056781551, -85.62835977182228, 41.92832056781551], "geometry": {"coordinates": [-85.62835977182228, 41.92832056781551], "type": "Point"}, "id": "5581", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62854443299054, 41.92831962955619, -85.62854443299054, 41.92831962955619], "geometry": {"coordinates": [-85.62854443299054, 41.92831962955619], "type": "Point"}, "id": "5582", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62872909415877, 41.928318691296866, -85.62872909415877, 41.928318691296866], "geometry": {"coordinates": [-85.62872909415877, 41.928318691296866], "type": "Point"}, "id": "5583", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.628913755327, 41.92831775303752, -85.628913755327, 41.92831775303752], "geometry": {"coordinates": [-85.628913755327, 41.92831775303752], "type": "Point"}, "id": "5584", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62909841649525, 41.928316814778164, -85.62909841649525, 41.928316814778164], "geometry": {"coordinates": [-85.62909841649525, 41.928316814778164], "type": "Point"}, "id": "5585", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.6292830776635, 41.92831587651879, -85.6292830776635, 41.92831587651879], "geometry": {"coordinates": [-85.6292830776635, 41.92831587651879], "type": "Point"}, "id": "5586", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.62946773883174, 41.928314938259405, -85.62946773883174, 41.928314938259405], "geometry": {"coordinates": [-85.62946773883174, 41.928314938259405], "type": "Point"}, "id": "5587", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17964630}, "type": "Feature"}, {"bbox": [-85.6477466, 41.94587239999999, -85.6477466, 41.94587239999999], "geometry": {"coordinates": [-85.6477466, 41.94587239999999], "type": "Point"}, "id": "5588", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64791018243203, 41.94581228301369, -85.64791018243203, 41.94581228301369], "geometry": {"coordinates": [-85.64791018243203, 41.94581228301369], "type": "Point"}, "id": "5589", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64800095693231, 41.94569804229043, -85.64800095693231, 41.94569804229043], "geometry": {"coordinates": [-85.64800095693231, 41.94569804229043], "type": "Point"}, "id": "5590", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64802895135705, 41.94556581204468, -85.64802895135705, 41.94556581204468], "geometry": {"coordinates": [-85.64802895135705, 41.94556581204468], "type": "Point"}, "id": "5591", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.6480271494466, 41.9454301073542, -85.6480271494466, 41.9454301073542], "geometry": {"coordinates": [-85.6480271494466, 41.9454301073542], "type": "Point"}, "id": "5592", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64802534753616, 41.94529440237488, -85.64802534753616, 41.94529440237488], "geometry": {"coordinates": [-85.64802534753616, 41.94529440237488], "type": "Point"}, "id": "5593", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64802354562569, 41.94515869710669, -85.64802354562569, 41.94515869710669], "geometry": {"coordinates": [-85.64802354562569, 41.94515869710669], "type": "Point"}, "id": "5594", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64802174371525, 41.94502299154967, -85.64802174371525, 41.94502299154967], "geometry": {"coordinates": [-85.64802174371525, 41.94502299154967], "type": "Point"}, "id": "5595", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801994180479, 41.94488728570379, -85.64801994180479, 41.94488728570379], "geometry": {"coordinates": [-85.64801994180479, 41.94488728570379], "type": "Point"}, "id": "5596", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801814116512, 41.94475157955974, -85.64801814116512, 41.94475157955974], "geometry": {"coordinates": [-85.64801814116512, 41.94475157955974], "type": "Point"}, "id": "5597", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.6480163456135, 41.94461587308954, -85.6480163456135, 41.94461587308954], "geometry": {"coordinates": [-85.6480163456135, 41.94461587308954], "type": "Point"}, "id": "5598", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801455006189, 41.944480166330486, -85.64801455006189, 41.944480166330486], "geometry": {"coordinates": [-85.64801455006189, 41.944480166330486], "type": "Point"}, "id": "5599", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801275451025, 41.944344459282576, -85.64801275451025, 41.944344459282576], "geometry": {"coordinates": [-85.64801275451025, 41.944344459282576], "type": "Point"}, "id": "5600", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.64801095895862, 41.944208751945816, -85.64801095895862, 41.944208751945816], "geometry": {"coordinates": [-85.64801095895862, 41.944208751945816], "type": "Point"}, "id": "5601", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203968026}, "type": "Feature"}, {"bbox": [-85.6332888, 41.9456871, -85.6332888, 41.9456871], "geometry": {"coordinates": [-85.6332888, 41.9456871], "type": "Point"}, "id": "5602", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6332039913496, 41.94580555268623, -85.6332039913496, 41.94580555268623], "geometry": {"coordinates": [-85.6332039913496, 41.94580555268623], "type": "Point"}, "id": "5603", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63311918269922, 41.945924005152364, -85.63311918269922, 41.945924005152364], "geometry": {"coordinates": [-85.63311918269922, 41.945924005152364], "type": "Point"}, "id": "5604", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63303437404883, 41.946042457398434, -85.63303437404883, 41.946042457398434], "geometry": {"coordinates": [-85.63303437404883, 41.946042457398434], "type": "Point"}, "id": "5605", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63294956539845, 41.946160909424414, -85.63294956539845, 41.946160909424414], "geometry": {"coordinates": [-85.63294956539845, 41.946160909424414], "type": "Point"}, "id": "5606", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63286475198606, 41.946279359344025, -85.63286475198606, 41.946279359344025], "geometry": {"coordinates": [-85.63286475198606, 41.946279359344025], "type": "Point"}, "id": "5607", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63277992989313, 41.946397805605066, -85.63277992989313, 41.946397805605066], "geometry": {"coordinates": [-85.63277992989313, 41.946397805605066], "type": "Point"}, "id": "5608", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63269510780019, 41.94651625164603, -85.63269510780019, 41.94651625164603], "geometry": {"coordinates": [-85.63269510780019, 41.94651625164603], "type": "Point"}, "id": "5609", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63261028570724, 41.94663469746694, -85.63261028570724, 41.94663469746694], "geometry": {"coordinates": [-85.63261028570724, 41.94663469746694], "type": "Point"}, "id": "5610", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63252546361431, 41.94675314306779, -85.63252546361431, 41.94675314306779], "geometry": {"coordinates": [-85.63252546361431, 41.94675314306779], "type": "Point"}, "id": "5611", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63244064152137, 41.94687158844859, -85.63244064152137, 41.94687158844859], "geometry": {"coordinates": [-85.63244064152137, 41.94687158844859], "type": "Point"}, "id": "5612", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63235581942844, 41.94699003360932, -85.63235581942844, 41.94699003360932], "geometry": {"coordinates": [-85.63235581942844, 41.94699003360932], "type": "Point"}, "id": "5613", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6322709973355, 41.94710847854999, -85.6322709973355, 41.94710847854999], "geometry": {"coordinates": [-85.6322709973355, 41.94710847854999], "type": "Point"}, "id": "5614", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63218617524255, 41.9472269232706, -85.63218617524255, 41.9472269232706], "geometry": {"coordinates": [-85.63218617524255, 41.9472269232706], "type": "Point"}, "id": "5615", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63210135314962, 41.94734536777116, -85.63210135314962, 41.94734536777116], "geometry": {"coordinates": [-85.63210135314962, 41.94734536777116], "type": "Point"}, "id": "5616", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63201653105668, 41.94746381205166, -85.63201653105668, 41.94746381205166], "geometry": {"coordinates": [-85.63201653105668, 41.94746381205166], "type": "Point"}, "id": "5617", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63193170896375, 41.94758225611209, -85.63193170896375, 41.94758225611209], "geometry": {"coordinates": [-85.63193170896375, 41.94758225611209], "type": "Point"}, "id": "5618", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6318468868708, 41.94770069995246, -85.6318468868708, 41.94770069995246], "geometry": {"coordinates": [-85.6318468868708, 41.94770069995246], "type": "Point"}, "id": "5619", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63176206477786, 41.94781914357278, -85.63176206477786, 41.94781914357278], "geometry": {"coordinates": [-85.63176206477786, 41.94781914357278], "type": "Point"}, "id": "5620", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63167724268493, 41.947937586973026, -85.63167724268493, 41.947937586973026], "geometry": {"coordinates": [-85.63167724268493, 41.947937586973026], "type": "Point"}, "id": "5621", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63159242059199, 41.948056030153225, -85.63159242059199, 41.948056030153225], "geometry": {"coordinates": [-85.63159242059199, 41.948056030153225], "type": "Point"}, "id": "5622", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63150759849906, 41.948174473113355, -85.63150759849906, 41.948174473113355], "geometry": {"coordinates": [-85.63150759849906, 41.948174473113355], "type": "Point"}, "id": "5623", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63142277640611, 41.94829291585342, -85.63142277640611, 41.94829291585342], "geometry": {"coordinates": [-85.63142277640611, 41.94829291585342], "type": "Point"}, "id": "5624", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63133171457507, 41.948408766157996, -85.63133171457507, 41.948408766157996], "geometry": {"coordinates": [-85.63133171457507, 41.948408766157996], "type": "Point"}, "id": "5625", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63124059510193, 41.948524592305446, -85.63124059510193, 41.948524592305446], "geometry": {"coordinates": [-85.63124059510193, 41.948524592305446], "type": "Point"}, "id": "5626", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63114947562876, 41.948640418242434, -85.63114947562876, 41.948640418242434], "geometry": {"coordinates": [-85.63114947562876, 41.948640418242434], "type": "Point"}, "id": "5627", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63105835615563, 41.94875624396899, -85.63105835615563, 41.94875624396899], "geometry": {"coordinates": [-85.63105835615563, 41.94875624396899], "type": "Point"}, "id": "5628", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63098220692825, 41.94887744444033, -85.63098220692825, 41.94887744444033], "geometry": {"coordinates": [-85.63098220692825, 41.94887744444033], "type": "Point"}, "id": "5629", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6309169402819, 41.94900255198316, -85.6309169402819, 41.94900255198316], "geometry": {"coordinates": [-85.6309169402819, 41.94900255198316], "type": "Point"}, "id": "5630", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63083692192335, 41.94912254188827, -85.63083692192335, 41.94912254188827], "geometry": {"coordinates": [-85.63083692192335, 41.94912254188827], "type": "Point"}, "id": "5631", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63074948875555, 41.949239925801976, -85.63074948875555, 41.949239925801976], "geometry": {"coordinates": [-85.63074948875555, 41.949239925801976], "type": "Point"}, "id": "5632", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63066068135076, 41.94935673956904, -85.63066068135076, 41.94935673956904], "geometry": {"coordinates": [-85.63066068135076, 41.94935673956904], "type": "Point"}, "id": "5633", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63057187394597, 41.949473553122054, -85.63057187394597, 41.949473553122054], "geometry": {"coordinates": [-85.63057187394597, 41.949473553122054], "type": "Point"}, "id": "5634", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63048306654116, 41.94959036646102, -85.63048306654116, 41.94959036646102], "geometry": {"coordinates": [-85.63048306654116, 41.94959036646102], "type": "Point"}, "id": "5635", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63039425913635, 41.94970717958591, -85.63039425913635, 41.94970717958591], "geometry": {"coordinates": [-85.63039425913635, 41.94970717958591], "type": "Point"}, "id": "5636", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63030545173156, 41.949823992496746, -85.63030545173156, 41.949823992496746], "geometry": {"coordinates": [-85.63030545173156, 41.949823992496746], "type": "Point"}, "id": "5637", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63021664432675, 41.949940805193535, -85.63021664432675, 41.949940805193535], "geometry": {"coordinates": [-85.63021664432675, 41.949940805193535], "type": "Point"}, "id": "5638", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63012783692194, 41.950057617676265, -85.63012783692194, 41.950057617676265], "geometry": {"coordinates": [-85.63012783692194, 41.950057617676265], "type": "Point"}, "id": "5639", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.63003933738378, 41.95017455703304, -85.63003933738378, 41.95017455703304], "geometry": {"coordinates": [-85.63003933738378, 41.95017455703304], "type": "Point"}, "id": "5640", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62995302219721, 41.95029239787935, -85.62995302219721, 41.95029239787935], "geometry": {"coordinates": [-85.62995302219721, 41.95029239787935], "type": "Point"}, "id": "5641", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62986670701065, 41.95041023850782, -85.62986670701065, 41.95041023850782], "geometry": {"coordinates": [-85.62986670701065, 41.95041023850782], "type": "Point"}, "id": "5642", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62978039182406, 41.95052807891844, -85.62978039182406, 41.95052807891844], "geometry": {"coordinates": [-85.62978039182406, 41.95052807891844], "type": "Point"}, "id": "5643", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62969407663749, 41.95064591911121, -85.62969407663749, 41.95064591911121], "geometry": {"coordinates": [-85.62969407663749, 41.95064591911121], "type": "Point"}, "id": "5644", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62960776145091, 41.950763759086136, -85.62960776145091, 41.950763759086136], "geometry": {"coordinates": [-85.62960776145091, 41.950763759086136], "type": "Point"}, "id": "5645", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62952144626433, 41.95088159884323, -85.62952144626433, 41.95088159884323], "geometry": {"coordinates": [-85.62952144626433, 41.95088159884323], "type": "Point"}, "id": "5646", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62943513107777, 41.95099943838247, -85.62943513107777, 41.95099943838247], "geometry": {"coordinates": [-85.62943513107777, 41.95099943838247], "type": "Point"}, "id": "5647", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62935039119878, 41.951117907199816, -85.62935039119878, 41.951117907199816], "geometry": {"coordinates": [-85.62935039119878, 41.951117907199816], "type": "Point"}, "id": "5648", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62926590892455, 41.951236478736135, -85.62926590892455, 41.951236478736135], "geometry": {"coordinates": [-85.62926590892455, 41.951236478736135], "type": "Point"}, "id": "5649", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62919575913405, 41.951360001071656, -85.62919575913405, 41.951360001071656], "geometry": {"coordinates": [-85.62919575913405, 41.951360001071656], "type": "Point"}, "id": "5650", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62912843405618, 41.95148449893592, -85.62912843405618, 41.95148449893592], "geometry": {"coordinates": [-85.62912843405618, 41.95148449893592], "type": "Point"}, "id": "5651", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62905241598389, 41.95160618944888, -85.62905241598389, 41.95160618944888], "geometry": {"coordinates": [-85.62905241598389, 41.95160618944888], "type": "Point"}, "id": "5652", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62897398572274, 41.95172698624531, -85.62897398572274, 41.95172698624531], "geometry": {"coordinates": [-85.62897398572274, 41.95172698624531], "type": "Point"}, "id": "5653", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62888697296928, 41.95184454012442, -85.62888697296928, 41.95184454012442], "geometry": {"coordinates": [-85.62888697296928, 41.95184454012442], "type": "Point"}, "id": "5654", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62879996021582, 41.95196209378673, -85.62879996021582, 41.95196209378673], "geometry": {"coordinates": [-85.62879996021582, 41.95196209378673], "type": "Point"}, "id": "5655", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62871294746236, 41.95207964723225, -85.62871294746236, 41.95207964723225], "geometry": {"coordinates": [-85.62871294746236, 41.95207964723225], "type": "Point"}, "id": "5656", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62863007299045, 41.952198823624784, -85.62863007299045, 41.952198823624784], "geometry": {"coordinates": [-85.62863007299045, 41.952198823624784], "type": "Point"}, "id": "5657", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62854876992716, 41.95231861614907, -85.62854876992716, 41.95231861614907], "geometry": {"coordinates": [-85.62854876992716, 41.95231861614907], "type": "Point"}, "id": "5658", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62846746686387, 41.95243840844822, -85.62846746686387, 41.95243840844822], "geometry": {"coordinates": [-85.62846746686387, 41.95243840844822], "type": "Point"}, "id": "5659", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62838616380057, 41.952558200522226, -85.62838616380057, 41.952558200522226], "geometry": {"coordinates": [-85.62838616380057, 41.952558200522226], "type": "Point"}, "id": "5660", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6283044240404, 41.952677822847555, -85.6283044240404, 41.952677822847555], "geometry": {"coordinates": [-85.6283044240404, 41.952677822847555], "type": "Point"}, "id": "5661", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62821875881363, 41.952795921104695, -85.62821875881363, 41.952795921104695], "geometry": {"coordinates": [-85.62821875881363, 41.952795921104695], "type": "Point"}, "id": "5662", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6281330935869, 41.95291401914301, -85.6281330935869, 41.95291401914301], "geometry": {"coordinates": [-85.6281330935869, 41.95291401914301], "type": "Point"}, "id": "5663", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62804742836015, 41.95303211696251, -85.62804742836015, 41.95303211696251], "geometry": {"coordinates": [-85.62804742836015, 41.95303211696251], "type": "Point"}, "id": "5664", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6279617631334, 41.953150214563195, -85.6279617631334, 41.953150214563195], "geometry": {"coordinates": [-85.6279617631334, 41.953150214563195], "type": "Point"}, "id": "5665", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62787609790666, 41.95326831194507, -85.62787609790666, 41.95326831194507], "geometry": {"coordinates": [-85.62787609790666, 41.95326831194507], "type": "Point"}, "id": "5666", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6277904326799, 41.95338640910811, -85.6277904326799, 41.95338640910811], "geometry": {"coordinates": [-85.6277904326799, 41.95338640910811], "type": "Point"}, "id": "5667", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62770476745315, 41.95350450605234, -85.62770476745315, 41.95350450605234], "geometry": {"coordinates": [-85.62770476745315, 41.95350450605234], "type": "Point"}, "id": "5668", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62762089344706, 41.95362330924674, -85.62762089344706, 41.95362330924674], "geometry": {"coordinates": [-85.62762089344706, 41.95362330924674], "type": "Point"}, "id": "5669", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62753748816661, 41.953742297087764, -85.62753748816661, 41.953742297087764], "geometry": {"coordinates": [-85.62753748816661, 41.953742297087764], "type": "Point"}, "id": "5670", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62745408288615, 41.953861284706655, -85.62745408288615, 41.953861284706655], "geometry": {"coordinates": [-85.62745408288615, 41.953861284706655], "type": "Point"}, "id": "5671", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62737369448972, 41.95398134861296, -85.62737369448972, 41.95398134861296], "geometry": {"coordinates": [-85.62737369448972, 41.95398134861296], "type": "Point"}, "id": "5672", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62730107815551, 41.95410418557938, -85.62730107815551, 41.95410418557938], "geometry": {"coordinates": [-85.62730107815551, 41.95410418557938], "type": "Point"}, "id": "5673", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6272106830859, 41.9542200838154, -85.6272106830859, 41.9542200838154], "geometry": {"coordinates": [-85.6272106830859, 41.9542200838154], "type": "Point"}, "id": "5674", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62711601231443, 41.954334313168644, -85.62711601231443, 41.954334313168644], "geometry": {"coordinates": [-85.62711601231443, 41.954334313168644], "type": "Point"}, "id": "5675", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62702134154296, 41.95444854231715, -85.62702134154296, 41.95444854231715], "geometry": {"coordinates": [-85.62702134154296, 41.95444854231715], "type": "Point"}, "id": "5676", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.62692667077148, 41.954562771260946, -85.62692667077148, 41.954562771260946], "geometry": {"coordinates": [-85.62692667077148, 41.954562771260946], "type": "Point"}, "id": "5677", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967730}, "type": "Feature"}, {"bbox": [-85.6255481, 41.92572239999999, -85.6255481, 41.92572239999999], "geometry": {"coordinates": [-85.6255481, 41.92572239999999], "type": "Point"}, "id": "5678", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62558864253987, 41.92585283396066, -85.62558864253987, 41.92585283396066], "geometry": {"coordinates": [-85.62558864253987, 41.92585283396066], "type": "Point"}, "id": "5679", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62562918507973, 41.92598326765467, -85.62562918507973, 41.92598326765467], "geometry": {"coordinates": [-85.62562918507973, 41.92598326765467], "type": "Point"}, "id": "5680", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62566971710989, 41.926113702887925, -85.62566971710989, 41.926113702887925], "geometry": {"coordinates": [-85.62566971710989, 41.926113702887925], "type": "Point"}, "id": "5681", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62570991923435, 41.9262441942831, -85.62570991923435, 41.9262441942831], "geometry": {"coordinates": [-85.62570991923435, 41.9262441942831], "type": "Point"}, "id": "5682", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62574997579544, 41.926374710265904, -85.62574997579544, 41.926374710265904], "geometry": {"coordinates": [-85.62574997579544, 41.926374710265904], "type": "Point"}, "id": "5683", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62578986814346, 41.92650525344443, -85.62578986814346, 41.92650525344443], "geometry": {"coordinates": [-85.62578986814346, 41.92650525344443], "type": "Point"}, "id": "5684", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62582873573353, 41.92663596773423, -85.62582873573353, 41.92663596773423], "geometry": {"coordinates": [-85.62582873573353, 41.92663596773423], "type": "Point"}, "id": "5685", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62586760332363, 41.92676668175619, -85.62586760332363, 41.92676668175619], "geometry": {"coordinates": [-85.62586760332363, 41.92676668175619], "type": "Point"}, "id": "5686", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62590647091373, 41.926897395510345, -85.62590647091373, 41.926897395510345], "geometry": {"coordinates": [-85.62590647091373, 41.926897395510345], "type": "Point"}, "id": "5687", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62594533850381, 41.92702810899669, -85.62594533850381, 41.92702810899669], "geometry": {"coordinates": [-85.62594533850381, 41.92702810899669], "type": "Point"}, "id": "5688", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62598420609389, 41.927158822215205, -85.62598420609389, 41.927158822215205], "geometry": {"coordinates": [-85.62598420609389, 41.927158822215205], "type": "Point"}, "id": "5689", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.626023073684, 41.927289535165905, -85.626023073684, 41.927289535165905], "geometry": {"coordinates": [-85.626023073684, 41.927289535165905], "type": "Point"}, "id": "5690", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62606172886225, 41.92742028254942, -85.62606172886225, 41.92742028254942], "geometry": {"coordinates": [-85.62606172886225, 41.92742028254942], "type": "Point"}, "id": "5691", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62610004389332, 41.92755108523295, -85.62610004389332, 41.92755108523295], "geometry": {"coordinates": [-85.62610004389332, 41.92755108523295], "type": "Point"}, "id": "5692", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62613835892438, 41.9276818876483, -85.62613835892438, 41.9276818876483], "geometry": {"coordinates": [-85.62613835892438, 41.9276818876483], "type": "Point"}, "id": "5693", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62617667395544, 41.92781268979545, -85.62617667395544, 41.92781268979545], "geometry": {"coordinates": [-85.62617667395544, 41.92781268979545], "type": "Point"}, "id": "5694", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62621498898652, 41.92794349167441, -85.62621498898652, 41.92794349167441], "geometry": {"coordinates": [-85.62621498898652, 41.92794349167441], "type": "Point"}, "id": "5695", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62625330401758, 41.928074293285185, -85.62625330401758, 41.928074293285185], "geometry": {"coordinates": [-85.62625330401758, 41.928074293285185], "type": "Point"}, "id": "5696", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62629161904864, 41.92820509462777, -85.62629161904864, 41.92820509462777], "geometry": {"coordinates": [-85.62629161904864, 41.92820509462777], "type": "Point"}, "id": "5697", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62633009532043, 41.928335868011054, -85.62633009532043, 41.928335868011054], "geometry": {"coordinates": [-85.62633009532043, 41.928335868011054], "type": "Point"}, "id": "5698", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62637271830175, 41.92846592898154, -85.62637271830175, 41.92846592898154], "geometry": {"coordinates": [-85.62637271830175, 41.92846592898154], "type": "Point"}, "id": "5699", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62641534128306, 41.928595989686855, -85.62641534128306, 41.928595989686855], "geometry": {"coordinates": [-85.62641534128306, 41.928595989686855], "type": "Point"}, "id": "5700", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62645796426438, 41.928726050127004, -85.62645796426438, 41.928726050127004], "geometry": {"coordinates": [-85.62645796426438, 41.928726050127004], "type": "Point"}, "id": "5701", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62650058724567, 41.92885611030199, -85.62650058724567, 41.92885611030199], "geometry": {"coordinates": [-85.62650058724567, 41.92885611030199], "type": "Point"}, "id": "5702", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.626543210227, 41.92898617021181, -85.626543210227, 41.92898617021181], "geometry": {"coordinates": [-85.626543210227, 41.92898617021181], "type": "Point"}, "id": "5703", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62658583320831, 41.929116229856454, -85.62658583320831, 41.929116229856454], "geometry": {"coordinates": [-85.62658583320831, 41.929116229856454], "type": "Point"}, "id": "5704", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62662845618962, 41.92924628923595, -85.62662845618962, 41.92924628923595], "geometry": {"coordinates": [-85.62662845618962, 41.92924628923595], "type": "Point"}, "id": "5705", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62666594792157, 41.92937721795981, -85.62666594792157, 41.92937721795981], "geometry": {"coordinates": [-85.62666594792157, 41.92937721795981], "type": "Point"}, "id": "5706", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62670324681427, 41.929508179095976, -85.62670324681427, 41.929508179095976], "geometry": {"coordinates": [-85.62670324681427, 41.929508179095976], "type": "Point"}, "id": "5707", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62674054570697, 41.92963913996328, -85.62674054570697, 41.92963913996328], "geometry": {"coordinates": [-85.62674054570697, 41.92963913996328], "type": "Point"}, "id": "5708", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62677784459967, 41.929770100561726, -85.62677784459967, 41.929770100561726], "geometry": {"coordinates": [-85.62677784459967, 41.929770100561726], "type": "Point"}, "id": "5709", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62681514349237, 41.92990106089131, -85.62681514349237, 41.92990106089131], "geometry": {"coordinates": [-85.62681514349237, 41.92990106089131], "type": "Point"}, "id": "5710", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62685244238507, 41.930032020952034, -85.62685244238507, 41.930032020952034], "geometry": {"coordinates": [-85.62685244238507, 41.930032020952034], "type": "Point"}, "id": "5711", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6268897412778, 41.93016298074391, -85.6268897412778, 41.93016298074391], "geometry": {"coordinates": [-85.6268897412778, 41.93016298074391], "type": "Point"}, "id": "5712", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62692327972384, 41.93029449023842, -85.62692327972384, 41.93029449023842], "geometry": {"coordinates": [-85.62692327972384, 41.93029449023842], "type": "Point"}, "id": "5713", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62695539150072, 41.930426208114085, -85.62695539150072, 41.930426208114085], "geometry": {"coordinates": [-85.62695539150072, 41.930426208114085], "type": "Point"}, "id": "5714", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62698750327759, 41.930557925717764, -85.62698750327759, 41.930557925717764], "geometry": {"coordinates": [-85.62698750327759, 41.930557925717764], "type": "Point"}, "id": "5715", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62701559310324, 41.930690089685804, -85.62701559310324, 41.930690089685804], "geometry": {"coordinates": [-85.62701559310324, 41.930690089685804], "type": "Point"}, "id": "5716", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62703238989627, 41.930823306068326, -85.62703238989627, 41.930823306068326], "geometry": {"coordinates": [-85.62703238989627, 41.930823306068326], "type": "Point"}, "id": "5717", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6270408507757, 41.93095700410815, -85.6270408507757, 41.93095700410815], "geometry": {"coordinates": [-85.6270408507757, 41.93095700410815], "type": "Point"}, "id": "5718", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62703903554637, 41.931090862708004, -85.62703903554637, 41.931090862708004], "geometry": {"coordinates": [-85.62703903554637, 41.931090862708004], "type": "Point"}, "id": "5719", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62703832408162, 41.931224722584595, -85.62703832408162, 41.931224722584595], "geometry": {"coordinates": [-85.62703832408162, 41.931224722584595], "type": "Point"}, "id": "5720", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62703945667646, 41.931358584782615, -85.62703945667646, 41.931358584782615], "geometry": {"coordinates": [-85.62703945667646, 41.931358584782615], "type": "Point"}, "id": "5721", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62704058927127, 41.93149244669972, -85.62704058927127, 41.93149244669972], "geometry": {"coordinates": [-85.62704058927127, 41.93149244669972], "type": "Point"}, "id": "5722", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62704172186612, 41.9316263083359, -85.62704172186612, 41.9316263083359], "geometry": {"coordinates": [-85.62704172186612, 41.9316263083359], "type": "Point"}, "id": "5723", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62704246035872, 41.93176017105462, -85.62704246035872, 41.93176017105462], "geometry": {"coordinates": [-85.62704246035872, 41.93176017105462], "type": "Point"}, "id": "5724", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62704300132835, 41.93189403417578, -85.62704300132835, 41.93189403417578], "geometry": {"coordinates": [-85.62704300132835, 41.93189403417578], "type": "Point"}, "id": "5725", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62704354229795, 41.93202789701599, -85.62704354229795, 41.93202789701599], "geometry": {"coordinates": [-85.62704354229795, 41.93202789701599], "type": "Point"}, "id": "5726", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62704408326758, 41.93216175957528, -85.62704408326758, 41.93216175957528], "geometry": {"coordinates": [-85.62704408326758, 41.93216175957528], "type": "Point"}, "id": "5727", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62704775992223, 41.932295593862875, -85.62704775992223, 41.932295593862875], "geometry": {"coordinates": [-85.62704775992223, 41.932295593862875], "type": "Point"}, "id": "5728", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705153666069, 41.932429426976256, -85.62705153666069, 41.932429426976256], "geometry": {"coordinates": [-85.62705153666069, 41.932429426976256], "type": "Point"}, "id": "5729", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705531339914, 41.93256325980883, -85.62705531339914, 41.93256325980883], "geometry": {"coordinates": [-85.62705531339914, 41.93256325980883], "type": "Point"}, "id": "5730", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705909013758, 41.93269709236059, -85.62705909013758, 41.93269709236059], "geometry": {"coordinates": [-85.62705909013758, 41.93269709236059], "type": "Point"}, "id": "5731", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62706286687603, 41.932830924631546, -85.62706286687603, 41.932830924631546], "geometry": {"coordinates": [-85.62706286687603, 41.932830924631546], "type": "Point"}, "id": "5732", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62706664361448, 41.93296475662169, -85.62706664361448, 41.93296475662169], "geometry": {"coordinates": [-85.62706664361448, 41.93296475662169], "type": "Point"}, "id": "5733", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62707042035294, 41.933098588331035, -85.62707042035294, 41.933098588331035], "geometry": {"coordinates": [-85.62707042035294, 41.933098588331035], "type": "Point"}, "id": "5734", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62707224837425, 41.933232425421856, -85.62707224837425, 41.933232425421856], "geometry": {"coordinates": [-85.62707224837425, 41.933232425421856], "type": "Point"}, "id": "5735", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6270698770483, 41.933366274433695, -85.6270698770483, 41.933366274433695], "geometry": {"coordinates": [-85.6270698770483, 41.933366274433695], "type": "Point"}, "id": "5736", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62706750572237, 41.93350012316465, -85.62706750572237, 41.93350012316465], "geometry": {"coordinates": [-85.62706750572237, 41.93350012316465], "type": "Point"}, "id": "5737", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62706513439643, 41.93363397161471, -85.62706513439643, 41.93363397161471], "geometry": {"coordinates": [-85.62706513439643, 41.93363397161471], "type": "Point"}, "id": "5738", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62706276307048, 41.93376781978389, -85.62706276307048, 41.93376781978389], "geometry": {"coordinates": [-85.62706276307048, 41.93376781978389], "type": "Point"}, "id": "5739", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62706039174454, 41.93390166767218, -85.62706039174454, 41.93390166767218], "geometry": {"coordinates": [-85.62706039174454, 41.93390166767218], "type": "Point"}, "id": "5740", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6270580204186, 41.9340355152796, -85.6270580204186, 41.9340355152796], "geometry": {"coordinates": [-85.6270580204186, 41.9340355152796], "type": "Point"}, "id": "5741", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705564909267, 41.93416936260612, -85.62705564909267, 41.93416936260612], "geometry": {"coordinates": [-85.62705564909267, 41.93416936260612], "type": "Point"}, "id": "5742", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6270548049999, 41.93430321798598, -85.6270548049999, 41.93430321798598], "geometry": {"coordinates": [-85.6270548049999, 41.93430321798598], "type": "Point"}, "id": "5743", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6270545365062, 41.934437076226004, -85.6270545365062, 41.934437076226004], "geometry": {"coordinates": [-85.6270545365062, 41.934437076226004], "type": "Point"}, "id": "5744", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705426801247, 41.934570934185096, -85.62705426801247, 41.934570934185096], "geometry": {"coordinates": [-85.62705426801247, 41.934570934185096], "type": "Point"}, "id": "5745", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705399951876, 41.934704791863254, -85.62705399951876, 41.934704791863254], "geometry": {"coordinates": [-85.62705399951876, 41.934704791863254], "type": "Point"}, "id": "5746", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705373102507, 41.93483864926048, -85.62705373102507, 41.93483864926048], "geometry": {"coordinates": [-85.62705373102507, 41.93483864926048], "type": "Point"}, "id": "5747", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705346253135, 41.93497250637676, -85.62705346253135, 41.93497250637676], "geometry": {"coordinates": [-85.62705346253135, 41.93497250637676], "type": "Point"}, "id": "5748", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705319403764, 41.935106363212114, -85.62705319403764, 41.935106363212114], "geometry": {"coordinates": [-85.62705319403764, 41.935106363212114], "type": "Point"}, "id": "5749", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6270543557392, 41.9352402061045, -85.6270543557392, 41.9352402061045], "geometry": {"coordinates": [-85.6270543557392, 41.9352402061045], "type": "Point"}, "id": "5750", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62705924462878, 41.935374013111904, -85.62705924462878, 41.935374013111904], "geometry": {"coordinates": [-85.62705924462878, 41.935374013111904], "type": "Point"}, "id": "5751", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62706413351836, 41.93550781983857, -85.62706413351836, 41.93550781983857], "geometry": {"coordinates": [-85.62706413351836, 41.93550781983857], "type": "Point"}, "id": "5752", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62706902240797, 41.93564162628451, -85.62706902240797, 41.93564162628451], "geometry": {"coordinates": [-85.62706902240797, 41.93564162628451], "type": "Point"}, "id": "5753", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62707391129754, 41.935775432449724, -85.62707391129754, 41.935775432449724], "geometry": {"coordinates": [-85.62707391129754, 41.935775432449724], "type": "Point"}, "id": "5754", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62707880018714, 41.935909238334204, -85.62707880018714, 41.935909238334204], "geometry": {"coordinates": [-85.62707880018714, 41.935909238334204], "type": "Point"}, "id": "5755", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62708368907673, 41.93604304393796, -85.62708368907673, 41.93604304393796], "geometry": {"coordinates": [-85.62708368907673, 41.93604304393796], "type": "Point"}, "id": "5756", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62708857796632, 41.93617684926099, -85.62708857796632, 41.93617684926099], "geometry": {"coordinates": [-85.62708857796632, 41.93617684926099], "type": "Point"}, "id": "5757", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62708800668658, 41.93631069721975, -85.62708800668658, 41.93631069721975], "geometry": {"coordinates": [-85.62708800668658, 41.93631069721975], "type": "Point"}, "id": "5758", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62708691952378, 41.93644454895241, -85.62708691952378, 41.93644454895241], "geometry": {"coordinates": [-85.62708691952378, 41.93644454895241], "type": "Point"}, "id": "5759", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62708583236099, 41.93657840040414, -85.62708583236099, 41.93657840040414], "geometry": {"coordinates": [-85.62708583236099, 41.93657840040414], "type": "Point"}, "id": "5760", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62708474519819, 41.93671225157494, -85.62708474519819, 41.93671225157494], "geometry": {"coordinates": [-85.62708474519819, 41.93671225157494], "type": "Point"}, "id": "5761", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62709158605821, 41.93684572334248, -85.62709158605821, 41.93684572334248], "geometry": {"coordinates": [-85.62709158605821, 41.93684572334248], "type": "Point"}, "id": "5762", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62713250533334, 41.93697539612695, -85.62713250533334, 41.93697539612695], "geometry": {"coordinates": [-85.62713250533334, 41.93697539612695], "type": "Point"}, "id": "5763", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62719995330062, 41.93709935944857, -85.62719995330062, 41.93709935944857], "geometry": {"coordinates": [-85.62719995330062, 41.93709935944857], "type": "Point"}, "id": "5764", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6272943418967, 41.93721137528279, -85.6272943418967, 41.93721137528279], "geometry": {"coordinates": [-85.6272943418967, 41.93721137528279], "type": "Point"}, "id": "5765", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62741781563899, 41.93730873221532, -85.62741781563899, 41.93730873221532], "geometry": {"coordinates": [-85.62741781563899, 41.93730873221532], "type": "Point"}, "id": "5766", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62756074841644, 41.93738994856204, -85.62756074841644, 41.93738994856204], "geometry": {"coordinates": [-85.62756074841644, 41.93738994856204], "type": "Point"}, "id": "5767", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6277019451169, 41.93747290229246, -85.6277019451169, 41.93747290229246], "geometry": {"coordinates": [-85.6277019451169, 41.93747290229246], "type": "Point"}, "id": "5768", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62782500407044, 41.937569558239694, -85.62782500407044, 41.937569558239694], "geometry": {"coordinates": [-85.62782500407044, 41.937569558239694], "type": "Point"}, "id": "5769", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62793334403517, 41.93767633479238, -85.62793334403517, 41.93767633479238], "geometry": {"coordinates": [-85.62793334403517, 41.93767633479238], "type": "Point"}, "id": "5770", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6280286951099, 41.937789636430075, -85.6280286951099, 41.937789636430075], "geometry": {"coordinates": [-85.6280286951099, 41.937789636430075], "type": "Point"}, "id": "5771", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62811629309925, 41.937906555582344, -85.62811629309925, 41.937906555582344], "geometry": {"coordinates": [-85.62811629309925, 41.937906555582344], "type": "Point"}, "id": "5772", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62820388259782, 41.93802347804066, -85.62820388259782, 41.93802347804066], "geometry": {"coordinates": [-85.62820388259782, 41.93802347804066], "type": "Point"}, "id": "5773", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62829148388931, 41.93814039539563, -85.62829148388931, 41.93814039539563], "geometry": {"coordinates": [-85.62829148388931, 41.93814039539563], "type": "Point"}, "id": "5774", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62837908881129, 41.93825731103118, -85.62837908881129, 41.93825731103118], "geometry": {"coordinates": [-85.62837908881129, 41.93825731103118], "type": "Point"}, "id": "5775", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62846669373326, 41.938374226452375, -85.62846669373326, 41.938374226452375], "geometry": {"coordinates": [-85.62846669373326, 41.938374226452375], "type": "Point"}, "id": "5776", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62855429865523, 41.93849114165921, -85.62855429865523, 41.93849114165921], "geometry": {"coordinates": [-85.62855429865523, 41.93849114165921], "type": "Point"}, "id": "5777", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6286419035772, 41.93860805665172, -85.6286419035772, 41.93860805665172], "geometry": {"coordinates": [-85.6286419035772, 41.93860805665172], "type": "Point"}, "id": "5778", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62872950849918, 41.93872497142986, -85.62872950849918, 41.93872497142986], "geometry": {"coordinates": [-85.62872950849918, 41.93872497142986], "type": "Point"}, "id": "5779", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62881711342115, 41.938841885993675, -85.62881711342115, 41.938841885993675], "geometry": {"coordinates": [-85.62881711342115, 41.938841885993675], "type": "Point"}, "id": "5780", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62890471834311, 41.93895880034312, -85.62890471834311, 41.93895880034312], "geometry": {"coordinates": [-85.62890471834311, 41.93895880034312], "type": "Point"}, "id": "5781", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62899232326511, 41.93907571447823, -85.62899232326511, 41.93907571447823], "geometry": {"coordinates": [-85.62899232326511, 41.93907571447823], "type": "Point"}, "id": "5782", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62907974939591, 41.93919270234256, -85.62907974939591, 41.93919270234256], "geometry": {"coordinates": [-85.62907974939591, 41.93919270234256], "type": "Point"}, "id": "5783", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62916702055291, 41.93930975408544, -85.62916702055291, 41.93930975408544], "geometry": {"coordinates": [-85.62916702055291, 41.93930975408544], "type": "Point"}, "id": "5784", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62925429170993, 41.93942680561348, -85.62925429170993, 41.93942680561348], "geometry": {"coordinates": [-85.62925429170993, 41.93942680561348], "type": "Point"}, "id": "5785", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62934156286693, 41.939543856926655, -85.62934156286693, 41.939543856926655], "geometry": {"coordinates": [-85.62934156286693, 41.939543856926655], "type": "Point"}, "id": "5786", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62942883402393, 41.939660908024976, -85.62942883402393, 41.939660908024976], "geometry": {"coordinates": [-85.62942883402393, 41.939660908024976], "type": "Point"}, "id": "5787", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62951610518093, 41.939777958908444, -85.62951610518093, 41.939777958908444], "geometry": {"coordinates": [-85.62951610518093, 41.939777958908444], "type": "Point"}, "id": "5788", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62960337633794, 41.93989500957705, -85.62960337633794, 41.93989500957705], "geometry": {"coordinates": [-85.62960337633794, 41.93989500957705], "type": "Point"}, "id": "5789", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62968803063013, 41.94001311239969, -85.62968803063013, 41.94001311239969], "geometry": {"coordinates": [-85.62968803063013, 41.94001311239969], "type": "Point"}, "id": "5790", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62977292088209, 41.940131123625, -85.62977292088209, 41.940131123625], "geometry": {"coordinates": [-85.62977292088209, 41.940131123625], "type": "Point"}, "id": "5791", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6298590605224, 41.940248636494914, -85.6298590605224, 41.940248636494914], "geometry": {"coordinates": [-85.6298590605224, 41.940248636494914], "type": "Point"}, "id": "5792", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.62994520016272, 41.94036614914827, -85.62994520016272, 41.94036614914827], "geometry": {"coordinates": [-85.62994520016272, 41.94036614914827], "type": "Point"}, "id": "5793", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63003133980304, 41.94048366158506, -85.63003133980304, 41.94048366158506], "geometry": {"coordinates": [-85.63003133980304, 41.94048366158506], "type": "Point"}, "id": "5794", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63011747944336, 41.9406011738053, -85.63011747944336, 41.9406011738053], "geometry": {"coordinates": [-85.63011747944336, 41.9406011738053], "type": "Point"}, "id": "5795", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63020361908369, 41.94071868580898, -85.63020361908369, 41.94071868580898], "geometry": {"coordinates": [-85.63020361908369, 41.94071868580898], "type": "Point"}, "id": "5796", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63028976275423, 41.94083619596147, -85.63028976275423, 41.94083619596147], "geometry": {"coordinates": [-85.63028976275423, 41.94083619596147], "type": "Point"}, "id": "5797", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6303759078825, 41.940953705306136, -85.6303759078825, 41.940953705306136], "geometry": {"coordinates": [-85.6303759078825, 41.940953705306136], "type": "Point"}, "id": "5798", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63046205301079, 41.94107121443427, -85.63046205301079, 41.94107121443427], "geometry": {"coordinates": [-85.63046205301079, 41.94107121443427], "type": "Point"}, "id": "5799", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6305481891349, 41.941188726997666, -85.6305481891349, 41.941188726997666], "geometry": {"coordinates": [-85.6305481891349, 41.941188726997666], "type": "Point"}, "id": "5800", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63063432095804, 41.94130624108884, -85.63063432095804, 41.94130624108884], "geometry": {"coordinates": [-85.63063432095804, 41.94130624108884], "type": "Point"}, "id": "5801", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63072045278116, 41.94142375496344, -85.63072045278116, 41.94142375496344], "geometry": {"coordinates": [-85.63072045278116, 41.94142375496344], "type": "Point"}, "id": "5802", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6308065846043, 41.94154126862148, -85.6308065846043, 41.94154126862148], "geometry": {"coordinates": [-85.6308065846043, 41.94154126862148], "type": "Point"}, "id": "5803", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63089271642741, 41.94165878206294, -85.63089271642741, 41.94165878206294], "geometry": {"coordinates": [-85.63089271642741, 41.94165878206294], "type": "Point"}, "id": "5804", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63097887460084, 41.94177628459879, -85.63097887460084, 41.94177628459879], "geometry": {"coordinates": [-85.63097887460084, 41.94177628459879], "type": "Point"}, "id": "5805", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63106523377782, 41.94189370523433, -85.63106523377782, 41.94189370523433], "geometry": {"coordinates": [-85.63106523377782, 41.94189370523433], "type": "Point"}, "id": "5806", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63115154946748, 41.94201114336068, -85.63115154946748, 41.94201114336068], "geometry": {"coordinates": [-85.63115154946748, 41.94201114336068], "type": "Point"}, "id": "5807", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63123786485484, 41.94212858139366, -85.63123786485484, 41.94212858139366], "geometry": {"coordinates": [-85.63123786485484, 41.94212858139366], "type": "Point"}, "id": "5808", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63132417994967, 41.942246019329296, -85.63132417994967, 41.942246019329296], "geometry": {"coordinates": [-85.63132417994967, 41.942246019329296], "type": "Point"}, "id": "5809", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63141049504452, 41.942363457048636, -85.63141049504452, 41.942363457048636], "geometry": {"coordinates": [-85.63141049504452, 41.942363457048636], "type": "Point"}, "id": "5810", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63149681013935, 41.94248089455168, -85.63149681013935, 41.94248089455168], "geometry": {"coordinates": [-85.63149681013935, 41.94248089455168], "type": "Point"}, "id": "5811", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63158318352761, 41.94259830811411, -85.63158318352761, 41.94259830811411], "geometry": {"coordinates": [-85.63158318352761, 41.94259830811411], "type": "Point"}, "id": "5812", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.63167251221961, 41.94271448787934, -85.63167251221961, 41.94271448787934], "geometry": {"coordinates": [-85.63167251221961, 41.94271448787934], "type": "Point"}, "id": "5813", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.6317622561098, 41.9428304940452, -85.6317622561098, 41.9428304940452], "geometry": {"coordinates": [-85.6317622561098, 41.9428304940452], "type": "Point"}, "id": "5814", "properties": {"__folium_color": "red", "highway": "secondary", "osm_id": 17966462}, "type": "Feature"}, {"bbox": [-85.632182, 41.961493, -85.632182, 41.961493], "geometry": {"coordinates": [-85.632182, 41.961493], "type": "Point"}, "id": "5815", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63218028110649, 41.96135881132385, -85.63218028110649, 41.96135881132385], "geometry": {"coordinates": [-85.63218028110649, 41.96135881132385], "type": "Point"}, "id": "5816", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217856221294, 41.961224622365094, -85.63217856221294, 41.961224622365094], "geometry": {"coordinates": [-85.63217856221294, 41.961224622365094], "type": "Point"}, "id": "5817", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217684331943, 41.961090433123765, -85.63217684331943, 41.961090433123765], "geometry": {"coordinates": [-85.63217684331943, 41.961090433123765], "type": "Point"}, "id": "5818", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217512442591, 41.96095624359984, -85.63217512442591, 41.96095624359984], "geometry": {"coordinates": [-85.63217512442591, 41.96095624359984], "type": "Point"}, "id": "5819", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217340553237, 41.96082205379333, -85.63217340553237, 41.96082205379333], "geometry": {"coordinates": [-85.63217340553237, 41.96082205379333], "type": "Point"}, "id": "5820", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63217168663886, 41.960687863704216, -85.63217168663886, 41.960687863704216], "geometry": {"coordinates": [-85.63217168663886, 41.960687863704216], "type": "Point"}, "id": "5821", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63216998797466, 41.96055367319013, -85.63216998797466, 41.96055367319013], "geometry": {"coordinates": [-85.63216998797466, 41.96055367319013], "type": "Point"}, "id": "5822", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321682903842, 41.96041948238588, -85.6321682903842, 41.96041948238588], "geometry": {"coordinates": [-85.6321682903842, 41.96041948238588], "type": "Point"}, "id": "5823", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63216659279375, 41.96028529129905, -85.63216659279375, 41.96028529129905], "geometry": {"coordinates": [-85.63216659279375, 41.96028529129905], "type": "Point"}, "id": "5824", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321648952033, 41.960151099929625, -85.6321648952033, 41.960151099929625], "geometry": {"coordinates": [-85.6321648952033, 41.960151099929625], "type": "Point"}, "id": "5825", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63216319761284, 41.96001690827762, -85.63216319761284, 41.96001690827762], "geometry": {"coordinates": [-85.63216319761284, 41.96001690827762], "type": "Point"}, "id": "5826", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321615000224, 41.95988271634301, -85.6321615000224, 41.95988271634301], "geometry": {"coordinates": [-85.6321615000224, 41.95988271634301], "type": "Point"}, "id": "5827", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215978244746, 41.95974852426662, -85.63215978244746, 41.95974852426662], "geometry": {"coordinates": [-85.63215978244746, 41.95974852426662], "type": "Point"}, "id": "5828", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215806058236, 41.95961433193786, -85.63215806058236, 41.95961433193786], "geometry": {"coordinates": [-85.63215806058236, 41.95961433193786], "type": "Point"}, "id": "5829", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215633871727, 41.9594801393265, -85.63215633871727, 41.9594801393265], "geometry": {"coordinates": [-85.63215633871727, 41.9594801393265], "type": "Point"}, "id": "5830", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215461685213, 41.95934594643256, -85.63215461685213, 41.95934594643256], "geometry": {"coordinates": [-85.63215461685213, 41.95934594643256], "type": "Point"}, "id": "5831", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215289498703, 41.959211753256035, -85.63215289498703, 41.959211753256035], "geometry": {"coordinates": [-85.63215289498703, 41.959211753256035], "type": "Point"}, "id": "5832", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63215117312194, 41.959077559796924, -85.63215117312194, 41.959077559796924], "geometry": {"coordinates": [-85.63215117312194, 41.959077559796924], "type": "Point"}, "id": "5833", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214947128517, 41.958943365914465, -85.63214947128517, 41.958943365914465], "geometry": {"coordinates": [-85.63214947128517, 41.958943365914465], "type": "Point"}, "id": "5834", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214778230338, 41.958809171659084, -85.63214778230338, 41.958809171659084], "geometry": {"coordinates": [-85.63214778230338, 41.958809171659084], "type": "Point"}, "id": "5835", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214609332155, 41.95867497712111, -85.63214609332155, 41.95867497712111], "geometry": {"coordinates": [-85.63214609332155, 41.95867497712111], "type": "Point"}, "id": "5836", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214374080178, 41.95854078884466, -85.63214374080178, 41.95854078884466], "geometry": {"coordinates": [-85.63214374080178, 41.95854078884466], "type": "Point"}, "id": "5837", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63214064329976, 41.95840660763303, -85.63214064329976, 41.95840660763303], "geometry": {"coordinates": [-85.63214064329976, 41.95840660763303], "type": "Point"}, "id": "5838", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63213755931763, 41.95827242596667, -85.63213755931763, 41.95827242596667], "geometry": {"coordinates": [-85.63213755931763, 41.95827242596667], "type": "Point"}, "id": "5839", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63213447531288, 41.95813824401805, -85.63213447531288, 41.95813824401805], "geometry": {"coordinates": [-85.63213447531288, 41.95813824401805], "type": "Point"}, "id": "5840", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63213138863449, 41.95800406182091, -85.63213138863449, 41.95800406182091], "geometry": {"coordinates": [-85.63213138863449, 41.95800406182091], "type": "Point"}, "id": "5841", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63212830195612, 41.95786987934122, -85.63212830195612, 41.95786987934122], "geometry": {"coordinates": [-85.63212830195612, 41.95786987934122], "type": "Point"}, "id": "5842", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63212523346446, 41.95773569634838, -85.63212523346446, 41.95773569634838], "geometry": {"coordinates": [-85.63212523346446, 41.95773569634838], "type": "Point"}, "id": "5843", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63212216624606, 41.95760151305687, -85.63212216624606, 41.95760151305687], "geometry": {"coordinates": [-85.63212216624606, 41.95760151305687], "type": "Point"}, "id": "5844", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211909902766, 41.957467329482824, -85.63211909902766, 41.957467329482824], "geometry": {"coordinates": [-85.63211909902766, 41.957467329482824], "type": "Point"}, "id": "5845", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211743665781, 41.95733313492326, -85.63211743665781, 41.95733313492326], "geometry": {"coordinates": [-85.63211743665781, 41.95733313492326], "type": "Point"}, "id": "5846", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211680638085, 41.95719893221799, -85.63211680638085, 41.95719893221799], "geometry": {"coordinates": [-85.63211680638085, 41.95719893221799], "type": "Point"}, "id": "5847", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321161761039, 41.957064729230105, -85.6321161761039, 41.957064729230105], "geometry": {"coordinates": [-85.6321161761039, 41.957064729230105], "type": "Point"}, "id": "5848", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211554582695, 41.95693052595961, -85.63211554582695, 41.95693052595961], "geometry": {"coordinates": [-85.63211554582695, 41.95693052595961], "type": "Point"}, "id": "5849", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211491555, 41.95679632240651, -85.63211491555, 41.95679632240651], "geometry": {"coordinates": [-85.63211491555, 41.95679632240651], "type": "Point"}, "id": "5850", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211428527306, 41.956662118570804, -85.63211428527306, 41.956662118570804], "geometry": {"coordinates": [-85.63211428527306, 41.956662118570804], "type": "Point"}, "id": "5851", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6321136549961, 41.956527914452494, -85.6321136549961, 41.956527914452494], "geometry": {"coordinates": [-85.6321136549961, 41.956527914452494], "type": "Point"}, "id": "5852", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211302471917, 41.95639371005156, -85.63211302471917, 41.95639371005156], "geometry": {"coordinates": [-85.63211302471917, 41.95639371005156], "type": "Point"}, "id": "5853", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211239444222, 41.95625950536804, -85.63211239444222, 41.95625950536804], "geometry": {"coordinates": [-85.63211239444222, 41.95625950536804], "type": "Point"}, "id": "5854", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211176416526, 41.956125300401894, -85.63211176416526, 41.956125300401894], "geometry": {"coordinates": [-85.63211176416526, 41.956125300401894], "type": "Point"}, "id": "5855", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211113388833, 41.955991095153145, -85.63211113388833, 41.955991095153145], "geometry": {"coordinates": [-85.63211113388833, 41.955991095153145], "type": "Point"}, "id": "5856", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63211000508616, 41.95585689200552, -85.63211000508616, 41.95585689200552], "geometry": {"coordinates": [-85.63211000508616, 41.95585689200552], "type": "Point"}, "id": "5857", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210831468439, 41.955722691260654, -85.63210831468439, 41.955722691260654], "geometry": {"coordinates": [-85.63210831468439, 41.955722691260654], "type": "Point"}, "id": "5858", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210662428261, 41.95558849023318, -85.63210662428261, 41.95558849023318], "geometry": {"coordinates": [-85.63210662428261, 41.95558849023318], "type": "Point"}, "id": "5859", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210493388085, 41.955454288923136, -85.63210493388085, 41.955454288923136], "geometry": {"coordinates": [-85.63210493388085, 41.955454288923136], "type": "Point"}, "id": "5860", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210324347908, 41.9553200873305, -85.63210324347908, 41.9553200873305], "geometry": {"coordinates": [-85.63210324347908, 41.9553200873305], "type": "Point"}, "id": "5861", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63210155307732, 41.95518588545528, -85.63210155307732, 41.95518588545528], "geometry": {"coordinates": [-85.63210155307732, 41.95518588545528], "type": "Point"}, "id": "5862", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209986267555, 41.95505168329748, -85.63209986267555, 41.95505168329748], "geometry": {"coordinates": [-85.63209986267555, 41.95505168329748], "type": "Point"}, "id": "5863", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209817227379, 41.95491748085709, -85.63209817227379, 41.95491748085709], "geometry": {"coordinates": [-85.63209817227379, 41.95491748085709], "type": "Point"}, "id": "5864", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209648187201, 41.95478327813411, -85.63209648187201, 41.95478327813411], "geometry": {"coordinates": [-85.63209648187201, 41.95478327813411], "type": "Point"}, "id": "5865", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320947436836, 41.9546490754686, -85.6320947436836, 41.9546490754686], "geometry": {"coordinates": [-85.6320947436836, 41.9546490754686], "type": "Point"}, "id": "5866", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209303188843, 41.954514872330485, -85.63209303188843, 41.954514872330485], "geometry": {"coordinates": [-85.63209303188843, 41.954514872330485], "type": "Point"}, "id": "5867", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63209131576309, 41.95438066894032, -85.63209131576309, 41.95438066894032], "geometry": {"coordinates": [-85.63209131576309, 41.95438066894032], "type": "Point"}, "id": "5868", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208959963777, 41.95424646526756, -85.63208959963777, 41.95424646526756], "geometry": {"coordinates": [-85.63208959963777, 41.95424646526756], "type": "Point"}, "id": "5869", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208788351243, 41.95411226131222, -85.63208788351243, 41.95411226131222], "geometry": {"coordinates": [-85.63208788351243, 41.95411226131222], "type": "Point"}, "id": "5870", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320861673871, 41.9539780570743, -85.6320861673871, 41.9539780570743], "geometry": {"coordinates": [-85.6320861673871, 41.9539780570743], "type": "Point"}, "id": "5871", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208445126176, 41.953843852553796, -85.63208445126176, 41.953843852553796], "geometry": {"coordinates": [-85.63208445126176, 41.953843852553796], "type": "Point"}, "id": "5872", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208273513644, 41.953709647750706, -85.63208273513644, 41.953709647750706], "geometry": {"coordinates": [-85.63208273513644, 41.953709647750706], "type": "Point"}, "id": "5873", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63208103291467, 41.95357544256711, -85.63208103291467, 41.95357544256711], "geometry": {"coordinates": [-85.63208103291467, 41.95357544256711], "type": "Point"}, "id": "5874", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207933098352, 41.953441237098886, -85.63207933098352, 41.953441237098886], "geometry": {"coordinates": [-85.63207933098352, 41.953441237098886], "type": "Point"}, "id": "5875", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207762905235, 41.95330703134808, -85.63207762905235, 41.95330703134808], "geometry": {"coordinates": [-85.63207762905235, 41.95330703134808], "type": "Point"}, "id": "5876", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207592712118, 41.953172825314695, -85.63207592712118, 41.953172825314695], "geometry": {"coordinates": [-85.63207592712118, 41.953172825314695], "type": "Point"}, "id": "5877", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207422519004, 41.95303861899871, -85.63207422519004, 41.95303861899871], "geometry": {"coordinates": [-85.63207422519004, 41.95303861899871], "type": "Point"}, "id": "5878", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207252325888, 41.952904412400166, -85.63207252325888, 41.952904412400166], "geometry": {"coordinates": [-85.63207252325888, 41.952904412400166], "type": "Point"}, "id": "5879", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63207082132772, 41.952770205519016, -85.63207082132772, 41.952770205519016], "geometry": {"coordinates": [-85.63207082132772, 41.952770205519016], "type": "Point"}, "id": "5880", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63206911939655, 41.95263599835529, -85.63206911939655, 41.95263599835529], "geometry": {"coordinates": [-85.63206911939655, 41.95263599835529], "type": "Point"}, "id": "5881", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63206741746541, 41.95250179090899, -85.63206741746541, 41.95250179090899], "geometry": {"coordinates": [-85.63206741746541, 41.95250179090899], "type": "Point"}, "id": "5882", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63206571022076, 41.952367583217466, -85.63206571022076, 41.952367583217466], "geometry": {"coordinates": [-85.63206571022076, 41.952367583217466], "type": "Point"}, "id": "5883", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63206399995079, 41.95223337526463, -85.63206399995079, 41.95223337526463], "geometry": {"coordinates": [-85.63206399995079, 41.95223337526463], "type": "Point"}, "id": "5884", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320622896808, 41.95209916702921, -85.6320622896808, 41.95209916702921], "geometry": {"coordinates": [-85.6320622896808, 41.95209916702921], "type": "Point"}, "id": "5885", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320605794108, 41.951964958511205, -85.6320605794108, 41.951964958511205], "geometry": {"coordinates": [-85.6320605794108, 41.951964958511205], "type": "Point"}, "id": "5886", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205886914082, 41.95183074971062, -85.63205886914082, 41.95183074971062], "geometry": {"coordinates": [-85.63205886914082, 41.95183074971062], "type": "Point"}, "id": "5887", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205715887084, 41.95169654062747, -85.63205715887084, 41.95169654062747], "geometry": {"coordinates": [-85.63205715887084, 41.95169654062747], "type": "Point"}, "id": "5888", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205544860084, 41.95156233126172, -85.63205544860084, 41.95156233126172], "geometry": {"coordinates": [-85.63205544860084, 41.95156233126172], "type": "Point"}, "id": "5889", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205373833085, 41.95142812161339, -85.63205373833085, 41.95142812161339], "geometry": {"coordinates": [-85.63205373833085, 41.95142812161339], "type": "Point"}, "id": "5890", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205202806088, 41.951293911682484, -85.63205202806088, 41.951293911682484], "geometry": {"coordinates": [-85.63205202806088, 41.951293911682484], "type": "Point"}, "id": "5891", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63205031774316, 41.95115970146934, -85.63205031774316, 41.95115970146934], "geometry": {"coordinates": [-85.63205031774316, 41.95115970146934], "type": "Point"}, "id": "5892", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204860702542, 41.95102549097643, -85.63204860702542, 41.95102549097643], "geometry": {"coordinates": [-85.63204860702542, 41.95102549097643], "type": "Point"}, "id": "5893", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204689630768, 41.95089128020093, -85.63204689630768, 41.95089128020093], "geometry": {"coordinates": [-85.63204689630768, 41.95089128020093], "type": "Point"}, "id": "5894", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204518558993, 41.95075706914286, -85.63204518558993, 41.95075706914286], "geometry": {"coordinates": [-85.63204518558993, 41.95075706914286], "type": "Point"}, "id": "5895", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204347487219, 41.95062285780221, -85.63204347487219, 41.95062285780221], "geometry": {"coordinates": [-85.63204347487219, 41.95062285780221], "type": "Point"}, "id": "5896", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63204176415444, 41.95048864617898, -85.63204176415444, 41.95048864617898], "geometry": {"coordinates": [-85.63204176415444, 41.95048864617898], "type": "Point"}, "id": "5897", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320400534367, 41.950354434273166, -85.6320400534367, 41.950354434273166], "geometry": {"coordinates": [-85.6320400534367, 41.950354434273166], "type": "Point"}, "id": "5898", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63203834271894, 41.95022022208477, -85.63203834271894, 41.95022022208477], "geometry": {"coordinates": [-85.63203834271894, 41.95022022208477], "type": "Point"}, "id": "5899", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320366320012, 41.9500860096138, -85.6320366320012, 41.9500860096138], "geometry": {"coordinates": [-85.6320366320012, 41.9500860096138], "type": "Point"}, "id": "5900", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63203492128346, 41.949951796860255, -85.63203492128346, 41.949951796860255], "geometry": {"coordinates": [-85.63203492128346, 41.949951796860255], "type": "Point"}, "id": "5901", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63203320576184, 41.949817583858064, -85.63203320576184, 41.949817583858064], "geometry": {"coordinates": [-85.63203320576184, 41.949817583858064], "type": "Point"}, "id": "5902", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63203148813486, 41.94968337058817, -85.63203148813486, 41.94968337058817], "geometry": {"coordinates": [-85.63203148813486, 41.94968337058817], "type": "Point"}, "id": "5903", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.6320297705079, 41.94954915703568, -85.6320297705079, 41.94954915703568], "geometry": {"coordinates": [-85.6320297705079, 41.94954915703568], "type": "Point"}, "id": "5904", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63202805288091, 41.94941494320063, -85.63202805288091, 41.94941494320063], "geometry": {"coordinates": [-85.63202805288091, 41.94941494320063], "type": "Point"}, "id": "5905", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63202633525395, 41.94928072908301, -85.63202633525395, 41.94928072908301], "geometry": {"coordinates": [-85.63202633525395, 41.94928072908301], "type": "Point"}, "id": "5906", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.63202461762697, 41.94914651468279, -85.63202461762697, 41.94914651468279], "geometry": {"coordinates": [-85.63202461762697, 41.94914651468279], "type": "Point"}, "id": "5907", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965402}, "type": "Feature"}, {"bbox": [-85.61420399999999, 41.953696, -85.61420399999999, 41.953696], "geometry": {"coordinates": [-85.61420399999999, 41.953696], "type": "Point"}, "id": "5908", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61420185618606, 41.953847139037656, -85.61420185618606, 41.953847139037656], "geometry": {"coordinates": [-85.61420185618606, 41.953847139037656], "type": "Point"}, "id": "5909", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.6141998693396, 41.95399827861228, -85.6141998693396, 41.95399827861228], "geometry": {"coordinates": [-85.6141998693396, 41.95399827861228], "type": "Point"}, "id": "5910", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61419889547169, 41.95414942360669, -85.61419889547169, 41.95414942360669], "geometry": {"coordinates": [-85.61419889547169, 41.95414942360669], "type": "Point"}, "id": "5911", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61419792160378, 41.95430056824265, -85.61419792160378, 41.95430056824265], "geometry": {"coordinates": [-85.61419792160378, 41.95430056824265], "type": "Point"}, "id": "5912", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61419694773583, 41.954451712520196, -85.61419694773583, 41.954451712520196], "geometry": {"coordinates": [-85.61419694773583, 41.954451712520196], "type": "Point"}, "id": "5913", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.61419597386792, 41.954602856439315, -85.61419597386792, 41.954602856439315], "geometry": {"coordinates": [-85.61419597386792, 41.954602856439315], "type": "Point"}, "id": "5914", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965151}, "type": "Feature"}, {"bbox": [-85.6322992, 41.9442766, -85.6322992, 41.9442766], "geometry": {"coordinates": [-85.6322992, 41.9442766], "type": "Point"}, "id": "5915", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427773}, "type": "Feature"}, {"bbox": [-85.63247747794463, 41.94421903454606, -85.63247747794463, 41.94421903454606], "geometry": {"coordinates": [-85.63247747794463, 41.94421903454606], "type": "Point"}, "id": "5916", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427773}, "type": "Feature"}, {"bbox": [-85.63263983731999, 41.944139586928266, -85.63263983731999, 41.944139586928266], "geometry": {"coordinates": [-85.63263983731999, 41.944139586928266], "type": "Point"}, "id": "5917", "properties": {"__folium_color": "red", "highway": "primary", "osm_id": 847427773}, "type": "Feature"}, {"bbox": [-85.6235488, 41.937172600000004, -85.6235488, 41.937172600000004], "geometry": {"coordinates": [-85.6235488, 41.937172600000004], "type": "Point"}, "id": "5918", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.6237333900109, 41.93717233335847, -85.6237333900109, 41.93717233335847], "geometry": {"coordinates": [-85.6237333900109, 41.93717233335847], "type": "Point"}, "id": "5919", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.6239179800218, 41.93717206671694, -85.6239179800218, 41.93717206671694], "geometry": {"coordinates": [-85.6239179800218, 41.93717206671694], "type": "Point"}, "id": "5920", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.6241025700327, 41.9371718000754, -85.6241025700327, 41.9371718000754], "geometry": {"coordinates": [-85.6241025700327, 41.9371718000754], "type": "Point"}, "id": "5921", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62428716004362, 41.93717153343385, -85.62428716004362, 41.93717153343385], "geometry": {"coordinates": [-85.62428716004362, 41.93717153343385], "type": "Point"}, "id": "5922", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62447175005452, 41.93717126679231, -85.62447175005452, 41.93717126679231], "geometry": {"coordinates": [-85.62447175005452, 41.93717126679231], "type": "Point"}, "id": "5923", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62465634006543, 41.93717100015078, -85.62465634006543, 41.93717100015078], "geometry": {"coordinates": [-85.62465634006543, 41.93717100015078], "type": "Point"}, "id": "5924", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62484093007126, 41.93717073159012, -85.62484093007126, 41.93717073159012], "geometry": {"coordinates": [-85.62484093007126, 41.93717073159012], "type": "Point"}, "id": "5925", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62502552006178, 41.93717045725256, -85.62502552006178, 41.93717045725256], "geometry": {"coordinates": [-85.62502552006178, 41.93717045725256], "type": "Point"}, "id": "5926", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62521011005231, 41.937170182915004, -85.62521011005231, 41.937170182915004], "geometry": {"coordinates": [-85.62521011005231, 41.937170182915004], "type": "Point"}, "id": "5927", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62539470004285, 41.93716990857744, -85.62539470004285, 41.93716990857744], "geometry": {"coordinates": [-85.62539470004285, 41.93716990857744], "type": "Point"}, "id": "5928", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62557929003336, 41.93716963423987, -85.62557929003336, 41.93716963423987], "geometry": {"coordinates": [-85.62557929003336, 41.93716963423987], "type": "Point"}, "id": "5929", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62576388002549, 41.93716936050355, -85.62576388002549, 41.93716936050355], "geometry": {"coordinates": [-85.62576388002549, 41.93716936050355], "type": "Point"}, "id": "5930", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62594847002697, 41.93716909027957, -85.62594847002697, 41.93716909027957], "geometry": {"coordinates": [-85.62594847002697, 41.93716909027957], "type": "Point"}, "id": "5931", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62613306002847, 41.9371688200556, -85.62613306002847, 41.9371688200556], "geometry": {"coordinates": [-85.62613306002847, 41.9371688200556], "type": "Point"}, "id": "5932", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62631765002996, 41.93716854983161, -85.62631765002996, 41.93716854983161], "geometry": {"coordinates": [-85.62631765002996, 41.93716854983161], "type": "Point"}, "id": "5933", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62650224011428, 41.93716831659218, -85.62650224011428, 41.93716831659218], "geometry": {"coordinates": [-85.62650224011428, 41.93716831659218], "type": "Point"}, "id": "5934", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62668682997197, 41.937167999186464, -85.62668682997197, 41.937167999186464], "geometry": {"coordinates": [-85.62668682997197, 41.937167999186464], "type": "Point"}, "id": "5935", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.62687141994043, 41.93716771861538, -85.62687141994043, 41.93716771861538], "geometry": {"coordinates": [-85.62687141994043, 41.93716771861538], "type": "Point"}, "id": "5936", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.6270560099702, 41.93716745930769, -85.6270560099702, 41.93716745930769], "geometry": {"coordinates": [-85.6270560099702, 41.93716745930769], "type": "Point"}, "id": "5937", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17966681}, "type": "Feature"}, {"bbox": [-85.61591419999999, 41.957757799999996, -85.61591419999999, 41.957757799999996], "geometry": {"coordinates": [-85.61591419999999, 41.957757799999996], "type": "Point"}, "id": "5938", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61591615965534, 41.95789379360866, -85.61591615965534, 41.95789379360866], "geometry": {"coordinates": [-85.61591615965534, 41.95789379360866], "type": "Point"}, "id": "5939", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.6159181193107, 41.95802978692712, -85.6159181193107, 41.95802978692712], "geometry": {"coordinates": [-85.6159181193107, 41.95802978692712], "type": "Point"}, "id": "5940", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592006247619, 41.95816578007305, -85.61592006247619, 41.95816578007305], "geometry": {"coordinates": [-85.61592006247619, 41.95816578007305], "type": "Point"}, "id": "5941", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592161291183, 41.95830177573149, -85.61592161291183, 41.95830177573149], "geometry": {"coordinates": [-85.61592161291183, 41.95830177573149], "type": "Point"}, "id": "5942", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592316334752, 41.958437771099696, -85.61592316334752, 41.958437771099696], "geometry": {"coordinates": [-85.61592316334752, 41.958437771099696], "type": "Point"}, "id": "5943", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592471378317, 41.95857376617768, -85.61592471378317, 41.95857376617768], "geometry": {"coordinates": [-85.61592471378317, 41.95857376617768], "type": "Point"}, "id": "5944", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592489999998, 41.958709765265645, -85.61592489999998, 41.958709765265645], "geometry": {"coordinates": [-85.61592489999998, 41.958709765265645], "type": "Point"}, "id": "5945", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61592489999998, 41.958845764650356, -85.61592489999998, 41.958845764650356], "geometry": {"coordinates": [-85.61592489999998, 41.958845764650356], "type": "Point"}, "id": "5946", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61591816856478, 41.95898132013893, -85.61591816856478, 41.95898132013893], "geometry": {"coordinates": [-85.61591816856478, 41.95898132013893], "type": "Point"}, "id": "5947", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61587835170901, 41.95911350982466, -85.61587835170901, 41.95911350982466], "geometry": {"coordinates": [-85.61587835170901, 41.95911350982466], "type": "Point"}, "id": "5948", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.6158070758545, 41.95923875503541, -85.6158070758545, 41.95923875503541], "geometry": {"coordinates": [-85.6158070758545, 41.95923875503541], "type": "Point"}, "id": "5949", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17967743}, "type": "Feature"}, {"bbox": [-85.61736959999999, 41.93818859999998, -85.61736959999999, 41.93818859999998], "geometry": {"coordinates": [-85.61736959999999, 41.93818859999998], "type": "Point"}, "id": "5950", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61755047828818, 41.9381881142577, -85.61755047828818, 41.9381881142577], "geometry": {"coordinates": [-85.61755047828818, 41.9381881142577], "type": "Point"}, "id": "5951", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61773135657637, 41.9381876285154, -85.61773135657637, 41.9381876285154], "geometry": {"coordinates": [-85.61773135657637, 41.9381876285154], "type": "Point"}, "id": "5952", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61791223486455, 41.93818714277311, -85.61791223486455, 41.93818714277311], "geometry": {"coordinates": [-85.61791223486455, 41.93818714277311], "type": "Point"}, "id": "5953", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61809311311133, 41.9381866486035, -85.61809311311133, 41.9381866486035], "geometry": {"coordinates": [-85.61809311311133, 41.9381866486035], "type": "Point"}, "id": "5954", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61827399134087, 41.9381861509257, -85.61827399134087, 41.9381861509257], "geometry": {"coordinates": [-85.61827399134087, 41.9381861509257], "type": "Point"}, "id": "5955", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61845486957041, 41.93818565324792, -85.61845486957041, 41.93818565324792], "geometry": {"coordinates": [-85.61845486957041, 41.93818565324792], "type": "Point"}, "id": "5956", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61863574779997, 41.938185155570125, -85.61863574779997, 41.938185155570125], "geometry": {"coordinates": [-85.61863574779997, 41.938185155570125], "type": "Point"}, "id": "5957", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61881662602951, 41.938184657892315, -85.61881662602951, 41.938184657892315], "geometry": {"coordinates": [-85.61881662602951, 41.938184657892315], "type": "Point"}, "id": "5958", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61899750426703, 41.93818416182842, -85.61899750426703, 41.93818416182842], "geometry": {"coordinates": [-85.61899750426703, 41.93818416182842], "type": "Point"}, "id": "5959", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61917838252498, 41.93818366989655, -85.61917838252498, 41.93818366989655], "geometry": {"coordinates": [-85.61917838252498, 41.93818366989655], "type": "Point"}, "id": "5960", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61935926078294, 41.938183177964696, -85.61935926078294, 41.938183177964696], "geometry": {"coordinates": [-85.61935926078294, 41.938183177964696], "type": "Point"}, "id": "5961", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.6195401390409, 41.938182686032825, -85.6195401390409, 41.938182686032825], "geometry": {"coordinates": [-85.6195401390409, 41.938182686032825], "type": "Point"}, "id": "5962", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61972101729884, 41.93818219410095, -85.61972101729884, 41.93818219410095], "geometry": {"coordinates": [-85.61972101729884, 41.93818219410095], "type": "Point"}, "id": "5963", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.61990189555681, 41.93818170216908, -85.61990189555681, 41.93818170216908], "geometry": {"coordinates": [-85.61990189555681, 41.93818170216908], "type": "Point"}, "id": "5964", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62008277382623, 41.93818121258709, -85.62008277382623, 41.93818121258709], "geometry": {"coordinates": [-85.62008277382623, 41.93818121258709], "type": "Point"}, "id": "5965", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62026365211392, 41.93818072674694, -85.62026365211392, 41.93818072674694], "geometry": {"coordinates": [-85.62026365211392, 41.93818072674694], "type": "Point"}, "id": "5966", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62044453040164, 41.9381802409068, -85.62044453040164, 41.9381802409068], "geometry": {"coordinates": [-85.62044453040164, 41.9381802409068], "type": "Point"}, "id": "5967", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62062540868935, 41.938179755066656, -85.62062540868935, 41.938179755066656], "geometry": {"coordinates": [-85.62062540868935, 41.938179755066656], "type": "Point"}, "id": "5968", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62080628697704, 41.9381792692265, -85.62080628697704, 41.9381792692265], "geometry": {"coordinates": [-85.62080628697704, 41.9381792692265], "type": "Point"}, "id": "5969", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62098716526476, 41.93817878338635, -85.62098716526476, 41.93817878338635], "geometry": {"coordinates": [-85.62098716526476, 41.93817878338635], "type": "Point"}, "id": "5970", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62116804353613, 41.9381782942327, -85.62116804353613, 41.9381782942327], "geometry": {"coordinates": [-85.62116804353613, 41.9381782942327], "type": "Point"}, "id": "5971", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62134892174635, 41.93817779267982, -85.62134892174635, 41.93817779267982], "geometry": {"coordinates": [-85.62134892174635, 41.93817779267982], "type": "Point"}, "id": "5972", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62152979995653, 41.938177291126934, -85.62152979995653, 41.938177291126934], "geometry": {"coordinates": [-85.62152979995653, 41.938177291126934], "type": "Point"}, "id": "5973", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62171067816672, 41.938176789574044, -85.62171067816672, 41.938176789574044], "geometry": {"coordinates": [-85.62171067816672, 41.938176789574044], "type": "Point"}, "id": "5974", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62189155637694, 41.938176288021154, -85.62189155637694, 41.938176288021154], "geometry": {"coordinates": [-85.62189155637694, 41.938176288021154], "type": "Point"}, "id": "5975", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62207243458714, 41.938175786468264, -85.62207243458714, 41.938175786468264], "geometry": {"coordinates": [-85.62207243458714, 41.938175786468264], "type": "Point"}, "id": "5976", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62225331279733, 41.93817528491537, -85.62225331279733, 41.93817528491537], "geometry": {"coordinates": [-85.62225331279733, 41.93817528491537], "type": "Point"}, "id": "5977", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62243419105963, 41.93817479393235, -85.62243419105963, 41.93817479393235], "geometry": {"coordinates": [-85.62243419105963, 41.93817479393235], "type": "Point"}, "id": "5978", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62261506935232, 41.938174309122125, -85.62261506935232, 41.938174309122125], "geometry": {"coordinates": [-85.62261506935232, 41.938174309122125], "type": "Point"}, "id": "5979", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62279594764503, 41.93817382431188, -85.62279594764503, 41.93817382431188], "geometry": {"coordinates": [-85.62279594764503, 41.93817382431188], "type": "Point"}, "id": "5980", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62297682593773, 41.93817333950166, -85.62297682593773, 41.93817333950166], "geometry": {"coordinates": [-85.62297682593773, 41.93817333950166], "type": "Point"}, "id": "5981", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62315770423044, 41.93817285469141, -85.62315770423044, 41.93817285469141], "geometry": {"coordinates": [-85.62315770423044, 41.93817285469141], "type": "Point"}, "id": "5982", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62333858252315, 41.93817236988116, -85.62333858252315, 41.93817236988116], "geometry": {"coordinates": [-85.62333858252315, 41.93817236988116], "type": "Point"}, "id": "5983", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62351946081584, 41.938171885070915, -85.62351946081584, 41.938171885070915], "geometry": {"coordinates": [-85.62351946081584, 41.938171885070915], "type": "Point"}, "id": "5984", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62370033908077, 41.93817139456876, -85.62370033908077, 41.93817139456876], "geometry": {"coordinates": [-85.62370033908077, 41.93817139456876], "type": "Point"}, "id": "5985", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62388121733979, 41.938170902855255, -85.62388121733979, 41.938170902855255], "geometry": {"coordinates": [-85.62388121733979, 41.938170902855255], "type": "Point"}, "id": "5986", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62406209559883, 41.938170411141755, -85.62406209559883, 41.938170411141755], "geometry": {"coordinates": [-85.62406209559883, 41.938170411141755], "type": "Point"}, "id": "5987", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62424297385785, 41.938169919428255, -85.62424297385785, 41.938169919428255], "geometry": {"coordinates": [-85.62424297385785, 41.938169919428255], "type": "Point"}, "id": "5988", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62442385211688, 41.938169427714755, -85.62442385211688, 41.938169427714755], "geometry": {"coordinates": [-85.62442385211688, 41.938169427714755], "type": "Point"}, "id": "5989", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.6246047303759, 41.93816893600123, -85.6246047303759, 41.93816893600123], "geometry": {"coordinates": [-85.6246047303759, 41.93816893600123], "type": "Point"}, "id": "5990", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62478560863492, 41.93816844428772, -85.62478560863492, 41.93816844428772], "geometry": {"coordinates": [-85.62478560863492, 41.93816844428772], "type": "Point"}, "id": "5991", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62496648690691, 41.93816795522062, -85.62496648690691, 41.93816795522062], "geometry": {"coordinates": [-85.62496648690691, 41.93816795522062], "type": "Point"}, "id": "5992", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62514736518018, 41.93816746641548, -85.62514736518018, 41.93816746641548], "geometry": {"coordinates": [-85.62514736518018, 41.93816746641548], "type": "Point"}, "id": "5993", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62532824345347, 41.938166977610315, -85.62532824345347, 41.938166977610315], "geometry": {"coordinates": [-85.62532824345347, 41.938166977610315], "type": "Point"}, "id": "5994", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}, {"bbox": [-85.62550912172674, 41.938166488805166, -85.62550912172674, 41.938166488805166], "geometry": {"coordinates": [-85.62550912172674, 41.938166488805166], "type": "Point"}, "id": "5995", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 17965778}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " geo_json_2cdcf49f814bc75c93779633485d3cb2.bindTooltip(\n", + " geo_json_59a4635817baf5c4c25f789f1467dc68.bindTooltip(\n", " function(layer){\n", " let div = L.DomUtil.create('div');\n", " \n", @@ -951,13 +945,13 @@ " ,{"className": "foliumtooltip", "sticky": true});\n", " \n", " \n", - " geo_json_2cdcf49f814bc75c93779633485d3cb2.addTo(map_ec33ee37b441a8c47086230ec967eadb);\n", + " geo_json_59a4635817baf5c4c25f789f1467dc68.addTo(map_d49744d1341eec4132e73b3dc7651001);\n", " \n", "</script>\n", "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, "execution_count": 9, @@ -1022,33 +1016,33 @@ " \n", " \n", " \n", - " 256\n", - " 203839666\n", + " 263\n", + " 17966984\n", " ways_line\n", " None\n", - " Hov Aire Drive\n", - " residential\n", - " None\n", + " Portage Avenue\n", + " tertiary\n", " None\n", " None\n", + " asphalt\n", " None\n", " None\n", " None\n", - " LINESTRING (-85.61024 41.95477, -85.61025 41.9...\n", + " LINESTRING (-85.63444 41.94562, -85.63433 41.9...\n", " \n", " \n", "\n", "" ], "text/plain": [ - " osm_id osm_type width name highway layer oneway \\\n", - "256 203839666 ways_line None Hov Aire Drive residential None None \n", + " osm_id osm_type width name highway layer oneway \\\n", + "263 17966984 ways_line None Portage Avenue tertiary None None \n", "\n", - " surface tunnel bridge smoothness \\\n", - "256 None None None None \n", + " surface tunnel bridge smoothness \\\n", + "263 asphalt None None None \n", "\n", " geometry \n", - "256 LINESTRING (-85.61024 41.95477, -85.61025 41.9... " + "263 LINESTRING (-85.63444 41.94562, -85.63433 41.9... " ] }, "execution_count": 10, @@ -1099,7 +1093,7 @@ " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_8efe26dbd01e9df5f68eee70fdda87ce {\n", + " #map_219d37e462e889b34db7551aa43efea0 {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", @@ -1145,95 +1139,95 @@ "<body>\n", " \n", " \n", - " <div class="folium-map" id="map_8efe26dbd01e9df5f68eee70fdda87ce" ></div>\n", + " <div class="folium-map" id="map_219d37e462e889b34db7551aa43efea0" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_8efe26dbd01e9df5f68eee70fdda87ce = L.map(\n", - " "map_8efe26dbd01e9df5f68eee70fdda87ce",\n", + " var map_219d37e462e889b34db7551aa43efea0 = L.map(\n", + " "map_219d37e462e889b34db7551aa43efea0",\n", " {\n", - " center: [41.95926325, -85.60963765],\n", + " center: [41.95380495, -85.6288858],\n", " crs: L.CRS.EPSG3857,\n", " zoom: 10,\n", " zoomControl: true,\n", " preferCanvas: false,\n", " }\n", " );\n", - " L.control.scale().addTo(map_8efe26dbd01e9df5f68eee70fdda87ce);\n", + " L.control.scale().addTo(map_219d37e462e889b34db7551aa43efea0);\n", "\n", " \n", "\n", " \n", " \n", - " var tile_layer_d1e87e45da16e215a8107d4c71ebabe5 = L.tileLayer(\n", + " var tile_layer_be3ad8a8eaa633eb15be539f8dd83169 = L.tileLayer(\n", " "https://tile.openstreetmap.org/{z}/{x}/{y}.png",\n", " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", " );\n", " \n", " \n", - " tile_layer_d1e87e45da16e215a8107d4c71ebabe5.addTo(map_8efe26dbd01e9df5f68eee70fdda87ce);\n", + " tile_layer_be3ad8a8eaa633eb15be539f8dd83169.addTo(map_219d37e462e889b34db7551aa43efea0);\n", " \n", " \n", - " map_8efe26dbd01e9df5f68eee70fdda87ce.fitBounds(\n", - " [[41.9547745, -85.6136071], [41.963752, -85.6056682]],\n", + " map_219d37e462e889b34db7551aa43efea0.fitBounds(\n", + " [[41.9456229, -85.6344386], [41.961987, -85.623333]],\n", " {}\n", " );\n", " \n", " \n", - " function geo_json_16b45da24452e49b89c1bbba93179b2b_styler(feature) {\n", + " function geo_json_f8114f59759bc2c44ccfb6f07213470f_styler(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"color": "purple", "fillColor": "purple", "fillOpacity": 0.5, "weight": 2};\n", " }\n", " }\n", - " function geo_json_16b45da24452e49b89c1bbba93179b2b_highlighter(feature) {\n", + " function geo_json_f8114f59759bc2c44ccfb6f07213470f_highlighter(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.75};\n", " }\n", " }\n", - " function geo_json_16b45da24452e49b89c1bbba93179b2b_pointToLayer(feature, latlng) {\n", + " function geo_json_f8114f59759bc2c44ccfb6f07213470f_pointToLayer(feature, latlng) {\n", " var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};\n", " \n", - " let style = geo_json_16b45da24452e49b89c1bbba93179b2b_styler(feature)\n", + " let style = geo_json_f8114f59759bc2c44ccfb6f07213470f_styler(feature)\n", " Object.assign(opts, style)\n", " \n", " return new L.CircleMarker(latlng, opts)\n", " }\n", "\n", - " function geo_json_16b45da24452e49b89c1bbba93179b2b_onEachFeature(feature, layer) {\n", + " function geo_json_f8114f59759bc2c44ccfb6f07213470f_onEachFeature(feature, layer) {\n", " layer.on({\n", " mouseout: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " geo_json_16b45da24452e49b89c1bbba93179b2b.resetStyle(e.target);\n", + " geo_json_f8114f59759bc2c44ccfb6f07213470f.resetStyle(e.target);\n", " }\n", " },\n", " mouseover: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " const highlightStyle = geo_json_16b45da24452e49b89c1bbba93179b2b_highlighter(e.target.feature)\n", + " const highlightStyle = geo_json_f8114f59759bc2c44ccfb6f07213470f_highlighter(e.target.feature)\n", " e.target.setStyle(highlightStyle);\n", " }\n", " },\n", " });\n", " };\n", - " var geo_json_16b45da24452e49b89c1bbba93179b2b = L.geoJson(null, {\n", - " onEachFeature: geo_json_16b45da24452e49b89c1bbba93179b2b_onEachFeature,\n", + " var geo_json_f8114f59759bc2c44ccfb6f07213470f = L.geoJson(null, {\n", + " onEachFeature: geo_json_f8114f59759bc2c44ccfb6f07213470f_onEachFeature,\n", " \n", - " style: geo_json_16b45da24452e49b89c1bbba93179b2b_styler,\n", - " pointToLayer: geo_json_16b45da24452e49b89c1bbba93179b2b_pointToLayer,\n", + " style: geo_json_f8114f59759bc2c44ccfb6f07213470f_styler,\n", + " pointToLayer: geo_json_f8114f59759bc2c44ccfb6f07213470f_pointToLayer,\n", " });\n", "\n", - " function geo_json_16b45da24452e49b89c1bbba93179b2b_add (data) {\n", - " geo_json_16b45da24452e49b89c1bbba93179b2b\n", + " function geo_json_f8114f59759bc2c44ccfb6f07213470f_add (data) {\n", + " geo_json_f8114f59759bc2c44ccfb6f07213470f\n", " .addData(data);\n", " }\n", - " geo_json_16b45da24452e49b89c1bbba93179b2b_add({"bbox": [-85.6136071, 41.9547745, -85.6056682, 41.963752], "features": [{"bbox": [-85.6136071, 41.9547745, -85.6056682, 41.963752], "geometry": {"coordinates": [[-85.610238, 41.9547745], [-85.6102539, 41.9558449], [-85.6102652, 41.9566041], [-85.610325, 41.9568823], [-85.6105644, 41.9571383], [-85.6130784, 41.9590689], [-85.6133328, 41.9593805], [-85.6135946, 41.959948], [-85.6136071, 41.9629372], [-85.6134392, 41.9633182], [-85.6130151, 41.9636073], [-85.6122729, 41.9637125], [-85.6056682, 41.963752]], "type": "LineString"}, "id": "256", "properties": {"__folium_color": "purple", "bridge": null, "highway": "residential", "layer": null, "name": "Hov Aire Drive", "oneway": null, "osm_id": 203839666, "osm_type": "ways_line", "smoothness": null, "surface": null, "tunnel": null, "width": null}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_f8114f59759bc2c44ccfb6f07213470f_add({"bbox": [-85.6344386, 41.9456229, -85.623333, 41.961987], "features": [{"bbox": [-85.6344386, 41.9456229, -85.623333, 41.961987], "geometry": {"coordinates": [[-85.6344386, 41.9456229], [-85.6343309, 41.9456978], [-85.633951, 41.946174], [-85.6336698, 41.9465918], [-85.633183, 41.947315], [-85.632278, 41.948613], [-85.6320229, 41.9490123], [-85.6313855, 41.9499125], [-85.6312754, 41.9500612], [-85.630835, 41.950656], [-85.6304857, 41.9511945], [-85.6295992, 41.9524346], [-85.628639, 41.953725], [-85.6279787, 41.9546342], [-85.627936, 41.954693], [-85.627582, 41.95532], [-85.627267, 41.955878], [-85.6268359, 41.9565339], [-85.6264337, 41.9571608], [-85.626336, 41.957291], [-85.6262922, 41.9573635], [-85.6256754, 41.9583862], [-85.6255197, 41.9586443], [-85.6252483, 41.9590965], [-85.624619, 41.960145], [-85.624494, 41.960338], [-85.6243433, 41.9605648], [-85.6242808, 41.9606501], [-85.6233606, 41.961948], [-85.623333, 41.961987]], "type": "LineString"}, "id": "263", "properties": {"__folium_color": "purple", "bridge": null, "highway": "tertiary", "layer": null, "name": "Portage Avenue", "oneway": null, "osm_id": 17966984, "osm_type": "ways_line", "smoothness": null, "surface": "asphalt", "tunnel": null, "width": null}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " geo_json_16b45da24452e49b89c1bbba93179b2b.bindTooltip(\n", + " geo_json_f8114f59759bc2c44ccfb6f07213470f.bindTooltip(\n", " function(layer){\n", " let div = L.DomUtil.create('div');\n", " \n", @@ -1257,61 +1251,61 @@ " ,{"className": "foliumtooltip", "sticky": true});\n", " \n", " \n", - " geo_json_16b45da24452e49b89c1bbba93179b2b.addTo(map_8efe26dbd01e9df5f68eee70fdda87ce);\n", + " geo_json_f8114f59759bc2c44ccfb6f07213470f.addTo(map_219d37e462e889b34db7551aa43efea0);\n", " \n", " \n", - " function geo_json_04fe84239f294801db6fbfac50d4b77e_styler(feature) {\n", + " function geo_json_83f8c0c0e767b30f55b4855b27562adb_styler(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"color": "red", "fillColor": "red", "fillOpacity": 0.5, "weight": 2};\n", " }\n", " }\n", - " function geo_json_04fe84239f294801db6fbfac50d4b77e_highlighter(feature) {\n", + " function geo_json_83f8c0c0e767b30f55b4855b27562adb_highlighter(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.75};\n", " }\n", " }\n", - " function geo_json_04fe84239f294801db6fbfac50d4b77e_pointToLayer(feature, latlng) {\n", + " function geo_json_83f8c0c0e767b30f55b4855b27562adb_pointToLayer(feature, latlng) {\n", " var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};\n", " \n", - " let style = geo_json_04fe84239f294801db6fbfac50d4b77e_styler(feature)\n", + " let style = geo_json_83f8c0c0e767b30f55b4855b27562adb_styler(feature)\n", " Object.assign(opts, style)\n", " \n", " return new L.CircleMarker(latlng, opts)\n", " }\n", "\n", - " function geo_json_04fe84239f294801db6fbfac50d4b77e_onEachFeature(feature, layer) {\n", + " function geo_json_83f8c0c0e767b30f55b4855b27562adb_onEachFeature(feature, layer) {\n", " layer.on({\n", " mouseout: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " geo_json_04fe84239f294801db6fbfac50d4b77e.resetStyle(e.target);\n", + " geo_json_83f8c0c0e767b30f55b4855b27562adb.resetStyle(e.target);\n", " }\n", " },\n", " mouseover: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " const highlightStyle = geo_json_04fe84239f294801db6fbfac50d4b77e_highlighter(e.target.feature)\n", + " const highlightStyle = geo_json_83f8c0c0e767b30f55b4855b27562adb_highlighter(e.target.feature)\n", " e.target.setStyle(highlightStyle);\n", " }\n", " },\n", " });\n", " };\n", - " var geo_json_04fe84239f294801db6fbfac50d4b77e = L.geoJson(null, {\n", - " onEachFeature: geo_json_04fe84239f294801db6fbfac50d4b77e_onEachFeature,\n", + " var geo_json_83f8c0c0e767b30f55b4855b27562adb = L.geoJson(null, {\n", + " onEachFeature: geo_json_83f8c0c0e767b30f55b4855b27562adb_onEachFeature,\n", " \n", - " style: geo_json_04fe84239f294801db6fbfac50d4b77e_styler,\n", - " pointToLayer: geo_json_04fe84239f294801db6fbfac50d4b77e_pointToLayer,\n", + " style: geo_json_83f8c0c0e767b30f55b4855b27562adb_styler,\n", + " pointToLayer: geo_json_83f8c0c0e767b30f55b4855b27562adb_pointToLayer,\n", " });\n", "\n", - " function geo_json_04fe84239f294801db6fbfac50d4b77e_add (data) {\n", - " geo_json_04fe84239f294801db6fbfac50d4b77e\n", + " function geo_json_83f8c0c0e767b30f55b4855b27562adb_add (data) {\n", + " geo_json_83f8c0c0e767b30f55b4855b27562adb\n", " .addData(data);\n", " }\n", - " geo_json_04fe84239f294801db6fbfac50d4b77e_add({"bbox": [-85.61360663311632, 41.95477449999999, -85.60584788524874, 41.963750925376594], "features": [{"bbox": [-85.610238, 41.95477449999999, -85.610238, 41.95477449999999], "geometry": {"coordinates": [-85.610238, 41.95477449999999], "type": "Point"}, "id": "1042", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61023998485702, 41.9549081230546, -85.61023998485702, 41.9549081230546], "geometry": {"coordinates": [-85.61023998485702, 41.9549081230546], "type": "Point"}, "id": "1043", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024196971402, 41.955041745829064, -85.61024196971402, 41.955041745829064], "geometry": {"coordinates": [-85.61024196971402, 41.955041745829064], "type": "Point"}, "id": "1044", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024395457106, 41.955175368323374, -85.61024395457106, 41.955175368323374], "geometry": {"coordinates": [-85.61024395457106, 41.955175368323374], "type": "Point"}, "id": "1045", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024593942808, 41.95530899053753, -85.61024593942808, 41.95530899053753], "geometry": {"coordinates": [-85.61024593942808, 41.95530899053753], "type": "Point"}, "id": "1046", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024792428509, 41.95544261247154, -85.61024792428509, 41.95544261247154], "geometry": {"coordinates": [-85.61024792428509, 41.95544261247154], "type": "Point"}, "id": "1047", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61024990914211, 41.95557623412541, -85.61024990914211, 41.95557623412541], "geometry": {"coordinates": [-85.61024990914211, 41.95557623412541], "type": "Point"}, "id": "1048", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025189399913, 41.955709855499116, -85.61025189399913, 41.955709855499116], "geometry": {"coordinates": [-85.61025189399913, 41.955709855499116], "type": "Point"}, "id": "1049", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025387885616, 41.95584347659268, -85.61025387885616, 41.95584347659268], "geometry": {"coordinates": [-85.61025387885616, 41.95584347659268], "type": "Point"}, "id": "1050", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025586762774, 41.9559770973739, -85.61025586762774, 41.9559770973739], "geometry": {"coordinates": [-85.61025586762774, 41.9559770973739], "type": "Point"}, "id": "1051", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025785644146, 41.95611071787463, -85.61025785644146, 41.95611071787463], "geometry": {"coordinates": [-85.61025785644146, 41.95611071787463], "type": "Point"}, "id": "1052", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61025984525517, 41.95624433809521, -85.61025984525517, 41.95624433809521], "geometry": {"coordinates": [-85.61025984525517, 41.95624433809521], "type": "Point"}, "id": "1053", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61026183406892, 41.95637795803564, -85.61026183406892, 41.95637795803564], "geometry": {"coordinates": [-85.61026183406892, 41.95637795803564], "type": "Point"}, "id": "1054", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61026382288264, 41.956511577695906, -85.61026382288264, 41.956511577695906], "geometry": {"coordinates": [-85.61026382288264, 41.956511577695906], "type": "Point"}, "id": "1055", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6102739237243, 41.95664468435825, -85.6102739237243, 41.95664468435825], "geometry": {"coordinates": [-85.6102739237243, 41.95664468435825], "type": "Point"}, "id": "1056", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61030228724547, 41.95677663645899, -85.61030228724547, 41.95677663645899], "geometry": {"coordinates": [-85.61030228724547, 41.95677663645899], "type": "Point"}, "id": "1057", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6103454391866, 41.956904156480284, -85.6103454391866, 41.956904156480284], "geometry": {"coordinates": [-85.6103454391866, 41.956904156480284], "type": "Point"}, "id": "1058", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61044803186743, 41.957013863027626, -85.61044803186743, 41.957013863027626], "geometry": {"coordinates": [-85.61044803186743, 41.957013863027626], "type": "Point"}, "id": "1059", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61055062454828, 41.957123569386106, -85.61055062454828, 41.957123569386106], "geometry": {"coordinates": [-85.61055062454828, 41.957123569386106], "type": "Point"}, "id": "1060", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61067261715357, 41.95722140543561, -85.61067261715357, 41.95722140543561], "geometry": {"coordinates": [-85.61067261715357, 41.95722140543561], "type": "Point"}, "id": "1061", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61079761866522, 41.95731740029536, -85.61079761866522, 41.95731740029536], "geometry": {"coordinates": [-85.61079761866522, 41.95731740029536], "type": "Point"}, "id": "1062", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61092262017682, 41.95741339501049, -85.61092262017682, 41.95741339501049], "geometry": {"coordinates": [-85.61092262017682, 41.95741339501049], "type": "Point"}, "id": "1063", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61104762168847, 41.957509389581034, -85.61104762168847, 41.957509389581034], "geometry": {"coordinates": [-85.61104762168847, 41.957509389581034], "type": "Point"}, "id": "1064", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6111726232001, 41.95760538400698, -85.6111726232001, 41.95760538400698], "geometry": {"coordinates": [-85.6111726232001, 41.95760538400698], "type": "Point"}, "id": "1065", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61129762471174, 41.957701378288334, -85.61129762471174, 41.957701378288334], "geometry": {"coordinates": [-85.61129762471174, 41.957701378288334], "type": "Point"}, "id": "1066", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61142262622337, 41.957797372425084, -85.61142262622337, 41.957797372425084], "geometry": {"coordinates": [-85.61142262622337, 41.957797372425084], "type": "Point"}, "id": "1067", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61154762773499, 41.95789336641723, -85.61154762773499, 41.95789336641723], "geometry": {"coordinates": [-85.61154762773499, 41.95789336641723], "type": "Point"}, "id": "1068", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61167262924663, 41.95798936026479, -85.61167262924663, 41.95798936026479], "geometry": {"coordinates": [-85.61167262924663, 41.95798936026479], "type": "Point"}, "id": "1069", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61179763075826, 41.95808535396775, -85.61179763075826, 41.95808535396775], "geometry": {"coordinates": [-85.61179763075826, 41.95808535396775], "type": "Point"}, "id": "1070", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61192263226988, 41.958181347526114, -85.61192263226988, 41.958181347526114], "geometry": {"coordinates": [-85.61192263226988, 41.958181347526114], "type": "Point"}, "id": "1071", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61204763378151, 41.95827734093987, -85.61204763378151, 41.95827734093987], "geometry": {"coordinates": [-85.61204763378151, 41.95827734093987], "type": "Point"}, "id": "1072", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61217263529316, 41.95837333420904, -85.61217263529316, 41.95837333420904], "geometry": {"coordinates": [-85.61217263529316, 41.95837333420904], "type": "Point"}, "id": "1073", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61229763680478, 41.95846932733361, -85.61229763680478, 41.95846932733361], "geometry": {"coordinates": [-85.61229763680478, 41.95846932733361], "type": "Point"}, "id": "1074", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61242263831642, 41.958565320313575, -85.61242263831642, 41.958565320313575], "geometry": {"coordinates": [-85.61242263831642, 41.958565320313575], "type": "Point"}, "id": "1075", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61254763982805, 41.95866131314896, -85.61254763982805, 41.95866131314896], "geometry": {"coordinates": [-85.61254763982805, 41.95866131314896], "type": "Point"}, "id": "1076", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61267264133967, 41.95875730583973, -85.61267264133967, 41.95875730583973], "geometry": {"coordinates": [-85.61267264133967, 41.95875730583973], "type": "Point"}, "id": "1077", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61279764285132, 41.95885329838591, -85.61279764285132, 41.95885329838591], "geometry": {"coordinates": [-85.61279764285132, 41.95885329838591], "type": "Point"}, "id": "1078", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61292264436295, 41.958949290787494, -85.61292264436295, 41.958949290787494], "geometry": {"coordinates": [-85.61292264436295, 41.958949290787494], "type": "Point"}, "id": "1079", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61304764587457, 41.95904528304447, -85.61304764587457, 41.95904528304447], "geometry": {"coordinates": [-85.61304764587457, 41.95904528304447], "type": "Point"}, "id": "1080", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61314870969272, 41.95915501847097, -85.61314870969272, 41.95915501847097], "geometry": {"coordinates": [-85.61314870969272, 41.95915501847097], "type": "Point"}, "id": "1081", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61324196233588, 41.959269238319, -85.61324196233588, 41.959269238319], "geometry": {"coordinates": [-85.61324196233588, 41.959269238319], "type": "Point"}, "id": "1082", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61333430998337, 41.959383773183234, -85.61333430998337, 41.959383773183234], "geometry": {"coordinates": [-85.61333430998337, 41.959383773183234], "type": "Point"}, "id": "1083", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61339261688397, 41.9595101646229, -85.61339261688397, 41.9595101646229], "geometry": {"coordinates": [-85.61339261688397, 41.9595101646229], "type": "Point"}, "id": "1084", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61345092378454, 41.95963655581187, -85.61345092378454, 41.95963655581187], "geometry": {"coordinates": [-85.61345092378454, 41.95963655581187], "type": "Point"}, "id": "1085", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61350923068512, 41.95976294675015, -85.61350923068512, 41.95976294675015], "geometry": {"coordinates": [-85.61350923068512, 41.95976294675015], "type": "Point"}, "id": "1086", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135675375857, 41.95988933743775, -85.6135675375857, 41.95988933743775], "geometry": {"coordinates": [-85.6135675375857, 41.95988933743775], "type": "Point"}, "id": "1087", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359489941204, 41.960019601839484, -85.61359489941204, 41.960019601839484], "geometry": {"coordinates": [-85.61359489941204, 41.960019601839484], "type": "Point"}, "id": "1088", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359545815985, 41.960153221402805, -85.61359545815985, 41.960153221402805], "geometry": {"coordinates": [-85.61359545815985, 41.960153221402805], "type": "Point"}, "id": "1089", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359601690769, 41.960286840685946, -85.61359601690769, 41.960286840685946], "geometry": {"coordinates": [-85.61359601690769, 41.960286840685946], "type": "Point"}, "id": "1090", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135965756555, 41.96042045968889, -85.6135965756555, 41.96042045968889], "geometry": {"coordinates": [-85.6135965756555, 41.96042045968889], "type": "Point"}, "id": "1091", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359713440332, 41.96055407841166, -85.61359713440332, 41.96055407841166], "geometry": {"coordinates": [-85.61359713440332, 41.96055407841166], "type": "Point"}, "id": "1092", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359769315115, 41.96068769685424, -85.61359769315115, 41.96068769685424], "geometry": {"coordinates": [-85.61359769315115, 41.96068769685424], "type": "Point"}, "id": "1093", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359825189899, 41.96082131501664, -85.61359825189899, 41.96082131501664], "geometry": {"coordinates": [-85.61359825189899, 41.96082131501664], "type": "Point"}, "id": "1094", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6135988106468, 41.960954932898844, -85.6135988106468, 41.960954932898844], "geometry": {"coordinates": [-85.6135988106468, 41.960954932898844], "type": "Point"}, "id": "1095", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359936939462, 41.96108855050086, -85.61359936939462, 41.96108855050086], "geometry": {"coordinates": [-85.61359936939462, 41.96108855050086], "type": "Point"}, "id": "1096", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359992814245, 41.9612221678227, -85.61359992814245, 41.9612221678227], "geometry": {"coordinates": [-85.61359992814245, 41.9612221678227], "type": "Point"}, "id": "1097", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360048689028, 41.96135578486434, -85.61360048689028, 41.96135578486434], "geometry": {"coordinates": [-85.61360048689028, 41.96135578486434], "type": "Point"}, "id": "1098", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360104563809, 41.9614894016258, -85.61360104563809, 41.9614894016258], "geometry": {"coordinates": [-85.61360104563809, 41.9614894016258], "type": "Point"}, "id": "1099", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360160438592, 41.96162301810707, -85.61360160438592, 41.96162301810707], "geometry": {"coordinates": [-85.61360160438592, 41.96162301810707], "type": "Point"}, "id": "1100", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360216313373, 41.961756634308145, -85.61360216313373, 41.961756634308145], "geometry": {"coordinates": [-85.61360216313373, 41.961756634308145], "type": "Point"}, "id": "1101", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360272188155, 41.96189025022904, -85.61360272188155, 41.96189025022904], "geometry": {"coordinates": [-85.61360272188155, 41.96189025022904], "type": "Point"}, "id": "1102", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360328062938, 41.962023865869746, -85.61360328062938, 41.962023865869746], "geometry": {"coordinates": [-85.61360328062938, 41.962023865869746], "type": "Point"}, "id": "1103", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6136038393772, 41.962157481230264, -85.6136038393772, 41.962157481230264], "geometry": {"coordinates": [-85.6136038393772, 41.962157481230264], "type": "Point"}, "id": "1104", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360439812502, 41.9622910963106, -85.61360439812502, 41.9622910963106], "geometry": {"coordinates": [-85.61360439812502, 41.9622910963106], "type": "Point"}, "id": "1105", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360495687285, 41.96242471111074, -85.61360495687285, 41.96242471111074], "geometry": {"coordinates": [-85.61360495687285, 41.96242471111074], "type": "Point"}, "id": "1106", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360551562068, 41.962558325630695, -85.61360551562068, 41.962558325630695], "geometry": {"coordinates": [-85.61360551562068, 41.962558325630695], "type": "Point"}, "id": "1107", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6136060743685, 41.96269193987045, -85.6136060743685, 41.96269193987045], "geometry": {"coordinates": [-85.6136060743685, 41.96269193987045], "type": "Point"}, "id": "1108", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61360663311632, 41.96282555383004, -85.61360663311632, 41.96282555383004], "geometry": {"coordinates": [-85.61360663311632, 41.96282555383004], "type": "Point"}, "id": "1109", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61359790058626, 41.962958075440895, -85.61359790058626, 41.962958075440895], "geometry": {"coordinates": [-85.61359790058626, 41.962958075440895], "type": "Point"}, "id": "1110", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61354194674952, 41.96308504653867, -85.61354194674952, 41.96308504653867], "geometry": {"coordinates": [-85.61354194674952, 41.96308504653867], "type": "Point"}, "id": "1111", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61348599291277, 41.96321201738344, -85.61348599291277, 41.96321201738344], "geometry": {"coordinates": [-85.61348599291277, 41.96321201738344], "type": "Point"}, "id": "1112", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6134175143066, 41.963332982710355, -85.6134175143066, 41.963332982710355], "geometry": {"coordinates": [-85.6134175143066, 41.963332982710355], "type": "Point"}, "id": "1113", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61328506066423, 41.96342327367679, -85.61328506066423, 41.96342327367679], "geometry": {"coordinates": [-85.61328506066423, 41.96342327367679], "type": "Point"}, "id": "1114", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61315260702185, 41.96351356451528, -85.61315260702185, 41.96351356451528], "geometry": {"coordinates": [-85.61315260702185, 41.96351356451528], "type": "Point"}, "id": "1115", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61302015337947, 41.96360385522582, -85.61302015337947, 41.96360385522582], "geometry": {"coordinates": [-85.61302015337947, 41.96360385522582], "type": "Point"}, "id": "1116", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61284532160397, 41.96363136453602, -85.61284532160397, 41.96363136453602], "geometry": {"coordinates": [-85.61284532160397, 41.96363136453602], "type": "Point"}, "id": "1117", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61266880888385, 41.9636563835913, -85.61266880888385, 41.9636563835913], "geometry": {"coordinates": [-85.61266880888385, 41.9636563835913], "type": "Point"}, "id": "1118", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61249229616374, 41.96368140263676, -85.61249229616374, 41.96368140263676], "geometry": {"coordinates": [-85.61249229616374, 41.96368140263676], "type": "Point"}, "id": "1119", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61231578344359, 41.96370642167239, -85.61231578344359, 41.96370642167239], "geometry": {"coordinates": [-85.61231578344359, 41.96370642167239], "type": "Point"}, "id": "1120", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6121368689549, 41.9637133135461, -85.6121368689549, 41.9637133135461], "geometry": {"coordinates": [-85.6121368689549, 41.9637133135461], "type": "Point"}, "id": "1121", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61195718370615, 41.963714388170146, -85.61195718370615, 41.963714388170146], "geometry": {"coordinates": [-85.61195718370615, 41.963714388170146], "type": "Point"}, "id": "1122", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61177749845741, 41.963715462794156, -85.61177749845741, 41.963715462794156], "geometry": {"coordinates": [-85.61177749845741, 41.963715462794156], "type": "Point"}, "id": "1123", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61159781320866, 41.963716537418165, -85.61159781320866, 41.963716537418165], "geometry": {"coordinates": [-85.61159781320866, 41.963716537418165], "type": "Point"}, "id": "1124", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61141812795991, 41.96371761204214, -85.61141812795991, 41.96371761204214], "geometry": {"coordinates": [-85.61141812795991, 41.96371761204214], "type": "Point"}, "id": "1125", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61123844271116, 41.9637186866661, -85.61123844271116, 41.9637186866661], "geometry": {"coordinates": [-85.61123844271116, 41.9637186866661], "type": "Point"}, "id": "1126", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61105875746242, 41.963719761290044, -85.61105875746242, 41.963719761290044], "geometry": {"coordinates": [-85.61105875746242, 41.963719761290044], "type": "Point"}, "id": "1127", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61087907221366, 41.963720835913975, -85.61087907221366, 41.963720835913975], "geometry": {"coordinates": [-85.61087907221366, 41.963720835913975], "type": "Point"}, "id": "1128", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61069938696492, 41.963721910537885, -85.61069938696492, 41.963721910537885], "geometry": {"coordinates": [-85.61069938696492, 41.963721910537885], "type": "Point"}, "id": "1129", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61051970171617, 41.96372298516177, -85.61051970171617, 41.96372298516177], "geometry": {"coordinates": [-85.61051970171617, 41.96372298516177], "type": "Point"}, "id": "1130", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61034001646742, 41.96372405978565, -85.61034001646742, 41.96372405978565], "geometry": {"coordinates": [-85.61034001646742, 41.96372405978565], "type": "Point"}, "id": "1131", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.61016033121867, 41.96372513440951, -85.61016033121867, 41.96372513440951], "geometry": {"coordinates": [-85.61016033121867, 41.96372513440951], "type": "Point"}, "id": "1132", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60998064596993, 41.96372620903334, -85.60998064596993, 41.96372620903334], "geometry": {"coordinates": [-85.60998064596993, 41.96372620903334], "type": "Point"}, "id": "1133", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60980096072117, 41.963727283657164, -85.60980096072117, 41.963727283657164], "geometry": {"coordinates": [-85.60980096072117, 41.963727283657164], "type": "Point"}, "id": "1134", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60962127547243, 41.96372835828097, -85.60962127547243, 41.96372835828097], "geometry": {"coordinates": [-85.60962127547243, 41.96372835828097], "type": "Point"}, "id": "1135", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60944159022368, 41.96372943290475, -85.60944159022368, 41.96372943290475], "geometry": {"coordinates": [-85.60944159022368, 41.96372943290475], "type": "Point"}, "id": "1136", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60926190497494, 41.96373050752851, -85.60926190497494, 41.96373050752851], "geometry": {"coordinates": [-85.60926190497494, 41.96373050752851], "type": "Point"}, "id": "1137", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60908221972619, 41.963731582152256, -85.60908221972619, 41.963731582152256], "geometry": {"coordinates": [-85.60908221972619, 41.963731582152256], "type": "Point"}, "id": "1138", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60890253447745, 41.96373265677599, -85.60890253447745, 41.96373265677599], "geometry": {"coordinates": [-85.60890253447745, 41.96373265677599], "type": "Point"}, "id": "1139", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60872284922868, 41.9637337313997, -85.60872284922868, 41.9637337313997], "geometry": {"coordinates": [-85.60872284922868, 41.9637337313997], "type": "Point"}, "id": "1140", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60854316397996, 41.96373480602339, -85.60854316397996, 41.96373480602339], "geometry": {"coordinates": [-85.60854316397996, 41.96373480602339], "type": "Point"}, "id": "1141", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60836347873119, 41.963735880647064, -85.60836347873119, 41.963735880647064], "geometry": {"coordinates": [-85.60836347873119, 41.963735880647064], "type": "Point"}, "id": "1142", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60818379348245, 41.96373695527072, -85.60818379348245, 41.96373695527072], "geometry": {"coordinates": [-85.60818379348245, 41.96373695527072], "type": "Point"}, "id": "1143", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6080041082337, 41.96373802989436, -85.6080041082337, 41.96373802989436], "geometry": {"coordinates": [-85.6080041082337, 41.96373802989436], "type": "Point"}, "id": "1144", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60782442298496, 41.96373910451798, -85.60782442298496, 41.96373910451798], "geometry": {"coordinates": [-85.60782442298496, 41.96373910451798], "type": "Point"}, "id": "1145", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6076447377362, 41.96374017914158, -85.6076447377362, 41.96374017914158], "geometry": {"coordinates": [-85.6076447377362, 41.96374017914158], "type": "Point"}, "id": "1146", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60746505248747, 41.96374125376516, -85.60746505248747, 41.96374125376516], "geometry": {"coordinates": [-85.60746505248747, 41.96374125376516], "type": "Point"}, "id": "1147", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.6072853672387, 41.96374232838872, -85.6072853672387, 41.96374232838872], "geometry": {"coordinates": [-85.6072853672387, 41.96374232838872], "type": "Point"}, "id": "1148", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60710568198996, 41.96374340301227, -85.60710568198996, 41.96374340301227], "geometry": {"coordinates": [-85.60710568198996, 41.96374340301227], "type": "Point"}, "id": "1149", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60692599674121, 41.9637444776358, -85.60692599674121, 41.9637444776358], "geometry": {"coordinates": [-85.60692599674121, 41.9637444776358], "type": "Point"}, "id": "1150", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60674631149247, 41.96374555225931, -85.60674631149247, 41.96374555225931], "geometry": {"coordinates": [-85.60674631149247, 41.96374555225931], "type": "Point"}, "id": "1151", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60656662624372, 41.96374662688281, -85.60656662624372, 41.96374662688281], "geometry": {"coordinates": [-85.60656662624372, 41.96374662688281], "type": "Point"}, "id": "1152", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60638694099498, 41.96374770150628, -85.60638694099498, 41.96374770150628], "geometry": {"coordinates": [-85.60638694099498, 41.96374770150628], "type": "Point"}, "id": "1153", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60620725574623, 41.963748776129734, -85.60620725574623, 41.963748776129734], "geometry": {"coordinates": [-85.60620725574623, 41.963748776129734], "type": "Point"}, "id": "1154", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60602757049749, 41.963749850753175, -85.60602757049749, 41.963749850753175], "geometry": {"coordinates": [-85.60602757049749, 41.963749850753175], "type": "Point"}, "id": "1155", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}, {"bbox": [-85.60584788524874, 41.963750925376594, -85.60584788524874, 41.963750925376594], "geometry": {"coordinates": [-85.60584788524874, 41.963750925376594], "type": "Point"}, "id": "1156", "properties": {"__folium_color": "red", "highway": "residential", "osm_id": 203839666}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_83f8c0c0e767b30f55b4855b27562adb_add({"bbox": [-85.6344386, 41.9456229, -85.6234169463729, 41.96186852677875], "features": [{"bbox": [-85.6344386, 41.9456229, -85.6344386, 41.9456229], "geometry": {"coordinates": [-85.6344386, 41.9456229], "type": "Point"}, "id": "1126", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63431424253231, 41.9457186800064, -85.63431424253231, 41.9457186800064], "geometry": {"coordinates": [-85.63431424253231, 41.9457186800064], "type": "Point"}, "id": "1127", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63422234451873, 41.94583387333, -85.63422234451873, 41.94583387333], "geometry": {"coordinates": [-85.63422234451873, 41.94583387333], "type": "Point"}, "id": "1128", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63413044650515, 41.945949066445465, -85.63413044650515, 41.945949066445465], "geometry": {"coordinates": [-85.63413044650515, 41.945949066445465], "type": "Point"}, "id": "1129", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63403854849157, 41.9460642593528, -85.63403854849157, 41.9460642593528], "geometry": {"coordinates": [-85.63403854849157, 41.9460642593528], "type": "Point"}, "id": "1130", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6339471845241, 41.94617966895795, -85.6339471845241, 41.94617966895795], "geometry": {"coordinates": [-85.6339471845241, 41.94617966895795], "type": "Point"}, "id": "1131", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63386656999802, 41.94629944429483, -85.63386656999802, 41.94629944429483], "geometry": {"coordinates": [-85.63386656999802, 41.94629944429483], "type": "Point"}, "id": "1132", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63378595547194, 41.94641921940668, -85.63378595547194, 41.94641921940668], "geometry": {"coordinates": [-85.63378595547194, 41.94641921940668], "type": "Point"}, "id": "1133", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63370534094584, 41.9465389942935, -85.63370534094584, 41.9465389942935], "geometry": {"coordinates": [-85.63370534094584, 41.9465389942935], "type": "Point"}, "id": "1134", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63362472298519, 41.94665876767645, -85.63362472298519, 41.94665876767645], "geometry": {"coordinates": [-85.63362472298519, 41.94665876767645], "type": "Point"}, "id": "1135", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63354410231634, 41.94677853982602, -85.63354410231634, 41.94677853982602], "geometry": {"coordinates": [-85.63354410231634, 41.94677853982602], "type": "Point"}, "id": "1136", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63346348164748, 41.946898311750566, -85.63346348164748, 41.946898311750566], "geometry": {"coordinates": [-85.63346348164748, 41.946898311750566], "type": "Point"}, "id": "1137", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63338286097863, 41.94701808345009, -85.63338286097863, 41.94701808345009], "geometry": {"coordinates": [-85.63338286097863, 41.94701808345009], "type": "Point"}, "id": "1138", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63330224030977, 41.9471378549246, -85.63330224030977, 41.9471378549246], "geometry": {"coordinates": [-85.63330224030977, 41.9471378549246], "type": "Point"}, "id": "1139", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63322161964092, 41.94725762617409, -85.63322161964092, 41.94725762617409], "geometry": {"coordinates": [-85.63322161964092, 41.94725762617409], "type": "Point"}, "id": "1140", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63313980970001, 41.947376946467294, -85.63313980970001, 41.947376946467294], "geometry": {"coordinates": [-85.63313980970001, 41.947376946467294], "type": "Point"}, "id": "1141", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63305690623206, 41.947495852093795, -85.63305690623206, 41.947495852093795], "geometry": {"coordinates": [-85.63305690623206, 41.947495852093795], "type": "Point"}, "id": "1142", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6329740027641, 41.94761475749851, -85.6329740027641, 41.94761475749851], "geometry": {"coordinates": [-85.6329740027641, 41.94761475749851], "type": "Point"}, "id": "1143", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63289109929615, 41.94773366268145, -85.63289109929615, 41.94773366268145], "geometry": {"coordinates": [-85.63289109929615, 41.94773366268145], "type": "Point"}, "id": "1144", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6328081958282, 41.94785256764263, -85.6328081958282, 41.94785256764263], "geometry": {"coordinates": [-85.6328081958282, 41.94785256764263], "type": "Point"}, "id": "1145", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63272529236025, 41.94797147238201, -85.63272529236025, 41.94797147238201], "geometry": {"coordinates": [-85.63272529236025, 41.94797147238201], "type": "Point"}, "id": "1146", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6326423888923, 41.94809037689962, -85.6326423888923, 41.94809037689962], "geometry": {"coordinates": [-85.6326423888923, 41.94809037689962], "type": "Point"}, "id": "1147", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63255948542434, 41.94820928119545, -85.63255948542434, 41.94820928119545], "geometry": {"coordinates": [-85.63255948542434, 41.94820928119545], "type": "Point"}, "id": "1148", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63247658195641, 41.94832818526951, -85.63247658195641, 41.94832818526951], "geometry": {"coordinates": [-85.63247658195641, 41.94832818526951], "type": "Point"}, "id": "1149", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63239367848846, 41.94844708912178, -85.63239367848846, 41.94844708912178], "geometry": {"coordinates": [-85.63239367848846, 41.94844708912178], "type": "Point"}, "id": "1150", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63231077502051, 41.94856599275228, -85.63231077502051, 41.94856599275228], "geometry": {"coordinates": [-85.63231077502051, 41.94856599275228], "type": "Point"}, "id": "1151", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63223126671876, 41.948686150321215, -85.63223126671876, 41.948686150321215], "geometry": {"coordinates": [-85.63223126671876, 41.948686150321215], "type": "Point"}, "id": "1152", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63215397824719, 41.94880712765813, -85.63215397824719, 41.94880712765813], "geometry": {"coordinates": [-85.63215397824719, 41.94880712765813], "type": "Point"}, "id": "1153", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63207668977564, 41.94892810476546, -85.63207668977564, 41.94892810476546], "geometry": {"coordinates": [-85.63207668977564, 41.94892810476546], "type": "Point"}, "id": "1154", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63199738733316, 41.94904833178282, -85.63199738733316, 41.94904833178282], "geometry": {"coordinates": [-85.63199738733316, 41.94904833178282], "type": "Point"}, "id": "1155", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63191347480311, 41.94916684210598, -85.63191347480311, 41.94916684210598], "geometry": {"coordinates": [-85.63191347480311, 41.94916684210598], "type": "Point"}, "id": "1156", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63182956227307, 41.94928535220883, -85.63182956227307, 41.94928535220883], "geometry": {"coordinates": [-85.63182956227307, 41.94928535220883], "type": "Point"}, "id": "1157", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63174564974304, 41.94940386209135, -85.63174564974304, 41.94940386209135], "geometry": {"coordinates": [-85.63174564974304, 41.94940386209135], "type": "Point"}, "id": "1158", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63166173721301, 41.94952237175357, -85.63166173721301, 41.94952237175357], "geometry": {"coordinates": [-85.63166173721301, 41.94952237175357], "type": "Point"}, "id": "1159", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63157782468296, 41.94964088119545, -85.63157782468296, 41.94964088119545], "geometry": {"coordinates": [-85.63157782468296, 41.94964088119545], "type": "Point"}, "id": "1160", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63149391215293, 41.94975939041702, -85.63149391215293, 41.94975939041702], "geometry": {"coordinates": [-85.63149391215293, 41.94975939041702], "type": "Point"}, "id": "1161", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63140999962289, 41.94987789941827, -85.63140999962289, 41.94987789941827], "geometry": {"coordinates": [-85.63140999962289, 41.94987789941827], "type": "Point"}, "id": "1162", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63132399380548, 41.94999556971693, -85.63132399380548, 41.94999556971693], "geometry": {"coordinates": [-85.63132399380548, 41.94999556971693], "type": "Point"}, "id": "1163", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63123712496724, 41.95011289411098, -85.63123712496724, 41.95011289411098], "geometry": {"coordinates": [-85.63123712496724, 41.95011289411098], "type": "Point"}, "id": "1164", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63115025634647, 41.95023021837813, -85.63115025634647, 41.95023021837813], "geometry": {"coordinates": [-85.63115025634647, 41.95023021837813], "type": "Point"}, "id": "1165", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63106338772566, 41.95034754242935, -85.63106338772566, 41.95034754242935], "geometry": {"coordinates": [-85.63106338772566, 41.95034754242935], "type": "Point"}, "id": "1166", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63097651910489, 41.95046486626462, -85.63097651910489, 41.95046486626462], "geometry": {"coordinates": [-85.63097651910489, 41.95046486626462], "type": "Point"}, "id": "1167", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6308896504841, 41.95058218988397, -85.6308896504841, 41.95058218988397], "geometry": {"coordinates": [-85.6308896504841, 41.95058218988397], "type": "Point"}, "id": "1168", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63080597908242, 41.95070074040839, -85.63080597908242, 41.95070074040839], "geometry": {"coordinates": [-85.63080597908242, 41.95070074040839], "type": "Point"}, "id": "1169", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63072773101025, 41.95082137223032, -85.63072773101025, 41.95082137223032], "geometry": {"coordinates": [-85.63072773101025, 41.95082137223032], "type": "Point"}, "id": "1170", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63064948293807, 41.95094200382396, -85.63064948293807, 41.95094200382396], "geometry": {"coordinates": [-85.63064948293807, 41.95094200382396], "type": "Point"}, "id": "1171", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6305712348659, 41.95106263518932, -85.6305712348659, 41.95106263518932], "geometry": {"coordinates": [-85.6305712348659, 41.95106263518932], "type": "Point"}, "id": "1172", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63049298679374, 41.951183266326375, -85.63049298679374, 41.951183266326375], "geometry": {"coordinates": [-85.63049298679374, 41.951183266326375], "type": "Point"}, "id": "1173", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63040903387089, 41.951301747051964, -85.63040903387089, 41.951301747051964], "geometry": {"coordinates": [-85.63040903387089, 41.951301747051964], "type": "Point"}, "id": "1174", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6303244951346, 41.951420006762085, -85.6303244951346, 41.951420006762085], "geometry": {"coordinates": [-85.6303244951346, 41.951420006762085], "type": "Point"}, "id": "1175", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63023995639834, 41.9515382662528, -85.63023995639834, 41.9515382662528], "geometry": {"coordinates": [-85.63023995639834, 41.9515382662528], "type": "Point"}, "id": "1176", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63015541766208, 41.95165652552411, -85.63015541766208, 41.95165652552411], "geometry": {"coordinates": [-85.63015541766208, 41.95165652552411], "type": "Point"}, "id": "1177", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.63007087892579, 41.95177478457602, -85.63007087892579, 41.95177478457602], "geometry": {"coordinates": [-85.63007087892579, 41.95177478457602], "type": "Point"}, "id": "1178", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62998634018952, 41.95189304340851, -85.62998634018952, 41.95189304340851], "geometry": {"coordinates": [-85.62998634018952, 41.95189304340851], "type": "Point"}, "id": "1179", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62990180145326, 41.9520113020216, -85.62990180145326, 41.9520113020216], "geometry": {"coordinates": [-85.62990180145326, 41.9520113020216], "type": "Point"}, "id": "1180", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62981726271698, 41.952129560415294, -85.62981726271698, 41.952129560415294], "geometry": {"coordinates": [-85.62981726271698, 41.952129560415294], "type": "Point"}, "id": "1181", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62973272398071, 41.95224781858957, -85.62973272398071, 41.95224781858957], "geometry": {"coordinates": [-85.62973272398071, 41.95224781858957], "type": "Point"}, "id": "1182", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62964818524443, 41.95236607654445, -85.62964818524443, 41.95236607654445], "geometry": {"coordinates": [-85.62964818524443, 41.95236607654445], "type": "Point"}, "id": "1183", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62956252826143, 41.95248388314121, -85.62956252826143, 41.95248388314121], "geometry": {"coordinates": [-85.62956252826143, 41.95248388314121], "type": "Point"}, "id": "1184", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62947533056928, 41.95260106794698, -85.62947533056928, 41.95260106794698], "geometry": {"coordinates": [-85.62947533056928, 41.95260106794698], "type": "Point"}, "id": "1185", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62938813287712, 41.952718252537316, -85.62938813287712, 41.952718252537316], "geometry": {"coordinates": [-85.62938813287712, 41.952718252537316], "type": "Point"}, "id": "1186", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62930093518499, 41.952835436912196, -85.62930093518499, 41.952835436912196], "geometry": {"coordinates": [-85.62930093518499, 41.952835436912196], "type": "Point"}, "id": "1187", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62921373749285, 41.952952621071645, -85.62921373749285, 41.952952621071645], "geometry": {"coordinates": [-85.62921373749285, 41.952952621071645], "type": "Point"}, "id": "1188", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6291265398007, 41.95306980501564, -85.6291265398007, 41.95306980501564], "geometry": {"coordinates": [-85.6291265398007, 41.95306980501564], "type": "Point"}, "id": "1189", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62903934210856, 41.95318698874419, -85.62903934210856, 41.95318698874419], "geometry": {"coordinates": [-85.62903934210856, 41.95318698874419], "type": "Point"}, "id": "1190", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62895214441642, 41.9533041722573, -85.62895214441642, 41.9533041722573], "geometry": {"coordinates": [-85.62895214441642, 41.9533041722573], "type": "Point"}, "id": "1191", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62886494672425, 41.953421355554966, -85.62886494672425, 41.953421355554966], "geometry": {"coordinates": [-85.62886494672425, 41.953421355554966], "type": "Point"}, "id": "1192", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62877774903212, 41.95353853863719, -85.62877774903212, 41.95353853863719], "geometry": {"coordinates": [-85.62877774903212, 41.95353853863719], "type": "Point"}, "id": "1193", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62869055133997, 41.95365572150397, -85.62869055133997, 41.95365572150397], "geometry": {"coordinates": [-85.62869055133997, 41.95365572150397], "type": "Point"}, "id": "1194", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6286040149232, 41.95377317302239, -85.6286040149232, 41.95377317302239], "geometry": {"coordinates": [-85.6286040149232, 41.95377317302239], "type": "Point"}, "id": "1195", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62851843483512, 41.95389101315613, -85.62851843483512, 41.95389101315613], "geometry": {"coordinates": [-85.62851843483512, 41.95389101315613], "type": "Point"}, "id": "1196", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62843285474706, 41.954008853072, -85.62843285474706, 41.954008853072], "geometry": {"coordinates": [-85.62843285474706, 41.954008853072], "type": "Point"}, "id": "1197", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.628347274659, 41.95412669277, -85.628347274659, 41.95412669277], "geometry": {"coordinates": [-85.628347274659, 41.95412669277], "type": "Point"}, "id": "1198", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62826169457092, 41.95424453225012, -85.62826169457092, 41.95424453225012], "geometry": {"coordinates": [-85.62826169457092, 41.95424453225012], "type": "Point"}, "id": "1199", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62817611448287, 41.95436237151238, -85.62817611448287, 41.95436237151238], "geometry": {"coordinates": [-85.62817611448287, 41.95436237151238], "type": "Point"}, "id": "1200", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62809053439483, 41.95448021055676, -85.62809053439483, 41.95448021055676], "geometry": {"coordinates": [-85.62809053439483, 41.95448021055676], "type": "Point"}, "id": "1201", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62800495430675, 41.954598049383286, -85.62800495430675, 41.954598049383286], "geometry": {"coordinates": [-85.62800495430675, 41.954598049383286], "type": "Point"}, "id": "1202", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62792245794279, 41.954716985621594, -85.62792245794279, 41.954716985621594], "geometry": {"coordinates": [-85.62792245794279, 41.954716985621594], "type": "Point"}, "id": "1203", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62785274006596, 41.95484046942101, -85.62785274006596, 41.95484046942101], "geometry": {"coordinates": [-85.62785274006596, 41.95484046942101], "type": "Point"}, "id": "1204", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62778302218913, 41.95496395298116, -85.62778302218913, 41.95496395298116], "geometry": {"coordinates": [-85.62778302218913, 41.95496395298116], "type": "Point"}, "id": "1205", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62771330431231, 41.95508743630208, -85.62771330431231, 41.95508743630208], "geometry": {"coordinates": [-85.62771330431231, 41.95508743630208], "type": "Point"}, "id": "1206", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6276435864355, 41.955210919383745, -85.6276435864355, 41.955210919383745], "geometry": {"coordinates": [-85.6276435864355, 41.955210919383745], "type": "Point"}, "id": "1207", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62757386956784, 41.95533440254125, -85.62757386956784, 41.95533440254125], "geometry": {"coordinates": [-85.62757386956784, 41.95533440254125], "type": "Point"}, "id": "1208", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62750416034353, 41.95545788784592, -85.62750416034353, 41.95545788784592], "geometry": {"coordinates": [-85.62750416034353, 41.95545788784592], "type": "Point"}, "id": "1209", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62743445111923, 41.95558137291132, -85.62743445111923, 41.95558137291132], "geometry": {"coordinates": [-85.62743445111923, 41.95558137291132], "type": "Point"}, "id": "1210", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62736474189492, 41.95570485773748, -85.62736474189492, 41.95570485773748], "geometry": {"coordinates": [-85.62736474189492, 41.95570485773748], "type": "Point"}, "id": "1211", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62729503267062, 41.95582834232437, -85.62729503267062, 41.95582834232437], "geometry": {"coordinates": [-85.62729503267062, 41.95582834232437], "type": "Point"}, "id": "1212", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62721971964318, 41.95594993534706, -85.62721971964318, 41.95594993534706], "geometry": {"coordinates": [-85.62721971964318, 41.95594993534706], "type": "Point"}, "id": "1213", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62714063736051, 41.95607025598868, -85.62714063736051, 41.95607025598868], "geometry": {"coordinates": [-85.62714063736051, 41.95607025598868], "type": "Point"}, "id": "1214", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62706155507784, 41.956190576403145, -85.62706155507784, 41.956190576403145], "geometry": {"coordinates": [-85.62706155507784, 41.956190576403145], "type": "Point"}, "id": "1215", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62698247279518, 41.956310896590445, -85.62698247279518, 41.956310896590445], "geometry": {"coordinates": [-85.62698247279518, 41.956310896590445], "type": "Point"}, "id": "1216", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62690339051251, 41.95643121655059, -85.62690339051251, 41.95643121655059], "geometry": {"coordinates": [-85.62690339051251, 41.95643121655059], "type": "Point"}, "id": "1217", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62682453329407, 41.956551617110875, -85.62682453329407, 41.956551617110875], "geometry": {"coordinates": [-85.62682453329407, 41.956551617110875], "type": "Point"}, "id": "1218", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6267469864622, 41.95667248804176, -85.6267469864622, 41.95667248804176], "geometry": {"coordinates": [-85.6267469864622, 41.95667248804176], "type": "Point"}, "id": "1219", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62666943963032, 41.9567933587434, -85.62666943963032, 41.9567933587434], "geometry": {"coordinates": [-85.62666943963032, 41.9567933587434], "type": "Point"}, "id": "1220", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62659189279842, 41.95691422921578, -85.62659189279842, 41.95691422921578], "geometry": {"coordinates": [-85.62659189279842, 41.95691422921578], "type": "Point"}, "id": "1221", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62651434596653, 41.957035099458935, -85.62651434596653, 41.957035099458935], "geometry": {"coordinates": [-85.62651434596653, 41.957035099458935], "type": "Point"}, "id": "1222", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62643679913465, 41.957155969472836, -85.62643679913465, 41.957155969472836], "geometry": {"coordinates": [-85.62643679913465, 41.957155969472836], "type": "Point"}, "id": "1223", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62634945259325, 41.9572730724043, -85.62634945259325, 41.9572730724043], "geometry": {"coordinates": [-85.62634945259325, 41.9572730724043], "type": "Point"}, "id": "1224", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62627353899668, 41.95739444156387, -85.62627353899668, 41.95739444156387], "geometry": {"coordinates": [-85.62627353899668, 41.95739444156387], "type": "Point"}, "id": "1225", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62619984290957, 41.95751663592861, -85.62619984290957, 41.95751663592861], "geometry": {"coordinates": [-85.62619984290957, 41.95751663592861], "type": "Point"}, "id": "1226", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6261261468225, 41.95763883005906, -85.6261261468225, 41.95763883005906], "geometry": {"coordinates": [-85.6261261468225, 41.95763883005906], "type": "Point"}, "id": "1227", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62605245073541, 41.9577610239552, -85.62605245073541, 41.9577610239552], "geometry": {"coordinates": [-85.62605245073541, 41.9577610239552], "type": "Point"}, "id": "1228", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62597875464833, 41.95788321761705, -85.62597875464833, 41.95788321761705], "geometry": {"coordinates": [-85.62597875464833, 41.95788321761705], "type": "Point"}, "id": "1229", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62590505856123, 41.9580054110446, -85.62590505856123, 41.9580054110446], "geometry": {"coordinates": [-85.62590505856123, 41.9580054110446], "type": "Point"}, "id": "1230", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62583136247414, 41.95812760423786, -85.62583136247414, 41.95812760423786], "geometry": {"coordinates": [-85.62583136247414, 41.95812760423786], "type": "Point"}, "id": "1231", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62575766638706, 41.9582497971968, -85.62575766638706, 41.9582497971968], "geometry": {"coordinates": [-85.62575766638706, 41.9582497971968], "type": "Point"}, "id": "1232", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62568397029996, 41.95837198992146, -85.62568397029996, 41.95837198992146], "geometry": {"coordinates": [-85.62568397029996, 41.95837198992146], "type": "Point"}, "id": "1233", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62561026171082, 41.95849417824173, -85.62561026171082, 41.95849417824173], "geometry": {"coordinates": [-85.62561026171082, 41.95849417824173], "type": "Point"}, "id": "1234", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62553655147644, 41.958616365778944, -85.62553655147644, 41.958616365778944], "geometry": {"coordinates": [-85.62553655147644, 41.958616365778944], "type": "Point"}, "id": "1235", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6254630832967, 41.95873863362238, -85.6254630832967, 41.95873863362238], "geometry": {"coordinates": [-85.6254630832967, 41.95873863362238], "type": "Point"}, "id": "1236", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62538968685574, 41.95886092510133, -85.62538968685574, 41.95886092510133], "geometry": {"coordinates": [-85.62538968685574, 41.95886092510133], "type": "Point"}, "id": "1237", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62531629041476, 41.95898321634559, -85.62531629041476, 41.95898321634559], "geometry": {"coordinates": [-85.62531629041476, 41.95898321634559], "type": "Point"}, "id": "1238", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62524289392297, 41.959105507338286, -85.62524289392297, 41.959105507338286], "geometry": {"coordinates": [-85.62524289392297, 41.959105507338286], "type": "Point"}, "id": "1239", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62516949679176, 41.9592277978841, -85.62516949679176, 41.9592277978841], "geometry": {"coordinates": [-85.62516949679176, 41.9592277978841], "type": "Point"}, "id": "1240", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62509609966055, 41.95935008819522, -85.62509609966055, 41.95935008819522], "geometry": {"coordinates": [-85.62509609966055, 41.95935008819522], "type": "Point"}, "id": "1241", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62502270252934, 41.95947237827167, -85.62502270252934, 41.95947237827167], "geometry": {"coordinates": [-85.62502270252934, 41.95947237827167], "type": "Point"}, "id": "1242", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62494930539812, 41.95959466811344, -85.62494930539812, 41.95959466811344], "geometry": {"coordinates": [-85.62494930539812, 41.95959466811344], "type": "Point"}, "id": "1243", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62487590826689, 41.959716957720524, -85.62487590826689, 41.959716957720524], "geometry": {"coordinates": [-85.62487590826689, 41.959716957720524], "type": "Point"}, "id": "1244", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62480251113567, 41.95983924709293, -85.62480251113567, 41.95983924709293], "geometry": {"coordinates": [-85.62480251113567, 41.95983924709293], "type": "Point"}, "id": "1245", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62472911400447, 41.959961536230644, -85.62472911400447, 41.959961536230644], "geometry": {"coordinates": [-85.62472911400447, 41.959961536230644], "type": "Point"}, "id": "1246", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62465571687325, 41.96008382513369, -85.62465571687325, 41.96008382513369], "geometry": {"coordinates": [-85.62465571687325, 41.96008382513369], "type": "Point"}, "id": "1247", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62457994832032, 41.9602052958562, -85.62457994832032, 41.9602052958562], "geometry": {"coordinates": [-85.62457994832032, 41.9602052958562], "type": "Point"}, "id": "1248", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62450180597847, 41.96032594758634, -85.62450180597847, 41.96032594758634], "geometry": {"coordinates": [-85.62450180597847, 41.96032594758634], "type": "Point"}, "id": "1249", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62442219426858, 41.96044606605879, -85.62442219426858, 41.96044606605879], "geometry": {"coordinates": [-85.62442219426858, 41.96044606605879], "type": "Point"}, "id": "1250", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62434234899477, 41.960566097932805, -85.62434234899477, 41.960566097932805], "geometry": {"coordinates": [-85.62434234899477, 41.960566097932805], "type": "Point"}, "id": "1251", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62425680892031, 41.960683938655905, -85.62425680892031, 41.960683938655905], "geometry": {"coordinates": [-85.62425680892031, 41.960683938655905], "type": "Point"}, "id": "1252", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62417282266559, 41.96080239845919, -85.62417282266559, 41.96080239845919], "geometry": {"coordinates": [-85.62417282266559, 41.96080239845919], "type": "Point"}, "id": "1253", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62408883641083, 41.96092085804224, -85.62408883641083, 41.96092085804224], "geometry": {"coordinates": [-85.62408883641083, 41.96092085804224], "type": "Point"}, "id": "1254", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62400485015608, 41.96103931740508, -85.62400485015608, 41.96103931740508], "geometry": {"coordinates": [-85.62400485015608, 41.96103931740508], "type": "Point"}, "id": "1255", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62392086390135, 41.9611577765477, -85.62392086390135, 41.9611577765477], "geometry": {"coordinates": [-85.62392086390135, 41.9611577765477], "type": "Point"}, "id": "1256", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6238368776466, 41.961276235470095, -85.6238368776466, 41.961276235470095], "geometry": {"coordinates": [-85.6238368776466, 41.961276235470095], "type": "Point"}, "id": "1257", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62375289139186, 41.96139469417228, -85.62375289139186, 41.96139469417228], "geometry": {"coordinates": [-85.62375289139186, 41.96139469417228], "type": "Point"}, "id": "1258", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62366890513711, 41.96151315265423, -85.62366890513711, 41.96151315265423], "geometry": {"coordinates": [-85.62366890513711, 41.96151315265423], "type": "Point"}, "id": "1259", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62358491888237, 41.96163161091595, -85.62358491888237, 41.96163161091595], "geometry": {"coordinates": [-85.62358491888237, 41.96163161091595], "type": "Point"}, "id": "1260", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.62350093262762, 41.961750068957464, -85.62350093262762, 41.961750068957464], "geometry": {"coordinates": [-85.62350093262762, 41.961750068957464], "type": "Point"}, "id": "1261", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}, {"bbox": [-85.6234169463729, 41.96186852677875, -85.6234169463729, 41.96186852677875], "geometry": {"coordinates": [-85.6234169463729, 41.96186852677875], "type": "Point"}, "id": "1262", "properties": {"__folium_color": "red", "highway": "tertiary", "osm_id": 17966984}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " geo_json_04fe84239f294801db6fbfac50d4b77e.bindTooltip(\n", + " geo_json_83f8c0c0e767b30f55b4855b27562adb.bindTooltip(\n", " function(layer){\n", " let div = L.DomUtil.create('div');\n", " \n", @@ -1335,13 +1329,13 @@ " ,{"className": "foliumtooltip", "sticky": true});\n", " \n", " \n", - " geo_json_04fe84239f294801db6fbfac50d4b77e.addTo(map_8efe26dbd01e9df5f68eee70fdda87ce);\n", + " geo_json_83f8c0c0e767b30f55b4855b27562adb.addTo(map_219d37e462e889b34db7551aa43efea0);\n", " \n", "</script>\n", "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, "execution_count": 11, @@ -1378,7 +1372,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.12.1" + "version": "3.12.2" } }, "nbformat": 4, diff --git a/src/create_points.py b/src/create_points.py index 00d782f..e0ac29a 100644 --- a/src/create_points.py +++ b/src/create_points.py @@ -16,46 +16,36 @@ import typer DEFAULT_MINI_DIST = 20.0 # meters -HIGHWAY_VALUES = { - None, - " ", - "bridleway", - "footway", - "motorway", - "motorway_link", - "pedestrian", +HIGHWAY_VALUES_TO_KEEP = { "primary", "primary_link", "secondary", "secondary_link", - "service", - "steps", "tertiary", "tertiary_link", - "trunk", - "trunk_link", + "residential", } app = typer.Typer() -def remove_highways(gdf: gpd.GeoDataFrame): - """Returns a copy of a GeoDataFrame of OpenStreetMap road features with highways - removed. +def filter_by_highway_type(gdf: gpd.GeoDataFrame): + """Returns a copy of a GeoDataFrame of OpenStreetMap road features filtered by + highway type. Args: gdf (geopandas.GeoDataFrame): OpenStreetMap features. Returns: - geopandas.GeoDataFrame: Copy of input GeoDataFrame with highway features - removed. + geopandas.GeoDataFrame: Copy of input GeoDataFrame of features filtered by + highway type. """ if "highway" not in gdf.columns: raise ValueError( "'highway' column not found in input GeoDataFrame. " "Input data must be of OpenStreetMap roads." ) - out_gdf = gdf[~gdf["highway"].isin(HIGHWAY_VALUES)].copy() + out_gdf = gdf[gdf["highway"].isin(HIGHWAY_VALUES_TO_KEEP)].copy() return out_gdf @@ -144,7 +134,7 @@ def main( ] = False, ): gdf = gpd.read_file(in_file) - gdf = remove_highways(gdf) + gdf = filter_by_highway_type(gdf) if drop_null: gdf = gdf[~gdf.geometry.isna()] else: