gooby 1.2.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (257) hide show
  1. data/README +133 -341
  2. data/config/ballantyne.yaml +11 -0
  3. data/config/big_sur_marathon.yaml +11 -0
  4. data/config/crowders_mtn_hike.yaml +11 -0
  5. data/config/davidson1.yaml +16 -0
  6. data/config/gooby_config.yaml +28 -135
  7. data/cucumber.yml +1 -0
  8. data/features/build_gem.feature +88 -0
  9. data/features/gooby.feature +300 -0
  10. data/features/install.feature +78 -0
  11. data/features/steps/gooby_steps.rb +245 -0
  12. data/features/support/env.rb +4 -0
  13. data/lib/gooby.rb +24 -30
  14. data/lib/gooby_activity.rb +63 -0
  15. data/lib/gooby_base_object.rb +46 -0
  16. data/lib/gooby_base_sax_parser.rb +95 -0
  17. data/lib/gooby_configuration.rb +33 -115
  18. data/lib/gooby_counter_hash.rb +28 -87
  19. data/lib/gooby_dttm.rb +88 -66
  20. data/lib/gooby_environment.rb +48 -0
  21. data/lib/gooby_garmin_tcx_parser.rb +92 -0
  22. data/lib/gooby_google_kml_generator.rb +168 -0
  23. data/lib/gooby_google_map_generator.rb +284 -349
  24. data/lib/gooby_gpx_parser.rb +97 -0
  25. data/lib/gooby_help_producer.rb +40 -0
  26. data/lib/gooby_introspection.rb +25 -0
  27. data/lib/gooby_io.rb +30 -0
  28. data/lib/gooby_lap.rb +27 -18
  29. data/lib/gooby_process.rb +281 -0
  30. data/lib/gooby_sax_path_parser.rb +43 -0
  31. data/lib/gooby_tcx_extractor.rb +71 -0
  32. data/lib/gooby_track_log_parser.rb +114 -0
  33. data/lib/gooby_trackpoint.rb +276 -0
  34. data/lib/gooby_xml_object.rb +40 -0
  35. data/{img/gicons → out/images}/blank.png +0 -0
  36. data/{img/gicons → out/images}/dd-end.png +0 -0
  37. data/{img/gicons → out/images}/dd-start.png +0 -0
  38. data/{img/gicons → out/images}/marker.png +0 -0
  39. data/{img/gicons → out/images}/marker0.png +0 -0
  40. data/{img/gicons → out/images}/marker00.png +0 -0
  41. data/{img/gicons → out/images}/marker01.png +0 -0
  42. data/{img/gicons → out/images}/marker02.png +0 -0
  43. data/{img/gicons → out/images}/marker03.png +0 -0
  44. data/{img/gicons → out/images}/marker04.png +0 -0
  45. data/{img/gicons → out/images}/marker05.png +0 -0
  46. data/{img/gicons → out/images}/marker06.png +0 -0
  47. data/{img/gicons → out/images}/marker07.png +0 -0
  48. data/{img/gicons → out/images}/marker08.png +0 -0
  49. data/{img/gicons → out/images}/marker09.png +0 -0
  50. data/{img/gicons → out/images}/marker1.png +0 -0
  51. data/{img/gicons → out/images}/marker10.png +0 -0
  52. data/{img/gicons → out/images}/marker11.png +0 -0
  53. data/{img/gicons → out/images}/marker12.png +0 -0
  54. data/{img/gicons → out/images}/marker13.png +0 -0
  55. data/{img/gicons → out/images}/marker14.png +0 -0
  56. data/{img/gicons → out/images}/marker15.png +0 -0
  57. data/{img/gicons → out/images}/marker16.png +0 -0
  58. data/{img/gicons → out/images}/marker17.png +0 -0
  59. data/{img/gicons → out/images}/marker18.png +0 -0
  60. data/{img/gicons → out/images}/marker19.png +0 -0
  61. data/{img/gicons → out/images}/marker2.png +0 -0
  62. data/{img/gicons → out/images}/marker20.png +0 -0
  63. data/{img/gicons → out/images}/marker21.png +0 -0
  64. data/{img/gicons → out/images}/marker22.png +0 -0
  65. data/{img/gicons → out/images}/marker23.png +0 -0
  66. data/{img/gicons → out/images}/marker24.png +0 -0
  67. data/{img/gicons → out/images}/marker25.png +0 -0
  68. data/{img/gicons → out/images}/marker26.png +0 -0
  69. data/{img/gicons → out/images}/marker27.png +0 -0
  70. data/{img/gicons → out/images}/marker28.png +0 -0
  71. data/{img/gicons → out/images}/marker29.png +0 -0
  72. data/{img/gicons → out/images}/marker3.png +0 -0
  73. data/{img/gicons → out/images}/marker30.png +0 -0
  74. data/{img/gicons → out/images}/marker31.png +0 -0
  75. data/{img/gicons → out/images}/marker32.png +0 -0
  76. data/{img/gicons → out/images}/marker33.png +0 -0
  77. data/{img/gicons → out/images}/marker34.png +0 -0
  78. data/{img/gicons → out/images}/marker35.png +0 -0
  79. data/{img/gicons → out/images}/marker36.png +0 -0
  80. data/{img/gicons → out/images}/marker37.png +0 -0
  81. data/{img/gicons → out/images}/marker38.png +0 -0
  82. data/{img/gicons → out/images}/marker39.png +0 -0
  83. data/{img/gicons → out/images}/marker4.png +0 -0
  84. data/{img/gicons → out/images}/marker40.png +0 -0
  85. data/{img/gicons → out/images}/marker41.png +0 -0
  86. data/{img/gicons → out/images}/marker42.png +0 -0
  87. data/{img/gicons → out/images}/marker43.png +0 -0
  88. data/{img/gicons → out/images}/marker44.png +0 -0
  89. data/{img/gicons → out/images}/marker45.png +0 -0
  90. data/{img/gicons → out/images}/marker46.png +0 -0
  91. data/{img/gicons → out/images}/marker47.png +0 -0
  92. data/{img/gicons → out/images}/marker48.png +0 -0
  93. data/{img/gicons → out/images}/marker49.png +0 -0
  94. data/{img/gicons → out/images}/marker5.png +0 -0
  95. data/{img/gicons → out/images}/marker50.png +0 -0
  96. data/{img/gicons → out/images}/marker51.png +0 -0
  97. data/{img/gicons → out/images}/marker52.png +0 -0
  98. data/{img/gicons → out/images}/marker53.png +0 -0
  99. data/{img/gicons → out/images}/marker54.png +0 -0
  100. data/{img/gicons → out/images}/marker55.png +0 -0
  101. data/{img/gicons → out/images}/marker56.png +0 -0
  102. data/{img/gicons → out/images}/marker57.png +0 -0
  103. data/{img/gicons → out/images}/marker58.png +0 -0
  104. data/{img/gicons → out/images}/marker59.png +0 -0
  105. data/{img/gicons → out/images}/marker6.png +0 -0
  106. data/{img/gicons → out/images}/marker60.png +0 -0
  107. data/{img/gicons → out/images}/marker61.png +0 -0
  108. data/{img/gicons → out/images}/marker62.png +0 -0
  109. data/{img/gicons → out/images}/marker63.png +0 -0
  110. data/{img/gicons → out/images}/marker64.png +0 -0
  111. data/{img/gicons → out/images}/marker65.png +0 -0
  112. data/{img/gicons → out/images}/marker66.png +0 -0
  113. data/{img/gicons → out/images}/marker67.png +0 -0
  114. data/{img/gicons → out/images}/marker68.png +0 -0
  115. data/{img/gicons → out/images}/marker69.png +0 -0
  116. data/{img/gicons → out/images}/marker7.png +0 -0
  117. data/{img/gicons → out/images}/marker70.png +0 -0
  118. data/{img/gicons → out/images}/marker71.png +0 -0
  119. data/{img/gicons → out/images}/marker72.png +0 -0
  120. data/{img/gicons → out/images}/marker73.png +0 -0
  121. data/{img/gicons → out/images}/marker74.png +0 -0
  122. data/{img/gicons → out/images}/marker75.png +0 -0
  123. data/{img/gicons → out/images}/marker76.png +0 -0
  124. data/{img/gicons → out/images}/marker77.png +0 -0
  125. data/{img/gicons → out/images}/marker78.png +0 -0
  126. data/{img/gicons → out/images}/marker79.png +0 -0
  127. data/{img/gicons → out/images}/marker8.png +0 -0
  128. data/{img/gicons → out/images}/marker80.png +0 -0
  129. data/{img/gicons → out/images}/marker81.png +0 -0
  130. data/{img/gicons → out/images}/marker82.png +0 -0
  131. data/{img/gicons → out/images}/marker83.png +0 -0
  132. data/{img/gicons → out/images}/marker84.png +0 -0
  133. data/{img/gicons → out/images}/marker85.png +0 -0
  134. data/{img/gicons → out/images}/marker86.png +0 -0
  135. data/{img/gicons → out/images}/marker87.png +0 -0
  136. data/{img/gicons → out/images}/marker88.png +0 -0
  137. data/{img/gicons → out/images}/marker89.png +0 -0
  138. data/{img/gicons → out/images}/marker9.png +0 -0
  139. data/{img/gicons → out/images}/marker90.png +0 -0
  140. data/{img/gicons → out/images}/marker91.png +0 -0
  141. data/{img/gicons → out/images}/marker92.png +0 -0
  142. data/{img/gicons → out/images}/marker93.png +0 -0
  143. data/{img/gicons → out/images}/marker94.png +0 -0
  144. data/{img/gicons → out/images}/marker95.png +0 -0
  145. data/{img/gicons → out/images}/marker96.png +0 -0
  146. data/{img/gicons → out/images}/marker97.png +0 -0
  147. data/{img/gicons → out/images}/marker98.png +0 -0
  148. data/{img/gicons → out/images}/marker99.png +0 -0
  149. data/{img/gicons → out/images}/markerA.png +0 -0
  150. data/{img/gicons → out/images}/markerB.png +0 -0
  151. data/{img/gicons → out/images}/markerC.png +0 -0
  152. data/{img/gicons → out/images}/markerD.png +0 -0
  153. data/{img/gicons → out/images}/markerE.png +0 -0
  154. data/{img/gicons → out/images}/markerF.png +0 -0
  155. data/{img/gicons → out/images}/markerG.png +0 -0
  156. data/{img/gicons → out/images}/markerH.png +0 -0
  157. data/{img/gicons → out/images}/markerI.png +0 -0
  158. data/{img/gicons → out/images}/markerJ.png +0 -0
  159. data/{img/gicons → out/images}/mm_20_red.png +0 -0
  160. data/{img/gicons → out/images}/mm_20_shadow.png +0 -0
  161. data/{img/gicons → out/images}/shadow50.png +0 -0
  162. data/rakefile.rb +79 -0
  163. data/samples.sh +21 -0
  164. data/samples/2008_04_27_13_49_50_tcx.csv +2449 -0
  165. data/samples/2008_04_27_13_49_50_tcx.xml +24560 -0
  166. data/samples/2009_01_01_14_45_00_tcx.xml +10630 -0
  167. data/samples/ballantyne.csv +27 -0
  168. data/samples/ballantyne.gpx +117 -0
  169. data/samples/ballantyne.kml +91 -0
  170. data/samples/big_sur_marathon.html +2766 -0
  171. data/samples/big_sur_marathon.kml +685 -0
  172. data/samples/build_gem_test_results.txt +6 -0
  173. data/samples/crowders_mtn_hike.csv +1065 -0
  174. data/samples/crowders_mtn_hike.html +1283 -0
  175. data/samples/crowders_mtn_hike.log +1 -0
  176. data/samples/cucumber_test_results.txt +302 -0
  177. data/samples/davidson1.csv +1 -0
  178. data/samples/davidson1.html +75 -0
  179. data/samples/davidson_1_point_tcx.csv +0 -0
  180. data/samples/doc.kml +49 -0
  181. data/samples/gps_track_log_asheville_mt_pisgah.txt +1 -0
  182. data/samples/gps_track_logs.txt +1 -0
  183. data/samples/install_test_results.txt +81 -0
  184. data/samples/mt_pisgah.txt +1 -0
  185. data/samples/rspec_test_results.txt +5 -0
  186. data/setup.rb +66 -0
  187. data/spec/gooby_base_object_spec.rb +116 -0
  188. data/spec/gooby_counter_hash_spec.rb +34 -0
  189. data/spec/gooby_dttm_spec.rb +40 -0
  190. data/spec/gooby_spec_helper.rb +9 -0
  191. data/spec/gooby_xml_object_spec.rb +32 -0
  192. metadata +225 -226
  193. data/bin/code_scan.rb +0 -16
  194. data/bin/gooby_been_there.rb +0 -33
  195. data/bin/gooby_config.rb +0 -24
  196. data/bin/gooby_csv_validation.rb +0 -50
  197. data/bin/gooby_first_trackpoints_as_poi.rb +0 -31
  198. data/bin/gooby_gen_gmap.rb +0 -20
  199. data/bin/gooby_parser.rb +0 -21
  200. data/bin/gooby_splitter.rb +0 -21
  201. data/bin/gooby_version.rb +0 -20
  202. data/bin/run_all.sh +0 -33
  203. data/bin/run_been_there.sh +0 -19
  204. data/bin/run_config.sh +0 -12
  205. data/bin/run_csv_validation.sh +0 -15
  206. data/bin/run_db_gen.sh +0 -11
  207. data/bin/run_db_load.sh +0 -11
  208. data/bin/run_first_trackpoints_as_poi.sh +0 -16
  209. data/bin/run_gen_gmaps.sh +0 -21
  210. data/bin/run_parse_full.sh +0 -45
  211. data/bin/run_parse_samples.sh +0 -21
  212. data/bin/run_split.sh +0 -24
  213. data/bin/run_version.sh +0 -12
  214. data/data/20050305_corporate_cup_hm.csv +0 -251
  215. data/data/20050305_corporate_cup_hm.xml +0 -2208
  216. data/data/20050430_nashville_marathon.xml +0 -10043
  217. data/data/20050430_nashville_marathon_km.csv +0 -1208
  218. data/data/20060115_phoenix_marathon.csv +0 -1280
  219. data/data/20060115_phoenix_marathon.xml +0 -10620
  220. data/data/20070101_davidson_11m.csv +0 -251
  221. data/data/20070101_davidson_11m.xml +0 -2020
  222. data/data/20070505_davidson_5k.xml +0 -2875
  223. data/data/20070505_davidson_5k_km.csv +0 -286
  224. data/data/hrm1.csv +0 -5
  225. data/img/gicons/readme.txt +0 -14
  226. data/lib/gooby_code_scanner.rb +0 -288
  227. data/lib/gooby_command.rb +0 -210
  228. data/lib/gooby_course.rb +0 -117
  229. data/lib/gooby_csv_point.rb +0 -71
  230. data/lib/gooby_csv_reader.rb +0 -71
  231. data/lib/gooby_csv_run.rb +0 -28
  232. data/lib/gooby_delim_line.rb +0 -42
  233. data/lib/gooby_duration.rb +0 -86
  234. data/lib/gooby_forerunner_xml_parser.rb +0 -191
  235. data/lib/gooby_forerunner_xml_splitter.rb +0 -115
  236. data/lib/gooby_history.rb +0 -41
  237. data/lib/gooby_kernel.rb +0 -163
  238. data/lib/gooby_line.rb +0 -80
  239. data/lib/gooby_object.rb +0 -22
  240. data/lib/gooby_point.rb +0 -172
  241. data/lib/gooby_run.rb +0 -213
  242. data/lib/gooby_simple_xml_parser.rb +0 -50
  243. data/lib/gooby_test_helper.rb +0 -23
  244. data/lib/gooby_track.rb +0 -47
  245. data/lib/gooby_track_point.rb +0 -229
  246. data/lib/gooby_training_center_xml_parser.rb +0 -224
  247. data/lib/gooby_training_center_xml_splitter.rb +0 -116
  248. data/lib/split_code.sh +0 -29
  249. data/samples/20050305_corporate_cup_hm.html +0 -450
  250. data/samples/20050430_nashville_marathon.html +0 -1668
  251. data/samples/20060115_phoenix_marathon.html +0 -1596
  252. data/samples/20070101_davidson_11m.html +0 -432
  253. data/samples/20070505_davidson_5k.html +0 -413
  254. data/samples/been_there.txt +0 -92
  255. data/samples/hrm1.html +0 -87
  256. data/sql/gooby.ddl +0 -60
  257. data/sql/gooby_load.dml +0 -62
