Skip to content

Instantly share code, notes, and snippets.

@emiliom
Created December 14, 2022 03:48
Show Gist options
  • Save emiliom/45c9fa77fa8e871ae924763f2181da3f to your computer and use it in GitHub Desktop.
Save emiliom/45c9fa77fa8e871ae924763f2181da3f to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "f0aa0cbe",
"metadata": {},
"source": [
"# EchoPro Python Workflow <a class=\"tocSkip\">"
]
},
{
"cell_type": "markdown",
"id": "ccaef1d6",
"metadata": {},
"source": [
"# Import libraries and configure the Jupyter notebook"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "66ad49aa",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'0.1.0-alpha'"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import matplotlib.pyplot as plt\n",
"\n",
"# Python EchoPro\n",
"import EchoPro\n",
"\n",
"# Allows us to grab the SemiVariogram class so we can use its models\n",
"from EchoPro.computation import SemiVariogram as SV\n",
"\n",
"# obtain all visualization routines\n",
"from EchoPro.visualization import plot_layered_points, plot_kriging_results\n",
"\n",
"# Allows us to easily use matplotlib widgets in our Notebook\n",
"%matplotlib widget\n",
"\n",
"EchoPro.__version__"
]
},
{
"cell_type": "markdown",
"id": "62ccae43",
"metadata": {},
"source": [
"# Set up EchoPro for a specific survey year"
]
},
{
"cell_type": "markdown",
"id": "866dbb16",
"metadata": {},
"source": [
"## Initialize EchoPro object using configuration files\n",
"\n",
"* `initialization_config.yml` -- parameters independent of survey year\n",
"* `survey_year_2019_config.yml` -- parameters specific to survey year\n",
"* `source` -- Define the region of data to use e.g. US, CAN, US & CAN\n",
"* `exclude_age1` -- States whether age 1 hake should be included in analysis."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "059a8a59",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"A full check of the initialization file contents needs to be done!\n",
"A check of the survey year file contents needs to be done!\n",
"CPU times: user 5.77 ms, sys: 646 µs, total: 6.42 ms\n",
"Wall time: 6.2 ms\n"
]
}
],
"source": [
"%%time\n",
"survey_2019 = EchoPro.Survey(init_file_path='../config_files/initialization_config.yml',\n",
" survey_year_file_path='../config_files/survey_year_2019_config.yml',\n",
" source=3, \n",
" exclude_age1=True)"
]
},
{
"cell_type": "markdown",
"id": "81e28c67",
"metadata": {},
"source": [
"## Load and process input data \n",
"* This data is stored in `survey_2019`"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "8c0d730c",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 1.43 s, sys: 1.02 ms, total: 1.43 s\n",
"Wall time: 1.47 s\n"
]
}
],
"source": [
"%%time \n",
"survey_2019.load_survey_data() #file_type='biological')"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "4eebe739",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>sex</th>\n",
" <th>length</th>\n",
" <th>weight</th>\n",
" <th>age</th>\n",
" </tr>\n",
" <tr>\n",
" <th>haul_num</th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>24.0</td>\n",
" <td>0.08</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>23.0</td>\n",
" <td>0.06</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>22.0</td>\n",
" <td>0.06</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>21.0</td>\n",
" <td>0.06</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2</td>\n",
" <td>22.0</td>\n",
" <td>0.06</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" sex length weight age\n",
"haul_num \n",
"1 1 24.0 0.08 1.0\n",
"1 1 23.0 0.06 1.0\n",
"1 1 22.0 0.06 1.0\n",
"1 1 21.0 0.06 1.0\n",
"1 2 22.0 0.06 1.0"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"survey_2019.specimen_df.head()"
]
},
{
"cell_type": "markdown",
"id": "75ecf293",
"metadata": {},
"source": [
"## Compute the areal biomass density\n",
"* The areal biomass density is stored in `survey_2019`"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "1a648765",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 287 ms, sys: 7.48 ms, total: 294 ms\n",
"Wall time: 293 ms\n"
]
}
],
"source": [
"%%time\n",
"survey_2019.compute_biomass_density()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "33d094a7",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>latitude</th>\n",
" <th>longitude</th>\n",
" <th>stratum_num</th>\n",
" <th>transect_spacing</th>\n",
" <th>areal_biomass_density_adult</th>\n",
" <th>geometry</th>\n",
" </tr>\n",
" <tr>\n",
" <th>transect_num</th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397267</td>\n",
" <td>-121.143005</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.14301 34.39727)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397391</td>\n",
" <td>-121.133196</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.13320 34.39739)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397435</td>\n",
" <td>-121.123057</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.12306 34.39744)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397394</td>\n",
" <td>-121.112871</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.11287 34.39739)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397437</td>\n",
" <td>-121.102888</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.10289 34.39744)</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" latitude longitude stratum_num transect_spacing \\\n",
"transect_num \n",
"1 34.397267 -121.143005 1 10.0 \n",
"1 34.397391 -121.133196 1 10.0 \n",
"1 34.397435 -121.123057 1 10.0 \n",
"1 34.397394 -121.112871 1 10.0 \n",
"1 34.397437 -121.102888 1 10.0 \n",
"\n",
" areal_biomass_density_adult geometry \n",
"transect_num \n",
"1 0.0 POINT (-121.14301 34.39727) \n",
"1 0.0 POINT (-121.13320 34.39739) \n",
"1 0.0 POINT (-121.12306 34.39744) \n",
"1 0.0 POINT (-121.11287 34.39739) \n",
"1 0.0 POINT (-121.10289 34.39744) "
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"survey_2019.bio_calc.final_biomass_table.head()"
]
},
{
"cell_type": "markdown",
"id": "013e62b5",
"metadata": {},
"source": [
"# Jolly-Hampton CV Analysis\n",
"\n",
"* Compute the mean of the Jolly-Hampton CV value on data that has not been Kriged\n",
"* Note: the algorithm used to compute this value is random in nature"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "a7bb465e",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 1.41 s, sys: 11.4 ms, total: 1.42 s\n",
"Wall time: 1.43 s\n"
]
}
],
"source": [
"%%time\n",
"CV_JH_mean = survey_2019.run_cv_analysis(kriged_data=False)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "78c776bd",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Mean Jolly-Hampton CV: 0.1338\n"
]
}
],
"source": [
"print(f\"Mean Jolly-Hampton CV: {CV_JH_mean:.4f}\")"
]
},
{
"cell_type": "markdown",
"id": "c5bd6ad7",
"metadata": {},
"source": [
"# Obtain Kriging Mesh Data"
]
},
{
"cell_type": "markdown",
"id": "f26756c4",
"metadata": {},
"source": [
"## Access Kriging mesh object\n",
"* Reads mesh data files specified by `survey_2019` "
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "c976b0b9",
"metadata": {},
"outputs": [],
"source": [
"krig_mesh = survey_2019.get_kriging_mesh()"
]
},
{
"cell_type": "markdown",
"id": "b8b3fe9b",
"metadata": {},
"source": [
"### Plot the transects and smoothed isobath contour, and optionally the mesh points\n",
"\n",
"* `plot_layered_points` generates an interactive map using the Folium package\n",
"* Transect points are represented by a changing color gradient\n",
"* Smoothed contour points (200m isobath) are in blue \n",
"* Here we choose not to plot the mesh points to prevent this notebook from getting too big. To plot the mesh points, omit the `plot_mesh_points` argument or use `plot_mesh_points=True`. Mesh points will be in gray"
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "9c80331b-9bd5-4ccb-b564-b744a41b4d61",
"metadata": {},
"outputs": [],
"source": [
"fmap = plot_layered_points(krig_mesh, plot_mesh_points=False)"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "69bd5f94",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;head&gt; \n",
" &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
" \n",
" &lt;script&gt;\n",
" L_NO_TOUCH = false;\n",
" L_DISABLE_3D = false;\n",
" &lt;/script&gt;\n",
" \n",
" &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
" &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
" \n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
" &lt;style&gt;\n",
" #map_e5449df99ea91737343df9ecb02afe07 {\n",
" position: relative;\n",
" width: 100.0%;\n",
" height: 100.0%;\n",
" left: 0.0%;\n",
" top: 0.0%;\n",
" }\n",
" &lt;/style&gt;\n",
" \n",
"&lt;/head&gt;\n",
"&lt;body&gt; \n",
" \n",
" &lt;div class=&quot;folium-map&quot; id=&quot;map_e5449df99ea91737343df9ecb02afe07&quot; &gt;&lt;/div&gt;\n",
" \n",
"&lt;/body&gt;\n",
"&lt;script&gt; \n",
" \n",
" var map_e5449df99ea91737343df9ecb02afe07 = L.map(\n",
" &quot;map_e5449df99ea91737343df9ecb02afe07&quot;,\n",
" {\n",
" center: [44.61, -125.66],\n",
" crs: L.CRS.EPSG3857,\n",
" zoom: 4,\n",
" zoomControl: true,\n",
" preferCanvas: false,\n",
" }\n",
" );\n",
"\n",
" \n",
"\n",
" \n",
" \n",
" var tile_layer_8eece535c5c13aeb04d85c74d794e804 = L.tileLayer(\n",
" &quot;https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png&quot;,\n",
" {&quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\&quot;http://cartodb.com/attributions\\&quot;\\u003eCartoDB\\u003c/a\\u003e, CartoDB \\u003ca href =\\&quot;http://cartodb.com/attributions\\&quot;\\u003eattributions\\u003c/a\\u003e&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 18, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
" ).addTo(map_e5449df99ea91737343df9ecb02afe07);\n",
" \n",
" \n",
" var feature_group_464bfae422389a4c0445e5ab795cacb0 = L.featureGroup(\n",
" {}\n",
" ).addTo(map_e5449df99ea91737343df9ecb02afe07);\n",
" \n",
" \n",
" var circle_marker_d87d021e3ae1db04f9d90c5104e4f713 = L.circleMarker(\n",
" [34.39726728, -121.14300537],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6bae6aaca32c7235e36cc6e9b31022a3 = L.circleMarker(\n",
" [34.39739071, -121.13319621],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_18560d4f170747d1348a35e832d610d3 = L.circleMarker(\n",
" [34.39743515, -121.12305726],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d586e1dd4afc7ded7eb0774a1efe9118 = L.circleMarker(\n",
" [34.39739432, -121.11287085],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_37012a2b6db0904632ead67484ced362 = L.circleMarker(\n",
" [34.39743704, -121.10288762],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6a47fa5cd5ca5512f75eee57d1c16a1a = L.circleMarker(\n",
" [34.39750359, -121.09279048],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3eaacad98abf8863da827d07324025d0 = L.circleMarker(\n",
" [34.39742588, -121.08270834],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1d78f0e46e8a040522d4d76685a75f8c = L.circleMarker(\n",
" [34.39734067, -121.07262125],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1f9b6b10327d7e74daa7d7b398247da1 = L.circleMarker(\n",
" [34.39729331, -121.06249011],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_54dd5b87b3ef9054ac3510c3c369cfea = L.circleMarker(\n",
" [34.39727912, -121.0523275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1afc0a81abeb73d14439ce5321bff6d5 = L.circleMarker(\n",
" [34.39731248, -121.04229718],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4077f1e8ae5b173e327bc4975a1b5efd = L.circleMarker(\n",
" [34.39731101, -121.0322669],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b1c7762674f53d2c12ff284692281c9e = L.circleMarker(\n",
" [34.39734992, -121.02221164],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b2ceeb6b36f7caf0fc8288439ba643d3 = L.circleMarker(\n",
" [34.39742317, -121.01210068],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e5c435e4e1b177ce24d0b3caaff25089 = L.circleMarker(\n",
" [34.39745563, -121.00207665],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_664612d8273123889453d3027d590b7d = L.circleMarker(\n",
" [34.39747972, -120.99200274],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_945d753841421055d69b283980262afd = L.circleMarker(\n",
" [34.39747641, -120.98193318],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_71b6139a76acddfb9a2a8e0dab82f122 = L.circleMarker(\n",
" [34.39747472, -120.97178344],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3ceade800cb5b66b753efd81769be26d = L.circleMarker(\n",
" [34.39745138, -120.96171688],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_266871c4e2984a4fd014094da58af0b9 = L.circleMarker(\n",
" [34.39743395, -120.95165519],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b0489d5a138259199b5a7c1e916ea7a8 = L.circleMarker(\n",
" [34.39748659, -120.94142994],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ae0c441ae5333274dab8b24a4bb1bcd2 = L.circleMarker(\n",
" [34.39753617, -120.93147455],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_db0f169ea8e4ed0139c63db5aac1ef3c = L.circleMarker(\n",
" [34.39761058, -120.92137628],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9e5a69f5eac43060a2aedc525d293b36 = L.circleMarker(\n",
" [34.39756115, -120.91123421],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ffa432d9ffa644e13450b7ce7d7f32be = L.circleMarker(\n",
" [34.397454, -120.90108385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1f1b85c4cdbff0bcbd0f2c31b8a8e40e = L.circleMarker(\n",
" [34.39726064, -120.89092658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0e34d4185721b010d30a616e4d0e4a4c = L.circleMarker(\n",
" [34.39694958, -120.88087117],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7e91e2687caacd0cbda4021394706f2f = L.circleMarker(\n",
" [34.39700753, -120.87081495],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_435955537e666821c6fac0b7a7585346 = L.circleMarker(\n",
" [34.39719853, -120.86064822],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_062a5dcb368b5796571dec4f8104312c = L.circleMarker(\n",
" [34.39721624, -120.8505815],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1cd30a946a581d7616361e233b670c05 = L.circleMarker(\n",
" [34.39723575, -120.84051779],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a4d8603520bfa04e8cb3063ae769dfed = L.circleMarker(\n",
" [34.39699113, -120.83040749],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b16012ea13f9ed242013e03de9329c9a = L.circleMarker(\n",
" [34.39697477, -120.82038125],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9d875027de27622c689a234170c342bb = L.circleMarker(\n",
" [34.39694625, -120.81022414],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8f18835ba0a2cb3a6c9bbfca38192395 = L.circleMarker(\n",
" [34.39691558, -120.80020179],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fe4f9b4bcfb00e0c37cb9d4fd09b0e96 = L.circleMarker(\n",
" [34.39697389, -120.79011139],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_01b78a894886d5f507f56298ff5e7efb = L.circleMarker(\n",
" [34.39696575, -120.77999796],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d3ff71ab184f13adc1abf9379ac07bf6 = L.circleMarker(\n",
" [34.39693228, -120.76989006],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e5c5daf1ffdd0014388dcf4bd77ee471 = L.circleMarker(\n",
" [34.39696108, -120.75980859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_da9fc988edcc1460e1abacc8092926f2 = L.circleMarker(\n",
" [34.39694392, -120.74979162],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e4e060f90ffc01f067b202b64237f42b = L.circleMarker(\n",
" [34.39692657, -120.73966341],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f1e20843ab94837568849354695e1be0 = L.circleMarker(\n",
" [34.39685247, -120.72971958],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_68d51aea55f9822e68dc2b56f4991af8 = L.circleMarker(\n",
" [34.39686733, -120.71959733],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fbc73016f77353086b04ee54c6052014 = L.circleMarker(\n",
" [34.39686342, -120.70951816],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_50b70f41a61509760a9599044e49cf95 = L.circleMarker(\n",
" [34.39691081, -120.6993871],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fd4dbad1a3b3c7dd138bb10c3140910e = L.circleMarker(\n",
" [34.39689415, -120.689354],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8f21a0df443a565b659d235a24f342c7 = L.circleMarker(\n",
" [34.39684724, -120.67934732],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7cbfaadeb92422423f8729ddb37f05e9 = L.circleMarker(\n",
" [34.39685925, -120.66921446],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ad3edc91914e2154cd853750398880d8 = L.circleMarker(\n",
" [34.39688688, -120.65917061],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b3aa6118b899908a678c0d28d507bb9c = L.circleMarker(\n",
" [34.3969265, -120.64911825],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e25d930504aeb6ce8cc2ae654e16d5e9 = L.circleMarker(\n",
" [34.3968813, -120.63901069],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_63a225f9e750e40c958b2af60bf34d45 = L.circleMarker(\n",
" [34.39685389, -120.6289887],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e634ca42e180fbd3a274453f52a362eb = L.circleMarker(\n",
" [34.39690872, -120.61891923],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7027789efa59b44321536c3a4f820b01 = L.circleMarker(\n",
" [34.39708449, -120.60877602],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cf4e6982eed4a6ab200643a216f162d1 = L.circleMarker(\n",
" [34.39718236, -120.59866786],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f12220b7467a21b4c94fe645534fc48b = L.circleMarker(\n",
" [34.39736955, -120.5886068],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1df47350bc2c249e03827f8dfed75073 = L.circleMarker(\n",
" [34.3973588, -120.57854067],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_62625cae473c7401626ace864ee5307b = L.circleMarker(\n",
" [34.39736533, -120.57389136],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8189b8338dada420cf142393dcb02a75 = L.circleMarker(\n",
" [34.39736108, -120.57299143],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_743d9500004f3803ff6bdf51bac899ba = L.circleMarker(\n",
" [34.39730725, -120.56290288],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a86b3e7a88735c637b27309d6b54b26a = L.circleMarker(\n",
" [34.39726716, -120.55283602],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b6bef826b3f68f536acd1e0a352023cc = L.circleMarker(\n",
" [34.39727115, -120.54279708],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3abb95a3481f64b9a85dae36b8285e93 = L.circleMarker(\n",
" [34.39727122, -120.5327309],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_529662baca32bfd013fc533760614439 = L.circleMarker(\n",
" [34.39727217, -120.52266199],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b9940f23460d49ddb65e3e3e3e741bc6 = L.circleMarker(\n",
" [34.39728148, -120.51261501],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0c766a3e37d5d8487940636b48f8a2ca = L.circleMarker(\n",
" [34.39729522, -120.50253505],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7dcb5ddb9a82c0d34a2fe05e7786e1b9 = L.circleMarker(\n",
" [34.3971439, -120.49238385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3e2b7cba3b709fc7c80b7ca8d8022ff7 = L.circleMarker(\n",
" [34.39687464, -120.48228736],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dd355bb5c949d37bef249a9f732a11c9 = L.circleMarker(\n",
" [34.39655547, -120.4721901],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3c5ad85b0c1bae58ff59436299516838 = L.circleMarker(\n",
" [34.39623073, -120.46216026],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a6d155fc9360ec1d87fcfd7d6a89c48d = L.circleMarker(\n",
" [34.39625045, -120.45203014],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9795d70ee1b097169d9368de514d493b = L.circleMarker(\n",
" [34.39663877, -120.44192175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e0be793e4cfc2a740c99c185fcf7eeb0 = L.circleMarker(\n",
" [34.56377167, -120.68228082],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1f6462bf425dc44ce1300568d88c88db = L.circleMarker(\n",
" [34.56394805, -120.68885787],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_98ffa8a7454bba149774864d00633def = L.circleMarker(\n",
" [34.56430591, -120.6988991],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5437b1a34918290b6388fd9b188a263f = L.circleMarker(\n",
" [34.56470682, -120.70891976],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_33f4ac29abd214dbbde9329fa89c888f = L.circleMarker(\n",
" [34.56448537, -120.71890033],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e16cf0561d6fc49c7274c23d7d5f18ba = L.circleMarker(\n",
" [34.56434934, -120.72900044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6472c8910cdbcffd1874aa7fa36b675b = L.circleMarker(\n",
" [34.56428381, -120.73913707],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3a2db63f7b34f791e68a0c9e550f9565 = L.circleMarker(\n",
" [34.56414059, -120.74925246],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a11efe395985f352e01a54095af838a4 = L.circleMarker(\n",
" [34.56408259, -120.75933171],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_48b154c24503a0ef3a7b0074ffa5ab87 = L.circleMarker(\n",
" [34.56414029, -120.76939255],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2668e966dbbd7fb8ded98dc232aba3ef = L.circleMarker(\n",
" [34.5641711, -120.77640948],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a78a379ab42fa99c983ffc683ec09459 = L.circleMarker(\n",
" [34.56406695, -120.77795823],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bcc3900ac6276e4f67305ec16834680d = L.circleMarker(\n",
" [34.56293416, -120.78770276],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0e5cefe0aba7a660cfc46398b665fd6b = L.circleMarker(\n",
" [34.56220082, -120.79776294],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_71a106df94497f7237516ba0272533cf = L.circleMarker(\n",
" [34.5625913, -120.80793325],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ceb707ca382b117e5f2ee0ad5a6d2510 = L.circleMarker(\n",
" [34.56306448, -120.81809064],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a85d9d325af6ad2b8f57009ad03e756c = L.circleMarker(\n",
" [34.56360539, -120.82815187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8d0c0a2acfa1192714cd3880ccaa569a = L.circleMarker(\n",
" [34.56371884, -120.83121401],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_975ee013dc60d741d6dbe7bcde9cd983 = L.circleMarker(\n",
" [34.56395435, -120.83876078],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1a248bf216d749675a16c5543b591346 = L.circleMarker(\n",
" [34.56396378, -120.84899934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_abd76f8f695d03a59f3b57734ced7429 = L.circleMarker(\n",
" [34.56394319, -120.85902472],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8e45b948e21064f8276e816ab5bc3597 = L.circleMarker(\n",
" [34.56392443, -120.86920591],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4465958403107ab366de283062a6cfc8 = L.circleMarker(\n",
" [34.5639303, -120.87927712],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_88ad66fa6360678daa48049aa62607f6 = L.circleMarker(\n",
" [34.56400168, -120.88931608],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_38a8775b85dd4137944ef27139153c72 = L.circleMarker(\n",
" [34.56406959, -120.8994596],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_54d2d099be3104f51930f69cf5bad839 = L.circleMarker(\n",
" [34.56366667, -120.90426895],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_253a712d1da936fd00cede50c00b9e02 = L.circleMarker(\n",
" [34.56383333, -120.91084135],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_68068ab5f4a43afb3fab045c981e1675 = L.circleMarker(\n",
" [34.56383333, -120.92096947],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9a411faec96b1611e3d0e52628df2790 = L.circleMarker(\n",
" [34.56389125, -120.93106502],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8290da2a2ae32f71a73ef9422869d197 = L.circleMarker(\n",
" [34.564, -120.94118272],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0eef6e426ddf0eb276decf93f155f01a = L.circleMarker(\n",
" [34.564, -120.95132275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_832aa1264373866bc35605157b6bac00 = L.circleMarker(\n",
" [34.56383333, -120.9615],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8ffc400c35c9e84fa43ace895a0bf17b = L.circleMarker(\n",
" [34.56383333, -120.97153842],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6db9771d9c2e33630151fd34cd69c26c = L.circleMarker(\n",
" [34.56382415, -120.98167585],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c0dc9b1728326466bd7dd319af560ff5 = L.circleMarker(\n",
" [34.56366667, -120.99171134],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9cfc01efb8047f13f86b64d654c04984 = L.circleMarker(\n",
" [34.5635, -121.00167638],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b28e66c5fbadb8a98a18d580e5b67f29 = L.circleMarker(\n",
" [34.56333333, -121.01173538],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_703867acfcdbac8f6628c1b029b033df = L.circleMarker(\n",
" [34.56333333, -121.02183614],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c67bb08452e4ae70be5da9a1a3c767e6 = L.circleMarker(\n",
" [34.56333333, -121.03186903],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dcf22c0883a94e8bc658221fba301cdf = L.circleMarker(\n",
" [34.56316667, -121.04201534],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c1a1c6ec4096c5945e38c6302db659ae = L.circleMarker(\n",
" [34.56333333, -121.05209655],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ad4f75578abc165709111a0ef6441a2c = L.circleMarker(\n",
" [34.5635, -121.06219031],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8fec584f7c67f1c5aaca83aafce74dfa = L.circleMarker(\n",
" [34.56366667, -121.07231967],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2c4f64d997b5e919ed8a39270a09ac53 = L.circleMarker(\n",
" [34.56383333, -121.08228872],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dc35e937ce21bfc4426e5d0789c09114 = L.circleMarker(\n",
" [34.56406658, -121.09243299],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fecadcbad3a6937e8b113546a6d62402 = L.circleMarker(\n",
" [34.56416667, -121.1024685],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bcd8ccb69f5f88a845d28ed6d61c9882 = L.circleMarker(\n",
" [34.56433333, -121.11260115],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0d106448290caf0c5e863d709af53188 = L.circleMarker(\n",
" [34.5645, -121.12284662],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_756fab2feea5b3d6ef715d9f56bb99a3 = L.circleMarker(\n",
" [34.5645, -121.13280598],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3098669027e28f0f7c0e826ce91bb0d8 = L.circleMarker(\n",
" [34.56466667, -121.14297861],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c51738acb56ae78abbb70e500e1b2738 = L.circleMarker(\n",
" [34.56466667, -121.15312302],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ea993ca7ed531d9a8e2e675a8feddcca = L.circleMarker(\n",
" [34.5645, -121.16308442],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7b47d6b7325ede8fc4aee1efd7468367 = L.circleMarker(\n",
" [34.56433333, -121.17326741],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_14318bd343cb632901994826161494f0 = L.circleMarker(\n",
" [34.56433333, -121.18326395],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_83229502a9fc3a62b49eeccfee045382 = L.circleMarker(\n",
" [34.56416667, -121.19340827],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6dc8d04b95db6ba14a93f2149433b055 = L.circleMarker(\n",
" [34.564, -121.20352417],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f18892f60ab5c1224e709cd3c8202b86 = L.circleMarker(\n",
" [34.56383333, -121.21366667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3bc869949fdd7a77d993e27f8efce20b = L.circleMarker(\n",
" [34.56366667, -121.22384879],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8a0eed5f591e318f3c1da5e833e68418 = L.circleMarker(\n",
" [34.5635, -121.23377056],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_832980e04818454b211b7928601e637c = L.circleMarker(\n",
" [34.56333333, -121.24393225],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9cc16a6f88937dbf7d8d420ca6ff53fb = L.circleMarker(\n",
" [34.56316667, -121.25382775],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e339b056befdd564b41746583d028348 = L.circleMarker(\n",
" [34.563, -121.26419786],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6f86e20f8dc382f212ccccfcaf234723 = L.circleMarker(\n",
" [34.56283333, -121.2742446],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3dd114cbd53d4d4cfdd2810fd3acb60c = L.circleMarker(\n",
" [34.56283333, -121.28445663],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_180e3102d88a8a70a59e52c5f99f1ba3 = L.circleMarker(\n",
" [34.563, -121.29462658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_368030d93861fc0b04043a63ac143084 = L.circleMarker(\n",
" [34.56316667, -121.30475924],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_acf34bdad34d68590cd71ce19439d26a = L.circleMarker(\n",
" [34.56316667, -121.31484315],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4538535133f6859344f5655f44f9f515 = L.circleMarker(\n",
" [34.56333333, -121.32476863],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_11e37a271a1fa06ee1c2372bb5ad5492 = L.circleMarker(\n",
" [34.5635, -121.33489606],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5283ec02f23391097c4839bfc0239cae = L.circleMarker(\n",
" [34.56366667, -121.34508133],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e725caa24b08a032a4d6603eba087943 = L.circleMarker(\n",
" [34.56383333, -121.35512761],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b663717a70cf27e5eb98fb88282a7b01 = L.circleMarker(\n",
" [34.56416667, -121.36525378],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8932db758dca02ea90b00ccf9f5d2037 = L.circleMarker(\n",
" [34.56419615, -121.37525513],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_703911526a997c7187fb4fc4d9fb7d78 = L.circleMarker(\n",
" [34.5645, -121.38537783],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_00dad8af56cfca4fac8f8848d423e0c7 = L.circleMarker(\n",
" [34.56466667, -121.39549174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d2726d508fe4695eed40f876191efb83 = L.circleMarker(\n",
" [34.73068563, -121.72397248],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b5c8d4645c87f5bde7319ced77c9f4db = L.circleMarker(\n",
" [34.73020943, -121.71924219],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fa5bec462b68fdf0b7137873153f8a07 = L.circleMarker(\n",
" [34.73040432, -121.70913392],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_437b7e244c259b1010398bb766133f1a = L.circleMarker(\n",
" [34.73042396, -121.69887319],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8fb20724ad1a20c662d33b75d69345cd = L.circleMarker(\n",
" [34.73049071, -121.68883036],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_570a6cf80112fb1f745c02b01474fafc = L.circleMarker(\n",
" [34.730608, -121.67872426],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d70e79cfd45693f8b5b4f5f298e23a74 = L.circleMarker(\n",
" [34.73073862, -121.66864992],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3036be22eca8f18457b5ef25271db717 = L.circleMarker(\n",
" [34.72903676, -121.66738236],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ed4bc5e70cc58f305bc82fb62b3247d0 = L.circleMarker(\n",
" [34.7296842, -121.661089],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c4c8eb46781b2b68a911c49c1ab464b6 = L.circleMarker(\n",
" [34.73005711, -121.65107991],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c9f8a3d4127608a0957d8487f82ecabd = L.circleMarker(\n",
" [34.73014808, -121.64100121],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c9eb562e9732417e3b2a481e251999b5 = L.circleMarker(\n",
" [34.73041402, -121.6309385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_efb6ebdc1d181460a6507c1a35cd2c7d = L.circleMarker(\n",
" [34.73059739, -121.62087933],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6e65ce18076e65d290d63ebed2b7ea16 = L.circleMarker(\n",
" [34.73063396, -121.61080375],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5077ac4feb7eb1dee57e2ee0f60588d3 = L.circleMarker(\n",
" [34.73073391, -121.60066128],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0ba5720e75e3203c65f2d94c02b46905 = L.circleMarker(\n",
" [34.73084788, -121.59067175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6236005346881b11adf3baead96fc53b = L.circleMarker(\n",
" [34.73098392, -121.58056762],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_04934f117b1b5c642b922b9b8669c9e6 = L.circleMarker(\n",
" [34.7312262, -121.57049093],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e4f4cc071289fdc0d539f47ba50cd786 = L.circleMarker(\n",
" [34.73134087, -121.56040211],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_851561bfdf30fd93ccff4914c6c45c3f = L.circleMarker(\n",
" [34.73116677, -121.55027122],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_54a57d05df37d5d8dda8a82939993859 = L.circleMarker(\n",
" [34.73094792, -121.540131],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5a0188941caf8698ba6b0b24823e1a24 = L.circleMarker(\n",
" [34.7308265, -121.53002616],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_75aab66065e7b46e01cae180bdb56e1a = L.circleMarker(\n",
" [34.73082082, -121.51990299],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9508ff7977015ede2b00d6e9c71896ca = L.circleMarker(\n",
" [34.73087776, -121.50983058],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cd4e2001112c45b1e64fdaaaead25135 = L.circleMarker(\n",
" [34.73093494, -121.49982513],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_eacd06df734721dc9ca46792a07a9162 = L.circleMarker(\n",
" [34.73119061, -121.48973687],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ee9b60ba10a1d74ba7bdaa28ddfe33c4 = L.circleMarker(\n",
" [34.73143746, -121.47969168],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ce413951b4c340fcb8409453a07f5ca4 = L.circleMarker(\n",
" [34.73146485, -121.46952746],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e28e1f6d505c20e6dbb22df258a3273a = L.circleMarker(\n",
" [34.73147275, -121.45950732],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_42216f05c96a57aa366b55e7d25ddb6e = L.circleMarker(\n",
" [34.73140883, -121.44945887],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fb5f5085963ef5dd8a44edc1755695cd = L.circleMarker(\n",
" [34.73134246, -121.43926967],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6798d187d54a9ad44e11a04e2dcb966c = L.circleMarker(\n",
" [34.73130559, -121.42917289],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b159c90694dd7884f55111ce1d3c60a0 = L.circleMarker(\n",
" [34.73132542, -121.41908281],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f967b5adf63bad9bab197ca68566db79 = L.circleMarker(\n",
" [34.73141396, -121.40897807],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fb7426f88e6010a1fac0b1f8cb433224 = L.circleMarker(\n",
" [34.73145549, -121.39897052],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_845b4cdbdf3a32a6aa72dca29147af33 = L.circleMarker(\n",
" [34.73138921, -121.38888449],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f9896dcdc70ba311e382047387c1819f = L.circleMarker(\n",
" [34.73123958, -121.37877347],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6da1105bbd3bf4f944e8112a86a9d757 = L.circleMarker(\n",
" [34.73103236, -121.36863984],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_830154250847398c2a075b5d59d7a1c8 = L.circleMarker(\n",
" [34.73081171, -121.3585907],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2ac4a4806e43062b8f3b423db073aacc = L.circleMarker(\n",
" [34.73062081, -121.34850282],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c3cf292e78b6ce6a9eee61dadc1ed092 = L.circleMarker(\n",
" [34.73042641, -121.33839387],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_06765d62798e69cc9e397efea71f9f2d = L.circleMarker(\n",
" [34.73019421, -121.32833065],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e3e503ea5eaaca6869913152897025c6 = L.circleMarker(\n",
" [34.73013914, -121.31816691],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_121bc7b3b481df4cd7b3296d55d81ac4 = L.circleMarker(\n",
" [34.73018482, -121.30815292],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fb66ffa63bb78157101b0cca6c02936a = L.circleMarker(\n",
" [34.73014412, -121.29768429],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fbda372f1712100968adef83818b98d5 = L.circleMarker(\n",
" [34.7300856, -121.28776064],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b157f739feb7ea9b7bf16dff7b23797d = L.circleMarker(\n",
" [34.72996046, -121.27777886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_285c57a73356c64a4c7587a67b0e5066 = L.circleMarker(\n",
" [34.72991121, -121.26764885],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1eb2d5318963a966fd72a58e83537055 = L.circleMarker(\n",
" [34.72990865, -121.25750877],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b99daaec8d03947d4e8f9d866651ce6c = L.circleMarker(\n",
" [34.72993446, -121.2473414],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c8bd958ea3a1cd8f406ce84c8454d373 = L.circleMarker(\n",
" [34.72993997, -121.23725024],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2568db98e9e60738ef2b0896bd9313c2 = L.circleMarker(\n",
" [34.72992847, -121.22706453],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b1c9f93954598b82534db3fb0d9fe03a = L.circleMarker(\n",
" [34.72989429, -121.21701663],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_859fabe45cc9c8697506439eab972d6c = L.circleMarker(\n",
" [34.73002363, -121.20694607],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6e39206e35a1a62b53a38eb8832e0fac = L.circleMarker(\n",
" [34.73027121, -121.19679142],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d12768c2444399a1091a881c404ba3ff = L.circleMarker(\n",
" [34.73052274, -121.18666511],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_591038133a3fb21714b2359cef8321b3 = L.circleMarker(\n",
" [34.73041718, -121.17653883],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c109cf883a8136b72eace643beb0ad3f = L.circleMarker(\n",
" [34.73050572, -121.16640566],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bc63156eb8c6bcead52241db8161a7ce = L.circleMarker(\n",
" [34.73043844, -121.15633086],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_113b8c87a8ced6eaa801dfc98cb61211 = L.circleMarker(\n",
" [34.73046053, -121.14615327],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bc343a8a9b77319845e5aa552c4453f5 = L.circleMarker(\n",
" [34.73051143, -121.13604417],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_847076d112c3681de12b142b5dde94d1 = L.circleMarker(\n",
" [34.7304935, -121.12594976],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a9dabfacb5a7694fac16a5ebdb7c781b = L.circleMarker(\n",
" [34.73044006, -121.11579357],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c7aa9d1c8b73b13551d9b0b3b9d8328c = L.circleMarker(\n",
" [34.73047602, -121.1057323],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9c2836e9d7ac4db7770ed93e4c9d6ead = L.circleMarker(\n",
" [34.73051094, -121.09560639],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_aa056f4b0dd1be229d51645cecfc85b8 = L.circleMarker(\n",
" [34.7304604, -121.08546936],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_117e7d76ba3428b8e6b81f63b03b0d33 = L.circleMarker(\n",
" [34.73044383, -121.0753587],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a3305a17caa3c89be1e5271923a667bf = L.circleMarker(\n",
" [34.73047992, -121.0652016],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e0181c8763ffc29968edc92fc1d58a43 = L.circleMarker(\n",
" [34.73046607, -121.05510625],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ce6b0c08b7a6ee78bf2fd18886f7e5bd = L.circleMarker(\n",
" [34.73041878, -121.04704561],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e6cf3e933c5cc2c646dc649d26487b73 = L.circleMarker(\n",
" [34.7305063, -121.04351443],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ec5f0b25ab6be4caa16b3e6145ee1faf = L.circleMarker(\n",
" [34.73053898, -121.03338061],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8766824334723051151bed14bdd63283 = L.circleMarker(\n",
" [34.73060891, -121.02327739],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ad72b99990a3b0cb7268996a2919d094 = L.circleMarker(\n",
" [34.73062817, -121.01314023],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d0b596a316dad13a09664bd78d05283b = L.circleMarker(\n",
" [34.73057927, -121.00304256],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0972b7a698af2749f2533ccf37fdacc4 = L.circleMarker(\n",
" [34.73063053, -120.99291721],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8b8db34c1f24bf8c54103321bf2ef29d = L.circleMarker(\n",
" [34.73061376, -120.98280818],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_da2d2c2be796802bfcde082fa786f427 = L.circleMarker(\n",
" [34.73059239, -120.97268662],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_332bc3b42f0c2dcac96f766b2e8b6396 = L.circleMarker(\n",
" [34.73062964, -120.96254898],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_55aff79140dcf407e0dedc6b81c285b7 = L.circleMarker(\n",
" [34.73056854, -120.9524153],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a8c76b108a63e6c50155477b5eddd1c9 = L.circleMarker(\n",
" [34.73063236, -120.94227908],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_19cd759688935e38421ac2a6d066d603 = L.circleMarker(\n",
" [34.73057385, -120.93212183],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_204c10f8c9995a768bdeb684117c4385 = L.circleMarker(\n",
" [34.73065166, -120.92203706],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_aba8a5d6ace8ef556a41a38584d44633 = L.circleMarker(\n",
" [34.73057006, -120.91189214],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a0c6d3b57e0acf104daa9f07213dbd4e = L.circleMarker(\n",
" [34.73065827, -120.90179992],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0c0747914f884cab82f0463d497c4918 = L.circleMarker(\n",
" [34.73061912, -120.89177496],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4ff53b65e24ca3eacbfa0d70d8092be6 = L.circleMarker(\n",
" [34.73057397, -120.88168577],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_742e902b98f0dced96e00e3e19f82eb6 = L.circleMarker(\n",
" [34.73062237, -120.87153798],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_908c67e0c125e524d752fa849ac18d8c = L.circleMarker(\n",
" [34.73054934, -120.86140332],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5ecdb1c630c554406e5d83fa53830208 = L.circleMarker(\n",
" [34.73063256, -120.85128338],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_416e7dbeff9eb3d82b61dc7bb9f562e1 = L.circleMarker(\n",
" [34.73057134, -120.84122916],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a7a076fac340145cac8b05f8419f8d85 = L.circleMarker(\n",
" [34.73058711, -120.83110815],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1c8948b16730ed0e1962e6fc7e4bbe2c = L.circleMarker(\n",
" [34.73063018, -120.82096202],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_811c6ccb86c0b053666dcc0f309e74aa = L.circleMarker(\n",
" [34.73062443, -120.81084728],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_600eb2651a38fa71dc8fc8a0eb773b40 = L.circleMarker(\n",
" [34.73058044, -120.80076792],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4ff3a98e8a75e00d78b05ece0ad88a60 = L.circleMarker(\n",
" [34.7305886, -120.79069755],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f738f3c43f1852c003564ba329040ebe = L.circleMarker(\n",
" [34.73064862, -120.78058565],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_edd9a4f295768906868ec8ebca236563 = L.circleMarker(\n",
" [34.73058697, -120.77044163],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7cdbe9f809a65f293b5fbb2e7a551533 = L.circleMarker(\n",
" [34.73061039, -120.76032501],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6fa1bc75556217bf8faff3ff44880a4b = L.circleMarker(\n",
" [34.73063338, -120.75018699],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e85c086c3f9665d5c1a766fd31ab3a1a = L.circleMarker(\n",
" [34.7305839, -120.74003515],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3f0679a5ce4df03f750fda14b6954d9c = L.circleMarker(\n",
" [34.73060577, -120.72994447],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6cedf917d1ffa8ca13767749feb168d8 = L.circleMarker(\n",
" [34.73061148, -120.71985481],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_096f44ea6537dc48dde124179b9a2f40 = L.circleMarker(\n",
" [34.73059621, -120.70963395],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_034af0237d3dd816bbed71fcc52c3593 = L.circleMarker(\n",
" [34.73058975, -120.69954265],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1d5dc225c4ea3952b78a64293728fd3b = L.circleMarker(\n",
" [34.89740023, -121.70793795],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_542c45565a9926ab605e53e8f763cde6 = L.circleMarker(\n",
" [34.89745303, -121.70260914],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b7f00e29a86dbf85311380a12dba308c = L.circleMarker(\n",
" [34.89742327, -121.69249726],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5bdae8f67afe61997028895ea42d7d33 = L.circleMarker(\n",
" [34.89745511, -121.68231674],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_db86c338c7e08ab8d7248e54284225eb = L.circleMarker(\n",
" [34.89745215, -121.67221568],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7a1da35a2513738ac63a77928dfef104 = L.circleMarker(\n",
" [34.89742299, -121.66211072],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7a4da8dc0878d73c459a5b6385aa57af = L.circleMarker(\n",
" [34.89746059, -121.65195079],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fb7cbfda67ed9c6d3d2b92a7c59e0e23 = L.circleMarker(\n",
" [34.89745435, -121.64184458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8a7d4913b4143107aee69ab67db3d3e6 = L.circleMarker(\n",
" [34.89743074, -121.63170811],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3c0546b28118216ebc098677f9866c0c = L.circleMarker(\n",
" [34.89746489, -121.62160788],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b74216cd23f2002f55f51e335ab008e3 = L.circleMarker(\n",
" [34.89745435, -121.6114842],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_02f5c331423472f383435d31dee244b8 = L.circleMarker(\n",
" [34.89741561, -121.60130129],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_067ad0740b1cd59e562b9557a4e0a59a = L.circleMarker(\n",
" [34.8974961, -121.59125881],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_46240b0231c4aa7a1c42c4f58b509590 = L.circleMarker(\n",
" [34.89736088, -121.58109094],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ab7162dc9bee4edbe94b066fd04b92e9 = L.circleMarker(\n",
" [34.89701288, -121.57094114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_49d64d72874d921cef587ee57c232d88 = L.circleMarker(\n",
" [34.89699806, -121.56085088],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_803a632b01dce11265d97baffba17c0e = L.circleMarker(\n",
" [34.8970187, -121.55067684],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3493db22d2a93c1e9e5f6272c02c3fa5 = L.circleMarker(\n",
" [34.89712235, -121.54056721],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fee33a097d90c07a0dcbc3a9d7f98b9b = L.circleMarker(\n",
" [34.89728058, -121.53034992],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_02b952207a7100c83f36791be8b9afa5 = L.circleMarker(\n",
" [34.89749652, -121.52022061],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f06f23d117584e68cb5e7cd17343cad1 = L.circleMarker(\n",
" [34.89774938, -121.51010124],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1dc5b688c0ba0635e6b26657ccb7ba6a = L.circleMarker(\n",
" [34.89790698, -121.49996679],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1bad3ff54f832f8f4fbeb52757da3154 = L.circleMarker(\n",
" [34.89781094, -121.48979047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bdb8c63c3071bb8ecfe954200deab15c = L.circleMarker(\n",
" [34.897611, -121.4799089],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7361d0be4f562ddc9745e806c3b19171 = L.circleMarker(\n",
" [34.89799818, -121.47002488],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_42c745f099303da4562ce706c6a92514 = L.circleMarker(\n",
" [34.89696084, -121.46033842],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c84c72637996efc217bdce42bcf96f91 = L.circleMarker(\n",
" [34.89741628, -121.45014234],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9b5625437880cd679aafe3e324b92569 = L.circleMarker(\n",
" [34.89743119, -121.4400177],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7454565ab81cf44350c19522ef7e017d = L.circleMarker(\n",
" [34.89746185, -121.42981378],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bb1342adfccec4be84e418678f30e5ba = L.circleMarker(\n",
" [34.89755744, -121.41965374],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ecfddc2d5844c9d44d3e82335d0bb07f = L.circleMarker(\n",
" [34.89741614, -121.40950831],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_83ea52a91f84fe9e9a39528706edcc74 = L.circleMarker(\n",
" [34.89733253, -121.39929353],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_88173b78d2a6d177933b30fadf82cb5b = L.circleMarker(\n",
" [34.89747197, -121.38924047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_11f91deed7e0440f82c96952d313ee44 = L.circleMarker(\n",
" [34.8972586, -121.37901936],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_870848d77789ffe7f5b26bc4e50155c7 = L.circleMarker(\n",
" [34.89727481, -121.36896476],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8eacee66e530dd448687ebcb637777f8 = L.circleMarker(\n",
" [34.89724486, -121.35874601],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5bfb29a7be95c69133bf9b499a2ca4b9 = L.circleMarker(\n",
" [34.89723824, -121.34854542],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_376ce1fb4419827eba3a4ce9d78719c2 = L.circleMarker(\n",
" [34.89735718, -121.33851314],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f3d2e5981c9b4374597291f8e93f7b70 = L.circleMarker(\n",
" [34.89751183, -121.32829004],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8c6d11674fb0c08976957af9672c55e7 = L.circleMarker(\n",
" [34.89770992, -121.31817294],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bcaabe8892b1e828e3a2a472ab031d1f = L.circleMarker(\n",
" [34.89786955, -121.30793855],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_457c8eb7e3c1e3e1b2570da78196c7e3 = L.circleMarker(\n",
" [34.89782776, -121.30064684],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9a4d2df2ed52019d47255f161d7f28d0 = L.circleMarker(\n",
" [34.89768365, -121.29660203],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f5c29e1f821a3bd27e916f26ba701b0d = L.circleMarker(\n",
" [34.89725071, -121.28639179],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4a7eb2d9c8ec9dab14daed1cf8d71c0d = L.circleMarker(\n",
" [34.89710676, -121.27630958],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4320b3dc23a01ed42b55e0b09b80dff2 = L.circleMarker(\n",
" [34.89692669, -121.26614759],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_38c9ddac8d18eeed2f3bab09e93d7f38 = L.circleMarker(\n",
" [34.89680135, -121.25606555],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9604014422c455ab7b4cf0c5c31362b5 = L.circleMarker(\n",
" [34.89695366, -121.24586377],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_39947174479cddef7161742058de7c53 = L.circleMarker(\n",
" [34.89724164, -121.23577625],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5d9ec0df400f19d3d325fd944768137f = L.circleMarker(\n",
" [34.89749058, -121.2255478],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9146d29c59ebeeceb10824f418abd900 = L.circleMarker(\n",
" [34.89736625, -121.22076442],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b88315c2302aec09c47f3dd738225709 = L.circleMarker(\n",
" [34.89735742, -121.21825114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_60f46a1ee130f7321adc7a3d20b86b42 = L.circleMarker(\n",
" [34.89739533, -121.20807733],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1b00bcb704b307f945ef7d54e8055918 = L.circleMarker(\n",
" [34.89731027, -121.19783404],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_60ebec52e9636f20cc664e4bfadd76e5 = L.circleMarker(\n",
" [34.89718813, -121.1877126],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8afbc48e740ee5db45399b3de1fdf195 = L.circleMarker(\n",
" [34.89700449, -121.17756028],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_61b28bfce0ea3097aa69eac51356c144 = L.circleMarker(\n",
" [34.8970027, -121.16742507],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1ab9279f42d3fde2921cf0f650c8b9a5 = L.circleMarker(\n",
" [34.89729058, -121.15719507],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d680690031b8cc5a72dd22fe168701dd = L.circleMarker(\n",
" [34.89754336, -121.14713972],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1d97a28d78512dd8409dc858d57b591e = L.circleMarker(\n",
" [34.89759614, -121.13694662],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1b9a473ff3a975d755db67a57f4a4cc1 = L.circleMarker(\n",
" [34.89762717, -121.12679175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0fe74830d0daf79fd4bfe6afba00b2dc = L.circleMarker(\n",
" [34.89757195, -121.11667094],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_eea8ad5b7a5ac0fe4d468ffb1bb6faf8 = L.circleMarker(\n",
" [34.89762467, -121.10649226],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_54145287d57ee642a98cb748c50c88d5 = L.circleMarker(\n",
" [34.89756877, -121.09629836],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9b4951d827bfa9128b4d27a8e6f21895 = L.circleMarker(\n",
" [34.89760746, -121.08612504],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c436d678474138a8ec1f1d6dfc8f40f5 = L.circleMarker(\n",
" [34.89760477, -121.0760368],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a5b4c11648cdb857c96cc4689c05ecd6 = L.circleMarker(\n",
" [34.89758144, -121.06581661],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d8d171ac20577e9f8232f49e9463cb06 = L.circleMarker(\n",
" [34.89740915, -121.0557041],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4fb90595c9972f795a2260b529fd3142 = L.circleMarker(\n",
" [34.89723763, -121.04553554],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d17f0ae28d8f9b2a4722b72bf87e30e3 = L.circleMarker(\n",
" [34.89744176, -121.03535889],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_95c7d9d13f482d7281402befd59368a6 = L.circleMarker(\n",
" [34.89751732, -121.02525935],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0b6dc9f4b758e6b7c0bbc4349889cfab = L.circleMarker(\n",
" [34.89768754, -121.01512749],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_66e98b1d3067be13b9601b33f37aa5b2 = L.circleMarker(\n",
" [34.89783775, -121.00501679],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7c814bab6863eb781b10da9d127d3a39 = L.circleMarker(\n",
" [34.89766667, -120.99514468],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_84df1832604220ba24c946a17a80dae2 = L.circleMarker(\n",
" [34.89783333, -120.98490328],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_efdcfb3eae0a228f6ee6e8fb8dc52a52 = L.circleMarker(\n",
" [34.89783333, -120.97480483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d2c31faf2f4f381763d1bb7580cee042 = L.circleMarker(\n",
" [34.89783333, -120.96469757],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c810695f7b99025d1c7977da0fd04f00 = L.circleMarker(\n",
" [34.89780637, -120.95455393],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_036fb21f9828d7dc796bc92066d42418 = L.circleMarker(\n",
" [34.89759407, -120.94447853],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_012d9a9822305cbabf2a7d5af8a34e61 = L.circleMarker(\n",
" [34.89783333, -120.93433792],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e7d50b54f25ce63103d5b5bf506bedae = L.circleMarker(\n",
" [34.89816667, -120.92408625],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1166508b261c62029f24da5a96991f1a = L.circleMarker(\n",
" [34.8985, -120.91408785],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0f2340ed1f66e4778b4dda08c7de04cd = L.circleMarker(\n",
" [34.8985, -120.9038439],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_29a66ec1aa5d4118bd808ab9ad214f68 = L.circleMarker(\n",
" [34.89866667, -120.89371563],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0fa3311fd8df023307d5911474176bda = L.circleMarker(\n",
" [34.8985, -120.88356242],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2c4ccdd4ec002be23f413b25442d022f = L.circleMarker(\n",
" [34.898, -120.87335488],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_98db48b02c815e06aff5ce71f8ca9885 = L.circleMarker(\n",
" [34.8975, -120.86331758],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a078d0693d0c14b8dd9a709c518b0870 = L.circleMarker(\n",
" [34.8975, -120.85311833],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b270f66f68796284b15d2105984019f2 = L.circleMarker(\n",
" [34.8975, -120.84295422],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_daed408da87816a0656c2f17b3d9e28c = L.circleMarker(\n",
" [34.89766667, -120.83282135],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5b921051e560dfcee41fa7e2ea7dbf26 = L.circleMarker(\n",
" [34.89766667, -120.82256149],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_98992cedc6b608598bab71ac61e6927b = L.circleMarker(\n",
" [34.89766667, -120.81237114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2d088541c289a437e62afcc7e1ed6d8d = L.circleMarker(\n",
" [34.89766667, -120.80225231],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ed26ad962ad55810ad01d116c1f47307 = L.circleMarker(\n",
" [34.89762414, -120.79220574],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_12ff032c472d844a66937351b2d0ea01 = L.circleMarker(\n",
" [34.8975, -120.78203974],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_642d04992805e0b108a19d318b6d94a7 = L.circleMarker(\n",
" [34.89733333, -120.77178831],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c83a2a24ed94ebe9886d9742c394514b = L.circleMarker(\n",
" [34.89733333, -120.76156523],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e9dd3e2b1158f03e941eed2e1cb16154 = L.circleMarker(\n",
" [34.89733333, -120.7515],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_01e51bc76eed4eff32095540cf2e83e1 = L.circleMarker(\n",
" [34.89733333, -120.74133333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_da7a9508808aeb36dd164d9be03c8642 = L.circleMarker(\n",
" [34.89733333, -120.73101641],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e62c44b12c564e9626483131ba6c3d79 = L.circleMarker(\n",
" [34.93042058, -120.92643029],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ba13bcdc94ddfc733ef345cc7d47cb82 = L.circleMarker(\n",
" [35.065, -120.72632139],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_484a8aa6d24795516ba3d76e8b20145f = L.circleMarker(\n",
" [35.06483333, -120.7345],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d38da2048665743f2d54920f522fe5bf = L.circleMarker(\n",
" [35.06466667, -120.74483333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ac38b6e68a61a5b5bc2dda9df77b2415 = L.circleMarker(\n",
" [35.06433333, -120.75487887],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2ec84e707b290841bc80f022f9088bd6 = L.circleMarker(\n",
" [35.06383333, -120.76516667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_191ac2bccc134eed44266eac8d734737 = L.circleMarker(\n",
" [35.06366667, -120.77518],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_045d850b309a1c2641a10979bb978292 = L.circleMarker(\n",
" [35.06383333, -120.78552866],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_45d2b4182a1b8cd76f13019d0680aad0 = L.circleMarker(\n",
" [35.06383333, -120.79561759],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_91cab5167117c3e531ac2cd058f4eb96 = L.circleMarker(\n",
" [35.06383333, -120.80579183],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9cf0c0766d27681fe9303125f635fbe5 = L.circleMarker(\n",
" [35.06383333, -120.81592974],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_95bc9adb9e5906fb400223cbeb719aba = L.circleMarker(\n",
" [35.06383333, -120.82632785],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6362ee2dbc71f9bef2badf5a00f99a81 = L.circleMarker(\n",
" [35.064, -120.83638908],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1dfb8ce9e3a299b2f55a07da9e8e1404 = L.circleMarker(\n",
" [35.064, -120.84670425],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8013eb19ce3a6bf1ffa3cb5671a89273 = L.circleMarker(\n",
" [35.064, -120.85675666],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3efd32faddd565723f0d7afca712e720 = L.circleMarker(\n",
" [35.064, -120.86700282],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b205aa2a5df953aca347e39b44d06374 = L.circleMarker(\n",
" [35.064, -120.87709258],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3799e21c4602384d14eb9e647824bdc5 = L.circleMarker(\n",
" [35.064, -120.88737836],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d17f1ba1a390231eb03ebafdff6c3ef2 = L.circleMarker(\n",
" [35.064, -120.89740611],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f0295ca6ce3469560559c1217a992459 = L.circleMarker(\n",
" [35.064, -120.90762988],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_98b18761c6d1f5be65ab2b99d4845520 = L.circleMarker(\n",
" [35.064, -120.91787253],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e155cd80ecc2ed224620035926c2bed5 = L.circleMarker(\n",
" [35.064, -120.92799395],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f97e1ab03126e6818257c35b916a2efe = L.circleMarker(\n",
" [35.064, -120.93819965],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d3ff809d50c148639b3057086dd38aff = L.circleMarker(\n",
" [35.064, -120.94837002],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f32251e6b249af68a2df9ae4651882b6 = L.circleMarker(\n",
" [35.064, -120.95860526],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_94ffdcb345f60c7d9bb08eb905c6d17d = L.circleMarker(\n",
" [35.064, -120.96883333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d7cbdd5e483a31d8920d17fd6311ad37 = L.circleMarker(\n",
" [35.064, -120.97897158],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8061fe547ed4875cd467ff86647d3058 = L.circleMarker(\n",
" [35.064, -120.98915715],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6b71f1c316a9fcb8fd484fc4200de128 = L.circleMarker(\n",
" [35.064, -120.99935183],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4899aad7a02be7a1e89f33b0ca7b745f = L.circleMarker(\n",
" [35.064, -121.00945923],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_25f0b0595d49fb2007021936854100eb = L.circleMarker(\n",
" [35.064, -121.01956527],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_228292be732ed096269a265e8c3eefa8 = L.circleMarker(\n",
" [35.064, -121.0298266],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2d676269eb20b1322d04da47463d041d = L.circleMarker(\n",
" [35.064, -121.0399058],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ae4c4ba93bc7710c13e553f6457a01f5 = L.circleMarker(\n",
" [35.064, -121.05013981],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c66e61dc05bb74b85f43abd842deda92 = L.circleMarker(\n",
" [35.064, -121.06028243],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_86a7109f2d644a89454a1f7c8b05507a = L.circleMarker(\n",
" [35.064, -121.07037953],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fd78e6b6920183e5c79d9a0e9e89e77a = L.circleMarker(\n",
" [35.064, -121.08060847],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_54cd22eda78cf8e644ae814cc4f8e05d = L.circleMarker(\n",
" [35.064, -121.09083217],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_82aaaf28cb9467c369436ccf541c4b1a = L.circleMarker(\n",
" [35.064, -121.10089578],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_831e4bddf82820b9e142deed222510f6 = L.circleMarker(\n",
" [35.064, -121.11113886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a9f9a0266c68db054509004628c41068 = L.circleMarker(\n",
" [35.064, -121.12134993],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f9097065d5e024982659098f372a8257 = L.circleMarker(\n",
" [35.064, -121.13147589],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_123b0b6aec61d15e675afbb2aedf215c = L.circleMarker(\n",
" [35.064, -121.14158461],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e94d495e5b4d6c5d9c976896c15c4358 = L.circleMarker(\n",
" [35.064, -121.15184499],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2c1678eee0bb6d18b6211d1ed05ef38e = L.circleMarker(\n",
" [35.064, -121.16201556],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2dd94d9c26fd789f15d8dcd09a10f0d4 = L.circleMarker(\n",
" [35.064, -121.1721929],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b59b2674acb82e8ab432010b261fe55b = L.circleMarker(\n",
" [35.064, -121.18235678],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e0c3c8e9251ee74020726d518c171b87 = L.circleMarker(\n",
" [35.064, -121.19253277],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7570362ca8c7257d114c913cfdb9691e = L.circleMarker(\n",
" [35.064, -121.20273371],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4e7a654a80e05d4caa35eb33a2542f90 = L.circleMarker(\n",
" [35.064, -121.21302355],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9d5be1d898d805c1a61a2a7ffb8af841 = L.circleMarker(\n",
" [35.064, -121.22329293],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8c37e41f4089e2031dcc8e823ee8549e = L.circleMarker(\n",
" [35.064, -121.23329342],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f6a4cc8598edc4ced4bc41f6a5e8f5a6 = L.circleMarker(\n",
" [35.064, -121.24364158],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8016fcc79698d07f6151700a20e25e83 = L.circleMarker(\n",
" [35.064, -121.25372001],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5f22e9e79f9abeab067584dc74976061 = L.circleMarker(\n",
" [35.064, -121.26392392],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_acaeae6f7ca224a4cf929ebb6d599ab8 = L.circleMarker(\n",
" [35.064, -121.27402533],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_81f0319d3213321a2ce067ad0634ef23 = L.circleMarker(\n",
" [35.064, -121.28431755],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9cabfa445bdc3a62dcf52c22b91be6e1 = L.circleMarker(\n",
" [35.064, -121.29448048],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_180e306d42215a69cb612ab6dd3522bd = L.circleMarker(\n",
" [35.064, -121.30463942],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3672d184cc411a2ff17f8eaa49e8e89f = L.circleMarker(\n",
" [35.064, -121.31485317],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_72f026063d68f823e5bcc1332ec24914 = L.circleMarker(\n",
" [35.064, -121.32495275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b9efd2d0570a0fc399dcc50d707dfd32 = L.circleMarker(\n",
" [35.064, -121.33517629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4106b9c42d693276db680983315297a7 = L.circleMarker(\n",
" [35.064, -121.34528596],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_50fd3208bb848ae249e13ec5fb5ac555 = L.circleMarker(\n",
" [35.064, -121.35547448],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a8df7f86fc627dd2fdbd4d274d256bac = L.circleMarker(\n",
" [35.0640688, -121.35727471],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6512261ab3dc53f64d96e40e2abed59e = L.circleMarker(\n",
" [35.06420146, -121.36121979],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5e4226b9c2ae1ccca765ddf33d9131a1 = L.circleMarker(\n",
" [35.06424636, -121.37136035],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8cab0dabc980dea292e9a86e352619e0 = L.circleMarker(\n",
" [35.0643151, -121.38152961],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4c2b6b985060d3bc8e4b0514ae5539ad = L.circleMarker(\n",
" [35.06422883, -121.39172481],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9e78d0032bec9b18a74ffa53a3d1fd3e = L.circleMarker(\n",
" [35.06425468, -121.40175563],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8819e0409d6cf525f136146d80330019 = L.circleMarker(\n",
" [35.06429798, -121.41198103],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d2381d65c23f0e57044b0084ef59cddc = L.circleMarker(\n",
" [35.06423956, -121.42223376],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_88e8b5b0078947bd6b357bd8f8411fa4 = L.circleMarker(\n",
" [35.06418062, -121.43239968],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c2de0e869d62e26e9b54a323e2668934 = L.circleMarker(\n",
" [35.06407227, -121.44259998],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4bbf0865372be6e64419120a71d70a2f = L.circleMarker(\n",
" [35.06390238, -121.45272638],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_205dba063c0e8a0ead4f9bcd1e00b0f0 = L.circleMarker(\n",
" [35.06373462, -121.46287907],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_47a0439fb9188e8b063f184a0598f984 = L.circleMarker(\n",
" [35.06344434, -121.47312732],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7b9509ca779dd25bad111dc253efc552 = L.circleMarker(\n",
" [35.06309804, -121.48324179],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b7322bd39d07eb35380e456e1a2d676a = L.circleMarker(\n",
" [35.06300136, -121.49337298],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_811a1f404b586c05d906009728ac8172 = L.circleMarker(\n",
" [35.06309525, -121.50347161],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a1d08aae5f4f2323bd4f3775b569f067 = L.circleMarker(\n",
" [35.06366667, -121.50254886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9854814ae93cb354f72fed954cab5d17 = L.circleMarker(\n",
" [35.06383333, -121.51113317],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_66ad7996feddae458a3246845738ebe3 = L.circleMarker(\n",
" [35.06383333, -121.52116667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0082696a7cf646aeb5a4b8f083492a6b = L.circleMarker(\n",
" [35.06383333, -121.53129852],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_26cf7263b3d4c83eacda7fa3059ccfc4 = L.circleMarker(\n",
" [35.06383333, -121.5415021],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_955f890f771e5b6d79f768b7894be8f3 = L.circleMarker(\n",
" [35.06383333, -121.55165106],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4addbf26d9fafa87cb9da6c9a5dcea80 = L.circleMarker(\n",
" [35.06383333, -121.56185042],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ec948258f7a53006580058c8f32898c5 = L.circleMarker(\n",
" [35.06383333, -121.57187386],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2ed7dd78d4c0cf0faed4a7e199cb0220 = L.circleMarker(\n",
" [35.06383333, -121.582],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c0cd51aa6ba2062ceef3e1ee02b313de = L.circleMarker(\n",
" [35.06383333, -121.59211855],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7e4097c9bf4d71bc6904ba61fb5be820 = L.circleMarker(\n",
" [35.06398047, -121.60248047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_90eb36abe589565c2e863c12882aeac7 = L.circleMarker(\n",
" [35.06383333, -121.61248993],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_11f54dcdec678ad6f6eef73c6328ab9e = L.circleMarker(\n",
" [35.06383333, -121.62278855],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d41f20390179958e3505206f1147bd49 = L.circleMarker(\n",
" [35.064, -121.63293538],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c9f2a32da606e0bd1c4a1562a8e01f60 = L.circleMarker(\n",
" [35.06383333, -121.64300466],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7b5efae1391fb1cbc9e47f0099ae1066 = L.circleMarker(\n",
" [35.064, -121.65326488],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_90e955915bc835d263b5567f0ead7dad = L.circleMarker(\n",
" [35.06383333, -121.66339458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_85c266a037a93480f296f2cd66bcc618 = L.circleMarker(\n",
" [35.06383333, -121.6735],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_448f03f31f22b1f661e8d10696e247db = L.circleMarker(\n",
" [35.09832526, -121.70255018],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_83dad42480178b71e445b30279d4ab63 = L.circleMarker(\n",
" [35.2308746, -121.78584409],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_463b8e0c0e7b728036fee32e08170e5a = L.circleMarker(\n",
" [35.23073744, -121.7785953],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_16df47439cabdac72216695676cfad81 = L.circleMarker(\n",
" [35.23073335, -121.76849411],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_22648f34f96eecb3057a3545ea156efd = L.circleMarker(\n",
" [35.23071429, -121.75820859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9ee8a5ca8e6274de56c5e1b884b785cc = L.circleMarker(\n",
" [35.23071433, -121.74808816],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ea2ad2e092c44cc439048685a853e4ab = L.circleMarker(\n",
" [35.23075781, -121.73796292],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1ffa14728fdcf01a5756215b7a4d3ab0 = L.circleMarker(\n",
" [35.23069929, -121.72781509],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_97d636b597e83626b14da8a85913ebb2 = L.circleMarker(\n",
" [35.23074778, -121.71763823],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1a501bf23ed9060e4045bb9091fd3d86 = L.circleMarker(\n",
" [35.23075226, -121.70735347],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_78b03e1f4ddea4032491522276676b8b = L.circleMarker(\n",
" [35.23070597, -121.69725937],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8a03f900c1e53c6cc77d36292bf83a11 = L.circleMarker(\n",
" [35.2307515, -121.68704073],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5cb0d214f5a0b40497f08c9e06c66481 = L.circleMarker(\n",
" [35.2307217, -121.67683419],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f15533a27bfcd38ed7482d42fe78feed = L.circleMarker(\n",
" [35.23069979, -121.66668323],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ace9385e131c37d5289da5bfaba1d196 = L.circleMarker(\n",
" [35.23077039, -121.65662174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6ce6a331d1d487edfe1def6ae31db586 = L.circleMarker(\n",
" [35.23072891, -121.64641934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_493d803f8d93eceed131b4a97f3b068a = L.circleMarker(\n",
" [35.23103658, -121.63625053],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1300a2cdfa501df3111a8a8a0b13defa = L.circleMarker(\n",
" [35.23135182, -121.62609804],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0c532750cbf695e67b43311cca49e983 = L.circleMarker(\n",
" [35.23146554, -121.61582906],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c0461a07e15300c83f53d3c23c8fad19 = L.circleMarker(\n",
" [35.23160849, -121.60562157],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f3a54ca104ad53a05e75eaa7538c582b = L.circleMarker(\n",
" [35.2316303, -121.59551244],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bead0b5a1121a8707d61af635541d9e6 = L.circleMarker(\n",
" [35.23166893, -121.58539859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e162e2fa76030fd3d00e675045a38953 = L.circleMarker(\n",
" [35.23162372, -121.57521119],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2f4c2f3c3347bcaef63790469566b4ad = L.circleMarker(\n",
" [35.23159982, -121.56503279],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5db2c934cd14ef2ce3bbd01bac2a7d7d = L.circleMarker(\n",
" [35.23156842, -121.55482534],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c74ce0fb13190298f9e455264aeed65a = L.circleMarker(\n",
" [35.23142215, -121.54460298],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1848cbd0285e52cfa1626bcf421b1c23 = L.circleMarker(\n",
" [35.23127321, -121.53438083],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1892610d0a0d2f77926c83d040ca27b8 = L.circleMarker(\n",
" [35.23125291, -121.52427185],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_907502889b2ba7344cf62dad3a67d541 = L.circleMarker(\n",
" [35.2312895, -121.51397268],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5650d1024473ff9da5b3deb7b0aa0d7f = L.circleMarker(\n",
" [35.23130898, -121.50393871],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a1a99d3474238c2836c629451bddf611 = L.circleMarker(\n",
" [35.23128004, -121.49362734],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_39942e38438221465a3ae14621d286a7 = L.circleMarker(\n",
" [35.2312545, -121.48364539],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_57a3448b42dad715966109f139203e60 = L.circleMarker(\n",
" [35.23127967, -121.47338706],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_534ff8957b5e7ad8830681c1bb430def = L.circleMarker(\n",
" [35.23132233, -121.46311779],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_96c5aad2935d85574e033ee0e623a3af = L.circleMarker(\n",
" [35.23125025, -121.45291388],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4a8d02ba9fe5da50f1ab403476abf7b6 = L.circleMarker(\n",
" [35.23128395, -121.44289856],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9b0e41e04984c09629dbfa5cf44e1cf0 = L.circleMarker(\n",
" [35.23128495, -121.43271533],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fe0f401a0eeaf9e4d7aebbc074366c0c = L.circleMarker(\n",
" [35.23117563, -121.4225187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2b5b409ee408a57242955ac713a78768 = L.circleMarker(\n",
" [35.23104201, -121.41232582],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5aa9e5a4687911309ebffd24a443b519 = L.circleMarker(\n",
" [35.23088953, -121.40200845],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_97b06e50a6b9680c9bae95760933a4b2 = L.circleMarker(\n",
" [35.23074991, -121.3918475],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3e8eb5cef0cc213be95baa39255d06a2 = L.circleMarker(\n",
" [35.23058871, -121.38159437],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f75b41072dd4cdde83b1a91b601c5873 = L.circleMarker(\n",
" [35.23047233, -121.37136141],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ae734c2c388e5dc91d361cef13afbde5 = L.circleMarker(\n",
" [35.23028947, -121.36119328],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_672ca2d25cb22b7b00a8dcd957bcb56f = L.circleMarker(\n",
" [35.23018652, -121.35102685],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7ba4a19277a1dfc4bd82fb3b1f565566 = L.circleMarker(\n",
" [35.22997924, -121.34074966],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bc7d3f39b168e4296c86133f529ed3c5 = L.circleMarker(\n",
" [35.23005777, -121.33058052],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_93878a15bf7173aee906c4ee3d443fb7 = L.circleMarker(\n",
" [35.23013934, -121.32041572],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_771ea8402551fdae4801ad02f7229460 = L.circleMarker(\n",
" [35.23034038, -121.31016166],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e4e0628d3581e3b163c250c353270ed6 = L.circleMarker(\n",
" [35.23046513, -121.29990806],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a6b237090320412e6e496a09c5e86f93 = L.circleMarker(\n",
" [35.2305626, -121.28985444],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_24c629fc2b10446b9cdd2518580556f5 = L.circleMarker(\n",
" [35.23075465, -121.2795693],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4363e1b2946abc8609b358d488c8668d = L.circleMarker(\n",
" [35.23089182, -121.26941779],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e91715733ce77862afd6e40b85955a4f = L.circleMarker(\n",
" [35.23104531, -121.25928962],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ac0e03983d3e1d5429e2e281a0159d7b = L.circleMarker(\n",
" [35.23117142, -121.24901823],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_75ffd509dacb5f152cbcc547fe19ed5c = L.circleMarker(\n",
" [35.23132514, -121.2388228],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fdb3951a6e314596a15bd1744eb89951 = L.circleMarker(\n",
" [35.23150093, -121.22863947],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_069a3a17f477d162db5ccc6f3367a8f6 = L.circleMarker(\n",
" [35.23162404, -121.21841458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_449586715cc626edebdb0d0641d9abb4 = L.circleMarker(\n",
" [35.23172722, -121.20830799],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3f85423e0bf8703035fe3391bb2274ce = L.circleMarker(\n",
" [35.23160827, -121.19810786],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7551dd24fbf8cf1e651d6e326f1fd45e = L.circleMarker(\n",
" [35.2314659, -121.18793307],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c4e403067610376c0ea5510e0c88c628 = L.circleMarker(\n",
" [35.23127105, -121.17771357],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f99fe48cd1c910140a3427f15db1c6b3 = L.circleMarker(\n",
" [35.23112124, -121.16752802],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6f16d8845a094e827df6a1120089b8d1 = L.circleMarker(\n",
" [35.23100703, -121.15731016],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6426535e69fc475355f18598d8168cf0 = L.circleMarker(\n",
" [35.23091092, -121.14713943],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fdfdef7d6abcc4e90930de743753dfd4 = L.circleMarker(\n",
" [35.23069989, -121.13701555],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_687b0a5d39d99216dc18249b61f92e99 = L.circleMarker(\n",
" [35.23056065, -121.12678712],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5929dac51f49e7029bf9b42685f87a15 = L.circleMarker(\n",
" [35.2304039, -121.11666494],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fb0a7d4b6871326e0dabe8a010c9d039 = L.circleMarker(\n",
" [35.23028562, -121.106481],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_297783bdf52c315b33f22762b4c5fbe9 = L.circleMarker(\n",
" [35.23026024, -121.09624762],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a3d7473dbc0cc439d703f830fd28c7fe = L.circleMarker(\n",
" [35.23023325, -121.08611926],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4e432e3da927ec34701ebc3ee562c640 = L.circleMarker(\n",
" [35.23026933, -121.07587949],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7081de537d3c2d5fe7ed62e19fde9fd5 = L.circleMarker(\n",
" [35.23026614, -121.06573748],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e405bab52e8042afdf963c07f38492f7 = L.circleMarker(\n",
" [35.23029294, -121.0556455],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2e74fec7c8c36d60e3c91013edf980d7 = L.circleMarker(\n",
" [35.23022031, -121.04539431],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e9a4e40d98d94c2145447a7c1cc3324e = L.circleMarker(\n",
" [35.23025995, -121.03525986],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_63a07d8a511d0d6c82a11d85cbf9d7b7 = L.circleMarker(\n",
" [35.23033021, -121.02514495],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9d0be3e8dff51b33174088312ffce211 = L.circleMarker(\n",
" [35.23027319, -121.01494205],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3993100e9fbc9861a328d740e2f0dc53 = L.circleMarker(\n",
" [35.23029185, -121.00477745],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_208c083a09e65745114eb6f58076f702 = L.circleMarker(\n",
" [35.23026602, -120.99448405],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e71914ea92330d910c9887c785f2f12e = L.circleMarker(\n",
" [35.23027897, -120.98434995],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4b4a1d3838bf9b350911d26871ab3dc9 = L.circleMarker(\n",
" [35.23031966, -120.97415247],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_574276a6b7540e6bca647738d6c3f590 = L.circleMarker(\n",
" [35.23063751, -120.96407064],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d5762973455687f534f7e6d01687f692 = L.circleMarker(\n",
" [35.23045624, -120.95382553],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d8a2db7ad8954db550544d2a1b8febe0 = L.circleMarker(\n",
" [35.23039941, -120.943573],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7eea16e5b97e837b1b814bd5d805931c = L.circleMarker(\n",
" [35.2306359, -120.93343327],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2a062f767dbe12e17d756532c331a71b = L.circleMarker(\n",
" [35.23084451, -120.92332072],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_142019020aebaf466c812bc8714f9927 = L.circleMarker(\n",
" [35.23078372, -120.91314757],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_325b48d0d810a91b54691d540439e488 = L.circleMarker(\n",
" [35.397, -120.92608307],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9f2ef70e171e1c75640ae2d8139b8e65 = L.circleMarker(\n",
" [35.39716667, -120.93283333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bf3830db20d8d101cf2412d3e020ada6 = L.circleMarker(\n",
" [35.39716667, -120.94313381],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f25ac6394e31f953db396b4ed19db234 = L.circleMarker(\n",
" [35.39716667, -120.95330097],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_433106b8cfadfcf7a1c058eb83a85beb = L.circleMarker(\n",
" [35.39716667, -120.96360619],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_faa5203b225dddff9ba67239b0662446 = L.circleMarker(\n",
" [35.39716667, -120.97377175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f899240c73bbde88e80d3ec8cea52c0f = L.circleMarker(\n",
" [35.39716667, -120.98380932],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a027b08cf7a454ddde7bfca4181b690c = L.circleMarker(\n",
" [35.39716667, -120.9940713],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_73a4c567b05951acf90601bf4b6185e5 = L.circleMarker(\n",
" [35.39716667, -121.00433333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6d2c0e0e44d244e184422822e5b0b17f = L.circleMarker(\n",
" [35.39716667, -121.0146629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bca5fa65cf822b9514fb2bc12fefebbd = L.circleMarker(\n",
" [35.39716667, -121.02483599],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8017ed550465e8c902987f991345816c = L.circleMarker(\n",
" [35.39716667, -121.03513818],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4ca24760b21dc35aa0c336ab27621df6 = L.circleMarker(\n",
" [35.39716667, -121.04529769],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0daa059896e168b649d8be0d2b358675 = L.circleMarker(\n",
" [35.39716667, -121.05551049],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_991f5a198d1211d2d72f65413690189f = L.circleMarker(\n",
" [35.39733333, -121.06572186],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2ab3612ac4cc9ee96c0e09d42869126f = L.circleMarker(\n",
" [35.39716667, -121.075875],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_196eddad862f86d6012e5fb0380f863c = L.circleMarker(\n",
" [35.39716667, -121.08616667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6beb8ba1ec932ddcd4f2a2c03680b998 = L.circleMarker(\n",
" [35.39716667, -121.09633761],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f49cafcdd817db465b117007b0d14f60 = L.circleMarker(\n",
" [35.39716667, -121.10666667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7b014fb79a6b9495633103f7504b3dd0 = L.circleMarker(\n",
" [35.39716667, -121.1168012],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_40f5130932279de4f3f9192529db31c6 = L.circleMarker(\n",
" [35.39716667, -121.12707201],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_020e70a003cc5115eaf3b902f1ecf1c0 = L.circleMarker(\n",
" [35.39716667, -121.13723186],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_692a67e1d75d17fa9026d65713e770ae = L.circleMarker(\n",
" [35.39716667, -121.14750762],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b19b7ed17b2a1a91fdb4acef91e7db2e = L.circleMarker(\n",
" [35.39716667, -121.15772665],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f69e501a7ef0bed96d23f628122b789d = L.circleMarker(\n",
" [35.39716667, -121.16805726],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bb7fa083f250748d345a67f5ba30ecf5 = L.circleMarker(\n",
" [35.39716667, -121.17826108],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fa95287c853d0322c97d655c72c3cb9d = L.circleMarker(\n",
" [35.39716667, -121.18841458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0fd27ffac2dd14d1d7a100cd8e11e6b9 = L.circleMarker(\n",
" [35.39716667, -121.19856997],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e05c0fd102fcfef719e79a98416aa8db = L.circleMarker(\n",
" [35.39716667, -121.20878265],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1f1d192d42d188712070129c9fac2e65 = L.circleMarker(\n",
" [35.39748253, -121.21657805],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7453b023383f9ad7a4fc4732417ad7a0 = L.circleMarker(\n",
" [35.39747107, -121.22174694],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_de65a7f103df137c4f53a7968a03b82e = L.circleMarker(\n",
" [35.39752009, -121.23188352],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7783f852f050a423ad4b386d4b23cd6f = L.circleMarker(\n",
" [35.39750063, -121.24209536],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_77679c955f74faaa3febef43488f64b5 = L.circleMarker(\n",
" [35.39748249, -121.25226635],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_56c6b737dd62efb0bc44a57409a5c555 = L.circleMarker(\n",
" [35.39746732, -121.26245758],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1b6768a9e469751ea223fd7fe0991889 = L.circleMarker(\n",
" [35.39751207, -121.2727525],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7ca20a27d1f438eaae0e04b84d3ed0ca = L.circleMarker(\n",
" [35.39749564, -121.28296925],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ae5539bc6867e6e59ee3b785206d3121 = L.circleMarker(\n",
" [35.39747603, -121.29311905],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_94e841306056444b94f9b280a97e07c8 = L.circleMarker(\n",
" [35.39746933, -121.3035137],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4d4a74f93c4b1bc76995101087602e59 = L.circleMarker(\n",
" [35.39749995, -121.31370263],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_971d4fae1c1531c1409f6e7a3bbb74c4 = L.circleMarker(\n",
" [35.3975035, -121.32406377],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3960e4e97636786e1ce49f6fb9f2ec73 = L.circleMarker(\n",
" [35.3974629, -121.33427104],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1247d06acc693049b57f2c41ede178b2 = L.circleMarker(\n",
" [35.39750804, -121.34456642],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2b483bc794d5807b2cf54a60df9e38d6 = L.circleMarker(\n",
" [35.3975135, -121.3546093],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1a306a99fd05a6b9ed404d0d21011f71 = L.circleMarker(\n",
" [35.39743661, -121.36481343],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b277b7929609fd79570c6007f5fbe77d = L.circleMarker(\n",
" [35.39748882, -121.37500801],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5831fd31298c22ce22c19db1e65ff743 = L.circleMarker(\n",
" [35.39749634, -121.38517356],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ec89edb87d939811c1e1b8e2d0d736cc = L.circleMarker(\n",
" [35.39747207, -121.39543207],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_61b3a54e4185294650b3f854646dcfad = L.circleMarker(\n",
" [35.39750478, -121.4056506],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a0bf388800eb5415a831f3528f8c8abb = L.circleMarker(\n",
" [35.39746394, -121.41586325],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fea3a9d120cf8afc5da50fe08be3f43f = L.circleMarker(\n",
" [35.39748628, -121.42614642],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_57fb6270ff95ffdb480afa124469ba9c = L.circleMarker(\n",
" [35.3975, -121.43605622],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_aad32d875879e56f349c0a705d012899 = L.circleMarker(\n",
" [35.3975, -121.44635937],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_24cdad3ce88d8683dfe735cb070930c5 = L.circleMarker(\n",
" [35.3975, -121.45647243],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ac05bf03d3c783e6bef43b558ca5ce1c = L.circleMarker(\n",
" [35.3975, -121.46671088],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f8e71a553c64e38434e48ff46feaa0a2 = L.circleMarker(\n",
" [35.3975, -121.47682567],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b947fef623ee9b6ef4b1b488a26877b7 = L.circleMarker(\n",
" [35.3975, -121.48698196],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_eaa5cddf9b474fa9e17e4f6c76e061f6 = L.circleMarker(\n",
" [35.3975, -121.497112],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_709dae02884180311b7a04634d13e2a4 = L.circleMarker(\n",
" [35.3975, -121.50753806],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2f7f84a0e656b93e4d10334bceb70e7a = L.circleMarker(\n",
" [35.3975, -121.5176934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d63b1cedbfff1e6e856fcaa5e67f286a = L.circleMarker(\n",
" [35.3975, -121.52796103],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_433ae9ffcc9ebeb602fc13575b1cafb4 = L.circleMarker(\n",
" [35.3975, -121.53824039],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d763ea69458d7b1d01f4557c8e77d7d6 = L.circleMarker(\n",
" [35.3975, -121.548501],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3b550e6a92f401d3e46fa19ed3474f80 = L.circleMarker(\n",
" [35.3975, -121.55866469],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0f0376c0f15ae6260a9fc3897d80bbe6 = L.circleMarker(\n",
" [35.3975, -121.56900275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2be7032e8ddb0012f6c8a76d5b3dc0c1 = L.circleMarker(\n",
" [35.3975, -121.57909429],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5fd8d1dbe27770d9af691582f286b277 = L.circleMarker(\n",
" [35.3975, -121.58919896],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5dd6c26ee269f88711ebc64ad1c89a9f = L.circleMarker(\n",
" [35.3975, -121.5995],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fd186a38c7729fbcac67273a1b7dfef3 = L.circleMarker(\n",
" [35.3975, -121.60972187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6691218518e0071e6ce97fd8c9227385 = L.circleMarker(\n",
" [35.3975, -121.62001195],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0852299ce9208c1f8d74f088587dd73c = L.circleMarker(\n",
" [35.3975, -121.63016667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8dbef8c9f54c77d2a6856d7761ef0e95 = L.circleMarker(\n",
" [35.3975, -121.64024303],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_61a832bc16800416b304fd675f55edc9 = L.circleMarker(\n",
" [35.3975, -121.65047692],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_96ffc1f1e0532763c8d561e69fcd9083 = L.circleMarker(\n",
" [35.3975, -121.66063693],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_18734ede0d1cf1aa252606e9a559520c = L.circleMarker(\n",
" [35.3975, -121.67068658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9cafb183a21a2772cb635070f23a51a3 = L.circleMarker(\n",
" [35.3975, -121.68094793],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ff95a8cba3e83c72328cc58dac217244 = L.circleMarker(\n",
" [35.3975, -121.69116667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dde31e35a3b9b953f1d11bd7100839ef = L.circleMarker(\n",
" [35.3975, -121.7011738],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9e1648c87232ccb6c44af18d9542cf01 = L.circleMarker(\n",
" [35.3975, -121.71142799],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e7a40cd007fc468154c37148f0464b84 = L.circleMarker(\n",
" [35.3975, -121.72157166],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3c0774507c81a203f60a6b234d170272 = L.circleMarker(\n",
" [35.3975, -121.73172791],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d1c92e4c9fb973bfa538cfe0c5fbdbfa = L.circleMarker(\n",
" [35.3975, -121.74205382],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ea6e1f712dcb44245ea024068a899b67 = L.circleMarker(\n",
" [35.3975, -121.75222955],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a9cf9be0695f4b6ee1334ebcfa17580d = L.circleMarker(\n",
" [35.3975, -121.76246409],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_80fdeab55b27d8abe54e1be72bf3aff3 = L.circleMarker(\n",
" [35.3975, -121.77269009],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fbcb90ec0d24d4752b1f6a367418c025 = L.circleMarker(\n",
" [35.3975, -121.78284266],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_704143f2ceb206e952324fa8a4a4e404 = L.circleMarker(\n",
" [35.3975, -121.79318113],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3777c9285c3383784bb07615ce926289 = L.circleMarker(\n",
" [35.39733333, -121.80334458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b9d92c9462302edd9e7c2a046f5a4b2a = L.circleMarker(\n",
" [35.3975, -121.81346361],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_80877d55aba7950438ccb6785d4be55c = L.circleMarker(\n",
" [35.3975, -121.82383333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_44fbf6c4b75aae65fb51595c6e0f7ea4 = L.circleMarker(\n",
" [35.3975, -121.83391679],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_808d135213074771fd1660266c6b202b = L.circleMarker(\n",
" [35.3975, -121.84394465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4a6e1cd0c7d92490899ba1e42d3a25c3 = L.circleMarker(\n",
" [35.3975, -121.85422144],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7e6e194b9961f8ac040a368b43e941aa = L.circleMarker(\n",
" [35.56392936, -122.05559725],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_67003a1f60b0cc33af5220a39d59972f = L.circleMarker(\n",
" [35.56390092, -122.0542114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1f6aab8ae57390689bd744319c74f008 = L.circleMarker(\n",
" [35.56415804, -122.04396913],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_11748077e8bd7b533b20bc6379a74cc7 = L.circleMarker(\n",
" [35.56399098, -122.03379562],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d5eec337e92dc75ed2342786283c9b69 = L.circleMarker(\n",
" [35.56401958, -122.02351044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1c9d90a7c90a0a79945ff68422da1a9e = L.circleMarker(\n",
" [35.56405379, -122.01322646],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_43cce5c2c9d4286df9f2dfc86b295b9c = L.circleMarker(\n",
" [35.56402223, -122.00313079],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_046d8bf37e846fab74c209b60e29371d = L.circleMarker(\n",
" [35.564, -121.99316667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fb77aecf50487e969ef223fbe2d13789 = L.circleMarker(\n",
" [35.564, -121.98287512],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_37d647094350b26f78a0cb68669e63d0 = L.circleMarker(\n",
" [35.564, -121.97266667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f52ef629723441dde882db857e456720 = L.circleMarker(\n",
" [35.564, -121.96256385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_38c970c86453573a827503ae91b808bb = L.circleMarker(\n",
" [35.564, -121.952188],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2d5c0502ddced28f66c377a42a6eea3a = L.circleMarker(\n",
" [35.564, -121.94222012],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_180de7b0a8ecc5a05e2ecc6429fd4b39 = L.circleMarker(\n",
" [35.564, -121.932],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8b9ef67b41f0a668871959562d28c93e = L.circleMarker(\n",
" [35.564, -121.92178558],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a6dc00ff506a1b4509f5dac7eb1282f9 = L.circleMarker(\n",
" [35.564, -121.91164407],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_35ff6536293e60017ea4f57d46b02724 = L.circleMarker(\n",
" [35.564, -121.90133333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_91f0a2d7c8656fac8c6da9c6a2b6da2c = L.circleMarker(\n",
" [35.564, -121.8912708],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6514f3cc82cbd55e6344a00a3c73de9a = L.circleMarker(\n",
" [35.564, -121.88106001],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a4cb563f9bc9928ae98a17c936e3e91e = L.circleMarker(\n",
" [35.564, -121.87084152],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_540a3d50d4a9fc7d2d622917294c23a3 = L.circleMarker(\n",
" [35.564, -121.86062913],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b4c590037af0178ae86ca9bd43e0932c = L.circleMarker(\n",
" [35.564, -121.85046175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_835ce78e0f28b61a66b7286da04ed28f = L.circleMarker(\n",
" [35.564, -121.84037819],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ef974fdd8b1ad3d833851ec8325cda63 = L.circleMarker(\n",
" [35.564, -121.83],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_af3ee1b55de127bbbf641c2f71bfd82a = L.circleMarker(\n",
" [35.564, -121.81993894],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_257ec34dd5ecc89090ecfb9abb6592f3 = L.circleMarker(\n",
" [35.564, -121.80967875],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bcd339a3d7072f0d8bf3eb32b98e4813 = L.circleMarker(\n",
" [35.564, -121.79941208],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e7360c7c3e003918327a9b1b5a926961 = L.circleMarker(\n",
" [35.564, -121.78929293],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4c2736ffb8c38cc246d49c411fb17732 = L.circleMarker(\n",
" [35.564, -121.77913576],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_27184e9b636b5e2af55f2e1e61f744ec = L.circleMarker(\n",
" [35.564, -121.76880639],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_58768f4481bbfc8c067e51d66aeb5d3b = L.circleMarker(\n",
" [35.564, -121.75865902],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_006c26cffbf1563e4f4d50d6095f702e = L.circleMarker(\n",
" [35.564, -121.74864755],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bbe1657aa7d3ddb6589c71e93a2dd90c = L.circleMarker(\n",
" [35.564, -121.73839281],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4e51f6ea15cb1c1fc45d667d8678c0ff = L.circleMarker(\n",
" [35.564, -121.72816256],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_125aa09f33e5ed16b22f117d2120eef3 = L.circleMarker(\n",
" [35.564, -121.71794807],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3760a4c7c036049d9bdc6a74c6bdc910 = L.circleMarker(\n",
" [35.564, -121.7076256],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7750d68975e63f84261868469c7942d9 = L.circleMarker(\n",
" [35.564, -121.69764232],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c2a9b28d32e07bad2f9a7186b50c1864 = L.circleMarker(\n",
" [35.564, -121.6873465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_724c326e33c88cbf87576f1d07eda4f1 = L.circleMarker(\n",
" [35.564, -121.67707253],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fdeb19225f01fe2bc87a470735264205 = L.circleMarker(\n",
" [35.564, -121.66684165],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_93a23a9b3fa5b33bc7e5ab0d03ee95a9 = L.circleMarker(\n",
" [35.564, -121.65680052],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f359b8fa27bb2ba49b1c1a112800c74a = L.circleMarker(\n",
" [35.564, -121.6465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6f38646bda75cab69187e7c215f54d38 = L.circleMarker(\n",
" [35.564, -121.63628701],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_deca639a39662fd6aa50f7cec3445600 = L.circleMarker(\n",
" [35.564, -121.62612407],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_526199ae3d1d08ed79518a6244ffc18e = L.circleMarker(\n",
" [35.564, -121.6159297],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2b935cdbe372526af640e018dcd74e10 = L.circleMarker(\n",
" [35.564, -121.60578693],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b1afb413887f2ee93edc51ba91c3f384 = L.circleMarker(\n",
" [35.564, -121.59539104],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9ee84b2beddf86851bbe53d90cc3b0f2 = L.circleMarker(\n",
" [35.564, -121.58516667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d6aa43103a5380b99199268f59e9474b = L.circleMarker(\n",
" [35.564, -121.574897],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1559b9346d5608eae1896971889faabb = L.circleMarker(\n",
" [35.564, -121.5648511],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b90543a38ed6bf438126a1710016745b = L.circleMarker(\n",
" [35.564, -121.55453241],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c3020c04dc6cd2d540559bce1a074602 = L.circleMarker(\n",
" [35.564, -121.54433333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_adaaed70f7b8ea9e3f7e006b9fd34e7e = L.circleMarker(\n",
" [35.564, -121.53397238],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f4b76a63de2db85f6de97c9bc578e3eb = L.circleMarker(\n",
" [35.564, -121.52379872],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_24f54a846d47535ef4d49a708e982f7b = L.circleMarker(\n",
" [35.564, -121.51362023],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_446c63b01b1b9b7e70a94a84c61bffda = L.circleMarker(\n",
" [35.564, -121.50356734],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2f2871b7adbbca0eb1c2d57320cd0df3 = L.circleMarker(\n",
" [35.564, -121.49328435],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c1e27024e2b8db0feeaf41df7b6c48eb = L.circleMarker(\n",
" [35.564, -121.48305434],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_76f278f78456c876a00ad0c5f7469946 = L.circleMarker(\n",
" [35.564, -121.4729715],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_35a3e3cc827f92855f3db300fbf41886 = L.circleMarker(\n",
" [35.564, -121.46270108],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_959ed72dc57a3c721d508c5a775a46f8 = L.circleMarker(\n",
" [35.564, -121.45236157],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d53037bdb5303eb49ca4d2f9f12529d4 = L.circleMarker(\n",
" [35.564, -121.44215425],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1bc7b46cf048ab5414db5ee8a61e3541 = L.circleMarker(\n",
" [35.564, -121.4319197],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_368f6869b7225678ed873dc869ca91d7 = L.circleMarker(\n",
" [35.564, -121.42176836],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7912350fd4f89d62370e50c66e15cb2d = L.circleMarker(\n",
" [35.564, -121.41162062],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1c86207e18be046dcf155ebbee2e3b90 = L.circleMarker(\n",
" [35.564, -121.40126887],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a8c26a37b58feceb5a8e41434942d310 = L.circleMarker(\n",
" [35.564, -121.39099795],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f793bbd8a69dfa3701a7f2ca4efeb926 = L.circleMarker(\n",
" [35.564, -121.38077084],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_caae49705668d06a505f9d2d14d02faa = L.circleMarker(\n",
" [35.564, -121.37056152],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_141a6e04c23ae29d0cfed1be6bba20e7 = L.circleMarker(\n",
" [35.564, -121.36039901],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_45d08014e5fafdb87bafc2b56a106888 = L.circleMarker(\n",
" [35.564, -121.35003218],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9773d19ff947bca65c693c1896860f6e = L.circleMarker(\n",
" [35.564, -121.33990199],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_41c4e9bd818b90615ef81e0a46156bfd = L.circleMarker(\n",
" [35.56416667, -121.33777158],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2ca54849291452c3b3a119532eeee64a = L.circleMarker(\n",
" [35.56416667, -121.33002658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d3bf8aa8ccd3bc0bb677a4eb7575346c = L.circleMarker(\n",
" [35.56416667, -121.31968658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_72c2db29052aa16232e9f62d42bddd06 = L.circleMarker(\n",
" [35.56416667, -121.30951415],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_394d6553a7c4d3d0c7c9fb65bdb6d990 = L.circleMarker(\n",
" [35.56429663, -121.29924007],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_18fd42fb04fec2d4e8938887f1186a1f = L.circleMarker(\n",
" [35.56416667, -121.289006],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d7051b223826de336786e9bed601bd6c = L.circleMarker(\n",
" [35.56433333, -121.27880253],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cde54fdf60270b256c4326ea7ed3e6fc = L.circleMarker(\n",
" [35.56433333, -121.26857008],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bcc5005fc8b27883d036723f2e9146be = L.circleMarker(\n",
" [35.56416667, -121.258264],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0aaa34ba7778ce3a83ca6a80dab50349 = L.circleMarker(\n",
" [35.56428199, -121.2481793],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9bc964edd9d410836d7fcab5ed262f84 = L.circleMarker(\n",
" [35.56427806, -121.23783247],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3a20d731cf3d30522bfe4a00ecc68340 = L.circleMarker(\n",
" [35.56416667, -121.22758673],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6f75b945f6f2ce2f5566e645b552473e = L.circleMarker(\n",
" [35.56420158, -121.21740316],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fd6bb2c1820735346f97164d8e3ffb9f = L.circleMarker(\n",
" [35.56416667, -121.20712296],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d4a200327dbd1f5a185e872d2de37b8a = L.circleMarker(\n",
" [35.56416667, -121.19686425],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5dd4536cd4ec2d2938ac23a2da99870d = L.circleMarker(\n",
" [35.56416667, -121.18661864],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_16777b18c50f8e09b206f0b2b12135f1 = L.circleMarker(\n",
" [35.56416667, -121.17635383],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dbac9c450c9fd67266b1a2646c931250 = L.circleMarker(\n",
" [35.56416667, -121.1660767],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_94c6f8d5032872d1ab3c03f19317ab0d = L.circleMarker(\n",
" [35.56416667, -121.15582879],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c8791981b880a0c2869fb6d6285b3894 = L.circleMarker(\n",
" [35.58393588, -121.36994544],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_64605cf48b7d7bcfa572ddb32446637f = L.circleMarker(\n",
" [35.7305, -121.35466667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cbe341dae51e289ef0687cc49dc26129 = L.circleMarker(\n",
" [35.73065146, -121.35481812],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_96e48bcff292fec2c9f7b73235d5f071 = L.circleMarker(\n",
" [35.73066667, -121.36516667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_949816aceb277506849ed2ba4badb38f = L.circleMarker(\n",
" [35.73066667, -121.3754569],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ac3fd7210b40872e098fa6cc778f33ff = L.circleMarker(\n",
" [35.73066667, -121.38566667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_aef15b6fa37c06125ee119a112468ebd = L.circleMarker(\n",
" [35.73066667, -121.39600801],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_aa4d99f94b159f456cffa9d525777608 = L.circleMarker(\n",
" [35.73066667, -121.4063928],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_69ba32b5c66b3eb553f78aabc42b4748 = L.circleMarker(\n",
" [35.73083333, -121.41650883],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_50f70fcad32f6e4c2139cb3e1cc6be54 = L.circleMarker(\n",
" [35.73066667, -121.42683333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_65f10def4ccb4641617a40d68812e7f6 = L.circleMarker(\n",
" [35.73066667, -121.43703978],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b6491f89796ac3ac90c02bfcb8158b7f = L.circleMarker(\n",
" [35.73075436, -121.44740359],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_21e6c0015f02a3917145340153a63bb1 = L.circleMarker(\n",
" [35.73082012, -121.45767988],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d3822569871d9d48aff92e6f967c9017 = L.circleMarker(\n",
" [35.73066667, -121.46770899],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_99c197184593922f7c8c3d515fe0cb16 = L.circleMarker(\n",
" [35.73066667, -121.47815778],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f2e94aed35d6e2d5e064e1ea2b4a8c0e = L.circleMarker(\n",
" [35.73066667, -121.48843336],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_405f99af8a01d301b994b169cb8b1540 = L.circleMarker(\n",
" [35.73066667, -121.49868196],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c66ff57a829a4280c17f8edd42cdbfc4 = L.circleMarker(\n",
" [35.73066667, -121.50901988],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2ae187d1c0e665a5c06756dcd8baa359 = L.circleMarker(\n",
" [35.73066667, -121.51914566],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c65f1d247d39c20654de7851bca5a368 = L.circleMarker(\n",
" [35.73066667, -121.52944886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_130a2aeacccc47f82435925ce6e8a1fd = L.circleMarker(\n",
" [35.73083333, -121.5397438],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_56f8e3f066bfedc571afcc47c1334f8d = L.circleMarker(\n",
" [35.73066667, -121.54996987],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_21a07b9a2882fc5de3778c48fbee5b62 = L.circleMarker(\n",
" [35.73066667, -121.56039267],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4bc8e31df08e59eaac547baa67f708de = L.circleMarker(\n",
" [35.73066667, -121.57055001],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cb9e73dab30f3019f63de9d80e2ee262 = L.circleMarker(\n",
" [35.73066667, -121.58081756],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e9a33d77fb08369e230d2e96f91062bc = L.circleMarker(\n",
" [35.73067165, -121.59098505],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_50198547cbb39b3defce29419d45e3ef = L.circleMarker(\n",
" [35.73066667, -121.60134289],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3a9586200f1032f778508c364484cc7b = L.circleMarker(\n",
" [35.73066667, -121.61159337],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d7515c5f34ac616269c212f7cd6ef9f8 = L.circleMarker(\n",
" [35.73066667, -121.6219238],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_838c420ec093dded23dba2ea7fb0cbe0 = L.circleMarker(\n",
" [35.73066667, -121.63206135],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1257be5343950178569d63e99ccbda97 = L.circleMarker(\n",
" [35.73066667, -121.64236848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_223665b04ab9b352bdddb0842057947c = L.circleMarker(\n",
" [35.73066667, -121.65262959],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0da5132c34562e8bcbbe4eb2b7fccc71 = L.circleMarker(\n",
" [35.73066667, -121.66302941],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_acecc51f82af239b82c80176100ef371 = L.circleMarker(\n",
" [35.73066667, -121.67334845],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fcc6346ff493030a93d35dad7738b04f = L.circleMarker(\n",
" [35.73066667, -121.68348381],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f41110f84e7346102204c84ab17c6781 = L.circleMarker(\n",
" [35.73066667, -121.69378252],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2de5722dec4f048e26e4860cf04545b3 = L.circleMarker(\n",
" [35.73083333, -121.70430551],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cc8e49c058af81e1e5af46b0d583e475 = L.circleMarker(\n",
" [35.73083333, -121.71446472],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ec1a95119b667f3de63a1cf887f85b2e = L.circleMarker(\n",
" [35.73083333, -121.72477467],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_aa337712e1d9bf2e4da5f39f3f431bd6 = L.circleMarker(\n",
" [35.73066667, -121.73508867],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_de1986699331537e1cf55311b5f0ee60 = L.circleMarker(\n",
" [35.73083333, -121.74547066],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1eb60e92ebe58dd3b0fce2142844d30b = L.circleMarker(\n",
" [35.7306876, -121.75572948],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_78c1e6117677ed273a744ea014df2fa7 = L.circleMarker(\n",
" [35.730688, -121.76604267],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e252573e1891faefb69eeccca6bf1afb = L.circleMarker(\n",
" [35.7307793, -121.77616211],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_84d11ae8051619ba69bbece0e12edebd = L.circleMarker(\n",
" [35.73083333, -121.7865],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b906a950117bbf256e59519dd12938e7 = L.circleMarker(\n",
" [35.73083333, -121.79656917],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c218e98e49faee6d014821b2ace07783 = L.circleMarker(\n",
" [35.73083333, -121.80676886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9bed0cf14903f85786781463fcf91a8a = L.circleMarker(\n",
" [35.73066667, -121.81680426],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6d983e875690ff743c35fd041c91d29b = L.circleMarker(\n",
" [35.73083333, -121.82706059],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_74c0cba55e2d5080d98b606cb77a275e = L.circleMarker(\n",
" [35.73066667, -121.83734629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8422db52d94ed2b9b6af7edede259080 = L.circleMarker(\n",
" [35.73066667, -121.8474463],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_03da589d31ac896aedb22951a6f9602e = L.circleMarker(\n",
" [35.73083333, -121.85765068],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_559e6a35d952a907745af2c2bc893d94 = L.circleMarker(\n",
" [35.73083333, -121.86772457],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e5c241218a0c0f0313e17244b21422fa = L.circleMarker(\n",
" [35.73066667, -121.878],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7963437851d216735862bada20ecdabb = L.circleMarker(\n",
" [35.73066667, -121.88814133],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fdb2eeea5bc8e9bdec88208831f02388 = L.circleMarker(\n",
" [35.73083333, -121.8985],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dd9c7960e6cdd3c9a712a792b16595ba = L.circleMarker(\n",
" [35.73122382, -121.90737567],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_09251956a4e3e6384e21e9b5c0e9e6d1 = L.circleMarker(\n",
" [35.73106289, -121.91167997],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f1e8c0439acff90f5ec1e0332f19bf59 = L.circleMarker(\n",
" [35.73097343, -121.9218568],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8f57cce5c8c44050bc5f236c06056457 = L.circleMarker(\n",
" [35.73083326, -121.93209486],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ae8abae6794522f6052edb0a30e482c3 = L.circleMarker(\n",
" [35.73067524, -121.94233088],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a9e73c2924181556cc64bc1ebf55cb6f = L.circleMarker(\n",
" [35.73053639, -121.95253226],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6b5c3ed95aad0a83c0a525207e14d71e = L.circleMarker(\n",
" [35.73036445, -121.96279334],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5b6a2093d829fa57e3aab9c4797c7fbe = L.circleMarker(\n",
" [35.73037658, -121.9730963],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ac2b2b6456e79df0112be1e32a48981f = L.circleMarker(\n",
" [35.73037614, -121.98320184],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1cff108509eac2e2b20ed2fd39795407 = L.circleMarker(\n",
" [35.73035123, -121.99342352],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c630f670edb450b9def84cc5ef98aa08 = L.circleMarker(\n",
" [35.73038304, -122.003624],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7a2cce0a352f03905b6de1ecd791851f = L.circleMarker(\n",
" [35.73039882, -122.01391904],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0cb9fbc91937604486883fc30f0833ca = L.circleMarker(\n",
" [35.73037139, -122.02396187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1a8a10dc1d24d6a96680ad7266be54e9 = L.circleMarker(\n",
" [35.73035221, -122.0343047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_042c7a82b3168e048f452fa9e9ee4aef = L.circleMarker(\n",
" [35.73037822, -122.04447691],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_67a832f3b346befbcfeb82ad11aeba21 = L.circleMarker(\n",
" [35.73037904, -122.05479258],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8ff181afca28e806ba1df90291b17924 = L.circleMarker(\n",
" [35.73039933, -122.06517426],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_488460b5e58c0d291e89af815e4a32a7 = L.circleMarker(\n",
" [35.73039387, -122.07533994],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8bf872fa3a73aefcbf01b1635a5b00e5 = L.circleMarker(\n",
" [35.73038319, -122.08541826],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8a14506917d3d6436f3f94b5c070b48a = L.circleMarker(\n",
" [35.7303935, -122.09560994],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_74f162d9f5c8c04fa4c4f1cdf85342a6 = L.circleMarker(\n",
" [35.73040662, -122.10590562],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2fa30e1521a5446efe88ef11a60b9933 = L.circleMarker(\n",
" [35.73038547, -122.11596655],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4b217e25a74bf7b2ba09cd74252fea00 = L.circleMarker(\n",
" [35.73037259, -122.12628203],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c2749b13502e6470689db1b324061718 = L.circleMarker(\n",
" [35.73037959, -122.13637871],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3a6b97e47803c26731a9d7ef4d02e3ca = L.circleMarker(\n",
" [35.73036447, -122.1467705],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_81b2eb24d3bd26699c0fc2715ac51882 = L.circleMarker(\n",
" [35.73036073, -122.15696074],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1bbf6014b360354b95a9b97588794889 = L.circleMarker(\n",
" [35.73037921, -122.16723952],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_80c69a967b5e8ae1d1c1467a75031430 = L.circleMarker(\n",
" [35.73039131, -122.17744502],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7998460fd348bd562b9e786def703a74 = L.circleMarker(\n",
" [35.89716667, -122.21621097],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d00435a347308bb3d49ee22ec515b4c4 = L.circleMarker(\n",
" [35.89733333, -122.21055483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_90a56ff7d8e48a4f81bd3370a4ca4536 = L.circleMarker(\n",
" [35.89733333, -122.20030998],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_540a38aa2f901d390134524ce1d23277 = L.circleMarker(\n",
" [35.89733333, -122.18989085],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_199c7dd3cbbe51972168e685965fa278 = L.circleMarker(\n",
" [35.89716667, -122.17967239],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bfec0608295fa68cb0cb64b84f0fd40c = L.circleMarker(\n",
" [35.89733333, -122.16934598],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6e7240784f3234753c5dfb03c6ab5f16 = L.circleMarker(\n",
" [35.89733333, -122.15928189],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_38c02c96e731233ffd8558a7a2ab41f7 = L.circleMarker(\n",
" [35.89733333, -122.14917049],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cbdcff67eaffad49c2534887d4168fa5 = L.circleMarker(\n",
" [35.89759768, -122.13897132],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_aa64576aef8661202a335bbf6cadb220 = L.circleMarker(\n",
" [35.89766667, -122.12855469],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_78de58c5d228ca3d33a94ec63e4eae13 = L.circleMarker(\n",
" [35.89783333, -122.11860483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0702ebbc63c386e629f6f9d569fc675a = L.circleMarker(\n",
" [35.89766667, -122.10822017],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_79f6ded5608c2005cc153ac2241f8a0c = L.circleMarker(\n",
" [35.89733333, -122.09800865],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5fa3ac81c381d2f497cea52be67f3b55 = L.circleMarker(\n",
" [35.89733333, -122.08774558],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e8ee96a67bcdd839ae0e113d4e5c7b99 = L.circleMarker(\n",
" [35.89716667, -122.07742859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_64fd4b7e31a887506944109758aaf056 = L.circleMarker(\n",
" [35.89716667, -122.06728215],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_75cdb8f9808ddd98c3c281a7c939262f = L.circleMarker(\n",
" [35.89716667, -122.05722065],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_528b459a9cdd5f2c4f61c4bea4787291 = L.circleMarker(\n",
" [35.89733333, -122.04697962],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_711c050be951bc77e2de492880c01efb = L.circleMarker(\n",
" [35.89733333, -122.03666857],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1fcbf35227106fe29efe725501394426 = L.circleMarker(\n",
" [35.89733333, -122.02649784],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d835a0b067c5e6f728a806e88d2849a1 = L.circleMarker(\n",
" [35.89733333, -122.01616667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f597f5eee7e042d87f3016e8c97dec5e = L.circleMarker(\n",
" [35.89716667, -122.006],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_480c9517f8c42a94e6f1d30211dc539d = L.circleMarker(\n",
" [35.89716667, -121.99569656],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d4e6b3b5e253109eab9389de673e4097 = L.circleMarker(\n",
" [35.897, -121.98545836],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e5a24bafe098f5ddf1fbb62af66429e6 = L.circleMarker(\n",
" [35.897, -121.97528139],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f6424e27dbd3d99cf2c840fee0155a6b = L.circleMarker(\n",
" [35.89683333, -121.96501135],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c9291df07b18f574d49ba8f5b18c701d = L.circleMarker(\n",
" [35.89666667, -121.95483132],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6925a5f2e3cb5d0f42477b4089fe53c5 = L.circleMarker(\n",
" [35.89683333, -121.94449635],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b1c122e36a2c651683fa62edf5ba6877 = L.circleMarker(\n",
" [35.897, -121.93413119],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_778c7998f509e6855f3f2fb17ff7b1a7 = L.circleMarker(\n",
" [35.89716667, -121.92401987],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_397ce1819537e1b88779732f49ab9b67 = L.circleMarker(\n",
" [35.89733333, -121.91366667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3b82a2b3ce730eccffe44aca5eb6769f = L.circleMarker(\n",
" [35.8975, -121.90346005],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_785216fefa48a842aaf014413c62476d = L.circleMarker(\n",
" [35.89766667, -121.89330899],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a151f259d8bed66ca696140475e57c94 = L.circleMarker(\n",
" [35.89783333, -121.8832021],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d1e281b16265af22e6073d0bd2244362 = L.circleMarker(\n",
" [35.89783333, -121.87277112],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4a3d35def5b1563910a4fbd4acd5bf9f = L.circleMarker(\n",
" [35.898, -121.86259576],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0a7554ff125831fd8745083056ca57ea = L.circleMarker(\n",
" [35.89816667, -121.85245669],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7b94dbc493eaeac999e5fcab5bb3cdf9 = L.circleMarker(\n",
" [35.89833333, -121.84213163],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dcfa04888e837910c11c8c7f2412d1d5 = L.circleMarker(\n",
" [35.8985, -121.83199699],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f9aabafaa1b7f193b946a4c64bb5bae9 = L.circleMarker(\n",
" [35.8985, -121.82171933],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3779efe01092162ca4454ef8006bee4a = L.circleMarker(\n",
" [35.8985, -121.81145931],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dd9c61087ceef473ab6c792a0108f8de = L.circleMarker(\n",
" [35.8985, -121.80111918],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b52c5f02ce9bb4a8aca91b3cbd90131b = L.circleMarker(\n",
" [35.8985, -121.79082392],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8ce5541b5aca470ddf46a4c10eb2ab35 = L.circleMarker(\n",
" [35.8985, -121.78058474],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_46e54d1ce0b0b4576dec6c3b58bb50c1 = L.circleMarker(\n",
" [35.8985, -121.77027529],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c14a74c7e82487b609250ebe582499f6 = L.circleMarker(\n",
" [35.8985, -121.75999889],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dc02a5933fa9c63da52fc8e139bad934 = L.circleMarker(\n",
" [35.8985, -121.74963972],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_08d8291df475312bed5d3a28dc4df150 = L.circleMarker(\n",
" [35.8985, -121.73942574],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_67f7aca7e0ee6c666c592296231b8d1a = L.circleMarker(\n",
" [35.8985, -121.72920339],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_761a2c33a43fdc5f5ad8a90710042027 = L.circleMarker(\n",
" [35.8985, -121.71885593],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fdc8f837dee07739dc6d8be85849cc36 = L.circleMarker(\n",
" [35.8985, -121.70866667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dfc68816c07cf4a3c64001c1a7354483 = L.circleMarker(\n",
" [35.8985, -121.69843002],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_abcb179a12e619546b3dcd9c553f7707 = L.circleMarker(\n",
" [35.8985, -121.68814049],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_83a9a3615ae6a424db92552f474cc09d = L.circleMarker(\n",
" [35.8985, -121.67788143],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_68f4e7790d7fcf391c501106f753a6c2 = L.circleMarker(\n",
" [35.8985, -121.66766667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_901c92a68b2040ed69bfac3f10e38edb = L.circleMarker(\n",
" [35.8985, -121.65749466],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_69e0f9e7149ab24a2f4dd5aaa4f14361 = L.circleMarker(\n",
" [35.8985, -121.64708523],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_88d82d3c7b4aef56087aa3fce946b04b = L.circleMarker(\n",
" [35.8985, -121.63687389],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dc46e14a1077dd72ccffbfcb7980bca8 = L.circleMarker(\n",
" [35.8985, -121.62660432],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0dbe7988e8d57219448bf57e9f676e6e = L.circleMarker(\n",
" [35.8985, -121.61636275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_425ffee291edb8e009e2ea5b0e0d3875 = L.circleMarker(\n",
" [35.8985, -121.60606356],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_54a55ccf4c2a3061a2be60f84f98d926 = L.circleMarker(\n",
" [35.89833333, -121.59577562],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_566b7f418c651e6744c050e462c9e854 = L.circleMarker(\n",
" [35.89833333, -121.58538545],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_48a4d22b9578d28ef8442b103e5bbcf7 = L.circleMarker(\n",
" [35.89816667, -121.57523761],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_aee9a9830c1face44002f197c00b84cf = L.circleMarker(\n",
" [35.898, -121.56501994],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4a09066003f610df1000c31b8a0f863b = L.circleMarker(\n",
" [35.89783333, -121.55457377],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c7515ad1457b38aa70b7ea000901bf23 = L.circleMarker(\n",
" [35.89766667, -121.54435364],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3592751fa87b7fd85a8169ef3737d939 = L.circleMarker(\n",
" [35.8975, -121.53407389],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9b4b0839db27882dbe6eda26ac803f14 = L.circleMarker(\n",
" [35.89733333, -121.52369328],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2205ee9c177157a5dda9b250c163ddd3 = L.circleMarker(\n",
" [35.89733333, -121.51338236],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a48296d354ea26f4ad56dd5e2ed45f75 = L.circleMarker(\n",
" [35.89733333, -121.50321218],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9af736bb7fcba101f1fa9b8a9f049b87 = L.circleMarker(\n",
" [36.06420005, -122.33889629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a947a4791e50ec36c2528a19530abd22 = L.circleMarker(\n",
" [36.06411917, -122.33621587],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_085665f7e4d279540c77cf0eee510b6d = L.circleMarker(\n",
" [36.06405449, -122.32587639],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1baf5a83dcdfb7b4e19e3edd81da6e56 = L.circleMarker(\n",
" [36.06398821, -122.31566809],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d8be58827590248e27d4a31930045d75 = L.circleMarker(\n",
" [36.06402619, -122.30540734],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e732dc5be69d4864ea83b9519c8da051 = L.circleMarker(\n",
" [36.06413182, -122.29504047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4f474491370f36b26b15e25e0916277e = L.circleMarker(\n",
" [36.06429634, -122.2850227],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f5536682276f923405b0eda476c9605b = L.circleMarker(\n",
" [36.0643942, -122.2748174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b68c9b9e9c8b4afd3d94e3a68c363368 = L.circleMarker(\n",
" [36.06433333, -122.26459084],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_50cefdded3cfddc8389ba16125bdcbe4 = L.circleMarker(\n",
" [36.06433333, -122.25427593],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7ca95f43a66278cb0200636ab26bc7a5 = L.circleMarker(\n",
" [36.06433333, -122.2440155],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a93478c3897a091f46cf65f578781ef3 = L.circleMarker(\n",
" [36.06433333, -122.23369573],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1bc886d81bdf81ecccd41fbe95846645 = L.circleMarker(\n",
" [36.06433333, -122.22352051],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cc950a9aba0ab6ef45f398414621a73f = L.circleMarker(\n",
" [36.06433333, -122.21324532],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_933e7d43e0a7d7fe557370dafe64e7ed = L.circleMarker(\n",
" [36.06416667, -122.20300963],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5df5d2fc623238c68d26670c9d1cb97d = L.circleMarker(\n",
" [36.06416667, -122.19286044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4e2e04dbb102a321eacf8893277e9aaa = L.circleMarker(\n",
" [36.064, -122.18252808],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2dd20cd3db1da4aa448c3bf8d25a8d53 = L.circleMarker(\n",
" [36.064, -122.17220545],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fdec147fb1150f577c1ba8f194a0b845 = L.circleMarker(\n",
" [36.064, -122.16202859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5857d9d495c806d220afb9b1947a3d96 = L.circleMarker(\n",
" [36.064, -122.15164115],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0d8685ce7a07307dd617a6d9c85a175a = L.circleMarker(\n",
" [36.064, -122.14155483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cb06ec5b4317ff4cbf4fd5bfe1eac091 = L.circleMarker(\n",
" [36.064, -122.13143682],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f1560507899e4b6e5d4253e8be409d28 = L.circleMarker(\n",
" [36.064, -122.12093333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d6dffb99203b88dd947fde55f8486ec3 = L.circleMarker(\n",
" [36.064, -122.11088804],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_db2dfa03a3e8a868062484dcb8aaeb11 = L.circleMarker(\n",
" [36.064, -122.10022359],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_da2e06da4774baa0ed7cc3cb9c2b3fa8 = L.circleMarker(\n",
" [36.064, -122.0903063],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2067d3e8532c181998b7e49f5464966c = L.circleMarker(\n",
" [36.064, -122.07986247],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6845a700c706f763afaff443dd3e604f = L.circleMarker(\n",
" [36.064, -122.06978777],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_05a813a9e63269b98c380b7cb6f22a03 = L.circleMarker(\n",
" [36.064, -122.05954911],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_66688b17c5ccbf9b319007696e777c1c = L.circleMarker(\n",
" [36.064, -122.04916416],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bd57299d731d8c48522c71601db9ac12 = L.circleMarker(\n",
" [36.064, -122.03884996],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a3dc0af3e088ae060049fbd904ff2c60 = L.circleMarker(\n",
" [36.064, -122.02859306],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d6c1b067d90b337c8d7d19e0971bf89d = L.circleMarker(\n",
" [36.064, -122.01841808],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_70c3254652a506cbd16b635cb01b312e = L.circleMarker(\n",
" [36.064, -122.00805622],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_85cdd0005a05cc27ef7df9dffda561a5 = L.circleMarker(\n",
" [36.064, -121.99779944],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fcda6673acd7183cdfde10061d802ce3 = L.circleMarker(\n",
" [36.064, -121.98768161],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7d092268f7a230aa23e89cb9a481e14c = L.circleMarker(\n",
" [36.064, -121.97740854],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_82ef88ab96a082f2c9bab2904e4493d8 = L.circleMarker(\n",
" [36.064, -121.96701129],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f2a0954fb171297dce316ce445889968 = L.circleMarker(\n",
" [36.064, -121.95673777],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c015b203b71796205bf6d2687afe2204 = L.circleMarker(\n",
" [36.064, -121.94644191],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c1e2f2783b290e02a266498db1b57825 = L.circleMarker(\n",
" [36.064, -121.93617977],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b93b345eaffdcb5de618d3bbb392edd0 = L.circleMarker(\n",
" [36.064, -121.92588473],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_21ff796e818deffc636000883b39d5f0 = L.circleMarker(\n",
" [36.064, -121.91576655],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_708e78fb16bd6369ca39d1db02a6c7e0 = L.circleMarker(\n",
" [36.064, -121.90535172],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bc5a2c4dd9c3cfe0d24538f4df284a5d = L.circleMarker(\n",
" [36.064, -121.89510974],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_021bd2ba7a7ad67ff1edb67ec6e1f3c5 = L.circleMarker(\n",
" [36.064, -121.88488989],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_05cc66a5162e8c87eecaf783f5334055 = L.circleMarker(\n",
" [36.064, -121.87463585],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_46a725ba6a042f7d69b35a7b091079d4 = L.circleMarker(\n",
" [36.064, -121.86428511],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2f5d233d6372be374c706d38b82f4450 = L.circleMarker(\n",
" [36.064, -121.85390024],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b1ea7149e17dd3603e28498f8e2c0e41 = L.circleMarker(\n",
" [36.064, -121.84380738],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c7cbe8d237fc93a4dfa926fa98952390 = L.circleMarker(\n",
" [36.064, -121.8335],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d2ff1134eb6d53c292b989c6b7ef7618 = L.circleMarker(\n",
" [36.064, -121.823153],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_adf1d15edd0bf1df67e41a222e35e454 = L.circleMarker(\n",
" [36.064, -121.81286919],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_76ab27e2a5ae6dc85d43b9eddd5d80d0 = L.circleMarker(\n",
" [36.064, -121.80251765],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_77ca516caa40a5f695c863ad9728937b = L.circleMarker(\n",
" [36.064, -121.79232106],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_37cf67f4b922c9ba27c4b27e4ccaef30 = L.circleMarker(\n",
" [36.064, -121.7819028],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4a8176fd9e02e993801fab231ae2e3d6 = L.circleMarker(\n",
" [36.064, -121.77165276],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8d72c454f4c52cd34cd449fc80976b98 = L.circleMarker(\n",
" [36.064, -121.76141091],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f18bcc147e6f0303692b759279387be8 = L.circleMarker(\n",
" [36.064, -121.75099093],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5520643d87612ce6eb35234446feae8c = L.circleMarker(\n",
" [36.064, -121.74072177],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bd85f8411c634e525ac1627d4ca0c722 = L.circleMarker(\n",
" [36.064, -121.73032128],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_981437d0179acdce64ca6b59a8a266d0 = L.circleMarker(\n",
" [36.064, -121.72014499],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_94a8c2d2e7b5ad74ff1ae009647ebec7 = L.circleMarker(\n",
" [36.064, -121.70991132],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ff6bcf4d788b4b00d01638479f400134 = L.circleMarker(\n",
" [36.064, -121.69948341],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ee458846b8934e8cac9ca5cb734e8396 = L.circleMarker(\n",
" [36.064, -121.6892761],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6d5edf6ad35086adc816022187926b1e = L.circleMarker(\n",
" [36.064, -121.6788847],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3ac2f565d05d60f40f700a9e3ab110f9 = L.circleMarker(\n",
" [36.064, -121.66861735],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_98ad1bb104d4ac58ad39b19006b6036f = L.circleMarker(\n",
" [36.064, -121.65825488],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2ff3175794b4f0635f5c8c2dc4a6e805 = L.circleMarker(\n",
" [36.064, -121.64806167],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_61499072ca2a3560d2d3a33100fb01ec = L.circleMarker(\n",
" [36.064, -121.63766667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8636cb8000784526d1dfc0fa72a96189 = L.circleMarker(\n",
" [36.064, -121.62745719],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c91e66056a171de3156ac6737988db20 = L.circleMarker(\n",
" [36.064, -121.61703805],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fee3878c79f06826b80084628589cf5e = L.circleMarker(\n",
" [36.23073946, -121.83497487],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b218e47e1c9f8ea0e8991477fc8fed74 = L.circleMarker(\n",
" [36.23074939, -121.83552247],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_58fd0353cca8746e4722118f2d44db77 = L.circleMarker(\n",
" [36.23070573, -121.84589704],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f595deb259293634196b02092f41fc6c = L.circleMarker(\n",
" [36.23071992, -121.85631238],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5bba8e925493b114a734133327ffb516 = L.circleMarker(\n",
" [36.23070533, -121.86666405],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0f5ad3ed6405748d8a1592287d818b74 = L.circleMarker(\n",
" [36.23072919, -121.87693968],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1809c2efc80a0ca8de540175b319dc2e = L.circleMarker(\n",
" [36.23072996, -121.88730852],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d0f0f964f4fe09766f45729a66a2e9f0 = L.circleMarker(\n",
" [36.23074417, -121.89763437],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_80ad991cd465cf94d6e792941f0bfda3 = L.circleMarker(\n",
" [36.23073549, -121.90790955],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_373249ab5ce353445bed8ba1b1613abc = L.circleMarker(\n",
" [36.23072136, -121.91830995],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e02d4fa092acfbc1584b6c68a04982a6 = L.circleMarker(\n",
" [36.23074216, -121.92869561],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ee70ce51b08e8aa24b98d86150c67403 = L.circleMarker(\n",
" [36.23071881, -121.93902934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e34df1d1c651b2a253070dcb483a5828 = L.circleMarker(\n",
" [36.23072947, -121.94934574],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9034a22a9cebd4bf1dce9d6687a19763 = L.circleMarker(\n",
" [36.23074379, -121.95968353],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_94d5479720f07a3cbba21ba46af861fe = L.circleMarker(\n",
" [36.23076505, -121.9699911],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f18a34c62e52c287d212c8625d35c30e = L.circleMarker(\n",
" [36.23071545, -121.98024067],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e62ad9f6c2e7bfdecbbfcfae1bf4bc0c = L.circleMarker(\n",
" [36.23074228, -121.99043608],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5618456ff8c6785c40f183f1438bd34d = L.circleMarker(\n",
" [36.23072823, -122.00081174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d34f12af1c4e8981a4f37be4ac28c373 = L.circleMarker(\n",
" [36.23071952, -122.01109423],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0096abd59d54d5bb87af7cbc283694c9 = L.circleMarker(\n",
" [36.23075282, -122.02129934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_baab20e9898be4877f723a6f32fc5b98 = L.circleMarker(\n",
" [36.23074759, -122.03164871],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6528c32caaedcc2cf047ecdaf68e1f25 = L.circleMarker(\n",
" [36.2307245, -122.04202106],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5727e4f8ad89b6866847f83fb766e133 = L.circleMarker(\n",
" [36.23071391, -122.05222656],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bf963deefe5c54c4f1bc59ddd4d9bebd = L.circleMarker(\n",
" [36.23072771, -122.06253575],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3b0dcffdb553b45d57e5420d646d2357 = L.circleMarker(\n",
" [36.23071658, -122.07283098],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ffb3cb297dcbed1fff17df6120aaafab = L.circleMarker(\n",
" [36.23073187, -122.08303585],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_babda8ff598e0918469c6de84a1f6b19 = L.circleMarker(\n",
" [36.23138021, -122.0931926],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_69d0349e123a6844327a5b4891e47dbe = L.circleMarker(\n",
" [36.23258087, -122.10338343],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b20eac205887a84fa98cfa9ab7972a99 = L.circleMarker(\n",
" [36.23324697, -122.11353917],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_620052e41eb389ace3c91833fee24d7e = L.circleMarker(\n",
" [36.23272287, -122.12390632],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9914825db247cc142ff19f32208fc2d7 = L.circleMarker(\n",
" [36.23240207, -122.13424606],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_deaaa2ae2e8b30263f22cb7a37890ed1 = L.circleMarker(\n",
" [36.23214275, -122.14447578],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_944d8b394a3ea773a565a9b8fc7fd248 = L.circleMarker(\n",
" [36.23188522, -122.15479343],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_51a908d48e8ae98a574df124e8b318fa = L.circleMarker(\n",
" [36.23174282, -122.16512458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e0a1159834623e89b257532b9c4911a8 = L.circleMarker(\n",
" [36.23166817, -122.17529208],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_25351f2ba47f7d03c3f4aa8d2739a51d = L.circleMarker(\n",
" [36.23163369, -122.18551608],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f1c8225e88922c03c37f457075d6451c = L.circleMarker(\n",
" [36.23162159, -122.19577266],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_745a23b6b62aba43d50046e2986c472d = L.circleMarker(\n",
" [36.23159247, -122.20589969],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3cbbef3c0eb64236333ae4522182cd1f = L.circleMarker(\n",
" [36.2315798, -122.2163408],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cc5cb560f8793602ec59ef1d699557cc = L.circleMarker(\n",
" [36.23156264, -122.22650357],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_58f70bc9784200443ad8831a8535ed7e = L.circleMarker(\n",
" [36.23150379, -122.2369573],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_823f1953c61b870ecc64493e65a48d8c = L.circleMarker(\n",
" [36.23137183, -122.24729192],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1fb230ef527935d99eafb5f770166510 = L.circleMarker(\n",
" [36.23124982, -122.2573709],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5e74c3ce14f3aa36e026d74dc46bdf57 = L.circleMarker(\n",
" [36.23106851, -122.26786242],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1a4abdd473e6749b34b7b6fe122330a7 = L.circleMarker(\n",
" [36.23104208, -122.27812474],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_335f5d5e69a21c7d4a724dfec615dc3a = L.circleMarker(\n",
" [36.23103137, -122.28835659],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b220df44ab78e3c38a01d535da6daa04 = L.circleMarker(\n",
" [36.23114366, -122.29883618],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_99946808c4e7756258bd43651339057d = L.circleMarker(\n",
" [36.23125177, -122.30907003],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4badf6a3c7fbe7b605fec94b32af835f = L.circleMarker(\n",
" [36.23135281, -122.31926187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_493c81725cd67e18d4366e7abfa3da33 = L.circleMarker(\n",
" [36.23142334, -122.3295068],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9db28d10423c1b17335eb402b795d1ed = L.circleMarker(\n",
" [36.23142375, -122.33980851],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c318e25669a6ebfa31e56884e225437e = L.circleMarker(\n",
" [36.23142716, -122.35012915],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f7e226201e09e36e17834b519457c5a7 = L.circleMarker(\n",
" [36.23142696, -122.36035535],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c14945fe904ef3af3c9e1d8aa02d17bb = L.circleMarker(\n",
" [36.23135602, -122.37057017],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_edaed1b13fa1460f62e157c835dd4369 = L.circleMarker(\n",
" [36.23126536, -122.38096933],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d6f1ad3b274ceff699fe2cf9fc931c32 = L.circleMarker(\n",
" [36.23120503, -122.39112848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2d3872a7e3e8d98c8bd9a9c37adea6a7 = L.circleMarker(\n",
" [36.23117923, -122.40143377],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f0d29b7381b705d10c219b6f53f51cbe = L.circleMarker(\n",
" [36.23111858, -122.41180399],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2749dec682d028ccfce2782e66a4b6d1 = L.circleMarker(\n",
" [36.2310517, -122.4220227],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_42f0b344f1f0f446b87d8fc207ffb941 = L.circleMarker(\n",
" [36.23104297, -122.43244085],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1053085a0fb4d4fbfbcb1b9c3f01641c = L.circleMarker(\n",
" [36.23111048, -122.44273847],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7e1a72fdbedef24e8ece566ca4263794 = L.circleMarker(\n",
" [36.23112819, -122.45300074],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fcb4f672aa236ed598174236b4f955b8 = L.circleMarker(\n",
" [36.23117784, -122.46355236],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b38294980f366a459790e6c8c2c5a51f = L.circleMarker(\n",
" [36.23121793, -122.47372434],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_815d858fa7916ed240de05ec36dceb29 = L.circleMarker(\n",
" [36.23130177, -122.48388626],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_773eb247daa3e0bd53e90c6d99a86c73 = L.circleMarker(\n",
" [36.23140532, -122.4943541],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ce4d365e07db1044507682ae9a823677 = L.circleMarker(\n",
" [36.23149813, -122.50477299],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e0cee043886ae09167171d1aae4fc19b = L.circleMarker(\n",
" [36.23161176, -122.51499075],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_95cb31b74b1cf51eeacc263b4c19571d = L.circleMarker(\n",
" [36.23162667, -122.52531376],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f60312d1751749dd6c437388dde33a8f = L.circleMarker(\n",
" [36.2315069, -122.53573319],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b7dd3ef0c155f9fb21818ec093edecb2 = L.circleMarker(\n",
" [36.23126809, -122.54586605],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e51cd8022eaa02249ae39edeff371062 = L.circleMarker(\n",
" [36.2309036, -122.55609715],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b504ae4175991126fbd8a35c5e52d2c2 = L.circleMarker(\n",
" [36.39724719, -122.6483113],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4065817df64bdbbbc6e8819b83050fae = L.circleMarker(\n",
" [36.39726229, -122.64240404],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_33af2c6bdbc4686441c4a99ba46ccfcd = L.circleMarker(\n",
" [36.39733747, -122.63220973],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8e02f71ce807a8bbb67b0bf593fe3908 = L.circleMarker(\n",
" [36.3975444, -122.62184712],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3f577e0302a8c555bd0da6a3fa16668b = L.circleMarker(\n",
" [36.39773192, -122.61144905],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2b9da0dc1101a86f2dcdb0c138307381 = L.circleMarker(\n",
" [36.39796009, -122.60115985],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2f796f87de3a5bf26c15d2e78b72c659 = L.circleMarker(\n",
" [36.39806633, -122.59077169],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2d7c5b93866b0559923ff878ae5c147e = L.circleMarker(\n",
" [36.39811824, -122.58036818],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_514b114bfc0fc83810bee5d9a7f1eeda = L.circleMarker(\n",
" [36.39812107, -122.57019044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a4463714d693452441c27b886b760e6d = L.circleMarker(\n",
" [36.39802616, -122.55973726],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c99e99d8bfc36cde2948a0efbec32041 = L.circleMarker(\n",
" [36.39778566, -122.54943225],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2e2940c72e02ccc2c5b92a85e31c6b68 = L.circleMarker(\n",
" [36.39760811, -122.5391791],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5ddedf32a4f6a1bab92be7f5f0a5acaa = L.circleMarker(\n",
" [36.39754999, -122.52883783],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6dbcc573d81f8272b46ddb4bdd3c4f71 = L.circleMarker(\n",
" [36.39757502, -122.51850116],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2d2b7525cfd1aea71ff4c45af9c5d0ac = L.circleMarker(\n",
" [36.39755739, -122.50804007],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cd336eebb0c7485d8788f6e9dfd1f3f3 = L.circleMarker(\n",
" [36.39755255, -122.49768758],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1cc3dc5e2ad5078d9531b9543910fd0a = L.circleMarker(\n",
" [36.39755816, -122.48728261],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_010b921743d997dbd27f661fa1e0f3e4 = L.circleMarker(\n",
" [36.39755198, -122.47691917],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5d186051a5b79530bc1ce70111ede1e9 = L.circleMarker(\n",
" [36.39754822, -122.46667536],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_556b9b5a101c4ec817ea8305759e90d0 = L.circleMarker(\n",
" [36.39755614, -122.45639731],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0e64a251219309d81ec9dafff02d4036 = L.circleMarker(\n",
" [36.39752485, -122.44612465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_afde8628cc08e8a7c8e1d2ff24ae0b1b = L.circleMarker(\n",
" [36.39753654, -122.43589292],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1b89d1a90723eea7362deb211dfb00fa = L.circleMarker(\n",
" [36.39752456, -122.42540634],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2f4e1abaae78f1aacf55f1a246e63f5b = L.circleMarker(\n",
" [36.39753459, -122.41529622],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_39a4c157fb0fb53479a36d56b62eeb86 = L.circleMarker(\n",
" [36.39750085, -122.40480318],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9022d3a5e52a62450e0b37030874402a = L.circleMarker(\n",
" [36.3975436, -122.39456703],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_bab12accf492ddcc945853a704f8f111 = L.circleMarker(\n",
" [36.39754076, -122.38435664],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1a5f6d4c98e6104ad4b77998a6e88623 = L.circleMarker(\n",
" [36.39752446, -122.37401009],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a7558b41ecce1255aa49f7b16bcfffd0 = L.circleMarker(\n",
" [36.39752199, -122.36390101],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_db3b2a4011ea46eab7d4aeb22546c14c = L.circleMarker(\n",
" [36.39754312, -122.35349954],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2aa8ff1e3d2ba28fd604caccc6eec3b7 = L.circleMarker(\n",
" [36.39751919, -122.34336417],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f9bef0c25775c1f5bd73463dccdd7194 = L.circleMarker(\n",
" [36.39753676, -122.33295992],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cb915dd143e695a44884c78bc527cf6e = L.circleMarker(\n",
" [36.3974925, -122.32272565],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_44e036fba89c79555c56e729c3cf09e5 = L.circleMarker(\n",
" [36.39752468, -122.31231507],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2e71ca7d3d0a46e30aebcc346bed5310 = L.circleMarker(\n",
" [36.39752154, -122.30219332],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c34debff636931802ab3227fa9395d99 = L.circleMarker(\n",
" [36.39755115, -122.29191385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_49a726d57e66baed480d532b19974214 = L.circleMarker(\n",
" [36.39753315, -122.28160094],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_279fb6321d249cd3e1c907f0c9bcae30 = L.circleMarker(\n",
" [36.3975073, -122.2711465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_24ac08cbbc41014bdedb543ff7732e79 = L.circleMarker(\n",
" [36.39752875, -122.26097844],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9c66caaf4f117e1b10959556256a33f5 = L.circleMarker(\n",
" [36.39752745, -122.2504782],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cc494d65faffc0ccebbafb55623499e9 = L.circleMarker(\n",
" [36.3975245, -122.24029328],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_05236967da16760ff235360335b46638 = L.circleMarker(\n",
" [36.39755261, -122.22990499],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_006f71153e0bc77d6cc8086e0814e66d = L.circleMarker(\n",
" [36.39754119, -122.21964928],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9578524575d1ba332cfd048800af4fbd = L.circleMarker(\n",
" [36.39753921, -122.20923167],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_92a1d56b22811dd20e59b71f9a45e9b0 = L.circleMarker(\n",
" [36.39756704, -122.19907503],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_10eeb3fa293ee429c26d827ae1282b5a = L.circleMarker(\n",
" [36.39752444, -122.18867848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_03cd8aceb074f3b67dbb72a6177b3bf5 = L.circleMarker(\n",
" [36.39755149, -122.17839147],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f314c5add5ef793a7b3db5660acee6ca = L.circleMarker(\n",
" [36.39752754, -122.16798294],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_660687469780d095c2817842fedb8260 = L.circleMarker(\n",
" [36.39753433, -122.15768436],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cfc75589ab2c1964b8b38277226a98be = L.circleMarker(\n",
" [36.3975586, -122.14745624],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8d1c4cb1cdac131e793608d5eb4661e7 = L.circleMarker(\n",
" [36.39755929, -122.13715213],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_39040a954df7bba684f8fa8a80eafd63 = L.circleMarker(\n",
" [36.39758023, -122.12675388],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_945c7ab142cc64ff4b0661ca811a1e09 = L.circleMarker(\n",
" [36.39753177, -122.11642714],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b75e8999e9561ece60366f26cf29d4d7 = L.circleMarker(\n",
" [36.3975386, -122.10616728],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5335b4b5d92ba745d4914b8b613d891a = L.circleMarker(\n",
" [36.39754083, -122.09578546],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9b3913e2828231fe853cd9262022b9aa = L.circleMarker(\n",
" [36.3975421, -122.08534829],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_4b5ec25a42cb8f09bd09736ea8b07ef3 = L.circleMarker(\n",
" [36.39754916, -122.07512623],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c9bf5637263332fb6bfa20fecb66b0a5 = L.circleMarker(\n",
" [36.39754684, -122.0648316],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_01657e51c778d7b3750bce04a32eb842 = L.circleMarker(\n",
" [36.39754757, -122.05445809],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_043ccbb9f5af41e17fda1d70e1f30431 = L.circleMarker(\n",
" [36.39754793, -122.0442089],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_219e508fa75eaf9f128b42986e9f2a75 = L.circleMarker(\n",
" [36.3974972, -122.03382917],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dd5bcdddb0297ea6005ab242546d6dd2 = L.circleMarker(\n",
" [36.39756682, -122.02348082],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0220df687b32b63cbeb7589b03d1f49a = L.circleMarker(\n",
" [36.39746883, -122.01318197],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_64f0893a2e7c343073ac429d47f53fc6 = L.circleMarker(\n",
" [36.39741008, -122.00278347],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9e1977ef419051f3141c001a596f5129 = L.circleMarker(\n",
" [36.39739463, -121.99242465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ce4478ad7c08655a6411d90d0d587630 = L.circleMarker(\n",
" [36.39741457, -121.98210348],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c1eb5beed7b1b047418ca8b77ccbb82d = L.circleMarker(\n",
" [36.39737309, -121.97175014],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ce72d3c427165c75cf73ec35d54c816c = L.circleMarker(\n",
" [36.3974226, -121.9614401],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9090f8025386ef5fed3852a999fed03e = L.circleMarker(\n",
" [36.39735589, -121.95104667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_da6eb164819374ef4435b01d50c4cafb = L.circleMarker(\n",
" [36.39721472, -121.94072876],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8432d194bbabf3ebdda0f73f0631b8f4 = L.circleMarker(\n",
" [36.39723148, -121.93032886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9639ff22c8abdaa6dd79466819d4e770 = L.circleMarker(\n",
" [36.56399627, -121.98238092],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_79bb64fd7a7485de967d95580123281a = L.circleMarker(\n",
" [36.56397361, -121.98644873],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_330ed46c76185abec1fa5233c9a4ba6e = L.circleMarker(\n",
" [36.56396353, -121.99672938],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9bc7f5ad4479a10770b009744d5e2ec0 = L.circleMarker(\n",
" [36.56397264, -122.00717494],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1e337c1c711b8b2c7d5c5cfd319b0e15 = L.circleMarker(\n",
" [36.56398086, -122.01756856],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f7e04a5a96d386f59a35500a04772f8f = L.circleMarker(\n",
" [36.56399001, -122.02803457],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_11451d643d94a051655e7b0f3fcf4733 = L.circleMarker(\n",
" [36.563975, -122.03837109],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_efcdca8ac78a3ea4e20233b84cd132b6 = L.circleMarker(\n",
" [36.56398703, -122.04888029],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cdae83801d5a3814cf2701752bad4c8b = L.circleMarker(\n",
" [36.56399663, -122.05925058],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fbb55203c86d4c8619eb6b6de6288948 = L.circleMarker(\n",
" [36.56397001, -122.06967111],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e9745aee0141795da01660b6261cf3c4 = L.circleMarker(\n",
" [36.56400201, -122.07992131],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e05c51d37c34f759c42f79d7475776f5 = L.circleMarker(\n",
" [36.563975, -122.09037044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dbaac79f2b6107ff44472c8692743042 = L.circleMarker(\n",
" [36.56398912, -122.10062918],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f8a185d6dd58f4b9b8b493552236cbf9 = L.circleMarker(\n",
" [36.56401217, -122.11103037],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e13097feee451aabcc771b89f44b39fc = L.circleMarker(\n",
" [36.56398392, -122.1213999],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_48b9cf4b5a4020f0eeb97a58ced8bd52 = L.circleMarker(\n",
" [36.56397307, -122.13175114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_528942f7de85dc3ad46defafe1b9d976 = L.circleMarker(\n",
" [36.56395103, -122.14215349],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8bb2833db2761b9085dea8441764f307 = L.circleMarker(\n",
" [36.56454701, -122.14940768],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2d6f06fc09c0e9990bd4a82c53fd9703 = L.circleMarker(\n",
" [36.56445532, -122.15681809],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_28e67bfce39e185af36b7ca2de36a2e7 = L.circleMarker(\n",
" [36.56426438, -122.16725587],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1dc13a539bf4555044646f3ca5b1a0a4 = L.circleMarker(\n",
" [36.56416233, -122.17770713],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_faffbb9e2fadfeebe0a2997891b2fdf3 = L.circleMarker(\n",
" [36.56401964, -122.18792167],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fdd00e93efc55ed4dc60f2425b3073dc = L.circleMarker(\n",
" [36.56383415, -122.19835145],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_853bac82e9afacebafef46f02f7dab57 = L.circleMarker(\n",
" [36.56374901, -122.20878692],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cee43afe594a256749b105ecfd3ef812 = L.circleMarker(\n",
" [36.56376653, -122.21896948],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3ddaea353fef93fbf77ee1f40ec41710 = L.circleMarker(\n",
" [36.56376551, -122.22940393],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_a67cc268a18dd62869fbd79bd907e09c = L.circleMarker(\n",
" [36.563837, -122.2398411],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_90a66a0a7195e6506b1d730ae7b750de = L.circleMarker(\n",
" [36.56392486, -122.25020036],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1406587acd6339399b54696ae8cd1095 = L.circleMarker(\n",
" [36.56403747, -122.26053622],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e9bfe5b64ea1a8ab33ac263237a17597 = L.circleMarker(\n",
" [36.56417936, -122.27099681],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f233b14d611c649c8d2f22d9ce2e21df = L.circleMarker(\n",
" [36.56439204, -122.28119956],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_623c25cdaaa0096a83d18fbe400b1d06 = L.circleMarker(\n",
" [36.56458462, -122.29158343],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_60e228179e589aa6ab932f5c48499561 = L.circleMarker(\n",
" [36.56462163, -122.30192083],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_314690843b67baad8695bd53bc730cad = L.circleMarker(\n",
" [36.56439663, -122.31236092],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2207286c7b65d38bf4a699ab7d9e9eef = L.circleMarker(\n",
" [36.56414316, -122.32270889],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3612e5e81c8a7630fe802c2cc90d8662 = L.circleMarker(\n",
" [36.56387955, -122.33303524],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2205b984e61ad9dce08fa18090ca1cfc = L.circleMarker(\n",
" [36.56361005, -122.34340175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2e0fcebc15cd5c42535002b26c779b56 = L.circleMarker(\n",
" [36.56349442, -122.35364483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_098829152f67848e3575eb1ff49b4950 = L.circleMarker(\n",
" [36.5633466, -122.36392126],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_40b17f26e2ba3d502c48dbbe05dc191a = L.circleMarker(\n",
" [36.56348624, -122.37439374],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e7fcda3b6473f4304abf932fa52199c3 = L.circleMarker(\n",
" [36.56367557, -122.38480891],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6948c1ff806747903cf7bffe8adfa1f3 = L.circleMarker(\n",
" [36.56366234, -122.39516981],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_191c29b5f5c3835113baf03e5a398a88 = L.circleMarker(\n",
" [36.56386492, -122.40554692],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_42b22024ae91ade7b01e0b803432a4bf = L.circleMarker(\n",
" [36.56393089, -122.41592321],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_5d33a76001f2e0e7ed0737566265e71e = L.circleMarker(\n",
" [36.56393015, -122.42606592],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7b84f796b2e102ed1f469b95fcc3b963 = L.circleMarker(\n",
" [36.56391677, -122.43665326],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_360798c0d51b6480cc824f64e3c6261a = L.circleMarker(\n",
" [36.56393815, -122.44692312],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_8eea16de6da176baefe61d270744b81e = L.circleMarker(\n",
" [36.56391835, -122.45721881],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_92ce33c0c5fb5308565dc7f59edef94a = L.circleMarker(\n",
" [36.56392139, -122.4674876],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_35c2147800e72a07f11da00dadf4aaaf = L.circleMarker(\n",
" [36.56391639, -122.47778246],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_de9a7e36f96cf7eecb12de7cadc96dd5 = L.circleMarker(\n",
" [36.56394027, -122.48798629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_7a11abcdeee2dc5d12672398811f274b = L.circleMarker(\n",
" [36.56395555, -122.49829734],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_de1bcd013828ae628305672cdf48ae74 = L.circleMarker(\n",
" [36.563966, -122.5087941],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6829fdf3fbefc115738c54d71fabb98f = L.circleMarker(\n",
" [36.56391367, -122.51891006],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c8412396e3011967613b73871a05d68c = L.circleMarker(\n",
" [36.56393323, -122.52923184],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2bab964cfb102ba43ef7e81cda4dc4de = L.circleMarker(\n",
" [36.56393769, -122.53971087],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b71f7a0d2b80f8782d6dc82cf8431073 = L.circleMarker(\n",
" [36.56391257, -122.55004248],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d1cd765c9b9afbe98617195a9707ad36 = L.circleMarker(\n",
" [36.56392173, -122.56055066],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0697058f176f6e2fe932d31c018c7eca = L.circleMarker(\n",
" [36.56391175, -122.57074111],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e7a3a852f26e02ceeab0e1dcfa52eec8 = L.circleMarker(\n",
" [36.56393762, -122.58104592],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_91f3358b6957c2886f0b0c1d3070b5c1 = L.circleMarker(\n",
" [36.56396221, -122.59141407],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_2333c1ca373d0d14ed7eab3c2d8602dc = L.circleMarker(\n",
" [36.56392074, -122.60168749],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_772ebac56ae48eba9c681ed3d864396b = L.circleMarker(\n",
" [36.56393818, -122.61220097],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e0bc206e52c6018310162c1f6f9d13e3 = L.circleMarker(\n",
" [36.56393221, -122.62265271],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_9d43dc434c67eb0b8f2f8798dc73dd1d = L.circleMarker(\n",
" [36.56392491, -122.63315503],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_1f683863771becbf9bf3488c6368c832 = L.circleMarker(\n",
" [36.56392661, -122.64330018],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c6e37a0197a6363303368bac3f356bd8 = L.circleMarker(\n",
" [36.56392368, -122.65390181],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_fec1ef23a662ef57d2b36529546d9d3b = L.circleMarker(\n",
" [36.56391409, -122.66419265],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_e6850dab33c669df0cd500e1cfbb51ba = L.circleMarker(\n",
" [36.56393678, -122.67471616],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ad3c80c74ef7fe6f66af58ea0a798182 = L.circleMarker(\n",
" [36.56391581, -122.68493683],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_d446c1a515fb9248e0dc3457fae9af43 = L.circleMarker(\n",
" [36.56393414, -122.69508213],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c83b003c3082d8608390e033954e05c3 = L.circleMarker(\n",
" [36.7305, -122.57896567],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cccf67665d4dce8475831769ea711457 = L.circleMarker(\n",
" [36.73066667, -122.57311677],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_545b3dc5308394b4b37c7b30e4a0c1c6 = L.circleMarker(\n",
" [36.73073338, -122.56269991],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b3a9f631f01ea5650cc7e4260494f3d4 = L.circleMarker(\n",
" [36.73090767, -122.55248201],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_34ec892865b98eb0d02c82eac5f640cd = L.circleMarker(\n",
" [36.731, -122.54229582],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_352be7bdfeb49db50f00856b4670a4f2 = L.circleMarker(\n",
" [36.731, -122.53195683],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_df2c5d555d8235a7aeb703e63f73fe69 = L.circleMarker(\n",
" [36.73083333, -122.5213076],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_44a943ae3a143b51daa9e270eea753f1 = L.circleMarker(\n",
" [36.73066667, -122.51098848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ad57e01ff22400491c33c2bf7e903135 = L.circleMarker(\n",
" [36.73066667, -122.5007335],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cd0737c5e9f5a712b4960222046b73cc = L.circleMarker(\n",
" [36.73066667, -122.49031456],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c458beb06f0f4cfdda4ed912e3bc6b17 = L.circleMarker(\n",
" [36.73066667, -122.48012675],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ce0654c1f90472e717c3977ec4c67ab1 = L.circleMarker(\n",
" [36.73066667, -122.46971827],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_dbb62627d7bdbf4f7178167a0ef98997 = L.circleMarker(\n",
" [36.73066667, -122.45931943],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_cb0b3b2b9c6a6f824af987a91f99c4b4 = L.circleMarker(\n",
" [36.73066667, -122.44889545],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c40f73c5a6f2dbc8a59135d6645172ae = L.circleMarker(\n",
" [36.73066667, -122.43851848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c2d400c109143b4a6db72022eeed5a91 = L.circleMarker(\n",
" [36.73066667, -122.42834922],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c7555377f968a9ea7aff6f28c1994118 = L.circleMarker(\n",
" [36.73066667, -122.41766667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_ca3c0d1e28ecaea19f32cc87be41bad5 = L.circleMarker(\n",
" [36.73066667, -122.40737875],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_3766f3a95e0047be5cdb48f19f28896a = L.circleMarker(\n",
" [36.73066667, -122.39711174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_c34dfd108e057d6f3610460cf9024247 = L.circleMarker(\n",
" [36.73066667, -122.38666452],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_01b8d26460b6ad0d42fbb518a5270141 = L.circleMarker(\n",
" [36.73066667, -122.37633333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_0ac5788fecabcb8a4395ec9530a820e7 = L.circleMarker(\n",
" [36.73066667, -122.366],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_69107ab4b307e9ed2d9a401ba9924939 = L.circleMarker(\n",
" [36.73066667, -122.35553815],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_b2ad3f4d01c000f88c31270596beb5e3 = L.circleMarker(\n",
" [36.73066667, -122.34528136],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_65e6313b503544708edaf2724b4a6a21 = L.circleMarker(\n",
" [36.73066667, -122.33490385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6e75e382f83359c4f348c62ce78f26f4 = L.circleMarker(\n",
" [36.73066667, -122.32462895],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_6a67e6070ff4d9bd0f2bfce1e1cd5b1d = L.circleMarker(\n",
" [36.73066667, -122.31413178],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_f99853d781a95b67c29a097c63ebae18 = L.circleMarker(\n",
" [36.73066667, -122.3037501],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_493aaf5b49bf17ab175e05f75a079588 = L.circleMarker(\n",
" [36.73066667, -122.29340741],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_58e87638d9b41191ee0f6414aea5e42a = L.circleMarker(\n",
" [36.73066667, -122.28311957],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab795cacb0);\n",
" \n",
" \n",
" var circle_marker_693b0ef87e524ba5034488ea8dbcf5f0 = L.circleMarker(\n",
" [36.73066667, -122.27271398],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_464bfae422389a4c0445e5ab7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment