summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ZestySalesman.ipynb4956
-rw-r--r--ZestySalesman.py368
-rw-r--r--ZestySalesmanNoMinimize.ipynb706
-rw-r--r--utils.py3
4 files changed, 4969 insertions, 1064 deletions
diff --git a/ZestySalesman.ipynb b/ZestySalesman.ipynb
index 4e14da2..60dd19e 100644
--- a/ZestySalesman.ipynb
+++ b/ZestySalesman.ipynb
@@ -5,11 +5,11 @@
"execution_count": 1,
"id": "initial_id",
"metadata": {
- "collapsed": true,
"ExecuteTime": {
"end_time": "2023-11-07T23:05:35.179983Z",
"start_time": "2023-11-07T23:05:34.039783Z"
- }
+ },
+ "collapsed": true
},
"outputs": [],
"source": [
@@ -21,6 +21,13 @@
{
"cell_type": "code",
"execution_count": 2,
+ "id": "73b780e762c9de37",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:05:35.194166Z",
+ "start_time": "2023-11-07T23:05:35.181233Z"
+ }
+ },
"outputs": [],
"source": [
"# Load the data\n",
@@ -28,38 +35,36 @@
"ListB = pd.read_csv('List B.csv')\n",
"ListC = pd.read_csv('List C.csv')\n",
"ListD = pd.read_csv('List D.csv')"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:05:35.194166Z",
- "start_time": "2023-11-07T23:05:35.181233Z"
- }
- },
- "id": "73b780e762c9de37"
+ ]
},
{
"cell_type": "code",
"execution_count": 3,
- "outputs": [],
- "source": [
- "# Create two centroids, one in the North End and one in the Seaport District\n",
- "centroids = [[42.365, -71.054], [42.351, -71.045]]\n",
- "\n",
- "northeastern_coordinate = \"-71.09033,42.33976\""
- ],
+ "id": "be4c8c1d77842ef7",
"metadata": {
- "collapsed": false,
"ExecuteTime": {
"end_time": "2023-11-07T23:05:35.195314Z",
"start_time": "2023-11-07T23:05:35.193156Z"
}
},
- "id": "be4c8c1d77842ef7"
+ "outputs": [],
+ "source": [
+ "# Create two centroids, one in the North End and one in the Seaport District\n",
+ "centroids = [[42.365, -71.054], [42.351, -71.045]]\n",
+ "\n",
+ "northeastern_coordinate = \"-71.09033,42.33976\""
+ ]
},
{
"cell_type": "code",
"execution_count": 4,
+ "id": "ffe4025e97a6c6b9",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:05:35.201800Z",
+ "start_time": "2023-11-07T23:05:35.197747Z"
+ }
+ },
"outputs": [],
"source": [
"# Combine the two lists and add a column to indicate the list\n",
@@ -69,59 +74,166 @@
"ListD['list'] = 'D'\n",
"\n",
"TotalList = pd.concat([ListA, ListB, ListC, ListD])"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:05:35.201800Z",
- "start_time": "2023-11-07T23:05:35.197747Z"
- }
- },
- "id": "ffe4025e97a6c6b9"
+ ]
},
{
"cell_type": "code",
"execution_count": 5,
- "outputs": [],
- "source": [
- "# Remove all columns but name and gps\n",
- "TotalList = TotalList[['name', 'gps', 'list']]"
- ],
+ "id": "72657779b4484aae",
"metadata": {
- "collapsed": false,
"ExecuteTime": {
"end_time": "2023-11-07T23:05:35.215762Z",
"start_time": "2023-11-07T23:05:35.200811Z"
}
},
- "id": "72657779b4484aae"
+ "outputs": [],
+ "source": [
+ "# Remove all columns but name and gps\n",
+ "TotalList = TotalList[['name', 'gps', 'list']]"
+ ]
},
{
"cell_type": "code",
"execution_count": 6,
- "outputs": [],
- "source": [
- "# Convert the gps column to a list of lists for k-means\n",
- "TotalList['gps'] = TotalList['gps'].apply(lambda x: x.strip('[]').split(','))\n",
- "TotalList['gps'] = TotalList['gps'].apply(lambda x: [float(i) for i in x])"
- ],
+ "id": "a157ffaec020a29a",
"metadata": {
- "collapsed": false,
"ExecuteTime": {
"end_time": "2023-11-07T23:05:35.215916Z",
"start_time": "2023-11-07T23:05:35.204173Z"
}
},
- "id": "a157ffaec020a29a"
+ "outputs": [],
+ "source": [
+ "# Convert the gps column to a list of lists for k-means\n",
+ "TotalList['gps'] = TotalList['gps'].apply(lambda x: x.strip('[]').split(','))\n",
+ "TotalList['gps'] = TotalList['gps'].apply(lambda x: [float(i) for i in x])"
+ ]
},
{
"cell_type": "code",
"execution_count": 7,
+ "id": "a03ebde91b87fa3b",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:05:35.216384Z",
+ "start_time": "2023-11-07T23:05:35.206794Z"
+ }
+ },
"outputs": [
{
"data": {
- "text/plain": " name gps list\n0 521 Commercial Street #525 [42.3688272, -71.0553792] A\n1 Acorn St [42.3576234, -71.0688746] A\n2 Arlington's Great Meadows [42.4299758, -71.2038948] A\n3 Arthur Fiedler Statue [42.3565057, -71.0754527] A\n4 BU Beach [42.3511927, -71.1060828] A\n.. ... ... ...\n33 The Quiet Few [42.3670906, -71.0359889] D\n34 The Tall Ship Boston [42.3649544, -71.0414523] D\n35 Toasted Flats [42.3711266, -71.0371343] D\n36 Vega Market [42.3891835, -71.033703] D\n37 Winthrop High School [42.3803348, -70.9799864] D\n\n[169 rows x 3 columns]",
- "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>name</th>\n <th>gps</th>\n <th>list</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>521 Commercial Street #525</td>\n <td>[42.3688272, -71.0553792]</td>\n <td>A</td>\n </tr>\n <tr>\n <th>1</th>\n <td>Acorn St</td>\n <td>[42.3576234, -71.0688746]</td>\n <td>A</td>\n </tr>\n <tr>\n <th>2</th>\n <td>Arlington's Great Meadows</td>\n <td>[42.4299758, -71.2038948]</td>\n <td>A</td>\n </tr>\n <tr>\n <th>3</th>\n <td>Arthur Fiedler Statue</td>\n <td>[42.3565057, -71.0754527]</td>\n <td>A</td>\n </tr>\n <tr>\n <th>4</th>\n <td>BU Beach</td>\n <td>[42.3511927, -71.1060828]</td>\n <td>A</td>\n </tr>\n <tr>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th>33</th>\n <td>The Quiet Few</td>\n <td>[42.3670906, -71.0359889]</td>\n <td>D</td>\n </tr>\n <tr>\n <th>34</th>\n <td>The Tall Ship Boston</td>\n <td>[42.3649544, -71.0414523]</td>\n <td>D</td>\n </tr>\n <tr>\n <th>35</th>\n <td>Toasted Flats</td>\n <td>[42.3711266, -71.0371343]</td>\n <td>D</td>\n </tr>\n <tr>\n <th>36</th>\n <td>Vega Market</td>\n <td>[42.3891835, -71.033703]</td>\n <td>D</td>\n </tr>\n <tr>\n <th>37</th>\n <td>Winthrop High School</td>\n <td>[42.3803348, -70.9799864]</td>\n <td>D</td>\n </tr>\n </tbody>\n</table>\n<p>169 rows × 3 columns</p>\n</div>"
+ "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>name</th>\n",
+ " <th>gps</th>\n",
+ " <th>list</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>521 Commercial Street #525</td>\n",
+ " <td>[42.3688272, -71.0553792]</td>\n",
+ " <td>A</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>Acorn St</td>\n",
+ " <td>[42.3576234, -71.0688746]</td>\n",
+ " <td>A</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>Arlington's Great Meadows</td>\n",
+ " <td>[42.4299758, -71.2038948]</td>\n",
+ " <td>A</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>Arthur Fiedler Statue</td>\n",
+ " <td>[42.3565057, -71.0754527]</td>\n",
+ " <td>A</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>BU Beach</td>\n",
+ " <td>[42.3511927, -71.1060828]</td>\n",
+ " <td>A</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>...</th>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>33</th>\n",
+ " <td>The Quiet Few</td>\n",
+ " <td>[42.3670906, -71.0359889]</td>\n",
+ " <td>D</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>34</th>\n",
+ " <td>The Tall Ship Boston</td>\n",
+ " <td>[42.3649544, -71.0414523]</td>\n",
+ " <td>D</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>35</th>\n",
+ " <td>Toasted Flats</td>\n",
+ " <td>[42.3711266, -71.0371343]</td>\n",
+ " <td>D</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>36</th>\n",
+ " <td>Vega Market</td>\n",
+ " <td>[42.3891835, -71.033703]</td>\n",
+ " <td>D</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>37</th>\n",
+ " <td>Winthrop High School</td>\n",
+ " <td>[42.3803348, -70.9799864]</td>\n",
+ " <td>D</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "<p>169 rows × 3 columns</p>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " name gps list\n",
+ "0 521 Commercial Street #525 [42.3688272, -71.0553792] A\n",
+ "1 Acorn St [42.3576234, -71.0688746] A\n",
+ "2 Arlington's Great Meadows [42.4299758, -71.2038948] A\n",
+ "3 Arthur Fiedler Statue [42.3565057, -71.0754527] A\n",
+ "4 BU Beach [42.3511927, -71.1060828] A\n",
+ ".. ... ... ...\n",
+ "33 The Quiet Few [42.3670906, -71.0359889] D\n",
+ "34 The Tall Ship Boston [42.3649544, -71.0414523] D\n",
+ "35 Toasted Flats [42.3711266, -71.0371343] D\n",
+ "36 Vega Market [42.3891835, -71.033703] D\n",
+ "37 Winthrop High School [42.3803348, -70.9799864] D\n",
+ "\n",
+ "[169 rows x 3 columns]"
+ ]
},
"metadata": {},
"output_type": "display_data"
@@ -129,39 +241,34 @@
],
"source": [
"display(TotalList)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:05:35.216384Z",
- "start_time": "2023-11-07T23:05:35.206794Z"
- }
- },
- "id": "a03ebde91b87fa3b"
+ ]
},
{
"cell_type": "markdown",
+ "id": "4bd41be9aca5094b",
+ "metadata": {},
"source": [
"# 2 Routes"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "4bd41be9aca5094b"
+ ]
},
{
"cell_type": "markdown",
+ "id": "90d1d2f1a931597f",
+ "metadata": {},
"source": [
"## Cluster and Minimize"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "90d1d2f1a931597f"
+ ]
},
{
"cell_type": "code",
"execution_count": 8,
+ "id": "ee9b3c1ecb360976",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:06:04.963804Z",
+ "start_time": "2023-11-07T23:05:35.213646Z"
+ }
+ },
"outputs": [
{
"name": "stderr",
@@ -181,70 +288,66 @@
"\n",
"route_1_coordinates = routes[0]\n",
"route_2_coordinates = routes[1]"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:06:04.963804Z",
- "start_time": "2023-11-07T23:05:35.213646Z"
- }
- },
- "id": "ee9b3c1ecb360976"
+ ]
},
{
"cell_type": "markdown",
- "source": [
- "## Create JSON"
- ],
+ "id": "c85b8ef869e35006",
"metadata": {
- "collapsed": false,
"ExecuteTime": {
"end_time": "2023-11-07T17:33:02.697755Z",
"start_time": "2023-11-07T17:33:02.687460Z"
}
},
- "id": "c85b8ef869e35006"
+ "source": [
+ "## Create JSON"
+ ]
},
{
"cell_type": "code",
"execution_count": 9,
- "outputs": [],
- "source": [
- "# Create a JSON request for the API\n",
- "# This is the data we want to get from the API\n",
- "route_1 = utils.list_to_string(route_1_coordinates)\n",
- "route_2 = utils.list_to_string(route_2_coordinates)"
- ],
+ "id": "aa618161182b5b07",
"metadata": {
- "collapsed": false,
"ExecuteTime": {
"end_time": "2023-11-07T23:06:04.981278Z",
"start_time": "2023-11-07T23:06:04.967948Z"
}
},
- "id": "aa618161182b5b07"
+ "outputs": [],
+ "source": [
+ "# Create a JSON request for the API\n",
+ "# This is the data we want to get from the API\n",
+ "route_1 = utils.list_to_string(route_1_coordinates)\n",
+ "route_2 = utils.list_to_string(route_2_coordinates)"
+ ]
},
{
"cell_type": "code",
"execution_count": 10,
- "outputs": [],
- "source": [
- "# Create a dataframe from the JSON\n",
- "df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate)\n",
- "df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate)"
- ],
+ "id": "32c485788eedd94",
"metadata": {
- "collapsed": false,
"ExecuteTime": {
"end_time": "2023-11-07T23:06:07.185941Z",
"start_time": "2023-11-07T23:06:04.976840Z"
}
},
- "id": "32c485788eedd94"
+ "outputs": [],
+ "source": [
+ "# Create a dataframe from the JSON\n",
+ "df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate)\n",
+ "df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate)"
+ ]
},
{
"cell_type": "code",
"execution_count": 11,
+ "id": "49dba1f17ca8337e",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:06:07.206851Z",
+ "start_time": "2023-11-07T23:06:07.193514Z"
+ }
+ },
"outputs": [],
"source": [
"# Add columns for the route number\n",
@@ -253,24 +356,244 @@
"\n",
"# Concatenate the two dataframes\n",
"df = pd.concat([df1, df2], ignore_index=True)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:06:07.206851Z",
- "start_time": "2023-11-07T23:06:07.193514Z"
- }
- },
- "id": "49dba1f17ca8337e"
+ ]
},
{
"cell_type": "code",
"execution_count": 12,
+ "id": "f231d9a35358988c",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:06:07.219423Z",
+ "start_time": "2023-11-07T23:06:07.214064Z"
+ }
+ },
"outputs": [
{
"data": {
- "text/plain": " waypoint_index trips_index \\\n0 0 0 \n1 1 0 \n2 2 0 \n3 3 0 \n4 4 0 \n.. ... ... \n168 61 0 \n169 62 0 \n170 63 0 \n171 64 0 \n172 65 0 \n\n hint distance \\\n0 1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN... 8.262982 \n1 G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8... 2.602121 \n2 gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR... 15.458439 \n3 HpwsgCKcLIAAAAAAEgAAAAAAAAAAAAAAAAAAACg870AAAA... 39.201677 \n4 qn8sgKt_LIAfAAAAAAAAAAAAAAAAAAAA2ElcQAAAAAAAAA... 39.331841 \n.. ... ... \n168 7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA... 7.478611 \n169 bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx... 8.340476 \n170 MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh... 11.504463 \n171 k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e... 36.240351 \n172 DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA... 0.236958 \n\n name location lat lon \\\n0 [-71.053931, 42.365054] -71.053931 42.365054 \n1 [-71.056164, 42.366918] -71.056164 42.366918 \n2 [-71.055561, 42.368861] -71.055561 42.368861 \n3 [-71.062507, 42.365968] -71.062507 42.365968 \n4 [-71.064277, 42.358851] -71.064277 42.358851 \n.. ... ... ... ... \n168 [-71.096959, 42.344689] -71.096959 42.344689 \n169 [-71.095003, 42.342001] -71.095003 42.342001 \n170 [-71.094327, 42.341231] -71.094327 42.341231 \n171 [-71.093834, 42.339096] -71.093834 42.339096 \n172 Northeastern (Inbound) [-71.090331, 42.339762] -71.090331 42.339762 \n\n route \n0 1 \n1 1 \n2 1 \n3 1 \n4 1 \n.. ... \n168 2 \n169 2 \n170 2 \n171 2 \n172 2 \n\n[173 rows x 9 columns]",
- "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>waypoint_index</th>\n <th>trips_index</th>\n <th>hint</th>\n <th>distance</th>\n <th>name</th>\n <th>location</th>\n <th>lat</th>\n <th>lon</th>\n <th>route</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>0</td>\n <td>0</td>\n <td>1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN...</td>\n <td>8.262982</td>\n <td></td>\n <td>[-71.053931, 42.365054]</td>\n <td>-71.053931</td>\n <td>42.365054</td>\n <td>1</td>\n </tr>\n <tr>\n <th>1</th>\n <td>1</td>\n <td>0</td>\n <td>G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8...</td>\n <td>2.602121</td>\n <td></td>\n <td>[-71.056164, 42.366918]</td>\n <td>-71.056164</td>\n <td>42.366918</td>\n <td>1</td>\n </tr>\n <tr>\n <th>2</th>\n <td>2</td>\n <td>0</td>\n <td>gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR...</td>\n <td>15.458439</td>\n <td></td>\n <td>[-71.055561, 42.368861]</td>\n <td>-71.055561</td>\n <td>42.368861</td>\n <td>1</td>\n </tr>\n <tr>\n <th>3</th>\n <td>3</td>\n <td>0</td>\n <td>HpwsgCKcLIAAAAAAEgAAAAAAAAAAAAAAAAAAACg870AAAA...</td>\n <td>39.201677</td>\n <td></td>\n <td>[-71.062507, 42.365968]</td>\n <td>-71.062507</td>\n <td>42.365968</td>\n <td>1</td>\n </tr>\n <tr>\n <th>4</th>\n <td>4</td>\n <td>0</td>\n <td>qn8sgKt_LIAfAAAAAAAAAAAAAAAAAAAA2ElcQAAAAAAAAA...</td>\n <td>39.331841</td>\n <td></td>\n <td>[-71.064277, 42.358851]</td>\n <td>-71.064277</td>\n <td>42.358851</td>\n <td>1</td>\n </tr>\n <tr>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th>168</th>\n <td>61</td>\n <td>0</td>\n <td>7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA...</td>\n <td>7.478611</td>\n <td></td>\n <td>[-71.096959, 42.344689]</td>\n <td>-71.096959</td>\n <td>42.344689</td>\n <td>2</td>\n </tr>\n <tr>\n <th>169</th>\n <td>62</td>\n <td>0</td>\n <td>bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx...</td>\n <td>8.340476</td>\n <td></td>\n <td>[-71.095003, 42.342001]</td>\n <td>-71.095003</td>\n <td>42.342001</td>\n <td>2</td>\n </tr>\n <tr>\n <th>170</th>\n <td>63</td>\n <td>0</td>\n <td>MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh...</td>\n <td>11.504463</td>\n <td></td>\n <td>[-71.094327, 42.341231]</td>\n <td>-71.094327</td>\n <td>42.341231</td>\n <td>2</td>\n </tr>\n <tr>\n <th>171</th>\n <td>64</td>\n <td>0</td>\n <td>k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e...</td>\n <td>36.240351</td>\n <td></td>\n <td>[-71.093834, 42.339096]</td>\n <td>-71.093834</td>\n <td>42.339096</td>\n <td>2</td>\n </tr>\n <tr>\n <th>172</th>\n <td>65</td>\n <td>0</td>\n <td>DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA...</td>\n <td>0.236958</td>\n <td>Northeastern (Inbound)</td>\n <td>[-71.090331, 42.339762]</td>\n <td>-71.090331</td>\n <td>42.339762</td>\n <td>2</td>\n </tr>\n </tbody>\n</table>\n<p>173 rows × 9 columns</p>\n</div>"
+ "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>waypoint_index</th>\n",
+ " <th>trips_index</th>\n",
+ " <th>hint</th>\n",
+ " <th>distance</th>\n",
+ " <th>name</th>\n",
+ " <th>location</th>\n",
+ " <th>lat</th>\n",
+ " <th>lon</th>\n",
+ " <th>route</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>0</td>\n",
+ " <td>0</td>\n",
+ " <td>1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN...</td>\n",
+ " <td>8.262982</td>\n",
+ " <td></td>\n",
+ " <td>[-71.053931, 42.365054]</td>\n",
+ " <td>-71.053931</td>\n",
+ " <td>42.365054</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>1</td>\n",
+ " <td>0</td>\n",
+ " <td>G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8...</td>\n",
+ " <td>2.602121</td>\n",
+ " <td></td>\n",
+ " <td>[-71.056164, 42.366918]</td>\n",
+ " <td>-71.056164</td>\n",
+ " <td>42.366918</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>2</td>\n",
+ " <td>0</td>\n",
+ " <td>gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR...</td>\n",
+ " <td>15.458439</td>\n",
+ " <td></td>\n",
+ " <td>[-71.055561, 42.368861]</td>\n",
+ " <td>-71.055561</td>\n",
+ " <td>42.368861</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>3</td>\n",
+ " <td>0</td>\n",
+ " <td>HpwsgCKcLIAAAAAAEgAAAAAAAAAAAAAAAAAAACg870AAAA...</td>\n",
+ " <td>39.201677</td>\n",
+ " <td></td>\n",
+ " <td>[-71.062507, 42.365968]</td>\n",
+ " <td>-71.062507</td>\n",
+ " <td>42.365968</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>4</td>\n",
+ " <td>0</td>\n",
+ " <td>qn8sgKt_LIAfAAAAAAAAAAAAAAAAAAAA2ElcQAAAAAAAAA...</td>\n",
+ " <td>39.331841</td>\n",
+ " <td></td>\n",
+ " <td>[-71.064277, 42.358851]</td>\n",
+ " <td>-71.064277</td>\n",
+ " <td>42.358851</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>...</th>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>168</th>\n",
+ " <td>61</td>\n",
+ " <td>0</td>\n",
+ " <td>7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA...</td>\n",
+ " <td>7.478611</td>\n",
+ " <td></td>\n",
+ " <td>[-71.096959, 42.344689]</td>\n",
+ " <td>-71.096959</td>\n",
+ " <td>42.344689</td>\n",
+ " <td>2</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>169</th>\n",
+ " <td>62</td>\n",
+ " <td>0</td>\n",
+ " <td>bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx...</td>\n",
+ " <td>8.340476</td>\n",
+ " <td></td>\n",
+ " <td>[-71.095003, 42.342001]</td>\n",
+ " <td>-71.095003</td>\n",
+ " <td>42.342001</td>\n",
+ " <td>2</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>170</th>\n",
+ " <td>63</td>\n",
+ " <td>0</td>\n",
+ " <td>MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh...</td>\n",
+ " <td>11.504463</td>\n",
+ " <td></td>\n",
+ " <td>[-71.094327, 42.341231]</td>\n",
+ " <td>-71.094327</td>\n",
+ " <td>42.341231</td>\n",
+ " <td>2</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>171</th>\n",
+ " <td>64</td>\n",
+ " <td>0</td>\n",
+ " <td>k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e...</td>\n",
+ " <td>36.240351</td>\n",
+ " <td></td>\n",
+ " <td>[-71.093834, 42.339096]</td>\n",
+ " <td>-71.093834</td>\n",
+ " <td>42.339096</td>\n",
+ " <td>2</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>172</th>\n",
+ " <td>65</td>\n",
+ " <td>0</td>\n",
+ " <td>DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA...</td>\n",
+ " <td>0.236958</td>\n",
+ " <td>Northeastern (Inbound)</td>\n",
+ " <td>[-71.090331, 42.339762]</td>\n",
+ " <td>-71.090331</td>\n",
+ " <td>42.339762</td>\n",
+ " <td>2</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "<p>173 rows × 9 columns</p>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " waypoint_index trips_index \\\n",
+ "0 0 0 \n",
+ "1 1 0 \n",
+ "2 2 0 \n",
+ "3 3 0 \n",
+ "4 4 0 \n",
+ ".. ... ... \n",
+ "168 61 0 \n",
+ "169 62 0 \n",
+ "170 63 0 \n",
+ "171 64 0 \n",
+ "172 65 0 \n",
+ "\n",
+ " hint distance \\\n",
+ "0 1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN... 8.262982 \n",
+ "1 G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8... 2.602121 \n",
+ "2 gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR... 15.458439 \n",
+ "3 HpwsgCKcLIAAAAAAEgAAAAAAAAAAAAAAAAAAACg870AAAA... 39.201677 \n",
+ "4 qn8sgKt_LIAfAAAAAAAAAAAAAAAAAAAA2ElcQAAAAAAAAA... 39.331841 \n",
+ ".. ... ... \n",
+ "168 7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA... 7.478611 \n",
+ "169 bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx... 8.340476 \n",
+ "170 MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh... 11.504463 \n",
+ "171 k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e... 36.240351 \n",
+ "172 DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA... 0.236958 \n",
+ "\n",
+ " name location lat lon \\\n",
+ "0 [-71.053931, 42.365054] -71.053931 42.365054 \n",
+ "1 [-71.056164, 42.366918] -71.056164 42.366918 \n",
+ "2 [-71.055561, 42.368861] -71.055561 42.368861 \n",
+ "3 [-71.062507, 42.365968] -71.062507 42.365968 \n",
+ "4 [-71.064277, 42.358851] -71.064277 42.358851 \n",
+ ".. ... ... ... ... \n",
+ "168 [-71.096959, 42.344689] -71.096959 42.344689 \n",
+ "169 [-71.095003, 42.342001] -71.095003 42.342001 \n",
+ "170 [-71.094327, 42.341231] -71.094327 42.341231 \n",
+ "171 [-71.093834, 42.339096] -71.093834 42.339096 \n",
+ "172 Northeastern (Inbound) [-71.090331, 42.339762] -71.090331 42.339762 \n",
+ "\n",
+ " route \n",
+ "0 1 \n",
+ "1 1 \n",
+ "2 1 \n",
+ "3 1 \n",
+ "4 1 \n",
+ ".. ... \n",
+ "168 2 \n",
+ "169 2 \n",
+ "170 2 \n",
+ "171 2 \n",
+ "172 2 \n",
+ "\n",
+ "[173 rows x 9 columns]"
+ ]
},
"metadata": {},
"output_type": "display_data"
@@ -278,34 +601,1153 @@
],
"source": [
"display(df)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:06:07.219423Z",
- "start_time": "2023-11-07T23:06:07.214064Z"
- }
- },
- "id": "f231d9a35358988c"
+ ]
},
{
"cell_type": "markdown",
+ "id": "75be92e34a36147f",
+ "metadata": {},
"source": [
"## Map"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "75be92e34a36147f"
+ ]
},
{
"cell_type": "code",
"execution_count": 13,
+ "id": "80fd847da2833913",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:06:07.316817Z",
+ "start_time": "2023-11-07T23:06:07.221200Z"
+ }
+ },
"outputs": [
{
"data": {
- "text/plain": "<folium.folium.Map at 0x14fd8be10>",
- "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;html&gt;\n&lt;head&gt;\n \n &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n \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.9.3/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://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n \n &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n &lt;style&gt;\n #map_5a1967516626ecbf1f03b634f55bb869 {\n position: relative;\n width: 100.0%;\n height: 100.0%;\n left: 0.0%;\n top: 0.0%;\n }\n .leaflet-container { font-size: 1rem; }\n &lt;/style&gt;\n \n&lt;/head&gt;\n&lt;body&gt;\n \n \n &lt;div class=&quot;folium-map&quot; id=&quot;map_5a1967516626ecbf1f03b634f55bb869&quot; &gt;&lt;/div&gt;\n \n&lt;/body&gt;\n&lt;script&gt;\n \n \n var map_5a1967516626ecbf1f03b634f55bb869 = L.map(\n &quot;map_5a1967516626ecbf1f03b634f55bb869&quot;,\n {\n center: [42.35900213872833, -71.07218852023122],\n crs: L.CRS.EPSG3857,\n zoom: 11,\n zoomControl: true,\n preferCanvas: false,\n }\n );\n\n \n\n \n \n var tile_layer_1c94bb14aece3a0b64db6974539ef8b7 = L.tileLayer(\n &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\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_5a1967516626ecbf1f03b634f55bb869);\n \n \n var poly_line_92ffa92892583897807a1ed2e4fa6fdc = L.polyline(\n [[42.365054, -71.053931], [42.366918, -71.056164], [42.368861, -71.055561], [42.365968, -71.062507], [42.358851, -71.064277], [42.367607, -71.08097], [42.369473, -71.075628], [42.374142, -71.063105], [42.380436, -71.060948], [42.376391, -71.060753], [42.376178, -71.060933], [42.374119, -71.055588], [42.369195, -71.061735], [42.371832, -71.065634], [42.369868, -71.06828], [42.364032, -71.055569], [42.365251, -71.055582], [42.360949, -71.051539], [42.359704, -71.054519], [42.361534, -71.056819], [42.361263, -71.056994], [42.36049, -71.056995], [42.358757, -71.057201], [42.357428, -71.058565], [42.359295, -71.059255], [42.358056, -71.062171], [42.355298, -71.061249], [42.355519, -71.063037], [42.354894, -71.063514], [42.353717, -71.061676], [42.350941, -71.059567], [42.352211, -71.051172], [42.35199, -71.049726], [42.351671, -71.050269], [42.350902, -71.048805], [42.353667, -71.047121], [42.351052, -71.044959], [42.344315, -71.033918], [42.347795, -71.035964], [42.34898, -71.03588], [42.347902, -71.040407], [42.352749, -71.04333], [42.364857, -71.041248], [42.367158, -71.035936], [42.365172, -71.035967], [42.363961, -71.033209], [42.369812, -71.037911], [42.371161, -71.037188], [42.37337, -71.033036], [42.380792, -71.034935], [42.377891, -71.028298], [42.382756, -71.011693], [42.390256, -71.005456], [42.390466, -70.997084], [42.391786, -70.99031], [42.380215, -70.980137], [42.389507, -70.969384], [42.411181, -70.993747], [42.420244, -70.985934], [42.418321, -70.99748], [42.411785, -71.01537], [42.398247, -71.028327], [42.391309, -71.036726], [42.390284, -71.038526], [42.385546, -71.039316], [42.386461, -71.032794], [42.389192, -71.033749], [42.397588, -71.035674], [42.393843, -71.041015], [42.402568, -71.051453], [42.412279, -71.031525], [42.421213, -71.027113], [42.422264, -71.043219], [42.418307, -71.050739], [42.42069, -71.055953], [42.407436, -71.062128], [42.403792, -71.058992], [42.398809, -71.061206], [42.397236, -71.072007], [42.400829, -71.112241], [42.429978, -71.203921], [42.410941, -71.168458], [42.388907, -71.133098], [42.396589, -71.122704], [42.38859, -71.119303], [42.388412, -71.119219], [42.383988, -71.110771], [42.382131, -71.102659], [42.382238, -71.102512], [42.380957, -71.097894], [42.380072, -71.096887], [42.381759, -71.093444], [42.379731, -71.094916], [42.377355, -71.094764], [42.383573, -71.112746], [42.378452, -71.115739], [42.378275, -71.114496], [42.376696, -71.115952], [42.374259, -71.110851], [42.375457, -71.119379], [42.373491, -71.118959], [42.373266, -71.120839], [42.363221, -71.128473], [42.364024, -71.1088], [42.36265, -71.10141], [42.363685, -71.101083], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b15de6f1803021c5823f9f1aca6825f0 = L.circleMarker(\n [42.365054, -71.053931],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_72099332ad8c2e78d697336f52f90238 = L.circleMarker(\n [42.366918, -71.056164],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_313d7beb606873db7c507d07cb36f67d = L.circleMarker(\n [42.368861, -71.055561],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_0dd9242f067518621d6756a5d61fe657 = L.circleMarker(\n [42.365968, -71.062507],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_2b86d619f00bd033f279585cfb6a1b15 = L.circleMarker(\n [42.358851, -71.064277],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_893789be8e3f42d409a261f1be5e8b1b = L.circleMarker(\n [42.367607, -71.08097],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b55ce69509e527d751d07d9b7f963d10 = L.circleMarker(\n [42.369473, -71.075628],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_f218ce0b5c02aaba7483bc34182187a4 = L.circleMarker(\n [42.374142, -71.063105],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_195d3a61a158680c4e26ec5d6dc24119 = L.circleMarker(\n [42.380436, -71.060948],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_aa666e1d8f5de3a445e086aa569dda95 = L.circleMarker(\n [42.376391, -71.060753],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_173784dff14a37b2832bf2f7aba550af = L.circleMarker(\n [42.376178, -71.060933],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_ff3327e9bc802063feafbe555aed910a = L.circleMarker(\n [42.374119, -71.055588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_de7074a6ac55570017dc9b0f2862e96b = L.circleMarker(\n [42.369195, -71.061735],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_69731fed4fc5cfb004ed5425e1846f91 = L.circleMarker(\n [42.371832, -71.065634],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_9dca5183b09bf01fcf9a44236eedc76b = L.circleMarker(\n [42.369868, -71.06828],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_56a1512eaf4dd85390914af01fe31fb4 = L.circleMarker(\n [42.364032, -71.055569],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_2632e8bf24a290b88634e00f8e0a3b1c = L.circleMarker(\n [42.365251, -71.055582],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_5f82a04ce1ce0d8f449e17aa83dc5d24 = L.circleMarker(\n [42.360949, -71.051539],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b6e97e9e6d10b1d1106e89aea40ba9d1 = L.circleMarker(\n [42.359704, -71.054519],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_a0ad028771ae04c03289418ed1c24943 = L.circleMarker(\n [42.361534, -71.056819],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_46a6c11ec02fe0df28c4625a58a08a28 = L.circleMarker(\n [42.361263, -71.056994],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_326f7e550ca721946bb1e4e852992a5b = L.circleMarker(\n [42.36049, -71.056995],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_34599f276326b8904a0e8f0578e4e6fc = L.circleMarker(\n [42.358757, -71.057201],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_0dc8bf6ef1dadc609cc7bfe51abe82ef = L.circleMarker(\n [42.357428, -71.058565],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_5de2ff9311580f3e34ebadb3548bba35 = L.circleMarker(\n [42.359295, -71.059255],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_384799d1485a7de22f94826de3999706 = L.circleMarker(\n [42.358056, -71.062171],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_f1554eb1e4fca200756a6f4a17021c6d = L.circleMarker(\n [42.355298, -71.061249],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_77b4c865d737f2ec775896f39bd0922e = L.circleMarker(\n [42.355519, -71.063037],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_86c71e83074bab85ceba612db783ff4a = L.circleMarker(\n [42.354894, -71.063514],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_db53ce28994b47f5de398b2ba399cf48 = L.circleMarker(\n [42.353717, -71.061676],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_f895527bf9160ed6fe06e60927bc6729 = L.circleMarker(\n [42.350941, -71.059567],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8b7a71dd0fce4913270ccfc091761ff5 = L.circleMarker(\n [42.352211, -71.051172],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_1d2279ca92fdc4f13be8bff6f3c359c5 = L.circleMarker(\n [42.35199, -71.049726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8381f49992bb6ee71e622dc49f2a1924 = L.circleMarker(\n [42.351671, -71.050269],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_a0bbae814488944d789b67060cd44814 = L.circleMarker(\n [42.350902, -71.048805],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_61fc98c972234813198652cd7b9a8767 = L.circleMarker(\n [42.353667, -71.047121],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_456ebfe6f7197390686b16458ccef75c = L.circleMarker(\n [42.351052, -71.044959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_085288483bad5d5b025a68f95dfb48be = L.circleMarker(\n [42.344315, -71.033918],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_a1c34b2e75438d68b673f90c501fbaf0 = L.circleMarker(\n [42.347795, -71.035964],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_162fbd56ce3d6409a9ab29b66b40b50a = L.circleMarker(\n [42.34898, -71.03588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_3911441c2245b9276266500d8d35a04c = L.circleMarker(\n [42.347902, -71.040407],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e9f5b13d506e93e219f714d81837d694 = L.circleMarker(\n [42.352749, -71.04333],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_334761e6dd95fdac4629fb48b092c39f = L.circleMarker(\n [42.364857, -71.041248],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_bf63da93a4608d0641a0b10791ab352d = L.circleMarker(\n [42.367158, -71.035936],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_4514c33fda933e249b99b8479807a303 = L.circleMarker(\n [42.365172, -71.035967],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_2c7bca65c5cd1c025cc2bba251eac347 = L.circleMarker(\n [42.363961, -71.033209],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e186e1fa061699306f2c86095ba79f53 = L.circleMarker(\n [42.369812, -71.037911],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_f1292b19ea9edff03ce1ff78c837adfd = L.circleMarker(\n [42.371161, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_48a0ecd8202ab39a6df730d524778f89 = L.circleMarker(\n [42.37337, -71.033036],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b6eca0ff070682326762677ad5127cc7 = L.circleMarker(\n [42.380792, -71.034935],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_32e2933594fcb3414f856faae9fd88ea = L.circleMarker(\n [42.377891, -71.028298],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_dd5540b2b37a4b5136fd44bbd665c1d9 = L.circleMarker(\n [42.382756, -71.011693],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e3486ce0ec324e7e86866e39cfb3db76 = L.circleMarker(\n [42.390256, -71.005456],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b1f9e638f4d938e3890c861c6e01904a = L.circleMarker(\n [42.390466, -70.997084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8074034f2c1acc9cae98fb0b10694a1a = L.circleMarker(\n [42.391786, -70.99031],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_0b00663dee36968f0e292b5e31e1f1d3 = L.circleMarker(\n [42.380215, -70.980137],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_0bd57addfa1ad4eddfd85e0d9b02bd29 = L.circleMarker(\n [42.389507, -70.969384],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_03575d25577804a708cccbd7f48436de = L.circleMarker(\n [42.411181, -70.993747],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_08677e8b119b0d5a451815798f366180 = L.circleMarker(\n [42.420244, -70.985934],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_1b93077808f9072d45bfd22c64c11ae5 = L.circleMarker(\n [42.418321, -70.99748],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_72e27c829b6d99568e1034a561c8b5cb = L.circleMarker(\n [42.411785, -71.01537],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_022d042d82c3b7511e25407e718cf99b = L.circleMarker(\n [42.398247, -71.028327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_eea80c5f2a0544f69e4e75a18455b083 = L.circleMarker(\n [42.391309, -71.036726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_1d58035d6aba8a67c91e69bf945cd352 = L.circleMarker(\n [42.390284, -71.038526],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8a052738b08485621d4a3e2f6bcc3bbe = L.circleMarker(\n [42.385546, -71.039316],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_abc9f510e2fbfd90c54b33030424fbaf = L.circleMarker(\n [42.386461, -71.032794],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_1d24ca3d9f3ebdf007307ffbdaf9ba5b = L.circleMarker(\n [42.389192, -71.033749],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_98624c5b90226f81d1b67a63e8f44b22 = L.circleMarker(\n [42.397588, -71.035674],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_db90352ace1bdc413103fcbd0602c74e = L.circleMarker(\n [42.393843, -71.041015],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_9ff3bd95c30621bbcfeba81668197b1e = L.circleMarker(\n [42.402568, -71.051453],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e73e27697fea73ad0b2f9daaf8bfd8b0 = L.circleMarker(\n [42.412279, -71.031525],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_610124197cc137aed3beb6ef12572dcd = L.circleMarker(\n [42.421213, -71.027113],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_809408cc5948e4b64da7f783f782bcd9 = L.circleMarker(\n [42.422264, -71.043219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_9955a2fd7404c5234ef7acd33936d9f2 = L.circleMarker(\n [42.418307, -71.050739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_cd703acf904bd2b75b48f52e65e32f56 = L.circleMarker(\n [42.42069, -71.055953],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_be5e684720ac090c5331b5d9cd76a659 = L.circleMarker(\n [42.407436, -71.062128],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_6456e888b417760905b07bf1e0813e23 = L.circleMarker(\n [42.403792, -71.058992],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_df88f2de5c3eaf2caf71ec9d4c224520 = L.circleMarker(\n [42.398809, -71.061206],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_77fce936bf6d33530a0d6c669bdb014a = L.circleMarker(\n [42.397236, -71.072007],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e3ca9de99c5e8ac2db596f0168c2193c = L.circleMarker(\n [42.400829, -71.112241],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_77de7ea4aa25e6f0fbd0df565fbbd698 = L.circleMarker(\n [42.429978, -71.203921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e40b4ae59979843814d686cbaa33d52b = L.circleMarker(\n [42.410941, -71.168458],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_0ae8849a6e90bed501bde0f47e772e8d = L.circleMarker(\n [42.388907, -71.133098],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_961d69b4e8567099b9e1ed17814813be = L.circleMarker(\n [42.396589, -71.122704],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_715f39a1922b10b1e5dd75d440f7ac8b = L.circleMarker(\n [42.38859, -71.119303],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_903004e6679c4d4096cbd9eea63c346c = L.circleMarker(\n [42.388412, -71.119219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_67bd18ae782da446dbaf3f79ef684e62 = L.circleMarker(\n [42.383988, -71.110771],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_7ef7bb6fc3df03c8040a89f67c6fb5aa = L.circleMarker(\n [42.382131, -71.102659],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_02219761f521559a124e8d5e23fdcf65 = L.circleMarker(\n [42.382238, -71.102512],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8a82cf2b0d9688c0bbaddeb46aabb1db = L.circleMarker(\n [42.380957, -71.097894],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_584ae00e40369bc3944b553070933e7b = L.circleMarker(\n [42.380072, -71.096887],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_252898db6380d8d5b7159ac389ead24b = L.circleMarker(\n [42.381759, -71.093444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_094555d3d70faaab5dea333f88a7411d = L.circleMarker(\n [42.379731, -71.094916],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_a3b3576cda7bf6e810b066f9867f06f3 = L.circleMarker(\n [42.377355, -71.094764],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e809ffd50bfbf9ce017182de6649aedc = L.circleMarker(\n [42.383573, -71.112746],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_94053464e8a1644ef0d4feadaa409a32 = L.circleMarker(\n [42.378452, -71.115739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_6a395268a8e22664d02e98439a6ed1ce = L.circleMarker(\n [42.378275, -71.114496],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_0c5f909167bc29414fb5275ec75029a9 = L.circleMarker(\n [42.376696, -71.115952],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_cff8e49ae402ab3679e79c1952289428 = L.circleMarker(\n [42.374259, -71.110851],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_fbb87752a7114c0db718458d6e170e62 = L.circleMarker(\n [42.375457, -71.119379],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_2fd13f7eb4782b7cecec88e5a557bfdd = L.circleMarker(\n [42.373491, -71.118959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_9fa104b97f5e6066692fb8e095e8f925 = L.circleMarker(\n [42.373266, -71.120839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_045ce274ef37ff338398ced8e4c14196 = L.circleMarker(\n [42.363221, -71.128473],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_98bffec3d7231883780b40019690daf1 = L.circleMarker(\n [42.364024, -71.1088],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_091473a20fd03013873b0745602782f5 = L.circleMarker(\n [42.36265, -71.10141],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e3c5b3047bc9064f734d1dbfbdb25547 = L.circleMarker(\n [42.363685, -71.101083],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_ce428c5648d0492a9be12826dd3d714a = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var poly_line_a665cd7c98e559c5717d87195ac63b64 = L.polyline(\n [[42.351001, -71.045001], [42.338284, -71.013043], [42.338284, -71.013043], [42.3359, -71.023658], [42.329187, -71.035189], [42.325624, -71.049204], [42.327134, -71.066844], [42.324934, -71.06221], [42.316288, -71.037188], [42.315966, -71.034107], [42.316292, -71.045242], [42.274385, -71.024029], [42.27938, -71.014026], [42.276371, -71.009534], [42.245312, -71.000444], [42.207533, -71.001295], [42.23913, -71.003762], [42.25784, -71.02898], [42.285832, -71.063084], [42.284476, -71.063921], [42.296172, -71.087449], [42.331874, -71.125847], [42.33162, -71.155413], [42.324682, -71.16198], [42.314504, -71.227365], [42.313798, -71.359917], [42.361942, -71.18542], [42.341017, -71.162549], [42.343387, -71.142763], [42.349667, -71.146009], [42.350083, -71.146124], [42.356842, -71.143863], [42.352585, -71.131464], [42.352999, -71.130896], [42.351932, -71.124132], [42.342619, -71.121734], [42.351083, -71.106096], [42.336, -71.112246], [42.336448, -71.10963], [42.338007, -71.099284], [42.332401, -71.100092], [42.332009, -71.098267], [42.33047, -71.099348], [42.325354, -71.09454], [42.329829, -71.090904], [42.34194, -71.083465], [42.34085, -71.071196], [42.348915, -71.072038], [42.349993, -71.067854], [42.352445, -71.066839], [42.352314, -71.067311], [42.353792, -71.068086], [42.356682, -71.066568], [42.357529, -71.069242], [42.356537, -71.075414], [42.361529, -71.090578], [42.3614, -71.101475], [42.362555, -71.096306], [42.349997, -71.085166], [42.348977, -71.091358], [42.346361, -71.089677], [42.344689, -71.096959], [42.342001, -71.095003], [42.341231, -71.094327], [42.339096, -71.093834], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_1bee88059f9edbc337bd6d3a4547d31d = L.circleMarker(\n [42.351001, -71.045001],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b0170436f38b7ae2219e491dd6102a1f = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8670ee9ca337b6be0a7f30281d2ebe74 = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_ac89f6314a5e68060110b78a77b13eee = L.circleMarker(\n [42.3359, -71.023658],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_5bd6f2923820c8864b26300f9d923aef = L.circleMarker(\n [42.329187, -71.035189],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_a3feb3c2f86b760919b30e938800a198 = L.circleMarker(\n [42.325624, -71.049204],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e78d24101f8a956d8a5997c8be48c3bf = L.circleMarker(\n [42.327134, -71.066844],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_fdeb72eab8f6d195f8c50692019d0691 = L.circleMarker(\n [42.324934, -71.06221],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_267a074d13b7ccab1798cd951a1c7c80 = L.circleMarker(\n [42.316288, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e600559f4a822c4f55d3467053418c04 = L.circleMarker(\n [42.315966, -71.034107],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_d6ccdb0f2abe4811d38aa4929462e56c = L.circleMarker(\n [42.316292, -71.045242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b2593e6c2b5e10b1c6024cea46309a0d = L.circleMarker(\n [42.274385, -71.024029],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_6f9473d2678b79a67e656deef3b04797 = L.circleMarker(\n [42.27938, -71.014026],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_313081dea3a65ad12f5f18b999652485 = L.circleMarker(\n [42.276371, -71.009534],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_f87fd58f7652e19b20377fd4c411ae0b = L.circleMarker(\n [42.245312, -71.000444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8ce011d4ba2c609f0202f81dfe3eef52 = L.circleMarker(\n [42.207533, -71.001295],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_749338e086455e6d15524b09113f022f = L.circleMarker(\n [42.23913, -71.003762],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_7b5cbeeca012a1fe6b6172b28247ea11 = L.circleMarker(\n [42.25784, -71.02898],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_ec86ab24b545485dbdc3bed8bff66ff8 = L.circleMarker(\n [42.285832, -71.063084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_1446737ff39e5babfd6b82959090047a = L.circleMarker(\n [42.284476, -71.063921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_fcd90559064bb4154755c5184e3a668e = L.circleMarker(\n [42.296172, -71.087449],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_5519b5bba508ed835bc80511105631c3 = L.circleMarker(\n [42.331874, -71.125847],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_9e130e608014899fe4cfc311fe3be3e3 = L.circleMarker(\n [42.33162, -71.155413],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8b03a0b12dfa341d188385c5e8844b7c = L.circleMarker(\n [42.324682, -71.16198],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b491cc839de5f0d9d3eb08f3bfd8cd5c = L.circleMarker(\n [42.314504, -71.227365],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_1b1f0c4b7a2454774975556924d93439 = L.circleMarker(\n [42.313798, -71.359917],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_5c6bee7747d8b74b4b5e6624ec0505ef = L.circleMarker(\n [42.361942, -71.18542],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_9b14107fd6295b97caaba339b9e704b9 = L.circleMarker(\n [42.341017, -71.162549],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b0dd6adf900b9d9b6937cf238f19c5bd = L.circleMarker(\n [42.343387, -71.142763],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_21cb05e0e92ecaa762bc261308941a19 = L.circleMarker(\n [42.349667, -71.146009],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_14999086dc38ad0fddfde45199b547c4 = L.circleMarker(\n [42.350083, -71.146124],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_d2468bf81e74f45073ff7a32da5c0999 = L.circleMarker(\n [42.356842, -71.143863],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e3073e274643b6b24a5cfc9daa4c0c97 = L.circleMarker(\n [42.352585, -71.131464],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_ca9eb5d7b013d6cedac52480eb2f5917 = L.circleMarker(\n [42.352999, -71.130896],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_c9cc28b216223c08e474ba4f974536d3 = L.circleMarker(\n [42.351932, -71.124132],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e156be34069d2e1bf7886f64706f75ab = L.circleMarker(\n [42.342619, -71.121734],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_6cb4f081f6cab631937dcbb3d267808c = L.circleMarker(\n [42.351083, -71.106096],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_dc4d58879ca0f1ea155aa653e7746ce2 = L.circleMarker(\n [42.336, -71.112246],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_15aaa3468d29309e4c1b8bbdd3dc4c8e = L.circleMarker(\n [42.336448, -71.10963],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e4080b8c1d05fe088f29f5fb9055d36f = L.circleMarker(\n [42.338007, -71.099284],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_3283b55fd8cfacef4212f8284c841523 = L.circleMarker(\n [42.332401, -71.100092],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_65b981a5b23593350f8b8898ae3cc6fe = L.circleMarker(\n [42.332009, -71.098267],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b3a7de24347550f2ff1c418a6cdd31a2 = L.circleMarker(\n [42.33047, -71.099348],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_28b85452c1d79fc632531db99dcef6c8 = L.circleMarker(\n [42.325354, -71.09454],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_4d395714bca0a48ed091bc8ffce4fe3f = L.circleMarker(\n [42.329829, -71.090904],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_0accb80e59085a1441df2dc1af72a1fa = L.circleMarker(\n [42.34194, -71.083465],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_f43b28edec788e712066d839323c58b4 = L.circleMarker(\n [42.34085, -71.071196],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_575c5e53f397c5a43a3d54dae54c47dd = L.circleMarker(\n [42.348915, -71.072038],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_7116aec5c53e6ebfcb08992f06638968 = L.circleMarker(\n [42.349993, -71.067854],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_039cf81fd19b27d37fd5dbfc0fcc8eae = L.circleMarker(\n [42.352445, -71.066839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e7d30c2129779292c9327d1c3c5dde72 = L.circleMarker(\n [42.352314, -71.067311],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_500b071571bcad1825df249ddfcae815 = L.circleMarker(\n [42.353792, -71.068086],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_dde2e570f1e4c8ec13fac4a3137146b4 = L.circleMarker(\n [42.356682, -71.066568],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_8f050b480dbc3da74e0f71677befad24 = L.circleMarker(\n [42.357529, -71.069242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_817ef2378607f70da7251fc867362660 = L.circleMarker(\n [42.356537, -71.075414],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_e537e70fcf8238f31997b69da2afb73a = L.circleMarker(\n [42.361529, -71.090578],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_608466affe10c791c6f25cf818d81969 = L.circleMarker(\n [42.3614, -71.101475],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_66f5b0916f650766dac64695e95fd968 = L.circleMarker(\n [42.362555, -71.096306],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_405d2f491527bcd571c1876d82acb1b1 = L.circleMarker(\n [42.349997, -71.085166],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_61cf98ee58c033ce61eeddd7d1e34245 = L.circleMarker(\n [42.348977, -71.091358],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_5e1f37abf61ca53ead8becbacac6f6b4 = L.circleMarker(\n [42.346361, -71.089677],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_b41ab0308859b46e00d3bb16908671c2 = L.circleMarker(\n [42.344689, -71.096959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_9536da74347db2e9e2b834fd35296da5 = L.circleMarker(\n [42.342001, -71.095003],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_c823cef60932a0383d8ddebbc6a685a9 = L.circleMarker(\n [42.341231, -71.094327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_ce267150ea725a8dc413523393a74529 = L.circleMarker(\n [42.339096, -71.093834],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n \n var circle_marker_d11294d2c6b8f4bd2b3ece7939dff2a0 = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n \n&lt;/script&gt;\n&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
+ "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;html&gt;\n",
+ "&lt;head&gt;\n",
+ " \n",
+ " &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
+ " \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.9.3/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://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
+ " &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
+ " \n",
+ " &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
+ " initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
+ " &lt;style&gt;\n",
+ " #map_5a1967516626ecbf1f03b634f55bb869 {\n",
+ " position: relative;\n",
+ " width: 100.0%;\n",
+ " height: 100.0%;\n",
+ " left: 0.0%;\n",
+ " top: 0.0%;\n",
+ " }\n",
+ " .leaflet-container { font-size: 1rem; }\n",
+ " &lt;/style&gt;\n",
+ " \n",
+ "&lt;/head&gt;\n",
+ "&lt;body&gt;\n",
+ " \n",
+ " \n",
+ " &lt;div class=&quot;folium-map&quot; id=&quot;map_5a1967516626ecbf1f03b634f55bb869&quot; &gt;&lt;/div&gt;\n",
+ " \n",
+ "&lt;/body&gt;\n",
+ "&lt;script&gt;\n",
+ " \n",
+ " \n",
+ " var map_5a1967516626ecbf1f03b634f55bb869 = L.map(\n",
+ " &quot;map_5a1967516626ecbf1f03b634f55bb869&quot;,\n",
+ " {\n",
+ " center: [42.35900213872833, -71.07218852023122],\n",
+ " crs: L.CRS.EPSG3857,\n",
+ " zoom: 11,\n",
+ " zoomControl: true,\n",
+ " preferCanvas: false,\n",
+ " }\n",
+ " );\n",
+ "\n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " var tile_layer_1c94bb14aece3a0b64db6974539ef8b7 = L.tileLayer(\n",
+ " &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n",
+ " {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\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_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var poly_line_92ffa92892583897807a1ed2e4fa6fdc = L.polyline(\n",
+ " [[42.365054, -71.053931], [42.366918, -71.056164], [42.368861, -71.055561], [42.365968, -71.062507], [42.358851, -71.064277], [42.367607, -71.08097], [42.369473, -71.075628], [42.374142, -71.063105], [42.380436, -71.060948], [42.376391, -71.060753], [42.376178, -71.060933], [42.374119, -71.055588], [42.369195, -71.061735], [42.371832, -71.065634], [42.369868, -71.06828], [42.364032, -71.055569], [42.365251, -71.055582], [42.360949, -71.051539], [42.359704, -71.054519], [42.361534, -71.056819], [42.361263, -71.056994], [42.36049, -71.056995], [42.358757, -71.057201], [42.357428, -71.058565], [42.359295, -71.059255], [42.358056, -71.062171], [42.355298, -71.061249], [42.355519, -71.063037], [42.354894, -71.063514], [42.353717, -71.061676], [42.350941, -71.059567], [42.352211, -71.051172], [42.35199, -71.049726], [42.351671, -71.050269], [42.350902, -71.048805], [42.353667, -71.047121], [42.351052, -71.044959], [42.344315, -71.033918], [42.347795, -71.035964], [42.34898, -71.03588], [42.347902, -71.040407], [42.352749, -71.04333], [42.364857, -71.041248], [42.367158, -71.035936], [42.365172, -71.035967], [42.363961, -71.033209], [42.369812, -71.037911], [42.371161, -71.037188], [42.37337, -71.033036], [42.380792, -71.034935], [42.377891, -71.028298], [42.382756, -71.011693], [42.390256, -71.005456], [42.390466, -70.997084], [42.391786, -70.99031], [42.380215, -70.980137], [42.389507, -70.969384], [42.411181, -70.993747], [42.420244, -70.985934], [42.418321, -70.99748], [42.411785, -71.01537], [42.398247, -71.028327], [42.391309, -71.036726], [42.390284, -71.038526], [42.385546, -71.039316], [42.386461, -71.032794], [42.389192, -71.033749], [42.397588, -71.035674], [42.393843, -71.041015], [42.402568, -71.051453], [42.412279, -71.031525], [42.421213, -71.027113], [42.422264, -71.043219], [42.418307, -71.050739], [42.42069, -71.055953], [42.407436, -71.062128], [42.403792, -71.058992], [42.398809, -71.061206], [42.397236, -71.072007], [42.400829, -71.112241], [42.429978, -71.203921], [42.410941, -71.168458], [42.388907, -71.133098], [42.396589, -71.122704], [42.38859, -71.119303], [42.388412, -71.119219], [42.383988, -71.110771], [42.382131, -71.102659], [42.382238, -71.102512], [42.380957, -71.097894], [42.380072, -71.096887], [42.381759, -71.093444], [42.379731, -71.094916], [42.377355, -71.094764], [42.383573, -71.112746], [42.378452, -71.115739], [42.378275, -71.114496], [42.376696, -71.115952], [42.374259, -71.110851], [42.375457, -71.119379], [42.373491, -71.118959], [42.373266, -71.120839], [42.363221, -71.128473], [42.364024, -71.1088], [42.36265, -71.10141], [42.363685, -71.101083], [42.339762, -71.090331]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b15de6f1803021c5823f9f1aca6825f0 = L.circleMarker(\n",
+ " [42.365054, -71.053931],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_72099332ad8c2e78d697336f52f90238 = L.circleMarker(\n",
+ " [42.366918, -71.056164],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_313d7beb606873db7c507d07cb36f67d = L.circleMarker(\n",
+ " [42.368861, -71.055561],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0dd9242f067518621d6756a5d61fe657 = L.circleMarker(\n",
+ " [42.365968, -71.062507],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2b86d619f00bd033f279585cfb6a1b15 = L.circleMarker(\n",
+ " [42.358851, -71.064277],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_893789be8e3f42d409a261f1be5e8b1b = L.circleMarker(\n",
+ " [42.367607, -71.08097],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b55ce69509e527d751d07d9b7f963d10 = L.circleMarker(\n",
+ " [42.369473, -71.075628],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f218ce0b5c02aaba7483bc34182187a4 = L.circleMarker(\n",
+ " [42.374142, -71.063105],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_195d3a61a158680c4e26ec5d6dc24119 = L.circleMarker(\n",
+ " [42.380436, -71.060948],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_aa666e1d8f5de3a445e086aa569dda95 = L.circleMarker(\n",
+ " [42.376391, -71.060753],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_173784dff14a37b2832bf2f7aba550af = L.circleMarker(\n",
+ " [42.376178, -71.060933],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ff3327e9bc802063feafbe555aed910a = L.circleMarker(\n",
+ " [42.374119, -71.055588],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_de7074a6ac55570017dc9b0f2862e96b = L.circleMarker(\n",
+ " [42.369195, -71.061735],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_69731fed4fc5cfb004ed5425e1846f91 = L.circleMarker(\n",
+ " [42.371832, -71.065634],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9dca5183b09bf01fcf9a44236eedc76b = L.circleMarker(\n",
+ " [42.369868, -71.06828],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_56a1512eaf4dd85390914af01fe31fb4 = L.circleMarker(\n",
+ " [42.364032, -71.055569],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2632e8bf24a290b88634e00f8e0a3b1c = L.circleMarker(\n",
+ " [42.365251, -71.055582],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5f82a04ce1ce0d8f449e17aa83dc5d24 = L.circleMarker(\n",
+ " [42.360949, -71.051539],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b6e97e9e6d10b1d1106e89aea40ba9d1 = L.circleMarker(\n",
+ " [42.359704, -71.054519],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a0ad028771ae04c03289418ed1c24943 = L.circleMarker(\n",
+ " [42.361534, -71.056819],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_46a6c11ec02fe0df28c4625a58a08a28 = L.circleMarker(\n",
+ " [42.361263, -71.056994],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_326f7e550ca721946bb1e4e852992a5b = L.circleMarker(\n",
+ " [42.36049, -71.056995],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_34599f276326b8904a0e8f0578e4e6fc = L.circleMarker(\n",
+ " [42.358757, -71.057201],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0dc8bf6ef1dadc609cc7bfe51abe82ef = L.circleMarker(\n",
+ " [42.357428, -71.058565],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5de2ff9311580f3e34ebadb3548bba35 = L.circleMarker(\n",
+ " [42.359295, -71.059255],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_384799d1485a7de22f94826de3999706 = L.circleMarker(\n",
+ " [42.358056, -71.062171],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f1554eb1e4fca200756a6f4a17021c6d = L.circleMarker(\n",
+ " [42.355298, -71.061249],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_77b4c865d737f2ec775896f39bd0922e = L.circleMarker(\n",
+ " [42.355519, -71.063037],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_86c71e83074bab85ceba612db783ff4a = L.circleMarker(\n",
+ " [42.354894, -71.063514],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_db53ce28994b47f5de398b2ba399cf48 = L.circleMarker(\n",
+ " [42.353717, -71.061676],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f895527bf9160ed6fe06e60927bc6729 = L.circleMarker(\n",
+ " [42.350941, -71.059567],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8b7a71dd0fce4913270ccfc091761ff5 = L.circleMarker(\n",
+ " [42.352211, -71.051172],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1d2279ca92fdc4f13be8bff6f3c359c5 = L.circleMarker(\n",
+ " [42.35199, -71.049726],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8381f49992bb6ee71e622dc49f2a1924 = L.circleMarker(\n",
+ " [42.351671, -71.050269],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a0bbae814488944d789b67060cd44814 = L.circleMarker(\n",
+ " [42.350902, -71.048805],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_61fc98c972234813198652cd7b9a8767 = L.circleMarker(\n",
+ " [42.353667, -71.047121],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_456ebfe6f7197390686b16458ccef75c = L.circleMarker(\n",
+ " [42.351052, -71.044959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_085288483bad5d5b025a68f95dfb48be = L.circleMarker(\n",
+ " [42.344315, -71.033918],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a1c34b2e75438d68b673f90c501fbaf0 = L.circleMarker(\n",
+ " [42.347795, -71.035964],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_162fbd56ce3d6409a9ab29b66b40b50a = L.circleMarker(\n",
+ " [42.34898, -71.03588],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3911441c2245b9276266500d8d35a04c = L.circleMarker(\n",
+ " [42.347902, -71.040407],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e9f5b13d506e93e219f714d81837d694 = L.circleMarker(\n",
+ " [42.352749, -71.04333],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_334761e6dd95fdac4629fb48b092c39f = L.circleMarker(\n",
+ " [42.364857, -71.041248],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_bf63da93a4608d0641a0b10791ab352d = L.circleMarker(\n",
+ " [42.367158, -71.035936],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4514c33fda933e249b99b8479807a303 = L.circleMarker(\n",
+ " [42.365172, -71.035967],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2c7bca65c5cd1c025cc2bba251eac347 = L.circleMarker(\n",
+ " [42.363961, -71.033209],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e186e1fa061699306f2c86095ba79f53 = L.circleMarker(\n",
+ " [42.369812, -71.037911],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f1292b19ea9edff03ce1ff78c837adfd = L.circleMarker(\n",
+ " [42.371161, -71.037188],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_48a0ecd8202ab39a6df730d524778f89 = L.circleMarker(\n",
+ " [42.37337, -71.033036],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b6eca0ff070682326762677ad5127cc7 = L.circleMarker(\n",
+ " [42.380792, -71.034935],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_32e2933594fcb3414f856faae9fd88ea = L.circleMarker(\n",
+ " [42.377891, -71.028298],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_dd5540b2b37a4b5136fd44bbd665c1d9 = L.circleMarker(\n",
+ " [42.382756, -71.011693],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e3486ce0ec324e7e86866e39cfb3db76 = L.circleMarker(\n",
+ " [42.390256, -71.005456],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b1f9e638f4d938e3890c861c6e01904a = L.circleMarker(\n",
+ " [42.390466, -70.997084],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8074034f2c1acc9cae98fb0b10694a1a = L.circleMarker(\n",
+ " [42.391786, -70.99031],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0b00663dee36968f0e292b5e31e1f1d3 = L.circleMarker(\n",
+ " [42.380215, -70.980137],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0bd57addfa1ad4eddfd85e0d9b02bd29 = L.circleMarker(\n",
+ " [42.389507, -70.969384],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_03575d25577804a708cccbd7f48436de = L.circleMarker(\n",
+ " [42.411181, -70.993747],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_08677e8b119b0d5a451815798f366180 = L.circleMarker(\n",
+ " [42.420244, -70.985934],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1b93077808f9072d45bfd22c64c11ae5 = L.circleMarker(\n",
+ " [42.418321, -70.99748],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_72e27c829b6d99568e1034a561c8b5cb = L.circleMarker(\n",
+ " [42.411785, -71.01537],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_022d042d82c3b7511e25407e718cf99b = L.circleMarker(\n",
+ " [42.398247, -71.028327],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_eea80c5f2a0544f69e4e75a18455b083 = L.circleMarker(\n",
+ " [42.391309, -71.036726],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1d58035d6aba8a67c91e69bf945cd352 = L.circleMarker(\n",
+ " [42.390284, -71.038526],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8a052738b08485621d4a3e2f6bcc3bbe = L.circleMarker(\n",
+ " [42.385546, -71.039316],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_abc9f510e2fbfd90c54b33030424fbaf = L.circleMarker(\n",
+ " [42.386461, -71.032794],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1d24ca3d9f3ebdf007307ffbdaf9ba5b = L.circleMarker(\n",
+ " [42.389192, -71.033749],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_98624c5b90226f81d1b67a63e8f44b22 = L.circleMarker(\n",
+ " [42.397588, -71.035674],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_db90352ace1bdc413103fcbd0602c74e = L.circleMarker(\n",
+ " [42.393843, -71.041015],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9ff3bd95c30621bbcfeba81668197b1e = L.circleMarker(\n",
+ " [42.402568, -71.051453],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e73e27697fea73ad0b2f9daaf8bfd8b0 = L.circleMarker(\n",
+ " [42.412279, -71.031525],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_610124197cc137aed3beb6ef12572dcd = L.circleMarker(\n",
+ " [42.421213, -71.027113],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_809408cc5948e4b64da7f783f782bcd9 = L.circleMarker(\n",
+ " [42.422264, -71.043219],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9955a2fd7404c5234ef7acd33936d9f2 = L.circleMarker(\n",
+ " [42.418307, -71.050739],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_cd703acf904bd2b75b48f52e65e32f56 = L.circleMarker(\n",
+ " [42.42069, -71.055953],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_be5e684720ac090c5331b5d9cd76a659 = L.circleMarker(\n",
+ " [42.407436, -71.062128],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6456e888b417760905b07bf1e0813e23 = L.circleMarker(\n",
+ " [42.403792, -71.058992],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_df88f2de5c3eaf2caf71ec9d4c224520 = L.circleMarker(\n",
+ " [42.398809, -71.061206],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_77fce936bf6d33530a0d6c669bdb014a = L.circleMarker(\n",
+ " [42.397236, -71.072007],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e3ca9de99c5e8ac2db596f0168c2193c = L.circleMarker(\n",
+ " [42.400829, -71.112241],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_77de7ea4aa25e6f0fbd0df565fbbd698 = L.circleMarker(\n",
+ " [42.429978, -71.203921],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e40b4ae59979843814d686cbaa33d52b = L.circleMarker(\n",
+ " [42.410941, -71.168458],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0ae8849a6e90bed501bde0f47e772e8d = L.circleMarker(\n",
+ " [42.388907, -71.133098],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_961d69b4e8567099b9e1ed17814813be = L.circleMarker(\n",
+ " [42.396589, -71.122704],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_715f39a1922b10b1e5dd75d440f7ac8b = L.circleMarker(\n",
+ " [42.38859, -71.119303],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_903004e6679c4d4096cbd9eea63c346c = L.circleMarker(\n",
+ " [42.388412, -71.119219],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_67bd18ae782da446dbaf3f79ef684e62 = L.circleMarker(\n",
+ " [42.383988, -71.110771],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7ef7bb6fc3df03c8040a89f67c6fb5aa = L.circleMarker(\n",
+ " [42.382131, -71.102659],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_02219761f521559a124e8d5e23fdcf65 = L.circleMarker(\n",
+ " [42.382238, -71.102512],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8a82cf2b0d9688c0bbaddeb46aabb1db = L.circleMarker(\n",
+ " [42.380957, -71.097894],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_584ae00e40369bc3944b553070933e7b = L.circleMarker(\n",
+ " [42.380072, -71.096887],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_252898db6380d8d5b7159ac389ead24b = L.circleMarker(\n",
+ " [42.381759, -71.093444],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_094555d3d70faaab5dea333f88a7411d = L.circleMarker(\n",
+ " [42.379731, -71.094916],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a3b3576cda7bf6e810b066f9867f06f3 = L.circleMarker(\n",
+ " [42.377355, -71.094764],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e809ffd50bfbf9ce017182de6649aedc = L.circleMarker(\n",
+ " [42.383573, -71.112746],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_94053464e8a1644ef0d4feadaa409a32 = L.circleMarker(\n",
+ " [42.378452, -71.115739],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6a395268a8e22664d02e98439a6ed1ce = L.circleMarker(\n",
+ " [42.378275, -71.114496],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0c5f909167bc29414fb5275ec75029a9 = L.circleMarker(\n",
+ " [42.376696, -71.115952],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_cff8e49ae402ab3679e79c1952289428 = L.circleMarker(\n",
+ " [42.374259, -71.110851],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_fbb87752a7114c0db718458d6e170e62 = L.circleMarker(\n",
+ " [42.375457, -71.119379],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2fd13f7eb4782b7cecec88e5a557bfdd = L.circleMarker(\n",
+ " [42.373491, -71.118959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9fa104b97f5e6066692fb8e095e8f925 = L.circleMarker(\n",
+ " [42.373266, -71.120839],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_045ce274ef37ff338398ced8e4c14196 = L.circleMarker(\n",
+ " [42.363221, -71.128473],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_98bffec3d7231883780b40019690daf1 = L.circleMarker(\n",
+ " [42.364024, -71.1088],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_091473a20fd03013873b0745602782f5 = L.circleMarker(\n",
+ " [42.36265, -71.10141],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e3c5b3047bc9064f734d1dbfbdb25547 = L.circleMarker(\n",
+ " [42.363685, -71.101083],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ce428c5648d0492a9be12826dd3d714a = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var poly_line_a665cd7c98e559c5717d87195ac63b64 = L.polyline(\n",
+ " [[42.351001, -71.045001], [42.338284, -71.013043], [42.338284, -71.013043], [42.3359, -71.023658], [42.329187, -71.035189], [42.325624, -71.049204], [42.327134, -71.066844], [42.324934, -71.06221], [42.316288, -71.037188], [42.315966, -71.034107], [42.316292, -71.045242], [42.274385, -71.024029], [42.27938, -71.014026], [42.276371, -71.009534], [42.245312, -71.000444], [42.207533, -71.001295], [42.23913, -71.003762], [42.25784, -71.02898], [42.285832, -71.063084], [42.284476, -71.063921], [42.296172, -71.087449], [42.331874, -71.125847], [42.33162, -71.155413], [42.324682, -71.16198], [42.314504, -71.227365], [42.313798, -71.359917], [42.361942, -71.18542], [42.341017, -71.162549], [42.343387, -71.142763], [42.349667, -71.146009], [42.350083, -71.146124], [42.356842, -71.143863], [42.352585, -71.131464], [42.352999, -71.130896], [42.351932, -71.124132], [42.342619, -71.121734], [42.351083, -71.106096], [42.336, -71.112246], [42.336448, -71.10963], [42.338007, -71.099284], [42.332401, -71.100092], [42.332009, -71.098267], [42.33047, -71.099348], [42.325354, -71.09454], [42.329829, -71.090904], [42.34194, -71.083465], [42.34085, -71.071196], [42.348915, -71.072038], [42.349993, -71.067854], [42.352445, -71.066839], [42.352314, -71.067311], [42.353792, -71.068086], [42.356682, -71.066568], [42.357529, -71.069242], [42.356537, -71.075414], [42.361529, -71.090578], [42.3614, -71.101475], [42.362555, -71.096306], [42.349997, -71.085166], [42.348977, -71.091358], [42.346361, -71.089677], [42.344689, -71.096959], [42.342001, -71.095003], [42.341231, -71.094327], [42.339096, -71.093834], [42.339762, -71.090331]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1bee88059f9edbc337bd6d3a4547d31d = L.circleMarker(\n",
+ " [42.351001, -71.045001],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b0170436f38b7ae2219e491dd6102a1f = L.circleMarker(\n",
+ " [42.338284, -71.013043],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8670ee9ca337b6be0a7f30281d2ebe74 = L.circleMarker(\n",
+ " [42.338284, -71.013043],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ac89f6314a5e68060110b78a77b13eee = L.circleMarker(\n",
+ " [42.3359, -71.023658],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5bd6f2923820c8864b26300f9d923aef = L.circleMarker(\n",
+ " [42.329187, -71.035189],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a3feb3c2f86b760919b30e938800a198 = L.circleMarker(\n",
+ " [42.325624, -71.049204],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e78d24101f8a956d8a5997c8be48c3bf = L.circleMarker(\n",
+ " [42.327134, -71.066844],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_fdeb72eab8f6d195f8c50692019d0691 = L.circleMarker(\n",
+ " [42.324934, -71.06221],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_267a074d13b7ccab1798cd951a1c7c80 = L.circleMarker(\n",
+ " [42.316288, -71.037188],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e600559f4a822c4f55d3467053418c04 = L.circleMarker(\n",
+ " [42.315966, -71.034107],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d6ccdb0f2abe4811d38aa4929462e56c = L.circleMarker(\n",
+ " [42.316292, -71.045242],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b2593e6c2b5e10b1c6024cea46309a0d = L.circleMarker(\n",
+ " [42.274385, -71.024029],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6f9473d2678b79a67e656deef3b04797 = L.circleMarker(\n",
+ " [42.27938, -71.014026],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_313081dea3a65ad12f5f18b999652485 = L.circleMarker(\n",
+ " [42.276371, -71.009534],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f87fd58f7652e19b20377fd4c411ae0b = L.circleMarker(\n",
+ " [42.245312, -71.000444],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8ce011d4ba2c609f0202f81dfe3eef52 = L.circleMarker(\n",
+ " [42.207533, -71.001295],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_749338e086455e6d15524b09113f022f = L.circleMarker(\n",
+ " [42.23913, -71.003762],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7b5cbeeca012a1fe6b6172b28247ea11 = L.circleMarker(\n",
+ " [42.25784, -71.02898],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ec86ab24b545485dbdc3bed8bff66ff8 = L.circleMarker(\n",
+ " [42.285832, -71.063084],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1446737ff39e5babfd6b82959090047a = L.circleMarker(\n",
+ " [42.284476, -71.063921],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_fcd90559064bb4154755c5184e3a668e = L.circleMarker(\n",
+ " [42.296172, -71.087449],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5519b5bba508ed835bc80511105631c3 = L.circleMarker(\n",
+ " [42.331874, -71.125847],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9e130e608014899fe4cfc311fe3be3e3 = L.circleMarker(\n",
+ " [42.33162, -71.155413],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8b03a0b12dfa341d188385c5e8844b7c = L.circleMarker(\n",
+ " [42.324682, -71.16198],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b491cc839de5f0d9d3eb08f3bfd8cd5c = L.circleMarker(\n",
+ " [42.314504, -71.227365],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1b1f0c4b7a2454774975556924d93439 = L.circleMarker(\n",
+ " [42.313798, -71.359917],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5c6bee7747d8b74b4b5e6624ec0505ef = L.circleMarker(\n",
+ " [42.361942, -71.18542],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9b14107fd6295b97caaba339b9e704b9 = L.circleMarker(\n",
+ " [42.341017, -71.162549],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b0dd6adf900b9d9b6937cf238f19c5bd = L.circleMarker(\n",
+ " [42.343387, -71.142763],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_21cb05e0e92ecaa762bc261308941a19 = L.circleMarker(\n",
+ " [42.349667, -71.146009],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_14999086dc38ad0fddfde45199b547c4 = L.circleMarker(\n",
+ " [42.350083, -71.146124],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d2468bf81e74f45073ff7a32da5c0999 = L.circleMarker(\n",
+ " [42.356842, -71.143863],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e3073e274643b6b24a5cfc9daa4c0c97 = L.circleMarker(\n",
+ " [42.352585, -71.131464],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ca9eb5d7b013d6cedac52480eb2f5917 = L.circleMarker(\n",
+ " [42.352999, -71.130896],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c9cc28b216223c08e474ba4f974536d3 = L.circleMarker(\n",
+ " [42.351932, -71.124132],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e156be34069d2e1bf7886f64706f75ab = L.circleMarker(\n",
+ " [42.342619, -71.121734],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6cb4f081f6cab631937dcbb3d267808c = L.circleMarker(\n",
+ " [42.351083, -71.106096],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_dc4d58879ca0f1ea155aa653e7746ce2 = L.circleMarker(\n",
+ " [42.336, -71.112246],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_15aaa3468d29309e4c1b8bbdd3dc4c8e = L.circleMarker(\n",
+ " [42.336448, -71.10963],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e4080b8c1d05fe088f29f5fb9055d36f = L.circleMarker(\n",
+ " [42.338007, -71.099284],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3283b55fd8cfacef4212f8284c841523 = L.circleMarker(\n",
+ " [42.332401, -71.100092],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_65b981a5b23593350f8b8898ae3cc6fe = L.circleMarker(\n",
+ " [42.332009, -71.098267],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b3a7de24347550f2ff1c418a6cdd31a2 = L.circleMarker(\n",
+ " [42.33047, -71.099348],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_28b85452c1d79fc632531db99dcef6c8 = L.circleMarker(\n",
+ " [42.325354, -71.09454],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4d395714bca0a48ed091bc8ffce4fe3f = L.circleMarker(\n",
+ " [42.329829, -71.090904],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0accb80e59085a1441df2dc1af72a1fa = L.circleMarker(\n",
+ " [42.34194, -71.083465],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f43b28edec788e712066d839323c58b4 = L.circleMarker(\n",
+ " [42.34085, -71.071196],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_575c5e53f397c5a43a3d54dae54c47dd = L.circleMarker(\n",
+ " [42.348915, -71.072038],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7116aec5c53e6ebfcb08992f06638968 = L.circleMarker(\n",
+ " [42.349993, -71.067854],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_039cf81fd19b27d37fd5dbfc0fcc8eae = L.circleMarker(\n",
+ " [42.352445, -71.066839],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e7d30c2129779292c9327d1c3c5dde72 = L.circleMarker(\n",
+ " [42.352314, -71.067311],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_500b071571bcad1825df249ddfcae815 = L.circleMarker(\n",
+ " [42.353792, -71.068086],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_dde2e570f1e4c8ec13fac4a3137146b4 = L.circleMarker(\n",
+ " [42.356682, -71.066568],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8f050b480dbc3da74e0f71677befad24 = L.circleMarker(\n",
+ " [42.357529, -71.069242],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_817ef2378607f70da7251fc867362660 = L.circleMarker(\n",
+ " [42.356537, -71.075414],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e537e70fcf8238f31997b69da2afb73a = L.circleMarker(\n",
+ " [42.361529, -71.090578],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_608466affe10c791c6f25cf818d81969 = L.circleMarker(\n",
+ " [42.3614, -71.101475],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_66f5b0916f650766dac64695e95fd968 = L.circleMarker(\n",
+ " [42.362555, -71.096306],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_405d2f491527bcd571c1876d82acb1b1 = L.circleMarker(\n",
+ " [42.349997, -71.085166],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_61cf98ee58c033ce61eeddd7d1e34245 = L.circleMarker(\n",
+ " [42.348977, -71.091358],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5e1f37abf61ca53ead8becbacac6f6b4 = L.circleMarker(\n",
+ " [42.346361, -71.089677],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b41ab0308859b46e00d3bb16908671c2 = L.circleMarker(\n",
+ " [42.344689, -71.096959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9536da74347db2e9e2b834fd35296da5 = L.circleMarker(\n",
+ " [42.342001, -71.095003],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c823cef60932a0383d8ddebbc6a685a9 = L.circleMarker(\n",
+ " [42.341231, -71.094327],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ce267150ea725a8dc413523393a74529 = L.circleMarker(\n",
+ " [42.339096, -71.093834],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d11294d2c6b8f4bd2b3ece7939dff2a0 = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_5a1967516626ecbf1f03b634f55bb869);\n",
+ " \n",
+ "&lt;/script&gt;\n",
+ "&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
+ ],
+ "text/plain": [
+ "<folium.folium.Map at 0x14fd8be10>"
+ ]
},
"execution_count": 13,
"metadata": {},
@@ -328,29 +1770,26 @@
"\n",
"# Display the map\n",
"m"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:06:07.316817Z",
- "start_time": "2023-11-07T23:06:07.221200Z"
- }
- },
- "id": "80fd847da2833913"
+ ]
},
{
"cell_type": "markdown",
+ "id": "a7b562f75f7e0813",
+ "metadata": {},
"source": [
"## Results"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "a7b562f75f7e0813"
+ ]
},
{
"cell_type": "code",
"execution_count": 14,
+ "id": "f53c97acec1c2fc4",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:06:07.318988Z",
+ "start_time": "2023-11-07T23:06:07.297230Z"
+ }
+ },
"outputs": [
{
"name": "stdout",
@@ -367,19 +1806,18 @@
"route_2_waypoints = len(route_2_coordinates)\n",
"print(\"Route 1 has {} waypoints\".format(route_1_waypoints))\n",
"print(\"Route 2 has {} waypoints\".format(route_2_waypoints))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:06:07.318988Z",
- "start_time": "2023-11-07T23:06:07.297230Z"
- }
- },
- "id": "f53c97acec1c2fc4"
+ ]
},
{
"cell_type": "code",
"execution_count": 15,
+ "id": "a3ec09dfb5cbb5b3",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:06:09.735945Z",
+ "start_time": "2023-11-07T23:06:07.299647Z"
+ }
+ },
"outputs": [
{
"name": "stdout",
@@ -397,29 +1835,26 @@
"trip_hrs_2 = utils.get_trip_time(route_2, route_2_waypoints, utils.list_to_string([centroids[1]]),\n",
" northeastern_coordinate)\n",
"print(\"The trip will take {} hours\".format(trip_hrs_2))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:06:09.735945Z",
- "start_time": "2023-11-07T23:06:07.299647Z"
- }
- },
- "id": "a3ec09dfb5cbb5b3"
+ ]
},
{
"cell_type": "markdown",
+ "id": "de7b5856172d213c",
+ "metadata": {},
"source": [
"# 3 Routes"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "de7b5856172d213c"
+ ]
},
{
"cell_type": "code",
"execution_count": 16,
+ "id": "bb6e00857e8175c0",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:07:36.195528Z",
+ "start_time": "2023-11-07T23:06:09.732162Z"
+ }
+ },
"outputs": [
{
"name": "stderr",
@@ -441,29 +1876,26 @@
"route_1_coordinates = routes[0]\n",
"route_2_coordinates = routes[1]\n",
"route_3_coordinates = routes[2]"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:07:36.195528Z",
- "start_time": "2023-11-07T23:06:09.732162Z"
- }
- },
- "id": "bb6e00857e8175c0"
+ ]
},
{
"cell_type": "markdown",
+ "id": "19afb4f687b37383",
+ "metadata": {},
"source": [
"## Create JSON"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "19afb4f687b37383"
+ ]
},
{
"cell_type": "code",
"execution_count": 17,
+ "id": "e886e061f86a2118",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:07:36.198703Z",
+ "start_time": "2023-11-07T23:07:36.194798Z"
+ }
+ },
"outputs": [],
"source": [
"# Create a JSON request for the API\n",
@@ -471,38 +1903,36 @@
"route_1 = utils.list_to_string(route_1_coordinates)\n",
"route_2 = utils.list_to_string(route_2_coordinates)\n",
"route_3 = utils.list_to_string(route_3_coordinates)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:07:36.198703Z",
- "start_time": "2023-11-07T23:07:36.194798Z"
- }
- },
- "id": "e886e061f86a2118"
+ ]
},
{
"cell_type": "code",
"execution_count": 18,
- "outputs": [],
- "source": [
- "# Create a dataframe from the JSON\n",
- "df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate)\n",
- "df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate)\n",
- "df3 = utils.create_json_df(route_3, utils.list_to_string([centroids[2]]), northeastern_coordinate)"
- ],
+ "id": "23e4682fe9e30631",
"metadata": {
- "collapsed": false,
"ExecuteTime": {
"end_time": "2023-11-07T23:07:38.315154Z",
"start_time": "2023-11-07T23:07:36.199174Z"
}
},
- "id": "23e4682fe9e30631"
+ "outputs": [],
+ "source": [
+ "# Create a dataframe from the JSON\n",
+ "df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate)\n",
+ "df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate)\n",
+ "df3 = utils.create_json_df(route_3, utils.list_to_string([centroids[2]]), northeastern_coordinate)"
+ ]
},
{
"cell_type": "code",
"execution_count": 19,
+ "id": "c3a5c5d6f3ac46c0",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:07:38.325567Z",
+ "start_time": "2023-11-07T23:07:38.320173Z"
+ }
+ },
"outputs": [],
"source": [
"# Add columns for the route number\n",
@@ -512,24 +1942,244 @@
"\n",
"# Concatenate the three dataframes\n",
"df = pd.concat([df1, df2, df3], ignore_index=True)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:07:38.325567Z",
- "start_time": "2023-11-07T23:07:38.320173Z"
- }
- },
- "id": "c3a5c5d6f3ac46c0"
+ ]
},
{
"cell_type": "code",
"execution_count": 20,
+ "id": "17a8cc8fed5450a6",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:07:38.333653Z",
+ "start_time": "2023-11-07T23:07:38.322616Z"
+ }
+ },
"outputs": [
{
"data": {
- "text/plain": " waypoint_index trips_index \\\n0 0 0 \n1 1 0 \n2 2 0 \n3 3 0 \n4 4 0 \n.. ... ... \n170 49 0 \n171 50 0 \n172 51 0 \n173 52 0 \n174 53 0 \n\n hint distance \\\n0 1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN... 8.262982 \n1 G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8... 2.602121 \n2 gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR... 15.458439 \n3 HpwsgCKcLIAAAAAAEgAAAAAAAAAAAAAAAAAAACg870AAAA... 39.201677 \n4 LRUugHAVLoA1AAAA7wEAAKAAAADqAAAAYZa9QBEBXEIOWo... 1.865658 \n.. ... ... \n170 7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA... 7.478611 \n171 bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx... 8.340476 \n172 MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh... 11.504463 \n173 k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e... 36.240351 \n174 DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA... 0.236958 \n\n name location lat lon \\\n0 [-71.053931, 42.365054] -71.053931 42.365054 \n1 [-71.056164, 42.366918] -71.056164 42.366918 \n2 [-71.055561, 42.368861] -71.055561 42.368861 \n3 [-71.062507, 42.365968] -71.062507 42.365968 \n4 [-71.061735, 42.369195] -71.061735 42.369195 \n.. ... ... ... ... \n170 [-71.096959, 42.344689] -71.096959 42.344689 \n171 [-71.095003, 42.342001] -71.095003 42.342001 \n172 [-71.094327, 42.341231] -71.094327 42.341231 \n173 [-71.093834, 42.339096] -71.093834 42.339096 \n174 Northeastern (Inbound) [-71.090331, 42.339762] -71.090331 42.339762 \n\n route \n0 1 \n1 1 \n2 1 \n3 1 \n4 1 \n.. ... \n170 3 \n171 3 \n172 3 \n173 3 \n174 3 \n\n[175 rows x 9 columns]",
- "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>waypoint_index</th>\n <th>trips_index</th>\n <th>hint</th>\n <th>distance</th>\n <th>name</th>\n <th>location</th>\n <th>lat</th>\n <th>lon</th>\n <th>route</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>0</td>\n <td>0</td>\n <td>1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN...</td>\n <td>8.262982</td>\n <td></td>\n <td>[-71.053931, 42.365054]</td>\n <td>-71.053931</td>\n <td>42.365054</td>\n <td>1</td>\n </tr>\n <tr>\n <th>1</th>\n <td>1</td>\n <td>0</td>\n <td>G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8...</td>\n <td>2.602121</td>\n <td></td>\n <td>[-71.056164, 42.366918]</td>\n <td>-71.056164</td>\n <td>42.366918</td>\n <td>1</td>\n </tr>\n <tr>\n <th>2</th>\n <td>2</td>\n <td>0</td>\n <td>gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR...</td>\n <td>15.458439</td>\n <td></td>\n <td>[-71.055561, 42.368861]</td>\n <td>-71.055561</td>\n <td>42.368861</td>\n <td>1</td>\n </tr>\n <tr>\n <th>3</th>\n <td>3</td>\n <td>0</td>\n <td>HpwsgCKcLIAAAAAAEgAAAAAAAAAAAAAAAAAAACg870AAAA...</td>\n <td>39.201677</td>\n <td></td>\n <td>[-71.062507, 42.365968]</td>\n <td>-71.062507</td>\n <td>42.365968</td>\n <td>1</td>\n </tr>\n <tr>\n <th>4</th>\n <td>4</td>\n <td>0</td>\n <td>LRUugHAVLoA1AAAA7wEAAKAAAADqAAAAYZa9QBEBXEIOWo...</td>\n <td>1.865658</td>\n <td></td>\n <td>[-71.061735, 42.369195]</td>\n <td>-71.061735</td>\n <td>42.369195</td>\n <td>1</td>\n </tr>\n <tr>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th>170</th>\n <td>49</td>\n <td>0</td>\n <td>7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA...</td>\n <td>7.478611</td>\n <td></td>\n <td>[-71.096959, 42.344689]</td>\n <td>-71.096959</td>\n <td>42.344689</td>\n <td>3</td>\n </tr>\n <tr>\n <th>171</th>\n <td>50</td>\n <td>0</td>\n <td>bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx...</td>\n <td>8.340476</td>\n <td></td>\n <td>[-71.095003, 42.342001]</td>\n <td>-71.095003</td>\n <td>42.342001</td>\n <td>3</td>\n </tr>\n <tr>\n <th>172</th>\n <td>51</td>\n <td>0</td>\n <td>MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh...</td>\n <td>11.504463</td>\n <td></td>\n <td>[-71.094327, 42.341231]</td>\n <td>-71.094327</td>\n <td>42.341231</td>\n <td>3</td>\n </tr>\n <tr>\n <th>173</th>\n <td>52</td>\n <td>0</td>\n <td>k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e...</td>\n <td>36.240351</td>\n <td></td>\n <td>[-71.093834, 42.339096]</td>\n <td>-71.093834</td>\n <td>42.339096</td>\n <td>3</td>\n </tr>\n <tr>\n <th>174</th>\n <td>53</td>\n <td>0</td>\n <td>DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA...</td>\n <td>0.236958</td>\n <td>Northeastern (Inbound)</td>\n <td>[-71.090331, 42.339762]</td>\n <td>-71.090331</td>\n <td>42.339762</td>\n <td>3</td>\n </tr>\n </tbody>\n</table>\n<p>175 rows × 9 columns</p>\n</div>"
+ "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>waypoint_index</th>\n",
+ " <th>trips_index</th>\n",
+ " <th>hint</th>\n",
+ " <th>distance</th>\n",
+ " <th>name</th>\n",
+ " <th>location</th>\n",
+ " <th>lat</th>\n",
+ " <th>lon</th>\n",
+ " <th>route</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>0</td>\n",
+ " <td>0</td>\n",
+ " <td>1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN...</td>\n",
+ " <td>8.262982</td>\n",
+ " <td></td>\n",
+ " <td>[-71.053931, 42.365054]</td>\n",
+ " <td>-71.053931</td>\n",
+ " <td>42.365054</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>1</td>\n",
+ " <td>0</td>\n",
+ " <td>G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8...</td>\n",
+ " <td>2.602121</td>\n",
+ " <td></td>\n",
+ " <td>[-71.056164, 42.366918]</td>\n",
+ " <td>-71.056164</td>\n",
+ " <td>42.366918</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>2</td>\n",
+ " <td>0</td>\n",
+ " <td>gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR...</td>\n",
+ " <td>15.458439</td>\n",
+ " <td></td>\n",
+ " <td>[-71.055561, 42.368861]</td>\n",
+ " <td>-71.055561</td>\n",
+ " <td>42.368861</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>3</td>\n",
+ " <td>0</td>\n",
+ " <td>HpwsgCKcLIAAAAAAEgAAAAAAAAAAAAAAAAAAACg870AAAA...</td>\n",
+ " <td>39.201677</td>\n",
+ " <td></td>\n",
+ " <td>[-71.062507, 42.365968]</td>\n",
+ " <td>-71.062507</td>\n",
+ " <td>42.365968</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>4</td>\n",
+ " <td>0</td>\n",
+ " <td>LRUugHAVLoA1AAAA7wEAAKAAAADqAAAAYZa9QBEBXEIOWo...</td>\n",
+ " <td>1.865658</td>\n",
+ " <td></td>\n",
+ " <td>[-71.061735, 42.369195]</td>\n",
+ " <td>-71.061735</td>\n",
+ " <td>42.369195</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>...</th>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>170</th>\n",
+ " <td>49</td>\n",
+ " <td>0</td>\n",
+ " <td>7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA...</td>\n",
+ " <td>7.478611</td>\n",
+ " <td></td>\n",
+ " <td>[-71.096959, 42.344689]</td>\n",
+ " <td>-71.096959</td>\n",
+ " <td>42.344689</td>\n",
+ " <td>3</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>171</th>\n",
+ " <td>50</td>\n",
+ " <td>0</td>\n",
+ " <td>bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx...</td>\n",
+ " <td>8.340476</td>\n",
+ " <td></td>\n",
+ " <td>[-71.095003, 42.342001]</td>\n",
+ " <td>-71.095003</td>\n",
+ " <td>42.342001</td>\n",
+ " <td>3</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>172</th>\n",
+ " <td>51</td>\n",
+ " <td>0</td>\n",
+ " <td>MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh...</td>\n",
+ " <td>11.504463</td>\n",
+ " <td></td>\n",
+ " <td>[-71.094327, 42.341231]</td>\n",
+ " <td>-71.094327</td>\n",
+ " <td>42.341231</td>\n",
+ " <td>3</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>173</th>\n",
+ " <td>52</td>\n",
+ " <td>0</td>\n",
+ " <td>k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e...</td>\n",
+ " <td>36.240351</td>\n",
+ " <td></td>\n",
+ " <td>[-71.093834, 42.339096]</td>\n",
+ " <td>-71.093834</td>\n",
+ " <td>42.339096</td>\n",
+ " <td>3</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>174</th>\n",
+ " <td>53</td>\n",
+ " <td>0</td>\n",
+ " <td>DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA...</td>\n",
+ " <td>0.236958</td>\n",
+ " <td>Northeastern (Inbound)</td>\n",
+ " <td>[-71.090331, 42.339762]</td>\n",
+ " <td>-71.090331</td>\n",
+ " <td>42.339762</td>\n",
+ " <td>3</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "<p>175 rows × 9 columns</p>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " waypoint_index trips_index \\\n",
+ "0 0 0 \n",
+ "1 1 0 \n",
+ "2 2 0 \n",
+ "3 3 0 \n",
+ "4 4 0 \n",
+ ".. ... ... \n",
+ "170 49 0 \n",
+ "171 50 0 \n",
+ "172 51 0 \n",
+ "173 52 0 \n",
+ "174 53 0 \n",
+ "\n",
+ " hint distance \\\n",
+ "0 1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN... 8.262982 \n",
+ "1 G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8... 2.602121 \n",
+ "2 gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR... 15.458439 \n",
+ "3 HpwsgCKcLIAAAAAAEgAAAAAAAAAAAAAAAAAAACg870AAAA... 39.201677 \n",
+ "4 LRUugHAVLoA1AAAA7wEAAKAAAADqAAAAYZa9QBEBXEIOWo... 1.865658 \n",
+ ".. ... ... \n",
+ "170 7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA... 7.478611 \n",
+ "171 bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx... 8.340476 \n",
+ "172 MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh... 11.504463 \n",
+ "173 k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e... 36.240351 \n",
+ "174 DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA... 0.236958 \n",
+ "\n",
+ " name location lat lon \\\n",
+ "0 [-71.053931, 42.365054] -71.053931 42.365054 \n",
+ "1 [-71.056164, 42.366918] -71.056164 42.366918 \n",
+ "2 [-71.055561, 42.368861] -71.055561 42.368861 \n",
+ "3 [-71.062507, 42.365968] -71.062507 42.365968 \n",
+ "4 [-71.061735, 42.369195] -71.061735 42.369195 \n",
+ ".. ... ... ... ... \n",
+ "170 [-71.096959, 42.344689] -71.096959 42.344689 \n",
+ "171 [-71.095003, 42.342001] -71.095003 42.342001 \n",
+ "172 [-71.094327, 42.341231] -71.094327 42.341231 \n",
+ "173 [-71.093834, 42.339096] -71.093834 42.339096 \n",
+ "174 Northeastern (Inbound) [-71.090331, 42.339762] -71.090331 42.339762 \n",
+ "\n",
+ " route \n",
+ "0 1 \n",
+ "1 1 \n",
+ "2 1 \n",
+ "3 1 \n",
+ "4 1 \n",
+ ".. ... \n",
+ "170 3 \n",
+ "171 3 \n",
+ "172 3 \n",
+ "173 3 \n",
+ "174 3 \n",
+ "\n",
+ "[175 rows x 9 columns]"
+ ]
},
"metadata": {},
"output_type": "display_data"
@@ -537,34 +2187,1171 @@
],
"source": [
"display(df)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:07:38.333653Z",
- "start_time": "2023-11-07T23:07:38.322616Z"
- }
- },
- "id": "17a8cc8fed5450a6"
+ ]
},
{
"cell_type": "markdown",
+ "id": "b20a57aa09792c39",
+ "metadata": {},
"source": [
"## Map"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "b20a57aa09792c39"
+ ]
},
{
"cell_type": "code",
"execution_count": 21,
+ "id": "702adaec008a6ec8",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:07:38.444061Z",
+ "start_time": "2023-11-07T23:07:38.336503Z"
+ }
+ },
"outputs": [
{
"data": {
- "text/plain": "<folium.folium.Map at 0x14fd934d0>",
- "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;html&gt;\n&lt;head&gt;\n \n &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n \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.9.3/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://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n \n &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n &lt;style&gt;\n #map_0f95b100b8e3f51c9cc2f855eec349c4 {\n position: relative;\n width: 100.0%;\n height: 100.0%;\n left: 0.0%;\n top: 0.0%;\n }\n .leaflet-container { font-size: 1rem; }\n &lt;/style&gt;\n \n&lt;/head&gt;\n&lt;body&gt;\n \n \n &lt;div class=&quot;folium-map&quot; id=&quot;map_0f95b100b8e3f51c9cc2f855eec349c4&quot; &gt;&lt;/div&gt;\n \n&lt;/body&gt;\n&lt;script&gt;\n \n \n var map_0f95b100b8e3f51c9cc2f855eec349c4 = L.map(\n &quot;map_0f95b100b8e3f51c9cc2f855eec349c4&quot;,\n {\n center: [42.358875045714285, -71.07219397714287],\n crs: L.CRS.EPSG3857,\n zoom: 11,\n zoomControl: true,\n preferCanvas: false,\n }\n );\n\n \n\n \n \n var tile_layer_e4548a6b00a97a4a8edd98e58d658fe3 = L.tileLayer(\n &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\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_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var poly_line_bd5db22215071bfb34b14c7cb09a7837 = L.polyline(\n [[42.365054, -71.053931], [42.366918, -71.056164], [42.368861, -71.055561], [42.365968, -71.062507], [42.369195, -71.061735], [42.369473, -71.075628], [42.369868, -71.06828], [42.371832, -71.065634], [42.374119, -71.055588], [42.376391, -71.060753], [42.376178, -71.060933], [42.374142, -71.063105], [42.380436, -71.060948], [42.398809, -71.061206], [42.403792, -71.058992], [42.389192, -71.033749], [42.386461, -71.032794], [42.385546, -71.039316], [42.380792, -71.034935], [42.371161, -71.037188], [42.369812, -71.037911], [42.367158, -71.035936], [42.37337, -71.033036], [42.377891, -71.028298], [42.382756, -71.011693], [42.390256, -71.005456], [42.390466, -70.997084], [42.391786, -70.99031], [42.380215, -70.980137], [42.389507, -70.969384], [42.411181, -70.993747], [42.420244, -70.985934], [42.418321, -70.99748], [42.421213, -71.027113], [42.412279, -71.031525], [42.411785, -71.01537], [42.398247, -71.028327], [42.397588, -71.035674], [42.391309, -71.036726], [42.390284, -71.038526], [42.393843, -71.041015], [42.402568, -71.051453], [42.422264, -71.043219], [42.418307, -71.050739], [42.42069, -71.055953], [42.407436, -71.062128], [42.397236, -71.072007], [42.400829, -71.112241], [42.429978, -71.203921], [42.410941, -71.168458], [42.396589, -71.122704], [42.38859, -71.119303], [42.388412, -71.119219], [42.383573, -71.112746], [42.383988, -71.110771], [42.382131, -71.102659], [42.382238, -71.102512], [42.380957, -71.097894], [42.380072, -71.096887], [42.381759, -71.093444], [42.379731, -71.094916], [42.377355, -71.094764], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_3afbdf7e08af99aefe95069a82cf7bf8 = L.circleMarker(\n [42.365054, -71.053931],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b58c34aefa2694e3f4575375b27eac64 = L.circleMarker(\n [42.366918, -71.056164],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_d566748fe331496ffab71b4ea0177d04 = L.circleMarker(\n [42.368861, -71.055561],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_71fb8cdd72481e716865ad2fe6e78263 = L.circleMarker(\n [42.365968, -71.062507],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_1cb1626d5653ead2232473596abcdc5f = L.circleMarker(\n [42.369195, -71.061735],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_99aab25ce7113a77faf314c5d1eccc42 = L.circleMarker(\n [42.369473, -71.075628],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_c8908c26625ede564690369398beaa34 = L.circleMarker(\n [42.369868, -71.06828],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_daab32da03ee23f20e76e6cbd2af301c = L.circleMarker(\n [42.371832, -71.065634],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_1b15cb8874f14292a267a224a418b16e = L.circleMarker(\n [42.374119, -71.055588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_7c80483d96c837da0f1056de7d22d9fa = L.circleMarker(\n [42.376391, -71.060753],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_e2b0adc9f189acd77b1738bb741394cd = L.circleMarker(\n [42.376178, -71.060933],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_689e116e81dbfafc595b6fd2b22883bd = L.circleMarker(\n [42.374142, -71.063105],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_8e8fd80c83d38b975c6cb9c1f42d83bf = L.circleMarker(\n [42.380436, -71.060948],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_678e545c0a0988e82ae8d32f68e1e582 = L.circleMarker(\n [42.398809, -71.061206],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_9aef10d0d7983108b74a8aa8ccd44370 = L.circleMarker(\n [42.403792, -71.058992],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_6c1300f54c00e80167ab95a6265bdbc2 = L.circleMarker(\n [42.389192, -71.033749],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_7dc43cce9ca65aaaba20f97b3ddc7201 = L.circleMarker(\n [42.386461, -71.032794],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_e8ded7aedee4a8158ffb1c7499e181e2 = L.circleMarker(\n [42.385546, -71.039316],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b2e30ea77b22750e81335d391b6fa0d6 = L.circleMarker(\n [42.380792, -71.034935],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_5a297b105f4cd2afb7484f4160629125 = L.circleMarker(\n [42.371161, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_cc7e8a0bd1277035e16b0e29586a4ea5 = L.circleMarker(\n [42.369812, -71.037911],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_4153a3733a95d2b5d38690f94724c49e = L.circleMarker(\n [42.367158, -71.035936],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_7547d71774c5e8f44675e90ba7daad01 = L.circleMarker(\n [42.37337, -71.033036],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_f6ff57038fa54b289f293a383ea6626c = L.circleMarker(\n [42.377891, -71.028298],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_56aaceb6dad1d1a720bfd056c38c0818 = L.circleMarker(\n [42.382756, -71.011693],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_3c2069cb6e1d332634410799a70b46b7 = L.circleMarker(\n [42.390256, -71.005456],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_8cc1083be7aab39a45bfefd6b63b9862 = L.circleMarker(\n [42.390466, -70.997084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_607c882fcf3f70c645a83dce2e45547e = L.circleMarker(\n [42.391786, -70.99031],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_9eabc932fcd278928ae75b22d6cd3bce = L.circleMarker(\n [42.380215, -70.980137],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_bd60e6a70f01826a4df8df0ad644ce8e = L.circleMarker(\n [42.389507, -70.969384],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_81ba354a0ca1a16e1be0ee8b93754391 = L.circleMarker(\n [42.411181, -70.993747],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_4ddb73c2b5a974624921f9eb75b4bf09 = L.circleMarker(\n [42.420244, -70.985934],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_1ea4413aac9a0115b29c7e449ef3288c = L.circleMarker(\n [42.418321, -70.99748],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_7bcec87d676fd711d862b58d25be1fd1 = L.circleMarker(\n [42.421213, -71.027113],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_eeb58ed7613fa7d9582eed51372bbeb2 = L.circleMarker(\n [42.412279, -71.031525],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_9d50c52b8caaa873d7977ef3a64b04dc = L.circleMarker(\n [42.411785, -71.01537],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_ea281b803d9f45df3163c5fa474446d3 = L.circleMarker(\n [42.398247, -71.028327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_dbe1411e7f9f729bbde2070072021368 = L.circleMarker(\n [42.397588, -71.035674],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_a3b71deaaeab188feb785bbf983b35a2 = L.circleMarker(\n [42.391309, -71.036726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_76318b7fef45d2a025119904987c3768 = L.circleMarker(\n [42.390284, -71.038526],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_bea3aa254a091494aefa96fc503f2c00 = L.circleMarker(\n [42.393843, -71.041015],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_a081e0f9e549c3ce46e68bf5e5c9d005 = L.circleMarker(\n [42.402568, -71.051453],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_f4525d4992cab60566b960c2e3c8f7ae = L.circleMarker(\n [42.422264, -71.043219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_669aa3410fac5fd75b2d99d8c3ca5c0b = L.circleMarker(\n [42.418307, -71.050739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_1ac364eb32086183111d3fe814d7bf91 = L.circleMarker(\n [42.42069, -71.055953],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b4e2a8b52800e218e2d18e9c0402f715 = L.circleMarker(\n [42.407436, -71.062128],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_ffbb00cd0f93b28623d4152ed5f84661 = L.circleMarker(\n [42.397236, -71.072007],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_376bb2bdf38154527e255b85fb46627b = L.circleMarker(\n [42.400829, -71.112241],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_333507e24b13a23eaab10a252e67b66d = L.circleMarker(\n [42.429978, -71.203921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_589c11a5f823b8268387c13c89498136 = L.circleMarker(\n [42.410941, -71.168458],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b5928b461b83dfcc943eabd4646e2560 = L.circleMarker(\n [42.396589, -71.122704],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_56c5a06974c8e4d12fe2f8e2e6fbfb34 = L.circleMarker(\n [42.38859, -71.119303],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_353cc8d239cc180c6c808859e3158466 = L.circleMarker(\n [42.388412, -71.119219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_457376130881b80bd097935b4ace49eb = L.circleMarker(\n [42.383573, -71.112746],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_315a33af674310870a6f41fb83a743d2 = L.circleMarker(\n [42.383988, -71.110771],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_3fb983d5583e3177bef41e8979dc7dfb = L.circleMarker(\n [42.382131, -71.102659],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_32b21ca38e9b5aaf1fb8a9d17f8942e2 = L.circleMarker(\n [42.382238, -71.102512],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_03844f171b77c446ae1b6f1e6d4caee5 = L.circleMarker(\n [42.380957, -71.097894],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_01747e509f4eeef8b2782b660b8637c4 = L.circleMarker(\n [42.380072, -71.096887],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_98bf862f812fd658fbdc5834d4532dd5 = L.circleMarker(\n [42.381759, -71.093444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_15db680219f0bcbc345d2437ab37a5b6 = L.circleMarker(\n [42.379731, -71.094916],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_6f14c9c8237db8fc6da42ec6114fb72c = L.circleMarker(\n [42.377355, -71.094764],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_606f6d3b31b0c535ac13a696f27e35aa = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var poly_line_f2b5242141ca3cb1bb7ae431fa31ef62 = L.polyline(\n [[42.351001, -71.045001], [42.351052, -71.044959], [42.347902, -71.040407], [42.34898, -71.03588], [42.347795, -71.035964], [42.344315, -71.033918], [42.338284, -71.013043], [42.338284, -71.013043], [42.3359, -71.023658], [42.329187, -71.035189], [42.34085, -71.071196], [42.349993, -71.067854], [42.352314, -71.067311], [42.352445, -71.066839], [42.350941, -71.059567], [42.353717, -71.061676], [42.355298, -71.061249], [42.355519, -71.063037], [42.354894, -71.063514], [42.353792, -71.068086], [42.356682, -71.066568], [42.358056, -71.062171], [42.357428, -71.058565], [42.359295, -71.059255], [42.36049, -71.056995], [42.361263, -71.056994], [42.361534, -71.056819], [42.364032, -71.055569], [42.365251, -71.055582], [42.360949, -71.051539], [42.359704, -71.054519], [42.358757, -71.057201], [42.352211, -71.051172], [42.35199, -71.049726], [42.351671, -71.050269], [42.350902, -71.048805], [42.353667, -71.047121], [42.352749, -71.04333], [42.364857, -71.041248], [42.365172, -71.035967], [42.363961, -71.033209], [42.207533, -71.001295], [42.23913, -71.003762], [42.245312, -71.000444], [42.25784, -71.02898], [42.276371, -71.009534], [42.27938, -71.014026], [42.274385, -71.024029], [42.316288, -71.037188], [42.315966, -71.034107], [42.316292, -71.045242], [42.325624, -71.049204], [42.285832, -71.063084], [42.284476, -71.063921], [42.296172, -71.087449], [42.324934, -71.06221], [42.327134, -71.066844], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_4c1d665014b78cff08c92306d94cd420 = L.circleMarker(\n [42.351001, -71.045001],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_8dc8ef88bc9d3ba327f785a338db7de2 = L.circleMarker(\n [42.351052, -71.044959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_a7938031dd1f44cde2f55ab862109cac = L.circleMarker(\n [42.347902, -71.040407],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_937892678b9d1c504970b230e1f3f906 = L.circleMarker(\n [42.34898, -71.03588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_06ffc722fa9759eb4ad266f76623c30e = L.circleMarker(\n [42.347795, -71.035964],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_1a17fa89ed3cf04e82a147e4d54f6e90 = L.circleMarker(\n [42.344315, -71.033918],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_39519a8f477a4902b0a400c941faa96d = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_3e220ee8a8fd63d048ac41f177572320 = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_e62f57627abe788bcc0e42d0e78a3cf7 = L.circleMarker(\n [42.3359, -71.023658],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_f8d705e4cef756f8b2f450877f8de1bf = L.circleMarker(\n [42.329187, -71.035189],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_85ea0f6990b8c0436ff642a472d26d58 = L.circleMarker(\n [42.34085, -71.071196],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_ac1a8d77b0076383c03eb966efb2f3f4 = L.circleMarker(\n [42.349993, -71.067854],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_87c0c8d103adcaba14bab0571d924b31 = L.circleMarker(\n [42.352314, -71.067311],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_5ea80c7aa112619c14dd2f989a831c32 = L.circleMarker(\n [42.352445, -71.066839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_2124639d2d05e84f703c5ea5e4323083 = L.circleMarker(\n [42.350941, -71.059567],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_81ce61e5a21d890613b61a3efc544eb9 = L.circleMarker(\n [42.353717, -71.061676],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_58acf219e0cff5a9da8048f98d7048c0 = L.circleMarker(\n [42.355298, -71.061249],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_e8cd7067ac53137766c177bd58c7f0e0 = L.circleMarker(\n [42.355519, -71.063037],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_28165399846baa319dca2924809fb005 = L.circleMarker(\n [42.354894, -71.063514],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_e41eca48e459ab91a824407702f5e01e = L.circleMarker(\n [42.353792, -71.068086],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_c7177e17c90177a53a294854f8b5020b = L.circleMarker(\n [42.356682, -71.066568],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_62e40f702459e2833cda112d2e92d348 = L.circleMarker(\n [42.358056, -71.062171],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_5d69971c6871a5702272ea5527b6f025 = L.circleMarker(\n [42.357428, -71.058565],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_88edfeb0f0eeb397d4092568c1bdbf65 = L.circleMarker(\n [42.359295, -71.059255],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_18e231a6f12f8765a1eb6773a3df7553 = L.circleMarker(\n [42.36049, -71.056995],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_4fbea171fd43f315a167abe1746994ad = L.circleMarker(\n [42.361263, -71.056994],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_250fa1b2b7f19fd3ace482c6f1214ba3 = L.circleMarker(\n [42.361534, -71.056819],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b724ae954c3f5dae861e23b590b92468 = L.circleMarker(\n [42.364032, -71.055569],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_da7996b70a8e6b08bc492f589918ddab = L.circleMarker(\n [42.365251, -71.055582],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b31e338c87395a3dcc0812a1ddfbcacd = L.circleMarker(\n [42.360949, -71.051539],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_cddc78ab06acda59305edec03b081de4 = L.circleMarker(\n [42.359704, -71.054519],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_a919f2f23ce95c48d1c97a5491b17f9f = L.circleMarker(\n [42.358757, -71.057201],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_9dc9287490c6c0e18cd51baa0dc33bb0 = L.circleMarker(\n [42.352211, -71.051172],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_57fd522861ad7444360c63c0dc54eeaf = L.circleMarker(\n [42.35199, -71.049726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_9c3c65ffb8ff463579c2f8b6beb210b6 = L.circleMarker(\n [42.351671, -71.050269],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_f1f8b18e90c2b74eedb75e7237062791 = L.circleMarker(\n [42.350902, -71.048805],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_5426bf3e0781376f2d382a9450d2af99 = L.circleMarker(\n [42.353667, -71.047121],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_69797760d2a1b8c0adc41646e2c50cad = L.circleMarker(\n [42.352749, -71.04333],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_c58fa3285d7656c6d839ab8ad4b74fd8 = L.circleMarker(\n [42.364857, -71.041248],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_d2574dab994dd1c5b2f9147efc0dd260 = L.circleMarker(\n [42.365172, -71.035967],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_0a2b415fe7d0b73957e8e3a7fbe002eb = L.circleMarker(\n [42.363961, -71.033209],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_eac140192ce2352e27bc7866e6fe5924 = L.circleMarker(\n [42.207533, -71.001295],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_d106989e8fc6f71c93fcca64fd6b141c = L.circleMarker(\n [42.23913, -71.003762],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b69f46d01ace9bce54e911dea7a3597b = L.circleMarker(\n [42.245312, -71.000444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_1239cade63f86c2348998ffb513ec16a = L.circleMarker(\n [42.25784, -71.02898],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_e74362afb8686cd21961fd770616383e = L.circleMarker(\n [42.276371, -71.009534],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_2f56a1593ccf788f0522f2bc738075ee = L.circleMarker(\n [42.27938, -71.014026],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_abe7118bbb7e62bdbcabfbd5c6187be5 = L.circleMarker(\n [42.274385, -71.024029],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_c2f833eb6afb3e7be5ab345c751a7bfe = L.circleMarker(\n [42.316288, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_9859793751ec074a9f9d33d71a3f474f = L.circleMarker(\n [42.315966, -71.034107],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b8940bf300052ef52dd258bb2ac6a207 = L.circleMarker(\n [42.316292, -71.045242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_d2d1f871698a321555a13bd310cfb237 = L.circleMarker(\n [42.325624, -71.049204],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_839bb718d82f5379449949ecf25594b0 = L.circleMarker(\n [42.285832, -71.063084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_ae9f1c39a65764c87e19bbbfb12f7ffb = L.circleMarker(\n [42.284476, -71.063921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_5ca2e055ab1578c42f3761482789489d = L.circleMarker(\n [42.296172, -71.087449],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_83f0a37ec119d45aba2dd9e535e5fac4 = L.circleMarker(\n [42.324934, -71.06221],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_ed204946afbf615da2697f393b8d5391 = L.circleMarker(\n [42.327134, -71.066844],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_e8bd2f56b4f7e94ebf1417fe21ed8b05 = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var poly_line_f02b5118f85a2ba0e95a09c96b66ea25 = L.polyline(\n [[42.356001, -71.055001], [42.358851, -71.064277], [42.357529, -71.069242], [42.348915, -71.072038], [42.349997, -71.085166], [42.34194, -71.083465], [42.329829, -71.090904], [42.325354, -71.09454], [42.33047, -71.099348], [42.332009, -71.098267], [42.332401, -71.100092], [42.338007, -71.099284], [42.336448, -71.10963], [42.336, -71.112246], [42.331874, -71.125847], [42.342619, -71.121734], [42.351932, -71.124132], [42.352999, -71.130896], [42.352585, -71.131464], [42.356842, -71.143863], [42.349667, -71.146009], [42.350083, -71.146124], [42.343387, -71.142763], [42.341017, -71.162549], [42.33162, -71.155413], [42.324682, -71.16198], [42.314504, -71.227365], [42.313798, -71.359917], [42.361942, -71.18542], [42.388907, -71.133098], [42.378452, -71.115739], [42.378275, -71.114496], [42.376696, -71.115952], [42.375457, -71.119379], [42.373491, -71.118959], [42.373266, -71.120839], [42.363221, -71.128473], [42.374259, -71.110851], [42.364024, -71.1088], [42.363685, -71.101083], [42.36265, -71.10141], [42.3614, -71.101475], [42.362555, -71.096306], [42.361529, -71.090578], [42.367607, -71.08097], [42.356537, -71.075414], [42.351083, -71.106096], [42.348977, -71.091358], [42.346361, -71.089677], [42.344689, -71.096959], [42.342001, -71.095003], [42.341231, -71.094327], [42.339096, -71.093834], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_4e653a429a12f0146014f3004c285cd8 = L.circleMarker(\n [42.356001, -71.055001],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_dac9ae0c4bfde880860c9dac6921414b = L.circleMarker(\n [42.358851, -71.064277],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_5b6fcb7d3088dee1b57b487102513689 = L.circleMarker(\n [42.357529, -71.069242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_6a54ba6267c245f983faf9661e62c8fc = L.circleMarker(\n [42.348915, -71.072038],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_999c8801f0e4da8bce052add852386f3 = L.circleMarker(\n [42.349997, -71.085166],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_891dd4d510aa8b11e5fc4e8baff6b81f = L.circleMarker(\n [42.34194, -71.083465],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_cfec88a183cee88ec0fb491fe63bd407 = L.circleMarker(\n [42.329829, -71.090904],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_92c89c254851eac1fb7848fbfdb50760 = L.circleMarker(\n [42.325354, -71.09454],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_3af4018efa0abdbfba928f4785320207 = L.circleMarker(\n [42.33047, -71.099348],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_817e1f47fbe0dac667aabbe43eb093ca = L.circleMarker(\n [42.332009, -71.098267],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_ceaabf4de6c1ec86b8399ffa9da359c0 = L.circleMarker(\n [42.332401, -71.100092],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_74cee63d6bb3389925a89d4185e6924e = L.circleMarker(\n [42.338007, -71.099284],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_f87b9abfba16daad4bc70886074e3e70 = L.circleMarker(\n [42.336448, -71.10963],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_619c62f04f0492e018972b0aa8113d76 = L.circleMarker(\n [42.336, -71.112246],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_d8229dd8855ccd92a46873b9553f17a0 = L.circleMarker(\n [42.331874, -71.125847],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_40562ab7092b58e488ac9663c959226e = L.circleMarker(\n [42.342619, -71.121734],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_208f08e42e308ca0bc83a4588e8f8a21 = L.circleMarker(\n [42.351932, -71.124132],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_20ab0f6cc53f7c2488394f16171deec8 = L.circleMarker(\n [42.352999, -71.130896],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_357a000e06f04eaf6545009731e55882 = L.circleMarker(\n [42.352585, -71.131464],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_45c358803fe96ffeb38847b24e88676c = L.circleMarker(\n [42.356842, -71.143863],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_f6330142f5a3bfa22f29e4f594b5a9e8 = L.circleMarker(\n [42.349667, -71.146009],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_58ab701581116b444da8de2f98445628 = L.circleMarker(\n [42.350083, -71.146124],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_0df83518967a5120260bb50a6c67def0 = L.circleMarker(\n [42.343387, -71.142763],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_4e5c912e15af454d32c737d90032612a = L.circleMarker(\n [42.341017, -71.162549],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_a261cbeb060d9a8b9e680372ad1122dd = L.circleMarker(\n [42.33162, -71.155413],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_6a22a1cf855bbf9f3ec07c5581e60670 = L.circleMarker(\n [42.324682, -71.16198],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_352e3da5f7809337339bda338eeb0a5b = L.circleMarker(\n [42.314504, -71.227365],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_e1c84db727d3bee75cf5821a72ffa793 = L.circleMarker(\n [42.313798, -71.359917],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_45200742c9feb338f92f7de3bb9e568e = L.circleMarker(\n [42.361942, -71.18542],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_3527be91dede5ff97f61f9a0cf2cdc4f = L.circleMarker(\n [42.388907, -71.133098],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_5b2a88298ba49b772b8bb96605cf1d0c = L.circleMarker(\n [42.378452, -71.115739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_5d22b48f7a5e873d493c475ee0e6135b = L.circleMarker(\n [42.378275, -71.114496],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_2d57cb40e0e3981caa7228edffc15379 = L.circleMarker(\n [42.376696, -71.115952],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_53fa03d40978858fc3e0851a9629a036 = L.circleMarker(\n [42.375457, -71.119379],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_85d80e67ad15c20df105d6ce2304de7d = L.circleMarker(\n [42.373491, -71.118959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_298c8556e1e476269a0f1451d93ae494 = L.circleMarker(\n [42.373266, -71.120839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_85126bcfe1427f2f7072750c2290f64b = L.circleMarker(\n [42.363221, -71.128473],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_0dbb7342e4112dbbb8c2a2c82427edb5 = L.circleMarker(\n [42.374259, -71.110851],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_7c0bb80dc40ac8c3ba33d941502680a9 = L.circleMarker(\n [42.364024, -71.1088],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_84ae6cd1c960597d934b724b97f7e9c2 = L.circleMarker(\n [42.363685, -71.101083],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b83efaea369c8cbd9a03f1e05a02edb4 = L.circleMarker(\n [42.36265, -71.10141],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_aa74ca1c120f522b6982f2d905c0a640 = L.circleMarker(\n [42.3614, -71.101475],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_f0fa1c2456da17e29898857dd5df491f = L.circleMarker(\n [42.362555, -71.096306],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_bbb5b5c4624a07aa9a1ba537ed4e21af = L.circleMarker(\n [42.361529, -71.090578],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_6c72367ee97a9a01d58d106611142c1d = L.circleMarker(\n [42.367607, -71.08097],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_8f4b1a52c6c9c374683bee4c66972920 = L.circleMarker(\n [42.356537, -71.075414],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_384c19e58afea65d4323be9dafe57ccf = L.circleMarker(\n [42.351083, -71.106096],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_b5b5cb0597a89e824264aade3ca407e1 = L.circleMarker(\n [42.348977, -71.091358],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_738d266f5838bc78fc2dd13067646d46 = L.circleMarker(\n [42.346361, -71.089677],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_37831f8f5649e6e85a6d9c9a19254dcf = L.circleMarker(\n [42.344689, -71.096959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_0a1478f102383ea21d9727e14f1ad2db = L.circleMarker(\n [42.342001, -71.095003],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_f78cee1ef672cf95a6929f103df02f68 = L.circleMarker(\n [42.341231, -71.094327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_945f35205f8c93525f5131f197dffe3c = L.circleMarker(\n [42.339096, -71.093834],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n \n var circle_marker_4b5662a6a52c7c90ee66f9c710cd1d92 = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n \n&lt;/script&gt;\n&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
+ "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;html&gt;\n",
+ "&lt;head&gt;\n",
+ " \n",
+ " &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
+ " \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.9.3/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://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
+ " &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
+ " \n",
+ " &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
+ " initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
+ " &lt;style&gt;\n",
+ " #map_0f95b100b8e3f51c9cc2f855eec349c4 {\n",
+ " position: relative;\n",
+ " width: 100.0%;\n",
+ " height: 100.0%;\n",
+ " left: 0.0%;\n",
+ " top: 0.0%;\n",
+ " }\n",
+ " .leaflet-container { font-size: 1rem; }\n",
+ " &lt;/style&gt;\n",
+ " \n",
+ "&lt;/head&gt;\n",
+ "&lt;body&gt;\n",
+ " \n",
+ " \n",
+ " &lt;div class=&quot;folium-map&quot; id=&quot;map_0f95b100b8e3f51c9cc2f855eec349c4&quot; &gt;&lt;/div&gt;\n",
+ " \n",
+ "&lt;/body&gt;\n",
+ "&lt;script&gt;\n",
+ " \n",
+ " \n",
+ " var map_0f95b100b8e3f51c9cc2f855eec349c4 = L.map(\n",
+ " &quot;map_0f95b100b8e3f51c9cc2f855eec349c4&quot;,\n",
+ " {\n",
+ " center: [42.358875045714285, -71.07219397714287],\n",
+ " crs: L.CRS.EPSG3857,\n",
+ " zoom: 11,\n",
+ " zoomControl: true,\n",
+ " preferCanvas: false,\n",
+ " }\n",
+ " );\n",
+ "\n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " var tile_layer_e4548a6b00a97a4a8edd98e58d658fe3 = L.tileLayer(\n",
+ " &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n",
+ " {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\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_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var poly_line_bd5db22215071bfb34b14c7cb09a7837 = L.polyline(\n",
+ " [[42.365054, -71.053931], [42.366918, -71.056164], [42.368861, -71.055561], [42.365968, -71.062507], [42.369195, -71.061735], [42.369473, -71.075628], [42.369868, -71.06828], [42.371832, -71.065634], [42.374119, -71.055588], [42.376391, -71.060753], [42.376178, -71.060933], [42.374142, -71.063105], [42.380436, -71.060948], [42.398809, -71.061206], [42.403792, -71.058992], [42.389192, -71.033749], [42.386461, -71.032794], [42.385546, -71.039316], [42.380792, -71.034935], [42.371161, -71.037188], [42.369812, -71.037911], [42.367158, -71.035936], [42.37337, -71.033036], [42.377891, -71.028298], [42.382756, -71.011693], [42.390256, -71.005456], [42.390466, -70.997084], [42.391786, -70.99031], [42.380215, -70.980137], [42.389507, -70.969384], [42.411181, -70.993747], [42.420244, -70.985934], [42.418321, -70.99748], [42.421213, -71.027113], [42.412279, -71.031525], [42.411785, -71.01537], [42.398247, -71.028327], [42.397588, -71.035674], [42.391309, -71.036726], [42.390284, -71.038526], [42.393843, -71.041015], [42.402568, -71.051453], [42.422264, -71.043219], [42.418307, -71.050739], [42.42069, -71.055953], [42.407436, -71.062128], [42.397236, -71.072007], [42.400829, -71.112241], [42.429978, -71.203921], [42.410941, -71.168458], [42.396589, -71.122704], [42.38859, -71.119303], [42.388412, -71.119219], [42.383573, -71.112746], [42.383988, -71.110771], [42.382131, -71.102659], [42.382238, -71.102512], [42.380957, -71.097894], [42.380072, -71.096887], [42.381759, -71.093444], [42.379731, -71.094916], [42.377355, -71.094764], [42.339762, -71.090331]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3afbdf7e08af99aefe95069a82cf7bf8 = L.circleMarker(\n",
+ " [42.365054, -71.053931],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b58c34aefa2694e3f4575375b27eac64 = L.circleMarker(\n",
+ " [42.366918, -71.056164],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d566748fe331496ffab71b4ea0177d04 = L.circleMarker(\n",
+ " [42.368861, -71.055561],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_71fb8cdd72481e716865ad2fe6e78263 = L.circleMarker(\n",
+ " [42.365968, -71.062507],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1cb1626d5653ead2232473596abcdc5f = L.circleMarker(\n",
+ " [42.369195, -71.061735],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_99aab25ce7113a77faf314c5d1eccc42 = L.circleMarker(\n",
+ " [42.369473, -71.075628],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c8908c26625ede564690369398beaa34 = L.circleMarker(\n",
+ " [42.369868, -71.06828],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_daab32da03ee23f20e76e6cbd2af301c = L.circleMarker(\n",
+ " [42.371832, -71.065634],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1b15cb8874f14292a267a224a418b16e = L.circleMarker(\n",
+ " [42.374119, -71.055588],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7c80483d96c837da0f1056de7d22d9fa = L.circleMarker(\n",
+ " [42.376391, -71.060753],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e2b0adc9f189acd77b1738bb741394cd = L.circleMarker(\n",
+ " [42.376178, -71.060933],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_689e116e81dbfafc595b6fd2b22883bd = L.circleMarker(\n",
+ " [42.374142, -71.063105],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8e8fd80c83d38b975c6cb9c1f42d83bf = L.circleMarker(\n",
+ " [42.380436, -71.060948],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_678e545c0a0988e82ae8d32f68e1e582 = L.circleMarker(\n",
+ " [42.398809, -71.061206],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9aef10d0d7983108b74a8aa8ccd44370 = L.circleMarker(\n",
+ " [42.403792, -71.058992],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6c1300f54c00e80167ab95a6265bdbc2 = L.circleMarker(\n",
+ " [42.389192, -71.033749],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7dc43cce9ca65aaaba20f97b3ddc7201 = L.circleMarker(\n",
+ " [42.386461, -71.032794],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e8ded7aedee4a8158ffb1c7499e181e2 = L.circleMarker(\n",
+ " [42.385546, -71.039316],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b2e30ea77b22750e81335d391b6fa0d6 = L.circleMarker(\n",
+ " [42.380792, -71.034935],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5a297b105f4cd2afb7484f4160629125 = L.circleMarker(\n",
+ " [42.371161, -71.037188],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_cc7e8a0bd1277035e16b0e29586a4ea5 = L.circleMarker(\n",
+ " [42.369812, -71.037911],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4153a3733a95d2b5d38690f94724c49e = L.circleMarker(\n",
+ " [42.367158, -71.035936],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7547d71774c5e8f44675e90ba7daad01 = L.circleMarker(\n",
+ " [42.37337, -71.033036],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f6ff57038fa54b289f293a383ea6626c = L.circleMarker(\n",
+ " [42.377891, -71.028298],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_56aaceb6dad1d1a720bfd056c38c0818 = L.circleMarker(\n",
+ " [42.382756, -71.011693],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3c2069cb6e1d332634410799a70b46b7 = L.circleMarker(\n",
+ " [42.390256, -71.005456],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8cc1083be7aab39a45bfefd6b63b9862 = L.circleMarker(\n",
+ " [42.390466, -70.997084],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_607c882fcf3f70c645a83dce2e45547e = L.circleMarker(\n",
+ " [42.391786, -70.99031],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9eabc932fcd278928ae75b22d6cd3bce = L.circleMarker(\n",
+ " [42.380215, -70.980137],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_bd60e6a70f01826a4df8df0ad644ce8e = L.circleMarker(\n",
+ " [42.389507, -70.969384],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_81ba354a0ca1a16e1be0ee8b93754391 = L.circleMarker(\n",
+ " [42.411181, -70.993747],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4ddb73c2b5a974624921f9eb75b4bf09 = L.circleMarker(\n",
+ " [42.420244, -70.985934],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1ea4413aac9a0115b29c7e449ef3288c = L.circleMarker(\n",
+ " [42.418321, -70.99748],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7bcec87d676fd711d862b58d25be1fd1 = L.circleMarker(\n",
+ " [42.421213, -71.027113],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_eeb58ed7613fa7d9582eed51372bbeb2 = L.circleMarker(\n",
+ " [42.412279, -71.031525],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9d50c52b8caaa873d7977ef3a64b04dc = L.circleMarker(\n",
+ " [42.411785, -71.01537],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ea281b803d9f45df3163c5fa474446d3 = L.circleMarker(\n",
+ " [42.398247, -71.028327],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_dbe1411e7f9f729bbde2070072021368 = L.circleMarker(\n",
+ " [42.397588, -71.035674],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a3b71deaaeab188feb785bbf983b35a2 = L.circleMarker(\n",
+ " [42.391309, -71.036726],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_76318b7fef45d2a025119904987c3768 = L.circleMarker(\n",
+ " [42.390284, -71.038526],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_bea3aa254a091494aefa96fc503f2c00 = L.circleMarker(\n",
+ " [42.393843, -71.041015],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a081e0f9e549c3ce46e68bf5e5c9d005 = L.circleMarker(\n",
+ " [42.402568, -71.051453],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f4525d4992cab60566b960c2e3c8f7ae = L.circleMarker(\n",
+ " [42.422264, -71.043219],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_669aa3410fac5fd75b2d99d8c3ca5c0b = L.circleMarker(\n",
+ " [42.418307, -71.050739],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1ac364eb32086183111d3fe814d7bf91 = L.circleMarker(\n",
+ " [42.42069, -71.055953],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b4e2a8b52800e218e2d18e9c0402f715 = L.circleMarker(\n",
+ " [42.407436, -71.062128],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ffbb00cd0f93b28623d4152ed5f84661 = L.circleMarker(\n",
+ " [42.397236, -71.072007],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_376bb2bdf38154527e255b85fb46627b = L.circleMarker(\n",
+ " [42.400829, -71.112241],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_333507e24b13a23eaab10a252e67b66d = L.circleMarker(\n",
+ " [42.429978, -71.203921],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_589c11a5f823b8268387c13c89498136 = L.circleMarker(\n",
+ " [42.410941, -71.168458],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b5928b461b83dfcc943eabd4646e2560 = L.circleMarker(\n",
+ " [42.396589, -71.122704],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_56c5a06974c8e4d12fe2f8e2e6fbfb34 = L.circleMarker(\n",
+ " [42.38859, -71.119303],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_353cc8d239cc180c6c808859e3158466 = L.circleMarker(\n",
+ " [42.388412, -71.119219],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_457376130881b80bd097935b4ace49eb = L.circleMarker(\n",
+ " [42.383573, -71.112746],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_315a33af674310870a6f41fb83a743d2 = L.circleMarker(\n",
+ " [42.383988, -71.110771],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3fb983d5583e3177bef41e8979dc7dfb = L.circleMarker(\n",
+ " [42.382131, -71.102659],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_32b21ca38e9b5aaf1fb8a9d17f8942e2 = L.circleMarker(\n",
+ " [42.382238, -71.102512],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_03844f171b77c446ae1b6f1e6d4caee5 = L.circleMarker(\n",
+ " [42.380957, -71.097894],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_01747e509f4eeef8b2782b660b8637c4 = L.circleMarker(\n",
+ " [42.380072, -71.096887],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_98bf862f812fd658fbdc5834d4532dd5 = L.circleMarker(\n",
+ " [42.381759, -71.093444],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_15db680219f0bcbc345d2437ab37a5b6 = L.circleMarker(\n",
+ " [42.379731, -71.094916],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6f14c9c8237db8fc6da42ec6114fb72c = L.circleMarker(\n",
+ " [42.377355, -71.094764],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_606f6d3b31b0c535ac13a696f27e35aa = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var poly_line_f2b5242141ca3cb1bb7ae431fa31ef62 = L.polyline(\n",
+ " [[42.351001, -71.045001], [42.351052, -71.044959], [42.347902, -71.040407], [42.34898, -71.03588], [42.347795, -71.035964], [42.344315, -71.033918], [42.338284, -71.013043], [42.338284, -71.013043], [42.3359, -71.023658], [42.329187, -71.035189], [42.34085, -71.071196], [42.349993, -71.067854], [42.352314, -71.067311], [42.352445, -71.066839], [42.350941, -71.059567], [42.353717, -71.061676], [42.355298, -71.061249], [42.355519, -71.063037], [42.354894, -71.063514], [42.353792, -71.068086], [42.356682, -71.066568], [42.358056, -71.062171], [42.357428, -71.058565], [42.359295, -71.059255], [42.36049, -71.056995], [42.361263, -71.056994], [42.361534, -71.056819], [42.364032, -71.055569], [42.365251, -71.055582], [42.360949, -71.051539], [42.359704, -71.054519], [42.358757, -71.057201], [42.352211, -71.051172], [42.35199, -71.049726], [42.351671, -71.050269], [42.350902, -71.048805], [42.353667, -71.047121], [42.352749, -71.04333], [42.364857, -71.041248], [42.365172, -71.035967], [42.363961, -71.033209], [42.207533, -71.001295], [42.23913, -71.003762], [42.245312, -71.000444], [42.25784, -71.02898], [42.276371, -71.009534], [42.27938, -71.014026], [42.274385, -71.024029], [42.316288, -71.037188], [42.315966, -71.034107], [42.316292, -71.045242], [42.325624, -71.049204], [42.285832, -71.063084], [42.284476, -71.063921], [42.296172, -71.087449], [42.324934, -71.06221], [42.327134, -71.066844], [42.339762, -71.090331]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4c1d665014b78cff08c92306d94cd420 = L.circleMarker(\n",
+ " [42.351001, -71.045001],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8dc8ef88bc9d3ba327f785a338db7de2 = L.circleMarker(\n",
+ " [42.351052, -71.044959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a7938031dd1f44cde2f55ab862109cac = L.circleMarker(\n",
+ " [42.347902, -71.040407],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_937892678b9d1c504970b230e1f3f906 = L.circleMarker(\n",
+ " [42.34898, -71.03588],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_06ffc722fa9759eb4ad266f76623c30e = L.circleMarker(\n",
+ " [42.347795, -71.035964],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1a17fa89ed3cf04e82a147e4d54f6e90 = L.circleMarker(\n",
+ " [42.344315, -71.033918],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_39519a8f477a4902b0a400c941faa96d = L.circleMarker(\n",
+ " [42.338284, -71.013043],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3e220ee8a8fd63d048ac41f177572320 = L.circleMarker(\n",
+ " [42.338284, -71.013043],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e62f57627abe788bcc0e42d0e78a3cf7 = L.circleMarker(\n",
+ " [42.3359, -71.023658],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f8d705e4cef756f8b2f450877f8de1bf = L.circleMarker(\n",
+ " [42.329187, -71.035189],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_85ea0f6990b8c0436ff642a472d26d58 = L.circleMarker(\n",
+ " [42.34085, -71.071196],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ac1a8d77b0076383c03eb966efb2f3f4 = L.circleMarker(\n",
+ " [42.349993, -71.067854],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_87c0c8d103adcaba14bab0571d924b31 = L.circleMarker(\n",
+ " [42.352314, -71.067311],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5ea80c7aa112619c14dd2f989a831c32 = L.circleMarker(\n",
+ " [42.352445, -71.066839],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2124639d2d05e84f703c5ea5e4323083 = L.circleMarker(\n",
+ " [42.350941, -71.059567],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_81ce61e5a21d890613b61a3efc544eb9 = L.circleMarker(\n",
+ " [42.353717, -71.061676],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_58acf219e0cff5a9da8048f98d7048c0 = L.circleMarker(\n",
+ " [42.355298, -71.061249],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e8cd7067ac53137766c177bd58c7f0e0 = L.circleMarker(\n",
+ " [42.355519, -71.063037],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_28165399846baa319dca2924809fb005 = L.circleMarker(\n",
+ " [42.354894, -71.063514],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e41eca48e459ab91a824407702f5e01e = L.circleMarker(\n",
+ " [42.353792, -71.068086],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c7177e17c90177a53a294854f8b5020b = L.circleMarker(\n",
+ " [42.356682, -71.066568],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_62e40f702459e2833cda112d2e92d348 = L.circleMarker(\n",
+ " [42.358056, -71.062171],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5d69971c6871a5702272ea5527b6f025 = L.circleMarker(\n",
+ " [42.357428, -71.058565],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_88edfeb0f0eeb397d4092568c1bdbf65 = L.circleMarker(\n",
+ " [42.359295, -71.059255],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_18e231a6f12f8765a1eb6773a3df7553 = L.circleMarker(\n",
+ " [42.36049, -71.056995],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4fbea171fd43f315a167abe1746994ad = L.circleMarker(\n",
+ " [42.361263, -71.056994],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_250fa1b2b7f19fd3ace482c6f1214ba3 = L.circleMarker(\n",
+ " [42.361534, -71.056819],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b724ae954c3f5dae861e23b590b92468 = L.circleMarker(\n",
+ " [42.364032, -71.055569],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_da7996b70a8e6b08bc492f589918ddab = L.circleMarker(\n",
+ " [42.365251, -71.055582],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b31e338c87395a3dcc0812a1ddfbcacd = L.circleMarker(\n",
+ " [42.360949, -71.051539],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_cddc78ab06acda59305edec03b081de4 = L.circleMarker(\n",
+ " [42.359704, -71.054519],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a919f2f23ce95c48d1c97a5491b17f9f = L.circleMarker(\n",
+ " [42.358757, -71.057201],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9dc9287490c6c0e18cd51baa0dc33bb0 = L.circleMarker(\n",
+ " [42.352211, -71.051172],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_57fd522861ad7444360c63c0dc54eeaf = L.circleMarker(\n",
+ " [42.35199, -71.049726],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9c3c65ffb8ff463579c2f8b6beb210b6 = L.circleMarker(\n",
+ " [42.351671, -71.050269],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f1f8b18e90c2b74eedb75e7237062791 = L.circleMarker(\n",
+ " [42.350902, -71.048805],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5426bf3e0781376f2d382a9450d2af99 = L.circleMarker(\n",
+ " [42.353667, -71.047121],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_69797760d2a1b8c0adc41646e2c50cad = L.circleMarker(\n",
+ " [42.352749, -71.04333],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c58fa3285d7656c6d839ab8ad4b74fd8 = L.circleMarker(\n",
+ " [42.364857, -71.041248],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d2574dab994dd1c5b2f9147efc0dd260 = L.circleMarker(\n",
+ " [42.365172, -71.035967],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0a2b415fe7d0b73957e8e3a7fbe002eb = L.circleMarker(\n",
+ " [42.363961, -71.033209],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_eac140192ce2352e27bc7866e6fe5924 = L.circleMarker(\n",
+ " [42.207533, -71.001295],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d106989e8fc6f71c93fcca64fd6b141c = L.circleMarker(\n",
+ " [42.23913, -71.003762],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b69f46d01ace9bce54e911dea7a3597b = L.circleMarker(\n",
+ " [42.245312, -71.000444],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1239cade63f86c2348998ffb513ec16a = L.circleMarker(\n",
+ " [42.25784, -71.02898],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e74362afb8686cd21961fd770616383e = L.circleMarker(\n",
+ " [42.276371, -71.009534],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2f56a1593ccf788f0522f2bc738075ee = L.circleMarker(\n",
+ " [42.27938, -71.014026],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_abe7118bbb7e62bdbcabfbd5c6187be5 = L.circleMarker(\n",
+ " [42.274385, -71.024029],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c2f833eb6afb3e7be5ab345c751a7bfe = L.circleMarker(\n",
+ " [42.316288, -71.037188],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9859793751ec074a9f9d33d71a3f474f = L.circleMarker(\n",
+ " [42.315966, -71.034107],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b8940bf300052ef52dd258bb2ac6a207 = L.circleMarker(\n",
+ " [42.316292, -71.045242],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d2d1f871698a321555a13bd310cfb237 = L.circleMarker(\n",
+ " [42.325624, -71.049204],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_839bb718d82f5379449949ecf25594b0 = L.circleMarker(\n",
+ " [42.285832, -71.063084],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ae9f1c39a65764c87e19bbbfb12f7ffb = L.circleMarker(\n",
+ " [42.284476, -71.063921],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5ca2e055ab1578c42f3761482789489d = L.circleMarker(\n",
+ " [42.296172, -71.087449],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_83f0a37ec119d45aba2dd9e535e5fac4 = L.circleMarker(\n",
+ " [42.324934, -71.06221],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ed204946afbf615da2697f393b8d5391 = L.circleMarker(\n",
+ " [42.327134, -71.066844],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e8bd2f56b4f7e94ebf1417fe21ed8b05 = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var poly_line_f02b5118f85a2ba0e95a09c96b66ea25 = L.polyline(\n",
+ " [[42.356001, -71.055001], [42.358851, -71.064277], [42.357529, -71.069242], [42.348915, -71.072038], [42.349997, -71.085166], [42.34194, -71.083465], [42.329829, -71.090904], [42.325354, -71.09454], [42.33047, -71.099348], [42.332009, -71.098267], [42.332401, -71.100092], [42.338007, -71.099284], [42.336448, -71.10963], [42.336, -71.112246], [42.331874, -71.125847], [42.342619, -71.121734], [42.351932, -71.124132], [42.352999, -71.130896], [42.352585, -71.131464], [42.356842, -71.143863], [42.349667, -71.146009], [42.350083, -71.146124], [42.343387, -71.142763], [42.341017, -71.162549], [42.33162, -71.155413], [42.324682, -71.16198], [42.314504, -71.227365], [42.313798, -71.359917], [42.361942, -71.18542], [42.388907, -71.133098], [42.378452, -71.115739], [42.378275, -71.114496], [42.376696, -71.115952], [42.375457, -71.119379], [42.373491, -71.118959], [42.373266, -71.120839], [42.363221, -71.128473], [42.374259, -71.110851], [42.364024, -71.1088], [42.363685, -71.101083], [42.36265, -71.10141], [42.3614, -71.101475], [42.362555, -71.096306], [42.361529, -71.090578], [42.367607, -71.08097], [42.356537, -71.075414], [42.351083, -71.106096], [42.348977, -71.091358], [42.346361, -71.089677], [42.344689, -71.096959], [42.342001, -71.095003], [42.341231, -71.094327], [42.339096, -71.093834], [42.339762, -71.090331]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4e653a429a12f0146014f3004c285cd8 = L.circleMarker(\n",
+ " [42.356001, -71.055001],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_dac9ae0c4bfde880860c9dac6921414b = L.circleMarker(\n",
+ " [42.358851, -71.064277],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5b6fcb7d3088dee1b57b487102513689 = L.circleMarker(\n",
+ " [42.357529, -71.069242],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6a54ba6267c245f983faf9661e62c8fc = L.circleMarker(\n",
+ " [42.348915, -71.072038],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_999c8801f0e4da8bce052add852386f3 = L.circleMarker(\n",
+ " [42.349997, -71.085166],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_891dd4d510aa8b11e5fc4e8baff6b81f = L.circleMarker(\n",
+ " [42.34194, -71.083465],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_cfec88a183cee88ec0fb491fe63bd407 = L.circleMarker(\n",
+ " [42.329829, -71.090904],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_92c89c254851eac1fb7848fbfdb50760 = L.circleMarker(\n",
+ " [42.325354, -71.09454],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3af4018efa0abdbfba928f4785320207 = L.circleMarker(\n",
+ " [42.33047, -71.099348],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_817e1f47fbe0dac667aabbe43eb093ca = L.circleMarker(\n",
+ " [42.332009, -71.098267],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ceaabf4de6c1ec86b8399ffa9da359c0 = L.circleMarker(\n",
+ " [42.332401, -71.100092],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_74cee63d6bb3389925a89d4185e6924e = L.circleMarker(\n",
+ " [42.338007, -71.099284],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f87b9abfba16daad4bc70886074e3e70 = L.circleMarker(\n",
+ " [42.336448, -71.10963],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_619c62f04f0492e018972b0aa8113d76 = L.circleMarker(\n",
+ " [42.336, -71.112246],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d8229dd8855ccd92a46873b9553f17a0 = L.circleMarker(\n",
+ " [42.331874, -71.125847],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_40562ab7092b58e488ac9663c959226e = L.circleMarker(\n",
+ " [42.342619, -71.121734],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_208f08e42e308ca0bc83a4588e8f8a21 = L.circleMarker(\n",
+ " [42.351932, -71.124132],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_20ab0f6cc53f7c2488394f16171deec8 = L.circleMarker(\n",
+ " [42.352999, -71.130896],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_357a000e06f04eaf6545009731e55882 = L.circleMarker(\n",
+ " [42.352585, -71.131464],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_45c358803fe96ffeb38847b24e88676c = L.circleMarker(\n",
+ " [42.356842, -71.143863],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f6330142f5a3bfa22f29e4f594b5a9e8 = L.circleMarker(\n",
+ " [42.349667, -71.146009],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_58ab701581116b444da8de2f98445628 = L.circleMarker(\n",
+ " [42.350083, -71.146124],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0df83518967a5120260bb50a6c67def0 = L.circleMarker(\n",
+ " [42.343387, -71.142763],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4e5c912e15af454d32c737d90032612a = L.circleMarker(\n",
+ " [42.341017, -71.162549],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a261cbeb060d9a8b9e680372ad1122dd = L.circleMarker(\n",
+ " [42.33162, -71.155413],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6a22a1cf855bbf9f3ec07c5581e60670 = L.circleMarker(\n",
+ " [42.324682, -71.16198],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_352e3da5f7809337339bda338eeb0a5b = L.circleMarker(\n",
+ " [42.314504, -71.227365],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e1c84db727d3bee75cf5821a72ffa793 = L.circleMarker(\n",
+ " [42.313798, -71.359917],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_45200742c9feb338f92f7de3bb9e568e = L.circleMarker(\n",
+ " [42.361942, -71.18542],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3527be91dede5ff97f61f9a0cf2cdc4f = L.circleMarker(\n",
+ " [42.388907, -71.133098],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5b2a88298ba49b772b8bb96605cf1d0c = L.circleMarker(\n",
+ " [42.378452, -71.115739],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5d22b48f7a5e873d493c475ee0e6135b = L.circleMarker(\n",
+ " [42.378275, -71.114496],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2d57cb40e0e3981caa7228edffc15379 = L.circleMarker(\n",
+ " [42.376696, -71.115952],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_53fa03d40978858fc3e0851a9629a036 = L.circleMarker(\n",
+ " [42.375457, -71.119379],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_85d80e67ad15c20df105d6ce2304de7d = L.circleMarker(\n",
+ " [42.373491, -71.118959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_298c8556e1e476269a0f1451d93ae494 = L.circleMarker(\n",
+ " [42.373266, -71.120839],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_85126bcfe1427f2f7072750c2290f64b = L.circleMarker(\n",
+ " [42.363221, -71.128473],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0dbb7342e4112dbbb8c2a2c82427edb5 = L.circleMarker(\n",
+ " [42.374259, -71.110851],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7c0bb80dc40ac8c3ba33d941502680a9 = L.circleMarker(\n",
+ " [42.364024, -71.1088],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_84ae6cd1c960597d934b724b97f7e9c2 = L.circleMarker(\n",
+ " [42.363685, -71.101083],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b83efaea369c8cbd9a03f1e05a02edb4 = L.circleMarker(\n",
+ " [42.36265, -71.10141],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_aa74ca1c120f522b6982f2d905c0a640 = L.circleMarker(\n",
+ " [42.3614, -71.101475],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f0fa1c2456da17e29898857dd5df491f = L.circleMarker(\n",
+ " [42.362555, -71.096306],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_bbb5b5c4624a07aa9a1ba537ed4e21af = L.circleMarker(\n",
+ " [42.361529, -71.090578],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6c72367ee97a9a01d58d106611142c1d = L.circleMarker(\n",
+ " [42.367607, -71.08097],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8f4b1a52c6c9c374683bee4c66972920 = L.circleMarker(\n",
+ " [42.356537, -71.075414],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_384c19e58afea65d4323be9dafe57ccf = L.circleMarker(\n",
+ " [42.351083, -71.106096],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b5b5cb0597a89e824264aade3ca407e1 = L.circleMarker(\n",
+ " [42.348977, -71.091358],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_738d266f5838bc78fc2dd13067646d46 = L.circleMarker(\n",
+ " [42.346361, -71.089677],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_37831f8f5649e6e85a6d9c9a19254dcf = L.circleMarker(\n",
+ " [42.344689, -71.096959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0a1478f102383ea21d9727e14f1ad2db = L.circleMarker(\n",
+ " [42.342001, -71.095003],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f78cee1ef672cf95a6929f103df02f68 = L.circleMarker(\n",
+ " [42.341231, -71.094327],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_945f35205f8c93525f5131f197dffe3c = L.circleMarker(\n",
+ " [42.339096, -71.093834],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4b5662a6a52c7c90ee66f9c710cd1d92 = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_0f95b100b8e3f51c9cc2f855eec349c4);\n",
+ " \n",
+ "&lt;/script&gt;\n",
+ "&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
+ ],
+ "text/plain": [
+ "<folium.folium.Map at 0x14fd934d0>"
+ ]
},
"execution_count": 21,
"metadata": {},
@@ -587,29 +3374,26 @@
"\n",
"# Display the map\n",
"m"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:07:38.444061Z",
- "start_time": "2023-11-07T23:07:38.336503Z"
- }
- },
- "id": "702adaec008a6ec8"
+ ]
},
{
"cell_type": "markdown",
+ "id": "a947e49e27c734e9",
+ "metadata": {},
"source": [
"## Results"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "a947e49e27c734e9"
+ ]
},
{
"cell_type": "code",
"execution_count": 22,
+ "id": "4106acf2adad01d7",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:07:38.445284Z",
+ "start_time": "2023-11-07T23:07:38.401884Z"
+ }
+ },
"outputs": [
{
"name": "stdout",
@@ -629,19 +3413,18 @@
"print(\"Route 1 has {} waypoints\".format(route_1_waypoints))\n",
"print(\"Route 2 has {} waypoints\".format(route_2_waypoints))\n",
"print(\"Route 3 has {} waypoints\".format(route_3_waypoints))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:07:38.445284Z",
- "start_time": "2023-11-07T23:07:38.401884Z"
- }
- },
- "id": "4106acf2adad01d7"
+ ]
},
{
"cell_type": "code",
"execution_count": 23,
+ "id": "c58106faf0fc7f4e",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:07:40.521741Z",
+ "start_time": "2023-11-07T23:07:38.405889Z"
+ }
+ },
"outputs": [
{
"name": "stdout",
@@ -664,29 +3447,26 @@
"trip_hrs_3 = utils.get_trip_time(route_3, route_3_waypoints, utils.list_to_string([centroids[2]]),\n",
" northeastern_coordinate)\n",
"print(\"The trip will take {} hours\".format(trip_hrs_3))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:07:40.521741Z",
- "start_time": "2023-11-07T23:07:38.405889Z"
- }
- },
- "id": "c58106faf0fc7f4e"
+ ]
},
{
"cell_type": "markdown",
+ "id": "4068a0b6460f19ab",
+ "metadata": {},
"source": [
"# 10 ROUTES (because I can)"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "4068a0b6460f19ab"
+ ]
},
{
"cell_type": "code",
"execution_count": 24,
+ "id": "5995d6556f940e67",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:09:18.376367Z",
+ "start_time": "2023-11-07T23:07:40.529888Z"
+ }
+ },
"outputs": [
{
"name": "stderr",
@@ -706,29 +3486,26 @@
" centroids.append([42.365 + i * 0.01, -71.054 + i * 0.01])\n",
"\n",
"_, routes = utils.cluster_and_optimize(TotalList, centroids, northeastern_coordinate, time_diff=0.5, max_time=24)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:09:18.376367Z",
- "start_time": "2023-11-07T23:07:40.529888Z"
- }
- },
- "id": "5995d6556f940e67"
+ ]
},
{
"cell_type": "markdown",
+ "id": "8c6f5aeb5e6c2832",
+ "metadata": {},
"source": [
"## Create JSON"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "8c6f5aeb5e6c2832"
+ ]
},
{
"cell_type": "code",
"execution_count": 25,
+ "id": "375b090921cab03e",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:09:18.395941Z",
+ "start_time": "2023-11-07T23:09:18.378652Z"
+ }
+ },
"outputs": [],
"source": [
"# Create a JSON request for the API\n",
@@ -736,19 +3513,18 @@
"route_strings = []\n",
"for route in routes:\n",
" route_strings.append(utils.list_to_string(route))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:09:18.395941Z",
- "start_time": "2023-11-07T23:09:18.378652Z"
- }
- },
- "id": "375b090921cab03e"
+ ]
},
{
"cell_type": "code",
"execution_count": 26,
+ "id": "74f619c6df3bd6c4",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:09:21.149586Z",
+ "start_time": "2023-11-07T23:09:18.384347Z"
+ }
+ },
"outputs": [],
"source": [
"# Create a dataframe from the JSON\n",
@@ -758,19 +3534,18 @@
" \n",
"# Concatenate the dataframes\n",
"df = pd.concat(dfs, ignore_index=True)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:09:21.149586Z",
- "start_time": "2023-11-07T23:09:18.384347Z"
- }
- },
- "id": "74f619c6df3bd6c4"
+ ]
},
{
"cell_type": "code",
"execution_count": 30,
+ "id": "488924ebe78c61aa",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:10:17.312994Z",
+ "start_time": "2023-11-07T23:10:17.307208Z"
+ }
+ },
"outputs": [
{
"name": "stderr",
@@ -788,24 +3563,244 @@
"# Add columns for the route number\n",
"for i in range(len(routes)):\n",
" df['route'].iloc[i * len(routes[i]):(i + 1) * len(routes[i])] = i + 1"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:10:17.312994Z",
- "start_time": "2023-11-07T23:10:17.307208Z"
- }
- },
- "id": "488924ebe78c61aa"
+ ]
},
{
"cell_type": "code",
"execution_count": 31,
+ "id": "8e436ba5d3949420",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:10:19.393773Z",
+ "start_time": "2023-11-07T23:10:19.390813Z"
+ }
+ },
"outputs": [
{
"data": {
- "text/plain": " waypoint_index trips_index \\\n0 0 0 \n1 1 0 \n2 2 0 \n3 3 0 \n4 4 0 \n.. ... ... \n184 11 0 \n185 12 0 \n186 13 0 \n187 14 0 \n188 15 0 \n\n hint distance \\\n0 1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN... 8.262982 \n1 LRUugHAVLoA1AAAA7wEAAKAAAADqAAAAYZa9QBEBXEIOWo... 1.865658 \n2 lM4AgM3LAIAEAAAAHAAAAJEAAAC_AgAAyLv6PxJ7NEGyPn... 2.242639 \n3 ZQ0fgPINH4AgAAAAEQAAAFEAAAAqAAAArYRYQRHu20BfWQ... 48.627645 \n4 HR8ugIJiBICVAQAARwAAAAAAAACLAAAAQ1M0Qu3l-EAAAA... 0.645763 \n.. ... ... \n184 -2EugABiLoCcAQAAigAAAAAAAAAAAAAAMQI3QqZ0dUEAAA... 7.363621 \n185 VSIfgAYjH4AUAAAAAAAAACUBAADDAAAAaIcPQAAAAADYBw... 18.888832 \n186 0OEhgPvhIYADAAAABgAAAA8AAAA0AAAA2lq-PipQFD-Y-N... 2.009578 \n187 C-AhgGbgIYBZAAAAMQAAAAAAAABqAAAAj5QfQS1zq0AAAA... 4.887502 \n188 DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA... 0.236958 \n\n name location lat \\\n0 [-71.053931, 42.365054] -71.053931 \n1 [-71.061735, 42.369195] -71.061735 \n2 Miller's River Littoral Way [-71.065634, 42.371832] -71.065634 \n3 [-71.06828, 42.369868] -71.068280 \n4 [-71.094764, 42.377355] -71.094764 \n.. ... ... ... \n184 [-71.102659, 42.382131] -71.102659 \n185 [-71.110851, 42.374259] -71.110851 \n186 [-71.085166, 42.349997] -71.085166 \n187 [-71.091358, 42.348977] -71.091358 \n188 Northeastern (Inbound) [-71.090331, 42.339762] -71.090331 \n\n lon route \n0 42.365054 1 \n1 42.369195 1 \n2 42.371832 1 \n3 42.369868 4 \n4 42.377355 1 \n.. ... ... \n184 42.382131 10 \n185 42.374259 6 \n186 42.349997 6 \n187 42.348977 6 \n188 42.339762 6 \n\n[189 rows x 9 columns]",
- "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>waypoint_index</th>\n <th>trips_index</th>\n <th>hint</th>\n <th>distance</th>\n <th>name</th>\n <th>location</th>\n <th>lat</th>\n <th>lon</th>\n <th>route</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>0</td>\n <td>0</td>\n <td>1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN...</td>\n <td>8.262982</td>\n <td></td>\n <td>[-71.053931, 42.365054]</td>\n <td>-71.053931</td>\n <td>42.365054</td>\n <td>1</td>\n </tr>\n <tr>\n <th>1</th>\n <td>1</td>\n <td>0</td>\n <td>LRUugHAVLoA1AAAA7wEAAKAAAADqAAAAYZa9QBEBXEIOWo...</td>\n <td>1.865658</td>\n <td></td>\n <td>[-71.061735, 42.369195]</td>\n <td>-71.061735</td>\n <td>42.369195</td>\n <td>1</td>\n </tr>\n <tr>\n <th>2</th>\n <td>2</td>\n <td>0</td>\n <td>lM4AgM3LAIAEAAAAHAAAAJEAAAC_AgAAyLv6PxJ7NEGyPn...</td>\n <td>2.242639</td>\n <td>Miller's River Littoral Way</td>\n <td>[-71.065634, 42.371832]</td>\n <td>-71.065634</td>\n <td>42.371832</td>\n <td>1</td>\n </tr>\n <tr>\n <th>3</th>\n <td>3</td>\n <td>0</td>\n <td>ZQ0fgPINH4AgAAAAEQAAAFEAAAAqAAAArYRYQRHu20BfWQ...</td>\n <td>48.627645</td>\n <td></td>\n <td>[-71.06828, 42.369868]</td>\n <td>-71.068280</td>\n <td>42.369868</td>\n <td>4</td>\n </tr>\n <tr>\n <th>4</th>\n <td>4</td>\n <td>0</td>\n <td>HR8ugIJiBICVAQAARwAAAAAAAACLAAAAQ1M0Qu3l-EAAAA...</td>\n <td>0.645763</td>\n <td></td>\n <td>[-71.094764, 42.377355]</td>\n <td>-71.094764</td>\n <td>42.377355</td>\n <td>1</td>\n </tr>\n <tr>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th>184</th>\n <td>11</td>\n <td>0</td>\n <td>-2EugABiLoCcAQAAigAAAAAAAAAAAAAAMQI3QqZ0dUEAAA...</td>\n <td>7.363621</td>\n <td></td>\n <td>[-71.102659, 42.382131]</td>\n <td>-71.102659</td>\n <td>42.382131</td>\n <td>10</td>\n </tr>\n <tr>\n <th>185</th>\n <td>12</td>\n <td>0</td>\n <td>VSIfgAYjH4AUAAAAAAAAACUBAADDAAAAaIcPQAAAAADYBw...</td>\n <td>18.888832</td>\n <td></td>\n <td>[-71.110851, 42.374259]</td>\n <td>-71.110851</td>\n <td>42.374259</td>\n <td>6</td>\n </tr>\n <tr>\n <th>186</th>\n <td>13</td>\n <td>0</td>\n <td>0OEhgPvhIYADAAAABgAAAA8AAAA0AAAA2lq-PipQFD-Y-N...</td>\n <td>2.009578</td>\n <td></td>\n <td>[-71.085166, 42.349997]</td>\n <td>-71.085166</td>\n <td>42.349997</td>\n <td>6</td>\n </tr>\n <tr>\n <th>187</th>\n <td>14</td>\n <td>0</td>\n <td>C-AhgGbgIYBZAAAAMQAAAAAAAABqAAAAj5QfQS1zq0AAAA...</td>\n <td>4.887502</td>\n <td></td>\n <td>[-71.091358, 42.348977]</td>\n <td>-71.091358</td>\n <td>42.348977</td>\n <td>6</td>\n </tr>\n <tr>\n <th>188</th>\n <td>15</td>\n <td>0</td>\n <td>DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA...</td>\n <td>0.236958</td>\n <td>Northeastern (Inbound)</td>\n <td>[-71.090331, 42.339762]</td>\n <td>-71.090331</td>\n <td>42.339762</td>\n <td>6</td>\n </tr>\n </tbody>\n</table>\n<p>189 rows × 9 columns</p>\n</div>"
+ "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>waypoint_index</th>\n",
+ " <th>trips_index</th>\n",
+ " <th>hint</th>\n",
+ " <th>distance</th>\n",
+ " <th>name</th>\n",
+ " <th>location</th>\n",
+ " <th>lat</th>\n",
+ " <th>lon</th>\n",
+ " <th>route</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>0</td>\n",
+ " <td>0</td>\n",
+ " <td>1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN...</td>\n",
+ " <td>8.262982</td>\n",
+ " <td></td>\n",
+ " <td>[-71.053931, 42.365054]</td>\n",
+ " <td>-71.053931</td>\n",
+ " <td>42.365054</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>1</td>\n",
+ " <td>0</td>\n",
+ " <td>LRUugHAVLoA1AAAA7wEAAKAAAADqAAAAYZa9QBEBXEIOWo...</td>\n",
+ " <td>1.865658</td>\n",
+ " <td></td>\n",
+ " <td>[-71.061735, 42.369195]</td>\n",
+ " <td>-71.061735</td>\n",
+ " <td>42.369195</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>2</td>\n",
+ " <td>0</td>\n",
+ " <td>lM4AgM3LAIAEAAAAHAAAAJEAAAC_AgAAyLv6PxJ7NEGyPn...</td>\n",
+ " <td>2.242639</td>\n",
+ " <td>Miller's River Littoral Way</td>\n",
+ " <td>[-71.065634, 42.371832]</td>\n",
+ " <td>-71.065634</td>\n",
+ " <td>42.371832</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>3</td>\n",
+ " <td>0</td>\n",
+ " <td>ZQ0fgPINH4AgAAAAEQAAAFEAAAAqAAAArYRYQRHu20BfWQ...</td>\n",
+ " <td>48.627645</td>\n",
+ " <td></td>\n",
+ " <td>[-71.06828, 42.369868]</td>\n",
+ " <td>-71.068280</td>\n",
+ " <td>42.369868</td>\n",
+ " <td>4</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>4</td>\n",
+ " <td>0</td>\n",
+ " <td>HR8ugIJiBICVAQAARwAAAAAAAACLAAAAQ1M0Qu3l-EAAAA...</td>\n",
+ " <td>0.645763</td>\n",
+ " <td></td>\n",
+ " <td>[-71.094764, 42.377355]</td>\n",
+ " <td>-71.094764</td>\n",
+ " <td>42.377355</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>...</th>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " <td>...</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>184</th>\n",
+ " <td>11</td>\n",
+ " <td>0</td>\n",
+ " <td>-2EugABiLoCcAQAAigAAAAAAAAAAAAAAMQI3QqZ0dUEAAA...</td>\n",
+ " <td>7.363621</td>\n",
+ " <td></td>\n",
+ " <td>[-71.102659, 42.382131]</td>\n",
+ " <td>-71.102659</td>\n",
+ " <td>42.382131</td>\n",
+ " <td>10</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>185</th>\n",
+ " <td>12</td>\n",
+ " <td>0</td>\n",
+ " <td>VSIfgAYjH4AUAAAAAAAAACUBAADDAAAAaIcPQAAAAADYBw...</td>\n",
+ " <td>18.888832</td>\n",
+ " <td></td>\n",
+ " <td>[-71.110851, 42.374259]</td>\n",
+ " <td>-71.110851</td>\n",
+ " <td>42.374259</td>\n",
+ " <td>6</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>186</th>\n",
+ " <td>13</td>\n",
+ " <td>0</td>\n",
+ " <td>0OEhgPvhIYADAAAABgAAAA8AAAA0AAAA2lq-PipQFD-Y-N...</td>\n",
+ " <td>2.009578</td>\n",
+ " <td></td>\n",
+ " <td>[-71.085166, 42.349997]</td>\n",
+ " <td>-71.085166</td>\n",
+ " <td>42.349997</td>\n",
+ " <td>6</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>187</th>\n",
+ " <td>14</td>\n",
+ " <td>0</td>\n",
+ " <td>C-AhgGbgIYBZAAAAMQAAAAAAAABqAAAAj5QfQS1zq0AAAA...</td>\n",
+ " <td>4.887502</td>\n",
+ " <td></td>\n",
+ " <td>[-71.091358, 42.348977]</td>\n",
+ " <td>-71.091358</td>\n",
+ " <td>42.348977</td>\n",
+ " <td>6</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>188</th>\n",
+ " <td>15</td>\n",
+ " <td>0</td>\n",
+ " <td>DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA...</td>\n",
+ " <td>0.236958</td>\n",
+ " <td>Northeastern (Inbound)</td>\n",
+ " <td>[-71.090331, 42.339762]</td>\n",
+ " <td>-71.090331</td>\n",
+ " <td>42.339762</td>\n",
+ " <td>6</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "<p>189 rows × 9 columns</p>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " waypoint_index trips_index \\\n",
+ "0 0 0 \n",
+ "1 1 0 \n",
+ "2 2 0 \n",
+ "3 3 0 \n",
+ "4 4 0 \n",
+ ".. ... ... \n",
+ "184 11 0 \n",
+ "185 12 0 \n",
+ "186 13 0 \n",
+ "187 14 0 \n",
+ "188 15 0 \n",
+ "\n",
+ " hint distance \\\n",
+ "0 1IwsgDuNLIBFAAAAWgEAAA8AAAAAAAAAFQP1QGa9GUI7qN... 8.262982 \n",
+ "1 LRUugHAVLoA1AAAA7wEAAKAAAADqAAAAYZa9QBEBXEIOWo... 1.865658 \n",
+ "2 lM4AgM3LAIAEAAAAHAAAAJEAAAC_AgAAyLv6PxJ7NEGyPn... 2.242639 \n",
+ "3 ZQ0fgPINH4AgAAAAEQAAAFEAAAAqAAAArYRYQRHu20BfWQ... 48.627645 \n",
+ "4 HR8ugIJiBICVAQAARwAAAAAAAACLAAAAQ1M0Qu3l-EAAAA... 0.645763 \n",
+ ".. ... ... \n",
+ "184 -2EugABiLoCcAQAAigAAAAAAAAAAAAAAMQI3QqZ0dUEAAA... 7.363621 \n",
+ "185 VSIfgAYjH4AUAAAAAAAAACUBAADDAAAAaIcPQAAAAADYBw... 18.888832 \n",
+ "186 0OEhgPvhIYADAAAABgAAAA8AAAA0AAAA2lq-PipQFD-Y-N... 2.009578 \n",
+ "187 C-AhgGbgIYBZAAAAMQAAAAAAAABqAAAAj5QfQS1zq0AAAA... 4.887502 \n",
+ "188 DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA... 0.236958 \n",
+ "\n",
+ " name location lat \\\n",
+ "0 [-71.053931, 42.365054] -71.053931 \n",
+ "1 [-71.061735, 42.369195] -71.061735 \n",
+ "2 Miller's River Littoral Way [-71.065634, 42.371832] -71.065634 \n",
+ "3 [-71.06828, 42.369868] -71.068280 \n",
+ "4 [-71.094764, 42.377355] -71.094764 \n",
+ ".. ... ... ... \n",
+ "184 [-71.102659, 42.382131] -71.102659 \n",
+ "185 [-71.110851, 42.374259] -71.110851 \n",
+ "186 [-71.085166, 42.349997] -71.085166 \n",
+ "187 [-71.091358, 42.348977] -71.091358 \n",
+ "188 Northeastern (Inbound) [-71.090331, 42.339762] -71.090331 \n",
+ "\n",
+ " lon route \n",
+ "0 42.365054 1 \n",
+ "1 42.369195 1 \n",
+ "2 42.371832 1 \n",
+ "3 42.369868 4 \n",
+ "4 42.377355 1 \n",
+ ".. ... ... \n",
+ "184 42.382131 10 \n",
+ "185 42.374259 6 \n",
+ "186 42.349997 6 \n",
+ "187 42.348977 6 \n",
+ "188 42.339762 6 \n",
+ "\n",
+ "[189 rows x 9 columns]"
+ ]
},
"metadata": {},
"output_type": "display_data"
@@ -814,34 +3809,1297 @@
"source": [
"# Display the dataframe\n",
"display(df)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:10:19.393773Z",
- "start_time": "2023-11-07T23:10:19.390813Z"
- }
- },
- "id": "8e436ba5d3949420"
+ ]
},
{
"cell_type": "markdown",
+ "id": "1552586cb84a48c5",
+ "metadata": {},
"source": [
"## Map"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "1552586cb84a48c5"
+ ]
},
{
"cell_type": "code",
"execution_count": 37,
+ "id": "4305c6981e48e87f",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:13:22.619199Z",
+ "start_time": "2023-11-07T23:13:22.527566Z"
+ }
+ },
"outputs": [
{
"data": {
- "text/plain": "<folium.folium.Map at 0x16c5df950>",
- "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;html&gt;\n&lt;head&gt;\n \n &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n \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.9.3/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://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n \n &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n &lt;style&gt;\n #map_a113ca2999b944715e9a3600543bd417 {\n position: relative;\n width: 100.0%;\n height: 100.0%;\n left: 0.0%;\n top: 0.0%;\n }\n .leaflet-container { font-size: 1rem; }\n &lt;/style&gt;\n \n&lt;/head&gt;\n&lt;body&gt;\n \n \n &lt;div class=&quot;folium-map&quot; id=&quot;map_a113ca2999b944715e9a3600543bd417&quot; &gt;&lt;/div&gt;\n \n&lt;/body&gt;\n&lt;script&gt;\n \n \n var map_a113ca2999b944715e9a3600543bd417 = L.map(\n &quot;map_a113ca2999b944715e9a3600543bd417&quot;,\n {\n center: [42.359489216931216, -71.0710662910053],\n crs: L.CRS.EPSG3857,\n zoom: 11,\n zoomControl: true,\n preferCanvas: false,\n }\n );\n\n \n\n \n \n var tile_layer_cebae13d8ec3d03386f2019344ecca4c = L.tileLayer(\n &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\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_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_9addb4268863b97ef96e5acfa5328f7e = L.polyline(\n [[42.365054, -71.053931], [42.369195, -71.061735], [42.371832, -71.065634], [42.377355, -71.094764], [42.365968, -71.062507], [42.347902, -71.040407], [42.34898, -71.03588], [42.347795, -71.035964], [42.344315, -71.033918]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_410411d141f5717d857c667c74fee7d1 = L.circleMarker(\n [42.365054, -71.053931],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_14221b7fd2d1b72df63da055db173add = L.circleMarker(\n [42.369195, -71.061735],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_89c0b5470ba45d0d2048f366b19e903e = L.circleMarker(\n [42.371832, -71.065634],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_29804b45ae78079b84f2c55dbb7d7669 = L.circleMarker(\n [42.377355, -71.094764],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_c11de2bcd2b7cab21dd1ea0ac4e15eba = L.circleMarker(\n [42.365968, -71.062507],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_ede3b4beb2787a44d735d8a622df1994 = L.circleMarker(\n [42.347902, -71.040407],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_55786483caa945d3f58b77ebcc41d010 = L.circleMarker(\n [42.34898, -71.03588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_65bffdc85111330aa82a40020539bf01 = L.circleMarker(\n [42.347795, -71.035964],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_44cb91c553ca8217cea315d38e574e38 = L.circleMarker(\n [42.344315, -71.033918],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_a0f1037bde39a4d4395a360f65bcbd36 = L.polyline(\n [[42.369868, -71.06828]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;orange&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;orange&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_b7d7743431fd67c9861f8cdd168c3079 = L.circleMarker(\n [42.369868, -71.06828],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;orange&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;orange&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_faba197da34fdd90cf0063628d6bc73d = L.polyline(\n [[42.338284, -71.013043], [42.338284, -71.013043], [42.3359, -71.023658], [42.329187, -71.035189], [42.325624, -71.049204], [42.316288, -71.037188], [42.315966, -71.034107], [42.316292, -71.045242], [42.324934, -71.06221], [42.327134, -71.066844]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a3ba6e856f4a65f7a4b1d294c5fb1a8c = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_63e085dba3e58478356417eb55ada612 = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_42868c9c3908f7a807e303a8fc41f033 = L.circleMarker(\n [42.3359, -71.023658],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_07cbe80d3b79a5312c1f46571c074ce3 = L.circleMarker(\n [42.329187, -71.035189],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_eb78ffc01990c5269f89a2f283a52666 = L.circleMarker(\n [42.325624, -71.049204],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_3f611361bb708f60de25e723a333d720 = L.circleMarker(\n [42.316288, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_bf495203cf485d08fad2d8b120807a5c = L.circleMarker(\n [42.315966, -71.034107],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_5c2f3e4f3a13c5ec4cf8b1503f34dcad = L.circleMarker(\n [42.316292, -71.045242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_9e6a3e602582aab86f5db7923af2ccb6 = L.circleMarker(\n [42.324934, -71.06221],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_b35ede4d13c3a459f54482c98b8ae0a0 = L.circleMarker(\n [42.327134, -71.066844],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_3ef1a10090652c36a4d3f53a98387cbf = L.polyline(\n [[42.34085, -71.071196], [42.339762, -71.090331], [42.351001, -71.045001], [42.274385, -71.024029], [42.27938, -71.014026], [42.276371, -71.009534], [42.245312, -71.000444], [42.207533, -71.001295], [42.23913, -71.003762], [42.25784, -71.02898], [42.285832, -71.063084], [42.284476, -71.063921], [42.296172, -71.087449], [42.339762, -71.090331], [42.356001, -71.055001], [42.346361, -71.089677], [42.344689, -71.096959], [42.351083, -71.106096], [42.364024, -71.1088], [42.363221, -71.128473], [42.352585, -71.131464], [42.352999, -71.130896], [42.351932, -71.124132], [42.356842, -71.143863], [42.349667, -71.146009], [42.350083, -71.146124], [42.343387, -71.142763], [42.341017, -71.162549], [42.33162, -71.155413], [42.324682, -71.16198], [42.331874, -71.125847], [42.342619, -71.121734], [42.336, -71.112246], [42.336448, -71.10963], [42.332401, -71.100092], [42.332009, -71.098267], [42.350902, -71.048805], [42.353667, -71.047121], [42.360949, -71.051539], [42.359704, -71.054519], [42.36049, -71.056995], [42.361263, -71.056994], [42.361534, -71.056819], [42.364032, -71.055569], [42.366918, -71.056164], [42.365251, -71.055582], [42.359295, -71.059255], [42.358851, -71.064277], [42.361529, -71.090578], [42.356537, -71.075414], [42.357529, -71.069242], [42.356682, -71.066568], [42.358056, -71.062171], [42.357428, -71.058565], [42.37337, -71.033036], [42.364857, -71.041248], [42.371161, -71.037188], [42.380792, -71.034935], [42.385546, -71.039316], [42.386461, -71.032794], [42.389192, -71.033749], [42.398247, -71.028327], [42.397588, -71.035674], [42.391309, -71.036726], [42.390284, -71.038526], [42.393843, -71.041015], [42.380436, -71.060948], [42.383988, -71.110771], [42.380957, -71.097894], [42.34194, -71.083465], [42.339762, -71.090331], [42.405026, -71.013986], [42.411785, -71.01537], [42.412279, -71.031525], [42.421213, -71.027113], [42.422264, -71.043219], [42.418307, -71.050739], [42.42069, -71.055953], [42.403792, -71.058992], [42.398809, -71.061206], [42.369812, -71.037911], [42.368861, -71.055561], [42.374119, -71.055588], [42.376178, -71.060933], [42.379731, -71.094916], [42.382238, -71.102512], [42.36265, -71.10141], [42.3614, -71.101475], [42.339762, -71.090331], [42.415016, -71.004016], [42.407436, -71.062128], [42.397236, -71.072007], [42.376391, -71.060753], [42.374142, -71.063105], [42.369473, -71.075628], [42.367607, -71.08097], [42.381759, -71.093444], [42.362555, -71.096306], [42.363685, -71.101083], [42.314504, -71.227365], [42.339762, -71.090331], [42.422118, -70.991168], [42.418321, -70.99748], [42.420244, -70.985934], [42.411181, -70.993747], [42.389507, -70.969384], [42.380215, -70.980137], [42.391786, -70.99031], [42.390466, -70.997084], [42.390256, -71.005456], [42.402568, -71.051453], [42.380072, -71.096887], [42.382131, -71.102659]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0b20f019333d848be8b8d7f9c9256148 = L.circleMarker(\n [42.34085, -71.071196],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_e6c1c0579a9d4a26edd562032ab0f9a0 = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_de626ef67ba02716379e54d25c7cf679 = L.circleMarker(\n [42.351001, -71.045001],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_d12eebf58c696cc70c7ab8a15c4d08d0 = L.circleMarker(\n [42.274385, -71.024029],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_b1ddac81f2e385a1aa9a6d5de9d1b110 = L.circleMarker(\n [42.27938, -71.014026],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0958995d7f3c31cbe69439011eeeeed0 = L.circleMarker(\n [42.276371, -71.009534],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_bf50afa56b3aac045cfe6136655246df = L.circleMarker(\n [42.245312, -71.000444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_3260d4de5c7d50880f72edc96bc44495 = L.circleMarker(\n [42.207533, -71.001295],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_d748c8826dc05e3f2e0d4d729d09b329 = L.circleMarker(\n [42.23913, -71.003762],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_545b094cf4ca3fec0aab2a895bf9b78d = L.circleMarker(\n [42.25784, -71.02898],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_fab0438ca68b872587e4ec76a4794f7c = L.circleMarker(\n [42.285832, -71.063084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_cebd170b9d958898cdefcee59c9c9e81 = L.circleMarker(\n [42.284476, -71.063921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_f3a9cebf2ac4cf4c8333b18b942c55e9 = L.circleMarker(\n [42.296172, -71.087449],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_4268ea8a884049f0b48414d21781f3ee = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_8a1b0c6874e4faadc2b6cdc64812c5fa = L.circleMarker(\n [42.356001, -71.055001],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_4df7d26890b6314004ae2235d9620a82 = L.circleMarker(\n [42.346361, -71.089677],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_6d83975beec734de174c148c5cc1dcb5 = L.circleMarker(\n [42.344689, -71.096959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_33a5835d7531e7f30287843cf612e281 = L.circleMarker(\n [42.351083, -71.106096],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_2f1f1323ddf46e91e7e70fc6b264939f = L.circleMarker(\n [42.364024, -71.1088],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_ab183b8e642c1c3194c8c4227b4159bd = L.circleMarker(\n [42.363221, -71.128473],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_4287033e8e86e812d30887d75edc56f1 = L.circleMarker(\n [42.352585, -71.131464],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_4ca28da65f928426be268863e98b2f09 = L.circleMarker(\n [42.352999, -71.130896],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0548cb4d14812cb8f51067a59d11d6bc = L.circleMarker(\n [42.351932, -71.124132],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7c2045d8b4bdb280f8dbf144e52e2452 = L.circleMarker(\n [42.356842, -71.143863],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_44a99a874cfe34d3aae8e8fdf7a70800 = L.circleMarker(\n [42.349667, -71.146009],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_5406b7cfa206d57a63e12b6d3e25cb16 = L.circleMarker(\n [42.350083, -71.146124],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_3574d602472e3faa70272f24375eb223 = L.circleMarker(\n [42.343387, -71.142763],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a00b670eb1d237aa192976b68eceaf54 = L.circleMarker(\n [42.341017, -71.162549],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_30616fa2ad6ccee1ff125b8aee5dc9ac = L.circleMarker(\n [42.33162, -71.155413],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_e10648d0bc1da4e9dfb3438f04b7fde5 = L.circleMarker(\n [42.324682, -71.16198],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_35c48ea01af016a0df418e0b08596018 = L.circleMarker(\n [42.331874, -71.125847],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_88db3d3f453361b3e618435e92cd1414 = L.circleMarker(\n [42.342619, -71.121734],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_39ae3fee0f60a5e3a559362e33fd6d0f = L.circleMarker(\n [42.336, -71.112246],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_635f4966eb2a62e7889855cfa5526d30 = L.circleMarker(\n [42.336448, -71.10963],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_d8e26880447aab5e8d7714709f0caefe = L.circleMarker(\n [42.332401, -71.100092],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_3886467b77f7414dce0325b5bf839e17 = L.circleMarker(\n [42.332009, -71.098267],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_d98e67220394415e7918170da1dd8522 = L.circleMarker(\n [42.350902, -71.048805],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_2878ff718fdd499fc593d2137a495478 = L.circleMarker(\n [42.353667, -71.047121],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_63667628d25c8a6ac3972f3d1cecc87b = L.circleMarker(\n [42.360949, -71.051539],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_73087ced754737e9d75380a9e17ad5e0 = L.circleMarker(\n [42.359704, -71.054519],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_4a754f8b0bb745a20e74fe25b8826a03 = L.circleMarker(\n [42.36049, -71.056995],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7711e9cba283d0d998dd8ba2bad5e003 = L.circleMarker(\n [42.361263, -71.056994],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_ba6b7aa3e66fa56368b75ec6063e7a19 = L.circleMarker(\n [42.361534, -71.056819],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_ab9d6dd4d055ea3108b7209c73a93491 = L.circleMarker(\n [42.364032, -71.055569],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_05b75140a47adff78c0424e316c98de3 = L.circleMarker(\n [42.366918, -71.056164],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_4a3f0325de8f1c215118fdd27a997b27 = L.circleMarker(\n [42.365251, -71.055582],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_abfbd19a3196351013108ae630c34670 = L.circleMarker(\n [42.359295, -71.059255],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_b639d9e7323b51a2ba5479974d27c159 = L.circleMarker(\n [42.358851, -71.064277],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0a0a7518457dd1288a4a48e9c42e10ee = L.circleMarker(\n [42.361529, -71.090578],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0aeb31563938272418664aa02f177de4 = L.circleMarker(\n [42.356537, -71.075414],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_697402c9299eee89c5fdad498bba57ca = L.circleMarker(\n [42.357529, -71.069242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_fe87dd979daaff92505ea895d479cabb = L.circleMarker(\n [42.356682, -71.066568],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_37288049b7938998b150415d27ff0f35 = L.circleMarker(\n [42.358056, -71.062171],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_6ccbea55c9f6f1b584cea1878f103396 = L.circleMarker(\n [42.357428, -71.058565],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_2daa6bbcd166c947986e4fad7c080a1e = L.circleMarker(\n [42.37337, -71.033036],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_08472eafb27ce9830eb625e1c8a9c8ea = L.circleMarker(\n [42.364857, -71.041248],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_35b9ed840aa26544483308a537555cd6 = L.circleMarker(\n [42.371161, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_3d1d4c06ce3a58143bc539cd9592db72 = L.circleMarker(\n [42.380792, -71.034935],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_5a52c903d2eb62243e9f4dde94ebe110 = L.circleMarker(\n [42.385546, -71.039316],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0f45d1833047fc0f9830749b2daf3e32 = L.circleMarker(\n [42.386461, -71.032794],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_471b1c9e9631b79035bba10eb1182fa2 = L.circleMarker(\n [42.389192, -71.033749],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_9d0784db8adddbb37698af59f40ef0f3 = L.circleMarker(\n [42.398247, -71.028327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_3c4b4e50796eb56dc7897b603f48bb02 = L.circleMarker(\n [42.397588, -71.035674],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_dcf1b03a7d585f79505d0922a4d7b05b = L.circleMarker(\n [42.391309, -71.036726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_d05e1bcbc2298337dac06acc417e97f6 = L.circleMarker(\n [42.390284, -71.038526],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_870be4f46bffa1b66a31bf56ec7960db = L.circleMarker(\n [42.393843, -71.041015],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_c5b3379d9e28c7449936f9faab658045 = L.circleMarker(\n [42.380436, -71.060948],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_8594769abf2283d15473a36edaa48bbe = L.circleMarker(\n [42.383988, -71.110771],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a93ec415c4de52b69b17f26fb70ca3e4 = L.circleMarker(\n [42.380957, -71.097894],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a30b6116908f76373ee80f9f660ab9c4 = L.circleMarker(\n [42.34194, -71.083465],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_ff7474b373e76aad3387affd104f89eb = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_4aa20684e78160798dcb08e47bb80454 = L.circleMarker(\n [42.405026, -71.013986],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_1ac274330f4e2b5c991139a159d25ce4 = L.circleMarker(\n [42.411785, -71.01537],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_d9d0f9a379d954707c42b7c58c2885c4 = L.circleMarker(\n [42.412279, -71.031525],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_5f8b580d569d69fe04c72c2416015bd4 = L.circleMarker(\n [42.421213, -71.027113],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_5b27dbf0e30fcf2ddb65f0492f5230e7 = L.circleMarker(\n [42.422264, -71.043219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_e60a9bd68a324158ff98f56df148a622 = L.circleMarker(\n [42.418307, -71.050739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_5b986808c676cafb2d054614419b3a31 = L.circleMarker(\n [42.42069, -71.055953],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_43a6304ea81492e4f8afe198a84a653b = L.circleMarker(\n [42.403792, -71.058992],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_ed92960cc5695f4e408786e763f61161 = L.circleMarker(\n [42.398809, -71.061206],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_8afd9d6a40c61bce1bf4db573d97e490 = L.circleMarker(\n [42.369812, -71.037911],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_f7a40d89a5c8200c96ce1a10251e8800 = L.circleMarker(\n [42.368861, -71.055561],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_743604a8123a304baeebd68bb15ce38e = L.circleMarker(\n [42.374119, -71.055588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_8fce4677dd3abdc01555e8b38e424f7e = L.circleMarker(\n [42.376178, -71.060933],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_58c99162f75b534e379d684227c31075 = L.circleMarker(\n [42.379731, -71.094916],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_de861d78a34f4c814eb3eeda09aeb6b2 = L.circleMarker(\n [42.382238, -71.102512],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_531a94c262aa0b6cdc533659b821f604 = L.circleMarker(\n [42.36265, -71.10141],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7fae0612043dcf5e4665ea62738afc98 = L.circleMarker(\n [42.3614, -71.101475],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_18d3376797d07370ef73b925cf08401e = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_af4a15c8fcbefac19444c0497cd294ee = L.circleMarker(\n [42.415016, -71.004016],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7e8c999b7b59482bad40b0b90fdd6056 = L.circleMarker(\n [42.407436, -71.062128],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_13ffdad3ae966b43ddebf4b862ec9152 = L.circleMarker(\n [42.397236, -71.072007],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_e1bbc815139f117b80a3ef0859d837a1 = L.circleMarker(\n [42.376391, -71.060753],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_ae160d3cfd28b3ab3700e8eb6a84ec3b = L.circleMarker(\n [42.374142, -71.063105],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_bd1eaa27577253826a889ac4172a77d1 = L.circleMarker(\n [42.369473, -71.075628],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_04bba45bc5263a89f19b53085ce5f1c9 = L.circleMarker(\n [42.367607, -71.08097],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a0e0a1475e903c0400c8a0e62fc9c261 = L.circleMarker(\n [42.381759, -71.093444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_6770e2c3802fea8d3718b6a13d75e571 = L.circleMarker(\n [42.362555, -71.096306],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_4776456f2475192f912bd636982caee5 = L.circleMarker(\n [42.363685, -71.101083],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_78f8b122d1e536c1628b50d303c6b995 = L.circleMarker(\n [42.314504, -71.227365],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0fcf1cc55519c0a9e51067836a1cbc9d = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0c00c716e55cffade8d38a82f75cc953 = L.circleMarker(\n [42.422118, -70.991168],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_1d4a06ea1a409c0087fa3d019a99b3fc = L.circleMarker(\n [42.418321, -70.99748],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_fac5cea1088ef0ba6b80f2457100decf = L.circleMarker(\n [42.420244, -70.985934],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_436bab47b8cafe933c8af3e102fb1546 = L.circleMarker(\n [42.411181, -70.993747],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a86cf3d145eff4d71ff1108f81c331c6 = L.circleMarker(\n [42.389507, -70.969384],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_dd263da44189d1e5a4a1913e4ccb5212 = L.circleMarker(\n [42.380215, -70.980137],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a6b9c575144b0232551bbd1f41468e84 = L.circleMarker(\n [42.391786, -70.99031],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_21022a72fd540a498112fd476f98e13e = L.circleMarker(\n [42.390466, -70.997084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7cb47b1003e68316b2a273d796897876 = L.circleMarker(\n [42.390256, -71.005456],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_30ceb88ac70762d7aee69582dce4b92d = L.circleMarker(\n [42.402568, -71.051453],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_c5a265b32358fd137ca7c3c2b47d0a10 = L.circleMarker(\n [42.380072, -71.096887],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_9a880af0bcf6b2dbeab4fcbc90c82471 = L.circleMarker(\n [42.382131, -71.102659],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_632f43e12cdc5571525f1706a898de12 = L.polyline(\n [[42.329829, -71.090904], [42.325354, -71.09454], [42.33047, -71.099348], [42.338007, -71.099284], [42.388907, -71.133098], [42.388412, -71.119219], [42.38859, -71.119303], [42.400829, -71.112241], [42.396589, -71.122704]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_666edc2773939e5a361fe6a127e3de6c = L.circleMarker(\n [42.329829, -71.090904],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_5054358427bb7697cc475dc527f650d3 = L.circleMarker(\n [42.325354, -71.09454],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_77c100592b634c467202a6e694b04906 = L.circleMarker(\n [42.33047, -71.099348],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_8695a3c84dd99962b3eb75b56dd444b6 = L.circleMarker(\n [42.338007, -71.099284],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_e13c3953871f7b40444a9b4524323147 = L.circleMarker(\n [42.388907, -71.133098],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_c55a1099121edadcbcd2d38980871163 = L.circleMarker(\n [42.388412, -71.119219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_fbf1b1b12bfc833279cc1c0f4f611bdd = L.circleMarker(\n [42.38859, -71.119303],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_640738148ae4a9eedd754d540f9fd32c = L.circleMarker(\n [42.400829, -71.112241],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0c9d49b05068cccea50ca353f1728494 = L.circleMarker(\n [42.396589, -71.122704],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_33bc9aa71c0d9031255915ab151e9512 = L.polyline(\n [[42.342001, -71.095003], [42.341231, -71.094327], [42.339096, -71.093834], [42.339762, -71.090331], [42.365054, -71.053931], [42.313798, -71.359917], [42.339762, -71.090331], [42.373086, -71.044638], [42.383573, -71.112746], [42.378452, -71.115739], [42.378275, -71.114496], [42.376696, -71.115952], [42.375457, -71.119379], [42.373491, -71.118959], [42.373266, -71.120839]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_6a0e2e948ec4d6f64be982621ebac568 = L.circleMarker(\n [42.342001, -71.095003],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_3b4edc9eb3f4acef3ddbe8bcc3e61e49 = L.circleMarker(\n [42.341231, -71.094327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_e0ea70d1c18004e6587306ebf392db97 = L.circleMarker(\n [42.339096, -71.093834],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7cc4368df1c92e0c9f96fa83c592a3ac = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_d0b4ebed3784d900521124fe38745977 = L.circleMarker(\n [42.365054, -71.053931],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_393870d2d335dfc6f051948371d141cd = L.circleMarker(\n [42.313798, -71.359917],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_778b55ab31d8c67977319d0315b7627e = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_886d74be796379bb8d3bd0505f1b17e5 = L.circleMarker(\n [42.373086, -71.044638],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_384fad0ef244aed214a3a1bb80b3cc54 = L.circleMarker(\n [42.383573, -71.112746],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a141ed9ba989a70a35c2fc3d940843b9 = L.circleMarker(\n [42.378452, -71.115739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_9442c32f49d1fb04622f02c503adffaf = L.circleMarker(\n [42.378275, -71.114496],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_119ab58de0f81c58ad5424df01591b7e = L.circleMarker(\n [42.376696, -71.115952],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_a59d2244011f824c301eeb92e4a23cfa = L.circleMarker(\n [42.375457, -71.119379],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_47e253b140590030d2fc81c2421c1c9c = L.circleMarker(\n [42.373491, -71.118959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_6799b06a6c35ea4389290ceccff93102 = L.circleMarker(\n [42.373266, -71.120839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_e38b81b69209095ee318f780be7be9dd = L.polyline(\n [[42.410941, -71.168458], [42.429978, -71.203921], [42.361942, -71.18542], [42.339762, -71.090331], [42.386576, -71.033567], [42.367158, -71.035936], [42.365172, -71.035967], [42.363961, -71.033209], [42.352749, -71.04333], [42.351052, -71.044959]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7467828b1d899c11b8313e7a19737762 = L.circleMarker(\n [42.410941, -71.168458],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_48c58abd980fe77f8888f2da65c06233 = L.circleMarker(\n [42.429978, -71.203921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_331c7629591e016b62299b9ecaaa4800 = L.circleMarker(\n [42.361942, -71.18542],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0bc9bd3bfeee2d319421e7d320c01999 = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_27427395b2f16bc33aec20027fae1dc7 = L.circleMarker(\n [42.386576, -71.033567],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_c3aaba254d06402c5f2b77f84ed5dd1d = L.circleMarker(\n [42.367158, -71.035936],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_02300404a188a04dbd413095acb97e1e = L.circleMarker(\n [42.365172, -71.035967],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_8a090b9326ebb9dacf8b510607226166 = L.circleMarker(\n [42.363961, -71.033209],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_b562d9e52599f914a5ecb240204862a1 = L.circleMarker(\n [42.352749, -71.04333],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_5bbc202f6d3225251970d5dc68e0d461 = L.circleMarker(\n [42.351052, -71.044959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_0ced75586135d37abc910e14b9868345 = L.polyline(\n [[42.358757, -71.057201], [42.353717, -71.061676], [42.351671, -71.050269], [42.35199, -71.049726]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_6c324173c5b1d04684fdb3ab6d0ae540 = L.circleMarker(\n [42.358757, -71.057201],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_1854188d417ec0904eea7542eb98f10c = L.circleMarker(\n [42.353717, -71.061676],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7adfba3449899db9ae1f53bbeb52f4eb = L.circleMarker(\n [42.351671, -71.050269],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_89696f2bda7e140b35271966c451abc3 = L.circleMarker(\n [42.35199, -71.049726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_f2c08ccd3b5ad27745655513080307bd = L.polyline(\n [[42.352211, -71.051172], [42.350941, -71.059567], [42.355298, -71.061249], [42.355519, -71.063037], [42.354894, -71.063514], [42.353792, -71.068086], [42.352314, -71.067311], [42.352445, -71.066839], [42.349993, -71.067854], [42.348915, -71.072038], [42.339762, -71.090331], [42.395119, -71.02396], [42.382756, -71.011693], [42.377891, -71.028298]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_abaed8f28ba41db7f2c6c5f3a0418911 = L.circleMarker(\n [42.352211, -71.051172],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_e0211623ac5558587319b6db96562243 = L.circleMarker(\n [42.350941, -71.059567],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_aa6ee82344990f8e020d9a3eea9a297a = L.circleMarker(\n [42.355298, -71.061249],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_c9d4df86efebd5c51683a166afd84f8f = L.circleMarker(\n [42.355519, -71.063037],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_6849c37d8fff92e6c905298a1d0b2471 = L.circleMarker(\n [42.354894, -71.063514],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7c6d9f3713bb22a206a22f2f33fc0a6b = L.circleMarker(\n [42.353792, -71.068086],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_74fc2b86a9cd85de10a0ec62469850af = L.circleMarker(\n [42.352314, -71.067311],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_c5872d5e094b03b4a0abf8a877c64874 = L.circleMarker(\n [42.352445, -71.066839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_13743eeb80e20d2282f09069fc75793d = L.circleMarker(\n [42.349993, -71.067854],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_d418018faa1049adeee2ec5b295a6e60 = L.circleMarker(\n [42.348915, -71.072038],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_0b2f211f5412575ec76bcf4e7507238e = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_367e140d034426a7153d9c2b16e657a8 = L.circleMarker(\n [42.395119, -71.02396],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_00d5bc50f9ce315a65cae609f408ce4f = L.circleMarker(\n [42.382756, -71.011693],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_c0b5d73df6020b5135bb92d05716275c = L.circleMarker(\n [42.377891, -71.028298],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var poly_line_6b9ea61ffc45429690cf7f20246fc2ca = L.polyline(\n [[42.374259, -71.110851], [42.349997, -71.085166], [42.348977, -71.091358], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7868085521b7cabecf8c77de840e4d9a = L.circleMarker(\n [42.374259, -71.110851],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_8e16b0c6fc7737f334d4f62b8b36366c = L.circleMarker(\n [42.349997, -71.085166],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_2c479012ccb2801b531aa3ff631273ac = L.circleMarker(\n [42.348977, -71.091358],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n \n var circle_marker_7420b950d65683c90665c63dea50ca80 = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_a113ca2999b944715e9a3600543bd417);\n \n&lt;/script&gt;\n&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
+ "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;html&gt;\n",
+ "&lt;head&gt;\n",
+ " \n",
+ " &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
+ " \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.9.3/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://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
+ " &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
+ " &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
+ " \n",
+ " &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
+ " initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
+ " &lt;style&gt;\n",
+ " #map_a113ca2999b944715e9a3600543bd417 {\n",
+ " position: relative;\n",
+ " width: 100.0%;\n",
+ " height: 100.0%;\n",
+ " left: 0.0%;\n",
+ " top: 0.0%;\n",
+ " }\n",
+ " .leaflet-container { font-size: 1rem; }\n",
+ " &lt;/style&gt;\n",
+ " \n",
+ "&lt;/head&gt;\n",
+ "&lt;body&gt;\n",
+ " \n",
+ " \n",
+ " &lt;div class=&quot;folium-map&quot; id=&quot;map_a113ca2999b944715e9a3600543bd417&quot; &gt;&lt;/div&gt;\n",
+ " \n",
+ "&lt;/body&gt;\n",
+ "&lt;script&gt;\n",
+ " \n",
+ " \n",
+ " var map_a113ca2999b944715e9a3600543bd417 = L.map(\n",
+ " &quot;map_a113ca2999b944715e9a3600543bd417&quot;,\n",
+ " {\n",
+ " center: [42.359489216931216, -71.0710662910053],\n",
+ " crs: L.CRS.EPSG3857,\n",
+ " zoom: 11,\n",
+ " zoomControl: true,\n",
+ " preferCanvas: false,\n",
+ " }\n",
+ " );\n",
+ "\n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " var tile_layer_cebae13d8ec3d03386f2019344ecca4c = L.tileLayer(\n",
+ " &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n",
+ " {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\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_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_9addb4268863b97ef96e5acfa5328f7e = L.polyline(\n",
+ " [[42.365054, -71.053931], [42.369195, -71.061735], [42.371832, -71.065634], [42.377355, -71.094764], [42.365968, -71.062507], [42.347902, -71.040407], [42.34898, -71.03588], [42.347795, -71.035964], [42.344315, -71.033918]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_410411d141f5717d857c667c74fee7d1 = L.circleMarker(\n",
+ " [42.365054, -71.053931],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_14221b7fd2d1b72df63da055db173add = L.circleMarker(\n",
+ " [42.369195, -71.061735],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_89c0b5470ba45d0d2048f366b19e903e = L.circleMarker(\n",
+ " [42.371832, -71.065634],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_29804b45ae78079b84f2c55dbb7d7669 = L.circleMarker(\n",
+ " [42.377355, -71.094764],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c11de2bcd2b7cab21dd1ea0ac4e15eba = L.circleMarker(\n",
+ " [42.365968, -71.062507],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ede3b4beb2787a44d735d8a622df1994 = L.circleMarker(\n",
+ " [42.347902, -71.040407],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_55786483caa945d3f58b77ebcc41d010 = L.circleMarker(\n",
+ " [42.34898, -71.03588],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_65bffdc85111330aa82a40020539bf01 = L.circleMarker(\n",
+ " [42.347795, -71.035964],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_44cb91c553ca8217cea315d38e574e38 = L.circleMarker(\n",
+ " [42.344315, -71.033918],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_a0f1037bde39a4d4395a360f65bcbd36 = L.polyline(\n",
+ " [[42.369868, -71.06828]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;orange&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;orange&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b7d7743431fd67c9861f8cdd168c3079 = L.circleMarker(\n",
+ " [42.369868, -71.06828],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;orange&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;orange&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_faba197da34fdd90cf0063628d6bc73d = L.polyline(\n",
+ " [[42.338284, -71.013043], [42.338284, -71.013043], [42.3359, -71.023658], [42.329187, -71.035189], [42.325624, -71.049204], [42.316288, -71.037188], [42.315966, -71.034107], [42.316292, -71.045242], [42.324934, -71.06221], [42.327134, -71.066844]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a3ba6e856f4a65f7a4b1d294c5fb1a8c = L.circleMarker(\n",
+ " [42.338284, -71.013043],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_63e085dba3e58478356417eb55ada612 = L.circleMarker(\n",
+ " [42.338284, -71.013043],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_42868c9c3908f7a807e303a8fc41f033 = L.circleMarker(\n",
+ " [42.3359, -71.023658],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_07cbe80d3b79a5312c1f46571c074ce3 = L.circleMarker(\n",
+ " [42.329187, -71.035189],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_eb78ffc01990c5269f89a2f283a52666 = L.circleMarker(\n",
+ " [42.325624, -71.049204],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3f611361bb708f60de25e723a333d720 = L.circleMarker(\n",
+ " [42.316288, -71.037188],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_bf495203cf485d08fad2d8b120807a5c = L.circleMarker(\n",
+ " [42.315966, -71.034107],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5c2f3e4f3a13c5ec4cf8b1503f34dcad = L.circleMarker(\n",
+ " [42.316292, -71.045242],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9e6a3e602582aab86f5db7923af2ccb6 = L.circleMarker(\n",
+ " [42.324934, -71.06221],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b35ede4d13c3a459f54482c98b8ae0a0 = L.circleMarker(\n",
+ " [42.327134, -71.066844],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_3ef1a10090652c36a4d3f53a98387cbf = L.polyline(\n",
+ " [[42.34085, -71.071196], [42.339762, -71.090331], [42.351001, -71.045001], [42.274385, -71.024029], [42.27938, -71.014026], [42.276371, -71.009534], [42.245312, -71.000444], [42.207533, -71.001295], [42.23913, -71.003762], [42.25784, -71.02898], [42.285832, -71.063084], [42.284476, -71.063921], [42.296172, -71.087449], [42.339762, -71.090331], [42.356001, -71.055001], [42.346361, -71.089677], [42.344689, -71.096959], [42.351083, -71.106096], [42.364024, -71.1088], [42.363221, -71.128473], [42.352585, -71.131464], [42.352999, -71.130896], [42.351932, -71.124132], [42.356842, -71.143863], [42.349667, -71.146009], [42.350083, -71.146124], [42.343387, -71.142763], [42.341017, -71.162549], [42.33162, -71.155413], [42.324682, -71.16198], [42.331874, -71.125847], [42.342619, -71.121734], [42.336, -71.112246], [42.336448, -71.10963], [42.332401, -71.100092], [42.332009, -71.098267], [42.350902, -71.048805], [42.353667, -71.047121], [42.360949, -71.051539], [42.359704, -71.054519], [42.36049, -71.056995], [42.361263, -71.056994], [42.361534, -71.056819], [42.364032, -71.055569], [42.366918, -71.056164], [42.365251, -71.055582], [42.359295, -71.059255], [42.358851, -71.064277], [42.361529, -71.090578], [42.356537, -71.075414], [42.357529, -71.069242], [42.356682, -71.066568], [42.358056, -71.062171], [42.357428, -71.058565], [42.37337, -71.033036], [42.364857, -71.041248], [42.371161, -71.037188], [42.380792, -71.034935], [42.385546, -71.039316], [42.386461, -71.032794], [42.389192, -71.033749], [42.398247, -71.028327], [42.397588, -71.035674], [42.391309, -71.036726], [42.390284, -71.038526], [42.393843, -71.041015], [42.380436, -71.060948], [42.383988, -71.110771], [42.380957, -71.097894], [42.34194, -71.083465], [42.339762, -71.090331], [42.405026, -71.013986], [42.411785, -71.01537], [42.412279, -71.031525], [42.421213, -71.027113], [42.422264, -71.043219], [42.418307, -71.050739], [42.42069, -71.055953], [42.403792, -71.058992], [42.398809, -71.061206], [42.369812, -71.037911], [42.368861, -71.055561], [42.374119, -71.055588], [42.376178, -71.060933], [42.379731, -71.094916], [42.382238, -71.102512], [42.36265, -71.10141], [42.3614, -71.101475], [42.339762, -71.090331], [42.415016, -71.004016], [42.407436, -71.062128], [42.397236, -71.072007], [42.376391, -71.060753], [42.374142, -71.063105], [42.369473, -71.075628], [42.367607, -71.08097], [42.381759, -71.093444], [42.362555, -71.096306], [42.363685, -71.101083], [42.314504, -71.227365], [42.339762, -71.090331], [42.422118, -70.991168], [42.418321, -70.99748], [42.420244, -70.985934], [42.411181, -70.993747], [42.389507, -70.969384], [42.380215, -70.980137], [42.391786, -70.99031], [42.390466, -70.997084], [42.390256, -71.005456], [42.402568, -71.051453], [42.380072, -71.096887], [42.382131, -71.102659]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0b20f019333d848be8b8d7f9c9256148 = L.circleMarker(\n",
+ " [42.34085, -71.071196],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e6c1c0579a9d4a26edd562032ab0f9a0 = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_de626ef67ba02716379e54d25c7cf679 = L.circleMarker(\n",
+ " [42.351001, -71.045001],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d12eebf58c696cc70c7ab8a15c4d08d0 = L.circleMarker(\n",
+ " [42.274385, -71.024029],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b1ddac81f2e385a1aa9a6d5de9d1b110 = L.circleMarker(\n",
+ " [42.27938, -71.014026],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0958995d7f3c31cbe69439011eeeeed0 = L.circleMarker(\n",
+ " [42.276371, -71.009534],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_bf50afa56b3aac045cfe6136655246df = L.circleMarker(\n",
+ " [42.245312, -71.000444],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3260d4de5c7d50880f72edc96bc44495 = L.circleMarker(\n",
+ " [42.207533, -71.001295],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d748c8826dc05e3f2e0d4d729d09b329 = L.circleMarker(\n",
+ " [42.23913, -71.003762],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_545b094cf4ca3fec0aab2a895bf9b78d = L.circleMarker(\n",
+ " [42.25784, -71.02898],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_fab0438ca68b872587e4ec76a4794f7c = L.circleMarker(\n",
+ " [42.285832, -71.063084],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_cebd170b9d958898cdefcee59c9c9e81 = L.circleMarker(\n",
+ " [42.284476, -71.063921],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f3a9cebf2ac4cf4c8333b18b942c55e9 = L.circleMarker(\n",
+ " [42.296172, -71.087449],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4268ea8a884049f0b48414d21781f3ee = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8a1b0c6874e4faadc2b6cdc64812c5fa = L.circleMarker(\n",
+ " [42.356001, -71.055001],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4df7d26890b6314004ae2235d9620a82 = L.circleMarker(\n",
+ " [42.346361, -71.089677],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6d83975beec734de174c148c5cc1dcb5 = L.circleMarker(\n",
+ " [42.344689, -71.096959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_33a5835d7531e7f30287843cf612e281 = L.circleMarker(\n",
+ " [42.351083, -71.106096],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2f1f1323ddf46e91e7e70fc6b264939f = L.circleMarker(\n",
+ " [42.364024, -71.1088],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ab183b8e642c1c3194c8c4227b4159bd = L.circleMarker(\n",
+ " [42.363221, -71.128473],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4287033e8e86e812d30887d75edc56f1 = L.circleMarker(\n",
+ " [42.352585, -71.131464],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4ca28da65f928426be268863e98b2f09 = L.circleMarker(\n",
+ " [42.352999, -71.130896],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0548cb4d14812cb8f51067a59d11d6bc = L.circleMarker(\n",
+ " [42.351932, -71.124132],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7c2045d8b4bdb280f8dbf144e52e2452 = L.circleMarker(\n",
+ " [42.356842, -71.143863],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_44a99a874cfe34d3aae8e8fdf7a70800 = L.circleMarker(\n",
+ " [42.349667, -71.146009],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5406b7cfa206d57a63e12b6d3e25cb16 = L.circleMarker(\n",
+ " [42.350083, -71.146124],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3574d602472e3faa70272f24375eb223 = L.circleMarker(\n",
+ " [42.343387, -71.142763],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a00b670eb1d237aa192976b68eceaf54 = L.circleMarker(\n",
+ " [42.341017, -71.162549],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_30616fa2ad6ccee1ff125b8aee5dc9ac = L.circleMarker(\n",
+ " [42.33162, -71.155413],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e10648d0bc1da4e9dfb3438f04b7fde5 = L.circleMarker(\n",
+ " [42.324682, -71.16198],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_35c48ea01af016a0df418e0b08596018 = L.circleMarker(\n",
+ " [42.331874, -71.125847],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_88db3d3f453361b3e618435e92cd1414 = L.circleMarker(\n",
+ " [42.342619, -71.121734],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_39ae3fee0f60a5e3a559362e33fd6d0f = L.circleMarker(\n",
+ " [42.336, -71.112246],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_635f4966eb2a62e7889855cfa5526d30 = L.circleMarker(\n",
+ " [42.336448, -71.10963],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d8e26880447aab5e8d7714709f0caefe = L.circleMarker(\n",
+ " [42.332401, -71.100092],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3886467b77f7414dce0325b5bf839e17 = L.circleMarker(\n",
+ " [42.332009, -71.098267],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d98e67220394415e7918170da1dd8522 = L.circleMarker(\n",
+ " [42.350902, -71.048805],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2878ff718fdd499fc593d2137a495478 = L.circleMarker(\n",
+ " [42.353667, -71.047121],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_63667628d25c8a6ac3972f3d1cecc87b = L.circleMarker(\n",
+ " [42.360949, -71.051539],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_73087ced754737e9d75380a9e17ad5e0 = L.circleMarker(\n",
+ " [42.359704, -71.054519],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4a754f8b0bb745a20e74fe25b8826a03 = L.circleMarker(\n",
+ " [42.36049, -71.056995],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7711e9cba283d0d998dd8ba2bad5e003 = L.circleMarker(\n",
+ " [42.361263, -71.056994],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ba6b7aa3e66fa56368b75ec6063e7a19 = L.circleMarker(\n",
+ " [42.361534, -71.056819],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ab9d6dd4d055ea3108b7209c73a93491 = L.circleMarker(\n",
+ " [42.364032, -71.055569],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_05b75140a47adff78c0424e316c98de3 = L.circleMarker(\n",
+ " [42.366918, -71.056164],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4a3f0325de8f1c215118fdd27a997b27 = L.circleMarker(\n",
+ " [42.365251, -71.055582],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_abfbd19a3196351013108ae630c34670 = L.circleMarker(\n",
+ " [42.359295, -71.059255],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b639d9e7323b51a2ba5479974d27c159 = L.circleMarker(\n",
+ " [42.358851, -71.064277],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0a0a7518457dd1288a4a48e9c42e10ee = L.circleMarker(\n",
+ " [42.361529, -71.090578],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0aeb31563938272418664aa02f177de4 = L.circleMarker(\n",
+ " [42.356537, -71.075414],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_697402c9299eee89c5fdad498bba57ca = L.circleMarker(\n",
+ " [42.357529, -71.069242],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_fe87dd979daaff92505ea895d479cabb = L.circleMarker(\n",
+ " [42.356682, -71.066568],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_37288049b7938998b150415d27ff0f35 = L.circleMarker(\n",
+ " [42.358056, -71.062171],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6ccbea55c9f6f1b584cea1878f103396 = L.circleMarker(\n",
+ " [42.357428, -71.058565],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2daa6bbcd166c947986e4fad7c080a1e = L.circleMarker(\n",
+ " [42.37337, -71.033036],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_08472eafb27ce9830eb625e1c8a9c8ea = L.circleMarker(\n",
+ " [42.364857, -71.041248],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_35b9ed840aa26544483308a537555cd6 = L.circleMarker(\n",
+ " [42.371161, -71.037188],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3d1d4c06ce3a58143bc539cd9592db72 = L.circleMarker(\n",
+ " [42.380792, -71.034935],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5a52c903d2eb62243e9f4dde94ebe110 = L.circleMarker(\n",
+ " [42.385546, -71.039316],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0f45d1833047fc0f9830749b2daf3e32 = L.circleMarker(\n",
+ " [42.386461, -71.032794],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_471b1c9e9631b79035bba10eb1182fa2 = L.circleMarker(\n",
+ " [42.389192, -71.033749],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9d0784db8adddbb37698af59f40ef0f3 = L.circleMarker(\n",
+ " [42.398247, -71.028327],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3c4b4e50796eb56dc7897b603f48bb02 = L.circleMarker(\n",
+ " [42.397588, -71.035674],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_dcf1b03a7d585f79505d0922a4d7b05b = L.circleMarker(\n",
+ " [42.391309, -71.036726],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d05e1bcbc2298337dac06acc417e97f6 = L.circleMarker(\n",
+ " [42.390284, -71.038526],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_870be4f46bffa1b66a31bf56ec7960db = L.circleMarker(\n",
+ " [42.393843, -71.041015],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c5b3379d9e28c7449936f9faab658045 = L.circleMarker(\n",
+ " [42.380436, -71.060948],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8594769abf2283d15473a36edaa48bbe = L.circleMarker(\n",
+ " [42.383988, -71.110771],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a93ec415c4de52b69b17f26fb70ca3e4 = L.circleMarker(\n",
+ " [42.380957, -71.097894],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a30b6116908f76373ee80f9f660ab9c4 = L.circleMarker(\n",
+ " [42.34194, -71.083465],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ff7474b373e76aad3387affd104f89eb = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4aa20684e78160798dcb08e47bb80454 = L.circleMarker(\n",
+ " [42.405026, -71.013986],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1ac274330f4e2b5c991139a159d25ce4 = L.circleMarker(\n",
+ " [42.411785, -71.01537],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d9d0f9a379d954707c42b7c58c2885c4 = L.circleMarker(\n",
+ " [42.412279, -71.031525],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5f8b580d569d69fe04c72c2416015bd4 = L.circleMarker(\n",
+ " [42.421213, -71.027113],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5b27dbf0e30fcf2ddb65f0492f5230e7 = L.circleMarker(\n",
+ " [42.422264, -71.043219],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e60a9bd68a324158ff98f56df148a622 = L.circleMarker(\n",
+ " [42.418307, -71.050739],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5b986808c676cafb2d054614419b3a31 = L.circleMarker(\n",
+ " [42.42069, -71.055953],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_43a6304ea81492e4f8afe198a84a653b = L.circleMarker(\n",
+ " [42.403792, -71.058992],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ed92960cc5695f4e408786e763f61161 = L.circleMarker(\n",
+ " [42.398809, -71.061206],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8afd9d6a40c61bce1bf4db573d97e490 = L.circleMarker(\n",
+ " [42.369812, -71.037911],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_f7a40d89a5c8200c96ce1a10251e8800 = L.circleMarker(\n",
+ " [42.368861, -71.055561],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_743604a8123a304baeebd68bb15ce38e = L.circleMarker(\n",
+ " [42.374119, -71.055588],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8fce4677dd3abdc01555e8b38e424f7e = L.circleMarker(\n",
+ " [42.376178, -71.060933],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_58c99162f75b534e379d684227c31075 = L.circleMarker(\n",
+ " [42.379731, -71.094916],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_de861d78a34f4c814eb3eeda09aeb6b2 = L.circleMarker(\n",
+ " [42.382238, -71.102512],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_531a94c262aa0b6cdc533659b821f604 = L.circleMarker(\n",
+ " [42.36265, -71.10141],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7fae0612043dcf5e4665ea62738afc98 = L.circleMarker(\n",
+ " [42.3614, -71.101475],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_18d3376797d07370ef73b925cf08401e = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_af4a15c8fcbefac19444c0497cd294ee = L.circleMarker(\n",
+ " [42.415016, -71.004016],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7e8c999b7b59482bad40b0b90fdd6056 = L.circleMarker(\n",
+ " [42.407436, -71.062128],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_13ffdad3ae966b43ddebf4b862ec9152 = L.circleMarker(\n",
+ " [42.397236, -71.072007],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e1bbc815139f117b80a3ef0859d837a1 = L.circleMarker(\n",
+ " [42.376391, -71.060753],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_ae160d3cfd28b3ab3700e8eb6a84ec3b = L.circleMarker(\n",
+ " [42.374142, -71.063105],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_bd1eaa27577253826a889ac4172a77d1 = L.circleMarker(\n",
+ " [42.369473, -71.075628],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_04bba45bc5263a89f19b53085ce5f1c9 = L.circleMarker(\n",
+ " [42.367607, -71.08097],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a0e0a1475e903c0400c8a0e62fc9c261 = L.circleMarker(\n",
+ " [42.381759, -71.093444],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6770e2c3802fea8d3718b6a13d75e571 = L.circleMarker(\n",
+ " [42.362555, -71.096306],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_4776456f2475192f912bd636982caee5 = L.circleMarker(\n",
+ " [42.363685, -71.101083],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_78f8b122d1e536c1628b50d303c6b995 = L.circleMarker(\n",
+ " [42.314504, -71.227365],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0fcf1cc55519c0a9e51067836a1cbc9d = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0c00c716e55cffade8d38a82f75cc953 = L.circleMarker(\n",
+ " [42.422118, -70.991168],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1d4a06ea1a409c0087fa3d019a99b3fc = L.circleMarker(\n",
+ " [42.418321, -70.99748],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_fac5cea1088ef0ba6b80f2457100decf = L.circleMarker(\n",
+ " [42.420244, -70.985934],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_436bab47b8cafe933c8af3e102fb1546 = L.circleMarker(\n",
+ " [42.411181, -70.993747],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a86cf3d145eff4d71ff1108f81c331c6 = L.circleMarker(\n",
+ " [42.389507, -70.969384],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_dd263da44189d1e5a4a1913e4ccb5212 = L.circleMarker(\n",
+ " [42.380215, -70.980137],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a6b9c575144b0232551bbd1f41468e84 = L.circleMarker(\n",
+ " [42.391786, -70.99031],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_21022a72fd540a498112fd476f98e13e = L.circleMarker(\n",
+ " [42.390466, -70.997084],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7cb47b1003e68316b2a273d796897876 = L.circleMarker(\n",
+ " [42.390256, -71.005456],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_30ceb88ac70762d7aee69582dce4b92d = L.circleMarker(\n",
+ " [42.402568, -71.051453],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c5a265b32358fd137ca7c3c2b47d0a10 = L.circleMarker(\n",
+ " [42.380072, -71.096887],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9a880af0bcf6b2dbeab4fcbc90c82471 = L.circleMarker(\n",
+ " [42.382131, -71.102659],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;yellow&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;yellow&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_632f43e12cdc5571525f1706a898de12 = L.polyline(\n",
+ " [[42.329829, -71.090904], [42.325354, -71.09454], [42.33047, -71.099348], [42.338007, -71.099284], [42.388907, -71.133098], [42.388412, -71.119219], [42.38859, -71.119303], [42.400829, -71.112241], [42.396589, -71.122704]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_666edc2773939e5a361fe6a127e3de6c = L.circleMarker(\n",
+ " [42.329829, -71.090904],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5054358427bb7697cc475dc527f650d3 = L.circleMarker(\n",
+ " [42.325354, -71.09454],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_77c100592b634c467202a6e694b04906 = L.circleMarker(\n",
+ " [42.33047, -71.099348],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8695a3c84dd99962b3eb75b56dd444b6 = L.circleMarker(\n",
+ " [42.338007, -71.099284],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e13c3953871f7b40444a9b4524323147 = L.circleMarker(\n",
+ " [42.388907, -71.133098],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c55a1099121edadcbcd2d38980871163 = L.circleMarker(\n",
+ " [42.388412, -71.119219],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_fbf1b1b12bfc833279cc1c0f4f611bdd = L.circleMarker(\n",
+ " [42.38859, -71.119303],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_640738148ae4a9eedd754d540f9fd32c = L.circleMarker(\n",
+ " [42.400829, -71.112241],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0c9d49b05068cccea50ca353f1728494 = L.circleMarker(\n",
+ " [42.396589, -71.122704],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_33bc9aa71c0d9031255915ab151e9512 = L.polyline(\n",
+ " [[42.342001, -71.095003], [42.341231, -71.094327], [42.339096, -71.093834], [42.339762, -71.090331], [42.365054, -71.053931], [42.313798, -71.359917], [42.339762, -71.090331], [42.373086, -71.044638], [42.383573, -71.112746], [42.378452, -71.115739], [42.378275, -71.114496], [42.376696, -71.115952], [42.375457, -71.119379], [42.373491, -71.118959], [42.373266, -71.120839]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6a0e2e948ec4d6f64be982621ebac568 = L.circleMarker(\n",
+ " [42.342001, -71.095003],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_3b4edc9eb3f4acef3ddbe8bcc3e61e49 = L.circleMarker(\n",
+ " [42.341231, -71.094327],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e0ea70d1c18004e6587306ebf392db97 = L.circleMarker(\n",
+ " [42.339096, -71.093834],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7cc4368df1c92e0c9f96fa83c592a3ac = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d0b4ebed3784d900521124fe38745977 = L.circleMarker(\n",
+ " [42.365054, -71.053931],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_393870d2d335dfc6f051948371d141cd = L.circleMarker(\n",
+ " [42.313798, -71.359917],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_778b55ab31d8c67977319d0315b7627e = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_886d74be796379bb8d3bd0505f1b17e5 = L.circleMarker(\n",
+ " [42.373086, -71.044638],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_384fad0ef244aed214a3a1bb80b3cc54 = L.circleMarker(\n",
+ " [42.383573, -71.112746],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a141ed9ba989a70a35c2fc3d940843b9 = L.circleMarker(\n",
+ " [42.378452, -71.115739],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_9442c32f49d1fb04622f02c503adffaf = L.circleMarker(\n",
+ " [42.378275, -71.114496],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_119ab58de0f81c58ad5424df01591b7e = L.circleMarker(\n",
+ " [42.376696, -71.115952],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_a59d2244011f824c301eeb92e4a23cfa = L.circleMarker(\n",
+ " [42.375457, -71.119379],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_47e253b140590030d2fc81c2421c1c9c = L.circleMarker(\n",
+ " [42.373491, -71.118959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6799b06a6c35ea4389290ceccff93102 = L.circleMarker(\n",
+ " [42.373266, -71.120839],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;purple&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;purple&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_e38b81b69209095ee318f780be7be9dd = L.polyline(\n",
+ " [[42.410941, -71.168458], [42.429978, -71.203921], [42.361942, -71.18542], [42.339762, -71.090331], [42.386576, -71.033567], [42.367158, -71.035936], [42.365172, -71.035967], [42.363961, -71.033209], [42.352749, -71.04333], [42.351052, -71.044959]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7467828b1d899c11b8313e7a19737762 = L.circleMarker(\n",
+ " [42.410941, -71.168458],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_48c58abd980fe77f8888f2da65c06233 = L.circleMarker(\n",
+ " [42.429978, -71.203921],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_331c7629591e016b62299b9ecaaa4800 = L.circleMarker(\n",
+ " [42.361942, -71.18542],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0bc9bd3bfeee2d319421e7d320c01999 = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_27427395b2f16bc33aec20027fae1dc7 = L.circleMarker(\n",
+ " [42.386576, -71.033567],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c3aaba254d06402c5f2b77f84ed5dd1d = L.circleMarker(\n",
+ " [42.367158, -71.035936],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_02300404a188a04dbd413095acb97e1e = L.circleMarker(\n",
+ " [42.365172, -71.035967],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8a090b9326ebb9dacf8b510607226166 = L.circleMarker(\n",
+ " [42.363961, -71.033209],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_b562d9e52599f914a5ecb240204862a1 = L.circleMarker(\n",
+ " [42.352749, -71.04333],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_5bbc202f6d3225251970d5dc68e0d461 = L.circleMarker(\n",
+ " [42.351052, -71.044959],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;brown&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;brown&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_0ced75586135d37abc910e14b9868345 = L.polyline(\n",
+ " [[42.358757, -71.057201], [42.353717, -71.061676], [42.351671, -71.050269], [42.35199, -71.049726]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6c324173c5b1d04684fdb3ab6d0ae540 = L.circleMarker(\n",
+ " [42.358757, -71.057201],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_1854188d417ec0904eea7542eb98f10c = L.circleMarker(\n",
+ " [42.353717, -71.061676],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7adfba3449899db9ae1f53bbeb52f4eb = L.circleMarker(\n",
+ " [42.351671, -71.050269],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_89696f2bda7e140b35271966c451abc3 = L.circleMarker(\n",
+ " [42.35199, -71.049726],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;black&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_f2c08ccd3b5ad27745655513080307bd = L.polyline(\n",
+ " [[42.352211, -71.051172], [42.350941, -71.059567], [42.355298, -71.061249], [42.355519, -71.063037], [42.354894, -71.063514], [42.353792, -71.068086], [42.352314, -71.067311], [42.352445, -71.066839], [42.349993, -71.067854], [42.348915, -71.072038], [42.339762, -71.090331], [42.395119, -71.02396], [42.382756, -71.011693], [42.377891, -71.028298]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_abaed8f28ba41db7f2c6c5f3a0418911 = L.circleMarker(\n",
+ " [42.352211, -71.051172],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_e0211623ac5558587319b6db96562243 = L.circleMarker(\n",
+ " [42.350941, -71.059567],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_aa6ee82344990f8e020d9a3eea9a297a = L.circleMarker(\n",
+ " [42.355298, -71.061249],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c9d4df86efebd5c51683a166afd84f8f = L.circleMarker(\n",
+ " [42.355519, -71.063037],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_6849c37d8fff92e6c905298a1d0b2471 = L.circleMarker(\n",
+ " [42.354894, -71.063514],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7c6d9f3713bb22a206a22f2f33fc0a6b = L.circleMarker(\n",
+ " [42.353792, -71.068086],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_74fc2b86a9cd85de10a0ec62469850af = L.circleMarker(\n",
+ " [42.352314, -71.067311],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c5872d5e094b03b4a0abf8a877c64874 = L.circleMarker(\n",
+ " [42.352445, -71.066839],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_13743eeb80e20d2282f09069fc75793d = L.circleMarker(\n",
+ " [42.349993, -71.067854],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_d418018faa1049adeee2ec5b295a6e60 = L.circleMarker(\n",
+ " [42.348915, -71.072038],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_0b2f211f5412575ec76bcf4e7507238e = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_367e140d034426a7153d9c2b16e657a8 = L.circleMarker(\n",
+ " [42.395119, -71.02396],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_00d5bc50f9ce315a65cae609f408ce4f = L.circleMarker(\n",
+ " [42.382756, -71.011693],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_c0b5d73df6020b5135bb92d05716275c = L.circleMarker(\n",
+ " [42.377891, -71.028298],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;gray&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;gray&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var poly_line_6b9ea61ffc45429690cf7f20246fc2ca = L.polyline(\n",
+ " [[42.374259, -71.110851], [42.349997, -71.085166], [42.348977, -71.091358], [42.339762, -71.090331]],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7868085521b7cabecf8c77de840e4d9a = L.circleMarker(\n",
+ " [42.374259, -71.110851],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_8e16b0c6fc7737f334d4f62b8b36366c = L.circleMarker(\n",
+ " [42.349997, -71.085166],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_2c479012ccb2801b531aa3ff631273ac = L.circleMarker(\n",
+ " [42.348977, -71.091358],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ " \n",
+ " var circle_marker_7420b950d65683c90665c63dea50ca80 = L.circleMarker(\n",
+ " [42.339762, -71.090331],\n",
+ " {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;pink&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;pink&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
+ " ).addTo(map_a113ca2999b944715e9a3600543bd417);\n",
+ " \n",
+ "&lt;/script&gt;\n",
+ "&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
+ ],
+ "text/plain": [
+ "<folium.folium.Map at 0x16c5df950>"
+ ]
},
"execution_count": 37,
"metadata": {},
@@ -864,29 +5122,26 @@
" \n",
"# Display the map\n",
"m"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:13:22.619199Z",
- "start_time": "2023-11-07T23:13:22.527566Z"
- }
- },
- "id": "4305c6981e48e87f"
+ ]
},
{
"cell_type": "markdown",
+ "id": "4723f2f26efe49d3",
+ "metadata": {},
"source": [
"## Results"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "4723f2f26efe49d3"
+ ]
},
{
"cell_type": "code",
"execution_count": 36,
+ "id": "5887f93dd890bc77",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:12:32.990935Z",
+ "start_time": "2023-11-07T23:12:32.987254Z"
+ }
+ },
"outputs": [
{
"name": "stdout",
@@ -912,19 +5167,18 @@
" route_waypoints.append(len(route))\n",
"for i in range(len(route_waypoints)):\n",
" print(\"Route {} has {} waypoints\".format(i + 1, route_waypoints[i]))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:12:32.990935Z",
- "start_time": "2023-11-07T23:12:32.987254Z"
- }
- },
- "id": "5887f93dd890bc77"
+ ]
},
{
"cell_type": "code",
"execution_count": 34,
+ "id": "3a4b529fc3f2b336",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-11-07T23:11:11.477373Z",
+ "start_time": "2023-11-07T23:11:08.172393Z"
+ }
+ },
"outputs": [
{
"name": "stdout",
@@ -951,44 +5205,34 @@
" northeastern_coordinate))\n",
"for i in range(len(trip_hrs)):\n",
" print(\"The trip will take {} hours\".format(trip_hrs[i]))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T23:11:11.477373Z",
- "start_time": "2023-11-07T23:11:08.172393Z"
- }
- },
- "id": "3a4b529fc3f2b336"
+ ]
},
{
"cell_type": "code",
"execution_count": null,
+ "id": "a4cf5509f890423a",
+ "metadata": {},
"outputs": [],
- "source": [],
- "metadata": {
- "collapsed": false
- },
- "id": "a4cf5509f890423a"
+ "source": []
}
],
"metadata": {
"kernelspec": {
- "display_name": "Python 3",
+ "display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
- "version": 2
+ "version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
- "pygments_lexer": "ipython2",
- "version": "2.7.6"
+ "pygments_lexer": "ipython3",
+ "version": "3.11.4"
}
},
"nbformat": 4,
diff --git a/ZestySalesman.py b/ZestySalesman.py
new file mode 100644
index 0000000..1901a0e
--- /dev/null
+++ b/ZestySalesman.py
@@ -0,0 +1,368 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+# In[1]:
+
+
+import pandas as pd
+import folium
+import utils
+
+
+# In[2]:
+
+
+# Load the data
+ListA = pd.read_csv('List A.csv')
+ListB = pd.read_csv('List B.csv')
+ListC = pd.read_csv('List C.csv')
+ListD = pd.read_csv('List D.csv')
+
+
+# In[3]:
+
+
+# Create two centroids, one in the North End and one in the Seaport District
+centroids = [[42.365, -71.054], [42.351, -71.045]]
+
+northeastern_coordinate = "-71.09033,42.33976"
+
+
+# In[4]:
+
+
+# Combine the two lists and add a column to indicate the list
+ListA['list'] = 'A'
+ListB['list'] = 'B'
+ListC['list'] = 'C'
+ListD['list'] = 'D'
+
+TotalList = pd.concat([ListA, ListB, ListC, ListD])
+
+
+# In[5]:
+
+
+# Remove all columns but name and gps
+TotalList = TotalList[['name', 'gps', 'list']]
+
+
+# In[6]:
+
+
+# Convert the gps column to a list of lists for k-means
+TotalList['gps'] = TotalList['gps'].apply(lambda x: x.strip('[]').split(','))
+TotalList['gps'] = TotalList['gps'].apply(lambda x: [float(i) for i in x])
+
+
+# In[7]:
+
+
+display(TotalList)
+
+
+# # 2 Routes
+
+# ## Cluster and Minimize
+
+# In[8]:
+
+
+# Cluster and minimize the data
+_, routes = utils.cluster_and_optimize(TotalList, centroids, northeastern_coordinate,
+ time_diff=0.25, max_time=24)
+
+route_1_coordinates = routes[0]
+route_2_coordinates = routes[1]
+
+
+# ## Create JSON
+
+# In[9]:
+
+
+# Create a JSON request for the API
+# This is the data we want to get from the API
+route_1 = utils.list_to_string(route_1_coordinates)
+route_2 = utils.list_to_string(route_2_coordinates)
+
+
+# In[10]:
+
+
+# Create a dataframe from the JSON
+df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate)
+df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate)
+
+
+# In[11]:
+
+
+# Add columns for the route number
+df1['route'] = 1
+df2['route'] = 2
+
+# Concatenate the two dataframes
+df = pd.concat([df1, df2], ignore_index=True)
+
+
+# In[12]:
+
+
+display(df)
+
+
+# ## Map
+
+# In[13]:
+
+
+# Create a map
+m = folium.Map(location=[df['lon'].mean(), df['lat'].mean()], zoom_start=11)
+
+# Add the points and lines for the two routes with different colors
+colors = ['red', 'blue']
+
+for route in df['route'].unique():
+ df_route = df[df['route'] == route]
+ folium.PolyLine(df_route[['lon', 'lat']].values.tolist(), color=colors[route - 1]).add_to(m)
+ for i in range(len(df_route)):
+ folium.CircleMarker(df_route[['lon', 'lat']].iloc[i].values.tolist(), radius=3, color=colors[route - 1]).add_to(
+ m)
+
+# Display the map
+m
+
+
+# ## Results
+
+# In[14]:
+
+
+# Get the number of waypoints for each route
+route_1_waypoints = len(route_1_coordinates)
+route_2_waypoints = len(route_2_coordinates)
+print("Route 1 has {} waypoints".format(route_1_waypoints))
+print("Route 2 has {} waypoints".format(route_2_waypoints))
+
+
+# In[15]:
+
+
+trip_hrs_1 = utils.get_trip_time(route_1, route_1_waypoints, utils.list_to_string([centroids[0]]),
+ northeastern_coordinate)
+print("The trip will take {} hours".format(trip_hrs_1))
+trip_hrs_2 = utils.get_trip_time(route_2, route_2_waypoints, utils.list_to_string([centroids[1]]),
+ northeastern_coordinate)
+print("The trip will take {} hours".format(trip_hrs_2))
+
+
+# # 3 Routes
+
+# In[16]:
+
+
+# Cluster and minimize the data
+# Add a third centroid in the Financial District
+centroids.append([42.356, -71.055])
+_, routes = utils.cluster_and_optimize(TotalList, centroids, northeastern_coordinate, time_diff=0.3, max_time=24)
+
+route_1_coordinates = routes[0]
+route_2_coordinates = routes[1]
+route_3_coordinates = routes[2]
+
+
+# ## Create JSON
+
+# In[17]:
+
+
+# Create a JSON request for the API
+# This is the data we want to get from the API
+route_1 = utils.list_to_string(route_1_coordinates)
+route_2 = utils.list_to_string(route_2_coordinates)
+route_3 = utils.list_to_string(route_3_coordinates)
+
+
+# In[18]:
+
+
+# Create a dataframe from the JSON
+df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate)
+df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate)
+df3 = utils.create_json_df(route_3, utils.list_to_string([centroids[2]]), northeastern_coordinate)
+
+
+# In[19]:
+
+
+# Add columns for the route number
+df1['route'] = 1
+df2['route'] = 2
+df3['route'] = 3
+
+# Concatenate the three dataframes
+df = pd.concat([df1, df2, df3], ignore_index=True)
+
+
+# In[20]:
+
+
+display(df)
+
+
+# ## Map
+
+# In[21]:
+
+
+# Create a map
+m = folium.Map(location=[df['lon'].mean(), df['lat'].mean()], zoom_start=11)
+
+# Add the points and lines for the three routes with different colors
+colors = ['red', 'blue', 'green']
+
+for route in df['route'].unique():
+ df_route = df[df['route'] == route]
+ folium.PolyLine(df_route[['lon', 'lat']].values.tolist(), color=colors[route - 1]).add_to(m)
+ for i in range(len(df_route)):
+ folium.CircleMarker(df_route[['lon', 'lat']].iloc[i].values.tolist(), radius=3, color=colors[route - 1]).add_to(
+ m)
+
+# Display the map
+m
+
+
+# ## Results
+
+# In[22]:
+
+
+# Get the number of waypoints for each route
+route_1_waypoints = len(route_1_coordinates)
+route_2_waypoints = len(route_2_coordinates)
+route_3_waypoints = len(route_3_coordinates)
+print("Route 1 has {} waypoints".format(route_1_waypoints))
+print("Route 2 has {} waypoints".format(route_2_waypoints))
+print("Route 3 has {} waypoints".format(route_3_waypoints))
+
+
+# In[23]:
+
+
+# Get the trip time for each route
+trip_hrs_1 = utils.get_trip_time(route_1, route_1_waypoints, utils.list_to_string([centroids[0]]),
+ northeastern_coordinate)
+print("The trip will take {} hours".format(trip_hrs_1))
+trip_hrs_2 = utils.get_trip_time(route_2, route_2_waypoints, utils.list_to_string([centroids[1]]),
+ northeastern_coordinate)
+print("The trip will take {} hours".format(trip_hrs_2))
+trip_hrs_3 = utils.get_trip_time(route_3, route_3_waypoints, utils.list_to_string([centroids[2]]),
+ northeastern_coordinate)
+print("The trip will take {} hours".format(trip_hrs_3))
+
+
+# # 10 ROUTES (because I can)
+
+# In[24]:
+
+
+# Cluster and minimize the data
+# Add seven more centroids around Boston with different latitudes and longitudes
+for i in range(7):
+ centroids.append([42.365 + i * 0.01, -71.054 + i * 0.01])
+
+_, routes = utils.cluster_and_optimize(TotalList, centroids, northeastern_coordinate, time_diff=0.5, max_time=24)
+
+
+# ## Create JSON
+
+# In[25]:
+
+
+# Create a JSON request for the API
+# This is the data we want to get from the API
+route_strings = []
+for route in routes:
+ route_strings.append(utils.list_to_string(route))
+
+
+# In[26]:
+
+
+# Create a dataframe from the JSON
+dfs = []
+for i in range(len(routes)):
+ dfs.append(utils.create_json_df(route_strings[i], utils.list_to_string([centroids[i]]), northeastern_coordinate))
+
+# Concatenate the dataframes
+df = pd.concat(dfs, ignore_index=True)
+
+
+# In[30]:
+
+
+# Add columns for the route number
+for i in range(len(routes)):
+ df['route'].iloc[i * len(routes[i]):(i + 1) * len(routes[i])] = i + 1
+
+
+# In[31]:
+
+
+# Display the dataframe
+display(df)
+
+
+# ## Map
+
+# In[37]:
+
+
+# Create a map
+m = folium.Map(location=[df['lon'].mean(), df['lat'].mean()], zoom_start=11)
+
+# Add the points and lines for the three routes with different colors
+colors = ['red', 'blue', 'green', 'orange', 'purple', 'pink', 'black', 'gray', 'brown', 'yellow']
+
+for route in df['route'].unique():
+ df_route = df[df['route'] == route]
+ folium.PolyLine(df_route[['lon', 'lat']].values.tolist(), color=colors[route - 1]).add_to(m)
+ for i in range(len(df_route)):
+ folium.CircleMarker(df_route[['lon', 'lat']].iloc[i].values.tolist(), radius=3, color=colors[route - 1]).add_to(
+ m)
+
+# Display the map
+m
+
+
+# ## Results
+
+# In[36]:
+
+
+# Get the number of waypoints for each route
+route_waypoints = []
+for route in routes:
+ route_waypoints.append(len(route))
+for i in range(len(route_waypoints)):
+ print("Route {} has {} waypoints".format(i + 1, route_waypoints[i]))
+
+
+# In[34]:
+
+
+# Get the trip time for each route
+trip_hrs = []
+for i in range(len(routes)):
+ trip_hrs.append(utils.get_trip_time(route_strings[i], route_waypoints[i], utils.list_to_string([centroids[i]]),
+ northeastern_coordinate))
+for i in range(len(trip_hrs)):
+ print("The trip will take {} hours".format(trip_hrs[i]))
+
+
+# In[ ]:
+
+
+
+
diff --git a/ZestySalesmanNoMinimize.ipynb b/ZestySalesmanNoMinimize.ipynb
deleted file mode 100644
index 9632a4a..0000000
--- a/ZestySalesmanNoMinimize.ipynb
+++ /dev/null
@@ -1,706 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 1,
- "id": "initial_id",
- "metadata": {
- "collapsed": true,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:40.404048Z",
- "start_time": "2023-11-07T15:38:38.873539Z"
- }
- },
- "outputs": [],
- "source": [
- "import pandas as pd\n",
- "import folium\n",
- "import utils"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "outputs": [],
- "source": [
- "# Load the data\n",
- "ListA = pd.read_csv('List A.csv')\n",
- "ListB = pd.read_csv('List B.csv')\n",
- "ListC = pd.read_csv('List C.csv')\n",
- "ListD = pd.read_csv('List D.csv')"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:40.423960Z",
- "start_time": "2023-11-07T15:38:40.404555Z"
- }
- },
- "id": "73b780e762c9de37"
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "outputs": [],
- "source": [
- "# Create three centroids, one in the North End, one in the Financial District, and one in the Back Bay\n",
- "centroids = [[42.364506, -71.054733], [42.358894, -71.056742], [42.3505, -71.0760]]\n",
- "\n",
- "northeastern_coordinate = \"-71.09033,42.33976\""
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:40.424218Z",
- "start_time": "2023-11-07T15:38:40.420196Z"
- }
- },
- "id": "be4c8c1d77842ef7"
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "outputs": [],
- "source": [
- "# Combine the two lists and add a column to indicate the list\n",
- "ListA['list'] = 'A'\n",
- "ListB['list'] = 'B'\n",
- "ListC['list'] = 'C'\n",
- "ListD['list'] = 'D'\n",
- "\n",
- "TotalList = pd.concat([ListA, ListB, ListC, ListD])"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:40.442314Z",
- "start_time": "2023-11-07T15:38:40.425419Z"
- }
- },
- "id": "ffe4025e97a6c6b9"
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "outputs": [],
- "source": [
- "# Remove all columns but name and gps\n",
- "TotalList = TotalList[['name', 'gps', 'list']]"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:40.442798Z",
- "start_time": "2023-11-07T15:38:40.430053Z"
- }
- },
- "id": "72657779b4484aae"
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "outputs": [],
- "source": [
- "# Convert the gps column to a list of lists for k-means\n",
- "TotalList['gps'] = TotalList['gps'].apply(lambda x: x.strip('[]').split(','))\n",
- "TotalList['gps'] = TotalList['gps'].apply(lambda x: [float(i) for i in x])"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:40.442952Z",
- "start_time": "2023-11-07T15:38:40.432847Z"
- }
- },
- "id": "a157ffaec020a29a"
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "outputs": [
- {
- "data": {
- "text/plain": " name gps list \\\n0 521 Commercial Street #525 [42.3688272, -71.0553792] A \n1 Acorn St [42.3576234, -71.0688746] A \n2 Arlington's Great Meadows [42.4299758, -71.2038948] A \n3 Arthur Fiedler Statue [42.3565057, -71.0754527] A \n4 BU Beach [42.3511927, -71.1060828] A \n.. ... ... ... \n33 The Quiet Few [42.3670906, -71.0359889] D \n34 The Tall Ship Boston [42.3649544, -71.0414523] D \n35 Toasted Flats [42.3711266, -71.0371343] D \n36 Vega Market [42.3891835, -71.033703] D \n37 Winthrop High School [42.3803348, -70.9799864] D \n\n normalized_gps \n0 [0.7251058917247415, 0.7797482353989729] \n1 [0.6747391031099019, 0.7451825969538083] \n2 [1.0, 0.3993566550776867] \n3 [0.6697144722136962, 0.7283341725828262] \n4 [0.6458298305822171, 0.6498815915448888] \n.. ... \n33 [0.717298990038831, 0.8294124246148072] \n34 [0.7076956827824702, 0.8154190706511427] \n35 [0.7354428661210094, 0.8264787225922622] \n36 [0.8166178304491644, 0.8352672783369615] \n37 [0.7768384161061446, 0.972851090162032] \n\n[169 rows x 4 columns]",
- "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>name</th>\n <th>gps</th>\n <th>list</th>\n <th>normalized_gps</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>521 Commercial Street #525</td>\n <td>[42.3688272, -71.0553792]</td>\n <td>A</td>\n <td>[0.7251058917247415, 0.7797482353989729]</td>\n </tr>\n <tr>\n <th>1</th>\n <td>Acorn St</td>\n <td>[42.3576234, -71.0688746]</td>\n <td>A</td>\n <td>[0.6747391031099019, 0.7451825969538083]</td>\n </tr>\n <tr>\n <th>2</th>\n <td>Arlington's Great Meadows</td>\n <td>[42.4299758, -71.2038948]</td>\n <td>A</td>\n <td>[1.0, 0.3993566550776867]</td>\n </tr>\n <tr>\n <th>3</th>\n <td>Arthur Fiedler Statue</td>\n <td>[42.3565057, -71.0754527]</td>\n <td>A</td>\n <td>[0.6697144722136962, 0.7283341725828262]</td>\n </tr>\n <tr>\n <th>4</th>\n <td>BU Beach</td>\n <td>[42.3511927, -71.1060828]</td>\n <td>A</td>\n <td>[0.6458298305822171, 0.6498815915448888]</td>\n </tr>\n <tr>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th>33</th>\n <td>The Quiet Few</td>\n <td>[42.3670906, -71.0359889]</td>\n <td>D</td>\n <td>[0.717298990038831, 0.8294124246148072]</td>\n </tr>\n <tr>\n <th>34</th>\n <td>The Tall Ship Boston</td>\n <td>[42.3649544, -71.0414523]</td>\n <td>D</td>\n <td>[0.7076956827824702, 0.8154190706511427]</td>\n </tr>\n <tr>\n <th>35</th>\n <td>Toasted Flats</td>\n <td>[42.3711266, -71.0371343]</td>\n <td>D</td>\n <td>[0.7354428661210094, 0.8264787225922622]</td>\n </tr>\n <tr>\n <th>36</th>\n <td>Vega Market</td>\n <td>[42.3891835, -71.033703]</td>\n <td>D</td>\n <td>[0.8166178304491644, 0.8352672783369615]</td>\n </tr>\n <tr>\n <th>37</th>\n <td>Winthrop High School</td>\n <td>[42.3803348, -70.9799864]</td>\n <td>D</td>\n <td>[0.7768384161061446, 0.972851090162032]</td>\n </tr>\n </tbody>\n</table>\n<p>169 rows × 4 columns</p>\n</div>"
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "# Create a new column with normalized gps coordinates and centroids\n",
- "TotalList['normalized_gps'], norm_centroids = utils.normalize_gps(TotalList['gps'].values.tolist(), centroids)\n",
- "display(TotalList)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:40.443962Z",
- "start_time": "2023-11-07T15:38:40.436165Z"
- }
- },
- "id": "a03ebde91b87fa3b"
- },
- {
- "cell_type": "markdown",
- "source": [
- "# 2 Routes"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "4bd41be9aca5094b"
- },
- {
- "cell_type": "markdown",
- "source": [
- "## Cluster and Minimize"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "90d1d2f1a931597f"
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "/Users/garrinshieh/anaconda3/lib/python3.11/site-packages/sklearn/cluster/_kmeans.py:1412: FutureWarning: The default value of `n_init` will change from 10 to 'auto' in 1.4. Set the value of `n_init` explicitly to suppress the warning\n",
- " super()._check_params_vs_input(X, default_n_init=10)\n",
- "/Users/garrinshieh/anaconda3/lib/python3.11/site-packages/sklearn/cluster/_kmeans.py:1412: RuntimeWarning: Explicit initial center position passed: performing only one init in KMeans instead of n_init=10.\n",
- " super()._check_params_vs_input(X, default_n_init=10)\n"
- ]
- }
- ],
- "source": [
- "# Cluster and minimize the data\n",
- "norm_centroids_2 = norm_centroids[:2]\n",
- "_, route_1_coordinates, route_2_coordinates = utils.cluster_and_minimize_2(TotalList, centroids, norm_centroids_2,\n",
- " northeastern_coordinate, 0.5, minimize=False)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:43.183771Z",
- "start_time": "2023-11-07T15:38:40.443836Z"
- }
- },
- "id": "ee9b3c1ecb360976"
- },
- {
- "cell_type": "markdown",
- "source": [
- "## Create JSON"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "c85b8ef869e35006"
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "outputs": [],
- "source": [
- "# Create a JSON request for the API\n",
- "# This is the data we want to get from the API\n",
- "route_1 = utils.list_to_string(route_1_coordinates)\n",
- "route_2 = utils.list_to_string(route_2_coordinates)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:43.192691Z",
- "start_time": "2023-11-07T15:38:43.184382Z"
- }
- },
- "id": "aa618161182b5b07"
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "outputs": [],
- "source": [
- "# Create a dataframe from the JSON\n",
- "df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate)\n",
- "df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:45.665442Z",
- "start_time": "2023-11-07T15:38:43.186783Z"
- }
- },
- "id": "32c485788eedd94"
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "outputs": [],
- "source": [
- "# Add columns for the route number\n",
- "df1['route'] = 1\n",
- "df2['route'] = 2\n",
- "\n",
- "# Concatenate the two dataframes\n",
- "df = pd.concat([df1, df2], ignore_index=True)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:45.678738Z",
- "start_time": "2023-11-07T15:38:45.666570Z"
- }
- },
- "id": "49dba1f17ca8337e"
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "outputs": [
- {
- "data": {
- "text/plain": " waypoint_index trips_index \\\n0 0 0 \n1 1 0 \n2 2 0 \n3 3 0 \n4 4 0 \n.. ... ... \n168 84 0 \n169 85 0 \n170 86 0 \n171 87 0 \n172 88 0 \n\n hint distance \\\n0 t4YsgAGHLIAAAAAAVQEAAAAAAAAwAAAAAAAAAHV0F0IAAA... 19.432511 \n1 IzYEgGw1BIASAAAArwAAADMAAACUAwAAynkIQGUkmkEXlL... 6.024489 \n2 5IgsgAqJLID7AAAAHgAAAAwAAAAIAAAAz5ffQcMBVEDFYK... 5.871835 \n3 G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8... 2.602121 \n4 gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR... 15.458439 \n.. ... ... \n168 7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA... 7.478611 \n169 bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx... 8.340476 \n170 MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh... 11.504463 \n171 k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e... 36.240351 \n172 DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA... 0.236958 \n\n name location lat lon \\\n0 [-71.054865, 42.364361] -71.054865 42.364361 \n1 [-71.055569, 42.364032] -71.055569 42.364032 \n2 [-71.055582, 42.365251] -71.055582 42.365251 \n3 [-71.056164, 42.366918] -71.056164 42.366918 \n4 [-71.055561, 42.368861] -71.055561 42.368861 \n.. ... ... ... ... \n168 [-71.096959, 42.344689] -71.096959 42.344689 \n169 [-71.095003, 42.342001] -71.095003 42.342001 \n170 [-71.094327, 42.341231] -71.094327 42.341231 \n171 [-71.093834, 42.339096] -71.093834 42.339096 \n172 Northeastern (Inbound) [-71.090331, 42.339762] -71.090331 42.339762 \n\n route \n0 1 \n1 1 \n2 1 \n3 1 \n4 1 \n.. ... \n168 2 \n169 2 \n170 2 \n171 2 \n172 2 \n\n[173 rows x 9 columns]",
- "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>waypoint_index</th>\n <th>trips_index</th>\n <th>hint</th>\n <th>distance</th>\n <th>name</th>\n <th>location</th>\n <th>lat</th>\n <th>lon</th>\n <th>route</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>0</td>\n <td>0</td>\n <td>t4YsgAGHLIAAAAAAVQEAAAAAAAAwAAAAAAAAAHV0F0IAAA...</td>\n <td>19.432511</td>\n <td></td>\n <td>[-71.054865, 42.364361]</td>\n <td>-71.054865</td>\n <td>42.364361</td>\n <td>1</td>\n </tr>\n <tr>\n <th>1</th>\n <td>1</td>\n <td>0</td>\n <td>IzYEgGw1BIASAAAArwAAADMAAACUAwAAynkIQGUkmkEXlL...</td>\n <td>6.024489</td>\n <td></td>\n <td>[-71.055569, 42.364032]</td>\n <td>-71.055569</td>\n <td>42.364032</td>\n <td>1</td>\n </tr>\n <tr>\n <th>2</th>\n <td>2</td>\n <td>0</td>\n <td>5IgsgAqJLID7AAAAHgAAAAwAAAAIAAAAz5ffQcMBVEDFYK...</td>\n <td>5.871835</td>\n <td></td>\n <td>[-71.055582, 42.365251]</td>\n <td>-71.055582</td>\n <td>42.365251</td>\n <td>1</td>\n </tr>\n <tr>\n <th>3</th>\n <td>3</td>\n <td>0</td>\n <td>G4gsgDiILICSAwAA5gAAAOkAAAAAAAAAQljLQnyXy0Fhy8...</td>\n <td>2.602121</td>\n <td></td>\n <td>[-71.056164, 42.366918]</td>\n <td>-71.056164</td>\n <td>42.366918</td>\n <td>1</td>\n </tr>\n <tr>\n <th>4</th>\n <td>4</td>\n <td>0</td>\n <td>gIosgLaKLIDOAAAArgAAAFwBAAAAAAAAp3O3QafxmUEQiR...</td>\n <td>15.458439</td>\n <td></td>\n <td>[-71.055561, 42.368861]</td>\n <td>-71.055561</td>\n <td>42.368861</td>\n <td>1</td>\n </tr>\n <tr>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th>168</th>\n <td>84</td>\n <td>0</td>\n <td>7hAigPYQIoA2AgAAYwEAAAAAAAAAAAAAnsd7Qq9XHUIAAA...</td>\n <td>7.478611</td>\n <td></td>\n <td>[-71.096959, 42.344689]</td>\n <td>-71.096959</td>\n <td>42.344689</td>\n <td>2</td>\n </tr>\n <tr>\n <th>169</th>\n <td>85</td>\n <td>0</td>\n <td>bwwigH0MIoAFAAAAEAAAAFUAAAArAAAAag0xP3921D-BFx...</td>\n <td>8.340476</td>\n <td></td>\n <td>[-71.095003, 42.342001]</td>\n <td>-71.095003</td>\n <td>42.342001</td>\n <td>2</td>\n </tr>\n <tr>\n <th>170</th>\n <td>86</td>\n <td>0</td>\n <td>MQwigFwMIoAoAAAANQAAABwAAAB-AAAAoidqQSAYl0GvUh...</td>\n <td>11.504463</td>\n <td></td>\n <td>[-71.094327, 42.341231]</td>\n <td>-71.094327</td>\n <td>42.341231</td>\n <td>2</td>\n </tr>\n <tr>\n <th>171</th>\n <td>87</td>\n <td>0</td>\n <td>k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e...</td>\n <td>36.240351</td>\n <td></td>\n <td>[-71.093834, 42.339096]</td>\n <td>-71.093834</td>\n <td>42.339096</td>\n <td>2</td>\n </tr>\n <tr>\n <th>172</th>\n <td>88</td>\n <td>0</td>\n <td>DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA...</td>\n <td>0.236958</td>\n <td>Northeastern (Inbound)</td>\n <td>[-71.090331, 42.339762]</td>\n <td>-71.090331</td>\n <td>42.339762</td>\n <td>2</td>\n </tr>\n </tbody>\n</table>\n<p>173 rows × 9 columns</p>\n</div>"
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "display(df)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:45.679592Z",
- "start_time": "2023-11-07T15:38:45.669550Z"
- }
- },
- "id": "f231d9a35358988c"
- },
- {
- "cell_type": "markdown",
- "source": [
- "## Map"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "75be92e34a36147f"
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "outputs": [
- {
- "data": {
- "text/plain": "<folium.folium.Map at 0x146a39e50>",
- "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;html&gt;\n&lt;head&gt;\n \n &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n \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.9.3/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://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n \n &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n &lt;style&gt;\n #map_38c32a82e4c47f408c385fba9746ea22 {\n position: relative;\n width: 100.0%;\n height: 100.0%;\n left: 0.0%;\n top: 0.0%;\n }\n .leaflet-container { font-size: 1rem; }\n &lt;/style&gt;\n \n&lt;/head&gt;\n&lt;body&gt;\n \n \n &lt;div class=&quot;folium-map&quot; id=&quot;map_38c32a82e4c47f408c385fba9746ea22&quot; &gt;&lt;/div&gt;\n \n&lt;/body&gt;\n&lt;script&gt;\n \n \n var map_38c32a82e4c47f408c385fba9746ea22 = L.map(\n &quot;map_38c32a82e4c47f408c385fba9746ea22&quot;,\n {\n center: [42.35904369942197, -71.07226178034684],\n crs: L.CRS.EPSG3857,\n zoom: 11,\n zoomControl: true,\n preferCanvas: false,\n }\n );\n\n \n\n \n \n var tile_layer_0ee8f4b3658203e2ef1afa76a0d600b5 = L.tileLayer(\n &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\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_38c32a82e4c47f408c385fba9746ea22);\n \n \n var poly_line_d30ea21b6098c54619a2ef7537c68f84 = L.polyline(\n [[42.364361, -71.054865], [42.364032, -71.055569], [42.365251, -71.055582], [42.366918, -71.056164], [42.368861, -71.055561], [42.365968, -71.062507], [42.369195, -71.061735], [42.371832, -71.065634], [42.369868, -71.06828], [42.369473, -71.075628], [42.374142, -71.063105], [42.380436, -71.060948], [42.376391, -71.060753], [42.376178, -71.060933], [42.374119, -71.055588], [42.359704, -71.054519], [42.358757, -71.057201], [42.359295, -71.059255], [42.36049, -71.056995], [42.361263, -71.056994], [42.361534, -71.056819], [42.360949, -71.051539], [42.364857, -71.041248], [42.367158, -71.035936], [42.365172, -71.035967], [42.363961, -71.033209], [42.369812, -71.037911], [42.371161, -71.037188], [42.37337, -71.033036], [42.380792, -71.034935], [42.377891, -71.028298], [42.382756, -71.011693], [42.390256, -71.005456], [42.390466, -70.997084], [42.391786, -70.99031], [42.380215, -70.980137], [42.389507, -70.969384], [42.411181, -70.993747], [42.420244, -70.985934], [42.418321, -70.99748], [42.421213, -71.027113], [42.412279, -71.031525], [42.411785, -71.01537], [42.398247, -71.028327], [42.397588, -71.035674], [42.391309, -71.036726], [42.390284, -71.038526], [42.385546, -71.039316], [42.386461, -71.032794], [42.389192, -71.033749], [42.393843, -71.041015], [42.402568, -71.051453], [42.422264, -71.043219], [42.418307, -71.050739], [42.42069, -71.055953], [42.407436, -71.062128], [42.403792, -71.058992], [42.398809, -71.061206], [42.397236, -71.072007], [42.400829, -71.112241], [42.396589, -71.122704], [42.429978, -71.203921], [42.410941, -71.168458], [42.388907, -71.133098], [42.388412, -71.119219], [42.38859, -71.119303], [42.383988, -71.110771], [42.383573, -71.112746], [42.375457, -71.119379], [42.373491, -71.118959], [42.373266, -71.120839], [42.378275, -71.114496], [42.378452, -71.115739], [42.376696, -71.115952], [42.374259, -71.110851], [42.382131, -71.102659], [42.382238, -71.102512], [42.380957, -71.097894], [42.380072, -71.096887], [42.381759, -71.093444], [42.379731, -71.094916], [42.377355, -71.094764], [42.367607, -71.08097], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_957f9a7f0484d1c6f8a0a9db0315482c = L.circleMarker(\n [42.364361, -71.054865],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_87468086e3e8820f86e1c2d8a5e918b1 = L.circleMarker(\n [42.364032, -71.055569],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_c4e88e24a4b364d68347ff5f7ce52f26 = L.circleMarker(\n [42.365251, -71.055582],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_7e36d30fa5738d730aa74b78d965cb2b = L.circleMarker(\n [42.366918, -71.056164],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_cda2d20cd72f9815158b61dc0845cd77 = L.circleMarker(\n [42.368861, -71.055561],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d66c2c41b67c9eedb446b1fc35ec96a3 = L.circleMarker(\n [42.365968, -71.062507],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_0704199c74d52b10f4a1e7bf823285bb = L.circleMarker(\n [42.369195, -71.061735],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ae967bd63b5ef3c936c48600ecbb0cce = L.circleMarker(\n [42.371832, -71.065634],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_1b10fbbd4e83912029eb1bc067ccf943 = L.circleMarker(\n [42.369868, -71.06828],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a08ab415a4f6e6f43959c226222b4974 = L.circleMarker(\n [42.369473, -71.075628],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_70e39db769e1392526b3830521a2b327 = L.circleMarker(\n [42.374142, -71.063105],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_260e9ab42801d42a5112f6bd11573b63 = L.circleMarker(\n [42.380436, -71.060948],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_011c0673678401f3718ebb91d1e54181 = L.circleMarker(\n [42.376391, -71.060753],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a96e0f829a233367fd323ccd10ee8422 = L.circleMarker(\n [42.376178, -71.060933],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a5fc9adba96becd33564bbdbad92d0e3 = L.circleMarker(\n [42.374119, -71.055588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_3d30ee7269e095f3caf465ef6704900c = L.circleMarker(\n [42.359704, -71.054519],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d90a75a5d3ebccd8f986894b335e3b28 = L.circleMarker(\n [42.358757, -71.057201],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_505e435697fdabcb6cec4d9e35655bc5 = L.circleMarker(\n [42.359295, -71.059255],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_3b9ae6486032d2f6c2107c81c31e7475 = L.circleMarker(\n [42.36049, -71.056995],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_9df58b3938ca9992ce9ca4d7dd353ee8 = L.circleMarker(\n [42.361263, -71.056994],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_1c03f29b3ecd3e3b382d7f9cf3a78c78 = L.circleMarker(\n [42.361534, -71.056819],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_9fe67f72373973711a04531c115f9a00 = L.circleMarker(\n [42.360949, -71.051539],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_82e489a4906a903adebf8b64d6859218 = L.circleMarker(\n [42.364857, -71.041248],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_5aa40d5f383a3302078362741d4e2841 = L.circleMarker(\n [42.367158, -71.035936],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_eb5ebf7a11cb88ca0873a96e1ecf2c5a = L.circleMarker(\n [42.365172, -71.035967],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d22ee12e791e40fa492a4e8c23150d27 = L.circleMarker(\n [42.363961, -71.033209],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d00a379d1b4638b41d0d976d5b861e74 = L.circleMarker(\n [42.369812, -71.037911],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ea01c09f0f108a0b528bbee10fb05201 = L.circleMarker(\n [42.371161, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_14503d34dfd468cc9e8dadaa24df616f = L.circleMarker(\n [42.37337, -71.033036],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_398cf36a2ce9a1c8bda314b5c062a19d = L.circleMarker(\n [42.380792, -71.034935],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_66a7fa86935938e011835ba4413a1c54 = L.circleMarker(\n [42.377891, -71.028298],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_c942b6d10b9083250447c521e6acbdb8 = L.circleMarker(\n [42.382756, -71.011693],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_fb26bcd3bcb0e662c4a23a320c37680e = L.circleMarker(\n [42.390256, -71.005456],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_1e1d6cbf7fad9262ae8e21ee1b2a5002 = L.circleMarker(\n [42.390466, -70.997084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_612bed73802ea5d175b2d766317f58c4 = L.circleMarker(\n [42.391786, -70.99031],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ffdbbea607e4e4b41b8635c361b46ba8 = L.circleMarker(\n [42.380215, -70.980137],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_e1b372136c83e980fd4681943d31a77c = L.circleMarker(\n [42.389507, -70.969384],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ebbbe9c7b388fc2621a83b99c4818d3b = L.circleMarker(\n [42.411181, -70.993747],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ef7e6688707ace3e7eac063023c90e4a = L.circleMarker(\n [42.420244, -70.985934],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_9f831897c1922be12cc70f5edc721eb2 = L.circleMarker(\n [42.418321, -70.99748],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_c25627eb43c880e6b9d05f06ebbb1cce = L.circleMarker(\n [42.421213, -71.027113],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_06ced9543f193fa77cbcad40144042ac = L.circleMarker(\n [42.412279, -71.031525],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a8e26bf19606af555cd0d878ed8d6da1 = L.circleMarker(\n [42.411785, -71.01537],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_8929bc7ec6b99760701c9394850b438c = L.circleMarker(\n [42.398247, -71.028327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_4949cb55e578b37c5d1b5b3fc09dcb27 = L.circleMarker(\n [42.397588, -71.035674],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_bcbbc1535af8f968f49aa7b9b0711be5 = L.circleMarker(\n [42.391309, -71.036726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_69d2305eefc35b3161a25c8f5f0d3c7c = L.circleMarker(\n [42.390284, -71.038526],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a7a0068c20c0db5882bfcc5b1135f6e9 = L.circleMarker(\n [42.385546, -71.039316],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_0acdef61e7d6356a2dcf2c99ab3f7480 = L.circleMarker(\n [42.386461, -71.032794],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_906e0f7529044d7cb38e4f8508b45076 = L.circleMarker(\n [42.389192, -71.033749],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_79b5c268d2ab825d36703fd887589488 = L.circleMarker(\n [42.393843, -71.041015],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_63b0b71d8506f77332ca93f5aeb85d5f = L.circleMarker(\n [42.402568, -71.051453],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_50bc8b3f02251bf7ef0bcfcabe93485d = L.circleMarker(\n [42.422264, -71.043219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_f281fb1cd5e984767a5bc300e7238a6f = L.circleMarker(\n [42.418307, -71.050739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ed3fe60bdd878d2662bfe4dfe6602393 = L.circleMarker(\n [42.42069, -71.055953],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_5c5bc3ee6fc708210f587e1864fc857d = L.circleMarker(\n [42.407436, -71.062128],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_f1bea07fd62d52ac2470452caf9e5546 = L.circleMarker(\n [42.403792, -71.058992],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_132f9cbca31afc9ccdd974235bdedf17 = L.circleMarker(\n [42.398809, -71.061206],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_e9e51d3e837278220943623d3633d152 = L.circleMarker(\n [42.397236, -71.072007],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a269e7a52f3637fad1d569928dafa69c = L.circleMarker(\n [42.400829, -71.112241],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_70dae9b926578c93dc579898862214eb = L.circleMarker(\n [42.396589, -71.122704],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_79d43816bcb6a65b7ec0f28ddf509263 = L.circleMarker(\n [42.429978, -71.203921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_0519abd6476e3416a21e7c1a6c769f48 = L.circleMarker(\n [42.410941, -71.168458],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_542b8c55490115100730fbdbeb0564f9 = L.circleMarker(\n [42.388907, -71.133098],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_5f3c39b68a62b60b640886b6dba56b7d = L.circleMarker(\n [42.388412, -71.119219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_889bac2465b16d76a416757f893bed57 = L.circleMarker(\n [42.38859, -71.119303],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_44732b37fc438cd8a76a7c995d2ce391 = L.circleMarker(\n [42.383988, -71.110771],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_8d3c50fe5169d3e5987c624bf9f5d519 = L.circleMarker(\n [42.383573, -71.112746],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d5878745677805b08269effa03a077ef = L.circleMarker(\n [42.375457, -71.119379],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a9853ac7fd9bea4a69cce3542b3b1fa7 = L.circleMarker(\n [42.373491, -71.118959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_e1b3f51b847d54298e0557000c5276de = L.circleMarker(\n [42.373266, -71.120839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_f8a773b53c473c918f898c8647df5416 = L.circleMarker(\n [42.378275, -71.114496],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_2b0ccfdfe8bcf483c39d611f45c68fd9 = L.circleMarker(\n [42.378452, -71.115739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_7141298674c8534a67b5732817fb0fe4 = L.circleMarker(\n [42.376696, -71.115952],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_6a3e560e87fba3bddccad30b1caafc7a = L.circleMarker(\n [42.374259, -71.110851],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_459093c9d3a16d7d59cf8f4dd5396614 = L.circleMarker(\n [42.382131, -71.102659],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_f98c4b6bee71abbff117cd1d3f135fd9 = L.circleMarker(\n [42.382238, -71.102512],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a409f8d04dfcfdb9b598183518b3b2d4 = L.circleMarker(\n [42.380957, -71.097894],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ef8417690e3b6beeb546b203761626c3 = L.circleMarker(\n [42.380072, -71.096887],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_96cc11379c7bf03d4c2e3956b1b557b0 = L.circleMarker(\n [42.381759, -71.093444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_c1f9974901ec0a43ef280d7300ec28c7 = L.circleMarker(\n [42.379731, -71.094916],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_b778cae389e4ee9d89b8e1bb74bcb3df = L.circleMarker(\n [42.377355, -71.094764],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d3a9f4795631a8f5a3c810572e8e7ec4 = L.circleMarker(\n [42.367607, -71.08097],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_31300cc977219d929e091fb32a821779 = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var poly_line_4af2b8f50ed5dbc11ed74fb6fdf05e0b = L.polyline(\n [[42.358884, -71.056741], [42.357428, -71.058565], [42.358056, -71.062171], [42.358851, -71.064277], [42.357529, -71.069242], [42.356682, -71.066568], [42.355298, -71.061249], [42.355519, -71.063037], [42.354894, -71.063514], [42.353717, -71.061676], [42.350941, -71.059567], [42.352211, -71.051172], [42.35199, -71.049726], [42.351671, -71.050269], [42.350902, -71.048805], [42.353667, -71.047121], [42.351052, -71.044959], [42.352749, -71.04333], [42.347902, -71.040407], [42.34898, -71.03588], [42.347795, -71.035964], [42.344315, -71.033918], [42.338284, -71.013043], [42.338284, -71.013043], [42.3359, -71.023658], [42.329187, -71.035189], [42.325624, -71.049204], [42.316288, -71.037188], [42.315966, -71.034107], [42.316292, -71.045242], [42.274385, -71.024029], [42.27938, -71.014026], [42.276371, -71.009534], [42.245312, -71.000444], [42.207533, -71.001295], [42.23913, -71.003762], [42.25784, -71.02898], [42.285832, -71.063084], [42.284476, -71.063921], [42.296172, -71.087449], [42.331874, -71.125847], [42.33162, -71.155413], [42.324682, -71.16198], [42.314504, -71.227365], [42.313798, -71.359917], [42.361942, -71.18542], [42.341017, -71.162549], [42.356842, -71.143863], [42.349667, -71.146009], [42.350083, -71.146124], [42.343387, -71.142763], [42.342619, -71.121734], [42.351932, -71.124132], [42.352999, -71.130896], [42.352585, -71.131464], [42.363221, -71.128473], [42.364024, -71.1088], [42.36265, -71.10141], [42.3614, -71.101475], [42.363685, -71.101083], [42.362555, -71.096306], [42.361529, -71.090578], [42.351083, -71.106096], [42.336, -71.112246], [42.336448, -71.10963], [42.338007, -71.099284], [42.332401, -71.100092], [42.332009, -71.098267], [42.33047, -71.099348], [42.325354, -71.09454], [42.329829, -71.090904], [42.324934, -71.06221], [42.327134, -71.066844], [42.34194, -71.083465], [42.34085, -71.071196], [42.348915, -71.072038], [42.349993, -71.067854], [42.352445, -71.066839], [42.352314, -71.067311], [42.353792, -71.068086], [42.356537, -71.075414], [42.349997, -71.085166], [42.348977, -71.091358], [42.346361, -71.089677], [42.344689, -71.096959], [42.342001, -71.095003], [42.341231, -71.094327], [42.339096, -71.093834], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_480a5005903c59bb66e0218ef0748cdf = L.circleMarker(\n [42.358884, -71.056741],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_c89b811af8ae7121113f7de8fc48cc19 = L.circleMarker(\n [42.357428, -71.058565],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a2268a24da36e23c513776e772f4af5d = L.circleMarker(\n [42.358056, -71.062171],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_771955cbca28bdc2a8bdd61fb4dd5ed5 = L.circleMarker(\n [42.358851, -71.064277],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_7bcceb4109474c5a70731c61c7e5cdaf = L.circleMarker(\n [42.357529, -71.069242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_b840e963bf8f4b0de6370fe125dd4338 = L.circleMarker(\n [42.356682, -71.066568],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_25b45bf08a3ec41bac54d152b808bd7b = L.circleMarker(\n [42.355298, -71.061249],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_11e14899d0396b86db157add3b52724f = L.circleMarker(\n [42.355519, -71.063037],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_4e6be104a7e422aa628dd6e807d2c86f = L.circleMarker(\n [42.354894, -71.063514],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_bc04c9b61e5c3c1dc1035d7d38ea5f45 = L.circleMarker(\n [42.353717, -71.061676],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ab17b372f6f4acd92760b2edd99a7c84 = L.circleMarker(\n [42.350941, -71.059567],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_251b5ed931ed8b02e4ff20335d6be248 = L.circleMarker(\n [42.352211, -71.051172],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_67f2b2417ae64ace081ce1f4f291b402 = L.circleMarker(\n [42.35199, -71.049726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_993278e58e54bc2bb3a43e4ddd310c8a = L.circleMarker(\n [42.351671, -71.050269],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_1a35af39d90e12764a7b465f7320239a = L.circleMarker(\n [42.350902, -71.048805],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_c7c5589ad7c5c1727c3a62d130b1785d = L.circleMarker(\n [42.353667, -71.047121],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_6d16104e5ea4b307d7d2454261981571 = L.circleMarker(\n [42.351052, -71.044959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_45034419f887a3e79012a63c420df125 = L.circleMarker(\n [42.352749, -71.04333],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ac8fb4e992568ad7d6fb7175bcf8fb53 = L.circleMarker(\n [42.347902, -71.040407],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ee3c07837cabf14c943fe3dec206bde0 = L.circleMarker(\n [42.34898, -71.03588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_5f89bd26dc71f6cc9d3ec56794828c27 = L.circleMarker(\n [42.347795, -71.035964],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_7a69802fd62a8883ec965a36a2af019f = L.circleMarker(\n [42.344315, -71.033918],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_2c1c77ca034538f91e53a85c1a0c3bc2 = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a9845dd316721ae8613f716b7a5a1961 = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_a1407d298fe859d8288ed946b3427345 = L.circleMarker(\n [42.3359, -71.023658],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d354b46eee3c08c183e68805869119ba = L.circleMarker(\n [42.329187, -71.035189],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_3dad61a11ef0d2a5094d81ef80818669 = L.circleMarker(\n [42.325624, -71.049204],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_728a202196d0e0dcc93ea200de2d2e00 = L.circleMarker(\n [42.316288, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_08d186707b5d2b2ae72029725aebec0a = L.circleMarker(\n [42.315966, -71.034107],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_f65b86fb5280513775a9ba4f40563ca8 = L.circleMarker(\n [42.316292, -71.045242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_e81356fdc149fefb5abbd24c410802e1 = L.circleMarker(\n [42.274385, -71.024029],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_7cd6dc801cf5d7d28a6ab4b5184e8084 = L.circleMarker(\n [42.27938, -71.014026],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_737b1990bd779d36d20fd5c52f20fd62 = L.circleMarker(\n [42.276371, -71.009534],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_1bc12d64d2205176f40e06200c992f79 = L.circleMarker(\n [42.245312, -71.000444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_9f3dba7b016b0e3d255f604fb9812475 = L.circleMarker(\n [42.207533, -71.001295],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_75e2b1b6a2fd97064fa8d0a30ed6d67a = L.circleMarker(\n [42.23913, -71.003762],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_48023637d08bdb4c131c88101dbd1558 = L.circleMarker(\n [42.25784, -71.02898],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_01875157bfc8053a3ab0d8762dd0e860 = L.circleMarker(\n [42.285832, -71.063084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_9780acd7e4b2ed579f442c24e88b0dce = L.circleMarker(\n [42.284476, -71.063921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_8d11163872f91969aeabf113db0c9b28 = L.circleMarker(\n [42.296172, -71.087449],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_10ec8eeb1f7e3d21963db678a9ee5872 = L.circleMarker(\n [42.331874, -71.125847],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_debdf421d4c5d579e7dff22060767436 = L.circleMarker(\n [42.33162, -71.155413],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ebfe8b6ad2bd5e64bac4a929c7994e0a = L.circleMarker(\n [42.324682, -71.16198],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_aa68bdcea652b6e1aa3886e2d41da277 = L.circleMarker(\n [42.314504, -71.227365],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_87714c9c7b3cca8adb25e696132ac6a7 = L.circleMarker(\n [42.313798, -71.359917],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_131d04ab27b155bb76394a46215dcd4b = L.circleMarker(\n [42.361942, -71.18542],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_92993f6efd9e3381db5281fa76996206 = L.circleMarker(\n [42.341017, -71.162549],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_0c33816f9512c1d1e68d829a598cadf7 = L.circleMarker(\n [42.356842, -71.143863],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_5c85120d512066e1d4390e7aa078a7f2 = L.circleMarker(\n [42.349667, -71.146009],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d2cb504d89db0d19c19a3e73dc85577c = L.circleMarker(\n [42.350083, -71.146124],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ee5cb4b2f451964dcd79b47302384f4b = L.circleMarker(\n [42.343387, -71.142763],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ffb7c88b4193b49e6015611846c203c3 = L.circleMarker(\n [42.342619, -71.121734],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_5c9cbe8a1f6693a902f776b0a05ab3f9 = L.circleMarker(\n [42.351932, -71.124132],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_486f8494275a38b354dd3592be3971d8 = L.circleMarker(\n [42.352999, -71.130896],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d2652b33e7e6c2f0d07f087e4e44485a = L.circleMarker(\n [42.352585, -71.131464],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_682c7d211d80a414e4d0a8ca9688929a = L.circleMarker(\n [42.363221, -71.128473],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_2f8d480a1366f18d20cecb8da39a0a4f = L.circleMarker(\n [42.364024, -71.1088],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_404ab44bb0d1fd273c754364c54fb6a0 = L.circleMarker(\n [42.36265, -71.10141],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_630bf6e483db468e5e9a525d17a09e2e = L.circleMarker(\n [42.3614, -71.101475],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_29ab544543a2ea25b3959e7a53a957c0 = L.circleMarker(\n [42.363685, -71.101083],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ba3a1fd245df9053e777418fe794d7cb = L.circleMarker(\n [42.362555, -71.096306],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_697800a7e56238f66e05cd1d4a456a02 = L.circleMarker(\n [42.361529, -71.090578],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_33f9f40f3a92a623edd93698a0328d05 = L.circleMarker(\n [42.351083, -71.106096],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_dc2ba3654460a101c678f6534a77206d = L.circleMarker(\n [42.336, -71.112246],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_2314c43b412de1a97c4ad4df87a97c80 = L.circleMarker(\n [42.336448, -71.10963],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_f1407096b71aa703522a9ef70a873603 = L.circleMarker(\n [42.338007, -71.099284],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_29be281bed682a77064ed618718c4329 = L.circleMarker(\n [42.332401, -71.100092],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_467af7dd9f20fed9e9b826222f1fa13c = L.circleMarker(\n [42.332009, -71.098267],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_118ba464db6e10307c2556741ed24f65 = L.circleMarker(\n [42.33047, -71.099348],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_7317c979ea58b7b40ab9ad577ab67f5f = L.circleMarker(\n [42.325354, -71.09454],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_06db21101a3e783d1bbe94e801f7bb64 = L.circleMarker(\n [42.329829, -71.090904],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_4915289dfcf54f25ed90d8123de65238 = L.circleMarker(\n [42.324934, -71.06221],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_aaf9b99ca980fd247517c264f2140c2b = L.circleMarker(\n [42.327134, -71.066844],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_3f3dedb732a8e7486542a5c976696783 = L.circleMarker(\n [42.34194, -71.083465],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_de7e00f48c49051f373c4f9d43240809 = L.circleMarker(\n [42.34085, -71.071196],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_54141b6510977c2072cc0cb6b2409f4c = L.circleMarker(\n [42.348915, -71.072038],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_ff6e072842f7868eaaab7cceb0d5d81d = L.circleMarker(\n [42.349993, -71.067854],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_f48bfbc839e5642c1df9fee47c139355 = L.circleMarker(\n [42.352445, -71.066839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_d5b55f1dc4545385aa9300a7159b247c = L.circleMarker(\n [42.352314, -71.067311],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_8714b31fb9dd5e173d618f6f6f12ca7a = L.circleMarker(\n [42.353792, -71.068086],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_05662313962c7f6b2fa386161abb5e54 = L.circleMarker(\n [42.356537, -71.075414],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_4b84b90eb4d52af48e62674684f1a9e2 = L.circleMarker(\n [42.349997, -71.085166],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_8152ef2346ab18edc292e6fa78e50005 = L.circleMarker(\n [42.348977, -71.091358],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_379dc809081dfc8e225fe64beae24775 = L.circleMarker(\n [42.346361, -71.089677],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_96bce564bdecd708a6b8a63d51486cef = L.circleMarker(\n [42.344689, -71.096959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_6809090f712ec5d038acdec3e771aa46 = L.circleMarker(\n [42.342001, -71.095003],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_eabb7398a33a91679f4da45d789ecab9 = L.circleMarker(\n [42.341231, -71.094327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_2cade63e65a7f215d6d375645a3e74d8 = L.circleMarker(\n [42.339096, -71.093834],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n \n var circle_marker_53ae1a2a0e62b8d101c70aad5b55952f = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_38c32a82e4c47f408c385fba9746ea22);\n \n&lt;/script&gt;\n&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
- },
- "execution_count": 13,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# Create a map\n",
- "m = folium.Map(location=[df['lon'].mean(), df['lat'].mean()], zoom_start=11)\n",
- "\n",
- "# Add the points and lines for the two routes with different colors\n",
- "colors = ['red', 'blue']\n",
- "\n",
- "for route in df['route'].unique():\n",
- " df_route = df[df['route'] == route]\n",
- " folium.PolyLine(df_route[['lon', 'lat']].values.tolist(), color=colors[route - 1]).add_to(m)\n",
- " for i in range(len(df_route)):\n",
- " folium.CircleMarker(df_route[['lon', 'lat']].iloc[i].values.tolist(), radius=3, color=colors[route - 1]).add_to(\n",
- " m)\n",
- "\n",
- "# Display the map\n",
- "m"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:45.781790Z",
- "start_time": "2023-11-07T15:38:45.677705Z"
- }
- },
- "id": "80fd847da2833913"
- },
- {
- "cell_type": "markdown",
- "source": [
- "## Results"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "a7b562f75f7e0813"
- },
- {
- "cell_type": "code",
- "execution_count": 14,
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Route 1 has 82 waypoints\n",
- "Route 2 has 87 waypoints\n"
- ]
- }
- ],
- "source": [
- "# Get the number of waypoints for each route\n",
- "route_1_waypoints = len(route_1_coordinates)\n",
- "route_2_waypoints = len(route_2_coordinates)\n",
- "print(\"Route 1 has {} waypoints\".format(route_1_waypoints))\n",
- "print(\"Route 2 has {} waypoints\".format(route_2_waypoints))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:45.782104Z",
- "start_time": "2023-11-07T15:38:45.736109Z"
- }
- },
- "id": "f53c97acec1c2fc4"
- },
- {
- "cell_type": "code",
- "execution_count": 15,
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "The trip will take 11.154166666666667 hours\n",
- "The trip will take 14.8425 hours\n"
- ]
- }
- ],
- "source": [
- "trip_hrs_1 = utils.get_trip_time(route_1, route_1_waypoints, utils.list_to_string([centroids[0]]),\n",
- " northeastern_coordinate)\n",
- "print(\"The trip will take {} hours\".format(trip_hrs_1))\n",
- "trip_hrs_2 = utils.get_trip_time(route_2, route_2_waypoints, utils.list_to_string([centroids[1]]),\n",
- " northeastern_coordinate)\n",
- "print(\"The trip will take {} hours\".format(trip_hrs_2))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:48.049877Z",
- "start_time": "2023-11-07T15:38:45.738475Z"
- }
- },
- "id": "a3ec09dfb5cbb5b3"
- },
- {
- "cell_type": "markdown",
- "source": [
- "# 3 Routes"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "de7b5856172d213c"
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "/Users/garrinshieh/anaconda3/lib/python3.11/site-packages/sklearn/cluster/_kmeans.py:1412: FutureWarning: The default value of `n_init` will change from 10 to 'auto' in 1.4. Set the value of `n_init` explicitly to suppress the warning\n",
- " super()._check_params_vs_input(X, default_n_init=10)\n",
- "/Users/garrinshieh/anaconda3/lib/python3.11/site-packages/sklearn/cluster/_kmeans.py:1412: RuntimeWarning: Explicit initial center position passed: performing only one init in KMeans instead of n_init=10.\n",
- " super()._check_params_vs_input(X, default_n_init=10)\n"
- ]
- }
- ],
- "source": [
- "# Cluster and minimize the data\n",
- "_, route_1_coordinates, route_2_coordinates, route_3_coordinates = utils.cluster_and_minimize_3(TotalList, centroids,\n",
- " norm_centroids,\n",
- " northeastern_coordinate,\n",
- " 0.2, minimize=False)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:50.390169Z",
- "start_time": "2023-11-07T15:38:48.048739Z"
- }
- },
- "id": "bb6e00857e8175c0"
- },
- {
- "cell_type": "markdown",
- "source": [
- "## Create JSON"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "19afb4f687b37383"
- },
- {
- "cell_type": "code",
- "execution_count": 17,
- "outputs": [],
- "source": [
- "# Create a JSON request for the API\n",
- "# This is the data we want to get from the API\n",
- "route_1 = utils.list_to_string(route_1_coordinates)\n",
- "route_2 = utils.list_to_string(route_2_coordinates)\n",
- "route_3 = utils.list_to_string(route_3_coordinates)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:50.404500Z",
- "start_time": "2023-11-07T15:38:50.392611Z"
- }
- },
- "id": "e886e061f86a2118"
- },
- {
- "cell_type": "code",
- "execution_count": 18,
- "outputs": [],
- "source": [
- "# Create a dataframe from the JSON\n",
- "df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate)\n",
- "df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate)\n",
- "df3 = utils.create_json_df(route_3, utils.list_to_string([centroids[2]]), northeastern_coordinate)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:52.713204Z",
- "start_time": "2023-11-07T15:38:50.400202Z"
- }
- },
- "id": "23e4682fe9e30631"
- },
- {
- "cell_type": "code",
- "execution_count": 19,
- "outputs": [],
- "source": [
- "# Add columns for the route number\n",
- "df1['route'] = 1\n",
- "df2['route'] = 2\n",
- "df3['route'] = 3\n",
- "\n",
- "# Concatenate the three dataframes\n",
- "df = pd.concat([df1, df2, df3], ignore_index=True)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:52.724854Z",
- "start_time": "2023-11-07T15:38:52.718223Z"
- }
- },
- "id": "c3a5c5d6f3ac46c0"
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "outputs": [
- {
- "data": {
- "text/plain": " waypoint_index trips_index \\\n0 0 0 \n1 1 0 \n2 2 0 \n3 3 0 \n4 4 0 \n.. ... ... \n170 39 0 \n171 40 0 \n172 41 0 \n173 42 0 \n174 43 0 \n\n hint distance \\\n0 t4YsgAGHLIAAAAAAVQEAAAAAAAAwAAAAAAAAAHV0F0IAAA... 19.432511 \n1 e1kugJlZLoBmAAAA6QAAAAAAAAAAAAAAZ6M2QSewzkEAAA... 4.756158 \n2 tFkugHVaLoAOAAAAAAAAABgAAAAAAAAAwMG2QAAAAAB6ii... 4.525535 \n3 sJAugLOQLoBuAQAAlAEAAAAAAAAAAAAAHFcjQvEZM0IAAA... 7.844897 \n4 VREtgNlJBIBCAAAAYAAAAAAAAAARAAAAOOzeQU7vHkIAAA... 22.681980 \n.. ... ... \n170 cX8hgJF_IYA1AAAAMAAAAGcAAABOAAAATyWxQQ77nUEHMC... 22.776295 \n171 s9QhgLbUIYAwAAAAkAAAAAAAAAAAAAAA2XmpQNgrgEEAAA... 4.111715 \n172 5tYhgJHXIYAIAAAArQAAADwAAABCAQAAaRlbQD16mUGpAc... 17.374491 \n173 k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e... 36.240351 \n174 DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA... 0.236958 \n\n name location lat lon \\\n0 [-71.054865, 42.364361] -71.054865 42.364361 \n1 [-71.060933, 42.376178] -71.060933 42.376178 \n2 [-71.060753, 42.376391] -71.060753 42.376391 \n3 [-71.060948, 42.380436] -71.060948 42.380436 \n4 Factory Street [-71.061206, 42.398809] -71.061206 42.398809 \n.. ... ... ... ... \n170 Alleghany Street [-71.099348, 42.33047] -71.099348 42.330470 \n171 [-71.09454, 42.325354] -71.094540 42.325354 \n172 Dudley Street [-71.090904, 42.329829] -71.090904 42.329829 \n173 [-71.093834, 42.339096] -71.093834 42.339096 \n174 Northeastern (Inbound) [-71.090331, 42.339762] -71.090331 42.339762 \n\n route \n0 1 \n1 1 \n2 1 \n3 1 \n4 1 \n.. ... \n170 3 \n171 3 \n172 3 \n173 3 \n174 3 \n\n[175 rows x 9 columns]",
- "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>waypoint_index</th>\n <th>trips_index</th>\n <th>hint</th>\n <th>distance</th>\n <th>name</th>\n <th>location</th>\n <th>lat</th>\n <th>lon</th>\n <th>route</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>0</td>\n <td>0</td>\n <td>t4YsgAGHLIAAAAAAVQEAAAAAAAAwAAAAAAAAAHV0F0IAAA...</td>\n <td>19.432511</td>\n <td></td>\n <td>[-71.054865, 42.364361]</td>\n <td>-71.054865</td>\n <td>42.364361</td>\n <td>1</td>\n </tr>\n <tr>\n <th>1</th>\n <td>1</td>\n <td>0</td>\n <td>e1kugJlZLoBmAAAA6QAAAAAAAAAAAAAAZ6M2QSewzkEAAA...</td>\n <td>4.756158</td>\n <td></td>\n <td>[-71.060933, 42.376178]</td>\n <td>-71.060933</td>\n <td>42.376178</td>\n <td>1</td>\n </tr>\n <tr>\n <th>2</th>\n <td>2</td>\n <td>0</td>\n <td>tFkugHVaLoAOAAAAAAAAABgAAAAAAAAAwMG2QAAAAAB6ii...</td>\n <td>4.525535</td>\n <td></td>\n <td>[-71.060753, 42.376391]</td>\n <td>-71.060753</td>\n <td>42.376391</td>\n <td>1</td>\n </tr>\n <tr>\n <th>3</th>\n <td>3</td>\n <td>0</td>\n <td>sJAugLOQLoBuAQAAlAEAAAAAAAAAAAAAHFcjQvEZM0IAAA...</td>\n <td>7.844897</td>\n <td></td>\n <td>[-71.060948, 42.380436]</td>\n <td>-71.060948</td>\n <td>42.380436</td>\n <td>1</td>\n </tr>\n <tr>\n <th>4</th>\n <td>4</td>\n <td>0</td>\n <td>VREtgNlJBIBCAAAAYAAAAAAAAAARAAAAOOzeQU7vHkIAAA...</td>\n <td>22.681980</td>\n <td>Factory Street</td>\n <td>[-71.061206, 42.398809]</td>\n <td>-71.061206</td>\n <td>42.398809</td>\n <td>1</td>\n </tr>\n <tr>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th>170</th>\n <td>39</td>\n <td>0</td>\n <td>cX8hgJF_IYA1AAAAMAAAAGcAAABOAAAATyWxQQ77nUEHMC...</td>\n <td>22.776295</td>\n <td>Alleghany Street</td>\n <td>[-71.099348, 42.33047]</td>\n <td>-71.099348</td>\n <td>42.330470</td>\n <td>3</td>\n </tr>\n <tr>\n <th>171</th>\n <td>40</td>\n <td>0</td>\n <td>s9QhgLbUIYAwAAAAkAAAAAAAAAAAAAAA2XmpQNgrgEEAAA...</td>\n <td>4.111715</td>\n <td></td>\n <td>[-71.09454, 42.325354]</td>\n <td>-71.094540</td>\n <td>42.325354</td>\n <td>3</td>\n </tr>\n <tr>\n <th>172</th>\n <td>41</td>\n <td>0</td>\n <td>5tYhgJHXIYAIAAAArQAAADwAAABCAQAAaRlbQD16mUGpAc...</td>\n <td>17.374491</td>\n <td>Dudley Street</td>\n <td>[-71.090904, 42.329829]</td>\n <td>-71.090904</td>\n <td>42.329829</td>\n <td>3</td>\n </tr>\n <tr>\n <th>173</th>\n <td>42</td>\n <td>0</td>\n <td>k4chgBiIIYAKAAAAFwAAAPQDAAB_AgAAHn2aP-biHUBi6e...</td>\n <td>36.240351</td>\n <td></td>\n <td>[-71.093834, 42.339096]</td>\n <td>-71.093834</td>\n <td>42.339096</td>\n <td>3</td>\n </tr>\n <tr>\n <th>174</th>\n <td>43</td>\n <td>0</td>\n <td>DoUhgBeFIYCcAAAAJgAAAAAAAAARAAAAm0CKQdkZiEAAAA...</td>\n <td>0.236958</td>\n <td>Northeastern (Inbound)</td>\n <td>[-71.090331, 42.339762]</td>\n <td>-71.090331</td>\n <td>42.339762</td>\n <td>3</td>\n </tr>\n </tbody>\n</table>\n<p>175 rows × 9 columns</p>\n</div>"
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "display(df)"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:52.735139Z",
- "start_time": "2023-11-07T15:38:52.730797Z"
- }
- },
- "id": "17a8cc8fed5450a6"
- },
- {
- "cell_type": "markdown",
- "source": [
- "## Map"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "b20a57aa09792c39"
- },
- {
- "cell_type": "code",
- "execution_count": 21,
- "outputs": [
- {
- "data": {
- "text/plain": "<folium.folium.Map at 0x146a11490>",
- "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;html&gt;\n&lt;head&gt;\n \n &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n \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.9.3/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://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n \n &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n &lt;style&gt;\n #map_c9f6f66b31f073eb1583eaf328ae85ec {\n position: relative;\n width: 100.0%;\n height: 100.0%;\n left: 0.0%;\n top: 0.0%;\n }\n .leaflet-container { font-size: 1rem; }\n &lt;/style&gt;\n \n&lt;/head&gt;\n&lt;body&gt;\n \n \n &lt;div class=&quot;folium-map&quot; id=&quot;map_c9f6f66b31f073eb1583eaf328ae85ec&quot; &gt;&lt;/div&gt;\n \n&lt;/body&gt;\n&lt;script&gt;\n \n \n var map_c9f6f66b31f073eb1583eaf328ae85ec = L.map(\n &quot;map_c9f6f66b31f073eb1583eaf328ae85ec&quot;,\n {\n center: [42.35888447428571, -71.07238628571429],\n crs: L.CRS.EPSG3857,\n zoom: 11,\n zoomControl: true,\n preferCanvas: false,\n }\n );\n\n \n\n \n \n var tile_layer_724c355b504e19bcf636a15a19067b6c = L.tileLayer(\n &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\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_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var poly_line_43a74b588d6ca3ecd250ab5d2f123b42 = L.polyline(\n [[42.364361, -71.054865], [42.376178, -71.060933], [42.376391, -71.060753], [42.380436, -71.060948], [42.398809, -71.061206], [42.403792, -71.058992], [42.389192, -71.033749], [42.386461, -71.032794], [42.385546, -71.039316], [42.380792, -71.034935], [42.377891, -71.028298], [42.382756, -71.011693], [42.390256, -71.005456], [42.390466, -70.997084], [42.391786, -70.99031], [42.389507, -70.969384], [42.411181, -70.993747], [42.420244, -70.985934], [42.418321, -70.99748], [42.421213, -71.027113], [42.412279, -71.031525], [42.411785, -71.01537], [42.398247, -71.028327], [42.397588, -71.035674], [42.391309, -71.036726], [42.390284, -71.038526], [42.393843, -71.041015], [42.402568, -71.051453], [42.422264, -71.043219], [42.418307, -71.050739], [42.42069, -71.055953], [42.407436, -71.062128], [42.397236, -71.072007], [42.400829, -71.112241], [42.396589, -71.122704], [42.429978, -71.203921], [42.410941, -71.168458], [42.388907, -71.133098], [42.388412, -71.119219], [42.38859, -71.119303], [42.383988, -71.110771], [42.383573, -71.112746], [42.375457, -71.119379], [42.373491, -71.118959], [42.373266, -71.120839], [42.378275, -71.114496], [42.378452, -71.115739], [42.376696, -71.115952], [42.374259, -71.110851], [42.382131, -71.102659], [42.382238, -71.102512], [42.380957, -71.097894], [42.380072, -71.096887], [42.381759, -71.093444], [42.379731, -71.094916], [42.377355, -71.094764], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_5219dc2da077c8d1610c5dd1b98275e4 = L.circleMarker(\n [42.364361, -71.054865],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f70a7b887250cefbd63429ed55572390 = L.circleMarker(\n [42.376178, -71.060933],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_a45d3de4d08106148fc0f8b3b743baf2 = L.circleMarker(\n [42.376391, -71.060753],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_c7daa1be8736e395a13844972dad5b62 = L.circleMarker(\n [42.380436, -71.060948],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_79ae632b28afdcdbfbc2fd39e755c57f = L.circleMarker(\n [42.398809, -71.061206],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_8decb2226552ed555718f2e286dc04ad = L.circleMarker(\n [42.403792, -71.058992],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_db6d9fc7cff1b962d4e6fd75c7e82bd3 = L.circleMarker(\n [42.389192, -71.033749],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_29a678e6e5854491e32d5dcf781c6f9e = L.circleMarker(\n [42.386461, -71.032794],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_85c48d87a28c98d1642ad935e9deb74e = L.circleMarker(\n [42.385546, -71.039316],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_8cc51f40d046b9e09bba82b6d883afba = L.circleMarker(\n [42.380792, -71.034935],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_8325778cb661a950a420f03b7d782fd9 = L.circleMarker(\n [42.377891, -71.028298],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_161ddc09e3e9928df3f88c89a5d05224 = L.circleMarker(\n [42.382756, -71.011693],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_7f4477b77554c67fe1cd864c0f3499a5 = L.circleMarker(\n [42.390256, -71.005456],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_136c0f25e2a870fc6ce90d31e843ebda = L.circleMarker(\n [42.390466, -70.997084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_3c8f4f267095b7b17b48ff81c2c11db4 = L.circleMarker(\n [42.391786, -70.99031],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_911aba00a1c0c31689adcb4d37b0820c = L.circleMarker(\n [42.389507, -70.969384],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_dbc68c7e383f4d99fe092c7b6bb92cf8 = L.circleMarker(\n [42.411181, -70.993747],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b6d1c7ced989d3b6b2adc5b8c1504d64 = L.circleMarker(\n [42.420244, -70.985934],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_eadd871ec33a8833683ca3bdaded79e1 = L.circleMarker(\n [42.418321, -70.99748],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_45a8436f636329e281d8906dbccef05e = L.circleMarker(\n [42.421213, -71.027113],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_18bd531cf97aee7a135671737caef925 = L.circleMarker(\n [42.412279, -71.031525],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_c9925177f91c48d85c20a832b1538d64 = L.circleMarker(\n [42.411785, -71.01537],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_9b9312f24bd52d98d922012627ed98e0 = L.circleMarker(\n [42.398247, -71.028327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_11d68dfdca451462583fdef806c061b3 = L.circleMarker(\n [42.397588, -71.035674],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_c54a1e34e067a36e5a4b4fe28d45b8bd = L.circleMarker(\n [42.391309, -71.036726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_85947d156a63fe07e512cde264f26976 = L.circleMarker(\n [42.390284, -71.038526],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4eab12107c2594880c2e63fd6af02cd2 = L.circleMarker(\n [42.393843, -71.041015],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_6cf2d2fab5868ba2924c4bee8971f0ab = L.circleMarker(\n [42.402568, -71.051453],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_82cadaccb693782b3aecccc94da21acb = L.circleMarker(\n [42.422264, -71.043219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_a8343bcdf16cdb0b622fc279562ee4ac = L.circleMarker(\n [42.418307, -71.050739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_ffb3590251323bd85dac8313944e73d5 = L.circleMarker(\n [42.42069, -71.055953],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_56094fedd50747ee60ef756b5604fb4f = L.circleMarker(\n [42.407436, -71.062128],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_1bfb54e87e4250d1f4fd5a8d3339c6c1 = L.circleMarker(\n [42.397236, -71.072007],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_6d343a9aad55242661a9cd747ca6b2dc = L.circleMarker(\n [42.400829, -71.112241],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_5a9d9868f5f8c877b52c9919ee6cd898 = L.circleMarker(\n [42.396589, -71.122704],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f587d7d221f34ddbb25abbcde92f3511 = L.circleMarker(\n [42.429978, -71.203921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_3deeef39832ae90a548a56555536db48 = L.circleMarker(\n [42.410941, -71.168458],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f700963d749cd6d590d686c50bd9542c = L.circleMarker(\n [42.388907, -71.133098],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_ce0e52cc819d1712215b918fdf29aee6 = L.circleMarker(\n [42.388412, -71.119219],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_30853e621e79327d06945ced24ca6897 = L.circleMarker(\n [42.38859, -71.119303],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_ec66c02e8fb4b1d6618d4c2d320a2b89 = L.circleMarker(\n [42.383988, -71.110771],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_9d263f31a4fa8153972bc5b8f464066c = L.circleMarker(\n [42.383573, -71.112746],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4d538159604ea017105f7beb7651293d = L.circleMarker(\n [42.375457, -71.119379],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_91960dda37df5e489206b54a86dbb68a = L.circleMarker(\n [42.373491, -71.118959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_50fd07083c847d8e29684cdc59505059 = L.circleMarker(\n [42.373266, -71.120839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_7d96ff7fed6e2a55851176d8af0871c0 = L.circleMarker(\n [42.378275, -71.114496],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_00c4da3636347a17036bdd2e066922ae = L.circleMarker(\n [42.378452, -71.115739],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_979bc73a9a1ba5301f727487aa5d7fac = L.circleMarker(\n [42.376696, -71.115952],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_339fe09b28ec74d137576393624ababb = L.circleMarker(\n [42.374259, -71.110851],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_7adbaf780c270c731248f27f1899c012 = L.circleMarker(\n [42.382131, -71.102659],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4dca97da9318ec9c742ab9591a657a43 = L.circleMarker(\n [42.382238, -71.102512],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_487fe625ed43a330b81c11c281e2d9c7 = L.circleMarker(\n [42.380957, -71.097894],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_63b9c0d0e3c33aed74f8932c49c5b1b8 = L.circleMarker(\n [42.380072, -71.096887],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_07016bcdc6f3aeb73a1721826c5a6f1d = L.circleMarker(\n [42.381759, -71.093444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_8ed950e45ab2120223958cde7c6be485 = L.circleMarker(\n [42.379731, -71.094916],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_774ab6f4f2309ebe3f9bed405a342580 = L.circleMarker(\n [42.377355, -71.094764],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_81648fdecddf23a575fb1ff2926c3bcc = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;red&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;red&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var poly_line_b4b7a087eb723a434c1f220ce5fe832e = L.polyline(\n [[42.358884, -71.056741], [42.359295, -71.059255], [42.357428, -71.058565], [42.358757, -71.057201], [42.36049, -71.056995], [42.361263, -71.056994], [42.361534, -71.056819], [42.359704, -71.054519], [42.352211, -71.051172], [42.35199, -71.049726], [42.350902, -71.048805], [42.351671, -71.050269], [42.329187, -71.035189], [42.3359, -71.023658], [42.338284, -71.013043], [42.338284, -71.013043], [42.344315, -71.033918], [42.347795, -71.035964], [42.34898, -71.03588], [42.347902, -71.040407], [42.351052, -71.044959], [42.353667, -71.047121], [42.352749, -71.04333], [42.364857, -71.041248], [42.367158, -71.035936], [42.365172, -71.035967], [42.363961, -71.033209], [42.37337, -71.033036], [42.380215, -70.980137], [42.371161, -71.037188], [42.369812, -71.037911], [42.360949, -71.051539], [42.350941, -71.059567], [42.353717, -71.061676], [42.355519, -71.063037], [42.354894, -71.063514], [42.34085, -71.071196], [42.348915, -71.072038], [42.349993, -71.067854], [42.352445, -71.066839], [42.352314, -71.067311], [42.353792, -71.068086], [42.356537, -71.075414], [42.357529, -71.069242], [42.356682, -71.066568], [42.355298, -71.061249], [42.358056, -71.062171], [42.358851, -71.064277], [42.365968, -71.062507], [42.364032, -71.055569], [42.365251, -71.055582], [42.366918, -71.056164], [42.368861, -71.055561], [42.369195, -71.061735], [42.371832, -71.065634], [42.374119, -71.055588], [42.374142, -71.063105], [42.369868, -71.06828], [42.369473, -71.075628], [42.367607, -71.08097], [42.361529, -71.090578], [42.362555, -71.096306], [42.3614, -71.101475], [42.36265, -71.10141], [42.363685, -71.101083], [42.364024, -71.1088], [42.363221, -71.128473], [42.351083, -71.106096], [42.344689, -71.096959], [42.346361, -71.089677], [42.349997, -71.085166], [42.348977, -71.091358], [42.34194, -71.083465], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_2f168b5b5779adbf21f755c641844205 = L.circleMarker(\n [42.358884, -71.056741],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_0c164c7ca59c56b9edca10ab73a48016 = L.circleMarker(\n [42.359295, -71.059255],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_73176f2ed9127c6535b9497331505b96 = L.circleMarker(\n [42.357428, -71.058565],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_c9bb13af06b0d05b1a7298f179468cba = L.circleMarker(\n [42.358757, -71.057201],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_dba7ef889bed710771c068b46dcc10e6 = L.circleMarker(\n [42.36049, -71.056995],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_982ae7d256799f4606da9a62025a2b4e = L.circleMarker(\n [42.361263, -71.056994],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_590bfbbeb6947bec0ee1daf10a7f937a = L.circleMarker(\n [42.361534, -71.056819],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_fc6eeacdba656910fafdf4118343ffc9 = L.circleMarker(\n [42.359704, -71.054519],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_0b2ec2878b0a7d46c6f26691c6243080 = L.circleMarker(\n [42.352211, -71.051172],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_0548ae04b204f87267b6083cbe01f6f7 = L.circleMarker(\n [42.35199, -71.049726],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_1c1021e9ec8e1b61f4f7f1e5239d4a1b = L.circleMarker(\n [42.350902, -71.048805],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_03f2e4ede9ff6665073531a65898f3e9 = L.circleMarker(\n [42.351671, -71.050269],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_56c39ed4dcb740fba20231aeccd17337 = L.circleMarker(\n [42.329187, -71.035189],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_6e69d0bfffb5cc7dbc4dd48d7231b395 = L.circleMarker(\n [42.3359, -71.023658],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_66afb60734a597587e1a63d7e07e57c8 = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_268d47c9c59af76d69a283e7285d8775 = L.circleMarker(\n [42.338284, -71.013043],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_03ad6b82783818469b9916610f46a62f = L.circleMarker(\n [42.344315, -71.033918],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_cff1bd5f3e06dfda5ef4144278c82fea = L.circleMarker(\n [42.347795, -71.035964],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_e34a604b9e82aa83d8328374769c9f9b = L.circleMarker(\n [42.34898, -71.03588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_5f55dd726b889857e17e8f2e1c3ac6c7 = L.circleMarker(\n [42.347902, -71.040407],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_38c883fb044c10f3ace0231d7645b20d = L.circleMarker(\n [42.351052, -71.044959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_c1314c74ca3a0a2b9b2f193c186cc8d7 = L.circleMarker(\n [42.353667, -71.047121],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_fe23785eaf1d2bfda1c33928ea784139 = L.circleMarker(\n [42.352749, -71.04333],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_1fa27bf800279e828159e4000339c6df = L.circleMarker(\n [42.364857, -71.041248],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b03f717ec2d092c644ce18373a5e6b6c = L.circleMarker(\n [42.367158, -71.035936],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_a50761ece8463a0937ff475429d000f1 = L.circleMarker(\n [42.365172, -71.035967],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_3db735f93c0dd3ef933265f27734424e = L.circleMarker(\n [42.363961, -71.033209],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_934891a33c5e73bc6455314e11d87116 = L.circleMarker(\n [42.37337, -71.033036],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_1f0b1406f250f0d8bcc28f7506c78f3d = L.circleMarker(\n [42.380215, -70.980137],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b07ba50a347808c19dae58726eda87ea = L.circleMarker(\n [42.371161, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_062739b34f020582959c135441ecd545 = L.circleMarker(\n [42.369812, -71.037911],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_262ca744364e34a1aefd3c66696b99b3 = L.circleMarker(\n [42.360949, -71.051539],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_ef84be0f718f739e8ad5c149596eefc9 = L.circleMarker(\n [42.350941, -71.059567],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_adcf7598586f5ea5ace9c8e6cf595eb9 = L.circleMarker(\n [42.353717, -71.061676],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_7d94bcfd47dce4f20a1511c415fe9180 = L.circleMarker(\n [42.355519, -71.063037],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_1c0f5531ea318b72992afab4433541cd = L.circleMarker(\n [42.354894, -71.063514],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_6fead0b69f193069ab80c91986d82e0f = L.circleMarker(\n [42.34085, -71.071196],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4aa014309b85e1df0426c19edb99ea2e = L.circleMarker(\n [42.348915, -71.072038],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_a8e0a32428cb3fcd5c320752b4c56d72 = L.circleMarker(\n [42.349993, -71.067854],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_7651c845fae2aeaff6b47953c271fd66 = L.circleMarker(\n [42.352445, -71.066839],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_51c0ec73602c23242871d3ab2ac4b218 = L.circleMarker(\n [42.352314, -71.067311],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_5c82d51248cdc7797779c464d0c1d9a8 = L.circleMarker(\n [42.353792, -71.068086],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_72bb13e20bf2fba929b4660e962449a4 = L.circleMarker(\n [42.356537, -71.075414],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f28ca1ee5ad331c781275a9d993dc310 = L.circleMarker(\n [42.357529, -71.069242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_14f3ff961f560f4d0c4946a18ec4add9 = L.circleMarker(\n [42.356682, -71.066568],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b59b3133bfb2a38a4195f654a46bb516 = L.circleMarker(\n [42.355298, -71.061249],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_75f4534ef6c4416522b9403f7a99287c = L.circleMarker(\n [42.358056, -71.062171],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_842fac8fa6f6e78c7fb50c89060ebed8 = L.circleMarker(\n [42.358851, -71.064277],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_7d233f0d0471b61d27a453180a9ab237 = L.circleMarker(\n [42.365968, -71.062507],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_89c514d8539383cf8796478c2c817db4 = L.circleMarker(\n [42.364032, -71.055569],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_0a805e86da11b6cc714eaee4e60b6b4b = L.circleMarker(\n [42.365251, -71.055582],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_5019bab263136c42a6171bc101a26031 = L.circleMarker(\n [42.366918, -71.056164],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f40a15166136af39502ba98c1bcbc57f = L.circleMarker(\n [42.368861, -71.055561],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b3ae50a9ed077cbb9d44f99c3e46ef2e = L.circleMarker(\n [42.369195, -71.061735],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_7ee0e97710e46685edeaf1cd7f180f29 = L.circleMarker(\n [42.371832, -71.065634],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4892e1d4dcf816ca591ab009ec6d5f06 = L.circleMarker(\n [42.374119, -71.055588],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b24d4b86a92f616fbe9479abeea4db8d = L.circleMarker(\n [42.374142, -71.063105],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_2b5e8db557ee2a764f6886a45e5095cb = L.circleMarker(\n [42.369868, -71.06828],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4397f54b0a2b6f95f967b42c15ae8508 = L.circleMarker(\n [42.369473, -71.075628],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_c46be4df00a20efe2c754cd0869b7cff = L.circleMarker(\n [42.367607, -71.08097],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_570d19da932cfeafbfabfbc63a274a4b = L.circleMarker(\n [42.361529, -71.090578],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_868faae1558bc8dcec229b1f90ef0786 = L.circleMarker(\n [42.362555, -71.096306],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_6e1bb945eb18e8832033e3d5a3e7337b = L.circleMarker(\n [42.3614, -71.101475],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b8557c05de49aa818d317674bd02ccee = L.circleMarker(\n [42.36265, -71.10141],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_6438db8a21469dd30aaa436b5ea25bae = L.circleMarker(\n [42.363685, -71.101083],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_108f242c3f8dcfc0369b8ef25787cd89 = L.circleMarker(\n [42.364024, -71.1088],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_5a62dbccff95bf0a4fd6ee41eaab94c8 = L.circleMarker(\n [42.363221, -71.128473],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_0e92691450d017386e6d3d09ce4c98de = L.circleMarker(\n [42.351083, -71.106096],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f889738c0de8c1c86896736d0d661ee0 = L.circleMarker(\n [42.344689, -71.096959],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4a87c5cb8477a560037963a8e98db73a = L.circleMarker(\n [42.346361, -71.089677],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_9892b9302a73076089db28bb72784083 = L.circleMarker(\n [42.349997, -71.085166],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_128c66d7a85751eb6aa7070857e4916c = L.circleMarker(\n [42.348977, -71.091358],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f66d874e8c4fe8a5a0e75115729d4e6c = L.circleMarker(\n [42.34194, -71.083465],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_577d2dd71bf744185318589f32f67059 = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;blue&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;blue&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var poly_line_ddb2b3d0f4caf4ad30cdd1b856d675bf = L.polyline(\n [[42.350461, -71.075981], [42.327134, -71.066844], [42.324934, -71.06221], [42.325624, -71.049204], [42.316288, -71.037188], [42.315966, -71.034107], [42.316292, -71.045242], [42.274385, -71.024029], [42.27938, -71.014026], [42.276371, -71.009534], [42.245312, -71.000444], [42.207533, -71.001295], [42.23913, -71.003762], [42.25784, -71.02898], [42.285832, -71.063084], [42.284476, -71.063921], [42.296172, -71.087449], [42.332009, -71.098267], [42.332401, -71.100092], [42.336448, -71.10963], [42.336, -71.112246], [42.331874, -71.125847], [42.33162, -71.155413], [42.324682, -71.16198], [42.314504, -71.227365], [42.313798, -71.359917], [42.361942, -71.18542], [42.341017, -71.162549], [42.343387, -71.142763], [42.349667, -71.146009], [42.350083, -71.146124], [42.356842, -71.143863], [42.352585, -71.131464], [42.352999, -71.130896], [42.351932, -71.124132], [42.342619, -71.121734], [42.338007, -71.099284], [42.342001, -71.095003], [42.341231, -71.094327], [42.33047, -71.099348], [42.325354, -71.09454], [42.329829, -71.090904], [42.339096, -71.093834], [42.339762, -71.090331]],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 1.0, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_892145db16db01ce75e43e6117ec73e6 = L.circleMarker(\n [42.350461, -71.075981],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_754b22ad2ea146ae81e9b99db999ef5d = L.circleMarker(\n [42.327134, -71.066844],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_115b10b6d1cda665c6d891a295c3f3d2 = L.circleMarker(\n [42.324934, -71.06221],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_18913a946d6255dc8b9989bed99391f3 = L.circleMarker(\n [42.325624, -71.049204],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_7c3b002e7fa4e928cad06dc4f50e2eb2 = L.circleMarker(\n [42.316288, -71.037188],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_cc42f39c6fdfb522f4cd395f55a31bb0 = L.circleMarker(\n [42.315966, -71.034107],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_6981613a0438015d04661826af110b22 = L.circleMarker(\n [42.316292, -71.045242],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_8f93bd2fbb401d027907e5e8a5c1bfbf = L.circleMarker(\n [42.274385, -71.024029],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_40d2fcb7c92ecb1dcd83796a648d7e32 = L.circleMarker(\n [42.27938, -71.014026],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_037ac7c835841d65a29bfeb97a27fe49 = L.circleMarker(\n [42.276371, -71.009534],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_cacb95b2e0ad5b6c59430d585bda53e9 = L.circleMarker(\n [42.245312, -71.000444],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f29136fec5c2a151a073d7fad1a749d9 = L.circleMarker(\n [42.207533, -71.001295],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b2fb8f42ecf4f43eb57b3a8cb0a2f2ca = L.circleMarker(\n [42.23913, -71.003762],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_772eeed595bfa58b39c6895ca1b040bd = L.circleMarker(\n [42.25784, -71.02898],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_848a4435df14134fcd84d07aab4ff270 = L.circleMarker(\n [42.285832, -71.063084],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_702e45ca36c1f2e1798881768b27caaa = L.circleMarker(\n [42.284476, -71.063921],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_0795c05041ae5df2222f0a5255e67e6f = L.circleMarker(\n [42.296172, -71.087449],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_458b0e0ad80e455b06cc0fec84322115 = L.circleMarker(\n [42.332009, -71.098267],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_d54e51bd6b2149c0e6ae358af6b274a9 = L.circleMarker(\n [42.332401, -71.100092],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_d181b115e26c7db389637a30ca9b996d = L.circleMarker(\n [42.336448, -71.10963],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_cce06d098112ad4214556d6ed6167c0c = L.circleMarker(\n [42.336, -71.112246],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_8a5ff64c7d9782cd28b6ccb34ae381dd = L.circleMarker(\n [42.331874, -71.125847],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_c33f31aabc139a6eb96f4f1bd2f4e970 = L.circleMarker(\n [42.33162, -71.155413],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_543407d39cce941d48162a1884ff3714 = L.circleMarker(\n [42.324682, -71.16198],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_68f3367c2221e05131d1e21d324956f0 = L.circleMarker(\n [42.314504, -71.227365],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_a38d87eab121d31f10fd47459c7f9059 = L.circleMarker(\n [42.313798, -71.359917],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_17e652bcca1c7d3e2d94c8939bced2c7 = L.circleMarker(\n [42.361942, -71.18542],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_714b85a325f37970b3fe642e3a4ffc09 = L.circleMarker(\n [42.341017, -71.162549],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b07936839469cd64d9635f5faa021690 = L.circleMarker(\n [42.343387, -71.142763],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4c3dd845a28b064a04d35b6643ac385f = L.circleMarker(\n [42.349667, -71.146009],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_4a271a17dd914cfc2e134da839d2088f = L.circleMarker(\n [42.350083, -71.146124],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_0bb51b032a8835f53beec03ba4003da9 = L.circleMarker(\n [42.356842, -71.143863],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_bd1e0abd9a6d0a72d902c64e34700213 = L.circleMarker(\n [42.352585, -71.131464],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_187f7c5d60001769ff64cd40a82ba738 = L.circleMarker(\n [42.352999, -71.130896],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_cab836a9915dfc6914448a45f3c00159 = L.circleMarker(\n [42.351932, -71.124132],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_113f17b91882fca7e5c9e29a81f33ac4 = L.circleMarker(\n [42.342619, -71.121734],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_fe99e49ca9eecf53e9b4bdd9ba81381e = L.circleMarker(\n [42.338007, -71.099284],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_26d5834653b001294cfef05b4592ee15 = L.circleMarker(\n [42.342001, -71.095003],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_b1a793c4b8e9d13bc5a9cd8bb3cd5eb5 = L.circleMarker(\n [42.341231, -71.094327],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_ef358c2413a3aeb40d23c7f9ce4239cc = L.circleMarker(\n [42.33047, -71.099348],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_f179d938713ac5d447177f7822ce9c5f = L.circleMarker(\n [42.325354, -71.09454],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_ba3642eb3a40def246cf9dd2fa4697f4 = L.circleMarker(\n [42.329829, -71.090904],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_754f17498d52b52573bec45a13935942 = L.circleMarker(\n [42.339096, -71.093834],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n \n var circle_marker_804703a403cff13177a54a6e11da50ee = L.circleMarker(\n [42.339762, -71.090331],\n {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;green&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;green&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 3, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n ).addTo(map_c9f6f66b31f073eb1583eaf328ae85ec);\n \n&lt;/script&gt;\n&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
- },
- "execution_count": 21,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# Create a map\n",
- "m = folium.Map(location=[df['lon'].mean(), df['lat'].mean()], zoom_start=11)\n",
- "\n",
- "# Add the points and lines for the three routes with different colors\n",
- "colors = ['red', 'blue', 'green']\n",
- "\n",
- "for route in df['route'].unique():\n",
- " df_route = df[df['route'] == route]\n",
- " folium.PolyLine(df_route[['lon', 'lat']].values.tolist(), color=colors[route - 1]).add_to(m)\n",
- " for i in range(len(df_route)):\n",
- " folium.CircleMarker(df_route[['lon', 'lat']].iloc[i].values.tolist(), radius=3, color=colors[route - 1]).add_to(\n",
- " m)\n",
- " \n",
- "# Display the map\n",
- "m"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:52.827726Z",
- "start_time": "2023-11-07T15:38:52.736404Z"
- }
- },
- "id": "702adaec008a6ec8"
- },
- {
- "cell_type": "markdown",
- "source": [
- "## Results"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "a947e49e27c734e9"
- },
- {
- "cell_type": "code",
- "execution_count": 22,
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Route 1 has 55 waypoints\n",
- "Route 2 has 72 waypoints\n",
- "Route 3 has 42 waypoints\n"
- ]
- }
- ],
- "source": [
- "# Get the number of waypoints for each route\n",
- "route_1_waypoints = len(route_1_coordinates)\n",
- "route_2_waypoints = len(route_2_coordinates)\n",
- "route_3_waypoints = len(route_3_coordinates)\n",
- "print(\"Route 1 has {} waypoints\".format(route_1_waypoints))\n",
- "print(\"Route 2 has {} waypoints\".format(route_2_waypoints))\n",
- "print(\"Route 3 has {} waypoints\".format(route_3_waypoints))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:52.840867Z",
- "start_time": "2023-11-07T15:38:52.802540Z"
- }
- },
- "id": "4106acf2adad01d7"
- },
- {
- "cell_type": "code",
- "execution_count": 23,
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "The trip will take 8.883333333333333 hours\n",
- "The trip will take 8.458055555555555 hours\n",
- "The trip will take 10.230555555555556 hours\n"
- ]
- }
- ],
- "source": [
- "# Get the trip time for each route\n",
- "trip_hrs_1 = utils.get_trip_time(route_1, route_1_waypoints, utils.list_to_string([centroids[0]]),\n",
- " northeastern_coordinate)\n",
- "print(\"The trip will take {} hours\".format(trip_hrs_1))\n",
- "trip_hrs_2 = utils.get_trip_time(route_2, route_2_waypoints, utils.list_to_string([centroids[1]]),\n",
- " northeastern_coordinate)\n",
- "print(\"The trip will take {} hours\".format(trip_hrs_2))\n",
- "trip_hrs_3 = utils.get_trip_time(route_3, route_3_waypoints, utils.list_to_string([centroids[2]]),\n",
- " northeastern_coordinate)\n",
- "print(\"The trip will take {} hours\".format(trip_hrs_3))"
- ],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:54.879411Z",
- "start_time": "2023-11-07T15:38:52.805867Z"
- }
- },
- "id": "c58106faf0fc7f4e"
- },
- {
- "cell_type": "code",
- "execution_count": 23,
- "outputs": [],
- "source": [],
- "metadata": {
- "collapsed": false,
- "ExecuteTime": {
- "end_time": "2023-11-07T15:38:54.879657Z",
- "start_time": "2023-11-07T15:38:54.867101Z"
- }
- },
- "id": "a2f10e3152b95a69"
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 2
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython2",
- "version": "2.7.6"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/utils.py b/utils.py
index 3709724..c37c64a 100644
--- a/utils.py
+++ b/utils.py
@@ -1,4 +1,3 @@
-import folium
import numpy as np
import pandas as pd
import requests
@@ -261,4 +260,4 @@ def __distance(coordinate1, coordinate2):
:param coordinate2: the second coordinate
:return: the distance between the two coordinates
"""
- return ((coordinate1[0] - coordinate2[0]) ** 2 + (coordinate1[1] - coordinate2[1]) ** 2) ** 0.5 \ No newline at end of file
+ return ((coordinate1[0] - coordinate2[0]) ** 2 + (coordinate1[1] - coordinate2[1]) ** 2) ** 0.5