{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "c66e3b7d",
"metadata": {
"execution": {
"iopub.execute_input": "2026-04-06T22:59:42.288150Z",
"iopub.status.busy": "2026-04-06T22:59:42.287855Z",
"iopub.status.idle": "2026-04-06T22:59:42.764595Z",
"shell.execute_reply": "2026-04-06T22:59:42.763435Z"
}
},
"outputs": [
{
"data": {
"text/html": [
"
\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" index | \n",
" station_id | \n",
" name | \n",
" status | \n",
" latitude | \n",
" longitude | \n",
"
\n",
" \n",
" \n",
" \n",
" | 0 | \n",
" 0 | \n",
" 31620 | \n",
" 5th & F St NW | \n",
" open | \n",
" 38.897637 | \n",
" -77.018126 | \n",
"
\n",
" \n",
" | 1 | \n",
" 1 | \n",
" 31105 | \n",
" 14th & Harvard St NW | \n",
" open | \n",
" 38.926638 | \n",
" -77.032126 | \n",
"
\n",
" \n",
" | 2 | \n",
" 2 | \n",
" 31400 | \n",
" Georgia & New Hampshire Ave NW | \n",
" closed | \n",
" 38.935638 | \n",
" -77.024126 | \n",
"
\n",
" \n",
" | 3 | \n",
" 3 | \n",
" 31111 | \n",
" 10th & U St NW | \n",
" open | \n",
" 38.917638 | \n",
" -77.025126 | \n",
"
\n",
" \n",
" | 4 | \n",
" 4 | \n",
" 31104 | \n",
" Adams Mill & Columbia Rd NW | \n",
" open | \n",
" 38.922638 | \n",
" -77.042126 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" index station_id name status latitude \\\n",
"0 0 31620 5th & F St NW open 38.897637 \n",
"1 1 31105 14th & Harvard St NW open 38.926638 \n",
"2 2 31400 Georgia & New Hampshire Ave NW closed 38.935638 \n",
"3 3 31111 10th & U St NW open 38.917638 \n",
"4 4 31104 Adams Mill & Columbia Rd NW open 38.922638 \n",
"\n",
" longitude \n",
"0 -77.018126 \n",
"1 -77.032126 \n",
"2 -77.024126 \n",
"3 -77.025126 \n",
"4 -77.042126 "
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import pandas as pd\n",
"stations = pd.read_sql_query(\"\"\"select * from bikeshare_stations where latitude is not NULL\"\"\",'sqlite:///_static/bikeshare.db')\n",
"stations.head()"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "95acd07f",
"metadata": {
"execution": {
"iopub.execute_input": "2026-04-06T22:59:42.767188Z",
"iopub.status.busy": "2026-04-06T22:59:42.766847Z",
"iopub.status.idle": "2026-04-06T22:59:42.832997Z",
"shell.execute_reply": "2026-04-06T22:59:42.831751Z"
}
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" station_id | \n",
" name | \n",
" status | \n",
" latitude | \n",
" longitude | \n",
"
\n",
" \n",
" \n",
" \n",
" | 0 | \n",
" 31620 | \n",
" 5th & F St NW | \n",
" open | \n",
" 38.896301 | \n",
" -77.027463 | \n",
"
\n",
" \n",
" | 1 | \n",
" 31105 | \n",
" 14th & Harvard St NW | \n",
" open | \n",
" 38.926571 | \n",
" -77.032414 | \n",
"
\n",
" \n",
" | 2 | \n",
" 31400 | \n",
" Georgia & New Hampshire Ave NW | \n",
" open | \n",
" 39.221500 | \n",
" -77.059858 | \n",
"
\n",
" \n",
" | 3 | \n",
" 31111 | \n",
" 10th & U St NW | \n",
" open | \n",
" 38.916804 | \n",
" -77.026235 | \n",
"
\n",
" \n",
" | 4 | \n",
" 31104 | \n",
" Adams Mill & Columbia Rd NW | \n",
" open | \n",
" 38.922680 | \n",
" -77.042667 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" station_id name status latitude longitude\n",
"0 31620 5th & F St NW open 38.896301 -77.027463\n",
"1 31105 14th & Harvard St NW open 38.926571 -77.032414\n",
"2 31400 Georgia & New Hampshire Ave NW open 39.221500 -77.059858\n",
"3 31111 10th & U St NW open 38.916804 -77.026235\n",
"4 31104 Adams Mill & Columbia Rd NW open 38.922680 -77.042667"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import pandas as pd\n",
"\n",
"stations = pd.read_csv(\"https://runestone.academy/ns/books/published/httlads/_static/bikeshare_stations.csv\")\n",
"stations.head()"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "b5ba0dad",
"metadata": {
"execution": {
"iopub.execute_input": "2026-04-06T22:59:42.835640Z",
"iopub.status.busy": "2026-04-06T22:59:42.835327Z",
"iopub.status.idle": "2026-04-06T22:59:43.405915Z",
"shell.execute_reply": "2026-04-06T22:59:43.404149Z"
}
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a0ad4d3cdba14575bbb5258d20f62d52",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map(center=[38.9072, -77.0369], controls=(ZoomControl(options=['position', 'zoom_in_text', 'zoom_in_title', 'z…"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from ipyleaflet import Map, Marker, Icon, CircleMarker\n",
"\n",
"locations = list(zip(stations.latitude, stations.longitude))\n",
"dc_center = (38.9072, -77.0369)\n",
"\n",
"dcmap = Map(center=dc_center, zoom=12)\n",
"for loc in locations:\n",
" marker = CircleMarker(location=loc, radius=2)\n",
" dcmap.add_layer(marker)\n",
"\n",
"dcmap"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.13.8"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"06e9bd41cdb441beabf12e76ecb13167": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8869701,
-77.030788
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"08ba6e487493406ab0a7d6d55c9eeb05": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.89912959999999,
-76.9467801
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"0a9052c5d5d24268afbfda5241209fe3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9479287,
-77.0796836
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"0e47c1730d1747258fa74f93959f232c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9028928,
-77.0219051
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"0e82f93b869b4def8f62634b960e5e93": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.805462,
-77.05045299999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"0fe61eb6e1f345d78e0415063d59d76f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8947509,
-77.0727223
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"11f397238fdd4f279b9df946a26aa23d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9001075,
-77.00248669999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"14ceb00de2cd4ddc9d74e7476e6f0575": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
37.767873,
-122.406287
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"16b443eb87b740ee97512e40641ffc33": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8739399,
-76.9722665
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"18762aec271649ecb77030a7e40b20eb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9001948,
-77.0300858
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"1a6013f3d3eb42f98fb9df8b642559b7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9232654,
-77.04734429999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"1ac78d0849d641dbaa893837b5ad741d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.899316,
-77.04163299999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"1e210363dd4d46f28f5e017a16a83ea1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.915761,
-77.06779499999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"1ecd10e4c10a4a7db89ab70a9871b357": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.89210370000001,
-77.02596129999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"1f32df8e2dcb465e9ad58cdbd2b18df7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8659948,
-77.06281469999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"1f4e637782e84b5987facc7b1861bfb3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8886121,
-77.0319526
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"1f577fbbb8ae4d8f9f80489111da09dc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9124112,
-77.02254719999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"20633d0e60074adc99832f8f597c0ee1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.88950699999999,
-77.0776458
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"21a0dfbd5eef4a83a9c252d62247fcbb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.901629,
-77.0465783
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"24e490c7b4c64c119081d5898968f86f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletMapStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"24fc42e77d69479cbf6429e3ef40099b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9421421,
-77.0244436
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"2556a54a43534511be7f6e69d962e16c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9088354,
-77.0319462
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"25a2cb9d78ca44bcb527a3298fbb163f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8755355,
-76.9751914
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"26a9dc7b21de4500a2e69edd02ad4772": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.891716,
-77.079128
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"26f5635d3629489f95dee3b36ff76bf5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8949212,
-77.0461794
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"28affb5c7db54dd0b50fe6b4ebe38f76": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8785406,
-76.9611286
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"2c324ca7d5ff44599ff76f0d2e0eb3b9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletMapStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"2cdf05f9527e47b98e9ec0ae5c85cea9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8892686,
-77.050176
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"2f2e0fe7e6de44ab86812f4d0517c9b5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8442637,
-77.05047239999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"2ff418cfdb7e462795a137fc1375b5ce": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9037466,
-77.04345769999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"300eb398bea5464098ef20df375fd72c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8855388,
-77.0060672
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"306aca1870bd45d2920917e3b7a81f2a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8599562,
-77.0535692
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3086341230194e8296676898d4ed706b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8898671,
-77.08028639999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3127cf34e0c74963acfb87accf41a9a2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8933798,
-77.0861211
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"31b3b79fb3004933b3642a6c1e246e5c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8983706,
-77.0278743
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"31bb3145a8a84bfa914ee4d1185af9a2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9007023,
-77.0488331
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3206d4e51a7b46bf8e140082efc2c967": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8140201,
-77.0537762
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"32f6f7275e47430188075ae618aee9e4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.886588,
-76.9964451
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"34cc0e97c1e449b2b653f37db4476df9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.850898,
-77.051842
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"35c0122117e74f659c4186159c3d2aec": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.882001,
-77.005854
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"36f6b08904ff4b45a5076121c21983ca": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.912721,
-77.013757
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3797d046013148aa918df941a63453e1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9184088,
-77.0697591
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"39b46bf8ff1d48cfbe101390deb1a7db": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.88919870000001,
-77.0917965
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"39d6b7d70210432fa54fef04eb4bcd98": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8958482,
-77.05568269999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"39edac94ec5f4a33bb72a806a6f6f6d4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9052288,
-77.05796
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3a04040f5bf44e79ad150688c9ce4669": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.88441479999999,
-77.1006433
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3b3d93040e934b7282c3e3790aaec510": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9111223,
-77.0047933
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3bfe04aebfe14e1b81f0e300decce1f9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.90031099999999,
-76.991345
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3d131f3aa2bc4e06bfff6192304e2b12": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8904029,
-77.0886921
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3ed9bf8e782e4206918d58d33c045a69": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.86598050000001,
-76.9785383
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"3f98114032e44762841ad902262859cd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9049858,
-77.0636523
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"40c22e2f9fb34805a790ff3ad5bed5b4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.895994,
-77.0434713
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"4151fa3e6c4e4987be975555ad357aea": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9023127,
-77.01832519999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"43c1ca5813a34d27b305940e17f1068e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8915558,
-77.0848664
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"43fc46456c954bfa9d4bdce4aa030599": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.93250380000001,
-76.9929586
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"4526ba64b775482f91610452b0bde470": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8968111,
-77.0864445
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"48ae6da54b584e228423960aa01b747b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8785574,
-77.0227475
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"4a7b97bdcddb46eeb9f683fec00ab4ea": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9181132,
-77.0319544
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"4c0a0d0fc9e246a6a691bb83f24fea98": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.866775,
-76.985128
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"4f39f2bcd3a84b9e8d950a780b84a15e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8988663,
-77.03367899999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"4f40a6b41c3640428a7ac1c855ae9341": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8631441,
-77.0529042
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"506be6b248c448d58c8289f1a6148e8c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9281258,
-77.023104
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"51afe177b4bf4e4ca3982b13d9880d7c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8601073,
-77.0493393
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"51dd084279a346c0a303ef906b9f44bd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9226795,
-77.0426674
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"525fb0761efd4535b73b889aa87d8312": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8819737,
-77.12895759999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"55619c3d34a74767b6e48bd14e3874e7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8878759,
-77.0931288
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"5888c92757a84bdca38cb23f3cddba9f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9296718,
-77.02774149999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"597c4904b1e94e75bb12b70cb18685e9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.894731,
-76.988576
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"5a0f8278ca5f47e486f4eafbb3591bf5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9061249,
-77.02598019999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"5a92d49e57dd4256937c3426608c3751": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9374498,
-77.08679830000001
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"5bfed8d6e6a7499ba80e0bd1f906af51": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.88194,
-77.11174
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"5e4be422890c45b5abe9f1c9990e3b75": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.933526,
-76.991079
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"65bae874d1ab442ab61ad4875b752dd4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9205903,
-77.0439444
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"664432da6beb45cc90b89ad4e44dd5f5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.919312,
-77.000687
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"669266f64b98489eb6d69e5c62d947cb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8886581,
-77.02819749999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"66b95ae3a79e463d9054f06e2c0c6b32": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
39.2214999,
-77.0598581
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"67a5727b35ed4c5f80feedf2d963b5ef": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8428468,
-77.05014419999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"68efa659b508424494bccc3fbeaef50d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.936847,
-77.032639
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"68f599127eca4469bf305bb0abd80d21": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9053157,
-77.0222677
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"69aa113362af415fbc84caf33274c900": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9126061,
-77.0319494
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"6a72915a93d042db965dcd85416c1509": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9037394,
-77.0280934
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"6ad9655b4d714d8ba5dd67007d2b968e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8960201,
-77.0449211
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"6d1d788ecffc497ebfa2d91360fc6e59": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8963014,
-77.02746320000001
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"6e7b273e99dd4dab8ee93569d185b4c1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.88138060000001,
-77.0364536
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"6ee1e4c0a082442b82ba0f24d88523e0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9026398,
-77.0434555
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"6f175b029ff54f49b9da781ac4942357": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.858108,
-77.05125699999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"6fe084e68dd44746b6b01e0465c552ba": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9297465,
-77.05549839999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"701b33f265b942ee94a628f90c49d654": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9287786,
-77.01432109999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"706923deae1d4d43bb05977360103615": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8954325,
-77.0888678
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"719ff9f38bb8446fbee6198d1f6e8fde": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.88249,
-77.10289999999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"71de3c1d5a5740bfa779557b7669c01d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9177788,
-77.04042179999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"71ff11ad722f474f865e9f57472ba5f0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8947906,
-76.9964668
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"724aedebc4514006b0499d87bcb7513e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9340854,
-77.0576414
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"728eaf1f2bbf4c31b0a4ba38352efeb3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9030409,
-77.0466454
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7296677e6f2c4d3cbc4085e5b267f7af": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9087731,
-77.0447816
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7591a795efd443229abe56359fbf602d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9265708,
-77.0324139
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"759286d8868f4f79880b3ea1b93a9acb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.854575,
-77.0493561
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"766cfcdcda80485698b8f73e8c02428f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9037429,
-77.04489319999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"781d17615de14f52bfceaa90faacd70b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.894099,
-76.94776499999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7949cefdf4784fca8a155aead66039dd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.899814,
-77.022948
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7b6eeeeffab644bd9200d90a607547b9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8851334,
-77.00231910000001
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7ce5328d8ade4c4db9371b02cd59c12b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8846221,
-77.0877534
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7d541412b3f740d2bcac246c50927f0f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.880156,
-76.995319
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7e19cd24392d4496bf41ad27b2b00dc8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9480833,
-77.0327696
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7e9481aa2ecc4c8aa2c5a109ffdd5086": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9151073,
-77.044913
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"7f6e966945904931abd92209913a51b6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9056638,
-77.0412097
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"80b5d8e07ce548ef82680e7d949ceb99": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9030397,
-77.0581263
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"8341a734cd444aad943063d9870f4396": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9053664,
-77.0321538
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"8eb7dbfef0bf436a86333aada4db351b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8106028,
-77.044629
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"8efced0c11c7437f81bc575552317a7d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
39.294017,
-76.589202
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"903cd89d2f5e4b8097f1be5a4cdb0f2c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9322202,
-77.0725966
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"9122f368ea4340f1a15b0b2086d1a37f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8943989,
-77.0300249
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"91a3ebb1fb904d4296a472313b86fde6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.899173,
-77.031818
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"91c36cace48242a0a0c203a24d45e782": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9009124,
-77.01477229999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"91cf7a2bfbb24549b2f6c3c8822d122f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.896995,
-77.006384
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"9366224c32634c5cadfe4650f2753aa5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.891977,
-77.04686199999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"9406568553ac40d0b98780731cdbe2e7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9079223,
-77.0354926
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"9456b73df26247fa9ec1de99a0ff8146": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8780992,
-77.0079619
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"9490d12f3aea4a43a51183e414f4dd9d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8901328,
-76.9442518
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"95d4d2c3c5904d8f8c66d7bc64b18499": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.89833,
-77.0320047
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"96bfd3e86e684a7e95577121f9dc9dce": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8863705,
-77.0452107
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"9c1175fcbd9845a48680f489f131d5e8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9076089,
-77.07225849999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"9fcad9c5537a4eca885d8ca1c3339700": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.88363560000001,
-77.1164088
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a0ad4d3cdba14575bbb5258d20f62d52": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletMapModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletMapView",
"bottom": 0.0,
"bounce_at_zoom_limits": true,
"box_zoom": true,
"center": [
38.9072,
-77.0369
],
"close_popup_on_click": true,
"controls": [
"IPY_MODEL_ebd308bbca374e44ad6108e2e8028fde",
"IPY_MODEL_a1374d8bc1da4c9494629ed27e1d03b6"
],
"crs": {
"custom": false,
"name": "EPSG3857"
},
"default_style": "IPY_MODEL_2c324ca7d5ff44599ff76f0d2e0eb3b9",
"double_click_zoom": true,
"dragging": true,
"dragging_style": "IPY_MODEL_a4723fea0f0d4f52baf826e11d8af6ed",
"east": 0.0,
"fullscreen": false,
"inertia": true,
"inertia_deceleration": 3000,
"inertia_max_speed": 1500,
"interpolation": "bilinear",
"keyboard": true,
"keyboard_pan_offset": 80,
"keyboard_zoom_offset": 1,
"layers": [
"IPY_MODEL_fe4044b82632437994ca57fd88e5c680",
"IPY_MODEL_6d1d788ecffc497ebfa2d91360fc6e59",
"IPY_MODEL_7591a795efd443229abe56359fbf602d",
"IPY_MODEL_66b95ae3a79e463d9054f06e2c0c6b32",
"IPY_MODEL_adeea673e1544c4fb46fa69847327ad1",
"IPY_MODEL_51dd084279a346c0a303ef906b9f44bd",
"IPY_MODEL_a3c57d456fcf47f8b64cccf97896bacb",
"IPY_MODEL_2556a54a43534511be7f6e69d962e16c",
"IPY_MODEL_dbf8c5690121456894c8789c0811fcb2",
"IPY_MODEL_bf79f84058434c37b1cf9984996f02a2",
"IPY_MODEL_6f175b029ff54f49b9da781ac4942357",
"IPY_MODEL_69aa113362af415fbc84caf33274c900",
"IPY_MODEL_3f98114032e44762841ad902262859cd",
"IPY_MODEL_ef486481d4a3444291d3594c5ddf2b12",
"IPY_MODEL_c94032abf8dc4190ba55f9891be2b38d",
"IPY_MODEL_dfdc2862ea0b4fe0be2c7eb7b9e33314",
"IPY_MODEL_fa18d90504aa48e9b05aadebdb4e7575",
"IPY_MODEL_a34f28a78c7b4852b5696a8f28735631",
"IPY_MODEL_f01cd3d28df7427aa530e73dd63ef6d8",
"IPY_MODEL_724aedebc4514006b0499d87bcb7513e",
"IPY_MODEL_4151fa3e6c4e4987be975555ad357aea",
"IPY_MODEL_4a7b97bdcddb46eeb9f683fec00ab4ea",
"IPY_MODEL_f3d2c6cd895f4ed99489a30bd093c3d0",
"IPY_MODEL_36f6b08904ff4b45a5076121c21983ca",
"IPY_MODEL_e6a15c3b62244d11b71040d60fddf2fe",
"IPY_MODEL_f23970ff536a4bc184d14ab42f861900",
"IPY_MODEL_ab8f189c37224bd9a4a47bb9930ba871",
"IPY_MODEL_cc01403500994aa991accd664dd5cd0b",
"IPY_MODEL_da923412e704482d8d05d5590d20863e",
"IPY_MODEL_2ff418cfdb7e462795a137fc1375b5ce",
"IPY_MODEL_b18a4bb5becf459c8d680b2efb19f2b8",
"IPY_MODEL_db153274a5644e1a90bd43234dd5cf37",
"IPY_MODEL_728eaf1f2bbf4c31b0a4ba38352efeb3",
"IPY_MODEL_7e19cd24392d4496bf41ad27b2b00dc8",
"IPY_MODEL_25a2cb9d78ca44bcb527a3298fbb163f",
"IPY_MODEL_91cf7a2bfbb24549b2f6c3c8822d122f",
"IPY_MODEL_bd22eed801274c3fb5318970dbf155e0",
"IPY_MODEL_759286d8868f4f79880b3ea1b93a9acb",
"IPY_MODEL_7e9481aa2ecc4c8aa2c5a109ffdd5086",
"IPY_MODEL_c6f8253fa48541c18223d06c022c60dd",
"IPY_MODEL_cb42da271d064ee6b522afecb81612c4",
"IPY_MODEL_5888c92757a84bdca38cb23f3cddba9f",
"IPY_MODEL_fde5765e84114cc6982e4ad9f1a7079a",
"IPY_MODEL_ee37510af15c47a5b051d6eb40af5873",
"IPY_MODEL_e041cb142f8945d5a0735230c0483bcb",
"IPY_MODEL_597c4904b1e94e75bb12b70cb18685e9",
"IPY_MODEL_7949cefdf4784fca8a155aead66039dd",
"IPY_MODEL_d8e1512ab4514a98af070fe1b5e19514",
"IPY_MODEL_6ad9655b4d714d8ba5dd67007d2b968e",
"IPY_MODEL_1f32df8e2dcb465e9ad58cdbd2b18df7",
"IPY_MODEL_68f599127eca4469bf305bb0abd80d21",
"IPY_MODEL_18762aec271649ecb77030a7e40b20eb",
"IPY_MODEL_3797d046013148aa918df941a63453e1",
"IPY_MODEL_68efa659b508424494bccc3fbeaef50d",
"IPY_MODEL_11f397238fdd4f279b9df946a26aa23d",
"IPY_MODEL_cb68240bf1e24206b0a818d8358fa82c",
"IPY_MODEL_f6d0e048bc784e148a71468d99d411a7",
"IPY_MODEL_e677037702714301a3aef87295116754",
"IPY_MODEL_b9998baabc3847c59b233dd5e8315b5f",
"IPY_MODEL_cd1e355ecd884d3cb3736e557af644d6",
"IPY_MODEL_67a5727b35ed4c5f80feedf2d963b5ef",
"IPY_MODEL_1ecd10e4c10a4a7db89ab70a9871b357",
"IPY_MODEL_06e9bd41cdb441beabf12e76ecb13167",
"IPY_MODEL_e43bb1c7da8443a285a899a8718fa780",
"IPY_MODEL_5a92d49e57dd4256937c3426608c3751",
"IPY_MODEL_32f6f7275e47430188075ae618aee9e4",
"IPY_MODEL_48ae6da54b584e228423960aa01b747b",
"IPY_MODEL_80b5d8e07ce548ef82680e7d949ceb99",
"IPY_MODEL_903cd89d2f5e4b8097f1be5a4cdb0f2c",
"IPY_MODEL_95d4d2c3c5904d8f8c66d7bc64b18499",
"IPY_MODEL_9c1175fcbd9845a48680f489f131d5e8",
"IPY_MODEL_a2187853c46a43a58a4f56d4a515b837",
"IPY_MODEL_9490d12f3aea4a43a51183e414f4dd9d",
"IPY_MODEL_91c36cace48242a0a0c203a24d45e782",
"IPY_MODEL_df0d4d98e60a4c269260135a3354ce2f",
"IPY_MODEL_1a6013f3d3eb42f98fb9df8b642559b7",
"IPY_MODEL_a9906c71390d40aca6c57e714b0a9ac7",
"IPY_MODEL_40c22e2f9fb34805a790ff3ad5bed5b4",
"IPY_MODEL_c4ba62d1c5524da9a3c074ac79b2496c",
"IPY_MODEL_4f39f2bcd3a84b9e8d950a780b84a15e",
"IPY_MODEL_26f5635d3629489f95dee3b36ff76bf5",
"IPY_MODEL_4f40a6b41c3640428a7ac1c855ae9341",
"IPY_MODEL_1e210363dd4d46f28f5e017a16a83ea1",
"IPY_MODEL_664432da6beb45cc90b89ad4e44dd5f5",
"IPY_MODEL_34cc0e97c1e449b2b653f37db4476df9",
"IPY_MODEL_7d541412b3f740d2bcac246c50927f0f",
"IPY_MODEL_91a3ebb1fb904d4296a472313b86fde6",
"IPY_MODEL_0a9052c5d5d24268afbfda5241209fe3",
"IPY_MODEL_43fc46456c954bfa9d4bdce4aa030599",
"IPY_MODEL_51afe177b4bf4e4ca3982b13d9880d7c",
"IPY_MODEL_08ba6e487493406ab0a7d6d55c9eeb05",
"IPY_MODEL_3b3d93040e934b7282c3e3790aaec510",
"IPY_MODEL_35c0122117e74f659c4186159c3d2aec",
"IPY_MODEL_39d6b7d70210432fa54fef04eb4bcd98",
"IPY_MODEL_e8eff6e1cda04f3095b9629eb249f371",
"IPY_MODEL_f7e33388777b4e8eb8bbba49c53fbf14",
"IPY_MODEL_16b443eb87b740ee97512e40641ffc33",
"IPY_MODEL_5e4be422890c45b5abe9f1c9990e3b75",
"IPY_MODEL_d90c6df9f8b94691ae21351366a6a6b9",
"IPY_MODEL_3ed9bf8e782e4206918d58d33c045a69",
"IPY_MODEL_f135e9eb16044cdeb4662303b10e7947",
"IPY_MODEL_b8d45b8b80a54fb08e2f34530e9bf45b",
"IPY_MODEL_e8fc7bfdc6fd4ccbb355583bc7122a4b",
"IPY_MODEL_781d17615de14f52bfceaa90faacd70b",
"IPY_MODEL_a22131cd410c4b2482af5c53463e52c2",
"IPY_MODEL_306aca1870bd45d2920917e3b7a81f2a",
"IPY_MODEL_28affb5c7db54dd0b50fe6b4ebe38f76",
"IPY_MODEL_2f2e0fe7e6de44ab86812f4d0517c9b5",
"IPY_MODEL_c15b01f94f8c48a9960272470c912d99",
"IPY_MODEL_fd66a29f167d4545b1f4128ccb454814",
"IPY_MODEL_e633d82e632748518d60402f8a671d37",
"IPY_MODEL_26a9dc7b21de4500a2e69edd02ad4772",
"IPY_MODEL_0fe61eb6e1f345d78e0415063d59d76f",
"IPY_MODEL_9122f368ea4340f1a15b0b2086d1a37f",
"IPY_MODEL_a5a0f3842ae842d0b621e5ca4ff720f1",
"IPY_MODEL_b24822e2fc0c427cb9b5818164993f65",
"IPY_MODEL_31b3b79fb3004933b3642a6c1e246e5c",
"IPY_MODEL_9456b73df26247fa9ec1de99a0ff8146",
"IPY_MODEL_b84647f429e6476b8fcd1515e5d01ae4",
"IPY_MODEL_f5c48307ecdb4edd8a13d23d8625d7b5",
"IPY_MODEL_9366224c32634c5cadfe4650f2753aa5",
"IPY_MODEL_43c1ca5813a34d27b305940e17f1068e",
"IPY_MODEL_39b46bf8ff1d48cfbe101390deb1a7db",
"IPY_MODEL_65bae874d1ab442ab61ad4875b752dd4",
"IPY_MODEL_7f6e966945904931abd92209913a51b6",
"IPY_MODEL_8341a734cd444aad943063d9870f4396",
"IPY_MODEL_a7a3200dbfba4fb19f2631bd1024afc6",
"IPY_MODEL_55619c3d34a74767b6e48bd14e3874e7",
"IPY_MODEL_1ac78d0849d641dbaa893837b5ad741d",
"IPY_MODEL_1f577fbbb8ae4d8f9f80489111da09dc",
"IPY_MODEL_7b6eeeeffab644bd9200d90a607547b9",
"IPY_MODEL_3d131f3aa2bc4e06bfff6192304e2b12",
"IPY_MODEL_b8399f8ac3904bafb226f59c2ace3a7c",
"IPY_MODEL_9406568553ac40d0b98780731cdbe2e7",
"IPY_MODEL_24fc42e77d69479cbf6429e3ef40099b",
"IPY_MODEL_506be6b248c448d58c8289f1a6148e8c",
"IPY_MODEL_e6951d8feb1d4332a935273c8f7d79cf",
"IPY_MODEL_3bfe04aebfe14e1b81f0e300decce1f9",
"IPY_MODEL_71de3c1d5a5740bfa779557b7669c01d",
"IPY_MODEL_39edac94ec5f4a33bb72a806a6f6f6d4",
"IPY_MODEL_6fe084e68dd44746b6b01e0465c552ba",
"IPY_MODEL_ab4a9732371e4ccba4ab975ee31bd4d0",
"IPY_MODEL_a4db4d766d874f94a07479343bacabc4",
"IPY_MODEL_f467da0da6564a17b9cfbfd5e9ddfe4f",
"IPY_MODEL_f72f4077205949bd950ff6377627979c",
"IPY_MODEL_e76bd201d9f3446ba802983372d2ee35",
"IPY_MODEL_e36bf7ea72184e418ea19535485ea016",
"IPY_MODEL_e28c6d2e968d426cb0cdbcdff494b4f9",
"IPY_MODEL_7296677e6f2c4d3cbc4085e5b267f7af",
"IPY_MODEL_701b33f265b942ee94a628f90c49d654",
"IPY_MODEL_719ff9f38bb8446fbee6198d1f6e8fde",
"IPY_MODEL_cb1bc3bc2bee461589acaa002a9fe16f",
"IPY_MODEL_71ff11ad722f474f865e9f57472ba5f0",
"IPY_MODEL_5a0f8278ca5f47e486f4eafbb3591bf5",
"IPY_MODEL_96bfd3e86e684a7e95577121f9dc9dce",
"IPY_MODEL_1f4e637782e84b5987facc7b1861bfb3",
"IPY_MODEL_669266f64b98489eb6d69e5c62d947cb",
"IPY_MODEL_4526ba64b775482f91610452b0bde470",
"IPY_MODEL_b0aa8f124c3a44738470c90cd44bd125",
"IPY_MODEL_3127cf34e0c74963acfb87accf41a9a2",
"IPY_MODEL_706923deae1d4d43bb05977360103615",
"IPY_MODEL_3086341230194e8296676898d4ed706b",
"IPY_MODEL_a367736df6484ac29634ba1880005aa6",
"IPY_MODEL_a1a2011e0f2f4e51bb9dbf11c0e28292",
"IPY_MODEL_fe7b0e479e49450fb2ed4fc29fc75c60",
"IPY_MODEL_bebce2fb710842879cc3f48190b52727",
"IPY_MODEL_5bfed8d6e6a7499ba80e0bd1f906af51",
"IPY_MODEL_ca3beda2e85f465282933ead4b62049c",
"IPY_MODEL_0e47c1730d1747258fa74f93959f232c",
"IPY_MODEL_6e7b273e99dd4dab8ee93569d185b4c1",
"IPY_MODEL_4c0a0d0fc9e246a6a691bb83f24fea98",
"IPY_MODEL_9fcad9c5537a4eca885d8ca1c3339700",
"IPY_MODEL_e16195fa026a4529a0a0a6b6e9aee606",
"IPY_MODEL_3a04040f5bf44e79ad150688c9ce4669",
"IPY_MODEL_766cfcdcda80485698b8f73e8c02428f",
"IPY_MODEL_6a72915a93d042db965dcd85416c1509",
"IPY_MODEL_6ee1e4c0a082442b82ba0f24d88523e0",
"IPY_MODEL_21a0dfbd5eef4a83a9c252d62247fcbb",
"IPY_MODEL_a134192c29b941408628c9963f1c16fd",
"IPY_MODEL_c968beba35404bfd835113a33b437381",
"IPY_MODEL_e18ac0cb9b7b4fb48897fab8b1cf7405",
"IPY_MODEL_c436ed72c8434503b30f193329f9ad10",
"IPY_MODEL_31bb3145a8a84bfa914ee4d1185af9a2",
"IPY_MODEL_525fb0761efd4535b73b889aa87d8312",
"IPY_MODEL_14ceb00de2cd4ddc9d74e7476e6f0575",
"IPY_MODEL_a275ab6bd69e4307a9fa0890c345c527",
"IPY_MODEL_3206d4e51a7b46bf8e140082efc2c967",
"IPY_MODEL_300eb398bea5464098ef20df375fd72c",
"IPY_MODEL_8efced0c11c7437f81bc575552317a7d",
"IPY_MODEL_8eb7dbfef0bf436a86333aada4db351b",
"IPY_MODEL_0e82f93b869b4def8f62634b960e5e93",
"IPY_MODEL_e3be14f2eba64dfd82337912b3a4e573",
"IPY_MODEL_20633d0e60074adc99832f8f597c0ee1",
"IPY_MODEL_7ce5328d8ade4c4db9371b02cd59c12b",
"IPY_MODEL_2cdf05f9527e47b98e9ec0ae5c85cea9"
],
"layout": "IPY_MODEL_b812521614b84f61969cc4a2be1b4816",
"left": 9007199254740991.0,
"max_zoom": null,
"min_zoom": null,
"modisdate": "2026-04-05",
"north": 0.0,
"options": [
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"prefer_canvas",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_delta",
"zoom_snap"
],
"panes": {},
"prefer_canvas": false,
"right": 0.0,
"scroll_wheel_zoom": false,
"south": 0.0,
"style": "IPY_MODEL_24e490c7b4c64c119081d5898968f86f",
"tabbable": null,
"tap": true,
"tap_tolerance": 15,
"tooltip": null,
"top": 9007199254740991.0,
"touch_zoom": true,
"west": 0.0,
"window_url": "",
"world_copy_jump": false,
"zoom": 12.0,
"zoom_animation_threshold": 4,
"zoom_delta": 1.0,
"zoom_snap": 1.0
}
},
"a134192c29b941408628c9963f1c16fd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9026383,
-77.0345731
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a1374d8bc1da4c9494629ed27e1d03b6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletAttributionControlModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletAttributionControlModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletAttributionControlView",
"options": [
"position",
"prefix"
],
"position": "bottomright",
"prefix": "ipyleaflet"
}
},
"a1a2011e0f2f4e51bb9dbf11c0e28292": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8856556,
-77.0974106
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a2187853c46a43a58a4f56d4a515b837": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.86405389999999,
-77.06038029999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a22131cd410c4b2482af5c53463e52c2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.905637,
-77.027041
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a275ab6bd69e4307a9fa0890c345c527": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.80491019999999,
-77.0430287
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a34f28a78c7b4852b5696a8f28735631": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.91558029999999,
-77.0378968
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a367736df6484ac29634ba1880005aa6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8505757,
-77.1020507
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a3c57d456fcf47f8b64cccf97896bacb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8851334,
-77.00231910000001
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a4723fea0f0d4f52baf826e11d8af6ed": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletMapStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"a4db4d766d874f94a07479343bacabc4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8970035,
-76.96032009999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a5a0f3842ae842d0b621e5ca4ff720f1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9019574,
-77.0389955
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a7a3200dbfba4fb19f2631bd1024afc6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8872177,
-77.0950173
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"a9906c71390d40aca6c57e714b0a9ac7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8625317,
-76.9697518
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"ab4a9732371e4ccba4ab975ee31bd4d0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8903895,
-76.9374473
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"ab8f189c37224bd9a4a47bb9930ba871": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9311391,
-77.0382492
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"adeea673e1544c4fb46fa69847327ad1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.916804,
-77.0262348
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"b0aa8f124c3a44738470c90cd44bd125": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.89604509999999,
-77.0784652
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"b18a4bb5becf459c8d680b2efb19f2b8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9309272,
-77.030867
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"b24822e2fc0c427cb9b5818164993f65": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8978692,
-77.0230529
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"b812521614b84f61969cc4a2be1b4816": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b8399f8ac3904bafb226f59c2ace3a7c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8847743,
-77.0172452
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"b84647f429e6476b8fcd1515e5d01ae4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8699713,
-76.96021019999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"b8d45b8b80a54fb08e2f34530e9bf45b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8674403,
-76.9886086
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"b9998baabc3847c59b233dd5e8315b5f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.924806,
-77.02261200000001
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"bd22eed801274c3fb5318970dbf155e0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.909475,
-77.0426854
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"bebce2fb710842879cc3f48190b52727": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8761508,
-77.1082808
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"bf79f84058434c37b1cf9984996f02a2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9445754,
-77.0635471
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"c15b01f94f8c48a9960272470c912d99": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8973435,
-77.02704659999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"c436ed72c8434503b30f193329f9ad10": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.896835,
-77.0262939
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"c4ba62d1c5524da9a3c074ac79b2496c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8921101,
-77.0434861
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"c6f8253fa48541c18223d06c022c60dd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9275494,
-77.04253299999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"c94032abf8dc4190ba55f9891be2b38d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9262792,
-77.0364613
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"c968beba35404bfd835113a33b437381": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9026397,
-77.05140279999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"ca3beda2e85f465282933ead4b62049c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8782629,
-77.120814
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"cb1bc3bc2bee461589acaa002a9fe16f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8838385,
-77.10724859999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"cb42da271d064ee6b522afecb81612c4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9118701,
-77.0384855
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"cb68240bf1e24206b0a818d8358fa82c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9036794,
-77.0532984
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"cc01403500994aa991accd664dd5cd0b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9056568,
-77.0416876
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"cd1e355ecd884d3cb3736e557af644d6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8561135,
-77.04932090000001
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"d8e1512ab4514a98af070fe1b5e19514": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8577228,
-77.0590548
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"d90c6df9f8b94691ae21351366a6a6b9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9018903,
-76.9426423
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"da923412e704482d8d05d5590d20863e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.895809,
-76.920011
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"db153274a5644e1a90bd43234dd5cf37": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9002149,
-77.043466
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"dbf8c5690121456894c8789c0811fcb2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9096506,
-77.0345573
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"df0d4d98e60a4c269260135a3354ce2f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8973304,
-77.0091024
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"dfdc2862ea0b4fe0be2c7eb7b9e33314": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.915572,
-77.021919
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e041cb142f8945d5a0735230c0483bcb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8847743,
-77.0172452
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e16195fa026a4529a0a0a6b6e9aee606": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8798836,
-77.10754829999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e18ac0cb9b7b4fb48897fab8b1cf7405": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9073207,
-77.0032796
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e28c6d2e968d426cb0cdbcdff494b4f9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.922672,
-77.078913
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e36bf7ea72184e418ea19535485ea016": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8782532,
-77.0057589
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e3be14f2eba64dfd82337912b3a4e573": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8112911,
-77.0501472
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e43bb1c7da8443a285a899a8718fa780": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8491034,
-77.05100990000001
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e633d82e632748518d60402f8a671d37": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8934465,
-77.07658719999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e677037702714301a3aef87295116754": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9335106,
-76.99533370000002
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e6951d8feb1d4332a935273c8f7d79cf": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.900491,
-76.998424
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e6a15c3b62244d11b71040d60fddf2fe": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9026383,
-77.0385079
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e76bd201d9f3446ba802983372d2ee35": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.886016,
-77.01732
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e8eff6e1cda04f3095b9629eb249f371": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8893999,
-76.9798618
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"e8fc7bfdc6fd4ccbb355583bc7122a4b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8622178,
-76.9951881
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"ebd308bbca374e44ad6108e2e8028fde": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletZoomControlModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletZoomControlModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletZoomControlView",
"options": [
"position",
"zoom_in_text",
"zoom_in_title",
"zoom_out_text",
"zoom_out_title"
],
"position": "topleft",
"zoom_in_text": "+",
"zoom_in_title": "Zoom in",
"zoom_out_text": "-",
"zoom_out_title": "Zoom out"
}
},
"ee37510af15c47a5b051d6eb40af5873": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.886198,
-77.021844
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"ef486481d4a3444291d3594c5ddf2b12": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8842471,
-76.995792
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f01cd3d28df7427aa530e73dd63ef6d8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.905645,
-77.0058775
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f135e9eb16044cdeb4662303b10e7947": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.89912959999999,
-76.9467801
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f23970ff536a4bc184d14ab42f861900": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9001215,
-76.9885651
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f3d2c6cd895f4ed99489a30bd093c3d0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.876596,
-77.004772
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f467da0da6564a17b9cfbfd5e9ddfe4f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8871667,
-76.98364579999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f5c48307ecdb4edd8a13d23d8625d7b5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8638871,
-76.950623
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f6d0e048bc784e148a71468d99d411a7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8841038,
-76.9855178
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f72f4077205949bd950ff6377627979c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8450186,
-76.9877334
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"f7e33388777b4e8eb8bbba49c53fbf14": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.9000824,
-76.9834855
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"fa18d90504aa48e9b05aadebdb4e7575": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.934356,
-77.072569
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"fd66a29f167d4545b1f4128ccb454814": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.896862,
-77.07240709999999
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"fde5765e84114cc6982e4ad9f1a7079a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8897874,
-76.9898913
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
},
"fe4044b82632437994ca57fd88e5c680": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletTileLayerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletTileLayerView",
"attribution": "© OpenStreetMap contributors",
"base": true,
"bottom": true,
"bounds": null,
"detect_retina": false,
"loading": false,
"max_native_zoom": null,
"max_zoom": 19,
"min_native_zoom": null,
"min_zoom": 1,
"name": "OpenStreetMap.Mapnik",
"no_wrap": false,
"opacity": 1.0,
"options": [
"attribution",
"bounds",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms",
"zoom_offset"
],
"pane": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"show_loading": false,
"subitems": [],
"tile_size": 256,
"tms": false,
"url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png",
"visible": true,
"zoom_offset": 0
}
},
"fe7b0e479e49450fb2ed4fc29fc75c60": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.19",
"model_name": "LeafletCircleMarkerModel",
"state": {
"_model_module": "jupyter-leaflet",
"_model_module_version": "^0.19",
"_model_name": "LeafletCircleMarkerModel",
"_view_count": null,
"_view_module": "jupyter-leaflet",
"_view_module_version": "^0.19",
"_view_name": "LeafletCircleMarkerView",
"base": false,
"bottom": false,
"color": "#0033FF",
"dash_array": null,
"fill": true,
"fill_color": null,
"fill_opacity": 0.2,
"line_cap": "round",
"line_join": "round",
"location": [
38.8824796,
-77.1094619
],
"name": "",
"opacity": 1.0,
"options": [
"color",
"dash_array",
"fill",
"fill_color",
"fill_opacity",
"line_cap",
"line_join",
"opacity",
"pointer_events",
"radius",
"stroke",
"weight"
],
"pane": "",
"pointer_events": "",
"popup": null,
"popup_max_height": null,
"popup_max_width": 300,
"popup_min_width": 50,
"radius": 2,
"stroke": true,
"subitems": [],
"weight": 5
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}