-
Notifications
You must be signed in to change notification settings - Fork 0
/
Staten Island Boundary Map.html
108 lines (83 loc) · 46.3 KB
/
Staten Island Boundary Map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<!-- THERE ARE THREE THINGS YOU SHOULD CHANGE:
1. The title of the page (can be the name of the current city)
2. Define the variable 'city' to be CITY, STATE
3. Define the array 'data' in function 'drawBounds()' to be a list of latitude,longitude points of the city boundary (gotten from a KML file) -->
<title>STATEN ISLAND</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
margin: 0;
padding: 0;
height: 100%;
}
</style>
<!-- WORKING API CALL WITH GEOMETRY LIBRARY (need for finding if a point is within polygon)-->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=geometry&key=AIzaSyCeGd25WDa3-bo3WdBZLNAY5uB_0EoDvN0&sensor=false"></script>
<script type="text/javascript">
// ENTER CITY NAME HERE in format "City, State" //
var city = "Staten Island, New York"
var map;
var shape;
var geocoder;
function setUp() {
geocoder = new google.maps.Geocoder();
var address = city;
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker( {
map: map,
position: results[0].geometry.location
});
} else {
alert('Geocode was not successful for the following reason: '+ status);
}
});
} //function setUp
function initializeMap() {
var mapOptions = {
zoom: 12,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}
function drawBounds() {
var data = [-74.154344,40.637256, -74.15392,40.637271, -74.153723,40.637405, -74.153171,40.637464, -74.152764,40.637353, -74.152723,40.637695, -74.152005,40.637744, -74.151974,40.637627, -74.151336,40.637694, -74.151502,40.639415, -74.151366,40.639442, -74.151271,40.63854, -74.150996,40.638439, -74.150709,40.63823, -74.150573,40.637959, -74.149638,40.637429, -74.149481,40.637707, -74.149581,40.637969, -74.149514,40.638401, -74.149326,40.638652, -74.149102,40.638659, -74.14875,40.637792, -74.148667,40.637918, -74.148649,40.638386, -74.148853,40.638729, -74.148961,40.638748, -74.148908,40.638874, -74.14877,40.638855, -74.147817,40.638965, -74.147768,40.639064, -74.147676,40.639099, -74.147535,40.638945, -74.147393,40.638971, -74.147417,40.639061, -74.147101,40.639122, -74.147078,40.639059, -74.146682,40.639056, -74.146624,40.639001, -74.146359,40.639027, -74.146372,40.639261, -74.146199,40.639268, -74.146239,40.639125, -74.145731,40.639238, -74.14563,40.639228, -74.145332,40.638821, -74.145024,40.638575, -74.144526,40.638509, -74.143975,40.638639, -74.143751,40.638872, -74.143821,40.639017, -74.143765,40.639106, -74.143623,40.639186, -74.143371,40.639716, -74.142986,40.639632, -74.142912,40.639532, -74.14273,40.639414, -74.142522,40.639448, -74.142439,40.639556, -74.142475,40.639592, -74.14239,40.639646, -74.142478,40.640277, -74.141619,40.640424, -74.141491,40.640153, -74.141053,40.640185, -74.141109,40.640429, -74.140281,40.640675, -74.140049,40.640556, -74.139306,40.640767, -74.139039,40.640738, -74.138847,40.640809, -74.138404,40.640652, -74.138208,40.640596, -74.138061,40.640739, -74.137676,40.640845, -74.137811,40.641044, -74.137661,40.641106, -74.137489,40.640871, -74.13739,40.640906, -74.137498,40.641195, -74.134495,40.641911, -74.134502,40.641848, -74.133643,40.641743, -74.133701,40.641491, -74.132943,40.641377, -74.132811,40.641538, -74.132565,40.641518, -74.132561,40.641617, -74.131416,40.641564, -74.131575,40.641304, -74.131191,40.641166, -74.131258,40.640995, -74.13107,40.64094, -74.131042,40.640976, -74.130309,40.640736, -74.129728,40.641344, -74.129569,40.641306, -74.130001,40.640724, -74.129367,40.640431, -74.129349,40.640575, -74.128997,40.640573, -74.129076,40.641123, -74.128882,40.641158, -74.128818,40.640301, -74.128292,40.640279, -74.12829,40.640766, -74.128031,40.640781, -74.128051,40.640142, -74.127841,40.64006, -74.127628,40.640184, -74.127453,40.640101, -74.127409,40.639741, -74.127295,40.638956, -74.126942,40.638936, -74.127069,40.640261, -74.126679,40.640465, -74.126071,40.640316, -74.125958,40.64036, -74.125258,40.640319, -74.125145,40.640345, -74.12494,40.640218, -74.124589,40.640098, -74.124386,40.640186, -74.124169,40.640031, -74.123696,40.640226, -74.12349,40.640144, -74.123352,40.640557, -74.123047,40.640744, -74.122877,40.640715, -74.122813,40.64049, -74.122648,40.640507, -74.122616,40.640659, -74.122899,40.64095, -74.122817,40.641102, -74.12208,40.641286, -74.121623,40.641319, -74.12099,40.641224, -74.120733,40.64087, -74.120206,40.641145, -74.120371,40.641769, -74.120234,40.641812, -74.119981,40.641297, -74.119693,40.641331, -74.119946,40.642126, -74.119879,40.642161, -74.119518,40.641321, -74.119175,40.64139, -74.119508,40.642257, -74.119402,40.642284, -74.119019,40.641443, -74.118651,40.641485, -74.118975,40.642361, -74.118874,40.642406, -74.118492,40.641556, -74.118198,40.641626, -74.118274,40.641905, -74.118151,40.641932, -74.118036,40.641697, -74.117647,40.641829, -74.117531,40.64163, -74.117225,40.641681, -74.117542,40.642359, -74.117444,40.642404, -74.117126,40.641852, -74.11683,40.641922, -74.117293,40.642916, -74.117157,40.64296, -74.11665,40.642073, -74.11637,40.642143, -74.116779,40.643056, -74.116696,40.643083, -74.116226,40.642178, -74.11584,40.642301, -74.116256,40.643197, -74.116166,40.643232, -74.115664,40.642309, -74.115371,40.642568, -74.115684,40.64339, -74.115598,40.643416, -74.115369,40.643019, -74.11518,40.643053, -74.115066,40.642791, -74.114871,40.642906, -74.115149,40.643612, -74.11508,40.643638, -74.114764,40.642969, -74.114649,40.64304, -74.114894,40.643664, -74.114794,40.64369, -74.114512,40.643138, -74.114121,40.643216, -74.113864,40.64352, -74.114126,40.644, -74.113917,40.644043, -74.11343,40.643697, -74.112159,40.644471, -74.112025,40.644407, -74.111903,40.644469, -74.112114,40.644786, -74.112041,40.644831, -74.111855,40.64464, -74.111293,40.644969, -74.109673,40.645479, -74.108049,40.645583, -74.106113,40.645632, -74.102928,40.64567, -74.100006,40.645035, -74.098516,40.645068, -74.098378,40.645266, -74.098077,40.645227, -74.097863,40.645342, -74.097332,40.645248, -74.097127,40.645409, -74.096872,40.645353, -74.094895,40.645626, -74.092323,40.646479, -74.091233,40.646804, -74.089295,40.647554, -74.089167,40.647526, -74.088427,40.647944, -74.086429,40.64864, -74.085421,40.648839, -74.084349,40.648677, -74.082943,40.64836, -74.081831,40.648396, -74.081361,40.648528, -74.080771,40.648217, -74.079893,40.648408, -74.079162,40.648087, -74.078823,40.648165, -74.078553,40.647983, -74.077884,40.648059, -74.077812,40.647923, -74.078108,40.647853, -74.07718,40.647332, -74.075949,40.648034, -74.075633,40.647789, -74.076614,40.647157, -74.075773,40.646402, -74.075404,40.646571, -74.075302,40.646461, -74.075683,40.646203, -74.075426,40.645877, -74.074447,40.64504, -74.073367,40.645635, -74.073182,40.645859, -74.073082,40.645822, -74.073214,40.64558, -74.073552,40.645276, -74.073329,40.645149, -74.073056,40.645318, -74.073187,40.645075, -74.073041,40.645002, -74.072776,40.645153, -74.072851,40.644946, -74.072518,40.644701, -74.072216,40.644356, -74.072393,40.644294, -74.072298,40.644131, -74.072122,40.644166, -74.071997,40.643949, -74.072174,40.643896, -74.072096,40.643751, -74.07192,40.643786, -74.071824,40.64356, -74.072036,40.643481, -74.071901,40.642984, -74.070811,40.643029, -74.070796,40.642948, -74.072488,40.642673, -74.072811,40.642451, -74.072787,40.64237, -74.070688,40.642641, -74.070678,40.642515, -74.0722,40.642238, -74.072178,40.642022, -74.070391,40.642224, -74.070341,40.642044, -74.072123,40.641824, -74.071945,40.641102, -74.070112,40.641321, -74.070094,40.641105, -74.072964,40.640741, -74.07289,40.640469, -74.069844,40.640742, -74.069816,40.64058, -74.073161,40.640282, -74.073157,40.639922, -74.069761,40.640219, -74.069734,40.639939, -74.073174,40.639598, -74.073173,40.639219, -74.069696,40.639552, -74.069648,40.639281, -74.073174,40.638958, -74.073172,40.638616, -74.069655,40.638894, -74.069589,40.638335, -74.07267,40.638044, -74.072744,40.637721, -74.073526,40.637628, -74.073462,40.637222, -74.070661,40.63747, -74.070586,40.637082, -74.073352,40.636834, -74.073271,40.636076, -74.070409,40.636333, -74.070347,40.635972, -74.073204,40.635689, -74.073082,40.634876, -74.069418,40.63519, -74.06934,40.634828, -74.073054,40.634498, -74.073018,40.63393, -74.072851,40.633938, -74.072849,40.63365, -74.072956,40.633605, -74.073393,40.632158, -74.072926,40.630146, -74.069296,40.630468, -74.069169,40.629945, -74.072859,40.629542, -74.0727,40.628721, -74.069063,40.629061, -74.068884,40.6286, -74.072553,40.62817, -74.072417,40.62716, -74.069189,40.627441, -74.069142,40.627278, -74.072701,40.626856, -74.072546,40.625972, -74.068945,40.626646, -74.068907,40.626537, -74.068731,40.626572, -74.068671,40.62631, -74.072456,40.625521, -74.072211,40.625113, -74.071947,40.62449, -74.071409,40.623656, -74.070628,40.622578, -74.070027,40.621663, -74.069438,40.621064, -74.068727,40.620554, -74.067803,40.619925, -74.066719,40.619142, -74.066434,40.618842, -74.066229,40.618372, -74.066478,40.618086, -74.066263,40.617931, -74.065993,40.618108, -74.06544,40.617699, -74.063793,40.616721, -74.062975,40.615904, -74.061968,40.614941, -74.061221,40.614124, -74.060648,40.613119, -74.060636,40.612308, -74.060159,40.611791, -74.059775,40.61168, -74.059367,40.611542, -74.058959,40.610935, -74.058972,40.610827, -74.059074,40.610765, -74.059041,40.610674, -74.058893,40.610475, -74.057762,40.609376, -74.056965,40.60854, -74.056639,40.607502, -74.055839,40.606585, -74.055288,40.606365, -74.054773,40.606135, -74.053706,40.605775, -74.05356,40.605062, -74.053843,40.604785, -74.053387,40.603403, -74.053245,40.602546, -74.052765,40.60129, -74.053183,40.60069, -74.053278,40.600411, -74.052776,40.600092, -74.052343,40.599926, -74.052183,40.599835, -74.052206,40.599727, -74.052467,40.59972, -74.052768,40.599822, -74.052966,40.599796, -74.053661,40.599451, -74.054461,40.598908, -74.057177,40.596533, -74.059547,40.5944, -74.059822,40.594051, -74.059719,40.593789, -74.059663,40.593707, -74.060223,40.593342, -74.062155,40.591898, -74.063053,40.590861, -74.064412,40.589655, -74.064872,40.588992, -74.064898,40.588822, -74.064616,40.588639, -74.064616,40.588531, -74.06509,40.588391, -74.066962,40.586794, -74.068322,40.585354, -74.070684,40.582968, -74.071079,40.582187, -74.071329,40.581892, -74.072429,40.581081, -74.074181,40.579555, -74.078639,40.575518, -74.078835,40.575456, -74.078935,40.575575, -74.079266,40.575568, -74.079975,40.575268, -74.08126,40.574278, -74.083664,40.572234, -74.085547,40.570348, -74.086581,40.568924, -74.087265,40.569254, -74.087727,40.569122, -74.089116,40.567854, -74.090001,40.567068, -74.090777,40.566461, -74.093006,40.563903, -74.094458,40.562643, -74.095464,40.562318, -74.095626,40.562229, -74.095878,40.562006, -74.096357,40.561019, -74.096624,40.560579, -74.09684,40.560356, -74.097005,40.559997, -74.097778,40.559156, -74.097859,40.559013, -74.098888,40.559525, -74.100021,40.559192, -74.100227,40.559211, -74.100527,40.559169, -74.100695,40.559089, -74.101375,40.55849, -74.10229,40.557083, -74.10239,40.556696, -74.102435,40.556265, -74.1024,40.556156, -74.101179,40.555597, -74.101248,40.555517, -74.102435,40.556076, -74.103187,40.555514, -74.103487,40.555002, -74.103657,40.554751, -74.104171,40.554134, -74.104346,40.55373, -74.104562,40.553443, -74.104786,40.553049, -74.104912,40.553023, -74.105053,40.553077, -74.105103,40.55315, -74.106429,40.553908, -74.10636,40.554097, -74.106645,40.554135, -74.107082,40.554021, -74.107585,40.553845, -74.109063,40.552703, -74.109464,40.552427, -74.109959,40.551908, -74.110454,40.551344, -74.11085,40.550717, -74.111045,40.550485, -74.111684,40.549417, -74.112071,40.548708, -74.112443,40.548198, -74.112807,40.547849, -74.113255,40.548168, -74.113674,40.548081, -74.113788,40.548181, -74.114906,40.548027, -74.114973,40.547965, -74.115083,40.547777, -74.115276,40.547598, -74.115441,40.547518, -74.116182,40.54737, -74.116474,40.547193, -74.117121,40.546639, -74.117792,40.545968, -74.118702,40.544795, -74.119092,40.544537, -74.119423,40.54445, -74.119625,40.544361, -74.119858,40.544327, -74.120139,40.544158, -74.120438,40.543655, -74.120661,40.543549, -74.121196,40.543499, -74.121682,40.543593, -74.122103,40.543713, -74.122311,40.543706, -74.122537,40.543563, -74.122949,40.543188, -74.1235,40.54258, -74.12459,40.541453, -74.124703,40.541381, -74.125172,40.540908, -74.126452,40.539548, -74.127515,40.53852, -74.128315,40.537616, -74.128599,40.53724, -74.129048,40.53673, -74.129571,40.535995, -74.130511,40.534912, -74.130971,40.534474, -74.131814,40.533904, -74.132702,40.533226, -74.132981,40.532787, -74.133545,40.532079, -74.133787,40.531811, -74.135245,40.530722, -74.135653,40.530284, -74.136302,40.52973, -74.136658,40.52958, -74.137112,40.529421, -74.140239,40.533588, -74.13984,40.534766, -74.139737,40.53499, -74.139587,40.535088, -74.139365,40.535158, -74.138888,40.535155, -74.137623,40.535191, -74.13602,40.535178, -74.134265,40.5354, -74.133218,40.535995, -74.128124,40.540606, -74.127867,40.540973, -74.127433,40.542015, -74.127712,40.543134, -74.128515,40.544356, -74.129262,40.545209, -74.129284,40.545281, -74.12942,40.545309, -74.130484,40.546028, -74.131873,40.546498, -74.13336,40.54678, -74.134932,40.546674, -74.136375,40.546235, -74.136447,40.546173, -74.136506,40.546074, -74.136616,40.545814, -74.136703,40.545778, -74.136785,40.545806, -74.136842,40.54586, -74.137067,40.545943, -74.137242,40.545962, -74.137297,40.545944, -74.137172,40.54579, -74.137317,40.54571, -74.137471,40.545649, -74.137617,40.545785, -74.137672,40.545641, -74.137656,40.545488, -74.137816,40.545408, -74.137983,40.5454, -74.138185,40.545438, -74.138445,40.545295, -74.138713,40.545126, -74.138916,40.545218, -74.138848,40.545055, -74.138907,40.544966, -74.139535,40.544466, -74.13951,40.544322, -74.140104,40.543857, -74.140678,40.544312, -74.140815,40.544205, -74.140511,40.543978, -74.140642,40.543871, -74.14049,40.543779, -74.140584,40.543681, -74.140252,40.543426, -74.140491,40.543212, -74.140705,40.543375, -74.140824,40.543277, -74.140609,40.543123, -74.140863,40.542917, -74.141034,40.543035, -74.141113,40.542973, -74.141659,40.543347, -74.141762,40.543257, -74.141483,40.543084, -74.141428,40.542949, -74.14117,40.542766, -74.141299,40.542704, -74.141666,40.542968, -74.141759,40.542906, -74.141613,40.542797, -74.141698,40.542725, -74.141395,40.542498, -74.141606,40.542355, -74.141893,40.542582, -74.142185,40.542368, -74.142329,40.542135, -74.142367,40.541829, -74.142343,40.541622, -74.142501,40.54138, -74.142531,40.541272, -74.142319,40.540883, -74.141269,40.540461, -74.141331,40.540353, -74.141822,40.540528, -74.141862,40.540483, -74.142023,40.540547, -74.141996,40.540601, -74.142155,40.540675, -74.142128,40.54044, -74.141803,40.540032, -74.142182,40.539702, -74.142202,40.539603, -74.142123,40.539485, -74.142064,40.539341, -74.142138,40.539242, -74.142371,40.539217, -74.14246,40.539181, -74.142415,40.5391, -74.142269,40.538991, -74.142316,40.538928, -74.14179,40.538518, -74.141824,40.538384, -74.140681,40.537628, -74.1408,40.537529, -74.141949,40.538277, -74.142076,40.53816, -74.142165,40.538044, -74.142176,40.537963, -74.142095,40.537863, -74.141433,40.53739, -74.141553,40.537301, -74.142227,40.537783, -74.142498,40.537632, -74.142025,40.537286, -74.142139,40.537197, -74.142522,40.53747, -74.142972,40.537374, -74.14341,40.537152, -74.143786,40.536912, -74.144234,40.536573, -74.144597,40.535693, -74.144711,40.535612, -74.144829,40.535577, -74.14494,40.535677, -74.14501,40.535777, -74.145221,40.535841, -74.145392,40.535762, -74.145584,40.535619, -74.145706,40.535593, -74.14602,40.535613, -74.147083,40.53536, -74.148058,40.534899, -74.148651,40.534569, -74.149419,40.534008, -74.14995,40.53357, -74.149737,40.533334, -74.150044,40.533102, -74.150286,40.532897, -74.150677,40.53244, -74.151244,40.532715, -74.151305,40.532688, -74.152399,40.531985, -74.153439,40.531091, -74.154512,40.530108, -74.154637,40.53001, -74.15486,40.530138, -74.155095,40.530031, -74.155402,40.529808, -74.155602,40.529494, -74.155729,40.529432, -74.156011,40.529227, -74.156437,40.528699, -74.156819,40.529026, -74.157336,40.528913, -74.157604,40.528815, -74.157993,40.52853, -74.158238,40.528252, -74.158432,40.528191, -74.159252,40.527674, -74.159589,40.527406, -74.159667,40.52738, -74.159923,40.527508, -74.16034,40.527529, -74.161,40.52739, -74.161773,40.527017, -74.16198,40.527018, -74.162121,40.52711, -74.162299,40.527129, -74.162493,40.527085, -74.163098,40.526756, -74.163802,40.526347, -74.163956,40.526177, -74.164394,40.52609, -74.164543,40.526001, -74.164694,40.525858, -74.165148,40.525636, -74.165377,40.525476, -74.165505,40.525441, -74.165683,40.525459, -74.16592,40.525381, -74.166085,40.525256, -74.166253,40.525167, -74.169177,40.523359, -74.169642,40.523227, -74.169995,40.523076, -74.170185,40.522979, -74.170378,40.522989, -74.170631,40.523054, -74.170944,40.523182, -74.171282,40.523256, -74.171804,40.523179, -74.172698,40.522771, -74.174073,40.52207, -74.175702,40.520991, -74.177637,40.519383, -74.177761,40.519384, -74.177917,40.51961, -74.178102,40.519837, -74.178323,40.519892, -74.178727,40.519788, -74.179037,40.519673, -74.179192,40.519655, -74.179276,40.519863, -74.17937,40.519891, -74.179486,40.520126, -74.17967,40.520353, -74.179993,40.520418, -74.180611,40.520386, -74.181399,40.520184, -74.181715,40.520025, -74.181763,40.520088, -74.182524,40.519967, -74.182708,40.519869, -74.182904,40.519718, -74.183051,40.519854, -74.183421,40.519749, -74.183826,40.519598, -74.183976,40.519482, -74.184015,40.519365, -74.184133,40.519366, -74.184273,40.51943, -74.184632,40.519441, -74.185116,40.519166, -74.185954,40.518469, -74.186917,40.517764, -74.188056,40.516646, -74.188921,40.515643, -74.189213,40.51524, -74.189453,40.51535, -74.190174,40.514679, -74.19099,40.513649, -74.191451,40.512994, -74.191877,40.512646, -74.192335,40.512036, -74.192471,40.512002, -74.193026,40.511951, -74.193531,40.51154, -74.193823,40.511065, -74.194193,40.510635, -74.194825,40.510189, -74.19586,40.509989, -74.196434,40.510119, -74.196556,40.509958, -74.196664,40.510022, -74.196568,40.510183, -74.197205,40.510584, -74.198111,40.511212, -74.198758,40.511468, -74.199378,40.511581, -74.199782,40.511701, -74.199931,40.51209, -74.199854,40.512224, -74.199702,40.512241, -74.199597,40.512177, -74.199403,40.511923, -74.199288,40.51195, -74.199218,40.512345, -74.199282,40.512553, -74.199541,40.512528, -74.199878,40.512458, -74.200004,40.512504, -74.200083,40.512586, -74.199911,40.512684, -74.199328,40.512788, -74.199453,40.512942, -74.199792,40.512989, -74.20025,40.512921, -74.200582,40.512797, -74.203371,40.512528, -74.204213,40.512371, -74.204956,40.512277, -74.205259,40.512351, -74.205683,40.512282, -74.206593,40.512063, -74.207189,40.511986, -74.208121,40.51174, -74.209171,40.51127, -74.20987,40.510833, -74.21038,40.510377, -74.210662,40.509956, -74.21076,40.50974, -74.21104,40.509301, -74.212496,40.507464, -74.213411,40.506776, -74.214519,40.506423, -74.215081,40.506004, -74.215607,40.505404, -74.215978,40.504893, -74.216297,40.504607, -74.217207,40.503487, -74.217446,40.503227, -74.217737,40.50322, -74.21827,40.503035, -74.21914,40.502761, -74.219475,40.502673, -74.21963,40.502666, -74.220233,40.502678, -74.220885,40.502656, -74.221566,40.502471, -74.222107,40.50261, -74.22236,40.502594, -74.22329,40.502132, -74.223885,40.501874, -74.224138,40.50175, -74.224454,40.501491, -74.224769,40.501286, -74.224827,40.501268, -74.224878,40.501304, -74.224955,40.501404, -74.22516,40.501514, -74.226273,40.50171, -74.227333,40.502032, -74.227739,40.502062, -74.228638,40.50223, -74.22895,40.502187, -74.229244,40.502262, -74.22952,40.502272, -74.229984,40.502032, -74.230211,40.501854, -74.230295,40.501818, -74.230383,40.501863, -74.230483,40.501927, -74.230664,40.501938, -74.232271,40.501471, -74.232759,40.501267, -74.233455,40.50092, -74.233779,40.50094, -74.233975,40.500887, -74.234262,40.500889, -74.234817,40.500659, -74.235263,40.500445, -74.235508,40.500447, -74.235784,40.500422, -74.236508,40.500021, -74.237015,40.499809, -74.237374,40.499622, -74.2376,40.499416, -74.237897,40.499075, -74.238413,40.498556, -74.238895,40.498208, -74.239623,40.497465, -74.239826,40.497377, -74.24013,40.49737, -74.240809,40.497482, -74.241341,40.497513, -74.241712,40.49747, -74.24285,40.497261, -74.243704,40.497168, -74.24415,40.497144, -74.244679,40.497012, -74.24535,40.4968, -74.245893,40.496525, -74.246162,40.496337, -74.246463,40.496096, -74.246779,40.496025, -74.247122,40.496001, -74.247394,40.496074, -74.247553,40.496175, -74.247642,40.496166, -74.248243,40.496386, -74.248691,40.496659, -74.2489,40.496706, -74.2491,40.496788, -74.249222,40.496924, -74.249437,40.497241, -74.249676,40.497477, -74.24981,40.497559, -74.250198,40.49775, -74.250535,40.49796, -74.250658,40.498177, -74.250905,40.498503, -74.251255,40.498739, -74.251596,40.49885, -74.251929,40.498906, -74.252418,40.499125, -74.2527,40.499397, -74.252814,40.499705, -74.253086,40.500598, -74.254193,40.502173, -74.254418,40.502651, -74.254736,40.503194, -74.254971,40.503854, -74.255178,40.504098, -74.255251,40.504296, -74.25519,40.504575, -74.255121,40.504773, -74.2551,40.505223, -74.255136,40.506242, -74.25523,40.507243, -74.255354,40.507396, -74.255511,40.507478, -74.255694,40.507605, -74.255761,40.507786, -74.25553,40.508154, -74.255661,40.508254, -74.255566,40.508362, -74.254899,40.508475, -74.254721,40.508455, -74.254423,40.508742, -74.253925,40.509342, -74.253406,40.509924, -74.253343,40.510131, -74.253084,40.511418, -74.253135,40.511986, -74.253267,40.51222, -74.251875,40.513086, -74.252353,40.513602, -74.251853,40.513905, -74.252008,40.514104, -74.251943,40.514149, -74.252124,40.514339, -74.251977,40.514419, -74.251764,40.51422, -74.25146,40.514209, -74.251226,40.514307, -74.250786,40.514682, -74.250079,40.515137, -74.250174,40.515291, -74.24983,40.51546, -74.249415,40.515061, -74.249162,40.515203, -74.249648,40.515684, -74.248152,40.51653, -74.247691,40.516076, -74.247381,40.515813, -74.247484,40.516102, -74.247429,40.516147, -74.247286,40.515921, -74.247194,40.51592, -74.247052,40.515955, -74.24693,40.515963, -74.246826,40.515944, -74.246688,40.515926, -74.246079,40.516255, -74.246517,40.516709, -74.245088,40.517402, -74.245843,40.518226, -74.245653,40.518352, -74.245479,40.518215, -74.245277,40.518304, -74.245063,40.51823, -74.245017,40.51823, -74.244957,40.518455, -74.244946,40.518491, -74.244886,40.518472, -74.244772,40.518382, -74.244521,40.518506, -74.244659,40.518723, -74.244463,40.518821, -74.244209,40.51872, -74.244022,40.518674, -74.243817,40.518519, -74.243582,40.518428, -74.242896,40.518387, -74.242317,40.518563, -74.241988,40.518841, -74.241883,40.519003, -74.242133,40.519247, -74.242043,40.51931, -74.241833,40.519146, -74.241792,40.519317, -74.241614,40.519424, -74.24138,40.519494, -74.241388,40.519576, -74.241445,40.519648, -74.24149,40.519675, -74.241498,40.519802, -74.241545,40.519901, -74.241821,40.519894, -74.241905,40.519948, -74.241822,40.520326, -74.241919,40.520552, -74.241903,40.520624, -74.241753,40.520722, -74.241537,40.520721, -74.241317,40.520683, -74.241211,40.520619, -74.24133,40.520566, -74.241333,40.520521, -74.241208,40.520385, -74.241238,40.519953, -74.241022,40.519483, -74.240837,40.519473, -74.240728,40.519616, -74.240574,40.519643, -74.239943,40.520044, -74.239911,40.520259, -74.240127,40.520405, -74.24032,40.52047, -74.240581,40.520507, -74.240769,40.520653, -74.240861,40.520887, -74.240965,40.521068, -74.241172,40.521097, -74.241409,40.521035, -74.241721,40.521091, -74.242058,40.521021, -74.242256,40.521032, -74.242485,40.521114, -74.243119,40.521191, -74.24314,40.521236, -74.242853,40.521567, -74.242791,40.521684, -74.242687,40.521998, -74.242473,40.522132, -74.242487,40.522249, -74.24257,40.522376, -74.242586,40.522637, -74.24246,40.522907, -74.242434,40.523042, -74.242516,40.523358, -74.242478,40.523447, -74.24242,40.523501, -74.242443,40.523556, -74.242525,40.523601, -74.242721,40.523602, -74.242857,40.523694, -74.242961,40.52418, -74.243138,40.524614, -74.243525,40.524923, -74.243758,40.525186, -74.243519,40.525337, -74.243423,40.52558, -74.243336,40.526021, -74.243114,40.526686, -74.242973,40.52728, -74.242667,40.528295, -74.242594,40.528421, -74.24227,40.529338, -74.241823,40.530398, -74.241532,40.531054, -74.241384,40.531323, -74.241443,40.531477, -74.241589,40.53164, -74.241645,40.531793, -74.241608,40.532045, -74.241626,40.532162, -74.241703,40.532271, -74.241755,40.532425, -74.241729,40.53255, -74.242116,40.532562, -74.242119,40.532877, -74.242239,40.532896, -74.242324,40.53332, -74.24221,40.533491, -74.240101,40.533351, -74.24009,40.533504, -74.241892,40.533642, -74.241975,40.534525, -74.24218,40.534725, -74.24254,40.534997, -74.24268,40.535296, -74.242698,40.535485, -74.243147,40.535686, -74.243623,40.536085, -74.243826,40.536375, -74.243841,40.53688, -74.244057,40.537106, -74.244295,40.537162, -74.244631,40.536885, -74.245106,40.536726, -74.245356,40.536934, -74.245402,40.537088, -74.245231,40.537222, -74.244638,40.537551, -74.244504,40.537776, -74.24431,40.538009, -74.244464,40.538803, -74.244658,40.539056, -74.24469,40.538966, -74.244669,40.538858, -74.244778,40.53884, -74.245083,40.539059, -74.245422,40.539628, -74.24566,40.540504, -74.245752,40.540757, -74.245753,40.540946, -74.24594,40.541199, -74.246182,40.541615, -74.246333,40.542076, -74.246458,40.542329, -74.246628,40.542411, -74.247734,40.543283, -74.246223,40.545571, -74.243595,40.547635, -74.242475,40.546772, -74.241987,40.547003, -74.241689,40.547198, -74.241402,40.547332, -74.240997,40.547329, -74.240833,40.547382, -74.239263,40.548579, -74.238979,40.548865, -74.238798,40.549099, -74.238533,40.549187, -74.23807,40.549481, -74.237794,40.549902, -74.237627,40.550217, -74.237523,40.550252, -74.237398,40.550216, -74.236483,40.550551, -74.236166,40.550946, -74.236025,40.551233, -74.236188,40.551603, -74.236649,40.552111, -74.236618,40.5523, -74.236437,40.552533, -74.235687,40.552915, -74.235007,40.5531, -74.234617,40.553008, -74.234258,40.55278, -74.234027,40.552581, -74.233758,40.55248, -74.233143,40.552818, -74.232825,40.55296, -74.232301,40.553398, -74.23195,40.553747, -74.231761,40.554025, -74.231752,40.554304, -74.231233,40.554751, -74.230749,40.55509, -74.229809,40.55548, -74.229291,40.555549, -74.228671,40.555815, -74.228362,40.555984, -74.228042,40.556054, -74.227457,40.555924, -74.22716,40.555967, -74.226827,40.556082, -74.226423,40.556142, -74.226299,40.556268, -74.226277,40.556357, -74.225411,40.556208, -74.225355,40.556063, -74.225031,40.556007, -74.224938,40.556114, -74.223148,40.555814, -74.223178,40.555382, -74.222766,40.555244, -74.222115,40.555095, -74.221481,40.555001, -74.220895,40.555024, -74.220516,40.55495, -74.220186,40.554767, -74.219689,40.554602, -74.219192,40.554608, -74.218854,40.554659, -74.218707,40.554802, -74.218609,40.554846, -74.218492,40.554702, -74.218379,40.554494, -74.218236,40.554367, -74.218244,40.554493, -74.218312,40.55461, -74.21829,40.554664, -74.218177,40.554619, -74.218155,40.554726, -74.21732,40.554991, -74.217263,40.554927, -74.216217,40.555326, -74.215632,40.555737, -74.215516,40.555916, -74.215425,40.555987, -74.215177,40.555922, -74.214989,40.55593, -74.214857,40.555974, -74.214596,40.55599, -74.214389,40.555953, -74.214302,40.555952, -74.214283,40.556241, -74.213927,40.556365, -74.213684,40.556291, -74.213496,40.556136, -74.213434,40.556361, -74.213202,40.556486, -74.213019,40.556629, -74.212819,40.557015, -74.212519,40.557165, -74.212429,40.557318, -74.212334,40.557588, -74.212192,40.557632, -74.212101,40.557803, -74.211841,40.557981, -74.211611,40.558556, -74.211654,40.559069, -74.211386,40.559518, -74.211068,40.559912, -74.2109,40.560073, -74.210739,40.560081, -74.210598,40.560108, -74.21049,40.560215, -74.210489,40.560296, -74.210649,40.560405, -74.210728,40.560613, -74.210916,40.561335, -74.211239,40.561878, -74.211383,40.562311, -74.211423,40.562545, -74.211427,40.562572, -74.211431,40.562591, -74.211491,40.563185, -74.211483,40.563609, -74.211198,40.564093, -74.211054,40.564291, -74.211065,40.564597, -74.210921,40.564758, -74.210967,40.564993, -74.210786,40.565505, -74.209744,40.567678, -74.20916,40.568737, -74.208887,40.568726, -74.208767,40.568689, -74.20866,40.568463, -74.208848,40.567636, -74.208796,40.567473, -74.208436,40.567398, -74.207426,40.567284, -74.207227,40.567355, -74.207303,40.567598, -74.208368,40.567804, -74.20824,40.567911, -74.208024,40.567927, -74.20754,40.567915, -74.206976,40.567848, -74.206779,40.567928, -74.20674,40.568108, -74.206971,40.568335, -74.207659,40.56861, -74.208299,40.568794, -74.20893,40.569014, -74.208917,40.569249, -74.208518,40.57021, -74.208253,40.57056, -74.207209,40.571021, -74.206894,40.571442, -74.206702,40.571549, -74.206387,40.571646, -74.205867,40.571742, -74.2046,40.571787, -74.204354,40.571839, -74.204049,40.571729, -74.203876,40.571809, -74.203598,40.571906, -74.203229,40.571939, -74.202933,40.571901, -74.202803,40.571955, -74.202614,40.572106, -74.201801,40.572137, -74.201268,40.572394, -74.200579,40.572858, -74.199654,40.573131, -74.199486,40.57322, -74.199265,40.573669, -74.199093,40.573875, -74.198824,40.573909, -74.198606,40.573817, -74.19852,40.573853, -74.19878,40.573962, -74.19884,40.574062, -74.19884,40.574278, -74.198541,40.574979, -74.198379,40.576131, -74.198323,40.576293, -74.198234,40.57631, -74.198059,40.576237, -74.197919,40.576362, -74.197985,40.576615, -74.198263,40.576941, -74.198408,40.577167, -74.198307,40.577158, -74.198301,40.577274, -74.198421,40.577492, -74.198279,40.577878, -74.198049,40.578084, -74.197737,40.578109, -74.197257,40.577961, -74.196607,40.577668, -74.196089,40.577349, -74.19565,40.577283, -74.19507,40.577324, -74.192839,40.576453, -74.192828,40.576336, -74.19262,40.57619, -74.19221,40.576052, -74.191957,40.575942, -74.191599,40.575814, -74.19131,40.575856, -74.191116,40.576026, -74.190912,40.576169, -74.19072,40.576267, -74.190425,40.576364, -74.189177,40.576517, -74.188618,40.576658, -74.187826,40.57676, -74.186819,40.576573, -74.186037,40.576045, -74.185326,40.574995, -74.184322,40.57388, -74.183469,40.573243, -74.18343,40.57318, -74.183975,40.57303, -74.183752,40.57293, -74.183422,40.573081, -74.183002,40.573023, -74.182055,40.572719, -74.180741,40.57226, -74.179403,40.57171, -74.17842,40.571045, -74.177594,40.570229, -74.177198,40.569424, -74.176931,40.568692, -74.176514,40.568122, -74.176353,40.567625, -74.176108,40.567173, -74.175753,40.566927, -74.175154,40.566562, -74.174869,40.56629, -74.174405,40.566053, -74.173923,40.565932, -74.173372,40.565703, -74.172918,40.56561, -74.172715,40.565825, -74.172061,40.565982, -74.171664,40.566123, -74.171567,40.566348, -74.171209,40.566345, -74.170972,40.566398, -74.170869,40.566388, -74.170671,40.56626, -74.170557,40.566214, -74.170411,40.566186, -74.17015,40.566022, -74.169271,40.566034, -74.168842,40.566112, -74.168152,40.566305, -74.168052,40.566404, -74.167959,40.566466, -74.167854,40.56642, -74.16764,40.566392, -74.167518,40.566472, -74.166965,40.566468, -74.166412,40.566653, -74.165406,40.566934, -74.165229,40.567077, -74.16515,40.567437, -74.164955,40.567867, -74.164637,40.568091, -74.164384,40.56817, -74.163866,40.568473, -74.163573,40.56866, -74.163142,40.568764, -74.162358,40.568984, -74.161941,40.569035, -74.161243,40.569075, -74.159675,40.568857, -74.158352,40.569072, -74.157777,40.569014, -74.157468,40.56912, -74.157628,40.569553, -74.157795,40.569951, -74.158003,40.569718, -74.15857,40.569677, -74.159254,40.569664, -74.159828,40.569488, -74.160361,40.569528, -74.160727,40.569495, -74.161218,40.569606, -74.162187,40.569542, -74.163323,40.569153, -74.164101,40.568817, -74.164779,40.568596, -74.1652,40.568545, -74.165301,40.568519, -74.165496,40.568142, -74.165761,40.567855, -74.166145,40.567588, -74.166707,40.567304, -74.168257,40.56709, -74.16872,40.566895, -74.169153,40.566799, -74.169915,40.566877, -74.170077,40.567058, -74.170295,40.567195, -74.171322,40.567265, -74.172747,40.567131, -74.173869,40.566815, -74.174549,40.566999, -74.175001,40.567418, -74.17539,40.567906, -74.175523,40.568349, -74.175744,40.568882, -74.175833,40.569342, -74.175822,40.569666, -74.175889,40.569937, -74.176232,40.570183, -74.176517,40.570599, -74.176811,40.570899, -74.177074,40.57109, -74.177195,40.571315, -74.178244,40.571989, -74.178448,40.572253, -74.178563,40.572298, -74.178787,40.572291, -74.179208,40.572555, -74.179218,40.572708, -74.179824,40.572857, -74.180259,40.573067, -74.181075,40.573253, -74.182061,40.57362, -74.183255,40.574178, -74.183869,40.575101, -74.18415,40.575518, -74.184527,40.576097, -74.184896,40.576469, -74.185141,40.576714, -74.185077,40.576867, -74.184754,40.576901, -74.18394,40.576787, -74.182883,40.576816, -74.181984,40.576782, -74.18148,40.576805, -74.180827,40.577026, -74.180274,40.577491, -74.179695,40.578108, -74.179137,40.578807, -74.17875,40.579056, -74.178787,40.579219, -74.178399,40.579369, -74.178023,40.578772, -74.177527,40.578984, -74.1781,40.580178, -74.178319,40.580873, -74.178734,40.582164, -74.179314,40.582853, -74.179739,40.583117, -74.180223,40.583643, -74.181011,40.584316, -74.181214,40.584758, -74.18141,40.585138, -74.181339,40.585408, -74.181304,40.585714, -74.180616,40.586078, -74.179925,40.586127, -74.179149,40.586338, -74.178849,40.586804, -74.179043,40.586986, -74.179511,40.587034, -74.179849,40.587028, -74.179893,40.587289, -74.179456,40.587655, -74.178976,40.587931, -74.17869,40.588254, -74.17833,40.588224, -74.177546,40.58839, -74.177424,40.588569, -74.177073,40.588665, -74.176872,40.588673, -74.176664,40.589041, -74.17586,40.589495, -74.175618,40.589862, -74.175036,40.590146, -74.174072,40.590293, -74.173274,40.590206, -74.173196,40.590557, -74.173421,40.590883, -74.173814,40.590759, -74.174194,40.590744, -74.175023,40.590804, -74.175633,40.590782, -74.176131,40.590677, -74.176371,40.590399, -74.176887,40.589871, -74.177305,40.589622, -74.177736,40.589544, -74.178215,40.589503, -74.178612,40.589298, -74.178914,40.589354, -74.179157,40.58969, -74.17942,40.589862, -74.179717,40.590144, -74.179932,40.590443, -74.179977,40.590722, -74.180149,40.591066, -74.18007,40.591345, -74.180139,40.591633, -74.180118,40.592111, -74.179982,40.592731, -74.180593,40.592672, -74.181075,40.592126, -74.181279,40.591804, -74.1814,40.591318, -74.181141,40.590712, -74.180827,40.590107, -74.180387,40.589437, -74.180172,40.588877, -74.180061,40.588363, -74.180413,40.58805, -74.181364,40.587552, -74.181988,40.586764, -74.182512,40.58638, -74.182865,40.586193, -74.182941,40.586086, -74.183019,40.585852, -74.183023,40.585501, -74.182988,40.585329, -74.183137,40.585105, -74.183125,40.584799, -74.183044,40.584465, -74.182722,40.583805, -74.18227,40.583415, -74.181955,40.582845, -74.181424,40.582165, -74.180906,40.581639, -74.180216,40.580823, -74.179979,40.580182, -74.180039,40.579714, -74.1804,40.578978, -74.180884,40.578504, -74.181397,40.578111, -74.181925,40.57788, -74.182805,40.577797, -74.183357,40.577972, -74.184126,40.577959, -74.185178,40.577985, -74.185651,40.578123, -74.186149,40.57837, -74.186651,40.5784, -74.187432,40.578271, -74.187948,40.578257, -74.188452,40.578097, -74.189387,40.577699, -74.190259,40.577507, -74.190998,40.577395, -74.191767,40.577418, -74.192231,40.577611, -74.193509,40.578683, -74.194044,40.579029, -74.194118,40.579119, -74.194091,40.579182, -74.194225,40.579309, -74.194404,40.579346, -74.194465,40.579275, -74.194671,40.57933, -74.195132,40.57955, -74.195695,40.579788, -74.196422,40.579883, -74.197621,40.579918, -74.198296,40.579806, -74.198994,40.579748, -74.199054,40.579775, -74.198909,40.579864, -74.199107,40.579857, -74.199506,40.579787, -74.200439,40.579812, -74.201134,40.579862, -74.201578,40.579982, -74.202716,40.580215, -74.20316,40.580263, -74.203706,40.580141, -74.204304,40.580172, -74.204639,40.580174, -74.20458,40.580057, -74.2049,40.57996, -74.205503,40.579712, -74.205768,40.579677, -74.205969,40.579769, -74.206,40.579976, -74.20586,40.580192, -74.205798,40.58056, -74.205647,40.580884, -74.205505,40.581027, -74.205208,40.581052, -74.205088,40.581412, -74.205283,40.581476, -74.205082,40.581672, -74.205069,40.581835, -74.205162,40.581925, -74.205042,40.582321, -74.20472,40.58267, -74.204807,40.582806, -74.204729,40.583085, -74.204601,40.583318, -74.204624,40.583489, -74.204229,40.583676, -74.204459,40.583803, -74.204539,40.584011, -74.205373,40.583827, -74.205416,40.583936, -74.204821,40.584058, -74.204798,40.584202, -74.204457,40.584731, -74.204421,40.584911, -74.20456,40.585164, -74.204603,40.585327, -74.204188,40.58572, -74.204282,40.585991, -74.204155,40.586288, -74.204344,40.586766, -74.204258,40.587027, -74.204454,40.587335, -74.204399,40.587631, -74.204694,40.587805, -74.204632,40.588255, -74.204237,40.588487, -74.204172,40.58854, -74.204123,40.588828, -74.204368,40.588893, -74.20449,40.588749, -74.204599,40.588849, -74.204406,40.589271, -74.2045,40.589326, -74.204129,40.590098, -74.203964,40.590034, -74.204048,40.589701, -74.203898,40.589655, -74.203638,40.589644, -74.203445,40.58976, -74.203107,40.589947, -74.202928,40.590099, -74.202728,40.590368, -74.202499,40.590538, -74.202247,40.590581, -74.201166,40.590411, -74.201044,40.59041, -74.201109,40.590492, -74.201412,40.590602, -74.201679,40.590694, -74.201967,40.590804, -74.202421,40.590753, -74.202643,40.590818, -74.202904,40.591, -74.202796,40.591107, -74.202356,40.590879, -74.202068,40.590859, -74.202033,40.591039, -74.20171,40.591252, -74.201842,40.591713, -74.201149,40.592654, -74.20094,40.592662, -74.200867,40.592355, -74.200629,40.592236, -74.200407,40.592316, -74.200379,40.592631, -74.200272,40.592954, -74.199936,40.593483, -74.1996,40.593724, -74.199471,40.593976, -74.19943,40.594228, -74.198927,40.59463, -74.19854,40.594825, -74.19819,40.595255, -74.198119,40.595714, -74.197907,40.59628, -74.197794,40.596631, -74.197678,40.596756, -74.197364,40.597474, -74.197282,40.597699, -74.197161,40.597923, -74.197182,40.598275, -74.197167,40.598392, -74.19692,40.598489, -74.19695,40.599138, -74.197052,40.599716, -74.196987,40.600328, -74.196761,40.60047, -74.196824,40.600732, -74.196782,40.600894, -74.196615,40.601028, -74.196609,40.601172, -74.196523,40.601297, -74.196393,40.601341, -74.196289,40.601404, -74.196061,40.601907, -74.196099,40.602078, -74.196352,40.602134, -74.196273,40.60226, -74.196016,40.602231, -74.19592,40.602564, -74.196039,40.602726, -74.196001,40.603113, -74.196048,40.603456, -74.196799,40.605227, -74.197027,40.605265, -74.197227,40.605581, -74.197251,40.60578, -74.197438,40.605952, -74.197685,40.606342, -74.197976,40.606623, -74.198387,40.606914, -74.198472,40.607518, -74.198221,40.608579, -74.197935,40.60928, -74.19733,40.609924, -74.197259,40.60996, -74.197139,40.609905, -74.196996,40.609706, -74.196769,40.609461, -74.196345,40.609179, -74.195846,40.609004, -74.196115,40.609411, -74.196557,40.609595, -74.196916,40.609958, -74.197005,40.610166, -74.196922,40.610345, -74.196691,40.610595, -74.196367,40.611008, -74.195964,40.611609, -74.195621,40.612363, -74.195624,40.613084, -74.19555,40.613489, -74.195472,40.613713, -74.195291,40.613802, -74.195042,40.613818, -74.194625,40.613978, -74.194938,40.614007, -74.195343,40.614, -74.195583,40.614047, -74.195721,40.614165, -74.195734,40.614336, -74.195701,40.61457, -74.19584,40.614607, -74.196012,40.614627, -74.196034,40.614762, -74.196058,40.615402, -74.195917,40.615536, -74.195776,40.615571, -74.195587,40.615741, -74.195382,40.616073, -74.194874,40.616475, -74.19523,40.616423, -74.195495,40.616344, -74.195603,40.616065, -74.195933,40.615725, -74.196288,40.615637, -74.19658,40.615594, -74.196748,40.615722, -74.196934,40.615885, -74.198717,40.616691, -74.199497,40.616795, -74.200517,40.616901, -74.200759,40.617597, -74.20079,40.61793, -74.200618,40.617893, -74.20057,40.61782, -74.200463,40.617774, -74.200392,40.617882, -74.200399,40.61799, -74.200587,40.618253, -74.200647,40.618272, -74.200712,40.618182, -74.200844,40.618219, -74.200888,40.61839, -74.200799,40.618552, -74.200845,40.618651, -74.200854,40.619038, -74.200789,40.619128, -74.200773,40.619353, -74.200898,40.619543, -74.201045,40.619977, -74.201021,40.620247, -74.200905,40.620309, -74.20079,40.62029, -74.200561,40.620199, -74.200452,40.620117, -74.200365,40.620134, -74.200438,40.620351, -74.200296,40.620431, -74.200238,40.620494, -74.200295,40.62053, -74.200411,40.620477, -74.200639,40.620415, -74.201067,40.620527, -74.201156,40.620824, -74.201159,40.621059, -74.201236,40.621311, -74.201268,40.621618, -74.201134,40.622193, -74.20119,40.622338, -74.201196,40.62259, -74.201319,40.622925, -74.201289,40.623204, -74.200485,40.624216, -74.200625,40.624451, -74.200617,40.624695, -74.200929,40.625129, -74.201247,40.625987, -74.201444,40.626079, -74.200986,40.629291, -74.200798,40.62929, -74.200754,40.629623, -74.200455,40.629612, -74.200122,40.631574, -74.198565,40.632995, -74.19856,40.633157, -74.198267,40.633308, -74.197965,40.633369, -74.197534,40.633411, -74.197365,40.633591, -74.197371,40.633852, -74.197119,40.63412, -74.196703,40.634423, -74.19672,40.634523, -74.196473,40.634881, -74.195607,40.635867, -74.195487,40.635974, -74.195134,40.635971, -74.194765,40.635716, -74.194933,40.636384, -74.194828,40.636492, -74.194621,40.636598, -74.194594,40.636751, -74.194586,40.636967, -74.194826,40.637122, -74.194704,40.637481, -74.194486,40.637471, -74.193875,40.637593, -74.193715,40.63743, -74.193183,40.637823, -74.193313,40.637949, -74.187093,40.643032, -74.186804,40.642895, -74.186461,40.642838, -74.186297,40.642855, -74.186396,40.642991, -74.186306,40.643423, -74.185655,40.644139, -74.185399,40.644371, -74.185167,40.644441, -74.184965,40.644431, -74.18473,40.644051, -74.184398,40.643887, -74.18421,40.643705, -74.184143,40.643461, -74.184181,40.643272, -74.184107,40.642884, -74.18389,40.642514, -74.183707,40.642386, -74.183651,40.642431, -74.183778,40.64272, -74.183939,40.643, -74.183996,40.643262, -74.183917,40.64337, -74.183756,40.643323, -74.183441,40.642997, -74.18315,40.642833, -74.183116,40.64285, -74.183166,40.642941, -74.183605,40.643494, -74.183571,40.643583, -74.183421,40.643646, -74.183403,40.643691, -74.183456,40.643763, -74.183605,40.643827, -74.18368,40.644071, -74.183828,40.644288, -74.183876,40.644631, -74.183773,40.644846, -74.183466,40.644952, -74.183042,40.644994, -74.181267,40.644747, -74.181167,40.644729, -74.181161,40.6448, -74.180997,40.644844, -74.180923,40.644537, -74.180785,40.644465, -74.180594,40.644544, -74.180638,40.64513, -74.180508,40.645147, -74.180391,40.644471, -74.179981,40.644486, -74.18001,40.645333, -74.179846,40.645377, -74.179829,40.644476, -74.179398,40.644491, -74.179409,40.645175, -74.179273,40.645184, -74.179133,40.642867, -74.178587,40.642638, -74.178451,40.642664, -74.178045,40.642526, -74.177993,40.642733, -74.177782,40.642875, -74.177798,40.642984, -74.177527,40.643054, -74.17745,40.643152, -74.177263,40.643178, -74.177133,40.643124, -74.176935,40.642978, -74.17696,40.643104, -74.176878,40.643266, -74.176946,40.643375, -74.176905,40.643491, -74.176613,40.643552, -74.176274,40.643541, -74.176037,40.643521, -74.175748,40.643465, -74.175591,40.643572, -74.17586,40.643664, -74.175775,40.643996, -74.175764,40.644132, -74.175855,40.644268, -74.175849,40.644601, -74.175667,40.644573, -74.175494,40.645084, -74.175345,40.645147, -74.174603,40.645087, -74.174121,40.645075, -74.172747,40.644245, -74.172924,40.643598, -74.172509,40.643406, -74.172427,40.643, -74.17202,40.643078, -74.171531,40.643128, -74.171358,40.643055, -74.171397,40.642948, -74.171753,40.642265, -74.17157,40.641859, -74.171455,40.641848, -74.171433,40.642092, -74.17131,40.642091, -74.171232,40.641838, -74.170807,40.641826, -74.170792,40.641484, -74.170539,40.641455, -74.170173,40.64202, -74.169414,40.641924, -74.169164,40.642526, -74.168999,40.642534, -74.169054,40.642129, -74.16841,40.641971, -74.168292,40.641907, -74.168221,40.641618, -74.16793,40.641553, -74.167706,40.641759, -74.167498,40.641811, -74.167179,40.641673, -74.166955,40.641636, -74.166647,40.641427, -74.166532,40.641408, -74.166333,40.642316, -74.16619,40.642315, -74.16628,40.64137, -74.165736,40.641204, -74.165554,40.64223, -74.16541,40.642228, -74.165453,40.641959, -74.165288,40.641966, -74.165297,40.642048, -74.165175,40.642038, -74.165121,40.642172, -74.165019,40.642163, -74.165312,40.640642, -74.164883,40.640513, -74.164725,40.641332, -74.164567,40.64133, -74.164751,40.640422, -74.1643,40.640175, -74.164158,40.64113, -74.163992,40.641092, -74.164189,40.640067, -74.163489,40.639944, -74.16332,40.64125, -74.163142,40.641275, -74.163199,40.641005, -74.163134,40.640987, -74.163085,40.641284, -74.162968,40.641265, -74.163007,40.641094, -74.162836,40.641093, -74.162852,40.640895, -74.162663,40.64083, -74.162535,40.640892, -74.162166,40.640791, -74.162196,40.640566, -74.161908,40.640572, -74.161744,40.640598, -74.162309,40.638855, -74.161848,40.638779, -74.16132,40.640334, -74.161175,40.640324, -74.161697,40.638778, -74.160402,40.638517, -74.160037,40.639937, -74.159863,40.639918, -74.160178,40.638992, -74.159701,40.638935, -74.159652,40.63761, -74.159494,40.637618, -74.15942,40.638356, -74.15924,40.638319, -74.159051,40.639678, -74.158914,40.639659, -74.159039,40.638326, -74.158735,40.63828, -74.158724,40.63809, -74.15827,40.638078, -74.158266,40.639276, -74.158179,40.639257, -74.158227,40.638096, -74.157997,40.638067, -74.15786,40.639759, -74.157745,40.639768, -74.157816,40.638084, -74.157269,40.637999, -74.157218,40.639683, -74.157089,40.639709, -74.157167,40.637989, -74.15678,40.637995, -74.156771,40.638797, -74.156613,40.638787, -74.156615,40.637471, -74.156442,40.637461, -74.156301,40.638964, -74.156164,40.638981, -74.15628,40.637334, -74.155467,40.637301, -74.155409,40.63757, -74.155295,40.637597, -74.155274,40.637858, -74.154971,40.637838, -74.154863,40.639233, -74.154652,40.639133, -74.154704,40.638944, -74.154301,40.638094, -74.154344,40.637256];
//need an array of half-length
var points = new Array(data.length/2);
for (var i =0; i<points.length; i++) {
points[i]= new google.maps.LatLng(data[(i*2)+1],data[i*2]);
}
var polygonOptions = {
draggable: true,
clickable: false,
fillColor: 'blue',
fillOpacity: 0.3,
paths: points,
strokeColor: 'black',
strokeOpacity: 1.0,
strokeWeight: 0,
};
shape = new google.maps.Polygon(polygonOptions);
} //function drawBounds()
function initialize() {
setUp();
initializeMap();
drawBounds();
shape.setMap(map);
google.maps.event.addListener(map, 'click', function(event) {
var within = google.maps.geometry.poly.containsLocation(event.latLng, shape);
console.log(within);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>