@@ -0,0 +1,27 @@
1
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,1,2009-05-14T22:08:50Z,0:00:00,35.062748,-80.85562,518.398,0.0,0:00,0.00
2
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,2,2009-05-14T22:08:52Z,0:00:02,35.062732,-80.855652,518.353086391,0.00212026036354587,15:43.28,3.816
3
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,3,2009-05-14T22:08:54Z,0:00:04,35.06272,-80.855676,518.19356089,0.00370963489020341,17:58.27,3.339
4
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,4,2009-05-14T22:08:59Z,0:00:09,35.062683,-80.855766,517.511654255,0.00940549179670895,15:56.89,3.762
5
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,5,2009-05-14T22:09:03Z,0:00:13,35.062655,-80.855803,517.068968611,0.0122552523044792,17:40.77,3.394
6
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,6,2009-05-14T22:09:05Z,0:00:15,35.062626,-80.855826,516.936911642,0.0146440526976075,17:04.31,3.515
7
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,7,2009-05-14T22:09:08Z,0:00:18,35.0626,-80.855828,516.351778102,0.0164429211776518,18:14.70,3.289
8
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,8,2009-05-14T22:09:12Z,0:00:22,35.062563,-80.855827,514.976202447,0.0189991853419751,19:17.94,3.109
9
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,9,2009-05-14T22:09:17Z,0:00:27,35.062542,-80.855818,512.87909552,0.0205351201573765,21:54.82,2.738
10
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,10,2009-05-14T22:09:25Z,0:00:35,35.062453,-80.855676,514.448217365,0.0306493216906545,19:01.95,3.153
11
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,11,2009-05-14T22:09:43Z,0:00:53,35.062453,-80.855676,514.448217365,0.0306493216906545,28:49.24,2.082
12
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,12,2009-05-14T22:09:44Z,0:00:54,35.062442,-80.855654,516.452307942,0.0321061985842157,28:01.92,2.140
13
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,13,2009-05-14T22:09:47Z,0:00:57,35.062415,-80.855614,519.130014067,0.0350389967164643,27:06.76,2.213
14
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,14,2009-05-14T22:09:51Z,0:01:01,35.062372,-80.855562,522.209596758,0.0392196054829183,25:55.34,2.315
15
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,15,2009-05-14T22:09:55Z,0:01:05,35.062332,-80.855526,525.392944355,0.0426520333141688,25:23.96,2.362
16
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,16,2009-05-14T22:09:57Z,0:01:07,35.062315,-80.855497,528.405145149,0.0446697067150504,24:59.90,2.400
17
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,17,2009-05-14T22:09:59Z,0:01:09,35.062302,-80.855474,532.919020271,0.0462503000997798,24:51.88,2.413
18
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,18,2009-05-14T22:10:01Z,0:01:11,35.06229,-80.855449,534.201277724,0.0478892534335508,24:42.59,2.428
19
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,19,2009-05-14T22:10:03Z,0:01:13,35.062287,-80.855426,534.977296563,0.0492056071660505,24:43.57,2.427
20
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,20,2009-05-14T22:10:09Z,0:01:19,35.062295,-80.855379,535.342225788,0.0519203013701796,25:21.56,2.366
21
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,21,2009-05-14T22:10:11Z,0:01:21,35.062308,-80.855359,535.231439542,0.0533651873035046,25:17.84,2.372
22
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,22,2009-05-14T22:10:15Z,0:01:25,35.062338,-80.855336,533.747390746,0.0558122684610989,25:22.96,2.364
23
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,23,2009-05-14T22:10:18Z,0:01:28,35.062363,-80.855317,531.200153586,0.0578462587033818,25:21.27,2.366
24
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,24,2009-05-14T22:10:25Z,0:01:35,35.062487,-80.855308,527.559890648,0.066428443291943,23:50.11,2.517
25
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,25,2009-05-14T22:10:39Z,0:01:49,35.062598,-80.855411,525.63414707,0.0760585475176381,23:53.11,2.512
26
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,26,2009-05-14T22:10:41Z,0:01:51,35.062607,-80.855436,524.036998923,0.0776012635351752,23:50.39,2.517
27
+ Trackpoint,Track 004,2009-05-14 22:08:50 1242338930,1,27,2009-05-14T22:10:43Z,0:01:53,35.062613,-80.855448,522.935662372,0.0783970446562321,24:01.38,2.498
@@ -0,0 +1,117 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:xalan="http://xml.apache.org/xalan" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" creator="MotionX Live" version="1.1">
3
+ <trk>
4
+ <name>Track 004</name>
5
+ <desc>May 14, 2009 6:08 pm</desc>
6
+ <trkseg>
7
+ <trkpt lat="35.062748" lon="-80.855620">
8
+ <ele>158.000000</ele>
9
+ <time>2009-05-14T22:08:50Z</time>
10
+ </trkpt>
11
+ <trkpt lat="35.062732" lon="-80.855652">
12
+ <ele>157.986311</ele>
13
+ <time>2009-05-14T22:08:52Z</time>
14
+ </trkpt>
15
+ <trkpt lat="35.062720" lon="-80.855676">
16
+ <ele>157.937690</ele>
17
+ <time>2009-05-14T22:08:54Z</time>
18
+ </trkpt>
19
+ <trkpt lat="35.062683" lon="-80.855766">
20
+ <ele>157.729855</ele>
21
+ <time>2009-05-14T22:08:59Z</time>
22
+ </trkpt>
23
+ <trkpt lat="35.062655" lon="-80.855803">
24
+ <ele>157.594931</ele>
25
+ <time>2009-05-14T22:09:03Z</time>
26
+ </trkpt>
27
+ <trkpt lat="35.062626" lon="-80.855826">
28
+ <ele>157.554682</ele>
29
+ <time>2009-05-14T22:09:05Z</time>
30
+ </trkpt>
31
+ <trkpt lat="35.062600" lon="-80.855828">
32
+ <ele>157.376342</ele>
33
+ <time>2009-05-14T22:09:08Z</time>
34
+ </trkpt>
35
+ <trkpt lat="35.062563" lon="-80.855827">
36
+ <ele>156.957087</ele>
37
+ <time>2009-05-14T22:09:12Z</time>
38
+ </trkpt>
39
+ <trkpt lat="35.062542" lon="-80.855818">
40
+ <ele>156.317920</ele>
41
+ <time>2009-05-14T22:09:17Z</time>
42
+ </trkpt>
43
+ <trkpt lat="35.062453" lon="-80.855676">
44
+ <ele>156.796165</ele>
45
+ <time>2009-05-14T22:09:25Z</time>
46
+ </trkpt>
47
+ <trkpt lat="35.062453" lon="-80.855676">
48
+ <ele>156.796165</ele>
49
+ <time>2009-05-14T22:09:43Z</time>
50
+ </trkpt>
51
+ <trkpt lat="35.062442" lon="-80.855654">
52
+ <ele>157.406982</ele>
53
+ <time>2009-05-14T22:09:44Z</time>
54
+ </trkpt>
55
+ <trkpt lat="35.062415" lon="-80.855614">
56
+ <ele>158.223107</ele>
57
+ <time>2009-05-14T22:09:47Z</time>
58
+ </trkpt>
59
+ <trkpt lat="35.062372" lon="-80.855562">
60
+ <ele>159.161718</ele>
61
+ <time>2009-05-14T22:09:51Z</time>
62
+ </trkpt>
63
+ <trkpt lat="35.062332" lon="-80.855526">
64
+ <ele>160.131955</ele>
65
+ <time>2009-05-14T22:09:55Z</time>
66
+ </trkpt>
67
+ <trkpt lat="35.062315" lon="-80.855497">
68
+ <ele>161.050029</ele>
69
+ <time>2009-05-14T22:09:57Z</time>
70
+ </trkpt>
71
+ <trkpt lat="35.062302" lon="-80.855474">
72
+ <ele>162.425791</ele>
73
+ <time>2009-05-14T22:09:59Z</time>
74
+ </trkpt>
75
+ <trkpt lat="35.062290" lon="-80.855449">
76
+ <ele>162.816604</ele>
77
+ <time>2009-05-14T22:10:01Z</time>
78
+ </trkpt>
79
+ <trkpt lat="35.062287" lon="-80.855426">
80
+ <ele>163.053123</ele>
81
+ <time>2009-05-14T22:10:03Z</time>
82
+ </trkpt>
83
+ <trkpt lat="35.062295" lon="-80.855379">
84
+ <ele>163.164348</ele>
85
+ <time>2009-05-14T22:10:09Z</time>
86
+ </trkpt>
87
+ <trkpt lat="35.062308" lon="-80.855359">
88
+ <ele>163.130582</ele>
89
+ <time>2009-05-14T22:10:11Z</time>
90
+ </trkpt>
91
+ <trkpt lat="35.062338" lon="-80.855336">
92
+ <ele>162.678266</ele>
93
+ <time>2009-05-14T22:10:15Z</time>
94
+ </trkpt>
95
+ <trkpt lat="35.062363" lon="-80.855317">
96
+ <ele>161.901906</ele>
97
+ <time>2009-05-14T22:10:18Z</time>
98
+ </trkpt>
99
+ <trkpt lat="35.062487" lon="-80.855308">
100
+ <ele>160.792408</ele>
101
+ <time>2009-05-14T22:10:25Z</time>
102
+ </trkpt>
103
+ <trkpt lat="35.062598" lon="-80.855411">
104
+ <ele>160.205470</ele>
105
+ <time>2009-05-14T22:10:39Z</time>
106
+ </trkpt>
107
+ <trkpt lat="35.062607" lon="-80.855436">
108
+ <ele>159.718683</ele>
109
+ <time>2009-05-14T22:10:41Z</time>
110
+ </trkpt>
111
+ <trkpt lat="35.062613" lon="-80.855448">
112
+ <ele>159.383012</ele>
113
+ <time>2009-05-14T22:10:43Z</time>
114
+ </trkpt>
115
+ </trkseg>
116
+ </trk>
117
+ </gpx>
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <kml xmlns="http://www.opengis.net/kml/2.2">
3
+ <Document>
4
+ <!-- kml file generated by Gooby version 2.0.0 -->
5
+ <name>Ballantyne Office Park</name>
6
+ <Style id="goobyStyle">
7
+ <BalloonStyle>
8
+ <text>$[description]</text>
9
+ </BalloonStyle>
10
+ <LineStyle>
11
+ <color>7f0000ff</color>
12
+ <width>4</width>
13
+ </LineStyle>
14
+ <PolyStyle>
15
+ <color>7f0000ff</color>
16
+ </PolyStyle>
17
+ </Style>
18
+
19
+ <Placemark>
20
+ <name>Start</name>
21
+ <description><table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>0.000</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:00:00</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>0.00</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.062748</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-80.85562</td></tr></table></description>
22
+ <Style>
23
+ <IconStyle>
24
+ <Icon>
25
+ <href>images/dd-start.png</href>
26
+ </Icon>
27
+ </IconStyle>
28
+ </Style>
29
+ <styleUrl>#goobyStyle</styleUrl>
30
+ <Point>
31
+ <coordinates>-80.85562,35.062748,1</coordinates>
32
+ </Point>
33
+ </Placemark>
34
+
35
+ <Placemark>
36
+ <name>Finish</name>
37
+ <description><table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>0.078</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:01:53</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>2.498</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.062613</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-80.855448</td></tr></table></description>
38
+ <Style>
39
+ <IconStyle>
40
+ <Icon>
41
+ <href>images/dd-end.png</href>
42
+ </Icon>
43
+ </IconStyle>
44
+ </Style>
45
+ <styleUrl>#goobyStyle</styleUrl>
46
+ <Point>
47
+ <coordinates>-80.855448,35.062613,1</coordinates>
48
+ </Point>
49
+ </Placemark>
50
+
51
+ <Placemark>
52
+ <name>Route</name>
53
+ <visibility>1</visibility>
54
+ <description>Route</description>
55
+ <styleUrl>#goobyStyle</styleUrl>
56
+ <LineString>
57
+ <tessellate>1</tessellate>
58
+ <altitudeMode>relativeToGround</altitudeMode>
59
+ <coordinates>
60
+ -80.85562,35.062748,1
61
+ -80.855652,35.062732,1
62
+ -80.855676,35.06272,1
63
+ -80.855766,35.062683,1
64
+ -80.855803,35.062655,1
65
+ -80.855826,35.062626,1
66
+ -80.855828,35.0626,1
67
+ -80.855827,35.062563,1
68
+ -80.855818,35.062542,1
69
+ -80.855676,35.062453,1
70
+ -80.855676,35.062453,1
71
+ -80.855654,35.062442,1
72
+ -80.855614,35.062415,1
73
+ -80.855562,35.062372,1
74
+ -80.855526,35.062332,1
75
+ -80.855497,35.062315,1
76
+ -80.855474,35.062302,1
77
+ -80.855449,35.06229,1
78
+ -80.855426,35.062287,1
79
+ -80.855379,35.062295,1
80
+ -80.855359,35.062308,1
81
+ -80.855336,35.062338,1
82
+ -80.855317,35.062363,1
83
+ -80.855308,35.062487,1
84
+ -80.855411,35.062598,1
85
+ -80.855436,35.062607,1
86
+ -80.855448,35.062613,1
87
+ </coordinates>
88
+ </LineString>
89
+ </Placemark>
90
+ </Document>
91
+ </kml>
@@ -0,0 +1,2766 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml">
4
+ <head>
5
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
6
+ <meta name="description" content="Google Map generated by Gooby version 2.0.0">
7
+ <meta name="keywords" content="Google Map Generated by Gooby version 2.0.0">
8
+ <title> Big Sur Marathon </title>
9
+ <script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xR1l5lLpU9GCFYoS8YrTf8v3gVJ2hRLV1dTSiqDWwWSnMRkM7SVr0EKSA' type='text/javascript'></script>
10
+ <script type="text/javascript">
11
+ //<![CDATA[
12
+ function load() {
13
+ if (GBrowserIsCompatible()) {
14
+ var map = new GMap2(document.getElementById("map"));
15
+ map.addControl(new GLargeMapControl());
16
+ map.addControl(new GMapTypeControl());
17
+
18
+ var centerPoint = new GLatLng(36.392926, -121.8600045); // Map generated by Gooby
19
+ map.setCenter(centerPoint, 11);
20
+
21
+ var points = new Array();
22
+ points.push(new GLatLng(36.247196,-121.781665));
23
+ // points.push(new GLatLng(36.247208,-121.78167));
24
+ // points.push(new GLatLng(36.24728,-121.781717));
25
+ // points.push(new GLatLng(36.247412,-121.781819));
26
+ // points.push(new GLatLng(36.247543,-121.781934));
27
+ // points.push(new GLatLng(36.247639,-121.782026));
28
+ // points.push(new GLatLng(36.247728,-121.782111));
29
+ // points.push(new GLatLng(36.247825,-121.782196));
30
+ // points.push(new GLatLng(36.247865,-121.782242));
31
+ // points.push(new GLatLng(36.24797,-121.782383));
32
+ // points.push(new GLatLng(36.248053,-121.782487));
33
+ // points.push(new GLatLng(36.248144,-121.782618));
34
+ points.push(new GLatLng(36.248216,-121.782714));
35
+ // points.push(new GLatLng(36.248303,-121.782881));
36
+ // points.push(new GLatLng(36.248337,-121.782985));
37
+ // points.push(new GLatLng(36.248396,-121.783105));
38
+ // points.push(new GLatLng(36.248484,-121.78329));
39
+ // points.push(new GLatLng(36.24856,-121.783496));
40
+ // points.push(new GLatLng(36.24862,-121.78368));
41
+ // points.push(new GLatLng(36.248691,-121.783858));
42
+ // points.push(new GLatLng(36.248698,-121.783883));
43
+ // points.push(new GLatLng(36.248762,-121.784012));
44
+ // points.push(new GLatLng(36.248826,-121.784143));
45
+ // points.push(new GLatLng(36.248907,-121.784325));
46
+ points.push(new GLatLng(36.249009,-121.784484));
47
+ // points.push(new GLatLng(36.249141,-121.784736));
48
+ // points.push(new GLatLng(36.24913,-121.784891));
49
+ // points.push(new GLatLng(36.249203,-121.785069));
50
+ // points.push(new GLatLng(36.24923,-121.785214));
51
+ // points.push(new GLatLng(36.249324,-121.78537));
52
+ // points.push(new GLatLng(36.249354,-121.78549));
53
+ // points.push(new GLatLng(36.249445,-121.785598));
54
+ // points.push(new GLatLng(36.249533,-121.78574));
55
+ // points.push(new GLatLng(36.249627,-121.785895));
56
+ // points.push(new GLatLng(36.249765,-121.786068));
57
+ // points.push(new GLatLng(36.249927,-121.786203));
58
+ points.push(new GLatLng(36.250071,-121.786357));
59
+ // points.push(new GLatLng(36.250144,-121.786448));
60
+ // points.push(new GLatLng(36.250231,-121.786542));
61
+ // points.push(new GLatLng(36.250325,-121.786629));
62
+ // points.push(new GLatLng(36.250449,-121.786704));
63
+ // points.push(new GLatLng(36.25056,-121.786791));
64
+ // points.push(new GLatLng(36.250705,-121.786887));
65
+ // points.push(new GLatLng(36.250749,-121.786896));
66
+ // points.push(new GLatLng(36.25093,-121.786951));
67
+ // points.push(new GLatLng(36.251043,-121.787008));
68
+ // points.push(new GLatLng(36.251182,-121.787123));
69
+ // points.push(new GLatLng(36.251336,-121.787194));
70
+ points.push(new GLatLng(36.251466,-121.787197));
71
+ // points.push(new GLatLng(36.25163,-121.78724));
72
+ // points.push(new GLatLng(36.251765,-121.787263));
73
+ // points.push(new GLatLng(36.251893,-121.787306));
74
+ // points.push(new GLatLng(36.252029,-121.787338));
75
+ // points.push(new GLatLng(36.25218,-121.787337));
76
+ // points.push(new GLatLng(36.252352,-121.787347));
77
+ // points.push(new GLatLng(36.252568,-121.787356));
78
+ // points.push(new GLatLng(36.252697,-121.787362));
79
+ // points.push(new GLatLng(36.252817,-121.787346));
80
+ // points.push(new GLatLng(36.252951,-121.787358));
81
+ // points.push(new GLatLng(36.25305,-121.787355));
82
+ points.push(new GLatLng(36.253215,-121.787352));
83
+ // points.push(new GLatLng(36.253352,-121.787348));
84
+ // points.push(new GLatLng(36.253484,-121.7874));
85
+ // points.push(new GLatLng(36.253645,-121.787416));
86
+ // points.push(new GLatLng(36.253816,-121.787452));
87
+ // points.push(new GLatLng(36.253996,-121.787514));
88
+ // points.push(new GLatLng(36.254152,-121.787574));
89
+ // points.push(new GLatLng(36.254367,-121.787687));
90
+ // points.push(new GLatLng(36.254491,-121.787763));
91
+ // points.push(new GLatLng(36.25462,-121.787841));
92
+ // points.push(new GLatLng(36.254762,-121.787957));
93
+ // points.push(new GLatLng(36.254909,-121.788064));
94
+ points.push(new GLatLng(36.255106,-121.788174));
95
+ // points.push(new GLatLng(36.255243,-121.788214));
96
+ // points.push(new GLatLng(36.255371,-121.788241));
97
+ // points.push(new GLatLng(36.255513,-121.788247));
98
+ // points.push(new GLatLng(36.255664,-121.788285));
99
+ // points.push(new GLatLng(36.255823,-121.788347));
100
+ // points.push(new GLatLng(36.255968,-121.788364));
101
+ // points.push(new GLatLng(36.256105,-121.788378));
102
+ // points.push(new GLatLng(36.256234,-121.788381));
103
+ // points.push(new GLatLng(36.256382,-121.788398));
104
+ // points.push(new GLatLng(36.256541,-121.788386));
105
+ // points.push(new GLatLng(36.256691,-121.78836));
106
+ points.push(new GLatLng(36.256889,-121.788318));
107
+ // points.push(new GLatLng(36.257036,-121.788301));
108
+ // points.push(new GLatLng(36.257148,-121.788284));
109
+ // points.push(new GLatLng(36.257261,-121.788286));
110
+ // points.push(new GLatLng(36.257407,-121.78829));
111
+ // points.push(new GLatLng(36.257547,-121.788297));
112
+ // points.push(new GLatLng(36.257685,-121.788298));
113
+ // points.push(new GLatLng(36.257804,-121.788311));
114
+ // points.push(new GLatLng(36.257978,-121.788354));
115
+ // points.push(new GLatLng(36.258115,-121.788377));
116
+ // points.push(new GLatLng(36.258306,-121.788402));
117
+ // points.push(new GLatLng(36.258442,-121.788386));
118
+ points.push(new GLatLng(36.258602,-121.788422));
119
+ // points.push(new GLatLng(36.25872,-121.788457));
120
+ // points.push(new GLatLng(36.258837,-121.788517));
121
+ // points.push(new GLatLng(36.258996,-121.788574));
122
+ // points.push(new GLatLng(36.259096,-121.788662));
123
+ // points.push(new GLatLng(36.259203,-121.788724));
124
+ // points.push(new GLatLng(36.259338,-121.788872));
125
+ // points.push(new GLatLng(36.259428,-121.788963));
126
+ // points.push(new GLatLng(36.259516,-121.78905));
127
+ // points.push(new GLatLng(36.259592,-121.789176));
128
+ // points.push(new GLatLng(36.259678,-121.789316));
129
+ // points.push(new GLatLng(36.25979,-121.789479));
130
+ points.push(new GLatLng(36.259844,-121.789599));
131
+ // points.push(new GLatLng(36.259929,-121.789796));
132
+ // points.push(new GLatLng(36.260003,-121.790006));
133
+ // points.push(new GLatLng(36.260084,-121.790217));
134
+ // points.push(new GLatLng(36.26014,-121.790405));
135
+ // points.push(new GLatLng(36.260174,-121.790574));
136
+ // points.push(new GLatLng(36.26021,-121.79075));
137
+ // points.push(new GLatLng(36.260263,-121.790928));
138
+ // points.push(new GLatLng(36.26029,-121.791089));
139
+ // points.push(new GLatLng(36.260322,-121.791256));
140
+ // points.push(new GLatLng(36.260359,-121.791456));
141
+ // points.push(new GLatLng(36.260396,-121.791647));
142
+ points.push(new GLatLng(36.260444,-121.791809));
143
+ // points.push(new GLatLng(36.260489,-121.792025));
144
+ // points.push(new GLatLng(36.260538,-121.792203));
145
+ // points.push(new GLatLng(36.260576,-121.792365));
146
+ // points.push(new GLatLng(36.260637,-121.792513));
147
+ // points.push(new GLatLng(36.26069,-121.792658));
148
+ // points.push(new GLatLng(36.260781,-121.792787));
149
+ // points.push(new GLatLng(36.260876,-121.792915));
150
+ // points.push(new GLatLng(36.260994,-121.793054));
151
+ // points.push(new GLatLng(36.261103,-121.793178));
152
+ // points.push(new GLatLng(36.261251,-121.793308));
153
+ // points.push(new GLatLng(36.261412,-121.793422));
154
+ points.push(new GLatLng(36.261564,-121.793514));
155
+ // points.push(new GLatLng(36.261675,-121.793553));
156
+ // points.push(new GLatLng(36.261798,-121.793646));
157
+ // points.push(new GLatLng(36.261947,-121.793736));
158
+ // points.push(new GLatLng(36.262023,-121.793823));
159
+ // points.push(new GLatLng(36.262116,-121.793861));
160
+ // points.push(new GLatLng(36.262239,-121.79394));
161
+ // points.push(new GLatLng(36.26239,-121.794029));
162
+ // points.push(new GLatLng(36.262507,-121.794105));
163
+ // points.push(new GLatLng(36.26265,-121.794172));
164
+ // points.push(new GLatLng(36.262784,-121.794247));
165
+ // points.push(new GLatLng(36.262874,-121.794306));
166
+ points.push(new GLatLng(36.263008,-121.794417));
167
+ // points.push(new GLatLng(36.263114,-121.794475));
168
+ // points.push(new GLatLng(36.263255,-121.794533));
169
+ // points.push(new GLatLng(36.263281,-121.794539));
170
+ // points.push(new GLatLng(36.263392,-121.794618));
171
+ // points.push(new GLatLng(36.263518,-121.794706));
172
+ // points.push(new GLatLng(36.263667,-121.794818));
173
+ // points.push(new GLatLng(36.263779,-121.794939));
174
+ // points.push(new GLatLng(36.263894,-121.795075));
175
+ // points.push(new GLatLng(36.264004,-121.795238));
176
+ // points.push(new GLatLng(36.264089,-121.795354));
177
+ // points.push(new GLatLng(36.264159,-121.795545));
178
+ points.push(new GLatLng(36.264228,-121.795651));
179
+ // points.push(new GLatLng(36.264287,-121.79579));
180
+ // points.push(new GLatLng(36.264332,-121.795978));
181
+ // points.push(new GLatLng(36.264354,-121.796173));
182
+ // points.push(new GLatLng(36.264369,-121.796332));
183
+ // points.push(new GLatLng(36.264376,-121.796521));
184
+ // points.push(new GLatLng(36.26436,-121.796725));
185
+ // points.push(new GLatLng(36.26435,-121.79692));
186
+ // points.push(new GLatLng(36.264345,-121.797085));
187
+ // points.push(new GLatLng(36.264337,-121.79724));
188
+ // points.push(new GLatLng(36.264312,-121.797402));
189
+ // points.push(new GLatLng(36.264307,-121.797531));
190
+ points.push(new GLatLng(36.264288,-121.797729));
191
+ // points.push(new GLatLng(36.264204,-121.797916));
192
+ // points.push(new GLatLng(36.264189,-121.798056));
193
+ // points.push(new GLatLng(36.264207,-121.798193));
194
+ // points.push(new GLatLng(36.264215,-121.798353));
195
+ // points.push(new GLatLng(36.264166,-121.798555));
196
+ // points.push(new GLatLng(36.264141,-121.79872));
197
+ // points.push(new GLatLng(36.264139,-121.798871));
198
+ // points.push(new GLatLng(36.264149,-121.799057));
199
+ // points.push(new GLatLng(36.264137,-121.799213));
200
+ // points.push(new GLatLng(36.264107,-121.799392));
201
+ // points.push(new GLatLng(36.264101,-121.799568));
202
+ points.push(new GLatLng(36.264099,-121.799767));
203
+ // points.push(new GLatLng(36.264098,-121.799914));
204
+ // points.push(new GLatLng(36.264103,-121.800058));
205
+ // points.push(new GLatLng(36.264128,-121.800223));
206
+ // points.push(new GLatLng(36.264148,-121.800373));
207
+ // points.push(new GLatLng(36.264167,-121.800546));
208
+ // points.push(new GLatLng(36.264202,-121.800712));
209
+ // points.push(new GLatLng(36.264267,-121.800948));
210
+ // points.push(new GLatLng(36.264312,-121.801107));
211
+ // points.push(new GLatLng(36.264361,-121.801266));
212
+ // points.push(new GLatLng(36.264416,-121.80139));
213
+ // points.push(new GLatLng(36.264498,-121.80161));
214
+ points.push(new GLatLng(36.264557,-121.801791));
215
+ // points.push(new GLatLng(36.264641,-121.80194));
216
+ // points.push(new GLatLng(36.264743,-121.802107));
217
+ // points.push(new GLatLng(36.264797,-121.80223));
218
+ // points.push(new GLatLng(36.26492,-121.802389));
219
+ // points.push(new GLatLng(36.265014,-121.80252));
220
+ // points.push(new GLatLng(36.265115,-121.802636));
221
+ // points.push(new GLatLng(36.265267,-121.80276));
222
+ // points.push(new GLatLng(36.265402,-121.802871));
223
+ // points.push(new GLatLng(36.265515,-121.802988));
224
+ // points.push(new GLatLng(36.265629,-121.803077));
225
+ // points.push(new GLatLng(36.265769,-121.803163));
226
+ points.push(new GLatLng(36.265872,-121.803241));
227
+ // points.push(new GLatLng(36.265955,-121.803324));
228
+ // points.push(new GLatLng(36.266121,-121.803444));
229
+ // points.push(new GLatLng(36.266206,-121.803518));
230
+ // points.push(new GLatLng(36.266329,-121.803592));
231
+ // points.push(new GLatLng(36.266352,-121.803596));
232
+ // points.push(new GLatLng(36.266549,-121.803751));
233
+ // points.push(new GLatLng(36.266666,-121.803851));
234
+ // points.push(new GLatLng(36.266746,-121.803954));
235
+ // points.push(new GLatLng(36.266873,-121.804035));
236
+ // points.push(new GLatLng(36.267007,-121.804123));
237
+ // points.push(new GLatLng(36.267144,-121.804219));
238
+ points.push(new GLatLng(36.267264,-121.804318));
239
+ // points.push(new GLatLng(36.267392,-121.804429));
240
+ // points.push(new GLatLng(36.267518,-121.804525));
241
+ // points.push(new GLatLng(36.267659,-121.80464));
242
+ // points.push(new GLatLng(36.267809,-121.804809));
243
+ // points.push(new GLatLng(36.267949,-121.804977));
244
+ // points.push(new GLatLng(36.268036,-121.805095));
245
+ // points.push(new GLatLng(36.268153,-121.805283));
246
+ // points.push(new GLatLng(36.268212,-121.805383));
247
+ // points.push(new GLatLng(36.268275,-121.805536));
248
+ // points.push(new GLatLng(36.268333,-121.80569));
249
+ // points.push(new GLatLng(36.268384,-121.805863));
250
+ points.push(new GLatLng(36.268417,-121.806071));
251
+ // points.push(new GLatLng(36.268437,-121.806096));
252
+ // points.push(new GLatLng(36.268492,-121.806224));
253
+ // points.push(new GLatLng(36.268542,-121.806409));
254
+ // points.push(new GLatLng(36.268607,-121.806558));
255
+ // points.push(new GLatLng(36.268681,-121.806665));
256
+ // points.push(new GLatLng(36.268793,-121.806783));
257
+ // points.push(new GLatLng(36.268885,-121.80691));
258
+ // points.push(new GLatLng(36.268964,-121.806986));
259
+ // points.push(new GLatLng(36.269113,-121.807168));
260
+ // points.push(new GLatLng(36.26921,-121.807265));
261
+ // points.push(new GLatLng(36.269336,-121.807389));
262
+ points.push(new GLatLng(36.269495,-121.807519));
263
+ // points.push(new GLatLng(36.269578,-121.807612));
264
+ // points.push(new GLatLng(36.269744,-121.807698));
265
+ // points.push(new GLatLng(36.269856,-121.807751));
266
+ // points.push(new GLatLng(36.269993,-121.807802));
267
+ // points.push(new GLatLng(36.270163,-121.80789));
268
+ // points.push(new GLatLng(36.270322,-121.80796));
269
+ // points.push(new GLatLng(36.27047,-121.808024));
270
+ // points.push(new GLatLng(36.270648,-121.80811));
271
+ // points.push(new GLatLng(36.27078,-121.80818));
272
+ // points.push(new GLatLng(36.270889,-121.808315));
273
+ // points.push(new GLatLng(36.271001,-121.808425));
274
+ points.push(new GLatLng(36.271133,-121.808554));
275
+ // points.push(new GLatLng(36.271253,-121.808685));
276
+ // points.push(new GLatLng(36.271348,-121.808802));
277
+ // points.push(new GLatLng(36.271467,-121.808983));
278
+ // points.push(new GLatLng(36.271545,-121.809194));
279
+ // points.push(new GLatLng(36.271624,-121.809315));
280
+ // points.push(new GLatLng(36.271698,-121.809459));
281
+ // points.push(new GLatLng(36.271795,-121.809675));
282
+ // points.push(new GLatLng(36.271828,-121.809886));
283
+ // points.push(new GLatLng(36.271875,-121.810023));
284
+ // points.push(new GLatLng(36.271947,-121.810168));
285
+ // points.push(new GLatLng(36.272021,-121.810305));
286
+ points.push(new GLatLng(36.272061,-121.81041));
287
+ // points.push(new GLatLng(36.272104,-121.810509));
288
+ // points.push(new GLatLng(36.272201,-121.810689));
289
+ // points.push(new GLatLng(36.272237,-121.810827));
290
+ // points.push(new GLatLng(36.272309,-121.81096));
291
+ // points.push(new GLatLng(36.272385,-121.811107));
292
+ // points.push(new GLatLng(36.272472,-121.811273));
293
+ // points.push(new GLatLng(36.272543,-121.811411));
294
+ // points.push(new GLatLng(36.272582,-121.811532));
295
+ // points.push(new GLatLng(36.27266,-121.811694));
296
+ // points.push(new GLatLng(36.272732,-121.811893));
297
+ // points.push(new GLatLng(36.272752,-121.812013));
298
+ points.push(new GLatLng(36.272801,-121.812182));
299
+ // points.push(new GLatLng(36.272842,-121.812361));
300
+ // points.push(new GLatLng(36.27287,-121.812637));
301
+ // points.push(new GLatLng(36.272857,-121.812841));
302
+ // points.push(new GLatLng(36.272856,-121.813007));
303
+ // points.push(new GLatLng(36.272854,-121.813174));
304
+ // points.push(new GLatLng(36.27285,-121.813241));
305
+ // points.push(new GLatLng(36.272837,-121.813365));
306
+ // points.push(new GLatLng(36.272781,-121.813575));
307
+ // points.push(new GLatLng(36.272758,-121.813738));
308
+ // points.push(new GLatLng(36.272722,-121.813867));
309
+ // points.push(new GLatLng(36.272667,-121.814143));
310
+ points.push(new GLatLng(36.272639,-121.814302));
311
+ // points.push(new GLatLng(36.272597,-121.814479));
312
+ // points.push(new GLatLng(36.27259,-121.814653));
313
+ // points.push(new GLatLng(36.272565,-121.81483));
314
+ // points.push(new GLatLng(36.272555,-121.814994));
315
+ // points.push(new GLatLng(36.272554,-121.815148));
316
+ // points.push(new GLatLng(36.272571,-121.815318));
317
+ // points.push(new GLatLng(36.272591,-121.815478));
318
+ // points.push(new GLatLng(36.272609,-121.815635));
319
+ // points.push(new GLatLng(36.272617,-121.815806));
320
+ // points.push(new GLatLng(36.272624,-121.815955));
321
+ // points.push(new GLatLng(36.272637,-121.816093));
322
+ points.push(new GLatLng(36.272687,-121.81625));
323
+ // points.push(new GLatLng(36.272732,-121.816409));
324
+ // points.push(new GLatLng(36.272799,-121.816613));
325
+ // points.push(new GLatLng(36.272828,-121.816802));
326
+ // points.push(new GLatLng(36.272881,-121.816961));
327
+ // points.push(new GLatLng(36.272938,-121.817111));
328
+ // points.push(new GLatLng(36.273015,-121.817255));
329
+ // points.push(new GLatLng(36.273097,-121.817401));
330
+ // points.push(new GLatLng(36.273166,-121.817537));
331
+ // points.push(new GLatLng(36.273252,-121.817678));
332
+ // points.push(new GLatLng(36.273332,-121.817793));
333
+ // points.push(new GLatLng(36.273427,-121.817863));
334
+ points.push(new GLatLng(36.273514,-121.817985));
335
+ // points.push(new GLatLng(36.273621,-121.818086));
336
+ // points.push(new GLatLng(36.273703,-121.818183));
337
+ // points.push(new GLatLng(36.273786,-121.818261));
338
+ // points.push(new GLatLng(36.273885,-121.818343));
339
+ // points.push(new GLatLng(36.273987,-121.81843));
340
+ // points.push(new GLatLng(36.274145,-121.81856));
341
+ // points.push(new GLatLng(36.274277,-121.818667));
342
+ // points.push(new GLatLng(36.274432,-121.818749));
343
+ // points.push(new GLatLng(36.274554,-121.818841));
344
+ // points.push(new GLatLng(36.27467,-121.818967));
345
+ // points.push(new GLatLng(36.274767,-121.819026));
346
+ points.push(new GLatLng(36.274811,-121.819098));
347
+ // points.push(new GLatLng(36.274909,-121.819263));
348
+ // points.push(new GLatLng(36.274951,-121.819331));
349
+ // points.push(new GLatLng(36.275062,-121.819583));
350
+ // points.push(new GLatLng(36.275142,-121.819769));
351
+ // points.push(new GLatLng(36.275184,-121.819945));
352
+ // points.push(new GLatLng(36.275239,-121.820149));
353
+ // points.push(new GLatLng(36.275307,-121.820332));
354
+ // points.push(new GLatLng(36.275371,-121.820487));
355
+ // points.push(new GLatLng(36.275412,-121.82065));
356
+ // points.push(new GLatLng(36.275441,-121.820864));
357
+ // points.push(new GLatLng(36.275458,-121.821014));
358
+ points.push(new GLatLng(36.275479,-121.821176));
359
+ // points.push(new GLatLng(36.275494,-121.821343));
360
+ // points.push(new GLatLng(36.275498,-121.821475));
361
+ // points.push(new GLatLng(36.275497,-121.821629));
362
+ // points.push(new GLatLng(36.275492,-121.821765));
363
+ // points.push(new GLatLng(36.275474,-121.821979));
364
+ // points.push(new GLatLng(36.27546,-121.822173));
365
+ // points.push(new GLatLng(36.275466,-121.822366));
366
+ // points.push(new GLatLng(36.275479,-121.822498));
367
+ // points.push(new GLatLng(36.275486,-121.822709));
368
+ // points.push(new GLatLng(36.275468,-121.822937));
369
+ // points.push(new GLatLng(36.275487,-121.823117));
370
+ points.push(new GLatLng(36.275517,-121.823342));
371
+ // points.push(new GLatLng(36.275545,-121.823519));
372
+ // points.push(new GLatLng(36.275582,-121.823697));
373
+ // points.push(new GLatLng(36.275601,-121.823807));
374
+ // points.push(new GLatLng(36.275649,-121.824012));
375
+ // points.push(new GLatLng(36.275701,-121.824217));
376
+ // points.push(new GLatLng(36.275759,-121.824401));
377
+ // points.push(new GLatLng(36.275806,-121.82454));
378
+ // points.push(new GLatLng(36.275853,-121.824651));
379
+ // points.push(new GLatLng(36.275946,-121.824876));
380
+ // points.push(new GLatLng(36.276038,-121.825054));
381
+ // points.push(new GLatLng(36.276132,-121.82523));
382
+ points.push(new GLatLng(36.276252,-121.825426));
383
+ // points.push(new GLatLng(36.276351,-121.825551));
384
+ // points.push(new GLatLng(36.276465,-121.825712));
385
+ // points.push(new GLatLng(36.276602,-121.825898));
386
+ // points.push(new GLatLng(36.276713,-121.826063));
387
+ // points.push(new GLatLng(36.276805,-121.826206));
388
+ // points.push(new GLatLng(36.276895,-121.826333));
389
+ // points.push(new GLatLng(36.277021,-121.826499));
390
+ // points.push(new GLatLng(36.277128,-121.826646));
391
+ // points.push(new GLatLng(36.27723,-121.826796));
392
+ // points.push(new GLatLng(36.277303,-121.826887));
393
+ // points.push(new GLatLng(36.277388,-121.826997));
394
+ points.push(new GLatLng(36.277461,-121.827097));
395
+ // points.push(new GLatLng(36.277558,-121.827191));
396
+ // points.push(new GLatLng(36.277629,-121.827297));
397
+ // points.push(new GLatLng(36.277687,-121.827364));
398
+ // points.push(new GLatLng(36.277753,-121.827466));
399
+ // points.push(new GLatLng(36.277835,-121.827528));
400
+ // points.push(new GLatLng(36.277911,-121.827591));
401
+ // points.push(new GLatLng(36.277922,-121.827607));
402
+ // points.push(new GLatLng(36.277983,-121.827691));
403
+ // points.push(new GLatLng(36.278028,-121.827759));
404
+ // points.push(new GLatLng(36.278074,-121.827844));
405
+ // points.push(new GLatLng(36.278154,-121.827944));
406
+ points.push(new GLatLng(36.278209,-121.828016));
407
+ // points.push(new GLatLng(36.278236,-121.828044));
408
+ // points.push(new GLatLng(36.278299,-121.828132));
409
+ // points.push(new GLatLng(36.278437,-121.82828));
410
+ // points.push(new GLatLng(36.278532,-121.828405));
411
+ // points.push(new GLatLng(36.278637,-121.82854));
412
+ // points.push(new GLatLng(36.278718,-121.82868));
413
+ // points.push(new GLatLng(36.278802,-121.828821));
414
+ // points.push(new GLatLng(36.278909,-121.828987));
415
+ // points.push(new GLatLng(36.279001,-121.829123));
416
+ // points.push(new GLatLng(36.279116,-121.829262));
417
+ // points.push(new GLatLng(36.279234,-121.82942));
418
+ points.push(new GLatLng(36.27937,-121.829603));
419
+ // points.push(new GLatLng(36.279523,-121.829822));
420
+ // points.push(new GLatLng(36.279642,-121.829965));
421
+ // points.push(new GLatLng(36.279802,-121.830173));
422
+ // points.push(new GLatLng(36.279924,-121.830323));
423
+ // points.push(new GLatLng(36.280057,-121.830507));
424
+ // points.push(new GLatLng(36.280174,-121.830675));
425
+ // points.push(new GLatLng(36.280323,-121.830888));
426
+ // points.push(new GLatLng(36.280462,-121.831077));
427
+ // points.push(new GLatLng(36.280559,-121.83121));
428
+ // points.push(new GLatLng(36.280633,-121.831321));
429
+ // points.push(new GLatLng(36.280774,-121.831499));
430
+ points.push(new GLatLng(36.280864,-121.831617));
431
+ // points.push(new GLatLng(36.28097,-121.831772));
432
+ // points.push(new GLatLng(36.281087,-121.831923));
433
+ // points.push(new GLatLng(36.281196,-121.832068));
434
+ // points.push(new GLatLng(36.281253,-121.832144));
435
+ // points.push(new GLatLng(36.281327,-121.832219));
436
+ // points.push(new GLatLng(36.281441,-121.832373));
437
+ // points.push(new GLatLng(36.281563,-121.832547));
438
+ // points.push(new GLatLng(36.281671,-121.832695));
439
+ // points.push(new GLatLng(36.281785,-121.832845));
440
+ // points.push(new GLatLng(36.281891,-121.83299));
441
+ // points.push(new GLatLng(36.281983,-121.833148));
442
+ points.push(new GLatLng(36.28207,-121.83327));
443
+ // points.push(new GLatLng(36.282167,-121.833412));
444
+ // points.push(new GLatLng(36.282229,-121.833541));
445
+ // points.push(new GLatLng(36.282305,-121.83372));
446
+ // points.push(new GLatLng(36.282395,-121.833925));
447
+ // points.push(new GLatLng(36.282481,-121.834135));
448
+ // points.push(new GLatLng(36.282535,-121.834289));
449
+ // points.push(new GLatLng(36.282583,-121.834441));
450
+ // points.push(new GLatLng(36.282637,-121.834592));
451
+ // points.push(new GLatLng(36.282695,-121.834752));
452
+ // points.push(new GLatLng(36.282751,-121.834941));
453
+ // points.push(new GLatLng(36.282807,-121.835096));
454
+ points.push(new GLatLng(36.282878,-121.835287));
455
+ // points.push(new GLatLng(36.282943,-121.835472));
456
+ // points.push(new GLatLng(36.282988,-121.835634));
457
+ // points.push(new GLatLng(36.283043,-121.835786));
458
+ // points.push(new GLatLng(36.283083,-121.835975));
459
+ // points.push(new GLatLng(36.283142,-121.836178));
460
+ // points.push(new GLatLng(36.283184,-121.836337));
461
+ // points.push(new GLatLng(36.28325,-121.836502));
462
+ // points.push(new GLatLng(36.283315,-121.836732));
463
+ // points.push(new GLatLng(36.283362,-121.836887));
464
+ // points.push(new GLatLng(36.283428,-121.837094));
465
+ // points.push(new GLatLng(36.283496,-121.837301));
466
+ points.push(new GLatLng(36.283544,-121.837455));
467
+ // points.push(new GLatLng(36.28359,-121.837606));
468
+ // points.push(new GLatLng(36.283673,-121.837845));
469
+ // points.push(new GLatLng(36.283748,-121.838057));
470
+ // points.push(new GLatLng(36.283814,-121.838262));
471
+ // points.push(new GLatLng(36.283867,-121.838413));
472
+ // points.push(new GLatLng(36.283919,-121.838599));
473
+ // points.push(new GLatLng(36.283966,-121.838755));
474
+ // points.push(new GLatLng(36.284006,-121.838869));
475
+ // points.push(new GLatLng(36.284083,-121.839098));
476
+ // points.push(new GLatLng(36.284158,-121.839289));
477
+ // points.push(new GLatLng(36.284252,-121.83944));
478
+ points.push(new GLatLng(36.284299,-121.839529));
479
+ // points.push(new GLatLng(36.284382,-121.839678));
480
+ // points.push(new GLatLng(36.284426,-121.839769));
481
+ // points.push(new GLatLng(36.284489,-121.839849));
482
+ // points.push(new GLatLng(36.28457,-121.839964));
483
+ // points.push(new GLatLng(36.284657,-121.840092));
484
+ // points.push(new GLatLng(36.284753,-121.840201));
485
+ // points.push(new GLatLng(36.284902,-121.840361));
486
+ // points.push(new GLatLng(36.285033,-121.840489));
487
+ // points.push(new GLatLng(36.285171,-121.8406));
488
+ // points.push(new GLatLng(36.28531,-121.840702));
489
+ // points.push(new GLatLng(36.285485,-121.840804));
490
+ points.push(new GLatLng(36.285657,-121.840913));
491
+ // points.push(new GLatLng(36.285813,-121.840991));
492
+ // points.push(new GLatLng(36.28594,-121.841051));
493
+ // points.push(new GLatLng(36.28614,-121.841171));
494
+ // points.push(new GLatLng(36.286286,-121.841259));
495
+ // points.push(new GLatLng(36.28643,-121.841356));
496
+ // points.push(new GLatLng(36.286596,-121.841481));
497
+ // points.push(new GLatLng(36.286712,-121.841576));
498
+ // points.push(new GLatLng(36.286868,-121.841716));
499
+ // points.push(new GLatLng(36.287,-121.841833));
500
+ // points.push(new GLatLng(36.28717,-121.842012));
501
+ // points.push(new GLatLng(36.287293,-121.842146));
502
+ points.push(new GLatLng(36.287428,-121.842315));
503
+ // points.push(new GLatLng(36.287565,-121.842482));
504
+ // points.push(new GLatLng(36.287697,-121.842671));
505
+ // points.push(new GLatLng(36.287832,-121.842893));
506
+ // points.push(new GLatLng(36.287943,-121.843103));
507
+ // points.push(new GLatLng(36.288036,-121.843284));
508
+ // points.push(new GLatLng(36.288141,-121.843486));
509
+ // points.push(new GLatLng(36.28824,-121.8437));
510
+ // points.push(new GLatLng(36.28833,-121.843919));
511
+ // points.push(new GLatLng(36.288433,-121.844172));
512
+ // points.push(new GLatLng(36.288506,-121.844409));
513
+ // points.push(new GLatLng(36.288557,-121.844613));
514
+ points.push(new GLatLng(36.288608,-121.844808));
515
+ // points.push(new GLatLng(36.288656,-121.845033));
516
+ // points.push(new GLatLng(36.288697,-121.845266));
517
+ // points.push(new GLatLng(36.288725,-121.845451));
518
+ // points.push(new GLatLng(36.288744,-121.845608));
519
+ // points.push(new GLatLng(36.288756,-121.845771));
520
+ // points.push(new GLatLng(36.288776,-121.845977));
521
+ // points.push(new GLatLng(36.288791,-121.846172));
522
+ // points.push(new GLatLng(36.288828,-121.846372));
523
+ // points.push(new GLatLng(36.288853,-121.846593));
524
+ // points.push(new GLatLng(36.288868,-121.846818));
525
+ // points.push(new GLatLng(36.288886,-121.84708));
526
+ points.push(new GLatLng(36.288891,-121.847221));
527
+ // points.push(new GLatLng(36.288897,-121.847423));
528
+ // points.push(new GLatLng(36.2889,-121.847625));
529
+ // points.push(new GLatLng(36.288902,-121.847847));
530
+ // points.push(new GLatLng(36.288899,-121.848025));
531
+ // points.push(new GLatLng(36.288886,-121.84827));
532
+ // points.push(new GLatLng(36.288873,-121.848479));
533
+ // points.push(new GLatLng(36.288857,-121.848671));
534
+ // points.push(new GLatLng(36.288849,-121.848923));
535
+ // points.push(new GLatLng(36.288843,-121.849169));
536
+ // points.push(new GLatLng(36.288849,-121.849411));
537
+ // points.push(new GLatLng(36.288845,-121.849655));
538
+ points.push(new GLatLng(36.288841,-121.849865));
539
+ // points.push(new GLatLng(36.288829,-121.850078));
540
+ // points.push(new GLatLng(36.288822,-121.85028));
541
+ // points.push(new GLatLng(36.288809,-121.850453));
542
+ // points.push(new GLatLng(36.288795,-121.85069));
543
+ // points.push(new GLatLng(36.288783,-121.850895));
544
+ // points.push(new GLatLng(36.288769,-121.851053));
545
+ // points.push(new GLatLng(36.288775,-121.85123));
546
+ // points.push(new GLatLng(36.28876,-121.851352));
547
+ // points.push(new GLatLng(36.288754,-121.851426));
548
+ // points.push(new GLatLng(36.288772,-121.851556));
549
+ // points.push(new GLatLng(36.28879,-121.851725));
550
+ points.push(new GLatLng(36.288791,-121.851925));
551
+ // points.push(new GLatLng(36.288795,-121.852132));
552
+ // points.push(new GLatLng(36.28881,-121.852339));
553
+ // points.push(new GLatLng(36.288839,-121.852582));
554
+ // points.push(new GLatLng(36.288881,-121.852815));
555
+ // points.push(new GLatLng(36.288934,-121.853047));
556
+ // points.push(new GLatLng(36.288986,-121.853245));
557
+ // points.push(new GLatLng(36.289055,-121.853483));
558
+ // points.push(new GLatLng(36.28912,-121.853672));
559
+ // points.push(new GLatLng(36.289198,-121.853883));
560
+ // points.push(new GLatLng(36.28932,-121.854153));
561
+ // points.push(new GLatLng(36.289408,-121.854331));
562
+ points.push(new GLatLng(36.289525,-121.854563));
563
+ // points.push(new GLatLng(36.289648,-121.854804));
564
+ // points.push(new GLatLng(36.289737,-121.85497));
565
+ // points.push(new GLatLng(36.289808,-121.855109));
566
+ // points.push(new GLatLng(36.2899,-121.855282));
567
+ // points.push(new GLatLng(36.290004,-121.855482));
568
+ // points.push(new GLatLng(36.290101,-121.85568));
569
+ // points.push(new GLatLng(36.290187,-121.855853));
570
+ // points.push(new GLatLng(36.290286,-121.856059));
571
+ // points.push(new GLatLng(36.290388,-121.85627));
572
+ // points.push(new GLatLng(36.290488,-121.856474));
573
+ // points.push(new GLatLng(36.290579,-121.856693));
574
+ points.push(new GLatLng(36.290676,-121.856891));
575
+ // points.push(new GLatLng(36.290774,-121.857091));
576
+ // points.push(new GLatLng(36.290883,-121.857329));
577
+ // points.push(new GLatLng(36.290985,-121.857532));
578
+ // points.push(new GLatLng(36.291083,-121.857733));
579
+ // points.push(new GLatLng(36.291163,-121.857911));
580
+ // points.push(new GLatLng(36.291248,-121.858106));
581
+ // points.push(new GLatLng(36.291322,-121.858246));
582
+ // points.push(new GLatLng(36.291423,-121.858449));
583
+ // points.push(new GLatLng(36.29151,-121.858617));
584
+ // points.push(new GLatLng(36.291612,-121.858815));
585
+ // points.push(new GLatLng(36.291714,-121.859015));
586
+ points.push(new GLatLng(36.291801,-121.859188));
587
+ // points.push(new GLatLng(36.291884,-121.859359));
588
+ // points.push(new GLatLng(36.291981,-121.859557));
589
+ // points.push(new GLatLng(36.292062,-121.859727));
590
+ // points.push(new GLatLng(36.292161,-121.859919));
591
+ // points.push(new GLatLng(36.292244,-121.860088));
592
+ // points.push(new GLatLng(36.292323,-121.860258));
593
+ // points.push(new GLatLng(36.292415,-121.860456));
594
+ // points.push(new GLatLng(36.292505,-121.860625));
595
+ // points.push(new GLatLng(36.292592,-121.860799));
596
+ // points.push(new GLatLng(36.292663,-121.860943));
597
+ // points.push(new GLatLng(36.292759,-121.861149));
598
+ points.push(new GLatLng(36.29284,-121.861316));
599
+ // points.push(new GLatLng(36.292927,-121.861482));
600
+ // points.push(new GLatLng(36.293026,-121.861678));
601
+ // points.push(new GLatLng(36.293124,-121.861863));
602
+ // points.push(new GLatLng(36.293192,-121.862003));
603
+ // points.push(new GLatLng(36.293275,-121.862174));
604
+ // points.push(new GLatLng(36.29334,-121.862312));
605
+ // points.push(new GLatLng(36.293416,-121.86249));
606
+ // points.push(new GLatLng(36.293478,-121.862629));
607
+ // points.push(new GLatLng(36.293566,-121.862814));
608
+ // points.push(new GLatLng(36.293673,-121.863027));
609
+ // points.push(new GLatLng(36.293767,-121.863232));
610
+ points.push(new GLatLng(36.293827,-121.863403));
611
+ // points.push(new GLatLng(36.293943,-121.863647));
612
+ // points.push(new GLatLng(36.294072,-121.863922));
613
+ // points.push(new GLatLng(36.294181,-121.86413));
614
+ // points.push(new GLatLng(36.294276,-121.864302));
615
+ // points.push(new GLatLng(36.294406,-121.864537));
616
+ // points.push(new GLatLng(36.294527,-121.864773));
617
+ // points.push(new GLatLng(36.294612,-121.86496));
618
+ // points.push(new GLatLng(36.294699,-121.865132));
619
+ // points.push(new GLatLng(36.294808,-121.865336));
620
+ // points.push(new GLatLng(36.294915,-121.865542));
621
+ // points.push(new GLatLng(36.295002,-121.865711));
622
+ points.push(new GLatLng(36.295085,-121.865891));
623
+ // points.push(new GLatLng(36.295186,-121.866097));
624
+ // points.push(new GLatLng(36.295266,-121.866275));
625
+ // points.push(new GLatLng(36.295378,-121.866501));
626
+ // points.push(new GLatLng(36.295464,-121.866677));
627
+ // points.push(new GLatLng(36.295527,-121.866821));
628
+ // points.push(new GLatLng(36.29563,-121.867045));
629
+ // points.push(new GLatLng(36.295724,-121.867244));
630
+ // points.push(new GLatLng(36.29582,-121.867443));
631
+ // points.push(new GLatLng(36.295913,-121.867634));
632
+ // points.push(new GLatLng(36.295993,-121.867829));
633
+ // points.push(new GLatLng(36.296101,-121.868053));
634
+ points.push(new GLatLng(36.296201,-121.86825));
635
+ // points.push(new GLatLng(36.296285,-121.868422));
636
+ // points.push(new GLatLng(36.296381,-121.868615));
637
+ // points.push(new GLatLng(36.296479,-121.868815));
638
+ // points.push(new GLatLng(36.296579,-121.869015));
639
+ // points.push(new GLatLng(36.296677,-121.869211));
640
+ // points.push(new GLatLng(36.296773,-121.869408));
641
+ // points.push(new GLatLng(36.296853,-121.869578));
642
+ // points.push(new GLatLng(36.296948,-121.869773));
643
+ // points.push(new GLatLng(36.297057,-121.869998));
644
+ // points.push(new GLatLng(36.297166,-121.870204));
645
+ // points.push(new GLatLng(36.297247,-121.87037));
646
+ points.push(new GLatLng(36.297343,-121.870555));
647
+ // points.push(new GLatLng(36.297437,-121.870746));
648
+ // points.push(new GLatLng(36.297535,-121.870942));
649
+ // points.push(new GLatLng(36.297632,-121.871134));
650
+ // points.push(new GLatLng(36.297711,-121.871302));
651
+ // points.push(new GLatLng(36.297794,-121.871465));
652
+ // points.push(new GLatLng(36.297888,-121.871653));
653
+ // points.push(new GLatLng(36.297985,-121.871847));
654
+ // points.push(new GLatLng(36.298063,-121.872015));
655
+ // points.push(new GLatLng(36.298142,-121.872193));
656
+ // points.push(new GLatLng(36.298239,-121.872386));
657
+ // points.push(new GLatLng(36.298333,-121.872588));
658
+ points.push(new GLatLng(36.298472,-121.872879));
659
+ // points.push(new GLatLng(36.298587,-121.873111));
660
+ // points.push(new GLatLng(36.298684,-121.873315));
661
+ // points.push(new GLatLng(36.298771,-121.873499));
662
+ // points.push(new GLatLng(36.298886,-121.873731));
663
+ // points.push(new GLatLng(36.299001,-121.873966));
664
+ // points.push(new GLatLng(36.299119,-121.8742));
665
+ // points.push(new GLatLng(36.299248,-121.87447));
666
+ // points.push(new GLatLng(36.299366,-121.87471));
667
+ // points.push(new GLatLng(36.299466,-121.874917));
668
+ // points.push(new GLatLng(36.299573,-121.875135));
669
+ // points.push(new GLatLng(36.299661,-121.875322));
670
+ points.push(new GLatLng(36.299765,-121.875537));
671
+ // points.push(new GLatLng(36.299889,-121.875779));
672
+ // points.push(new GLatLng(36.299995,-121.875988));
673
+ // points.push(new GLatLng(36.300122,-121.876225));
674
+ // points.push(new GLatLng(36.300262,-121.876489));
675
+ // points.push(new GLatLng(36.30039,-121.876724));
676
+ // points.push(new GLatLng(36.300526,-121.876964));
677
+ // points.push(new GLatLng(36.300649,-121.877167));
678
+ // points.push(new GLatLng(36.300755,-121.877342));
679
+ // points.push(new GLatLng(36.300858,-121.877507));
680
+ // points.push(new GLatLng(36.300997,-121.877718));
681
+ // points.push(new GLatLng(36.30112,-121.877909));
682
+ points.push(new GLatLng(36.301249,-121.878094));
683
+ // points.push(new GLatLng(36.301375,-121.878276));
684
+ // points.push(new GLatLng(36.301473,-121.878399));
685
+ // points.push(new GLatLng(36.301589,-121.878544));
686
+ // points.push(new GLatLng(36.301705,-121.878694));
687
+ // points.push(new GLatLng(36.301838,-121.878872));
688
+ // points.push(new GLatLng(36.301911,-121.878969));
689
+ // points.push(new GLatLng(36.301933,-121.878987));
690
+ // points.push(new GLatLng(36.302067,-121.879146));
691
+ // points.push(new GLatLng(36.302162,-121.879259));
692
+ // points.push(new GLatLng(36.302274,-121.87939));
693
+ // points.push(new GLatLng(36.302429,-121.879567));
694
+ points.push(new GLatLng(36.302523,-121.879679));
695
+ // points.push(new GLatLng(36.302659,-121.879839));
696
+ // points.push(new GLatLng(36.302819,-121.88001));
697
+ // points.push(new GLatLng(36.302915,-121.880103));
698
+ // points.push(new GLatLng(36.303065,-121.880231));
699
+ // points.push(new GLatLng(36.30316,-121.88033));
700
+ // points.push(new GLatLng(36.303249,-121.880401));
701
+ // points.push(new GLatLng(36.303352,-121.88049));
702
+ // points.push(new GLatLng(36.303461,-121.880575));
703
+ // points.push(new GLatLng(36.303604,-121.880686));
704
+ // points.push(new GLatLng(36.30372,-121.880777));
705
+ // points.push(new GLatLng(36.303814,-121.880872));
706
+ points.push(new GLatLng(36.303926,-121.880977));
707
+ // points.push(new GLatLng(36.304011,-121.881055));
708
+ // points.push(new GLatLng(36.304098,-121.881138));
709
+ // points.push(new GLatLng(36.304267,-121.881288));
710
+ // points.push(new GLatLng(36.304482,-121.881479));
711
+ // points.push(new GLatLng(36.304596,-121.881588));
712
+ // points.push(new GLatLng(36.304752,-121.881727));
713
+ // points.push(new GLatLng(36.304906,-121.881875));
714
+ // points.push(new GLatLng(36.305086,-121.88204));
715
+ // points.push(new GLatLng(36.305271,-121.882212));
716
+ // points.push(new GLatLng(36.305408,-121.882335));
717
+ // points.push(new GLatLng(36.305597,-121.882493));
718
+ points.push(new GLatLng(36.305763,-121.88264));
719
+ // points.push(new GLatLng(36.305879,-121.882749));
720
+ // points.push(new GLatLng(36.306038,-121.882912));
721
+ // points.push(new GLatLng(36.306176,-121.88305));
722
+ // points.push(new GLatLng(36.306335,-121.883203));
723
+ // points.push(new GLatLng(36.30647,-121.883327));
724
+ // points.push(new GLatLng(36.306602,-121.883465));
725
+ // points.push(new GLatLng(36.306763,-121.883614));
726
+ // points.push(new GLatLng(36.306946,-121.88378));
727
+ // points.push(new GLatLng(36.307085,-121.883909));
728
+ // points.push(new GLatLng(36.307228,-121.884024));
729
+ // points.push(new GLatLng(36.307367,-121.88414));
730
+ points.push(new GLatLng(36.307527,-121.884269));
731
+ // points.push(new GLatLng(36.307692,-121.884401));
732
+ // points.push(new GLatLng(36.307855,-121.884548));
733
+ // points.push(new GLatLng(36.307998,-121.884677));
734
+ // points.push(new GLatLng(36.308139,-121.884814));
735
+ // points.push(new GLatLng(36.308304,-121.884957));
736
+ // points.push(new GLatLng(36.308464,-121.885106));
737
+ // points.push(new GLatLng(36.308577,-121.885206));
738
+ // points.push(new GLatLng(36.308729,-121.885343));
739
+ // points.push(new GLatLng(36.308887,-121.885482));
740
+ // points.push(new GLatLng(36.309045,-121.885621));
741
+ // points.push(new GLatLng(36.309183,-121.885751));
742
+ points.push(new GLatLng(36.309317,-121.885866));
743
+ // points.push(new GLatLng(36.309474,-121.88601));
744
+ // points.push(new GLatLng(36.309605,-121.886116));
745
+ // points.push(new GLatLng(36.309741,-121.886217));
746
+ // points.push(new GLatLng(36.309866,-121.886323));
747
+ // points.push(new GLatLng(36.309938,-121.886378));
748
+ // points.push(new GLatLng(36.309975,-121.886401));
749
+ // points.push(new GLatLng(36.31004,-121.886444));
750
+ // points.push(new GLatLng(36.310091,-121.88649));
751
+ // points.push(new GLatLng(36.310136,-121.886522));
752
+ // points.push(new GLatLng(36.310283,-121.886643));
753
+ // points.push(new GLatLng(36.310384,-121.886731));
754
+ points.push(new GLatLng(36.310483,-121.886823));
755
+ // points.push(new GLatLng(36.310598,-121.886897));
756
+ // points.push(new GLatLng(36.31075,-121.887033));
757
+ // points.push(new GLatLng(36.310902,-121.887153));
758
+ // points.push(new GLatLng(36.311071,-121.887311));
759
+ // points.push(new GLatLng(36.31118,-121.887412));
760
+ // points.push(new GLatLng(36.311288,-121.88752));
761
+ // points.push(new GLatLng(36.31145,-121.887654));
762
+ // points.push(new GLatLng(36.311578,-121.887766));
763
+ // points.push(new GLatLng(36.311713,-121.88788));
764
+ // points.push(new GLatLng(36.311828,-121.887968));
765
+ // points.push(new GLatLng(36.311982,-121.888111));
766
+ points.push(new GLatLng(36.312109,-121.888223));
767
+ // points.push(new GLatLng(36.312242,-121.888336));
768
+ // points.push(new GLatLng(36.312376,-121.888461));
769
+ // points.push(new GLatLng(36.312525,-121.888596));
770
+ // points.push(new GLatLng(36.312651,-121.888729));
771
+ // points.push(new GLatLng(36.312756,-121.888822));
772
+ // points.push(new GLatLng(36.312896,-121.888941));
773
+ // points.push(new GLatLng(36.313055,-121.889079));
774
+ // points.push(new GLatLng(36.313187,-121.889202));
775
+ // points.push(new GLatLng(36.313363,-121.889357));
776
+ // points.push(new GLatLng(36.313522,-121.889477));
777
+ // points.push(new GLatLng(36.313674,-121.889618));
778
+ points.push(new GLatLng(36.313809,-121.889727));
779
+ // points.push(new GLatLng(36.313957,-121.88986));
780
+ // points.push(new GLatLng(36.314087,-121.88997));
781
+ // points.push(new GLatLng(36.314242,-121.890102));
782
+ // points.push(new GLatLng(36.314373,-121.890217));
783
+ // points.push(new GLatLng(36.314509,-121.890329));
784
+ // points.push(new GLatLng(36.314654,-121.890467));
785
+ // points.push(new GLatLng(36.314803,-121.890601));
786
+ // points.push(new GLatLng(36.314952,-121.890732));
787
+ // points.push(new GLatLng(36.315084,-121.890851));
788
+ // points.push(new GLatLng(36.31523,-121.890983));
789
+ // points.push(new GLatLng(36.315383,-121.891098));
790
+ points.push(new GLatLng(36.31554,-121.891196));
791
+ // points.push(new GLatLng(36.315702,-121.891282));
792
+ // points.push(new GLatLng(36.315817,-121.891341));
793
+ // points.push(new GLatLng(36.315906,-121.891382));
794
+ // points.push(new GLatLng(36.316047,-121.891441));
795
+ // points.push(new GLatLng(36.316167,-121.891492));
796
+ // points.push(new GLatLng(36.316304,-121.891539));
797
+ // points.push(new GLatLng(36.316462,-121.891609));
798
+ // points.push(new GLatLng(36.316627,-121.891675));
799
+ // points.push(new GLatLng(36.316767,-121.891725));
800
+ // points.push(new GLatLng(36.316927,-121.891801));
801
+ // points.push(new GLatLng(36.317091,-121.891865));
802
+ points.push(new GLatLng(36.317229,-121.891917));
803
+ // points.push(new GLatLng(36.317366,-121.891964));
804
+ // points.push(new GLatLng(36.317528,-121.892023));
805
+ // points.push(new GLatLng(36.31772,-121.892082));
806
+ // points.push(new GLatLng(36.317898,-121.892127));
807
+ // points.push(new GLatLng(36.318041,-121.892176));
808
+ // points.push(new GLatLng(36.318159,-121.89222));
809
+ // points.push(new GLatLng(36.318276,-121.892253));
810
+ // points.push(new GLatLng(36.31842,-121.892303));
811
+ // points.push(new GLatLng(36.318587,-121.892362));
812
+ // points.push(new GLatLng(36.318721,-121.892413));
813
+ // points.push(new GLatLng(36.318838,-121.892459));
814
+ points.push(new GLatLng(36.319,-121.892494));
815
+ // points.push(new GLatLng(36.319093,-121.892513));
816
+ // points.push(new GLatLng(36.319139,-121.892533));
817
+ // points.push(new GLatLng(36.319248,-121.892553));
818
+ // points.push(new GLatLng(36.319351,-121.892578));
819
+ // points.push(new GLatLng(36.319424,-121.892602));
820
+ // points.push(new GLatLng(36.319491,-121.892613));
821
+ // points.push(new GLatLng(36.319518,-121.892621));
822
+ // points.push(new GLatLng(36.319617,-121.892607));
823
+ // points.push(new GLatLng(36.319738,-121.892603));
824
+ // points.push(new GLatLng(36.319901,-121.892577));
825
+ // points.push(new GLatLng(36.320102,-121.892551));
826
+ points.push(new GLatLng(36.320235,-121.892547));
827
+ // points.push(new GLatLng(36.32044,-121.892542));
828
+ // points.push(new GLatLng(36.320638,-121.89256));
829
+ // points.push(new GLatLng(36.320782,-121.892599));
830
+ // points.push(new GLatLng(36.320946,-121.892664));
831
+ // points.push(new GLatLng(36.321135,-121.892754));
832
+ // points.push(new GLatLng(36.321273,-121.892826));
833
+ // points.push(new GLatLng(36.321456,-121.892923));
834
+ // points.push(new GLatLng(36.3216,-121.893009));
835
+ // points.push(new GLatLng(36.321739,-121.893086));
836
+ // points.push(new GLatLng(36.321865,-121.89313));
837
+ // points.push(new GLatLng(36.321987,-121.893172));
838
+ points.push(new GLatLng(36.322143,-121.893184));
839
+ // points.push(new GLatLng(36.322303,-121.893179));
840
+ // points.push(new GLatLng(36.322499,-121.893118));
841
+ // points.push(new GLatLng(36.32265,-121.893075));
842
+ // points.push(new GLatLng(36.322807,-121.893033));
843
+ // points.push(new GLatLng(36.322986,-121.893015));
844
+ // points.push(new GLatLng(36.323197,-121.893039));
845
+ // points.push(new GLatLng(36.323364,-121.89312));
846
+ // points.push(new GLatLng(36.323538,-121.893275));
847
+ // points.push(new GLatLng(36.323707,-121.893492));
848
+ // points.push(new GLatLng(36.323808,-121.893628));
849
+ // points.push(new GLatLng(36.323922,-121.893749));
850
+ points.push(new GLatLng(36.324051,-121.893834));
851
+ // points.push(new GLatLng(36.324222,-121.893903));
852
+ // points.push(new GLatLng(36.324361,-121.893919));
853
+ // points.push(new GLatLng(36.324559,-121.893904));
854
+ // points.push(new GLatLng(36.324728,-121.893886));
855
+ // points.push(new GLatLng(36.32492,-121.893824));
856
+ // points.push(new GLatLng(36.32508,-121.893759));
857
+ // points.push(new GLatLng(36.325221,-121.893736));
858
+ // points.push(new GLatLng(36.325427,-121.89373));
859
+ // points.push(new GLatLng(36.325638,-121.893767));
860
+ // points.push(new GLatLng(36.325826,-121.893869));
861
+ // points.push(new GLatLng(36.325981,-121.893984));
862
+ points.push(new GLatLng(36.326124,-121.894097));
863
+ // points.push(new GLatLng(36.32625,-121.894191));
864
+ // points.push(new GLatLng(36.326381,-121.894276));
865
+ // points.push(new GLatLng(36.326548,-121.894328));
866
+ // points.push(new GLatLng(36.326714,-121.894352));
867
+ // points.push(new GLatLng(36.326911,-121.894338));
868
+ // points.push(new GLatLng(36.327061,-121.894303));
869
+ // points.push(new GLatLng(36.327211,-121.894248));
870
+ // points.push(new GLatLng(36.327362,-121.894167));
871
+ // points.push(new GLatLng(36.327518,-121.894045));
872
+ // points.push(new GLatLng(36.327675,-121.893946));
873
+ // points.push(new GLatLng(36.327825,-121.893841));
874
+ points.push(new GLatLng(36.327951,-121.893754));
875
+ // points.push(new GLatLng(36.328105,-121.893645));
876
+ // points.push(new GLatLng(36.328262,-121.893542));
877
+ // points.push(new GLatLng(36.328415,-121.89344));
878
+ // points.push(new GLatLng(36.328596,-121.893311));
879
+ // points.push(new GLatLng(36.328754,-121.893186));
880
+ // points.push(new GLatLng(36.328919,-121.893073));
881
+ // points.push(new GLatLng(36.329062,-121.892971));
882
+ // points.push(new GLatLng(36.329205,-121.89287));
883
+ // points.push(new GLatLng(36.329365,-121.892763));
884
+ // points.push(new GLatLng(36.32951,-121.892653));
885
+ // points.push(new GLatLng(36.329625,-121.892566));
886
+ points.push(new GLatLng(36.32974,-121.892483));
887
+ // points.push(new GLatLng(36.329878,-121.89238));
888
+ // points.push(new GLatLng(36.330032,-121.892278));
889
+ // points.push(new GLatLng(36.330178,-121.892171));
890
+ // points.push(new GLatLng(36.330344,-121.89205));
891
+ // points.push(new GLatLng(36.330489,-121.891952));
892
+ // points.push(new GLatLng(36.330641,-121.891846));
893
+ // points.push(new GLatLng(36.330806,-121.891719));
894
+ // points.push(new GLatLng(36.330948,-121.891618));
895
+ // points.push(new GLatLng(36.331064,-121.89153));
896
+ // points.push(new GLatLng(36.331176,-121.89145));
897
+ // points.push(new GLatLng(36.331296,-121.89137));
898
+ points.push(new GLatLng(36.331437,-121.891269));
899
+ // points.push(new GLatLng(36.331541,-121.891211));
900
+ // points.push(new GLatLng(36.33165,-121.891111));
901
+ // points.push(new GLatLng(36.331823,-121.890943));
902
+ // points.push(new GLatLng(36.331926,-121.890787));
903
+ // points.push(new GLatLng(36.332018,-121.890577));
904
+ // points.push(new GLatLng(36.332067,-121.890379));
905
+ // points.push(new GLatLng(36.332073,-121.890167));
906
+ // points.push(new GLatLng(36.332075,-121.889981));
907
+ // points.push(new GLatLng(36.33204,-121.889688));
908
+ // points.push(new GLatLng(36.331979,-121.889411));
909
+ // points.push(new GLatLng(36.33193,-121.889199));
910
+ points.push(new GLatLng(36.331868,-121.888953));
911
+ // points.push(new GLatLng(36.331815,-121.888695));
912
+ // points.push(new GLatLng(36.33179,-121.888515));
913
+ // points.push(new GLatLng(36.331767,-121.888211));
914
+ // points.push(new GLatLng(36.331744,-121.888024));
915
+ // points.push(new GLatLng(36.331726,-121.887839));
916
+ // points.push(new GLatLng(36.331721,-121.887691));
917
+ // points.push(new GLatLng(36.331709,-121.887469));
918
+ // points.push(new GLatLng(36.331712,-121.887247));
919
+ // points.push(new GLatLng(36.331697,-121.887029));
920
+ // points.push(new GLatLng(36.331687,-121.886848));
921
+ // points.push(new GLatLng(36.331704,-121.886619));
922
+ points.push(new GLatLng(36.33172,-121.886445));
923
+ // points.push(new GLatLng(36.331756,-121.886272));
924
+ // points.push(new GLatLng(36.331805,-121.886143));
925
+ // points.push(new GLatLng(36.331887,-121.885963));
926
+ // points.push(new GLatLng(36.332012,-121.885776));
927
+ // points.push(new GLatLng(36.332133,-121.885636));
928
+ // points.push(new GLatLng(36.332283,-121.885519));
929
+ // points.push(new GLatLng(36.332499,-121.885416));
930
+ // points.push(new GLatLng(36.332664,-121.885369));
931
+ // points.push(new GLatLng(36.332893,-121.885342));
932
+ // points.push(new GLatLng(36.333089,-121.885361));
933
+ // points.push(new GLatLng(36.33325,-121.885407));
934
+ points.push(new GLatLng(36.333423,-121.885492));
935
+ // points.push(new GLatLng(36.333583,-121.885601));
936
+ // points.push(new GLatLng(36.333729,-121.885722));
937
+ // points.push(new GLatLng(36.33383,-121.885861));
938
+ // points.push(new GLatLng(36.333912,-121.886014));
939
+ // points.push(new GLatLng(36.334013,-121.886223));
940
+ // points.push(new GLatLng(36.334094,-121.8864));
941
+ // points.push(new GLatLng(36.334172,-121.886583));
942
+ // points.push(new GLatLng(36.334252,-121.886756));
943
+ // points.push(new GLatLng(36.334323,-121.88691));
944
+ // points.push(new GLatLng(36.334408,-121.887091));
945
+ // points.push(new GLatLng(36.334504,-121.88732));
946
+ points.push(new GLatLng(36.334566,-121.887472));
947
+ // points.push(new GLatLng(36.334641,-121.88765));
948
+ // points.push(new GLatLng(36.334712,-121.887825));
949
+ // points.push(new GLatLng(36.334752,-121.887956));
950
+ // points.push(new GLatLng(36.334825,-121.888159));
951
+ // points.push(new GLatLng(36.33488,-121.888346));
952
+ // points.push(new GLatLng(36.334925,-121.888509));
953
+ // points.push(new GLatLng(36.334976,-121.888664));
954
+ // points.push(new GLatLng(36.335042,-121.888876));
955
+ // points.push(new GLatLng(36.33509,-121.889035));
956
+ // points.push(new GLatLng(36.335153,-121.889218));
957
+ // points.push(new GLatLng(36.335222,-121.889399));
958
+ points.push(new GLatLng(36.335263,-121.889496));
959
+ // points.push(new GLatLng(36.335301,-121.889595));
960
+ // points.push(new GLatLng(36.335359,-121.889721));
961
+ // points.push(new GLatLng(36.335445,-121.889887));
962
+ // points.push(new GLatLng(36.335523,-121.890015));
963
+ // points.push(new GLatLng(36.335625,-121.890156));
964
+ // points.push(new GLatLng(36.335733,-121.890294));
965
+ // points.push(new GLatLng(36.335813,-121.890407));
966
+ // points.push(new GLatLng(36.335946,-121.890593));
967
+ // points.push(new GLatLng(36.336059,-121.890758));
968
+ // points.push(new GLatLng(36.336157,-121.890889));
969
+ // points.push(new GLatLng(36.336251,-121.891023));
970
+ points.push(new GLatLng(36.336338,-121.89116));
971
+ // points.push(new GLatLng(36.336434,-121.891286));
972
+ // points.push(new GLatLng(36.336529,-121.891414));
973
+ // points.push(new GLatLng(36.336651,-121.891511));
974
+ // points.push(new GLatLng(36.336753,-121.891571));
975
+ // points.push(new GLatLng(36.336886,-121.891623));
976
+ // points.push(new GLatLng(36.337021,-121.891657));
977
+ // points.push(new GLatLng(36.337185,-121.891661));
978
+ // points.push(new GLatLng(36.337375,-121.891641));
979
+ // points.push(new GLatLng(36.337538,-121.891616));
980
+ // points.push(new GLatLng(36.3377,-121.891569));
981
+ // points.push(new GLatLng(36.337829,-121.89151));
982
+ points.push(new GLatLng(36.337954,-121.891436));
983
+ // points.push(new GLatLng(36.338007,-121.891428));
984
+ // points.push(new GLatLng(36.338049,-121.89137));
985
+ // points.push(new GLatLng(36.338137,-121.891337));
986
+ // points.push(new GLatLng(36.338235,-121.891298));
987
+ // points.push(new GLatLng(36.33838,-121.891254));
988
+ // points.push(new GLatLng(36.338521,-121.891252));
989
+ // points.push(new GLatLng(36.338693,-121.891266));
990
+ // points.push(new GLatLng(36.33883,-121.891274));
991
+ // points.push(new GLatLng(36.339019,-121.891243));
992
+ // points.push(new GLatLng(36.33914,-121.891217));
993
+ // points.push(new GLatLng(36.33928,-121.891189));
994
+ points.push(new GLatLng(36.339446,-121.891154));
995
+ // points.push(new GLatLng(36.339566,-121.891131));
996
+ // points.push(new GLatLng(36.339728,-121.891093));
997
+ // points.push(new GLatLng(36.339852,-121.891038));
998
+ // points.push(new GLatLng(36.340008,-121.890967));
999
+ // points.push(new GLatLng(36.340178,-121.890865));
1000
+ // points.push(new GLatLng(36.340323,-121.890802));
1001
+ // points.push(new GLatLng(36.340507,-121.890765));
1002
+ // points.push(new GLatLng(36.340648,-121.890751));
1003
+ // points.push(new GLatLng(36.340799,-121.890747));
1004
+ // points.push(new GLatLng(36.340936,-121.89075));
1005
+ // points.push(new GLatLng(36.341072,-121.890779));
1006
+ points.push(new GLatLng(36.341199,-121.89086));
1007
+ // points.push(new GLatLng(36.341322,-121.890991));
1008
+ // points.push(new GLatLng(36.341458,-121.891113));
1009
+ // points.push(new GLatLng(36.34159,-121.891193));
1010
+ // points.push(new GLatLng(36.341725,-121.891247));
1011
+ // points.push(new GLatLng(36.341862,-121.891285));
1012
+ // points.push(new GLatLng(36.342015,-121.891335));
1013
+ // points.push(new GLatLng(36.342173,-121.891389));
1014
+ // points.push(new GLatLng(36.342322,-121.891472));
1015
+ // points.push(new GLatLng(36.342452,-121.891587));
1016
+ // points.push(new GLatLng(36.342577,-121.891698));
1017
+ // points.push(new GLatLng(36.342706,-121.891804));
1018
+ points.push(new GLatLng(36.342851,-121.891905));
1019
+ // points.push(new GLatLng(36.342985,-121.891937));
1020
+ // points.push(new GLatLng(36.343166,-121.891944));
1021
+ // points.push(new GLatLng(36.343326,-121.891913));
1022
+ // points.push(new GLatLng(36.343484,-121.891868));
1023
+ // points.push(new GLatLng(36.34364,-121.891857));
1024
+ // points.push(new GLatLng(36.343771,-121.891857));
1025
+ // points.push(new GLatLng(36.343927,-121.891887));
1026
+ // points.push(new GLatLng(36.344076,-121.891945));
1027
+ // points.push(new GLatLng(36.344221,-121.892032));
1028
+ // points.push(new GLatLng(36.34434,-121.892161));
1029
+ // points.push(new GLatLng(36.344447,-121.892349));
1030
+ points.push(new GLatLng(36.344533,-121.892555));
1031
+ // points.push(new GLatLng(36.344598,-121.892704));
1032
+ // points.push(new GLatLng(36.3447,-121.892898));
1033
+ // points.push(new GLatLng(36.3448,-121.893053));
1034
+ // points.push(new GLatLng(36.344907,-121.893194));
1035
+ // points.push(new GLatLng(36.345025,-121.893291));
1036
+ // points.push(new GLatLng(36.345178,-121.893373));
1037
+ // points.push(new GLatLng(36.345309,-121.89344));
1038
+ // points.push(new GLatLng(36.345395,-121.893505));
1039
+ // points.push(new GLatLng(36.345454,-121.893597));
1040
+ // points.push(new GLatLng(36.345553,-121.893756));
1041
+ // points.push(new GLatLng(36.345586,-121.893858));
1042
+ points.push(new GLatLng(36.345645,-121.894009));
1043
+ // points.push(new GLatLng(36.345718,-121.894188));
1044
+ // points.push(new GLatLng(36.345786,-121.894344));
1045
+ // points.push(new GLatLng(36.345862,-121.894498));
1046
+ // points.push(new GLatLng(36.345955,-121.894632));
1047
+ // points.push(new GLatLng(36.346148,-121.89477));
1048
+ // points.push(new GLatLng(36.3464,-121.894878));
1049
+ // points.push(new GLatLng(36.346581,-121.894934));
1050
+ // points.push(new GLatLng(36.346778,-121.895005));
1051
+ // points.push(new GLatLng(36.346918,-121.895092));
1052
+ // points.push(new GLatLng(36.347028,-121.895233));
1053
+ // points.push(new GLatLng(36.347131,-121.89543));
1054
+ points.push(new GLatLng(36.347239,-121.89561));
1055
+ // points.push(new GLatLng(36.347341,-121.89579));
1056
+ // points.push(new GLatLng(36.347467,-121.895953));
1057
+ // points.push(new GLatLng(36.347596,-121.896058));
1058
+ // points.push(new GLatLng(36.347752,-121.896158));
1059
+ // points.push(new GLatLng(36.347888,-121.896241));
1060
+ // points.push(new GLatLng(36.348047,-121.896337));
1061
+ // points.push(new GLatLng(36.34823,-121.896443));
1062
+ // points.push(new GLatLng(36.348398,-121.896519));
1063
+ // points.push(new GLatLng(36.348545,-121.896566));
1064
+ // points.push(new GLatLng(36.348692,-121.896621));
1065
+ // points.push(new GLatLng(36.34886,-121.89668));
1066
+ points.push(new GLatLng(36.349034,-121.896734));
1067
+ // points.push(new GLatLng(36.349212,-121.896776));
1068
+ // points.push(new GLatLng(36.349388,-121.896825));
1069
+ // points.push(new GLatLng(36.349536,-121.896873));
1070
+ // points.push(new GLatLng(36.349708,-121.896948));
1071
+ // points.push(new GLatLng(36.349897,-121.897035));
1072
+ // points.push(new GLatLng(36.350059,-121.897127));
1073
+ // points.push(new GLatLng(36.350196,-121.897225));
1074
+ // points.push(new GLatLng(36.350332,-121.897323));
1075
+ // points.push(new GLatLng(36.350461,-121.897431));
1076
+ // points.push(new GLatLng(36.350561,-121.897531));
1077
+ // points.push(new GLatLng(36.350684,-121.897637));
1078
+ points.push(new GLatLng(36.350784,-121.897736));
1079
+ // points.push(new GLatLng(36.350878,-121.897803));
1080
+ // points.push(new GLatLng(36.351056,-121.897863));
1081
+ // points.push(new GLatLng(36.351244,-121.897847));
1082
+ // points.push(new GLatLng(36.351403,-121.897812));
1083
+ // points.push(new GLatLng(36.351561,-121.897776));
1084
+ // points.push(new GLatLng(36.351709,-121.897765));
1085
+ // points.push(new GLatLng(36.351863,-121.897828));
1086
+ // points.push(new GLatLng(36.351972,-121.897926));
1087
+ // points.push(new GLatLng(36.352079,-121.898069));
1088
+ // points.push(new GLatLng(36.35214,-121.898242));
1089
+ // points.push(new GLatLng(36.35219,-121.898484));
1090
+ points.push(new GLatLng(36.352212,-121.898695));
1091
+ // points.push(new GLatLng(36.352227,-121.898873));
1092
+ // points.push(new GLatLng(36.352248,-121.899058));
1093
+ // points.push(new GLatLng(36.352275,-121.899269));
1094
+ // points.push(new GLatLng(36.352299,-121.899447));
1095
+ // points.push(new GLatLng(36.35233,-121.899618));
1096
+ // points.push(new GLatLng(36.352383,-121.899805));
1097
+ // points.push(new GLatLng(36.352461,-121.899957));
1098
+ // points.push(new GLatLng(36.352553,-121.900027));
1099
+ // points.push(new GLatLng(36.352621,-121.900091));
1100
+ // points.push(new GLatLng(36.352716,-121.900164));
1101
+ // points.push(new GLatLng(36.352827,-121.900254));
1102
+ points.push(new GLatLng(36.352911,-121.900331));
1103
+ // points.push(new GLatLng(36.352993,-121.900421));
1104
+ // points.push(new GLatLng(36.353074,-121.900538));
1105
+ // points.push(new GLatLng(36.353149,-121.900677));
1106
+ // points.push(new GLatLng(36.353202,-121.900829));
1107
+ // points.push(new GLatLng(36.353259,-121.900982));
1108
+ // points.push(new GLatLng(36.353347,-121.901148));
1109
+ // points.push(new GLatLng(36.353492,-121.901309));
1110
+ // points.push(new GLatLng(36.353607,-121.901394));
1111
+ // points.push(new GLatLng(36.353785,-121.901459));
1112
+ // points.push(new GLatLng(36.353942,-121.901498));
1113
+ // points.push(new GLatLng(36.354135,-121.901532));
1114
+ points.push(new GLatLng(36.354287,-121.901562));
1115
+ // points.push(new GLatLng(36.354481,-121.901605));
1116
+ // points.push(new GLatLng(36.354662,-121.901662));
1117
+ // points.push(new GLatLng(36.354827,-121.901723));
1118
+ // points.push(new GLatLng(36.354965,-121.901798));
1119
+ // points.push(new GLatLng(36.355143,-121.901896));
1120
+ // points.push(new GLatLng(36.355323,-121.901985));
1121
+ // points.push(new GLatLng(36.355485,-121.902039));
1122
+ // points.push(new GLatLng(36.355653,-121.902063));
1123
+ // points.push(new GLatLng(36.355789,-121.902086));
1124
+ // points.push(new GLatLng(36.35595,-121.90215));
1125
+ // points.push(new GLatLng(36.35615,-121.902254));
1126
+ points.push(new GLatLng(36.356349,-121.902348));
1127
+ // points.push(new GLatLng(36.356525,-121.90244));
1128
+ // points.push(new GLatLng(36.356678,-121.902534));
1129
+ // points.push(new GLatLng(36.356813,-121.902602));
1130
+ // points.push(new GLatLng(36.356976,-121.902691));
1131
+ // points.push(new GLatLng(36.357106,-121.902725));
1132
+ // points.push(new GLatLng(36.357302,-121.902723));
1133
+ // points.push(new GLatLng(36.357478,-121.902621));
1134
+ // points.push(new GLatLng(36.357589,-121.902477));
1135
+ // points.push(new GLatLng(36.357671,-121.902289));
1136
+ // points.push(new GLatLng(36.357719,-121.902077));
1137
+ // points.push(new GLatLng(36.357754,-121.901857));
1138
+ points.push(new GLatLng(36.357785,-121.901603));
1139
+ // points.push(new GLatLng(36.357827,-121.901431));
1140
+ // points.push(new GLatLng(36.357908,-121.901154));
1141
+ // points.push(new GLatLng(36.358009,-121.900933));
1142
+ // points.push(new GLatLng(36.358112,-121.900755));
1143
+ // points.push(new GLatLng(36.358163,-121.900667));
1144
+ // points.push(new GLatLng(36.35826,-121.900582));
1145
+ // points.push(new GLatLng(36.358312,-121.900545));
1146
+ // points.push(new GLatLng(36.35847,-121.900415));
1147
+ // points.push(new GLatLng(36.358632,-121.900316));
1148
+ // points.push(new GLatLng(36.358819,-121.900232));
1149
+ // points.push(new GLatLng(36.358919,-121.900212));
1150
+ points.push(new GLatLng(36.359029,-121.900196));
1151
+ // points.push(new GLatLng(36.359135,-121.900219));
1152
+ // points.push(new GLatLng(36.35929,-121.90022));
1153
+ // points.push(new GLatLng(36.359507,-121.90026));
1154
+ // points.push(new GLatLng(36.35971,-121.900347));
1155
+ // points.push(new GLatLng(36.359902,-121.90045));
1156
+ // points.push(new GLatLng(36.360129,-121.900548));
1157
+ // points.push(new GLatLng(36.360393,-121.90062));
1158
+ // points.push(new GLatLng(36.360573,-121.900637));
1159
+ // points.push(new GLatLng(36.360777,-121.900648));
1160
+ // points.push(new GLatLng(36.360957,-121.900628));
1161
+ // points.push(new GLatLng(36.361136,-121.900594));
1162
+ points.push(new GLatLng(36.361322,-121.900562));
1163
+ // points.push(new GLatLng(36.361507,-121.900535));
1164
+ // points.push(new GLatLng(36.361718,-121.900498));
1165
+ // points.push(new GLatLng(36.361921,-121.900466));
1166
+ // points.push(new GLatLng(36.362135,-121.900434));
1167
+ // points.push(new GLatLng(36.362344,-121.900394));
1168
+ // points.push(new GLatLng(36.362523,-121.900356));
1169
+ // points.push(new GLatLng(36.362726,-121.900298));
1170
+ // points.push(new GLatLng(36.362897,-121.900251));
1171
+ // points.push(new GLatLng(36.363061,-121.900185));
1172
+ // points.push(new GLatLng(36.363292,-121.900061));
1173
+ // points.push(new GLatLng(36.363503,-121.899939));
1174
+ points.push(new GLatLng(36.363659,-121.899843));
1175
+ // points.push(new GLatLng(36.363786,-121.899758));
1176
+ // points.push(new GLatLng(36.364,-121.899631));
1177
+ // points.push(new GLatLng(36.364184,-121.899528));
1178
+ // points.push(new GLatLng(36.364383,-121.899455));
1179
+ // points.push(new GLatLng(36.364587,-121.899416));
1180
+ // points.push(new GLatLng(36.364824,-121.899413));
1181
+ // points.push(new GLatLng(36.365059,-121.899452));
1182
+ // points.push(new GLatLng(36.365232,-121.899499));
1183
+ // points.push(new GLatLng(36.365434,-121.899545));
1184
+ // points.push(new GLatLng(36.365631,-121.899599));
1185
+ // points.push(new GLatLng(36.365856,-121.899661));
1186
+ points.push(new GLatLng(36.366054,-121.899716));
1187
+ // points.push(new GLatLng(36.366307,-121.899786));
1188
+ // points.push(new GLatLng(36.366505,-121.899841));
1189
+ // points.push(new GLatLng(36.366735,-121.899904));
1190
+ // points.push(new GLatLng(36.36694,-121.899978));
1191
+ // points.push(new GLatLng(36.367114,-121.900023));
1192
+ // points.push(new GLatLng(36.367284,-121.900083));
1193
+ // points.push(new GLatLng(36.367472,-121.900173));
1194
+ // points.push(new GLatLng(36.367709,-121.9003));
1195
+ // points.push(new GLatLng(36.367888,-121.900426));
1196
+ // points.push(new GLatLng(36.368088,-121.900599));
1197
+ // points.push(new GLatLng(36.368245,-121.900742));
1198
+ points.push(new GLatLng(36.368381,-121.900876));
1199
+ // points.push(new GLatLng(36.368551,-121.901059));
1200
+ // points.push(new GLatLng(36.368694,-121.901237));
1201
+ // points.push(new GLatLng(36.368831,-121.901413));
1202
+ // points.push(new GLatLng(36.368959,-121.901561));
1203
+ // points.push(new GLatLng(36.369123,-121.90171));
1204
+ // points.push(new GLatLng(36.369275,-121.901804));
1205
+ // points.push(new GLatLng(36.369464,-121.901882));
1206
+ // points.push(new GLatLng(36.369623,-121.901927));
1207
+ // points.push(new GLatLng(36.369776,-121.901942));
1208
+ // points.push(new GLatLng(36.369913,-121.901922));
1209
+ // points.push(new GLatLng(36.370104,-121.901849));
1210
+ points.push(new GLatLng(36.370234,-121.901798));
1211
+ // points.push(new GLatLng(36.370421,-121.901722));
1212
+ // points.push(new GLatLng(36.370609,-121.901679));
1213
+ // points.push(new GLatLng(36.370816,-121.901691));
1214
+ // points.push(new GLatLng(36.370939,-121.901713));
1215
+ // points.push(new GLatLng(36.370989,-121.901724));
1216
+ // points.push(new GLatLng(36.370989,-121.901724));
1217
+ // points.push(new GLatLng(36.371114,-121.901779));
1218
+ // points.push(new GLatLng(36.371288,-121.901839));
1219
+ // points.push(new GLatLng(36.371453,-121.90193));
1220
+ // points.push(new GLatLng(36.371592,-121.901988));
1221
+ // points.push(new GLatLng(36.371715,-121.902041));
1222
+ points.push(new GLatLng(36.371741,-121.902055));
1223
+ // points.push(new GLatLng(36.371741,-121.902055));
1224
+ // points.push(new GLatLng(36.371889,-121.902119));
1225
+ // points.push(new GLatLng(36.372035,-121.902188));
1226
+ // points.push(new GLatLng(36.37214,-121.902278));
1227
+ // points.push(new GLatLng(36.372286,-121.902412));
1228
+ // points.push(new GLatLng(36.372429,-121.902577));
1229
+ // points.push(new GLatLng(36.372549,-121.902768));
1230
+ // points.push(new GLatLng(36.372626,-121.902941));
1231
+ // points.push(new GLatLng(36.372717,-121.903184));
1232
+ // points.push(new GLatLng(36.372797,-121.903406));
1233
+ // points.push(new GLatLng(36.372857,-121.903596));
1234
+ points.push(new GLatLng(36.372919,-121.903794));
1235
+ // points.push(new GLatLng(36.373,-121.904015));
1236
+ // points.push(new GLatLng(36.373065,-121.9042));
1237
+ // points.push(new GLatLng(36.373137,-121.904376));
1238
+ // points.push(new GLatLng(36.373235,-121.904567));
1239
+ // points.push(new GLatLng(36.373334,-121.904684));
1240
+ // points.push(new GLatLng(36.373471,-121.904799));
1241
+ // points.push(new GLatLng(36.373629,-121.904872));
1242
+ // points.push(new GLatLng(36.373803,-121.904937));
1243
+ // points.push(new GLatLng(36.373942,-121.904947));
1244
+ // points.push(new GLatLng(36.374104,-121.904946));
1245
+ // points.push(new GLatLng(36.374308,-121.904904));
1246
+ points.push(new GLatLng(36.374504,-121.904817));
1247
+ // points.push(new GLatLng(36.374648,-121.904758));
1248
+ // points.push(new GLatLng(36.374824,-121.904743));
1249
+ // points.push(new GLatLng(36.375025,-121.904773));
1250
+ // points.push(new GLatLng(36.375195,-121.904823));
1251
+ // points.push(new GLatLng(36.375394,-121.904837));
1252
+ // points.push(new GLatLng(36.375571,-121.904812));
1253
+ // points.push(new GLatLng(36.375807,-121.904722));
1254
+ // points.push(new GLatLng(36.375931,-121.904635));
1255
+ // points.push(new GLatLng(36.376096,-121.904501));
1256
+ // points.push(new GLatLng(36.376219,-121.904399));
1257
+ // points.push(new GLatLng(36.376368,-121.904284));
1258
+ points.push(new GLatLng(36.376498,-121.904197));
1259
+ // points.push(new GLatLng(36.376635,-121.904126));
1260
+ // points.push(new GLatLng(36.376835,-121.904063));
1261
+ // points.push(new GLatLng(36.377038,-121.904051));
1262
+ // points.push(new GLatLng(36.377236,-121.904052));
1263
+ // points.push(new GLatLng(36.377475,-121.90407));
1264
+ // points.push(new GLatLng(36.377679,-121.904028));
1265
+ // points.push(new GLatLng(36.377821,-121.903966));
1266
+ // points.push(new GLatLng(36.377972,-121.903863));
1267
+ // points.push(new GLatLng(36.378129,-121.90373));
1268
+ // points.push(new GLatLng(36.378243,-121.903621));
1269
+ // points.push(new GLatLng(36.37839,-121.903464));
1270
+ points.push(new GLatLng(36.378515,-121.903331));
1271
+ // points.push(new GLatLng(36.378669,-121.903171));
1272
+ // points.push(new GLatLng(36.378822,-121.903017));
1273
+ // points.push(new GLatLng(36.378955,-121.902889));
1274
+ // points.push(new GLatLng(36.379112,-121.902731));
1275
+ // points.push(new GLatLng(36.379245,-121.902602));
1276
+ // points.push(new GLatLng(36.379396,-121.902449));
1277
+ // points.push(new GLatLng(36.379531,-121.902316));
1278
+ // points.push(new GLatLng(36.379664,-121.902186));
1279
+ // points.push(new GLatLng(36.379807,-121.902065));
1280
+ // points.push(new GLatLng(36.379931,-121.901938));
1281
+ // points.push(new GLatLng(36.380052,-121.901809));
1282
+ points.push(new GLatLng(36.380108,-121.90175));
1283
+ // points.push(new GLatLng(36.380215,-121.901651));
1284
+ // points.push(new GLatLng(36.38028,-121.901605));
1285
+ // points.push(new GLatLng(36.380288,-121.901616));
1286
+ // points.push(new GLatLng(36.380288,-121.901603));
1287
+ // points.push(new GLatLng(36.380345,-121.901472));
1288
+ // points.push(new GLatLng(36.380497,-121.901323));
1289
+ // points.push(new GLatLng(36.380655,-121.901202));
1290
+ // points.push(new GLatLng(36.380775,-121.901134));
1291
+ // points.push(new GLatLng(36.380949,-121.901037));
1292
+ // points.push(new GLatLng(36.381124,-121.900937));
1293
+ // points.push(new GLatLng(36.381244,-121.90087));
1294
+ points.push(new GLatLng(36.381392,-121.900788));
1295
+ // points.push(new GLatLng(36.38159,-121.900684));
1296
+ // points.push(new GLatLng(36.381756,-121.900606));
1297
+ // points.push(new GLatLng(36.381876,-121.900555));
1298
+ // points.push(new GLatLng(36.382048,-121.900483));
1299
+ // points.push(new GLatLng(36.38217,-121.900449));
1300
+ // points.push(new GLatLng(36.382354,-121.900394));
1301
+ // points.push(new GLatLng(36.382479,-121.900355));
1302
+ // points.push(new GLatLng(36.3826,-121.900309));
1303
+ // points.push(new GLatLng(36.382738,-121.90029));
1304
+ // points.push(new GLatLng(36.38288,-121.900276));
1305
+ // points.push(new GLatLng(36.383029,-121.900246));
1306
+ points.push(new GLatLng(36.383224,-121.900229));
1307
+ // points.push(new GLatLng(36.383355,-121.900226));
1308
+ // points.push(new GLatLng(36.383547,-121.900223));
1309
+ // points.push(new GLatLng(36.38365,-121.900216));
1310
+ // points.push(new GLatLng(36.383802,-121.900216));
1311
+ // points.push(new GLatLng(36.384037,-121.900226));
1312
+ // points.push(new GLatLng(36.384165,-121.900242));
1313
+ // points.push(new GLatLng(36.384338,-121.900269));
1314
+ // points.push(new GLatLng(36.384515,-121.9003));
1315
+ // points.push(new GLatLng(36.384712,-121.900349));
1316
+ // points.push(new GLatLng(36.384902,-121.900379));
1317
+ // points.push(new GLatLng(36.385054,-121.900395));
1318
+ points.push(new GLatLng(36.385167,-121.900407));
1319
+ // points.push(new GLatLng(36.385332,-121.900454));
1320
+ // points.push(new GLatLng(36.385489,-121.900489));
1321
+ // points.push(new GLatLng(36.385661,-121.900536));
1322
+ // points.push(new GLatLng(36.385814,-121.900577));
1323
+ // points.push(new GLatLng(36.385913,-121.900599));
1324
+ // points.push(new GLatLng(36.386059,-121.900628));
1325
+ // points.push(new GLatLng(36.386189,-121.900661));
1326
+ // points.push(new GLatLng(36.386243,-121.900672));
1327
+ // points.push(new GLatLng(36.386387,-121.90072));
1328
+ // points.push(new GLatLng(36.386413,-121.900727));
1329
+ // points.push(new GLatLng(36.386595,-121.900779));
1330
+ points.push(new GLatLng(36.386746,-121.900821));
1331
+ // points.push(new GLatLng(36.386938,-121.900857));
1332
+ // points.push(new GLatLng(36.38708,-121.900882));
1333
+ // points.push(new GLatLng(36.38726,-121.900944));
1334
+ // points.push(new GLatLng(36.387422,-121.900999));
1335
+ // points.push(new GLatLng(36.387551,-121.901035));
1336
+ // points.push(new GLatLng(36.387729,-121.901078));
1337
+ // points.push(new GLatLng(36.387891,-121.901123));
1338
+ // points.push(new GLatLng(36.388047,-121.901164));
1339
+ // points.push(new GLatLng(36.388195,-121.901189));
1340
+ // points.push(new GLatLng(36.388369,-121.901204));
1341
+ // points.push(new GLatLng(36.388522,-121.901224));
1342
+ points.push(new GLatLng(36.388687,-121.901265));
1343
+ // points.push(new GLatLng(36.388865,-121.901296));
1344
+ // points.push(new GLatLng(36.388997,-121.901323));
1345
+ // points.push(new GLatLng(36.389153,-121.901342));
1346
+ // points.push(new GLatLng(36.389342,-121.901385));
1347
+ // points.push(new GLatLng(36.389534,-121.901448));
1348
+ // points.push(new GLatLng(36.38967,-121.901486));
1349
+ // points.push(new GLatLng(36.389829,-121.901527));
1350
+ // points.push(new GLatLng(36.390045,-121.901587));
1351
+ // points.push(new GLatLng(36.390233,-121.90164));
1352
+ // points.push(new GLatLng(36.390392,-121.90168));
1353
+ // points.push(new GLatLng(36.390586,-121.901729));
1354
+ points.push(new GLatLng(36.390745,-121.901765));
1355
+ // points.push(new GLatLng(36.390967,-121.901815));
1356
+ // points.push(new GLatLng(36.391127,-121.901853));
1357
+ // points.push(new GLatLng(36.391288,-121.901894));
1358
+ // points.push(new GLatLng(36.391513,-121.90195));
1359
+ // points.push(new GLatLng(36.391709,-121.902));
1360
+ // points.push(new GLatLng(36.39191,-121.90205));
1361
+ // points.push(new GLatLng(36.392081,-121.902101));
1362
+ // points.push(new GLatLng(36.392271,-121.902133));
1363
+ // points.push(new GLatLng(36.392452,-121.902168));
1364
+ // points.push(new GLatLng(36.392578,-121.902193));
1365
+ // points.push(new GLatLng(36.392737,-121.902227));
1366
+ points.push(new GLatLng(36.392929,-121.902274));
1367
+ // points.push(new GLatLng(36.3931,-121.902323));
1368
+ // points.push(new GLatLng(36.393281,-121.902375));
1369
+ // points.push(new GLatLng(36.393493,-121.90242));
1370
+ // points.push(new GLatLng(36.393666,-121.902463));
1371
+ // points.push(new GLatLng(36.393861,-121.902508));
1372
+ // points.push(new GLatLng(36.393998,-121.902532));
1373
+ // points.push(new GLatLng(36.394175,-121.902582));
1374
+ // points.push(new GLatLng(36.394345,-121.902632));
1375
+ // points.push(new GLatLng(36.394522,-121.902674));
1376
+ // points.push(new GLatLng(36.394728,-121.902728));
1377
+ // points.push(new GLatLng(36.394925,-121.902772));
1378
+ points.push(new GLatLng(36.395097,-121.902817));
1379
+ // points.push(new GLatLng(36.395293,-121.902873));
1380
+ // points.push(new GLatLng(36.395437,-121.902902));
1381
+ // points.push(new GLatLng(36.395617,-121.902925));
1382
+ // points.push(new GLatLng(36.395751,-121.902952));
1383
+ // points.push(new GLatLng(36.395881,-121.902981));
1384
+ // points.push(new GLatLng(36.39605,-121.903014));
1385
+ // points.push(new GLatLng(36.396226,-121.903061));
1386
+ // points.push(new GLatLng(36.396402,-121.903103));
1387
+ // points.push(new GLatLng(36.396603,-121.903151));
1388
+ // points.push(new GLatLng(36.3968,-121.903205));
1389
+ // points.push(new GLatLng(36.396968,-121.903249));
1390
+ points.push(new GLatLng(36.397162,-121.903308));
1391
+ // points.push(new GLatLng(36.397383,-121.903374));
1392
+ // points.push(new GLatLng(36.397574,-121.903451));
1393
+ // points.push(new GLatLng(36.397788,-121.903548));
1394
+ // points.push(new GLatLng(36.397973,-121.903628));
1395
+ // points.push(new GLatLng(36.398151,-121.903713));
1396
+ // points.push(new GLatLng(36.398323,-121.903798));
1397
+ // points.push(new GLatLng(36.398539,-121.903919));
1398
+ // points.push(new GLatLng(36.398682,-121.904011));
1399
+ // points.push(new GLatLng(36.398866,-121.904153));
1400
+ // points.push(new GLatLng(36.398969,-121.904235));
1401
+ // points.push(new GLatLng(36.399075,-121.904321));
1402
+ points.push(new GLatLng(36.399194,-121.904427));
1403
+ // points.push(new GLatLng(36.399311,-121.904539));
1404
+ // points.push(new GLatLng(36.399453,-121.904669));
1405
+ // points.push(new GLatLng(36.399599,-121.904827));
1406
+ // points.push(new GLatLng(36.399725,-121.904966));
1407
+ // points.push(new GLatLng(36.399833,-121.905085));
1408
+ // points.push(new GLatLng(36.399958,-121.905224));
1409
+ // points.push(new GLatLng(36.400101,-121.905382));
1410
+ // points.push(new GLatLng(36.400206,-121.905502));
1411
+ // points.push(new GLatLng(36.400311,-121.905619));
1412
+ // points.push(new GLatLng(36.400419,-121.905735));
1413
+ // points.push(new GLatLng(36.400563,-121.90589));
1414
+ points.push(new GLatLng(36.400673,-121.906016));
1415
+ // points.push(new GLatLng(36.400775,-121.906146));
1416
+ // points.push(new GLatLng(36.400883,-121.906294));
1417
+ // points.push(new GLatLng(36.400942,-121.906365));
1418
+ // points.push(new GLatLng(36.401012,-121.906442));
1419
+ // points.push(new GLatLng(36.401113,-121.906555));
1420
+ // points.push(new GLatLng(36.401182,-121.906633));
1421
+ // points.push(new GLatLng(36.401291,-121.906738));
1422
+ // points.push(new GLatLng(36.401393,-121.906853));
1423
+ // points.push(new GLatLng(36.401504,-121.906968));
1424
+ // points.push(new GLatLng(36.40159,-121.907073));
1425
+ // points.push(new GLatLng(36.401688,-121.907204));
1426
+ points.push(new GLatLng(36.401751,-121.907297));
1427
+ // points.push(new GLatLng(36.401827,-121.907408));
1428
+ // points.push(new GLatLng(36.401927,-121.907545));
1429
+ // points.push(new GLatLng(36.402036,-121.907712));
1430
+ // points.push(new GLatLng(36.402114,-121.907824));
1431
+ // points.push(new GLatLng(36.402216,-121.907989));
1432
+ // points.push(new GLatLng(36.402305,-121.908139));
1433
+ // points.push(new GLatLng(36.402411,-121.908313));
1434
+ // points.push(new GLatLng(36.402515,-121.908463));
1435
+ // points.push(new GLatLng(36.402607,-121.908625));
1436
+ // points.push(new GLatLng(36.402703,-121.908782));
1437
+ // points.push(new GLatLng(36.402806,-121.908952));
1438
+ points.push(new GLatLng(36.40291,-121.909106));
1439
+ // points.push(new GLatLng(36.403026,-121.909247));
1440
+ // points.push(new GLatLng(36.40315,-121.90937));
1441
+ // points.push(new GLatLng(36.403279,-121.909497));
1442
+ // points.push(new GLatLng(36.403398,-121.909596));
1443
+ // points.push(new GLatLng(36.403566,-121.909707));
1444
+ // points.push(new GLatLng(36.403685,-121.909784));
1445
+ // points.push(new GLatLng(36.403837,-121.909878));
1446
+ // points.push(new GLatLng(36.403998,-121.909947));
1447
+ // points.push(new GLatLng(36.404184,-121.910023));
1448
+ // points.push(new GLatLng(36.404341,-121.910091));
1449
+ // points.push(new GLatLng(36.404503,-121.910157));
1450
+ points.push(new GLatLng(36.404662,-121.910218));
1451
+ // points.push(new GLatLng(36.404828,-121.91029));
1452
+ // points.push(new GLatLng(36.405015,-121.910373));
1453
+ // points.push(new GLatLng(36.405177,-121.910444));
1454
+ // points.push(new GLatLng(36.405311,-121.910498));
1455
+ // points.push(new GLatLng(36.405466,-121.910555));
1456
+ // points.push(new GLatLng(36.405634,-121.910638));
1457
+ // points.push(new GLatLng(36.405792,-121.910719));
1458
+ // points.push(new GLatLng(36.405927,-121.910777));
1459
+ // points.push(new GLatLng(36.406075,-121.910863));
1460
+ // points.push(new GLatLng(36.406231,-121.910962));
1461
+ // points.push(new GLatLng(36.406348,-121.911041));
1462
+ points.push(new GLatLng(36.406522,-121.911163));
1463
+ // points.push(new GLatLng(36.406763,-121.911318));
1464
+ // points.push(new GLatLng(36.406878,-121.911408));
1465
+ // points.push(new GLatLng(36.407048,-121.911533));
1466
+ // points.push(new GLatLng(36.407185,-121.911657));
1467
+ // points.push(new GLatLng(36.40732,-121.911784));
1468
+ // points.push(new GLatLng(36.407431,-121.911875));
1469
+ // points.push(new GLatLng(36.407554,-121.91197));
1470
+ // points.push(new GLatLng(36.407637,-121.912064));
1471
+ // points.push(new GLatLng(36.407736,-121.912169));
1472
+ // points.push(new GLatLng(36.407857,-121.912309));
1473
+ // points.push(new GLatLng(36.407974,-121.912459));
1474
+ points.push(new GLatLng(36.408096,-121.912599));
1475
+ // points.push(new GLatLng(36.408215,-121.912747));
1476
+ // points.push(new GLatLng(36.408343,-121.912891));
1477
+ // points.push(new GLatLng(36.408476,-121.913021));
1478
+ // points.push(new GLatLng(36.408582,-121.913128));
1479
+ // points.push(new GLatLng(36.408733,-121.91328));
1480
+ // points.push(new GLatLng(36.408905,-121.913466));
1481
+ // points.push(new GLatLng(36.40903,-121.913602));
1482
+ // points.push(new GLatLng(36.40918,-121.913753));
1483
+ // points.push(new GLatLng(36.409282,-121.913873));
1484
+ // points.push(new GLatLng(36.409389,-121.913986));
1485
+ // points.push(new GLatLng(36.409517,-121.914116));
1486
+ points.push(new GLatLng(36.409671,-121.91427));
1487
+ // points.push(new GLatLng(36.409802,-121.914388));
1488
+ // points.push(new GLatLng(36.409893,-121.914456));
1489
+ // points.push(new GLatLng(36.410047,-121.914544));
1490
+ // points.push(new GLatLng(36.410202,-121.914607));
1491
+ // points.push(new GLatLng(36.410358,-121.914649));
1492
+ // points.push(new GLatLng(36.410491,-121.914665));
1493
+ // points.push(new GLatLng(36.410656,-121.914668));
1494
+ // points.push(new GLatLng(36.410819,-121.914645));
1495
+ // points.push(new GLatLng(36.410952,-121.914608));
1496
+ // points.push(new GLatLng(36.411122,-121.91455));
1497
+ // points.push(new GLatLng(36.411272,-121.914502));
1498
+ points.push(new GLatLng(36.411424,-121.914413));
1499
+ // points.push(new GLatLng(36.411571,-121.9143));
1500
+ // points.push(new GLatLng(36.41169,-121.914222));
1501
+ // points.push(new GLatLng(36.41184,-121.914135));
1502
+ // points.push(new GLatLng(36.411937,-121.914082));
1503
+ // points.push(new GLatLng(36.412151,-121.914014));
1504
+ // points.push(new GLatLng(36.412308,-121.913982));
1505
+ // points.push(new GLatLng(36.412448,-121.913978));
1506
+ // points.push(new GLatLng(36.412664,-121.913997));
1507
+ // points.push(new GLatLng(36.412767,-121.914005));
1508
+ // points.push(new GLatLng(36.412953,-121.91403));
1509
+ // points.push(new GLatLng(36.413067,-121.91406));
1510
+ points.push(new GLatLng(36.413221,-121.91408));
1511
+ // points.push(new GLatLng(36.413364,-121.914101));
1512
+ // points.push(new GLatLng(36.413508,-121.914125));
1513
+ // points.push(new GLatLng(36.413677,-121.914177));
1514
+ // points.push(new GLatLng(36.413883,-121.914222));
1515
+ // points.push(new GLatLng(36.414033,-121.914247));
1516
+ // points.push(new GLatLng(36.414199,-121.914273));
1517
+ // points.push(new GLatLng(36.414364,-121.914301));
1518
+ // points.push(new GLatLng(36.414582,-121.914351));
1519
+ // points.push(new GLatLng(36.414752,-121.914385));
1520
+ // points.push(new GLatLng(36.414899,-121.914395));
1521
+ // points.push(new GLatLng(36.415109,-121.914422));
1522
+ points.push(new GLatLng(36.415197,-121.914429));
1523
+ // points.push(new GLatLng(36.415322,-121.91442));
1524
+ // points.push(new GLatLng(36.415508,-121.914408));
1525
+ // points.push(new GLatLng(36.415658,-121.914391));
1526
+ // points.push(new GLatLng(36.415815,-121.914349));
1527
+ // points.push(new GLatLng(36.415985,-121.914302));
1528
+ // points.push(new GLatLng(36.416155,-121.914247));
1529
+ // points.push(new GLatLng(36.416303,-121.914208));
1530
+ // points.push(new GLatLng(36.416455,-121.914132));
1531
+ // points.push(new GLatLng(36.416619,-121.914078));
1532
+ // points.push(new GLatLng(36.416781,-121.914021));
1533
+ // points.push(new GLatLng(36.416977,-121.913961));
1534
+ points.push(new GLatLng(36.417115,-121.913918));
1535
+ // points.push(new GLatLng(36.417278,-121.913871));
1536
+ // points.push(new GLatLng(36.417432,-121.913815));
1537
+ // points.push(new GLatLng(36.417565,-121.913766));
1538
+ // points.push(new GLatLng(36.417697,-121.913714));
1539
+ // points.push(new GLatLng(36.417841,-121.913667));
1540
+ // points.push(new GLatLng(36.417977,-121.913621));
1541
+ // points.push(new GLatLng(36.418106,-121.913567));
1542
+ // points.push(new GLatLng(36.418217,-121.913537));
1543
+ // points.push(new GLatLng(36.418387,-121.913488));
1544
+ // points.push(new GLatLng(36.418514,-121.913441));
1545
+ // points.push(new GLatLng(36.418694,-121.913374));
1546
+ points.push(new GLatLng(36.418849,-121.913324));
1547
+ // points.push(new GLatLng(36.419032,-121.913259));
1548
+ // points.push(new GLatLng(36.419208,-121.913187));
1549
+ // points.push(new GLatLng(36.419354,-121.913125));
1550
+ // points.push(new GLatLng(36.419508,-121.913074));
1551
+ // points.push(new GLatLng(36.419664,-121.913023));
1552
+ // points.push(new GLatLng(36.419822,-121.912978));
1553
+ // points.push(new GLatLng(36.420007,-121.912908));
1554
+ // points.push(new GLatLng(36.420155,-121.912849));
1555
+ // points.push(new GLatLng(36.420339,-121.912779));
1556
+ // points.push(new GLatLng(36.420494,-121.912721));
1557
+ // points.push(new GLatLng(36.420628,-121.912688));
1558
+ points.push(new GLatLng(36.420815,-121.912642));
1559
+ // points.push(new GLatLng(36.420975,-121.9126));
1560
+ // points.push(new GLatLng(36.421159,-121.912562));
1561
+ // points.push(new GLatLng(36.421348,-121.912523));
1562
+ // points.push(new GLatLng(36.421556,-121.912474));
1563
+ // points.push(new GLatLng(36.421745,-121.912441));
1564
+ // points.push(new GLatLng(36.421919,-121.912419));
1565
+ // points.push(new GLatLng(36.422091,-121.912399));
1566
+ // points.push(new GLatLng(36.422277,-121.912381));
1567
+ // points.push(new GLatLng(36.422442,-121.912367));
1568
+ // points.push(new GLatLng(36.422606,-121.912359));
1569
+ // points.push(new GLatLng(36.422794,-121.912369));
1570
+ points.push(new GLatLng(36.422939,-121.912363));
1571
+ // points.push(new GLatLng(36.423012,-121.912361));
1572
+ // points.push(new GLatLng(36.423086,-121.912366));
1573
+ // points.push(new GLatLng(36.423155,-121.912367));
1574
+ // points.push(new GLatLng(36.423263,-121.912363));
1575
+ // points.push(new GLatLng(36.423407,-121.912355));
1576
+ // points.push(new GLatLng(36.42356,-121.912365));
1577
+ // points.push(new GLatLng(36.423724,-121.912388));
1578
+ // points.push(new GLatLng(36.423909,-121.912405));
1579
+ // points.push(new GLatLng(36.424006,-121.912413));
1580
+ // points.push(new GLatLng(36.424155,-121.912427));
1581
+ // points.push(new GLatLng(36.424325,-121.912453));
1582
+ points.push(new GLatLng(36.424493,-121.912487));
1583
+ // points.push(new GLatLng(36.424589,-121.912508));
1584
+ // points.push(new GLatLng(36.424709,-121.91252));
1585
+ // points.push(new GLatLng(36.424829,-121.912538));
1586
+ // points.push(new GLatLng(36.42496,-121.912566));
1587
+ // points.push(new GLatLng(36.425111,-121.912604));
1588
+ // points.push(new GLatLng(36.425267,-121.912642));
1589
+ // points.push(new GLatLng(36.425392,-121.912673));
1590
+ // points.push(new GLatLng(36.425522,-121.912712));
1591
+ // points.push(new GLatLng(36.425658,-121.912744));
1592
+ // points.push(new GLatLng(36.425796,-121.912785));
1593
+ // points.push(new GLatLng(36.425938,-121.912827));
1594
+ points.push(new GLatLng(36.426061,-121.912886));
1595
+ // points.push(new GLatLng(36.426173,-121.91294));
1596
+ // points.push(new GLatLng(36.426289,-121.912982));
1597
+ // points.push(new GLatLng(36.426419,-121.913055));
1598
+ // points.push(new GLatLng(36.426536,-121.913103));
1599
+ // points.push(new GLatLng(36.426649,-121.913146));
1600
+ // points.push(new GLatLng(36.426815,-121.913215));
1601
+ // points.push(new GLatLng(36.42694,-121.913277));
1602
+ // points.push(new GLatLng(36.427109,-121.91337));
1603
+ // points.push(new GLatLng(36.427271,-121.913456));
1604
+ // points.push(new GLatLng(36.427414,-121.913513));
1605
+ // points.push(new GLatLng(36.427501,-121.913565));
1606
+ points.push(new GLatLng(36.427664,-121.913657));
1607
+ // points.push(new GLatLng(36.427806,-121.913737));
1608
+ // points.push(new GLatLng(36.427923,-121.913823));
1609
+ // points.push(new GLatLng(36.428077,-121.913921));
1610
+ // points.push(new GLatLng(36.428212,-121.914012));
1611
+ // points.push(new GLatLng(36.42832,-121.914084));
1612
+ // points.push(new GLatLng(36.428478,-121.914158));
1613
+ // points.push(new GLatLng(36.428595,-121.914232));
1614
+ // points.push(new GLatLng(36.428735,-121.914313));
1615
+ // points.push(new GLatLng(36.428901,-121.914426));
1616
+ // points.push(new GLatLng(36.429014,-121.914512));
1617
+ // points.push(new GLatLng(36.42917,-121.914646));
1618
+ points.push(new GLatLng(36.42933,-121.914796));
1619
+ // points.push(new GLatLng(36.429465,-121.914924));
1620
+ // points.push(new GLatLng(36.429641,-121.915085));
1621
+ // points.push(new GLatLng(36.429795,-121.915229));
1622
+ // points.push(new GLatLng(36.429943,-121.915382));
1623
+ // points.push(new GLatLng(36.430094,-121.915524));
1624
+ // points.push(new GLatLng(36.430246,-121.915656));
1625
+ // points.push(new GLatLng(36.430402,-121.91581));
1626
+ // points.push(new GLatLng(36.430554,-121.915948));
1627
+ // points.push(new GLatLng(36.430725,-121.916107));
1628
+ // points.push(new GLatLng(36.430833,-121.916198));
1629
+ // points.push(new GLatLng(36.430985,-121.916343));
1630
+ points.push(new GLatLng(36.43114,-121.916493));
1631
+ // points.push(new GLatLng(36.431286,-121.91665));
1632
+ // points.push(new GLatLng(36.431414,-121.916775));
1633
+ // points.push(new GLatLng(36.431544,-121.916887));
1634
+ // points.push(new GLatLng(36.431657,-121.916985));
1635
+ // points.push(new GLatLng(36.431815,-121.917134));
1636
+ // points.push(new GLatLng(36.431975,-121.917273));
1637
+ // points.push(new GLatLng(36.432124,-121.917377));
1638
+ // points.push(new GLatLng(36.432286,-121.917467));
1639
+ // points.push(new GLatLng(36.432434,-121.917568));
1640
+ // points.push(new GLatLng(36.432576,-121.917675));
1641
+ // points.push(new GLatLng(36.43272,-121.917771));
1642
+ points.push(new GLatLng(36.432867,-121.917862));
1643
+ // points.push(new GLatLng(36.433038,-121.917976));
1644
+ // points.push(new GLatLng(36.433236,-121.918088));
1645
+ // points.push(new GLatLng(36.433383,-121.918169));
1646
+ // points.push(new GLatLng(36.433558,-121.918258));
1647
+ // points.push(new GLatLng(36.433683,-121.918315));
1648
+ // points.push(new GLatLng(36.433885,-121.9184));
1649
+ // points.push(new GLatLng(36.434041,-121.918456));
1650
+ // points.push(new GLatLng(36.434234,-121.918536));
1651
+ // points.push(new GLatLng(36.434399,-121.918587));
1652
+ // points.push(new GLatLng(36.434561,-121.91864));
1653
+ // points.push(new GLatLng(36.434713,-121.918698));
1654
+ points.push(new GLatLng(36.434893,-121.918766));
1655
+ // points.push(new GLatLng(36.43514,-121.918835));
1656
+ // points.push(new GLatLng(36.435333,-121.9189));
1657
+ // points.push(new GLatLng(36.435494,-121.918952));
1658
+ // points.push(new GLatLng(36.435683,-121.919019));
1659
+ // points.push(new GLatLng(36.435842,-121.919083));
1660
+ // points.push(new GLatLng(36.435996,-121.919155));
1661
+ // points.push(new GLatLng(36.436183,-121.919235));
1662
+ // points.push(new GLatLng(36.436378,-121.919322));
1663
+ // points.push(new GLatLng(36.43652,-121.919402));
1664
+ // points.push(new GLatLng(36.436671,-121.919485));
1665
+ // points.push(new GLatLng(36.436805,-121.919574));
1666
+ points.push(new GLatLng(36.436905,-121.919619));
1667
+ // points.push(new GLatLng(36.437008,-121.919687));
1668
+ // points.push(new GLatLng(36.4371,-121.919737));
1669
+ // points.push(new GLatLng(36.43723,-121.919802));
1670
+ // points.push(new GLatLng(36.437347,-121.919865));
1671
+ // points.push(new GLatLng(36.437472,-121.919937));
1672
+ // points.push(new GLatLng(36.437557,-121.919987));
1673
+ // points.push(new GLatLng(36.437669,-121.920044));
1674
+ // points.push(new GLatLng(36.437815,-121.920131));
1675
+ // points.push(new GLatLng(36.437984,-121.920226));
1676
+ // points.push(new GLatLng(36.438128,-121.920313));
1677
+ // points.push(new GLatLng(36.438296,-121.92041));
1678
+ points.push(new GLatLng(36.438465,-121.920503));
1679
+ // points.push(new GLatLng(36.438634,-121.9206));
1680
+ // points.push(new GLatLng(36.438803,-121.920699));
1681
+ // points.push(new GLatLng(36.438979,-121.920793));
1682
+ // points.push(new GLatLng(36.439153,-121.920888));
1683
+ // points.push(new GLatLng(36.439326,-121.920995));
1684
+ // points.push(new GLatLng(36.439501,-121.921097));
1685
+ // points.push(new GLatLng(36.439697,-121.921205));
1686
+ // points.push(new GLatLng(36.43984,-121.921292));
1687
+ // points.push(new GLatLng(36.440011,-121.921385));
1688
+ // points.push(new GLatLng(36.440204,-121.921491));
1689
+ // points.push(new GLatLng(36.440377,-121.921587));
1690
+ points.push(new GLatLng(36.440576,-121.92169));
1691
+ // points.push(new GLatLng(36.44075,-121.921788));
1692
+ // points.push(new GLatLng(36.440921,-121.921883));
1693
+ // points.push(new GLatLng(36.441089,-121.921983));
1694
+ // points.push(new GLatLng(36.441285,-121.922098));
1695
+ // points.push(new GLatLng(36.441458,-121.922198));
1696
+ // points.push(new GLatLng(36.441627,-121.922289));
1697
+ // points.push(new GLatLng(36.441772,-121.922366));
1698
+ // points.push(new GLatLng(36.441961,-121.922477));
1699
+ // points.push(new GLatLng(36.442129,-121.922566));
1700
+ // points.push(new GLatLng(36.442313,-121.922676));
1701
+ // points.push(new GLatLng(36.442471,-121.922773));
1702
+ points.push(new GLatLng(36.442604,-121.922857));
1703
+ // points.push(new GLatLng(36.442758,-121.922944));
1704
+ // points.push(new GLatLng(36.442885,-121.92302));
1705
+ // points.push(new GLatLng(36.44302,-121.923096));
1706
+ // points.push(new GLatLng(36.44316,-121.923163));
1707
+ // points.push(new GLatLng(36.443322,-121.923253));
1708
+ // points.push(new GLatLng(36.44343,-121.923328));
1709
+ // points.push(new GLatLng(36.443525,-121.923391));
1710
+ // points.push(new GLatLng(36.443607,-121.923442));
1711
+ // points.push(new GLatLng(36.443741,-121.923516));
1712
+ // points.push(new GLatLng(36.443882,-121.923601));
1713
+ // points.push(new GLatLng(36.444009,-121.923686));
1714
+ points.push(new GLatLng(36.444122,-121.923761));
1715
+ // points.push(new GLatLng(36.444284,-121.923849));
1716
+ // points.push(new GLatLng(36.444421,-121.923918));
1717
+ // points.push(new GLatLng(36.444577,-121.924021));
1718
+ // points.push(new GLatLng(36.444713,-121.924097));
1719
+ // points.push(new GLatLng(36.444821,-121.924177));
1720
+ // points.push(new GLatLng(36.444901,-121.924207));
1721
+ // points.push(new GLatLng(36.444964,-121.924244));
1722
+ // points.push(new GLatLng(36.445123,-121.92433));
1723
+ // points.push(new GLatLng(36.445321,-121.924414));
1724
+ // points.push(new GLatLng(36.445492,-121.924518));
1725
+ // points.push(new GLatLng(36.44567,-121.924602));
1726
+ points.push(new GLatLng(36.445845,-121.924696));
1727
+ // points.push(new GLatLng(36.445992,-121.924778));
1728
+ // points.push(new GLatLng(36.446172,-121.924879));
1729
+ // points.push(new GLatLng(36.446343,-121.924978));
1730
+ // points.push(new GLatLng(36.446487,-121.925065));
1731
+ // points.push(new GLatLng(36.446655,-121.925169));
1732
+ // points.push(new GLatLng(36.446847,-121.925285));
1733
+ // points.push(new GLatLng(36.446992,-121.925355));
1734
+ // points.push(new GLatLng(36.447137,-121.925435));
1735
+ // points.push(new GLatLng(36.447281,-121.925514));
1736
+ // points.push(new GLatLng(36.447476,-121.925632));
1737
+ // points.push(new GLatLng(36.447638,-121.925751));
1738
+ points.push(new GLatLng(36.4478,-121.925866));
1739
+ // points.push(new GLatLng(36.447942,-121.92595));
1740
+ // points.push(new GLatLng(36.448089,-121.926031));
1741
+ // points.push(new GLatLng(36.448259,-121.926121));
1742
+ // points.push(new GLatLng(36.448433,-121.926191));
1743
+ // points.push(new GLatLng(36.448599,-121.92627));
1744
+ // points.push(new GLatLng(36.44877,-121.926357));
1745
+ // points.push(new GLatLng(36.448963,-121.926425));
1746
+ // points.push(new GLatLng(36.449108,-121.926463));
1747
+ // points.push(new GLatLng(36.449299,-121.926525));
1748
+ // points.push(new GLatLng(36.449487,-121.926558));
1749
+ // points.push(new GLatLng(36.449678,-121.926593));
1750
+ points.push(new GLatLng(36.449843,-121.926596));
1751
+ // points.push(new GLatLng(36.45001,-121.926603));
1752
+ // points.push(new GLatLng(36.45013,-121.926594));
1753
+ // points.push(new GLatLng(36.450273,-121.926567));
1754
+ // points.push(new GLatLng(36.450415,-121.926541));
1755
+ // points.push(new GLatLng(36.450529,-121.92652));
1756
+ // points.push(new GLatLng(36.450663,-121.926488));
1757
+ // points.push(new GLatLng(36.450785,-121.926467));
1758
+ // points.push(new GLatLng(36.450984,-121.926406));
1759
+ // points.push(new GLatLng(36.451106,-121.926364));
1760
+ // points.push(new GLatLng(36.451225,-121.926301));
1761
+ // points.push(new GLatLng(36.451346,-121.926241));
1762
+ points.push(new GLatLng(36.451465,-121.926171));
1763
+ // points.push(new GLatLng(36.451612,-121.926054));
1764
+ // points.push(new GLatLng(36.451744,-121.925957));
1765
+ // points.push(new GLatLng(36.451887,-121.925811));
1766
+ // points.push(new GLatLng(36.45202,-121.925692));
1767
+ // points.push(new GLatLng(36.452213,-121.925503));
1768
+ // points.push(new GLatLng(36.45232,-121.925396));
1769
+ // points.push(new GLatLng(36.452417,-121.925317));
1770
+ // points.push(new GLatLng(36.452506,-121.92525));
1771
+ // points.push(new GLatLng(36.452579,-121.925169));
1772
+ // points.push(new GLatLng(36.452683,-121.925045));
1773
+ // points.push(new GLatLng(36.452833,-121.924882));
1774
+ points.push(new GLatLng(36.45298,-121.924773));
1775
+ // points.push(new GLatLng(36.453123,-121.924666));
1776
+ // points.push(new GLatLng(36.453242,-121.924579));
1777
+ // points.push(new GLatLng(36.453393,-121.924477));
1778
+ // points.push(new GLatLng(36.453574,-121.924383));
1779
+ // points.push(new GLatLng(36.453773,-121.924271));
1780
+ // points.push(new GLatLng(36.453949,-121.924191));
1781
+ // points.push(new GLatLng(36.454138,-121.924116));
1782
+ // points.push(new GLatLng(36.454337,-121.924055));
1783
+ // points.push(new GLatLng(36.454559,-121.924007));
1784
+ // points.push(new GLatLng(36.454754,-121.923966));
1785
+ // points.push(new GLatLng(36.454918,-121.923925));
1786
+ points.push(new GLatLng(36.455106,-121.923896));
1787
+ // points.push(new GLatLng(36.455268,-121.923895));
1788
+ // points.push(new GLatLng(36.455454,-121.9239));
1789
+ // points.push(new GLatLng(36.455638,-121.923913));
1790
+ // points.push(new GLatLng(36.455843,-121.923926));
1791
+ // points.push(new GLatLng(36.455994,-121.92394));
1792
+ // points.push(new GLatLng(36.456134,-121.923945));
1793
+ // points.push(new GLatLng(36.456322,-121.92397));
1794
+ // points.push(new GLatLng(36.456465,-121.923986));
1795
+ // points.push(new GLatLng(36.456599,-121.924));
1796
+ // points.push(new GLatLng(36.45673,-121.924029));
1797
+ // points.push(new GLatLng(36.456827,-121.924043));
1798
+ points.push(new GLatLng(36.456948,-121.924054));
1799
+ // points.push(new GLatLng(36.457068,-121.924065));
1800
+ // points.push(new GLatLng(36.457217,-121.924081));
1801
+ // points.push(new GLatLng(36.457368,-121.924095));
1802
+ // points.push(new GLatLng(36.457571,-121.924121));
1803
+ // points.push(new GLatLng(36.457715,-121.924121));
1804
+ // points.push(new GLatLng(36.457859,-121.924134));
1805
+ // points.push(new GLatLng(36.458029,-121.924146));
1806
+ // points.push(new GLatLng(36.458197,-121.924177));
1807
+ // points.push(new GLatLng(36.458371,-121.924204));
1808
+ // points.push(new GLatLng(36.458543,-121.924238));
1809
+ // points.push(new GLatLng(36.458712,-121.924274));
1810
+ points.push(new GLatLng(36.458836,-121.924304));
1811
+ // points.push(new GLatLng(36.45898,-121.924334));
1812
+ // points.push(new GLatLng(36.459127,-121.924362));
1813
+ // points.push(new GLatLng(36.459325,-121.924409));
1814
+ // points.push(new GLatLng(36.459497,-121.924449));
1815
+ // points.push(new GLatLng(36.459669,-121.924515));
1816
+ // points.push(new GLatLng(36.459843,-121.924576));
1817
+ // points.push(new GLatLng(36.460017,-121.924641));
1818
+ // points.push(new GLatLng(36.460164,-121.9247));
1819
+ // points.push(new GLatLng(36.46032,-121.924758));
1820
+ // points.push(new GLatLng(36.460498,-121.924838));
1821
+ // points.push(new GLatLng(36.460703,-121.924925));
1822
+ points.push(new GLatLng(36.460825,-121.924981));
1823
+ // points.push(new GLatLng(36.460978,-121.925046));
1824
+ // points.push(new GLatLng(36.461153,-121.925142));
1825
+ // points.push(new GLatLng(36.461321,-121.925237));
1826
+ // points.push(new GLatLng(36.461465,-121.925312));
1827
+ // points.push(new GLatLng(36.461605,-121.925401));
1828
+ // points.push(new GLatLng(36.461774,-121.925506));
1829
+ // points.push(new GLatLng(36.461917,-121.925601));
1830
+ // points.push(new GLatLng(36.461941,-121.92562));
1831
+ // points.push(new GLatLng(36.462054,-121.9257));
1832
+ // points.push(new GLatLng(36.462185,-121.925798));
1833
+ // points.push(new GLatLng(36.462305,-121.9259));
1834
+ points.push(new GLatLng(36.462442,-121.926024));
1835
+ // points.push(new GLatLng(36.462606,-121.92614));
1836
+ // points.push(new GLatLng(36.462766,-121.926249));
1837
+ // points.push(new GLatLng(36.462847,-121.926314));
1838
+ // points.push(new GLatLng(36.46292,-121.926347));
1839
+ // points.push(new GLatLng(36.463013,-121.926414));
1840
+ // points.push(new GLatLng(36.463122,-121.926492));
1841
+ // points.push(new GLatLng(36.463271,-121.926576));
1842
+ // points.push(new GLatLng(36.463411,-121.926676));
1843
+ // points.push(new GLatLng(36.463576,-121.926788));
1844
+ // points.push(new GLatLng(36.463714,-121.926882));
1845
+ // points.push(new GLatLng(36.463874,-121.927003));
1846
+ points.push(new GLatLng(36.464056,-121.927132));
1847
+ // points.push(new GLatLng(36.46419,-121.927233));
1848
+ // points.push(new GLatLng(36.464325,-121.927335));
1849
+ // points.push(new GLatLng(36.464466,-121.927436));
1850
+ // points.push(new GLatLng(36.464651,-121.927585));
1851
+ // points.push(new GLatLng(36.464759,-121.927678));
1852
+ // points.push(new GLatLng(36.464914,-121.927806));
1853
+ // points.push(new GLatLng(36.46506,-121.927904));
1854
+ // points.push(new GLatLng(36.465173,-121.927987));
1855
+ // points.push(new GLatLng(36.465287,-121.928073));
1856
+ // points.push(new GLatLng(36.46543,-121.928165));
1857
+ // points.push(new GLatLng(36.465599,-121.92828));
1858
+ points.push(new GLatLng(36.465771,-121.928389));
1859
+ // points.push(new GLatLng(36.465912,-121.928481));
1860
+ // points.push(new GLatLng(36.466062,-121.928577));
1861
+ // points.push(new GLatLng(36.466185,-121.928663));
1862
+ // points.push(new GLatLng(36.466343,-121.928758));
1863
+ // points.push(new GLatLng(36.466499,-121.928859));
1864
+ // points.push(new GLatLng(36.466613,-121.928945));
1865
+ // points.push(new GLatLng(36.466806,-121.929092));
1866
+ // points.push(new GLatLng(36.466912,-121.929158));
1867
+ // points.push(new GLatLng(36.467042,-121.929279));
1868
+ // points.push(new GLatLng(36.467151,-121.929382));
1869
+ // points.push(new GLatLng(36.46728,-121.929516));
1870
+ points.push(new GLatLng(36.467399,-121.929654));
1871
+ // points.push(new GLatLng(36.467497,-121.929775));
1872
+ // points.push(new GLatLng(36.467558,-121.929867));
1873
+ // points.push(new GLatLng(36.467626,-121.929983));
1874
+ // points.push(new GLatLng(36.467739,-121.930167));
1875
+ // points.push(new GLatLng(36.467813,-121.93027));
1876
+ // points.push(new GLatLng(36.467844,-121.930328));
1877
+ // points.push(new GLatLng(36.467908,-121.930457));
1878
+ // points.push(new GLatLng(36.467965,-121.930556));
1879
+ // points.push(new GLatLng(36.467973,-121.930571));
1880
+ // points.push(new GLatLng(36.468035,-121.930675));
1881
+ // points.push(new GLatLng(36.468116,-121.930805));
1882
+ points.push(new GLatLng(36.468203,-121.930926));
1883
+ // points.push(new GLatLng(36.468282,-121.931048));
1884
+ // points.push(new GLatLng(36.468399,-121.931231));
1885
+ // points.push(new GLatLng(36.468514,-121.931424));
1886
+ // points.push(new GLatLng(36.468633,-121.931636));
1887
+ // points.push(new GLatLng(36.468732,-121.931797));
1888
+ // points.push(new GLatLng(36.468848,-121.931973));
1889
+ // points.push(new GLatLng(36.468952,-121.932122));
1890
+ // points.push(new GLatLng(36.469078,-121.932292));
1891
+ // points.push(new GLatLng(36.469235,-121.932479));
1892
+ // points.push(new GLatLng(36.469389,-121.93266));
1893
+ // points.push(new GLatLng(36.469528,-121.932815));
1894
+ points.push(new GLatLng(36.469665,-121.932977));
1895
+ // points.push(new GLatLng(36.469789,-121.933111));
1896
+ // points.push(new GLatLng(36.469914,-121.933241));
1897
+ // points.push(new GLatLng(36.470061,-121.933385));
1898
+ // points.push(new GLatLng(36.470208,-121.933527));
1899
+ // points.push(new GLatLng(36.470334,-121.93365));
1900
+ // points.push(new GLatLng(36.470458,-121.933774));
1901
+ // points.push(new GLatLng(36.470585,-121.933901));
1902
+ // points.push(new GLatLng(36.47077,-121.934082));
1903
+ // points.push(new GLatLng(36.470932,-121.934237));
1904
+ // points.push(new GLatLng(36.471073,-121.934368));
1905
+ // points.push(new GLatLng(36.471226,-121.934486));
1906
+ points.push(new GLatLng(36.471363,-121.934591));
1907
+ // points.push(new GLatLng(36.471521,-121.934714));
1908
+ // points.push(new GLatLng(36.471655,-121.93482));
1909
+ // points.push(new GLatLng(36.471818,-121.934925));
1910
+ // points.push(new GLatLng(36.471992,-121.935018));
1911
+ // points.push(new GLatLng(36.47217,-121.93509));
1912
+ // points.push(new GLatLng(36.472337,-121.935175));
1913
+ // points.push(new GLatLng(36.472481,-121.935243));
1914
+ // points.push(new GLatLng(36.472671,-121.935312));
1915
+ // points.push(new GLatLng(36.472858,-121.935367));
1916
+ // points.push(new GLatLng(36.473064,-121.935424));
1917
+ // points.push(new GLatLng(36.473249,-121.93546));
1918
+ points.push(new GLatLng(36.473405,-121.935491));
1919
+ // points.push(new GLatLng(36.473593,-121.935517));
1920
+ // points.push(new GLatLng(36.473802,-121.935556));
1921
+ // points.push(new GLatLng(36.47398,-121.935591));
1922
+ // points.push(new GLatLng(36.474137,-121.935625));
1923
+ // points.push(new GLatLng(36.474255,-121.935657));
1924
+ // points.push(new GLatLng(36.474378,-121.935674));
1925
+ // points.push(new GLatLng(36.474539,-121.935696));
1926
+ // points.push(new GLatLng(36.474715,-121.935731));
1927
+ // points.push(new GLatLng(36.474883,-121.935758));
1928
+ // points.push(new GLatLng(36.475021,-121.93578));
1929
+ // points.push(new GLatLng(36.475082,-121.9358));
1930
+ points.push(new GLatLng(36.475195,-121.935834));
1931
+ // points.push(new GLatLng(36.475323,-121.935874));
1932
+ // points.push(new GLatLng(36.475465,-121.935892));
1933
+ // points.push(new GLatLng(36.475585,-121.935909));
1934
+ // points.push(new GLatLng(36.475677,-121.935924));
1935
+ // points.push(new GLatLng(36.475836,-121.935944));
1936
+ // points.push(new GLatLng(36.47602,-121.935956));
1937
+ // points.push(new GLatLng(36.476206,-121.935977));
1938
+ // points.push(new GLatLng(36.476363,-121.93601));
1939
+ // points.push(new GLatLng(36.476519,-121.936048));
1940
+ // points.push(new GLatLng(36.476615,-121.936072));
1941
+ // points.push(new GLatLng(36.476629,-121.936078));
1942
+ points.push(new GLatLng(36.476737,-121.9361));
1943
+ // points.push(new GLatLng(36.476754,-121.9361));
1944
+ // points.push(new GLatLng(36.476944,-121.936118));
1945
+ // points.push(new GLatLng(36.477136,-121.936148));
1946
+ // points.push(new GLatLng(36.477277,-121.936174));
1947
+ // points.push(new GLatLng(36.477505,-121.936198));
1948
+ // points.push(new GLatLng(36.477693,-121.93623));
1949
+ // points.push(new GLatLng(36.477943,-121.936271));
1950
+ // points.push(new GLatLng(36.478112,-121.936302));
1951
+ // points.push(new GLatLng(36.478251,-121.936336));
1952
+ // points.push(new GLatLng(36.478418,-121.936383));
1953
+ // points.push(new GLatLng(36.478558,-121.936433));
1954
+ points.push(new GLatLng(36.47872,-121.936492));
1955
+ // points.push(new GLatLng(36.478873,-121.936562));
1956
+ // points.push(new GLatLng(36.479031,-121.936635));
1957
+ // points.push(new GLatLng(36.479176,-121.936724));
1958
+ // points.push(new GLatLng(36.479322,-121.936803));
1959
+ // points.push(new GLatLng(36.479459,-121.936877));
1960
+ // points.push(new GLatLng(36.479578,-121.936937));
1961
+ // points.push(new GLatLng(36.479752,-121.937015));
1962
+ // points.push(new GLatLng(36.479908,-121.937068));
1963
+ // points.push(new GLatLng(36.480069,-121.937116));
1964
+ // points.push(new GLatLng(36.480221,-121.937154));
1965
+ // points.push(new GLatLng(36.480354,-121.937171));
1966
+ points.push(new GLatLng(36.480503,-121.937203));
1967
+ // points.push(new GLatLng(36.480649,-121.937214));
1968
+ // points.push(new GLatLng(36.480795,-121.937204));
1969
+ // points.push(new GLatLng(36.480957,-121.937212));
1970
+ // points.push(new GLatLng(36.481115,-121.937202));
1971
+ // points.push(new GLatLng(36.481243,-121.937199));
1972
+ // points.push(new GLatLng(36.481366,-121.937198));
1973
+ // points.push(new GLatLng(36.481526,-121.937194));
1974
+ // points.push(new GLatLng(36.48161,-121.937186));
1975
+ // points.push(new GLatLng(36.48161,-121.937186));
1976
+ // points.push(new GLatLng(36.481682,-121.937182));
1977
+ // points.push(new GLatLng(36.481842,-121.937197));
1978
+ points.push(new GLatLng(36.482,-121.937185));
1979
+ // points.push(new GLatLng(36.482171,-121.937178));
1980
+ // points.push(new GLatLng(36.482283,-121.937183));
1981
+ // points.push(new GLatLng(36.482449,-121.937177));
1982
+ // points.push(new GLatLng(36.482545,-121.937176));
1983
+ // points.push(new GLatLng(36.482715,-121.937183));
1984
+ // points.push(new GLatLng(36.482857,-121.937188));
1985
+ // points.push(new GLatLng(36.48302,-121.937205));
1986
+ // points.push(new GLatLng(36.483167,-121.937239));
1987
+ // points.push(new GLatLng(36.483304,-121.937271));
1988
+ // points.push(new GLatLng(36.483448,-121.937319));
1989
+ // points.push(new GLatLng(36.483562,-121.937373));
1990
+ points.push(new GLatLng(36.483686,-121.937447));
1991
+ // points.push(new GLatLng(36.48376,-121.93749));
1992
+ // points.push(new GLatLng(36.483867,-121.93754));
1993
+ // points.push(new GLatLng(36.483979,-121.937587));
1994
+ // points.push(new GLatLng(36.484101,-121.937633));
1995
+ // points.push(new GLatLng(36.484203,-121.937676));
1996
+ // points.push(new GLatLng(36.484264,-121.937709));
1997
+ // points.push(new GLatLng(36.484339,-121.937754));
1998
+ // points.push(new GLatLng(36.484451,-121.937801));
1999
+ // points.push(new GLatLng(36.484574,-121.937811));
2000
+ // points.push(new GLatLng(36.484736,-121.937832));
2001
+ // points.push(new GLatLng(36.484857,-121.937853));
2002
+ points.push(new GLatLng(36.484949,-121.937871));
2003
+ // points.push(new GLatLng(36.48511,-121.937886));
2004
+ // points.push(new GLatLng(36.485223,-121.937873));
2005
+ // points.push(new GLatLng(36.485371,-121.937868));
2006
+ // points.push(new GLatLng(36.485511,-121.937868));
2007
+ // points.push(new GLatLng(36.485654,-121.937866));
2008
+ // points.push(new GLatLng(36.485798,-121.937841));
2009
+ // points.push(new GLatLng(36.48597,-121.937816));
2010
+ // points.push(new GLatLng(36.486129,-121.937809));
2011
+ // points.push(new GLatLng(36.486253,-121.937806));
2012
+ // points.push(new GLatLng(36.486406,-121.937799));
2013
+ // points.push(new GLatLng(36.486509,-121.937786));
2014
+ points.push(new GLatLng(36.486655,-121.937784));
2015
+ // points.push(new GLatLng(36.486785,-121.937785));
2016
+ // points.push(new GLatLng(36.486938,-121.937779));
2017
+ // points.push(new GLatLng(36.487092,-121.93777));
2018
+ // points.push(new GLatLng(36.487241,-121.937752));
2019
+ // points.push(new GLatLng(36.487424,-121.937738));
2020
+ // points.push(new GLatLng(36.48753,-121.937735));
2021
+ // points.push(new GLatLng(36.487685,-121.937726));
2022
+ // points.push(new GLatLng(36.487826,-121.93774));
2023
+ // points.push(new GLatLng(36.487902,-121.937751));
2024
+ // points.push(new GLatLng(36.488047,-121.937759));
2025
+ // points.push(new GLatLng(36.488117,-121.937779));
2026
+ points.push(new GLatLng(36.488241,-121.937802));
2027
+ // points.push(new GLatLng(36.488362,-121.937825));
2028
+ // points.push(new GLatLng(36.488564,-121.937881));
2029
+ // points.push(new GLatLng(36.488692,-121.937929));
2030
+ // points.push(new GLatLng(36.488818,-121.937978));
2031
+ // points.push(new GLatLng(36.488962,-121.938014));
2032
+ // points.push(new GLatLng(36.489098,-121.938047));
2033
+ // points.push(new GLatLng(36.489217,-121.938061));
2034
+ // points.push(new GLatLng(36.489335,-121.938091));
2035
+ // points.push(new GLatLng(36.48948,-121.938133));
2036
+ // points.push(new GLatLng(36.489606,-121.938169));
2037
+ // points.push(new GLatLng(36.48979,-121.938218));
2038
+ points.push(new GLatLng(36.489911,-121.938247));
2039
+ // points.push(new GLatLng(36.490013,-121.938267));
2040
+ // points.push(new GLatLng(36.490095,-121.938279));
2041
+ // points.push(new GLatLng(36.490171,-121.938293));
2042
+ // points.push(new GLatLng(36.490267,-121.938313));
2043
+ // points.push(new GLatLng(36.490374,-121.938335));
2044
+ // points.push(new GLatLng(36.490438,-121.938329));
2045
+ // points.push(new GLatLng(36.490563,-121.938336));
2046
+ // points.push(new GLatLng(36.490668,-121.938339));
2047
+ // points.push(new GLatLng(36.490767,-121.938342));
2048
+ // points.push(new GLatLng(36.490872,-121.938339));
2049
+ // points.push(new GLatLng(36.49097,-121.938344));
2050
+ points.push(new GLatLng(36.491111,-121.938332));
2051
+ // points.push(new GLatLng(36.491248,-121.938324));
2052
+ // points.push(new GLatLng(36.491354,-121.938299));
2053
+ // points.push(new GLatLng(36.491503,-121.938281));
2054
+ // points.push(new GLatLng(36.491647,-121.93825));
2055
+ // points.push(new GLatLng(36.491797,-121.938207));
2056
+ // points.push(new GLatLng(36.491916,-121.938157));
2057
+ // points.push(new GLatLng(36.492074,-121.938089));
2058
+ // points.push(new GLatLng(36.492214,-121.938008));
2059
+ // points.push(new GLatLng(36.492315,-121.937949));
2060
+ // points.push(new GLatLng(36.492456,-121.937859));
2061
+ // points.push(new GLatLng(36.492638,-121.937774));
2062
+ points.push(new GLatLng(36.49281,-121.93773));
2063
+ // points.push(new GLatLng(36.492945,-121.937707));
2064
+ // points.push(new GLatLng(36.493096,-121.937698));
2065
+ // points.push(new GLatLng(36.493264,-121.937703));
2066
+ // points.push(new GLatLng(36.493428,-121.937722));
2067
+ // points.push(new GLatLng(36.49356,-121.937752));
2068
+ // points.push(new GLatLng(36.493668,-121.937771));
2069
+ // points.push(new GLatLng(36.49383,-121.937799));
2070
+ // points.push(new GLatLng(36.493973,-121.937781));
2071
+ // points.push(new GLatLng(36.494119,-121.937748));
2072
+ // points.push(new GLatLng(36.494285,-121.937693));
2073
+ // points.push(new GLatLng(36.494456,-121.937622));
2074
+ points.push(new GLatLng(36.494635,-121.937543));
2075
+ // points.push(new GLatLng(36.494811,-121.937473));
2076
+ // points.push(new GLatLng(36.494932,-121.937425));
2077
+ // points.push(new GLatLng(36.495104,-121.937356));
2078
+ // points.push(new GLatLng(36.495289,-121.937279));
2079
+ // points.push(new GLatLng(36.495459,-121.93721));
2080
+ // points.push(new GLatLng(36.495576,-121.937169));
2081
+ // points.push(new GLatLng(36.495732,-121.937102));
2082
+ // points.push(new GLatLng(36.495823,-121.937056));
2083
+ // points.push(new GLatLng(36.49595,-121.936999));
2084
+ // points.push(new GLatLng(36.496091,-121.936939));
2085
+ // points.push(new GLatLng(36.496255,-121.9369));
2086
+ points.push(new GLatLng(36.496368,-121.93683));
2087
+ // points.push(new GLatLng(36.496543,-121.936773));
2088
+ // points.push(new GLatLng(36.496698,-121.936717));
2089
+ // points.push(new GLatLng(36.49684,-121.936625));
2090
+ // points.push(new GLatLng(36.496977,-121.936563));
2091
+ // points.push(new GLatLng(36.497122,-121.936467));
2092
+ // points.push(new GLatLng(36.497228,-121.936409));
2093
+ // points.push(new GLatLng(36.497362,-121.936309));
2094
+ // points.push(new GLatLng(36.497475,-121.936218));
2095
+ // points.push(new GLatLng(36.497611,-121.936098));
2096
+ // points.push(new GLatLng(36.497725,-121.93599));
2097
+ // points.push(new GLatLng(36.497859,-121.935888));
2098
+ points.push(new GLatLng(36.498002,-121.935782));
2099
+ // points.push(new GLatLng(36.49821,-121.935689));
2100
+ // points.push(new GLatLng(36.498383,-121.935669));
2101
+ // points.push(new GLatLng(36.498511,-121.935692));
2102
+ // points.push(new GLatLng(36.49872,-121.935785));
2103
+ // points.push(new GLatLng(36.498865,-121.935897));
2104
+ // points.push(new GLatLng(36.498996,-121.936016));
2105
+ // points.push(new GLatLng(36.499137,-121.936191));
2106
+ // points.push(new GLatLng(36.499248,-121.936323));
2107
+ // points.push(new GLatLng(36.499366,-121.936507));
2108
+ // points.push(new GLatLng(36.499416,-121.9366));
2109
+ // points.push(new GLatLng(36.499502,-121.936722));
2110
+ points.push(new GLatLng(36.49955,-121.936792));
2111
+ // points.push(new GLatLng(36.499611,-121.936863));
2112
+ // points.push(new GLatLng(36.49967,-121.936933));
2113
+ // points.push(new GLatLng(36.499759,-121.93703));
2114
+ // points.push(new GLatLng(36.499785,-121.937045));
2115
+ // points.push(new GLatLng(36.499875,-121.93712));
2116
+ // points.push(new GLatLng(36.500008,-121.937221));
2117
+ // points.push(new GLatLng(36.500167,-121.937331));
2118
+ // points.push(new GLatLng(36.500331,-121.937423));
2119
+ // points.push(new GLatLng(36.500474,-121.937505));
2120
+ // points.push(new GLatLng(36.500586,-121.937578));
2121
+ // points.push(new GLatLng(36.500774,-121.937691));
2122
+ points.push(new GLatLng(36.500917,-121.937782));
2123
+ // points.push(new GLatLng(36.501054,-121.937868));
2124
+ // points.push(new GLatLng(36.501206,-121.937952));
2125
+ // points.push(new GLatLng(36.501349,-121.93804));
2126
+ // points.push(new GLatLng(36.501498,-121.938106));
2127
+ // points.push(new GLatLng(36.501702,-121.93815));
2128
+ // points.push(new GLatLng(36.501857,-121.938134));
2129
+ // points.push(new GLatLng(36.50198,-121.938117));
2130
+ // points.push(new GLatLng(36.502101,-121.938059));
2131
+ // points.push(new GLatLng(36.502185,-121.937993));
2132
+ // points.push(new GLatLng(36.50233,-121.937919));
2133
+ // points.push(new GLatLng(36.502445,-121.937853));
2134
+ points.push(new GLatLng(36.502566,-121.937791));
2135
+ // points.push(new GLatLng(36.502721,-121.937733));
2136
+ // points.push(new GLatLng(36.502874,-121.937722));
2137
+ // points.push(new GLatLng(36.503038,-121.937724));
2138
+ // points.push(new GLatLng(36.503163,-121.937762));
2139
+ // points.push(new GLatLng(36.503309,-121.937826));
2140
+ // points.push(new GLatLng(36.503431,-121.937877));
2141
+ // points.push(new GLatLng(36.503562,-121.937918));
2142
+ // points.push(new GLatLng(36.503692,-121.937917));
2143
+ // points.push(new GLatLng(36.503831,-121.937893));
2144
+ // points.push(new GLatLng(36.503953,-121.937844));
2145
+ // points.push(new GLatLng(36.504063,-121.937771));
2146
+ points.push(new GLatLng(36.504161,-121.937704));
2147
+ // points.push(new GLatLng(36.504268,-121.937622));
2148
+ // points.push(new GLatLng(36.504363,-121.937526));
2149
+ // points.push(new GLatLng(36.504476,-121.937401));
2150
+ // points.push(new GLatLng(36.504553,-121.93732));
2151
+ // points.push(new GLatLng(36.504683,-121.937176));
2152
+ // points.push(new GLatLng(36.504777,-121.937072));
2153
+ // points.push(new GLatLng(36.504878,-121.936956));
2154
+ // points.push(new GLatLng(36.504944,-121.936889));
2155
+ // points.push(new GLatLng(36.505072,-121.936769));
2156
+ // points.push(new GLatLng(36.505186,-121.936661));
2157
+ // points.push(new GLatLng(36.505281,-121.936575));
2158
+ points.push(new GLatLng(36.505399,-121.936489));
2159
+ // points.push(new GLatLng(36.50553,-121.936386));
2160
+ // points.push(new GLatLng(36.50566,-121.936289));
2161
+ // points.push(new GLatLng(36.505736,-121.936236));
2162
+ // points.push(new GLatLng(36.505817,-121.936187));
2163
+ // points.push(new GLatLng(36.506009,-121.936111));
2164
+ // points.push(new GLatLng(36.506135,-121.936097));
2165
+ // points.push(new GLatLng(36.506295,-121.936086));
2166
+ // points.push(new GLatLng(36.506464,-121.936071));
2167
+ // points.push(new GLatLng(36.506599,-121.936051));
2168
+ // points.push(new GLatLng(36.50673,-121.936031));
2169
+ // points.push(new GLatLng(36.506875,-121.93601));
2170
+ points.push(new GLatLng(36.507007,-121.935991));
2171
+ // points.push(new GLatLng(36.507116,-121.935977));
2172
+ // points.push(new GLatLng(36.507236,-121.935981));
2173
+ // points.push(new GLatLng(36.507371,-121.935978));
2174
+ // points.push(new GLatLng(36.507537,-121.935997));
2175
+ // points.push(new GLatLng(36.507652,-121.93602));
2176
+ // points.push(new GLatLng(36.50781,-121.93606));
2177
+ // points.push(new GLatLng(36.507964,-121.936134));
2178
+ // points.push(new GLatLng(36.508116,-121.936282));
2179
+ // points.push(new GLatLng(36.508244,-121.936418));
2180
+ // points.push(new GLatLng(36.508358,-121.936608));
2181
+ // points.push(new GLatLng(36.508461,-121.936811));
2182
+ points.push(new GLatLng(36.508564,-121.936977));
2183
+ // points.push(new GLatLng(36.508672,-121.937128));
2184
+ // points.push(new GLatLng(36.508789,-121.937274));
2185
+ // points.push(new GLatLng(36.508915,-121.937398));
2186
+ // points.push(new GLatLng(36.509028,-121.937492));
2187
+ // points.push(new GLatLng(36.509157,-121.937586));
2188
+ // points.push(new GLatLng(36.509274,-121.937684));
2189
+ // points.push(new GLatLng(36.509375,-121.937746));
2190
+ // points.push(new GLatLng(36.509527,-121.937833));
2191
+ // points.push(new GLatLng(36.509651,-121.937895));
2192
+ // points.push(new GLatLng(36.509778,-121.937965));
2193
+ // points.push(new GLatLng(36.509941,-121.938023));
2194
+ points.push(new GLatLng(36.510102,-121.938065));
2195
+ // points.push(new GLatLng(36.51022,-121.938082));
2196
+ // points.push(new GLatLng(36.510394,-121.938109));
2197
+ // points.push(new GLatLng(36.510477,-121.938107));
2198
+ // points.push(new GLatLng(36.510616,-121.938116));
2199
+ // points.push(new GLatLng(36.510788,-121.938111));
2200
+ // points.push(new GLatLng(36.510987,-121.938095));
2201
+ // points.push(new GLatLng(36.511118,-121.93809));
2202
+ // points.push(new GLatLng(36.511284,-121.938077));
2203
+ // points.push(new GLatLng(36.511447,-121.938075));
2204
+ // points.push(new GLatLng(36.511602,-121.938064));
2205
+ // points.push(new GLatLng(36.511765,-121.938064));
2206
+ points.push(new GLatLng(36.511925,-121.938048));
2207
+ // points.push(new GLatLng(36.512063,-121.938047));
2208
+ // points.push(new GLatLng(36.512234,-121.938058));
2209
+ // points.push(new GLatLng(36.512265,-121.938064));
2210
+ // points.push(new GLatLng(36.512429,-121.938055));
2211
+ // points.push(new GLatLng(36.512498,-121.938039));
2212
+ // points.push(new GLatLng(36.512686,-121.938022));
2213
+ // points.push(new GLatLng(36.512842,-121.937997));
2214
+ // points.push(new GLatLng(36.512991,-121.937968));
2215
+ // points.push(new GLatLng(36.513128,-121.93794));
2216
+ // points.push(new GLatLng(36.513279,-121.937913));
2217
+ // points.push(new GLatLng(36.513327,-121.93792));
2218
+ points.push(new GLatLng(36.513484,-121.937874));
2219
+ // points.push(new GLatLng(36.513619,-121.93783));
2220
+ // points.push(new GLatLng(36.513804,-121.937783));
2221
+ // points.push(new GLatLng(36.513953,-121.937738));
2222
+ // points.push(new GLatLng(36.514102,-121.937693));
2223
+ // points.push(new GLatLng(36.514256,-121.937641));
2224
+ // points.push(new GLatLng(36.514374,-121.937585));
2225
+ // points.push(new GLatLng(36.514504,-121.937534));
2226
+ // points.push(new GLatLng(36.514626,-121.937495));
2227
+ // points.push(new GLatLng(36.514755,-121.937441));
2228
+ // points.push(new GLatLng(36.514876,-121.937388));
2229
+ // points.push(new GLatLng(36.514995,-121.937324));
2230
+ points.push(new GLatLng(36.515117,-121.937261));
2231
+ // points.push(new GLatLng(36.51523,-121.937195));
2232
+ // points.push(new GLatLng(36.515322,-121.937148));
2233
+ // points.push(new GLatLng(36.515343,-121.937133));
2234
+ // points.push(new GLatLng(36.515462,-121.937086));
2235
+ // points.push(new GLatLng(36.515584,-121.937039));
2236
+ // points.push(new GLatLng(36.515737,-121.936961));
2237
+ // points.push(new GLatLng(36.515862,-121.936877));
2238
+ // points.push(new GLatLng(36.515998,-121.936776));
2239
+ // points.push(new GLatLng(36.516161,-121.936654));
2240
+ // points.push(new GLatLng(36.516249,-121.936582));
2241
+ // points.push(new GLatLng(36.516396,-121.936491));
2242
+ points.push(new GLatLng(36.516513,-121.936407));
2243
+ // points.push(new GLatLng(36.516622,-121.936321));
2244
+ // points.push(new GLatLng(36.516723,-121.936221));
2245
+ // points.push(new GLatLng(36.516841,-121.936103));
2246
+ // points.push(new GLatLng(36.51689,-121.936028));
2247
+ // points.push(new GLatLng(36.517012,-121.935929));
2248
+ // points.push(new GLatLng(36.517091,-121.935865));
2249
+ // points.push(new GLatLng(36.517216,-121.935773));
2250
+ // points.push(new GLatLng(36.517337,-121.935646));
2251
+ // points.push(new GLatLng(36.517477,-121.935499));
2252
+ // points.push(new GLatLng(36.517579,-121.935402));
2253
+ // points.push(new GLatLng(36.517705,-121.93527));
2254
+ points.push(new GLatLng(36.517826,-121.93516));
2255
+ // points.push(new GLatLng(36.51798,-121.935014));
2256
+ // points.push(new GLatLng(36.517996,-121.934988));
2257
+ // points.push(new GLatLng(36.518104,-121.934851));
2258
+ // points.push(new GLatLng(36.518197,-121.934724));
2259
+ // points.push(new GLatLng(36.518299,-121.934616));
2260
+ // points.push(new GLatLng(36.518432,-121.934465));
2261
+ // points.push(new GLatLng(36.518515,-121.934343));
2262
+ // points.push(new GLatLng(36.51859,-121.934245));
2263
+ // points.push(new GLatLng(36.518682,-121.934118));
2264
+ // points.push(new GLatLng(36.518749,-121.934026));
2265
+ // points.push(new GLatLng(36.518798,-121.933909));
2266
+ points.push(new GLatLng(36.51889,-121.933774));
2267
+ // points.push(new GLatLng(36.518954,-121.933674));
2268
+ // points.push(new GLatLng(36.519056,-121.933521));
2269
+ // points.push(new GLatLng(36.519135,-121.933396));
2270
+ // points.push(new GLatLng(36.51923,-121.933235));
2271
+ // points.push(new GLatLng(36.51932,-121.933076));
2272
+ // points.push(new GLatLng(36.519387,-121.932946));
2273
+ // points.push(new GLatLng(36.519469,-121.932824));
2274
+ // points.push(new GLatLng(36.51956,-121.932663));
2275
+ // points.push(new GLatLng(36.519618,-121.932558));
2276
+ // points.push(new GLatLng(36.519696,-121.932397));
2277
+ // points.push(new GLatLng(36.519758,-121.932261));
2278
+ points.push(new GLatLng(36.519842,-121.932066));
2279
+ // points.push(new GLatLng(36.519921,-121.931896));
2280
+ // points.push(new GLatLng(36.519992,-121.931726));
2281
+ // points.push(new GLatLng(36.520084,-121.931535));
2282
+ // points.push(new GLatLng(36.520148,-121.931389));
2283
+ // points.push(new GLatLng(36.520224,-121.931237));
2284
+ // points.push(new GLatLng(36.520307,-121.93107));
2285
+ // points.push(new GLatLng(36.520402,-121.930895));
2286
+ // points.push(new GLatLng(36.520476,-121.930755));
2287
+ // points.push(new GLatLng(36.520568,-121.930582));
2288
+ // points.push(new GLatLng(36.520672,-121.93038));
2289
+ // points.push(new GLatLng(36.520745,-121.930213));
2290
+ points.push(new GLatLng(36.52081,-121.930073));
2291
+ // points.push(new GLatLng(36.520887,-121.929927));
2292
+ // points.push(new GLatLng(36.520943,-121.929794));
2293
+ // points.push(new GLatLng(36.521025,-121.929623));
2294
+ // points.push(new GLatLng(36.521089,-121.929505));
2295
+ // points.push(new GLatLng(36.521172,-121.929353));
2296
+ // points.push(new GLatLng(36.52125,-121.929207));
2297
+ // points.push(new GLatLng(36.521343,-121.929036));
2298
+ // points.push(new GLatLng(36.521418,-121.928901));
2299
+ // points.push(new GLatLng(36.521489,-121.928716));
2300
+ // points.push(new GLatLng(36.521577,-121.928546));
2301
+ // points.push(new GLatLng(36.521675,-121.928382));
2302
+ points.push(new GLatLng(36.521731,-121.928275));
2303
+ // points.push(new GLatLng(36.52181,-121.928132));
2304
+ // points.push(new GLatLng(36.521911,-121.927972));
2305
+ // points.push(new GLatLng(36.522021,-121.92779));
2306
+ // points.push(new GLatLng(36.522114,-121.927639));
2307
+ // points.push(new GLatLng(36.522185,-121.927522));
2308
+ // points.push(new GLatLng(36.522271,-121.92741));
2309
+ // points.push(new GLatLng(36.522339,-121.927316));
2310
+ // points.push(new GLatLng(36.522472,-121.927143));
2311
+ // points.push(new GLatLng(36.522585,-121.927006));
2312
+ // points.push(new GLatLng(36.522706,-121.926839));
2313
+ // points.push(new GLatLng(36.522818,-121.926697));
2314
+ points.push(new GLatLng(36.522926,-121.926559));
2315
+ // points.push(new GLatLng(36.523038,-121.926427));
2316
+ // points.push(new GLatLng(36.523153,-121.926292));
2317
+ // points.push(new GLatLng(36.523287,-121.926138));
2318
+ // points.push(new GLatLng(36.523404,-121.926001));
2319
+ // points.push(new GLatLng(36.523508,-121.925875));
2320
+ // points.push(new GLatLng(36.52359,-121.925782));
2321
+ // points.push(new GLatLng(36.523667,-121.925701));
2322
+ // points.push(new GLatLng(36.523775,-121.92557));
2323
+ // points.push(new GLatLng(36.523916,-121.92539));
2324
+ // points.push(new GLatLng(36.524006,-121.925281));
2325
+ // points.push(new GLatLng(36.524135,-121.925122));
2326
+ points.push(new GLatLng(36.524205,-121.925036));
2327
+ // points.push(new GLatLng(36.524312,-121.924901));
2328
+ // points.push(new GLatLng(36.524411,-121.92477));
2329
+ // points.push(new GLatLng(36.524512,-121.924637));
2330
+ // points.push(new GLatLng(36.524606,-121.924525));
2331
+ // points.push(new GLatLng(36.52472,-121.924395));
2332
+ // points.push(new GLatLng(36.524816,-121.924287));
2333
+ // points.push(new GLatLng(36.52487,-121.924206));
2334
+ // points.push(new GLatLng(36.52493,-121.924144));
2335
+ // points.push(new GLatLng(36.524982,-121.924104));
2336
+ // points.push(new GLatLng(36.524997,-121.924079));
2337
+ // points.push(new GLatLng(36.525075,-121.924011));
2338
+ points.push(new GLatLng(36.525164,-121.923934));
2339
+ // points.push(new GLatLng(36.525211,-121.923891));
2340
+ // points.push(new GLatLng(36.525288,-121.923769));
2341
+ // points.push(new GLatLng(36.525307,-121.92374));
2342
+ // points.push(new GLatLng(36.525369,-121.923638));
2343
+ // points.push(new GLatLng(36.525393,-121.923612));
2344
+ // points.push(new GLatLng(36.525463,-121.923503));
2345
+ // points.push(new GLatLng(36.525473,-121.92349));
2346
+ // points.push(new GLatLng(36.52552,-121.923405));
2347
+ // points.push(new GLatLng(36.525638,-121.923305));
2348
+ // points.push(new GLatLng(36.525697,-121.923244));
2349
+ // points.push(new GLatLng(36.525783,-121.923156));
2350
+ points.push(new GLatLng(36.525909,-121.923035));
2351
+ // points.push(new GLatLng(36.525954,-121.922953));
2352
+ // points.push(new GLatLng(36.525999,-121.922885));
2353
+ // points.push(new GLatLng(36.526059,-121.922792));
2354
+ // points.push(new GLatLng(36.526103,-121.922758));
2355
+ // points.push(new GLatLng(36.526197,-121.922672));
2356
+ // points.push(new GLatLng(36.526276,-121.92258));
2357
+ // points.push(new GLatLng(36.526332,-121.922491));
2358
+ // points.push(new GLatLng(36.526386,-121.922381));
2359
+ // points.push(new GLatLng(36.526449,-121.922282));
2360
+ // points.push(new GLatLng(36.52652,-121.922195));
2361
+ // points.push(new GLatLng(36.52658,-121.922113));
2362
+ points.push(new GLatLng(36.526644,-121.922017));
2363
+ // points.push(new GLatLng(36.526722,-121.921912));
2364
+ // points.push(new GLatLng(36.526846,-121.921765));
2365
+ // points.push(new GLatLng(36.526913,-121.921683));
2366
+ // points.push(new GLatLng(36.527027,-121.921548));
2367
+ // points.push(new GLatLng(36.527115,-121.921421));
2368
+ // points.push(new GLatLng(36.527226,-121.921272));
2369
+ // points.push(new GLatLng(36.527323,-121.921163));
2370
+ // points.push(new GLatLng(36.527423,-121.921045));
2371
+ // points.push(new GLatLng(36.52751,-121.920934));
2372
+ // points.push(new GLatLng(36.527604,-121.920815));
2373
+ // points.push(new GLatLng(36.52772,-121.920651));
2374
+ points.push(new GLatLng(36.527821,-121.920525));
2375
+ // points.push(new GLatLng(36.527906,-121.92042));
2376
+ // points.push(new GLatLng(36.528006,-121.920311));
2377
+ // points.push(new GLatLng(36.528123,-121.9202));
2378
+ // points.push(new GLatLng(36.528234,-121.920046));
2379
+ // points.push(new GLatLng(36.528342,-121.919943));
2380
+ // points.push(new GLatLng(36.528448,-121.919828));
2381
+ // points.push(new GLatLng(36.528563,-121.919707));
2382
+ // points.push(new GLatLng(36.528675,-121.919568));
2383
+ // points.push(new GLatLng(36.52879,-121.919434));
2384
+ // points.push(new GLatLng(36.52888,-121.91933));
2385
+ // points.push(new GLatLng(36.528912,-121.919271));
2386
+ points.push(new GLatLng(36.529046,-121.919131));
2387
+ // points.push(new GLatLng(36.529168,-121.918994));
2388
+ // points.push(new GLatLng(36.529246,-121.918893));
2389
+ // points.push(new GLatLng(36.529352,-121.918794));
2390
+ // points.push(new GLatLng(36.529464,-121.918694));
2391
+ // points.push(new GLatLng(36.52957,-121.918582));
2392
+ // points.push(new GLatLng(36.529686,-121.918479));
2393
+ // points.push(new GLatLng(36.529832,-121.91833));
2394
+ // points.push(new GLatLng(36.53,-121.918169));
2395
+ // points.push(new GLatLng(36.530125,-121.91807));
2396
+ // points.push(new GLatLng(36.530252,-121.917957));
2397
+ // points.push(new GLatLng(36.530392,-121.917839));
2398
+ points.push(new GLatLng(36.530505,-121.917717));
2399
+ // points.push(new GLatLng(36.530613,-121.917619));
2400
+ // points.push(new GLatLng(36.530728,-121.917504));
2401
+ // points.push(new GLatLng(36.530861,-121.917374));
2402
+ // points.push(new GLatLng(36.530967,-121.917269));
2403
+ // points.push(new GLatLng(36.531072,-121.917166));
2404
+ // points.push(new GLatLng(36.531192,-121.917065));
2405
+ // points.push(new GLatLng(36.531317,-121.916986));
2406
+ // points.push(new GLatLng(36.53143,-121.916894));
2407
+ // points.push(new GLatLng(36.531516,-121.916834));
2408
+ // points.push(new GLatLng(36.531639,-121.916746));
2409
+ // points.push(new GLatLng(36.531785,-121.916632));
2410
+ points.push(new GLatLng(36.531867,-121.916561));
2411
+ // points.push(new GLatLng(36.532037,-121.916411));
2412
+ // points.push(new GLatLng(36.532131,-121.916321));
2413
+ // points.push(new GLatLng(36.532236,-121.916229));
2414
+ // points.push(new GLatLng(36.532386,-121.916093));
2415
+ // points.push(new GLatLng(36.532469,-121.916018));
2416
+ // points.push(new GLatLng(36.532584,-121.915936));
2417
+ // points.push(new GLatLng(36.532727,-121.915842));
2418
+ // points.push(new GLatLng(36.532815,-121.915756));
2419
+ // points.push(new GLatLng(36.532943,-121.915648));
2420
+ // points.push(new GLatLng(36.53305,-121.915546));
2421
+ // points.push(new GLatLng(36.533185,-121.915438));
2422
+ points.push(new GLatLng(36.533305,-121.915343));
2423
+ // points.push(new GLatLng(36.533407,-121.915268));
2424
+ // points.push(new GLatLng(36.533475,-121.9152));
2425
+ // points.push(new GLatLng(36.533622,-121.915078));
2426
+ // points.push(new GLatLng(36.533737,-121.914965));
2427
+ // points.push(new GLatLng(36.533831,-121.914883));
2428
+ // points.push(new GLatLng(36.533949,-121.914788));
2429
+ // points.push(new GLatLng(36.534044,-121.914711));
2430
+ // points.push(new GLatLng(36.534181,-121.914587));
2431
+ // points.push(new GLatLng(36.534274,-121.914496));
2432
+ // points.push(new GLatLng(36.534368,-121.914424));
2433
+ // points.push(new GLatLng(36.534504,-121.914312));
2434
+ points.push(new GLatLng(36.534633,-121.914201));
2435
+ // points.push(new GLatLng(36.534719,-121.914128));
2436
+ // points.push(new GLatLng(36.534869,-121.913973));
2437
+ // points.push(new GLatLng(36.535003,-121.91383));
2438
+ // points.push(new GLatLng(36.535109,-121.913724));
2439
+ // points.push(new GLatLng(36.535199,-121.913631));
2440
+ // points.push(new GLatLng(36.535305,-121.913517));
2441
+ // points.push(new GLatLng(36.535435,-121.913389));
2442
+ // points.push(new GLatLng(36.53554,-121.913273));
2443
+ // points.push(new GLatLng(36.535701,-121.913116));
2444
+ // points.push(new GLatLng(36.535809,-121.912993));
2445
+ // points.push(new GLatLng(36.535949,-121.912854));
2446
+ points.push(new GLatLng(36.536075,-121.912713));
2447
+ // points.push(new GLatLng(36.536167,-121.912613));
2448
+ // points.push(new GLatLng(36.536297,-121.912474));
2449
+ // points.push(new GLatLng(36.536459,-121.91231));
2450
+ // points.push(new GLatLng(36.536586,-121.912177));
2451
+ // points.push(new GLatLng(36.536738,-121.91202));
2452
+ // points.push(new GLatLng(36.536873,-121.911898));
2453
+ // points.push(new GLatLng(36.537007,-121.911781));
2454
+ // points.push(new GLatLng(36.537148,-121.911682));
2455
+ // points.push(new GLatLng(36.537266,-121.911606));
2456
+ // points.push(new GLatLng(36.537405,-121.911525));
2457
+ // points.push(new GLatLng(36.537601,-121.911443));
2458
+ points.push(new GLatLng(36.537773,-121.911365));
2459
+ // points.push(new GLatLng(36.537929,-121.911294));
2460
+ // points.push(new GLatLng(36.53816,-121.911189));
2461
+ // points.push(new GLatLng(36.538307,-121.911107));
2462
+ // points.push(new GLatLng(36.538495,-121.910995));
2463
+ // points.push(new GLatLng(36.538555,-121.910938));
2464
+ // points.push(new GLatLng(36.538598,-121.910916));
2465
+ // points.push(new GLatLng(36.538612,-121.910898));
2466
+ // points.push(new GLatLng(36.538597,-121.910906));
2467
+ // points.push(new GLatLng(36.538601,-121.910907));
2468
+ // points.push(new GLatLng(36.538609,-121.910884));
2469
+ // points.push(new GLatLng(36.538645,-121.910861));
2470
+ points.push(new GLatLng(36.538656,-121.91085));
2471
+
2472
+ // app_max=200.0 ratio=12.245 increment=12
2473
+
2474
+ var routePolyline = new GPolyline(points);
2475
+ map.addOverlay(routePolyline);
2476
+
2477
+ // Create a base icon for all of our markers that specifies the
2478
+ // shadow, icon dimensions, etc.
2479
+ var baseIcon = new GIcon();
2480
+ baseIcon.shadow = "images/shadow50.png";
2481
+ baseIcon.iconSize = new GSize(20, 34);
2482
+ baseIcon.shadowSize = new GSize(37, 34);
2483
+ baseIcon.iconAnchor = new GPoint(9, 34);
2484
+ baseIcon.infoWindowAnchor = new GPoint(9, 2);
2485
+ baseIcon.infoShadowAnchor = new GPoint(18, 25);
2486
+
2487
+ var iconStart = new GIcon(baseIcon);
2488
+ iconStart.image = "images/dd-start.png";
2489
+ var pStart = new GPoint(-121.781665, 36.247196);
2490
+ var mStart = new GMarker(pStart, iconStart);
2491
+ GEvent.addListener(mStart, "click", function() {
2492
+ mStart.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>0.000</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:00:00</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>0:00</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>0.00</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.247196</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.781665</td></tr></table>");
2493
+ });
2494
+ map.addOverlay(mStart);
2495
+
2496
+ var icon1 = new GIcon(baseIcon);
2497
+ icon1.image = "images/marker1.png";
2498
+ var p1 = new GPoint(-121.788872, 36.259338);
2499
+ var m1 = new GMarker(p1, icon1);
2500
+ GEvent.addListener(m1, "click", function() {
2501
+ m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 1</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>1.011</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:08:36</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:30.40</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>7.053</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.259338</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.788872</td></tr></table>");
2502
+ });
2503
+ map.addOverlay(m1);
2504
+
2505
+ var icon2 = new GIcon(baseIcon);
2506
+ icon2.image = "images/marker2.png";
2507
+ var p2 = new GPoint(-121.803077, 36.265629);
2508
+ var m2 = new GMarker(p2, icon2);
2509
+ GEvent.addListener(m2, "click", function() {
2510
+ m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 2</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>2.005</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:17:26</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:41.77</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.900</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.265629</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.803077</td></tr></table>");
2511
+ });
2512
+ map.addOverlay(m2);
2513
+
2514
+ var icon3 = new GIcon(baseIcon);
2515
+ icon3.image = "images/marker3.png";
2516
+ var p3 = new GPoint(-121.816802, 36.272828);
2517
+ var m3 = new GMarker(p3, icon3);
2518
+ GEvent.addListener(m3, "click", function() {
2519
+ m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 3</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>3.008</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:26:06</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:40.69</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.914</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.272828</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.816802</td></tr></table>");
2520
+ });
2521
+ map.addOverlay(m3);
2522
+
2523
+ var icon4 = new GIcon(baseIcon);
2524
+ icon4.image = "images/marker4.png";
2525
+ var p4 = new GPoint(-121.831077, 36.280462);
2526
+ var m4 = new GMarker(p4, icon4);
2527
+ GEvent.addListener(m4, "click", function() {
2528
+ m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 4</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>4.005</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:35:12</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:47.37</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.826</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.280462</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.831077</td></tr></table>");
2529
+ });
2530
+ map.addOverlay(m4);
2531
+
2532
+ var icon5 = new GIcon(baseIcon);
2533
+ icon5.image = "images/marker5.png";
2534
+ var p5 = new GPoint(-121.845266, 36.288697);
2535
+ var m5 = new GMarker(p5, icon5);
2536
+ GEvent.addListener(m5, "click", function() {
2537
+ m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 5</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>5.011</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:44:21</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:51.00</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.780</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.288697</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.845266</td></tr></table>");
2538
+ });
2539
+ map.addOverlay(m5);
2540
+
2541
+ var icon6 = new GIcon(baseIcon);
2542
+ icon6.image = "images/marker6.png";
2543
+ var p6 = new GPoint(-121.861678, 36.293026);
2544
+ var m6 = new GMarker(p6, icon6);
2545
+ GEvent.addListener(m6, "click", function() {
2546
+ m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 6</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>6.006</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:53:13</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:51.66</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.771</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.293026</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.861678</td></tr></table>");
2547
+ });
2548
+ map.addOverlay(m6);
2549
+
2550
+ var icon7 = new GIcon(baseIcon);
2551
+ icon7.image = "images/marker7.png";
2552
+ var p7 = new GPoint(-121.876964, 36.300526);
2553
+ var m7 = new GMarker(p7, icon7);
2554
+ GEvent.addListener(m7, "click", function() {
2555
+ m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 7</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>7.003</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>1:02:17</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:53.65</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.746</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.300526</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.876964</td></tr></table>");
2556
+ });
2557
+ map.addOverlay(m7);
2558
+
2559
+ var icon8 = new GIcon(baseIcon);
2560
+ icon8.image = "images/marker8.png";
2561
+ var p8 = new GPoint(-121.887968, 36.311828);
2562
+ var m8 = new GMarker(p8, icon8);
2563
+ GEvent.addListener(m8, "click", function() {
2564
+ m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 8</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>8.000</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>1:11:24</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:55.50</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.723</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.311828</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.887968</td></tr></table>");
2565
+ });
2566
+ map.addOverlay(m8);
2567
+
2568
+ var icon9 = new GIcon(baseIcon);
2569
+ icon9.image = "images/marker9.png";
2570
+ var p9 = new GPoint(-121.893759, 36.32508);
2571
+ var m9 = new GMarker(p9, icon9);
2572
+ GEvent.addListener(m9, "click", function() {
2573
+ m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 9</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>9.010</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>1:20:52</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:58.54</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.685</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.32508</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.893759</td></tr></table>");
2574
+ });
2575
+ map.addOverlay(m9);
2576
+
2577
+ var icon10 = new GIcon(baseIcon);
2578
+ icon10.image = "images/marker10.png";
2579
+ var p10 = new GPoint(-121.8864, 36.334094);
2580
+ var m10 = new GMarker(p10, icon10);
2581
+ GEvent.addListener(m10, "click", function() {
2582
+ m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 10</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>10.010</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>1:29:23</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>8:55.76</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.719</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.334094</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.8864</td></tr></table>");
2583
+ });
2584
+ map.addOverlay(m10);
2585
+
2586
+ var icon11 = new GIcon(baseIcon);
2587
+ icon11.image = "images/marker11.png";
2588
+ var p11 = new GPoint(-121.893373, 36.345178);
2589
+ var m11 = new GMarker(p11, icon11);
2590
+ GEvent.addListener(m11, "click", function() {
2591
+ m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 11</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>11.004</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>1:40:03</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:05.55</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.599</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.345178</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.893373</td></tr></table>");
2592
+ });
2593
+ map.addOverlay(m11);
2594
+
2595
+ var icon12 = new GIcon(baseIcon);
2596
+ icon12.image = "images/marker12.png";
2597
+ var p12 = new GPoint(-121.90244, 36.356525);
2598
+ var m12 = new GMarker(p12, icon12);
2599
+ GEvent.addListener(m12, "click", function() {
2600
+ m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 12</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>12.012</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>1:50:25</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:11.52</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.527</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.356525</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.90244</td></tr></table>");
2601
+ });
2602
+ map.addOverlay(m12);
2603
+
2604
+ var icon13 = new GIcon(baseIcon);
2605
+ icon13.image = "images/marker13.png";
2606
+ var p13 = new GPoint(-121.901561, 36.368959);
2607
+ var m13 = new GMarker(p13, icon13);
2608
+ GEvent.addListener(m13, "click", function() {
2609
+ m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 13</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>13.003</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>1:58:44</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:07.89</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.571</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.368959</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.901561</td></tr></table>");
2610
+ });
2611
+ map.addOverlay(m13);
2612
+
2613
+ var icon14 = new GIcon(baseIcon);
2614
+ icon14.image = "images/marker14.png";
2615
+ var p14 = new GPoint(-121.900937, 36.381124);
2616
+ var m14 = new GMarker(p14, icon14);
2617
+ GEvent.addListener(m14, "click", function() {
2618
+ m14.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 14</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>14.009</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>2:07:53</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:07.73</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.573</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.381124</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.900937</td></tr></table>");
2619
+ });
2620
+ map.addOverlay(m14);
2621
+
2622
+ var icon15 = new GIcon(baseIcon);
2623
+ icon15.image = "images/marker15.png";
2624
+ var p15 = new GPoint(-121.902873, 36.395293);
2625
+ var m15 = new GMarker(p15, icon15);
2626
+ GEvent.addListener(m15, "click", function() {
2627
+ m15.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 15</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>15.009</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>2:16:53</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:07.22</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.579</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.395293</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.902873</td></tr></table>");
2628
+ });
2629
+ map.addOverlay(m15);
2630
+
2631
+ var icon16 = new GIcon(baseIcon);
2632
+ icon16.image = "images/marker16.png";
2633
+ var p16 = new GPoint(-121.911784, 36.40732);
2634
+ var m16 = new GMarker(p16, icon16);
2635
+ GEvent.addListener(m16, "click", function() {
2636
+ m16.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 16</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>16.004</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>2:26:02</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:07.50</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.575</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.40732</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.911784</td></tr></table>");
2637
+ });
2638
+ map.addOverlay(m16);
2639
+
2640
+ var icon17 = new GIcon(baseIcon);
2641
+ icon17.image = "images/marker17.png";
2642
+ var p17 = new GPoint(-121.912688, 36.420628);
2643
+ var m17 = new GMarker(p17, icon17);
2644
+ GEvent.addListener(m17, "click", function() {
2645
+ m17.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 17</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>17.002</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>2:34:47</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:06.23</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.591</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.420628</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.912688</td></tr></table>");
2646
+ });
2647
+ map.addOverlay(m17);
2648
+
2649
+ var icon18 = new GIcon(baseIcon);
2650
+ icon18.image = "images/marker18.png";
2651
+ var p18 = new GPoint(-121.9184, 36.433885);
2652
+ var m18 = new GMarker(p18, icon18);
2653
+ GEvent.addListener(m18, "click", function() {
2654
+ m18.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 18</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>18.008</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>2:44:11</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:07.05</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.581</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.433885</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.9184</td></tr></table>");
2655
+ });
2656
+ map.addOverlay(m18);
2657
+
2658
+ var icon19 = new GIcon(baseIcon);
2659
+ icon19.image = "images/marker19.png";
2660
+ var p19 = new GPoint(-121.925435, 36.447137);
2661
+ var m19 = new GMarker(p19, icon19);
2662
+ GEvent.addListener(m19, "click", function() {
2663
+ m19.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 19</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>19.005</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>2:53:55</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:09.06</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.557</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.447137</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.925435</td></tr></table>");
2664
+ });
2665
+ map.addOverlay(m19);
2666
+
2667
+ var icon20 = new GIcon(baseIcon);
2668
+ icon20.image = "images/marker20.png";
2669
+ var p20 = new GPoint(-121.924925, 36.460703);
2670
+ var m20 = new GMarker(p20, icon20);
2671
+ GEvent.addListener(m20, "click", function() {
2672
+ m20.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 20</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>20.000</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>3:03:46</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:11.29</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.530</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.460703</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.924925</td></tr></table>");
2673
+ });
2674
+ map.addOverlay(m20);
2675
+
2676
+ var icon21 = new GIcon(baseIcon);
2677
+ icon21.image = "images/marker21.png";
2678
+ var p21 = new GPoint(-121.935243, 36.472481);
2679
+ var m21 = new GMarker(p21, icon21);
2680
+ GEvent.addListener(m21, "click", function() {
2681
+ m21.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 21</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>21.011</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>3:13:21</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:12.15</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.520</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.472481</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.935243</td></tr></table>");
2682
+ });
2683
+ map.addOverlay(m21);
2684
+
2685
+ var icon22 = new GIcon(baseIcon);
2686
+ icon22.image = "images/marker22.png";
2687
+ var p22 = new GPoint(-121.937784, 36.486655);
2688
+ var m22 = new GMarker(p22, icon22);
2689
+ GEvent.addListener(m22, "click", function() {
2690
+ m22.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 22</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>22.010</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>3:23:28</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:14.67</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.490</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.486655</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.937784</td></tr></table>");
2691
+ });
2692
+ map.addOverlay(m22);
2693
+
2694
+ var icon23 = new GIcon(baseIcon);
2695
+ icon23.image = "images/marker23.png";
2696
+ var p23 = new GPoint(-121.937331, 36.500167);
2697
+ var m23 = new GMarker(p23, icon23);
2698
+ GEvent.addListener(m23, "click", function() {
2699
+ m23.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 23</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>23.012</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>3:33:31</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:16.72</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.466</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.500167</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.937331</td></tr></table>");
2700
+ });
2701
+ map.addOverlay(m23);
2702
+
2703
+ var icon24 = new GIcon(baseIcon);
2704
+ icon24.image = "images/marker24.png";
2705
+ var p24 = new GPoint(-121.937913, 36.513279);
2706
+ var m24 = new GMarker(p24, icon24);
2707
+ GEvent.addListener(m24, "click", function() {
2708
+ m24.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 24</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>24.007</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>3:42:38</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:16.41</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.470</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.513279</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.937913</td></tr></table>");
2709
+ });
2710
+ map.addOverlay(m24);
2711
+
2712
+ var icon25 = new GIcon(baseIcon);
2713
+ icon25.image = "images/marker25.png";
2714
+ var p25 = new GPoint(-121.926001, 36.523404);
2715
+ var m25 = new GMarker(p25, icon25);
2716
+ GEvent.addListener(m25, "click", function() {
2717
+ m25.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 25</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>25.004</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>3:51:44</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:16.06</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.474</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.523404</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.926001</td></tr></table>");
2718
+ });
2719
+ map.addOverlay(m25);
2720
+
2721
+ var icon26 = new GIcon(baseIcon);
2722
+ icon26.image = "images/marker26.png";
2723
+ var p26 = new GPoint(-121.914424, 36.534368);
2724
+ var m26 = new GMarker(p26, icon26);
2725
+ GEvent.addListener(m26, "click", function() {
2726
+ m26.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Mile 26</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>26.004</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>4:02:06</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:18.60</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.445</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.534368</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.914424</td></tr></table>");
2727
+ });
2728
+ map.addOverlay(m26);
2729
+
2730
+ var iconFinish = new GIcon(baseIcon);
2731
+ iconFinish.image = "images/dd-end.png";
2732
+ var pFinish = new GPoint(-121.91085, 36.538656);
2733
+ var mFinish = new GMarker(pFinish, iconFinish);
2734
+ GEvent.addListener(mFinish, "click", function() {
2735
+ mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance: </td><td style='padding-left:12px;padding-right:1px;'>26.367</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>4:05:34</td></tr><tr><td>Average Pace: </td><td style='padding-left:12px;padding-right:1px;'>9:18.81</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>6.442</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>36.538656</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-121.91085</td></tr></table>");
2736
+ });
2737
+ map.addOverlay(mFinish);
2738
+
2739
+
2740
+
2741
+
2742
+ GEvent.addListener(map, "click", function() {
2743
+ var center = map.getCenter();
2744
+
2745
+ document.getElementById("messages").innerHTML = 'click: ' + center.toString();
2746
+ });
2747
+ GEvent.addListener(map, "moveend", function() {
2748
+ var center = map.getCenter();
2749
+
2750
+ document.getElementById("messages").innerHTML = 'moveend: ' + center.toString();
2751
+ });
2752
+
2753
+ }
2754
+ }
2755
+ //]]>
2756
+
2757
+ </script>
2758
+ </head>
2759
+ <body onload="load()" onunload="GUnload()">
2760
+ <center>
2761
+ <h3> Big Sur Marathon </h3>
2762
+ <div id="map" style="width: 1500px; height: 800px"></div>
2763
+ <div id="messages"></div>
2764
+ </center>
2765
+ </body>
2766
+ </html>