summaryrefslogtreecommitdiff
path: root/ZestySalesman.ipynb
diff options
context:
space:
mode:
authorAnson Bridges <bridges.anson@gmail.com>2025-08-11 22:36:23 -0700
committerAnson Bridges <bridges.anson@gmail.com>2025-08-11 22:36:23 -0700
commitb50ce25d4ad44e44cc8d765c6ee98a91ee5bc86b (patch)
tree360d8ba451ed5addeb22b9a4b27a3d478e4b0244 /ZestySalesman.ipynb
parentff9df68f3120ce7089dffb4ac00fe07854124a91 (diff)
Clean junk "scratchpad" files and outdated CSVs
Diffstat (limited to 'ZestySalesman.ipynb')
-rw-r--r--ZestySalesman.ipynb5287
1 files changed, 0 insertions, 5287 deletions
diff --git a/ZestySalesman.ipynb b/ZestySalesman.ipynb
deleted file mode 100644
index 8e4372c..0000000
--- a/ZestySalesman.ipynb
+++ /dev/null
@@ -1,5287 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "id": "initial_id",
- "metadata": {
- "collapsed": true,
- "ExecuteTime": {
- "end_time": "2024-07-02T22:37:51.219877Z",
- "start_time": "2024-07-02T22:37:50.303317Z"
- }
- },
- "source": [
- "import pandas as pd\n",
- "import folium\n",
- "import utils"
- ],
- "outputs": [],
- "execution_count": 1
- },
- {
- "cell_type": "code",
- "id": "73b780e762c9de37",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2024-07-02T22:37:51.229897Z",
- "start_time": "2024-07-02T22:37:51.220757Z"
- }
- },
- "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')"
- ],
- "outputs": [],
- "execution_count": 2
- },
- {
- "cell_type": "code",
- "id": "be4c8c1d77842ef7",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2024-07-02T22:37:51.231873Z",
- "start_time": "2024-07-02T22:37:51.230471Z"
- }
- },
- "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\""
- ],
- "outputs": [],
- "execution_count": 3
- },
- {
- "cell_type": "code",
- "id": "ffe4025e97a6c6b9",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2024-07-02T22:37:51.235758Z",
- "start_time": "2024-07-02T22:37:51.232888Z"
- }
- },
- "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])\n",
- "TotalList = pd.concat([ListA, ListB])"
- ],
- "outputs": [],
- "execution_count": 4
- },
- {
- "cell_type": "code",
- "id": "72657779b4484aae",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2024-07-02T22:37:51.238164Z",
- "start_time": "2024-07-02T22:37:51.236334Z"
- }
- },
- "source": [
- "# Remove all columns but name and gps\n",
- "TotalList = TotalList[['name', 'gps', 'list']]"
- ],
- "outputs": [],
- "execution_count": 5
- },
- {
- "cell_type": "code",
- "id": "a157ffaec020a29a",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2024-07-02T22:37:51.356176Z",
- "start_time": "2024-07-02T22:37:51.353712Z"
- }
- },
- "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])"
- ],
- "outputs": [],
- "execution_count": 6
- },
- {
- "cell_type": "code",
- "id": "a03ebde91b87fa3b",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2024-07-02T22:37:52.039978Z",
- "start_time": "2024-07-02T22:37:52.032015Z"
- }
- },
- "source": [
- "display(TotalList)"
- ],
- "outputs": [
- {
- "data": {
- "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",
- "31 Union Square [42.37736, -71.09476] B\n",
- "32 University Park Commons [42.3614115, -71.1014951] B\n",
- "33 Veggie Crust - Somerville [42.3822934, -71.1024769] B\n",
- "34 Veggie Galaxy [42.3636597, -71.1011111] B\n",
- "35 Warren Tavern [42.3741694, -71.0631664] B\n",
- "\n",
- "[98 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>31</th>\n",
- " <td>Union Square</td>\n",
- " <td>[42.37736, -71.09476]</td>\n",
- " <td>B</td>\n",
- " </tr>\n",
- " <tr>\n",
- " <th>32</th>\n",
- " <td>University Park Commons</td>\n",
- " <td>[42.3614115, -71.1014951]</td>\n",
- " <td>B</td>\n",
- " </tr>\n",
- " <tr>\n",
- " <th>33</th>\n",
- " <td>Veggie Crust - Somerville</td>\n",
- " <td>[42.3822934, -71.1024769]</td>\n",
- " <td>B</td>\n",
- " </tr>\n",
- " <tr>\n",
- " <th>34</th>\n",
- " <td>Veggie Galaxy</td>\n",
- " <td>[42.3636597, -71.1011111]</td>\n",
- " <td>B</td>\n",
- " </tr>\n",
- " <tr>\n",
- " <th>35</th>\n",
- " <td>Warren Tavern</td>\n",
- " <td>[42.3741694, -71.0631664]</td>\n",
- " <td>B</td>\n",
- " </tr>\n",
- " </tbody>\n",
- "</table>\n",
- "<p>98 rows × 3 columns</p>\n",
- "</div>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "execution_count": 7
- },
- {
- "cell_type": "markdown",
- "id": "4bd41be9aca5094b",
- "metadata": {},
- "source": [
- "# 2 Routes"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "90d1d2f1a931597f",
- "metadata": {},
- "source": [
- "## Cluster and Minimize"
- ]
- },
- {
- "cell_type": "code",
- "id": "ee9b3c1ecb360976",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2024-07-02T22:38:01.527682Z",
- "start_time": "2024-07-02T22:37:53.433734Z"
- }
- },
- "source": [
- "# Cluster and minimize the data\n",
- "_, routes = utils.cluster_and_optimize(TotalList, centroids, northeastern_coordinate,\n",
- " time_diff=0.25, max_time=24, host='http://router.project-osrm.org')\n",
- "\n",
- "route_1_coordinates = routes[0]\n",
- "route_2_coordinates = routes[1]"
- ],
- "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"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "{'code': 'Ok', 'trips': [{'geometry': '{kqaG|utpLwFzHtDL|DgI`ClC_DzKtAyEaAdOsK|FdAxN`AoG{KeS`D{FSoJkFlMF{DnDrRoVnRqEoHdO~GyCpAg^md@|EsBuK{AiDlJ}KeAkGdYpJfC`A}DdYdNvF_F~GvCuE`MlCxBxHaDoEuQcf@an@_aAw{@{Zeo@jYrn@b~Ab}AlQx`@TbRwExHaEkApG_TtdA{rA~X{B|Z|o@dj@rN~BmXvHqNkd@ky@f@mQzKqZqLgQqBmBtBrXoIjXc@`VoIpOwJ}GeIxQqM{ByT|HnEHzA|QsB_E~DjOdKd@kBdFy@{KmQnAiHMrDsFpD`JlGaBcArNrFdFeHdOVlGfDaC~I|RkGs\\\\P{InNdO|B|AjHpCs@uN{Fy@sA`JnYtIBdKkGLF{M~FfAcAj]~F\\\\hFfMjExAuLaP^_L|@aG_YzGyL|Gt@hJfBfF`O{FrWzyAwEoBbCaE~Enm@gQ]i\\\\keBkCkJiR{EGmKjKiDaGlEDnKmOmI_Dbt@xFzAvInn@yJ~EqAbMnJvUqXfi@bDqGdIzIO~GqFkGrCiCwEeF|AsSm@yf@kT_FdByf@uKiHrAgSiT}CjDcJtBqKcr@n`ByYrG{RrOrHaGbHvJjCcC{AhGrKQK`E\\\\_FrKpCwGsEwBd[cG}AnCgDrBdGyOp[J|@jIzI`IgBjLz{@}HtB|HuBAvKsIK_YpAeEcVkRnVa@xPqHt@y@Sb\\\\gt@cw@`{@eMqDqGtRxK`Z_DrDdKjQQ|K`[Aa[@wBxn@yU~E_TheAuUdk@m]jxAcRiPjDyKkDxKjGzHqRzg@{d@fRsVz@qG|gAmLbl@~@tOcIxMQgJPfJxl@zLvJuBhOyVfEt@O`J_DHc@kM`K}z@jbA_xExToi@xSmbAlDqHzPsBjc@vRfc@mmAnm@yjAqDoGfKof@fLbLoIh`@mPlBfDCnJYjArIkExDjCbHnLkLtq@bm@wCy|@tRaDkRwv@oDZtBbk@jj@wD~V}[`UrAbI}]l]yIfZs_@lHoU{Ke_@', 'legs': [{'steps': [], 'summary': '', 'weight': 66.5, 'duration': 56.2, 'distance': 331.9}, {'steps': [], 'summary': '', 'weight': 109.4, 'duration': 109.4, 'distance': 620.6}, {'steps': [], 'summary': '', 'weight': 151.9, 'duration': 129.4, 'distance': 786.4}, {'steps': [], 'summary': '', 'weight': 141.4, 'duration': 118.9, 'distance': 665.7}, {'steps': [], 'summary': '', 'weight': 76.8, 'duration': 76.8, 'distance': 524.2}, {'steps': [], 'summary': '', 'weight': 210, 'duration': 210, 'distance': 1394.8}, {'steps': [], 'summary': '', 'weight': 3433.2, 'duration': 158.4, 'distance': 1083.1}, {'steps': [], 'summary': '', 'weight': 135.2, 'duration': 135.2, 'distance': 1101.4}, {'steps': [], 'summary': '', 'weight': 104.9, 'duration': 104.9, 'distance': 852}, {'steps': [], 'summary': '', 'weight': 73.1, 'duration': 73.1, 'distance': 674.7}, {'steps': [], 'summary': '', 'weight': 396.8, 'duration': 396.8, 'distance': 7456.3}, {'steps': [], 'summary': '', 'weight': 196.7, 'duration': 196.7, 'distance': 3629.5}, {'steps': [], 'summary': '', 'weight': 341.5, 'duration': 341.5, 'distance': 3566.8}, {'steps': [], 'summary': '', 'weight': 11.5, 'duration': 11.5, 'distance': 79.5}, {'steps': [], 'summary': '', 'weight': 285.4, 'duration': 285.4, 'distance': 2644.5}, {'steps': [], 'summary': '', 'weight': 96.1, 'duration': 96.1, 'distance': 641.6}, {'steps': [], 'summary': '', 'weight': 40.1, 'duration': 40.1, 'distance': 302.1}, {'steps': [], 'summary': '', 'weight': 48.6, 'duration': 48.6, 'distance': 387.9}, {'steps': [], 'summary': '', 'weight': 87.9, 'duration': 87.9, 'distance': 548.4}, {'steps': [], 'summary': '', 'weight': 123.4, 'duration': 123.4, 'distance': 893.9}, {'steps': [], 'summary': '', 'weight': 138.5, 'duration': 123, 'distance': 811.6}, {'steps': [], 'summary': '', 'weight': 78.5, 'duration': 63, 'distance': 401.9}, {'steps': [], 'summary': '', 'weight': 52.8, 'duration': 52.8, 'distance': 419.3}, {'steps': [], 'summary': '', 'weight': 68.2, 'duration': 68.2, 'distance': 501.5}, {'steps': [], 'summary': '', 'weight': 10.9, 'duration': 10.9, 'distance': 80}, {'steps': [], 'summary': '', 'weight': 67.6, 'duration': 67.6, 'distance': 439.4}, {'steps': [], 'summary': '', 'weight': 26.1, 'duration': 26.1, 'distance': 196}, {'steps': [], 'summary': '', 'weight': 149.8, 'duration': 146.7, 'distance': 1075.5}, {'steps': [], 'summary': '', 'weight': 174.8, 'duration': 171.7, 'distance': 1284.1}, {'steps': [], 'summary': '', 'weight': 99, 'duration': 99, 'distance': 707.9}, {'steps': [], 'summary': '', 'weight': 103.3, 'duration': 88.5, 'distance': 612.7}, {'steps': [], 'summary': '', 'weight': 338.7, 'duration': 304.2, 'distance': 2310.6}, {'steps': [], 'summary': '', 'weight': 273.1, 'duration': 247.7, 'distance': 2558.6}, {'steps': [], 'summary': '', 'weight': 97.8, 'duration': 97.8, 'distance': 924.5}, {'steps': [], 'summary': '', 'weight': 430.6, 'duration': 408.3, 'distance': 2982.5}, {'steps': [], 'summary': '', 'weight': 269.4, 'duration': 269.4, 'distance': 1207.2}, {'steps': [], 'summary': '', 'weight': 46.8, 'duration': 46.8, 'distance': 376.5}, {'steps': [], 'summary': '', 'weight': 44, 'duration': 44, 'distance': 344.5}, {'steps': [], 'summary': '', 'weight': 117.7, 'duration': 117.7, 'distance': 578.5}, {'steps': [], 'summary': '', 'weight': 239.7, 'duration': 239.7, 'distance': 1794.7}, {'steps': [], 'summary': '', 'weight': 139, 'duration': 125.6, 'distance': 950}, {'steps': [], 'summary': '', 'weight': 303.3, 'duration': 292.7, 'distance': 3157.8}, {'steps': [], 'summary': '', 'weight': 89.8, 'duration': 89.8, 'distance': 568.6}, {'steps': [], 'summary': '', 'weight': 80.8, 'duration': 80.8, 'distance': 472.3}, {'steps': [], 'summary': '', 'weight': 131.9, 'duration': 128.1, 'distance': 809.9}, {'steps': [], 'summary': '', 'weight': 27.5, 'duration': 27.5, 'distance': 135.9}, {'steps': [], 'summary': '', 'weight': 128, 'duration': 128, 'distance': 795.1}, {'steps': [], 'summary': '', 'weight': 17, 'duration': 13.2, 'distance': 38.8}, {'steps': [], 'summary': '', 'weight': 210, 'duration': 206.2, 'distance': 1516.1}, {'steps': [], 'summary': '', 'weight': 54.4, 'duration': 54.4, 'distance': 391.2}, {'steps': [], 'summary': '', 'weight': 54.7, 'duration': 40.7, 'distance': 234.9}, {'steps': [], 'summary': '', 'weight': 157.9, 'duration': 143.9, 'distance': 927.8}, {'steps': [], 'summary': '', 'weight': 127.2, 'duration': 127.2, 'distance': 905.6}, {'steps': [], 'summary': '', 'weight': 13.1, 'duration': 13.1, 'distance': 50.7}, {'steps': [], 'summary': '', 'weight': 153.7, 'duration': 142.8, 'distance': 938.5}, {'steps': [], 'summary': '', 'weight': 282.6, 'duration': 271.7, 'distance': 1981.5}, {'steps': [], 'summary': '', 'weight': 245.8, 'duration': 234.8, 'distance': 1581.2}, {'steps': [], 'summary': '', 'weight': 439.5, 'duration': 428.5, 'distance': 5189}, {'steps': [], 'summary': '', 'weight': 402.8, 'duration': 402.8, 'distance': 4550.8}, {'steps': [], 'summary': '', 'weight': 934.7, 'duration': 934.7, 'distance': 12430.2}, {'steps': [], 'summary': '', 'weight': 133.7, 'duration': 133.7, 'distance': 845.7}, {'steps': [], 'summary': '', 'weight': 50.8, 'duration': 50.8, 'distance': 454.3}, {'steps': [], 'summary': '', 'weight': 55.2, 'duration': 55.2, 'distance': 368.3}, {'steps': [], 'summary': '', 'weight': 263.5, 'duration': 263.5, 'distance': 1808.2}, {'steps': [], 'summary': '', 'weight': 230.9, 'duration': 230.9, 'distance': 2009.7}, {'steps': [], 'summary': '', 'weight': 443, 'duration': 443, 'distance': 4945.3}], 'weight_name': 'routability', 'weight': 14128.5, 'duration': 10557, 'distance': 95850.199999999}], 'waypoints': [{'waypoint_index': 0, 'trips_index': 0, 'hint': '9ZZdgPuWXYAQAAAAOQAAAAQAAAAAAAAALfXwQNqLykHq2No_AAAAAAgAAAAdAAAAAgAAAAAAAABYYwAAr83D-xBwhgJQzcP7SHCGAgEArw07mOnR', 'distance': 9.995831753, 'name': 'North Bennet Place', 'location': [-71.053905, 42.364944]}, {'waypoint_index': 5, 'trips_index': 0, 'hint': 'XsR5hpFy74kDAAAAEAAAAAAAAACPAAAAlkVDQMMSZEEAAAAActEAQwMAAAAQAAAAAAAAAI8AAABYYwAAzMbD-8d8hgLtx8P7O3-GAgAAzwY7mOnR', 'distance': 73.70776153, 'name': 'Commercial Street', 'location': [-71.055668, 42.368199]}, {'waypoint_index': 34, 'trips_index': 0, 'hint': '-lVdgP___38BAAAAJgAAADEAAAAGAAAAuPe1P_VeA0IVEDJCxQGrQAEAAAAmAAAAMQAAAAYAAABYYwAAnJHD-wRThgI1k8P7d1OGAgIA_wk7mOnR', 'distance': 36.027035397, 'name': 'West Cedar Street', 'location': [-71.069284, 42.357508]}, {'waypoint_index': 59, 'trips_index': 0, 'hint': 'nc1Yg3J_vIMAAAAAGAAAAAAAAAA5AQAAAAAAAHNB2EAAAAAA43GtQgAAAAAYAAAAAAAAADkBAABYYwAA-H7B-xdrhwLJg8H7GG6HAgAAfxE7mOnR', 'distance': 132.640565965, 'name': '', 'location': [-71.205128, 42.429207]}, {'waypoint_index': 33, 'trips_index': 0, 'hint': '5_pdgP___38RAAAAagAAAEgAAABBAAAAhJuYQQoOvUIPa5tCBkeKQhEAAABqAAAASAAAAEEAAABYYwAAJXvD-8dLhgKDecP7Gk-GAgUAbwQ7mOnR', 'distance': 100.603650179, 'name': 'Storrow Drive', 'location': [-71.075035, 42.355655]}, {'waypoint_index': 23, 'trips_index': 0, 'hint': 'hVVdgP___38nAAAAOAAAABEAAAAAAAAAc_AMQgDdaEGtqnRBAAAAACcAAAA4AAAAEQAAAAAAAABYYwAAUa3D-05VhgLArcP7m1SGAgEAHwQ7mOnR', 'distance': 21.884493732, 'name': 'Beacon Street', 'location': [-71.062191, 42.358094]}, {'waypoint_index': 18, 'trips_index': 0, 'hint': 'z1VdgP___38dAAAAKAAAAAUAAAAeAAAA-6HQQbBSGUH8c5ZACtMMQR0AAAAoAAAABQAAAB4AAABYYwAA3LvD-yZShgJXu8P7bVKGAgEAPwI7mOnR', 'distance': 13.497972145, 'name': 'Washington Street', 'location': [-71.058468, 42.357286]}, {'waypoint_index': 17, 'trips_index': 0, 'hint': 'W6ZdgP___38QAAAAFwAAABUAAAAdAAAA7Y5tQfNntkAFIZdBZcvMQRAAAAAXAAAAFQAAAB0AAABYYwAAE8HD-65XhgLOwMP761eGAgQAXw47mOnR', 'distance': 8.843623967, 'name': 'Devonshire Street', 'location': [-71.057133, 42.358702]}, {'waypoint_index': 1, 'trips_index': 0, 'hint': 'wthdgP___38gAAAAJQAAAAAAAAAFAAAApPnoQU1zcUAAAAAAvJGYQCAAAAAlAAAAAAAAAAUAAABYYwAANcfD-1ZxhgL1xsP7GnGGAgAADwg7mOnR', 'distance': 8.4973874, 'name': 'Prince Street', 'location': [-71.055563, 42.36527]}, {'waypoint_index': 29, 'trips_index': 0, 'hint': 'uDVegP___38NAAAAIQAAAAsAAAAAAAAAjNRCQRA0ikEcDR1BAAAAAA0AAAAhAAAACwAAAAAAAABYYwAAL4bD-7QxhgKjhsP7ZDGGAgEA_w07mOnR', 'distance': 13.053440062, 'name': 'Stanhope Street', 'location': [-71.072209, 42.34898]}, {'waypoint_index': 30, 'trips_index': 0, 'hint': 'u4tdgP___38GAAAAMgAAAAAAAAAAAAAAOFW-QDE5G0IAAAAAAAAAAAYAAAAyAAAAAAAAAAAAAABYYwAAMpfD-6k1hgItl8P7uDWGAgAAvwQ7mOnR', 'distance': 1.716409362, 'name': 'Piedmont Street', 'location': [-71.067854, 42.349993]}, {'waypoint_index': 24, 'trips_index': 0, 'hint': 'W1ZdgP___38WAAAAFwAAAAAAAAAyAAAAmfygQewAMT8AAAAA6hA0QhYAAAAXAAAAAAAAADIAAABYYwAAA6rD-z9LhgJcqcP7n0uGAgAAnw07mOnR', 'distance': 17.404100972, 'name': 'Tremont Street', 'location': [-71.063037, 42.355519]}, {'waypoint_index': 57, 'trips_index': 0, 'hint': '_j9dgOJiZYo0AAAAgwAAAOIAAABBAAAAEyEwQTgj2EHezjtCooBZQRoAAABBAAAAcQAAACEAAABYYwAAPZnC-xXOhgJRmML7Dc6GAgMAXxY7mOnR', 'distance': 19.457862614, 'name': '', 'location': [-71.132867, 42.389013]}, {'waypoint_index': 32, 'trips_index': 0, 'hint': '0FtdgP___38UAAAAPwAAAEgAAAAhAAAAW6uQQQeRGkKS7IFCJdQwQRQAAAA_AAAASAAAACEAAABYYwAA0FPD-wY1hgJ7U8P7szWGAgMAbwQ7mOnR', 'distance': 20.4541791, 'name': 'Commonwealth Avenue', 'location': [-71.085104, 42.34983]}, {'waypoint_index': 31, 'trips_index': 0, 'hint': 'T3RdgP___3-iAAAA9QAAAIcAAADgAAAAA1kHQtaniUH5EuFBU9w6QlEAAAB7AAAARAAAAHAAAABYYwAAsZbD-6xEhgLSnMP7eEaGAgEALxU7mOnR', 'distance': 138.962162697, 'name': '', 'location': [-71.067983, 42.353836]}, {'waypoint_index': 19, 'trips_index': 0, 'hint': 'sAzJi____38GAAAAHQAAAA4AAAAnAAAASMi7QCgnn0ExlUdBBrQOQgYAAAAdAAAADgAAACcAAABYYwAAVsLD-9VehgK7wcP7r16GAgEAXxU7mOnR', 'distance': 13.445931288, 'name': 'Union Street', 'location': [-71.05681, 42.360533]}, {'waypoint_index': 26, 'trips_index': 0, 'hint': 'Ny5egPEyXoAnAAAAKwAAAAoAAAAAAAAAMBgOQgJrGEKX2RVBAAAAACcAAAArAAAACgAAAAAAAABYYwAAIa_D-_RDhgKcr8P7hkSGAgEAnwc7mOnR', 'distance': 19.121839672, 'name': 'Avenue De Lafayette', 'location': [-71.061727, 42.353652]}, {'waypoint_index': 14, 'trips_index': 0, 'hint': 'C-ldgPWgFIoVAAAAIQAAAEMBAAAAAAAA9xN0QZP9skHYkGBDAAAAABUAAAAhAAAAQwEAAAAAAABYYwAAMBbE-w4vhgLZE8T7AzCGAhAAHw07mOnR', 'distance': 56.377729675, 'name': '', 'location': [-71.035344, 42.348302]}, {'waypoint_index': 21, 'trips_index': 0, 'hint': '11VdgLxEXoB7AAAAEwAAAB4BAAAiAQAA4IywQZv0UUDWlExCS9BOQj0AAAAKAAAAjwAAAJAAAABYYwAAR6fD--lWhgL-psP7-VeGAgQALxA7mOnR', 'distance': 30.806337221, 'name': 'Mount Vernon Street', 'location': [-71.063737, 42.358505]}, {'waypoint_index': 58, 'trips_index': 0, 'hint': 'CnJfgEx6X4AWAAAAAAAAAAAAAAAAAAAA_-1vQQAAAAAAAAAAAAAAABYAAAAAAAAAAAAAAAAAAABYYwAAWArC-yUnhwKSEML7JSOHAgAAHwc7mOnR', 'distance': 173.629294993, 'name': 'Ottawa Road', 'location': [-71.169448, 42.411813]}, {'waypoint_index': 56, 'trips_index': 0, 'hint': 'ry2MgP___38HAAAACgAAAA0AAAAkAAAAKImmQKvEzz_R3hZBG9cwQQcAAAAKAAAADQAAACQAAABYYwAALsHC-8LrhgLYwML7ouuGAgEAnwk7mOnR', 'distance': 7.925051729, 'name': 'Holland Street', 'location': [-71.122642, 42.39661]}, {'waypoint_index': 52, 'trips_index': 0, 'hint': 'nABdgIkDyoMPAAAAFAAAAA4AAAAAAAAAS1IyQXbvYEGggCBBAAAAAA8AAAAUAAAADgAAAAAAAABYYwAAwujC-8e4hgIi6ML7B7mGAgMAzwE7mOnR', 'distance': 14.973308394, 'name': 'Sacramento Street', 'location': [-71.11251, 42.383559]}, {'waypoint_index': 2, 'trips_index': 0, 'hint': 'nCtegP___38KAAAAFQAAAAsAAAAAAAAAxw4QQUJuG0FMSyJBAAAAAAoAAAAVAAAACwAAAAAAAABYYwAAEcfD-4lshgJ0x8P7bmyGAgIATwE7mOnR', 'distance': 8.687980263, 'name': 'Salem Street', 'location': [-71.055599, 42.364041]}, {'waypoint_index': 53, 'trips_index': 0, 'hint': 'IXZ5g____38WAAAANAAAAAQAAAAmAAAARVSBQTt9qEFhlj1AuQhXQRYAAAA0AAAABAAAACYAAABYYwAA383C-4jLhgLTzsL7sMuGAgEAvxU7mOnR', 'distance': 20.581786514, 'name': 'Massachusetts Avenue', 'location': [-71.119393, 42.38836]}, {'waypoint_index': 4, 'trips_index': 0, 'hint': 'zFNdgP___38HAAAADAAAAB0AAABqAAAAP_baQMtHbED_VNBBRvi9QgcAAAAMAAAAHQAAAGoAAABYYwAA9sTD--t3hgLOxMP7sXeGAgQATwc7mOnR', 'distance': 7.236143841, 'name': 'Hull Street', 'location': [-71.056138, 42.366955]}, {'waypoint_index': 22, 'trips_index': 0, 'hint': 'm1ddgKMFdYYeAAAAEgAAAFAAAAAAAAAANbbbQXvOcEFkb45CAAAAAB4AAAASAAAAUAAAAAAAAABYYwAAzJrD-wpQhgLenMP7A0uGAgIA3w87mOnR', 'distance': 149.476653857, 'name': 'Beacon Street', 'location': [-71.066932, 42.356746]}, {'waypoint_index': 20, 'trips_index': 0, 'hint': 'x5C_g____38BAAAAAQAAAAAAAAAKAAAAd7QKQAAAAAAAAAAAM1dyQQEAAAABAAAAAAAAAAoAAABYYwAAmrjD-7dZhgLkuMP7NVqGAgAAbxI7mOnR', 'distance': 15.265621401, 'name': 'Cambridge Street', 'location': [-71.059302, 42.359223]}, {'waypoint_index': 28, 'trips_index': 0, 'hint': 'ZqJdgG6iXYAQAAAAFAAAAMgBAAApAAAARGJcQP3tf0C74r1ClRQHQQgAAAAKAAAA5QAAABQAAABYYwAAxJrD-xw_hgInm8P7HD-GAgUADwA7mOnR', 'distance': 8.153891583, 'name': 'Carver Street', 'location': [-71.06694, 42.352412]}, {'waypoint_index': 3, 'trips_index': 0, 'hint': 'PZBFii0kR4pdAQAAMgAAAFEBAAA3AgAAi-R5QkfjDUH0B75CFwrLQq8AAAAZAAAAHgEAABwBAABYYwAAFq7D-1h0hgJ-rcP79nSGAgcArw47mOnR', 'distance': 21.558203788, 'name': '', 'location': [-71.061994, 42.36604]}, {'waypoint_index': 25, 'trips_index': 0, 'hint': 'kFhdgP___38WAAAAJwAAABAAAABCAAAADT-gQWTZZ0HFZWRBZy9tQhYAAAAnAAAAEAAAAEIAAABYYwAAJqjD-85IhgLfocP7xUqGAgEAvww7mOnR', 'distance': 143.666703104, 'name': 'Tremont Street', 'location': [-71.063514, 42.354894]}, {'waypoint_index': 12, 'trips_index': 0, 'hint': 'O6KYg____38IAAAApAAAAOMAAAAAAAAAQlAjQZlNQkOjqo1DAAAAAAgAAACkAAAA4wAAAAAAAABYYwAAjbfD-2I5hgJkt8P7aDmGAgwA_ws7mOnR', 'distance': 3.44200696, 'name': '', 'location': [-71.059571, 42.350946]}, {'waypoint_index': 13, 'trips_index': 0, 'hint': '96AUiuOJ_4wLAAAAAgAAAD0AAAAQAAAAIJL9QKujjz_ayilCOWQvQQsAAAACAAAAPQAAABAAAABYYwAAERTE-9YshgLhE8T7Pi2GAgQAvw87mOnR', 'distance': 12.211032431, 'name': '', 'location': [-71.035887, 42.347734]}, {'waypoint_index': 64, 'trips_index': 0, 'hint': 'm1NdgOAEBYYRAAAAMAAAAAkAAAAAAAAAull0QfHfK0JXnP5AAAAAABEAAAAwAAAACQAAAAAAAABYYwAAWKrC-69phgJsqsL7NmmGAgEAPwU7mOnR', 'distance': 13.541313452, 'name': 'Western Avenue', 'location': [-71.128488, 42.363311]}, {'waypoint_index': 6, 'trips_index': 0, 'hint': 'EHLag4AE7YMLAAAAAAAAAN0AAACjAAAA0-E_QAAAAAB2D3dCWJQ1QgsAAAAAAAAA3QAAAKMAAABYYwAAqa7D-waChgIDr8P7p4CGAgwALwY7mOnR', 'distance': 39.68766862, 'name': '', 'location': [-71.061847, 42.369542]}, {'waypoint_index': 54, 'trips_index': 0, 'hint': 'wYzog____38LAAAADgAAAAoAAAAdAAAAYO0KQZNLvj8jzfBAkYqmQQsAAAAOAAAACgAAAB0AAABYYwAAR87C-6rMhgI7zsL7Q8yGAgIA_wU7mOnR', 'distance': 11.48390849, 'name': 'Somerville Avenue', 'location': [-71.119289, 42.38865]}, {'waypoint_index': 45, 'trips_index': 0, 'hint': 'tOjjg7bo44M_AAAAAAAAABgAAAAAAAAAtarQQQAAAACjwx5BAAAAAD8AAAAAAAAAGAAAAAAAAABYYwAAVyPD--uthgLlIcP70K6GAgIAzwE7mOnR', 'distance': 39.695555426, 'name': '', 'location': [-71.097513, 42.380779]}, {'waypoint_index': 60, 'trips_index': 0, 'hint': 'yO-Ng6TnlYMJAAAAAAAAAIIAAAAvAAAAGSN0QAAAAACZcVhCs76cQQkAAAAAAAAAggAAAC8AAABYYwAAY-3C-06ThgLD78L76ZOGAgYAPwU7mOnR', 'distance': 52.953661405, 'name': '', 'location': [-71.111325, 42.373966]}, {'waypoint_index': 8, 'trips_index': 0, 'hint': 'L2VdgDRlXYAxAAAANAAAAAcAAAAAAAAArd4xQmoyN0LCB75AAAAAADEAAAA0AAAABwAAAAAAAABYYwAAWLLD-86shgL8scP7V6yGAgEAvxI7mOnR', 'distance': 15.236382659, 'name': 'Medford Street', 'location': [-71.060904, 42.380494]}, {'waypoint_index': 15, 'trips_index': 0, 'hint': 'OHtdgP___38GAAAABgAAAI8AAABOAAAAZ8O2QAAAAAAF7dxCCVpRQgYAAAAGAAAAjwAAAE4AAABYYwAAmtPD-wVfhgKO1sP7oGCGAhMATxQ7mOnR', 'distance': 77.209863594, 'name': 'Atlantic Avenue', 'location': [-71.05239, 42.360581]}, {'waypoint_index': 62, 'trips_index': 0, 'hint': 'NTxdgP___38PAAAAPAAAACUAAAAfAAAAFg0tQV4AAEJx19BBCYL9QA8AAAA8AAAAJQAAAB8AAABYYwAAQs7C-zeZhgK2zcL7E5mGAgEADwo7mOnR', 'distance': 12.204488282, 'name': 'Massachusetts Avenue', 'location': [-71.119294, 42.375479]}, {'waypoint_index': 40, 'trips_index': 0, 'hint': '-khdgMQ2hYgCAAAAGwAAAA4AAAAAAAAA0-G_P3NsmEERLBtBAAAAAAIAAAAbAAAADgAAAAAAAABYYwAA_GPD-6h6hgLfY8P7KHqGAgEAPwY7mOnR', 'distance': 14.417538735, 'name': 'Charles Street', 'location': [-71.080964, 42.367656]}, {'waypoint_index': 16, 'trips_index': 0, 'hint': 'WU_0if___38PAAAAGgAAAAAAAAAAAAAAa_tZQft-F0EAAAAAAAAAAA8AAAAaAAAAAAAAAAAAAABYYwAAUcvD-2hbhgI4y8P791uGAgAALwU7mOnR', 'distance': 16.017420792, 'name': 'Chatham Street', 'location': [-71.054511, 42.359656]}, {'waypoint_index': 38, 'trips_index': 0, 'hint': 'yFebgz9cPIkEAAAAAAAAAEwAAAA_AAAAF7HtPwAAAADSBvxB1pjOQQQAAAAAAAAATAAAAD8AAABYYwAA9BPD-_1mhgKIFMP7emeGAgUArwc7mOnR', 'distance': 18.476550585, 'name': '', 'location': [-71.101452, 42.362621]}, {'waypoint_index': 55, 'trips_index': 0, 'hint': 'zURzh9BEc4d6AAAAAAAAAAAAAAAAAAAAeXbLQQAAAAAAAAAAAAAAAD0AAAAAAAAAAAAAAAAAAABYYwAAje_C-3S6hgJG78L7zrmGAgAA3xE7mOnR', 'distance': 19.344420591, 'name': '', 'location': [-71.110771, 42.383988]}, {'waypoint_index': 48, 'trips_index': 0, 'hint': 'lF7hg6Ve4YOUAQAAFAAAAAAAAAA4AAAAAlKoQoE7hEAAAAAA2AI6QcoAAAAKAAAAAAAAABwAAABYYwAAcw7D-yGzhgIaD8P79rKGAgAAPwE7mOnR', 'distance': 14.560292055, 'name': '', 'location': [-71.102861, 42.382113]}, {'waypoint_index': 61, 'trips_index': 0, 'hint': 'V02ph____38DAAAAAwAAACkAAACWAAAALesZQAAAAAB49ehBGTS8QgMAAAADAAAAKQAAAJYAAABYYwAAWtDC-5qRhgKdz8L7WZGGAhAAvxQ7mOnR', 'distance': 17.159498176, 'name': 'Massachusetts Avenue', 'location': [-71.118758, 42.37353]}, {'waypoint_index': 63, 'trips_index': 0, 'hint': 'GcP6h____38AAAAAAgAAABAAAACAAAAA1ZUYP6ySbz-wyENBIF-4QgAAAAACAAAAEAAAAIAAAABYYwAAJsjC-5CQhgIOyML7cpCGAgUAzxI7mOnR', 'distance': 3.874577479, 'name': 'Brattle Street', 'location': [-71.120858, 42.373264]}, {'waypoint_index': 41, 'trips_index': 0, 'hint': 'HixujCAsbowAAAAACgAAAAAAAAAAAAAAAAAAANLZA0AAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAABYYwAAs3rD-wCDhgKWeMP74YGGAgAADxU7mOnRHCxujB0sbowJAAAAAAAAADIAAAAAAAAAJzz6PwAAAADDjiFBAAAAAAUAAAAAAAAAGQAAAAAAAABYYwAAs3rD-wCDhgKWeMP74YGGAgUA3xM7mOnR', 'distance': 54.788408156, 'name': '', 'location': [-71.075149, 42.369792]}, {'waypoint_index': 11, 'trips_index': 0, 'hint': 'JPtdgP___38CAAAABAAAAA8AAAB9AAAAOlEBQbYzMkCMzBJCyWybQwIAAAAEAAAADwAAAH0AAABYYwAA1pbD-waEhgIil8P7h4SGAgMAXxI7mOnR', 'distance': 15.636928294, 'name': '', 'location': [-71.067946, 42.370054]}, {'waypoint_index': 46, 'trips_index': 0, 'hint': 'iMfjg____38BAAAABgAAACkAAABKAAAA3B5tP_ydh0AE5xJCR09EQgEAAAAGAAAAKQAAAEoAAABYYwAAoibD-xerhgIFJsP7hqqGAgMADwg7mOnR', 'distance': 20.655117869, 'name': 'Union Square', 'location': [-71.09667, 42.380055]}, {'waypoint_index': 10, 'trips_index': 0, 'hint': 'wMddgP___38NAAAADgAAABQAAABPAQAAE-eKQQAAAABtZMlBEpHSQw0AAAAOAAAAFAAAAE8BAABYYwAAK6DD-9iKhgLFn8P7AIuGAgEADw07mOnR', 'distance': 9.503614084, 'name': '', 'location': [-71.065557, 42.3718]}, {'waypoint_index': 49, 'trips_index': 0, 'hint': 'Fz9dgJ75QYdeAAAAHQAAAAAAAACRAAAA0wSDQuC7nkEAAAAANB7JQl4AAAAdAAAAAAAAAJEAAABYYwAAUuHC-zSkhgJS4ML7_6OGAgAATwo7mOnR', 'distance': 21.891303915, 'name': 'Divinity Avenue', 'location': [-71.114414, 42.378292]}, {'waypoint_index': 42, 'trips_index': 0, 'hint': 'MflcgDT5XIAFAAAACQAAAE0AAAAAAAAAcj9sQFx7xUCbz11CAAAAAAUAAAAJAAAATQAAAAAAAABYYwAAhzPD-xuyhgLYMsP7n7GGAgIAjwg7mOnR', 'distance': 19.93665493, 'name': 'Munroe Street', 'location': [-71.093369, 42.381851]}, {'waypoint_index': 27, 'trips_index': 0, 'hint': 'j1hdgP___38WAAAArQAAAAAAAAAOAAAAIxajQY_nBUMAAAAAbudDQRYAAACtAAAAAAAAAA4AAABYYwAARbDD-9pIhgJJscP77UmGAgAADxM7mOnR', 'distance': 37.305486961, 'name': 'Temple Place', 'location': [-71.061435, 42.354906]}, {'waypoint_index': 35, 'trips_index': 0, 'hint': 'R0xnhuD5RowKAAAATgAAACYAAACMAAAA_FU4QN2FrEF_jyhBGEccQgoAAABOAAAAJgAAAIwAAABYYwAAbj7D-7lihgI0PsP7CmOGAgEA7wM7mOnR', 'distance': 10.187024527, 'name': '', 'location': [-71.090578, 42.361529]}, {'waypoint_index': 50, 'trips_index': 0, 'hint': 'pj1dgN3NXo0xAAAACAAAAA8AAADuAAAAAdsOQtscpkAo0ydBmu8qQzEAAAAIAAAADwAAAO4AAABYYwAAsNvC-weehgJj2sL7xJ2GAgEAjxU7mOnR', 'distance': 28.418560893, 'name': 'Oxford Street', 'location': [-71.115856, 42.376711]}, {'waypoint_index': 39, 'trips_index': 0, 'hint': 'VzxdgMZKXYAMAAAAsQAAAFMAAAAPAAAA1EapQLKdkkI1dApC_1fOQAwAAACxAAAAUwAAAA8AAABYYwAACCjD-35mhgIvKMP7r2eGAgIA_wU7mOnR', 'distance': 34.031505606, 'name': 'State Street', 'location': [-71.096312, 42.362494]}, {'waypoint_index': 51, 'trips_index': 0, 'hint': '2s1ejdzNXo0KAAAAAAAAAEMAAAAuAAAA0tkDQAAAAAAOQFxBIaobQQUAAAAAAAAAIQAAABgAAABYYwAA69vC-6ykhgLa3ML736SGAgQAzwk7mOnR', 'distance': 20.483622791, 'name': '', 'location': [-71.115797, 42.378412]}, {'waypoint_index': 43, 'trips_index': 0, 'hint': 'xgFdgA0HXYAcAAAAAAAAAAAAAAAAAAAA8P-ZQQAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAABYYwAAdy3D-3-phgKCLcP796mGAgAATxE7mOnR', 'distance': 13.360421987, 'name': 'Washington Street', 'location': [-71.094921, 42.379647]}, {'waypoint_index': 65, 'trips_index': 0, 'hint': 'BUNdgEJHXYALAAAAgQAAAA0AAAAKAAAAyLMCQT_Zt0LVwBJBdR_aQAsAAACBAAAADQAAAAoAAABYYwAA_PbC-3JshgJ798L7fWyGAgIAHxY7mOnR', 'distance': 10.531168033, 'name': 'Kinnaird Street', 'location': [-71.108868, 42.364018]}, {'waypoint_index': 7, 'trips_index': 0, 'hint': 'gdFdgEjuXYA4AAAACQAAAA4AAAAAAAAAHi0eQocIvUB0Ix1BAAAAADgAAAAJAAAADgAAAAAAAABYYwAAucbD-zyUhgLAx8P7XJOGAgEAXw47mOnR', 'distance': 32.989851701, 'name': 'First Avenue', 'location': [-71.055687, 42.374204]}, {'waypoint_index': 44, 'trips_index': 0, 'hint': 'oR8EjaQfBI0JAAAAAwAAAJUAAAAAAAAAEI19QFaajT_aVXhCAAAAAAkAAAADAAAAlQAAAAAAAABYYwAA-i7D-wihhgIYLsP7kKCGAgkATxQ7mOnR', 'distance': 22.894510528, 'name': '', 'location': [-71.094534, 42.37748]}, {'waypoint_index': 37, 'trips_index': 0, 'hint': 'ETtdgCXmnYMEAAAAFAAAAEEAAAAqAAAAUqOuQGrdp0HrjZFCXeI6QgQAAAAUAAAAQQAAACoAAABYYwAAVhTD-_BhhgLJE8P7RGKGAgMArw07mOnR', 'distance': 14.89723958, 'name': 'Sidney Street', 'location': [-71.101354, 42.361328]}, {'waypoint_index': 47, 'trips_index': 0, 'hint': 'pl7hg6Z_S40gAAAAGAAAAAAAAAAAAAAAq1m4QdDnhUEAAAAAAAAAACAAAAAYAAAAAAAAAAAAAABYYwAAqg_D-1ezhgLzD8P71bOGAgAAHwc7mOnR', 'distance': 15.232925171, 'name': 'Somerville Avenue', 'location': [-71.10255, 42.382167]}, {'waypoint_index': 36, 'trips_index': 0, 'hint': 'gEpdgEHIkoYVAAAAIQAAAB4AAAAAAAAA9NR2QYq_tkG6YNxAAAAAABUAAAAhAAAAHgAAAAAAAABYYwAAzhXD-4ZrhgJJFcP7DGuGAgIADwg7mOnR', 'distance': 17.425469217, 'name': 'Massachusetts Avenue', 'location': [-71.100978, 42.363782]}, {'waypoint_index': 9, 'trips_index': 0, 'hint': 'nmddgP___38uAAAAOgAAAAcAAAAKAAAAb3MjQg4_K0GsdLpAGH8MQS4AAAA6AAAABwAAAAoAAABYYwAA7KnD--uThgKCqcP7GZSGAgEALw07mOnR', 'distance': 10.115804216, 'name': 'Pleasant Street', 'location': [-71.06306, 42.374123]}, {'waypoint_index': 66, 'trips_index': 0, 'hint': '7jwOiP___38OAAAAVwAAAA4AAACAAQAAWvlLQWhkgULc2ExBHDOZQw4AAABXAAAADgAAAIABAABYYwAAkD_D-3gNhgJmP8P7sA2GAgEAzwM7mOnR', 'distance': 7.118941193, 'name': 'Huntington Avenue', 'location': [-71.090288, 42.339704]}]}\n"
- ]
- },
- {
- "ename": "KeyboardInterrupt",
- "evalue": "",
- "output_type": "error",
- "traceback": [
- "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m",
- "\u001B[0;31mKeyboardInterrupt\u001B[0m Traceback (most recent call last)",
- "Cell \u001B[0;32mIn[8], line 2\u001B[0m\n\u001B[1;32m 1\u001B[0m \u001B[38;5;66;03m# Cluster and minimize the data\u001B[39;00m\n\u001B[0;32m----> 2\u001B[0m _, routes \u001B[38;5;241m=\u001B[39m utils\u001B[38;5;241m.\u001B[39mcluster_and_optimize(TotalList, centroids, northeastern_coordinate,\n\u001B[1;32m 3\u001B[0m time_diff\u001B[38;5;241m=\u001B[39m\u001B[38;5;241m0.25\u001B[39m, max_time\u001B[38;5;241m=\u001B[39m\u001B[38;5;241m24\u001B[39m, host\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mhttp://router.project-osrm.org\u001B[39m\u001B[38;5;124m'\u001B[39m)\n\u001B[1;32m 5\u001B[0m route_1_coordinates \u001B[38;5;241m=\u001B[39m routes[\u001B[38;5;241m0\u001B[39m]\n\u001B[1;32m 6\u001B[0m route_2_coordinates \u001B[38;5;241m=\u001B[39m routes[\u001B[38;5;241m1\u001B[39m]\n",
- "File \u001B[0;32m~/DataspellProjects/hh/utils.py:35\u001B[0m, in \u001B[0;36mcluster_and_optimize\u001B[0;34m(df, centroids, end, time_diff, max_time, n, host)\u001B[0m\n\u001B[1;32m 32\u001B[0m routes\u001B[38;5;241m.\u001B[39mappend(df[df[\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mcluster\u001B[39m\u001B[38;5;124m\"\u001B[39m] \u001B[38;5;241m==\u001B[39m i][\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mgps\u001B[39m\u001B[38;5;124m\"\u001B[39m]\u001B[38;5;241m.\u001B[39mvalues\u001B[38;5;241m.\u001B[39mtolist())\n\u001B[1;32m 33\u001B[0m starts\u001B[38;5;241m.\u001B[39mappend(list_to_string([centroids[i]]))\n\u001B[0;32m---> 35\u001B[0m routes \u001B[38;5;241m=\u001B[39m __minimize_route_time_diff(routes, starts, end, time_diff, n, host\u001B[38;5;241m=\u001B[39mhost)\n\u001B[1;32m 37\u001B[0m \u001B[38;5;66;03m# Remove waypoints from the longest route until the trip time is less than the max time\u001B[39;00m\n\u001B[1;32m 38\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m i \u001B[38;5;129;01min\u001B[39;00m \u001B[38;5;28mrange\u001B[39m(\u001B[38;5;28mlen\u001B[39m(routes)):\n",
- "File \u001B[0;32m~/DataspellProjects/hh/utils.py:135\u001B[0m, in \u001B[0;36m__minimize_route_time_diff\u001B[0;34m(routes, starts, end, time_diff, n, host)\u001B[0m\n\u001B[1;32m 132\u001B[0m times \u001B[38;5;241m=\u001B[39m []\n\u001B[1;32m 134\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m i, route \u001B[38;5;129;01min\u001B[39;00m \u001B[38;5;28menumerate\u001B[39m(routes):\n\u001B[0;32m--> 135\u001B[0m times\u001B[38;5;241m.\u001B[39mappend(get_trip_time(list_to_string(route), \u001B[38;5;28mlen\u001B[39m(route), starts[i], end, host\u001B[38;5;241m=\u001B[39mhost))\n\u001B[1;32m 137\u001B[0m \u001B[38;5;66;03m# Find the average trip time\u001B[39;00m\n\u001B[1;32m 138\u001B[0m average_time \u001B[38;5;241m=\u001B[39m np\u001B[38;5;241m.\u001B[39mmean(times)\n",
- "File \u001B[0;32m~/DataspellProjects/hh/utils.py:103\u001B[0m, in \u001B[0;36mget_trip_time\u001B[0;34m(coordinate_string, num_waypoints, start, end, time_per_waypoint, host)\u001B[0m\n\u001B[1;32m 92\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mget_trip_time\u001B[39m(coordinate_string, num_waypoints, start, end, time_per_waypoint\u001B[38;5;241m=\u001B[39m\u001B[38;5;241m90\u001B[39m, host\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mhttp://acetyl.net:5000\u001B[39m\u001B[38;5;124m\"\u001B[39m):\n\u001B[1;32m 93\u001B[0m \u001B[38;5;250m \u001B[39m\u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 94\u001B[0m \u001B[38;5;124;03m Takes a string of coordinates and returns the trip time in hours\u001B[39;00m\n\u001B[1;32m 95\u001B[0m \u001B[38;5;124;03m :param coordinate_string: a string of coordinates\u001B[39;00m\n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 101\u001B[0m \u001B[38;5;124;03m :return: the trip time in hours\u001B[39;00m\n\u001B[1;32m 102\u001B[0m \u001B[38;5;124;03m \"\"\"\u001B[39;00m\n\u001B[0;32m--> 103\u001B[0m coordinates \u001B[38;5;241m=\u001B[39m requests\u001B[38;5;241m.\u001B[39mget(\n\u001B[1;32m 104\u001B[0m host\n\u001B[1;32m 105\u001B[0m \u001B[38;5;241m+\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124m/trip/v1/bike/\u001B[39m\u001B[38;5;124m\"\u001B[39m\n\u001B[1;32m 106\u001B[0m \u001B[38;5;241m+\u001B[39m start\n\u001B[1;32m 107\u001B[0m \u001B[38;5;241m+\u001B[39m coordinate_string\n\u001B[1;32m 108\u001B[0m \u001B[38;5;241m+\u001B[39m end\n\u001B[1;32m 109\u001B[0m \u001B[38;5;241m+\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124m?roundtrip=false&source=first&destination=last\u001B[39m\u001B[38;5;124m\"\u001B[39m\n\u001B[1;32m 110\u001B[0m )\n\u001B[1;32m 111\u001B[0m coordinates \u001B[38;5;241m=\u001B[39m coordinates\u001B[38;5;241m.\u001B[39mjson()\n\u001B[1;32m 112\u001B[0m \u001B[38;5;28mprint\u001B[39m(coordinates)\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/site-packages/requests/api.py:73\u001B[0m, in \u001B[0;36mget\u001B[0;34m(url, params, **kwargs)\u001B[0m\n\u001B[1;32m 62\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mget\u001B[39m(url, params\u001B[38;5;241m=\u001B[39m\u001B[38;5;28;01mNone\u001B[39;00m, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39mkwargs):\n\u001B[1;32m 63\u001B[0m \u001B[38;5;250m \u001B[39m\u001B[38;5;124mr\u001B[39m\u001B[38;5;124;03m\"\"\"Sends a GET request.\u001B[39;00m\n\u001B[1;32m 64\u001B[0m \n\u001B[1;32m 65\u001B[0m \u001B[38;5;124;03m :param url: URL for the new :class:`Request` object.\u001B[39;00m\n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 70\u001B[0m \u001B[38;5;124;03m :rtype: requests.Response\u001B[39;00m\n\u001B[1;32m 71\u001B[0m \u001B[38;5;124;03m \"\"\"\u001B[39;00m\n\u001B[0;32m---> 73\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m request(\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mget\u001B[39m\u001B[38;5;124m\"\u001B[39m, url, params\u001B[38;5;241m=\u001B[39mparams, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39mkwargs)\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/site-packages/requests/api.py:59\u001B[0m, in \u001B[0;36mrequest\u001B[0;34m(method, url, **kwargs)\u001B[0m\n\u001B[1;32m 55\u001B[0m \u001B[38;5;66;03m# By using the 'with' statement we are sure the session is closed, thus we\u001B[39;00m\n\u001B[1;32m 56\u001B[0m \u001B[38;5;66;03m# avoid leaving sockets open which can trigger a ResourceWarning in some\u001B[39;00m\n\u001B[1;32m 57\u001B[0m \u001B[38;5;66;03m# cases, and look like a memory leak in others.\u001B[39;00m\n\u001B[1;32m 58\u001B[0m \u001B[38;5;28;01mwith\u001B[39;00m sessions\u001B[38;5;241m.\u001B[39mSession() \u001B[38;5;28;01mas\u001B[39;00m session:\n\u001B[0;32m---> 59\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m session\u001B[38;5;241m.\u001B[39mrequest(method\u001B[38;5;241m=\u001B[39mmethod, url\u001B[38;5;241m=\u001B[39murl, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39mkwargs)\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/site-packages/requests/sessions.py:589\u001B[0m, in \u001B[0;36mSession.request\u001B[0;34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001B[0m\n\u001B[1;32m 584\u001B[0m send_kwargs \u001B[38;5;241m=\u001B[39m {\n\u001B[1;32m 585\u001B[0m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mtimeout\u001B[39m\u001B[38;5;124m\"\u001B[39m: timeout,\n\u001B[1;32m 586\u001B[0m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mallow_redirects\u001B[39m\u001B[38;5;124m\"\u001B[39m: allow_redirects,\n\u001B[1;32m 587\u001B[0m }\n\u001B[1;32m 588\u001B[0m send_kwargs\u001B[38;5;241m.\u001B[39mupdate(settings)\n\u001B[0;32m--> 589\u001B[0m resp \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39msend(prep, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39msend_kwargs)\n\u001B[1;32m 591\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m resp\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/site-packages/requests/sessions.py:703\u001B[0m, in \u001B[0;36mSession.send\u001B[0;34m(self, request, **kwargs)\u001B[0m\n\u001B[1;32m 700\u001B[0m start \u001B[38;5;241m=\u001B[39m preferred_clock()\n\u001B[1;32m 702\u001B[0m \u001B[38;5;66;03m# Send the request\u001B[39;00m\n\u001B[0;32m--> 703\u001B[0m r \u001B[38;5;241m=\u001B[39m adapter\u001B[38;5;241m.\u001B[39msend(request, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39mkwargs)\n\u001B[1;32m 705\u001B[0m \u001B[38;5;66;03m# Total elapsed time of the request (approximately)\u001B[39;00m\n\u001B[1;32m 706\u001B[0m elapsed \u001B[38;5;241m=\u001B[39m preferred_clock() \u001B[38;5;241m-\u001B[39m start\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/site-packages/requests/adapters.py:486\u001B[0m, in \u001B[0;36mHTTPAdapter.send\u001B[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001B[0m\n\u001B[1;32m 483\u001B[0m timeout \u001B[38;5;241m=\u001B[39m TimeoutSauce(connect\u001B[38;5;241m=\u001B[39mtimeout, read\u001B[38;5;241m=\u001B[39mtimeout)\n\u001B[1;32m 485\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[0;32m--> 486\u001B[0m resp \u001B[38;5;241m=\u001B[39m conn\u001B[38;5;241m.\u001B[39murlopen(\n\u001B[1;32m 487\u001B[0m method\u001B[38;5;241m=\u001B[39mrequest\u001B[38;5;241m.\u001B[39mmethod,\n\u001B[1;32m 488\u001B[0m url\u001B[38;5;241m=\u001B[39murl,\n\u001B[1;32m 489\u001B[0m body\u001B[38;5;241m=\u001B[39mrequest\u001B[38;5;241m.\u001B[39mbody,\n\u001B[1;32m 490\u001B[0m headers\u001B[38;5;241m=\u001B[39mrequest\u001B[38;5;241m.\u001B[39mheaders,\n\u001B[1;32m 491\u001B[0m redirect\u001B[38;5;241m=\u001B[39m\u001B[38;5;28;01mFalse\u001B[39;00m,\n\u001B[1;32m 492\u001B[0m assert_same_host\u001B[38;5;241m=\u001B[39m\u001B[38;5;28;01mFalse\u001B[39;00m,\n\u001B[1;32m 493\u001B[0m preload_content\u001B[38;5;241m=\u001B[39m\u001B[38;5;28;01mFalse\u001B[39;00m,\n\u001B[1;32m 494\u001B[0m decode_content\u001B[38;5;241m=\u001B[39m\u001B[38;5;28;01mFalse\u001B[39;00m,\n\u001B[1;32m 495\u001B[0m retries\u001B[38;5;241m=\u001B[39m\u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mmax_retries,\n\u001B[1;32m 496\u001B[0m timeout\u001B[38;5;241m=\u001B[39mtimeout,\n\u001B[1;32m 497\u001B[0m chunked\u001B[38;5;241m=\u001B[39mchunked,\n\u001B[1;32m 498\u001B[0m )\n\u001B[1;32m 500\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m (ProtocolError, \u001B[38;5;167;01mOSError\u001B[39;00m) \u001B[38;5;28;01mas\u001B[39;00m err:\n\u001B[1;32m 501\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mConnectionError\u001B[39;00m(err, request\u001B[38;5;241m=\u001B[39mrequest)\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/site-packages/urllib3/connectionpool.py:715\u001B[0m, in \u001B[0;36mHTTPConnectionPool.urlopen\u001B[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001B[0m\n\u001B[1;32m 712\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_prepare_proxy(conn)\n\u001B[1;32m 714\u001B[0m \u001B[38;5;66;03m# Make the request on the httplib connection object.\u001B[39;00m\n\u001B[0;32m--> 715\u001B[0m httplib_response \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_make_request(\n\u001B[1;32m 716\u001B[0m conn,\n\u001B[1;32m 717\u001B[0m method,\n\u001B[1;32m 718\u001B[0m url,\n\u001B[1;32m 719\u001B[0m timeout\u001B[38;5;241m=\u001B[39mtimeout_obj,\n\u001B[1;32m 720\u001B[0m body\u001B[38;5;241m=\u001B[39mbody,\n\u001B[1;32m 721\u001B[0m headers\u001B[38;5;241m=\u001B[39mheaders,\n\u001B[1;32m 722\u001B[0m chunked\u001B[38;5;241m=\u001B[39mchunked,\n\u001B[1;32m 723\u001B[0m )\n\u001B[1;32m 725\u001B[0m \u001B[38;5;66;03m# If we're going to release the connection in ``finally:``, then\u001B[39;00m\n\u001B[1;32m 726\u001B[0m \u001B[38;5;66;03m# the response doesn't need to know about the connection. Otherwise\u001B[39;00m\n\u001B[1;32m 727\u001B[0m \u001B[38;5;66;03m# it will also try to release it and we'll have a double-release\u001B[39;00m\n\u001B[1;32m 728\u001B[0m \u001B[38;5;66;03m# mess.\u001B[39;00m\n\u001B[1;32m 729\u001B[0m response_conn \u001B[38;5;241m=\u001B[39m conn \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;129;01mnot\u001B[39;00m release_conn \u001B[38;5;28;01melse\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/site-packages/urllib3/connectionpool.py:467\u001B[0m, in \u001B[0;36mHTTPConnectionPool._make_request\u001B[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001B[0m\n\u001B[1;32m 462\u001B[0m httplib_response \u001B[38;5;241m=\u001B[39m conn\u001B[38;5;241m.\u001B[39mgetresponse()\n\u001B[1;32m 463\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mBaseException\u001B[39;00m \u001B[38;5;28;01mas\u001B[39;00m e:\n\u001B[1;32m 464\u001B[0m \u001B[38;5;66;03m# Remove the TypeError from the exception chain in\u001B[39;00m\n\u001B[1;32m 465\u001B[0m \u001B[38;5;66;03m# Python 3 (including for exceptions like SystemExit).\u001B[39;00m\n\u001B[1;32m 466\u001B[0m \u001B[38;5;66;03m# Otherwise it looks like a bug in the code.\u001B[39;00m\n\u001B[0;32m--> 467\u001B[0m six\u001B[38;5;241m.\u001B[39mraise_from(e, \u001B[38;5;28;01mNone\u001B[39;00m)\n\u001B[1;32m 468\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m (SocketTimeout, BaseSSLError, SocketError) \u001B[38;5;28;01mas\u001B[39;00m e:\n\u001B[1;32m 469\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_raise_timeout(err\u001B[38;5;241m=\u001B[39me, url\u001B[38;5;241m=\u001B[39murl, timeout_value\u001B[38;5;241m=\u001B[39mread_timeout)\n",
- "File \u001B[0;32m<string>:3\u001B[0m, in \u001B[0;36mraise_from\u001B[0;34m(value, from_value)\u001B[0m\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/site-packages/urllib3/connectionpool.py:462\u001B[0m, in \u001B[0;36mHTTPConnectionPool._make_request\u001B[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001B[0m\n\u001B[1;32m 459\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mTypeError\u001B[39;00m:\n\u001B[1;32m 460\u001B[0m \u001B[38;5;66;03m# Python 3\u001B[39;00m\n\u001B[1;32m 461\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[0;32m--> 462\u001B[0m httplib_response \u001B[38;5;241m=\u001B[39m conn\u001B[38;5;241m.\u001B[39mgetresponse()\n\u001B[1;32m 463\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mBaseException\u001B[39;00m \u001B[38;5;28;01mas\u001B[39;00m e:\n\u001B[1;32m 464\u001B[0m \u001B[38;5;66;03m# Remove the TypeError from the exception chain in\u001B[39;00m\n\u001B[1;32m 465\u001B[0m \u001B[38;5;66;03m# Python 3 (including for exceptions like SystemExit).\u001B[39;00m\n\u001B[1;32m 466\u001B[0m \u001B[38;5;66;03m# Otherwise it looks like a bug in the code.\u001B[39;00m\n\u001B[1;32m 467\u001B[0m six\u001B[38;5;241m.\u001B[39mraise_from(e, \u001B[38;5;28;01mNone\u001B[39;00m)\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/http/client.py:1378\u001B[0m, in \u001B[0;36mHTTPConnection.getresponse\u001B[0;34m(self)\u001B[0m\n\u001B[1;32m 1376\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[1;32m 1377\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[0;32m-> 1378\u001B[0m response\u001B[38;5;241m.\u001B[39mbegin()\n\u001B[1;32m 1379\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mConnectionError\u001B[39;00m:\n\u001B[1;32m 1380\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mclose()\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/http/client.py:318\u001B[0m, in \u001B[0;36mHTTPResponse.begin\u001B[0;34m(self)\u001B[0m\n\u001B[1;32m 316\u001B[0m \u001B[38;5;66;03m# read until we get a non-100 response\u001B[39;00m\n\u001B[1;32m 317\u001B[0m \u001B[38;5;28;01mwhile\u001B[39;00m \u001B[38;5;28;01mTrue\u001B[39;00m:\n\u001B[0;32m--> 318\u001B[0m version, status, reason \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_read_status()\n\u001B[1;32m 319\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m status \u001B[38;5;241m!=\u001B[39m CONTINUE:\n\u001B[1;32m 320\u001B[0m \u001B[38;5;28;01mbreak\u001B[39;00m\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/http/client.py:279\u001B[0m, in \u001B[0;36mHTTPResponse._read_status\u001B[0;34m(self)\u001B[0m\n\u001B[1;32m 278\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21m_read_status\u001B[39m(\u001B[38;5;28mself\u001B[39m):\n\u001B[0;32m--> 279\u001B[0m line \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mstr\u001B[39m(\u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mfp\u001B[38;5;241m.\u001B[39mreadline(_MAXLINE \u001B[38;5;241m+\u001B[39m \u001B[38;5;241m1\u001B[39m), \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124miso-8859-1\u001B[39m\u001B[38;5;124m\"\u001B[39m)\n\u001B[1;32m 280\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mlen\u001B[39m(line) \u001B[38;5;241m>\u001B[39m _MAXLINE:\n\u001B[1;32m 281\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m LineTooLong(\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mstatus line\u001B[39m\u001B[38;5;124m\"\u001B[39m)\n",
- "File \u001B[0;32m~/anaconda3/lib/python3.11/socket.py:706\u001B[0m, in \u001B[0;36mSocketIO.readinto\u001B[0;34m(self, b)\u001B[0m\n\u001B[1;32m 704\u001B[0m \u001B[38;5;28;01mwhile\u001B[39;00m \u001B[38;5;28;01mTrue\u001B[39;00m:\n\u001B[1;32m 705\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[0;32m--> 706\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_sock\u001B[38;5;241m.\u001B[39mrecv_into(b)\n\u001B[1;32m 707\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m timeout:\n\u001B[1;32m 708\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_timeout_occurred \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;01mTrue\u001B[39;00m\n",
- "\u001B[0;31mKeyboardInterrupt\u001B[0m: "
- ]
- }
- ],
- "execution_count": 8
- },
- {
- "cell_type": "markdown",
- "id": "c85b8ef869e35006",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2023-11-07T17:33:02.697755Z",
- "start_time": "2023-11-07T17:33:02.687460Z"
- }
- },
- "source": [
- "## Create JSON"
- ]
- },
- {
- "cell_type": "code",
- "id": "aa618161182b5b07",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2024-07-02T22:05:44.716570Z",
- "start_time": "2024-07-02T22:05:44.707277Z"
- }
- },
- "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)"
- ],
- "outputs": [
- {
- "ename": "NameError",
- "evalue": "name 'route_1_coordinates' is not defined",
- "output_type": "error",
- "traceback": [
- "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m",
- "\u001B[0;31mNameError\u001B[0m Traceback (most recent call last)",
- "Cell \u001B[0;32mIn[9], line 3\u001B[0m\n\u001B[1;32m 1\u001B[0m \u001B[38;5;66;03m# Create a JSON request for the API\u001B[39;00m\n\u001B[1;32m 2\u001B[0m \u001B[38;5;66;03m# This is the data we want to get from the API\u001B[39;00m\n\u001B[0;32m----> 3\u001B[0m route_1 \u001B[38;5;241m=\u001B[39m utils\u001B[38;5;241m.\u001B[39mlist_to_string(route_1_coordinates)\n\u001B[1;32m 4\u001B[0m route_2 \u001B[38;5;241m=\u001B[39m utils\u001B[38;5;241m.\u001B[39mlist_to_string(route_2_coordinates)\n",
- "\u001B[0;31mNameError\u001B[0m: name 'route_1_coordinates' is not defined"
- ]
- }
- ],
- "execution_count": 9
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "id": "32c485788eedd94",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2023-11-07T23:06:07.185941Z",
- "start_time": "2023-11-07T23:06:04.976840Z"
- }
- },
- "outputs": [],
- "source": [
- "# Create a dataframe from the JSON\n",
- "df1 = utils.create_json_df(route_1, utils.list_to_string([centroids[0]]), northeastern_coordinate, host='https://router.project-osrm.org')\n",
- "df2 = utils.create_json_df(route_2, utils.list_to_string([centroids[1]]), northeastern_coordinate, host='https://router.project-osrm.org')"
- ]
- },
- {
- "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",
- "df1['route'] = 1\n",
- "df2['route'] = 2\n",
- "\n",
- "# Concatenate the two dataframes\n",
- "df = pd.concat([df1, df2], ignore_index=True)"
- ]
- },
- {
- "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/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"
- }
- ],
- "source": [
- "display(df)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "75be92e34a36147f",
- "metadata": {},
- "source": [
- "## Map"
- ]
- },
- {
- "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/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": {},
- "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"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a7b562f75f7e0813",
- "metadata": {},
- "source": [
- "## Results"
- ]
- },
- {
- "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",
- "output_type": "stream",
- "text": [
- "Route 1 has 105 waypoints\n",
- "Route 2 has 64 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))"
- ]
- },
- {
- "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",
- "output_type": "stream",
- "text": [
- "The trip will take 13.1925 hours\n",
- "The trip will take 13.017777777777777 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))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "de7b5856172d213c",
- "metadata": {},
- "source": [
- "# 3 Routes"
- ]
- },
- {
- "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",
- "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",
- "# Add a third centroid in the Financial District\n",
- "centroids.append([42.356, -71.055])\n",
- "_, routes = utils.cluster_and_optimize(TotalList, centroids, northeastern_coordinate, time_diff=0.3, max_time=24)\n",
- "\n",
- "route_1_coordinates = routes[0]\n",
- "route_2_coordinates = routes[1]\n",
- "route_3_coordinates = routes[2]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "19afb4f687b37383",
- "metadata": {},
- "source": [
- "## Create JSON"
- ]
- },
- {
- "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",
- "# 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)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 18,
- "id": "23e4682fe9e30631",
- "metadata": {
- "ExecuteTime": {
- "end_time": "2023-11-07T23:07:38.315154Z",
- "start_time": "2023-11-07T23:07:36.199174Z"
- }
- },
- "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",
- "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)"
- ]
- },
- {
- "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/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"
- }
- ],
- "source": [
- "display(df)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b20a57aa09792c39",
- "metadata": {},
- "source": [
- "## Map"
- ]
- },
- {
- "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/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": {},
- "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"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a947e49e27c734e9",
- "metadata": {},
- "source": [
- "## Results"
- ]
- },
- {
- "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",
- "output_type": "stream",
- "text": [
- "Route 1 has 61 waypoints\n",
- "Route 2 has 56 waypoints\n",
- "Route 3 has 52 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))"
- ]
- },
- {
- "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",
- "output_type": "stream",
- "text": [
- "The trip will take 9.394444444444444 hours\n",
- "The trip will take 8.852777777777778 hours\n",
- "The trip will take 9.325555555555555 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))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4068a0b6460f19ab",
- "metadata": {},
- "source": [
- "# 10 ROUTES (because I can)"
- ]
- },
- {
- "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",
- "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",
- "# Add seven more centroids around Boston with different latitudes and longitudes\n",
- "for i in range(7):\n",
- " 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)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8c6f5aeb5e6c2832",
- "metadata": {},
- "source": [
- "## Create JSON"
- ]
- },
- {
- "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",
- "# This is the data we want to get from the API\n",
- "route_strings = []\n",
- "for route in routes:\n",
- " route_strings.append(utils.list_to_string(route))"
- ]
- },
- {
- "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",
- "dfs = []\n",
- "for i in range(len(routes)):\n",
- " dfs.append(utils.create_json_df(route_strings[i], utils.list_to_string([centroids[i]]), northeastern_coordinate))\n",
- " \n",
- "# Concatenate the dataframes\n",
- "df = pd.concat(dfs, ignore_index=True)"
- ]
- },
- {
- "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",
- "output_type": "stream",
- "text": [
- "/var/folders/8b/9mzlkxlx3zx9nmpy8prjpmm80000gn/T/ipykernel_42497/2886398449.py:3: SettingWithCopyWarning: \n",
- "A value is trying to be set on a copy of a slice from a DataFrame\n",
- "\n",
- "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
- " df['route'].iloc[i * len(routes[i]):(i + 1) * len(routes[i])] = i + 1\n"
- ]
- }
- ],
- "source": [
- "# 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"
- ]
- },
- {
- "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/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"
- }
- ],
- "source": [
- "# Display the dataframe\n",
- "display(df)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1552586cb84a48c5",
- "metadata": {},
- "source": [
- "## Map"
- ]
- },
- {
- "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/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": {},
- "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', 'orange', 'purple', 'pink', 'black', 'gray', 'brown', 'yellow']\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"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4723f2f26efe49d3",
- "metadata": {},
- "source": [
- "## Results"
- ]
- },
- {
- "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",
- "output_type": "stream",
- "text": [
- "Route 1 has 20 waypoints\n",
- "Route 2 has 10 waypoints\n",
- "Route 3 has 28 waypoints\n",
- "Route 4 has 1 waypoints\n",
- "Route 5 has 15 waypoints\n",
- "Route 6 has 37 waypoints\n",
- "Route 7 has 18 waypoints\n",
- "Route 8 has 16 waypoints\n",
- "Route 9 has 10 waypoints\n",
- "Route 10 has 14 waypoints\n"
- ]
- }
- ],
- "source": [
- "# Get the number of waypoints for each route\n",
- "route_waypoints = []\n",
- "for route in routes:\n",
- " route_waypoints.append(len(route))\n",
- "for i in range(len(route_waypoints)):\n",
- " print(\"Route {} has {} waypoints\".format(i + 1, route_waypoints[i]))"
- ]
- },
- {
- "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",
- "output_type": "stream",
- "text": [
- "The trip will take 3.1816666666666666 hours\n",
- "The trip will take 3.8113888888888887 hours\n",
- "The trip will take 3.9852777777777777 hours\n",
- "The trip will take 3.8975 hours\n",
- "The trip will take 4.088611111111111 hours\n",
- "The trip will take 4.039444444444444 hours\n",
- "The trip will take 3.17 hours\n",
- "The trip will take 3.209722222222222 hours\n",
- "The trip will take 4.1275 hours\n",
- "The trip will take 3.2069444444444444 hours\n"
- ]
- }
- ],
- "source": [
- "# Get the trip time for each route\n",
- "trip_hrs = []\n",
- "for i in range(len(routes)):\n",
- " trip_hrs.append(utils.get_trip_time(route_strings[i], route_waypoints[i], utils.list_to_string([centroids[i]]),\n",
- " northeastern_coordinate))\n",
- "for i in range(len(trip_hrs)):\n",
- " print(\"The trip will take {} hours\".format(trip_hrs[i]))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a4cf5509f890423a",
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.4"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}