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,1283 @@
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> Crowders Mountain Hike </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(35.237505, -81.282425); // Map generated by Gooby
19
+ map.setCenter(centerPoint, 14);
20
+
21
+ var points = new Array();
22
+ points.push(new GLatLng(35.21357,-81.29359));
23
+ // points.push(new GLatLng(35.21363,-81.29353));
24
+ // points.push(new GLatLng(35.21366,-81.29349));
25
+ // points.push(new GLatLng(35.2138,-81.29345));
26
+ // points.push(new GLatLng(35.21375,-81.29358));
27
+ points.push(new GLatLng(35.21386,-81.29356));
28
+ // points.push(new GLatLng(35.21387,-81.29354));
29
+ // points.push(new GLatLng(35.21404,-81.29365));
30
+ // points.push(new GLatLng(35.2143,-81.29392));
31
+ // points.push(new GLatLng(35.21446,-81.29412));
32
+ points.push(new GLatLng(35.2145,-81.29416));
33
+ // points.push(new GLatLng(35.21458,-81.29424));
34
+ // points.push(new GLatLng(35.21473,-81.29444));
35
+ // points.push(new GLatLng(35.21485,-81.29456));
36
+ // points.push(new GLatLng(35.21491,-81.29464));
37
+ points.push(new GLatLng(35.21493,-81.29468));
38
+ // points.push(new GLatLng(35.21495,-81.29483));
39
+ // points.push(new GLatLng(35.21478,-81.29505));
40
+ // points.push(new GLatLng(35.21467,-81.29521));
41
+ // points.push(new GLatLng(35.21451,-81.29546));
42
+ points.push(new GLatLng(35.21445,-81.29575));
43
+ // points.push(new GLatLng(35.21446,-81.29601));
44
+ // points.push(new GLatLng(35.21447,-81.29603));
45
+ // points.push(new GLatLng(35.21464,-81.29623));
46
+ // points.push(new GLatLng(35.21469,-81.29641));
47
+ points.push(new GLatLng(35.21487,-81.29665));
48
+ // points.push(new GLatLng(35.21491,-81.29672));
49
+ // points.push(new GLatLng(35.21497,-81.2968));
50
+ // points.push(new GLatLng(35.21503,-81.29696));
51
+ // points.push(new GLatLng(35.21525,-81.2971));
52
+ points.push(new GLatLng(35.2154,-81.29719));
53
+ // points.push(new GLatLng(35.21569,-81.29715));
54
+ // points.push(new GLatLng(35.21573,-81.29715));
55
+ // points.push(new GLatLng(35.21592,-81.29714));
56
+ // points.push(new GLatLng(35.21613,-81.29707));
57
+ points.push(new GLatLng(35.21618,-81.29695));
58
+ // points.push(new GLatLng(35.21639,-81.29681));
59
+ // points.push(new GLatLng(35.21662,-81.29674));
60
+ // points.push(new GLatLng(35.21681,-81.29666));
61
+ // points.push(new GLatLng(35.21696,-81.29683));
62
+ points.push(new GLatLng(35.21701,-81.29693));
63
+ // points.push(new GLatLng(35.21706,-81.29707));
64
+ // points.push(new GLatLng(35.21708,-81.29727));
65
+ // points.push(new GLatLng(35.21708,-81.29752));
66
+ // points.push(new GLatLng(35.21703,-81.29776));
67
+ points.push(new GLatLng(35.21696,-81.29795));
68
+ // points.push(new GLatLng(35.21694,-81.29801));
69
+ // points.push(new GLatLng(35.21686,-81.29825));
70
+ // points.push(new GLatLng(35.21678,-81.29852));
71
+ // points.push(new GLatLng(35.21675,-81.29858));
72
+ points.push(new GLatLng(35.21671,-81.29868));
73
+ // points.push(new GLatLng(35.21657,-81.29887));
74
+ // points.push(new GLatLng(35.21649,-81.29905));
75
+ // points.push(new GLatLng(35.21639,-81.2992));
76
+ // points.push(new GLatLng(35.21637,-81.29925));
77
+ points.push(new GLatLng(35.21635,-81.29933));
78
+ // points.push(new GLatLng(35.21629,-81.29947));
79
+ // points.push(new GLatLng(35.21621,-81.2996));
80
+ // points.push(new GLatLng(35.21613,-81.2998));
81
+ // points.push(new GLatLng(35.21603,-81.30002));
82
+ points.push(new GLatLng(35.21598,-81.30021));
83
+ // points.push(new GLatLng(35.21586,-81.30038));
84
+ // points.push(new GLatLng(35.21575,-81.30059));
85
+ // points.push(new GLatLng(35.21565,-81.3008));
86
+ // points.push(new GLatLng(35.21555,-81.30114));
87
+ points.push(new GLatLng(35.21545,-81.3014));
88
+ // points.push(new GLatLng(35.21539,-81.30168));
89
+ // points.push(new GLatLng(35.2153,-81.30191));
90
+ // points.push(new GLatLng(35.21525,-81.30215));
91
+ // points.push(new GLatLng(35.2153,-81.30237));
92
+ points.push(new GLatLng(35.21523,-81.30247));
93
+ // points.push(new GLatLng(35.21511,-81.30262));
94
+ // points.push(new GLatLng(35.2151,-81.3027));
95
+ // points.push(new GLatLng(35.21506,-81.30289));
96
+ // points.push(new GLatLng(35.21499,-81.30308));
97
+ points.push(new GLatLng(35.21493,-81.30322));
98
+ // points.push(new GLatLng(35.21476,-81.30341));
99
+ // points.push(new GLatLng(35.21465,-81.30357));
100
+ // points.push(new GLatLng(35.21463,-81.30363));
101
+ // points.push(new GLatLng(35.21455,-81.30383));
102
+ points.push(new GLatLng(35.21445,-81.30395));
103
+ // points.push(new GLatLng(35.2143,-81.30401));
104
+ // points.push(new GLatLng(35.21436,-81.30395));
105
+ // points.push(new GLatLng(35.21438,-81.30394));
106
+ // points.push(new GLatLng(35.21446,-81.3039));
107
+ points.push(new GLatLng(35.21433,-81.30396));
108
+ // points.push(new GLatLng(35.21425,-81.30412));
109
+ // points.push(new GLatLng(35.21423,-81.30415));
110
+ // points.push(new GLatLng(35.21416,-81.30421));
111
+ // points.push(new GLatLng(35.21401,-81.30434));
112
+ points.push(new GLatLng(35.21389,-81.30455));
113
+ // points.push(new GLatLng(35.21379,-81.30469));
114
+ // points.push(new GLatLng(35.21372,-81.30478));
115
+ // points.push(new GLatLng(35.21362,-81.3049));
116
+ // points.push(new GLatLng(35.21358,-81.30494));
117
+ points.push(new GLatLng(35.21348,-81.30509));
118
+ // points.push(new GLatLng(35.21342,-81.30515));
119
+ // points.push(new GLatLng(35.21342,-81.30526));
120
+ // points.push(new GLatLng(35.21335,-81.30543));
121
+ // points.push(new GLatLng(35.21325,-81.30558));
122
+ points.push(new GLatLng(35.21319,-81.30564));
123
+ // points.push(new GLatLng(35.21307,-81.30574));
124
+ // points.push(new GLatLng(35.21302,-81.30591));
125
+ // points.push(new GLatLng(35.21298,-81.30598));
126
+ // points.push(new GLatLng(35.21294,-81.30609));
127
+ points.push(new GLatLng(35.21284,-81.30615));
128
+ // points.push(new GLatLng(35.21281,-81.30627));
129
+ // points.push(new GLatLng(35.21275,-81.30638));
130
+ // points.push(new GLatLng(35.2127,-81.30645));
131
+ // points.push(new GLatLng(35.21265,-81.30655));
132
+ points.push(new GLatLng(35.21256,-81.30667));
133
+ // points.push(new GLatLng(35.21243,-81.30681));
134
+ // points.push(new GLatLng(35.21226,-81.30696));
135
+ // points.push(new GLatLng(35.21216,-81.30708));
136
+ // points.push(new GLatLng(35.21206,-81.30723));
137
+ points.push(new GLatLng(35.21196,-81.30739));
138
+ // points.push(new GLatLng(35.21182,-81.30748));
139
+ // points.push(new GLatLng(35.21181,-81.30748));
140
+ // points.push(new GLatLng(35.21173,-81.30759));
141
+ // points.push(new GLatLng(35.21162,-81.30774));
142
+ points.push(new GLatLng(35.21153,-81.30777));
143
+ // points.push(new GLatLng(35.21145,-81.3078));
144
+ // points.push(new GLatLng(35.2114,-81.30788));
145
+ // points.push(new GLatLng(35.21133,-81.30802));
146
+ // points.push(new GLatLng(35.21132,-81.30809));
147
+ points.push(new GLatLng(35.21127,-81.30815));
148
+ // points.push(new GLatLng(35.21117,-81.30814));
149
+ // points.push(new GLatLng(35.21112,-81.30818));
150
+ // points.push(new GLatLng(35.21108,-81.3082));
151
+ // points.push(new GLatLng(35.21097,-81.30826));
152
+ points.push(new GLatLng(35.21088,-81.30831));
153
+ // points.push(new GLatLng(35.21079,-81.30835));
154
+ // points.push(new GLatLng(35.21074,-81.30849));
155
+ // points.push(new GLatLng(35.21066,-81.30849));
156
+ // points.push(new GLatLng(35.21054,-81.30853));
157
+ points.push(new GLatLng(35.21044,-81.30855));
158
+ // points.push(new GLatLng(35.21028,-81.30863));
159
+ // points.push(new GLatLng(35.21014,-81.30863));
160
+ // points.push(new GLatLng(35.21009,-81.30864));
161
+ // points.push(new GLatLng(35.21006,-81.30863));
162
+ points.push(new GLatLng(35.20995,-81.30869));
163
+ // points.push(new GLatLng(35.20982,-81.30876));
164
+ // points.push(new GLatLng(35.20975,-81.30886));
165
+ // points.push(new GLatLng(35.20967,-81.30885));
166
+ // points.push(new GLatLng(35.20958,-81.30889));
167
+ points.push(new GLatLng(35.20948,-81.30905));
168
+ // points.push(new GLatLng(35.20939,-81.30914));
169
+ // points.push(new GLatLng(35.20929,-81.30925));
170
+ // points.push(new GLatLng(35.20923,-81.30942));
171
+ // points.push(new GLatLng(35.20914,-81.30969));
172
+ points.push(new GLatLng(35.20912,-81.30971));
173
+ // points.push(new GLatLng(35.20906,-81.30973));
174
+ // points.push(new GLatLng(35.20904,-81.30988));
175
+ // points.push(new GLatLng(35.20905,-81.30989));
176
+ // points.push(new GLatLng(35.20905,-81.30991));
177
+ points.push(new GLatLng(35.20898,-81.31006));
178
+ // points.push(new GLatLng(35.20887,-81.31015));
179
+ // points.push(new GLatLng(35.20872,-81.31026));
180
+ // points.push(new GLatLng(35.20854,-81.31038));
181
+ // points.push(new GLatLng(35.20843,-81.31055));
182
+ points.push(new GLatLng(35.20834,-81.31062));
183
+ // points.push(new GLatLng(35.20824,-81.31071));
184
+ // points.push(new GLatLng(35.20816,-81.31084));
185
+ // points.push(new GLatLng(35.20812,-81.31101));
186
+ // points.push(new GLatLng(35.20807,-81.31111));
187
+ points.push(new GLatLng(35.20806,-81.31114));
188
+ // points.push(new GLatLng(35.20791,-81.31134));
189
+ // points.push(new GLatLng(35.20779,-81.31146));
190
+ // points.push(new GLatLng(35.20771,-81.31161));
191
+ // points.push(new GLatLng(35.20768,-81.31167));
192
+ points.push(new GLatLng(35.20761,-81.31176));
193
+ // points.push(new GLatLng(35.20761,-81.31177));
194
+ // points.push(new GLatLng(35.20755,-81.31192));
195
+ // points.push(new GLatLng(35.20755,-81.31195));
196
+ // points.push(new GLatLng(35.20754,-81.31191));
197
+ points.push(new GLatLng(35.20744,-81.31207));
198
+ // points.push(new GLatLng(35.20736,-81.3122));
199
+ // points.push(new GLatLng(35.20723,-81.31228));
200
+ // points.push(new GLatLng(35.20706,-81.31246));
201
+ // points.push(new GLatLng(35.20702,-81.31263));
202
+ points.push(new GLatLng(35.2069,-81.31274));
203
+ // points.push(new GLatLng(35.20686,-81.31285));
204
+ // points.push(new GLatLng(35.2068,-81.31294));
205
+ // points.push(new GLatLng(35.20675,-81.31302));
206
+ // points.push(new GLatLng(35.20669,-81.31311));
207
+ points.push(new GLatLng(35.20667,-81.31314));
208
+ // points.push(new GLatLng(35.20668,-81.31319));
209
+ // points.push(new GLatLng(35.20667,-81.31319));
210
+ // points.push(new GLatLng(35.2067,-81.3132));
211
+ // points.push(new GLatLng(35.20672,-81.31324));
212
+ points.push(new GLatLng(35.2068,-81.31321));
213
+ // points.push(new GLatLng(35.20693,-81.31316));
214
+ // points.push(new GLatLng(35.20702,-81.31312));
215
+ // points.push(new GLatLng(35.20717,-81.31306));
216
+ // points.push(new GLatLng(35.20726,-81.31305));
217
+ points.push(new GLatLng(35.20739,-81.31296));
218
+ // points.push(new GLatLng(35.20747,-81.31291));
219
+ // points.push(new GLatLng(35.2075,-81.31282));
220
+ // points.push(new GLatLng(35.20751,-81.31276));
221
+ // points.push(new GLatLng(35.2076,-81.31275));
222
+ points.push(new GLatLng(35.20765,-81.31265));
223
+ // points.push(new GLatLng(35.2077,-81.31262));
224
+ // points.push(new GLatLng(35.2077,-81.31264));
225
+ // points.push(new GLatLng(35.20765,-81.31268));
226
+ // points.push(new GLatLng(35.20769,-81.31264));
227
+ points.push(new GLatLng(35.2077,-81.31267));
228
+ // points.push(new GLatLng(35.20768,-81.31265));
229
+ // points.push(new GLatLng(35.20768,-81.31265));
230
+ // points.push(new GLatLng(35.20762,-81.31272));
231
+ // points.push(new GLatLng(35.20755,-81.31277));
232
+ points.push(new GLatLng(35.20746,-81.31286));
233
+ // points.push(new GLatLng(35.20742,-81.3129));
234
+ // points.push(new GLatLng(35.20731,-81.31302));
235
+ // points.push(new GLatLng(35.20727,-81.31307));
236
+ // points.push(new GLatLng(35.20719,-81.31308));
237
+ points.push(new GLatLng(35.20715,-81.31311));
238
+ // points.push(new GLatLng(35.20707,-81.31318));
239
+ // points.push(new GLatLng(35.20695,-81.3132));
240
+ // points.push(new GLatLng(35.20683,-81.31325));
241
+ // points.push(new GLatLng(35.20678,-81.31327));
242
+ points.push(new GLatLng(35.20674,-81.31331));
243
+ // points.push(new GLatLng(35.20677,-81.31327));
244
+ // points.push(new GLatLng(35.20674,-81.31325));
245
+ // points.push(new GLatLng(35.20671,-81.31321));
246
+ // points.push(new GLatLng(35.2067,-81.31318));
247
+ points.push(new GLatLng(35.2067,-81.31317));
248
+ // points.push(new GLatLng(35.20669,-81.31309));
249
+ // points.push(new GLatLng(35.20672,-81.31298));
250
+ // points.push(new GLatLng(35.20672,-81.31297));
251
+ // points.push(new GLatLng(35.20678,-81.31288));
252
+ points.push(new GLatLng(35.20683,-81.31277));
253
+ // points.push(new GLatLng(35.20687,-81.31268));
254
+ // points.push(new GLatLng(35.20695,-81.31265));
255
+ // points.push(new GLatLng(35.20703,-81.31251));
256
+ // points.push(new GLatLng(35.20709,-81.31241));
257
+ points.push(new GLatLng(35.20725,-81.31232));
258
+ // points.push(new GLatLng(35.20732,-81.31221));
259
+ // points.push(new GLatLng(35.20738,-81.31206));
260
+ // points.push(new GLatLng(35.20744,-81.31196));
261
+ // points.push(new GLatLng(35.20753,-81.31187));
262
+ points.push(new GLatLng(35.20759,-81.31173));
263
+ // points.push(new GLatLng(35.20765,-81.31165));
264
+ // points.push(new GLatLng(35.2077,-81.31157));
265
+ // points.push(new GLatLng(35.2077,-81.31149));
266
+ // points.push(new GLatLng(35.20781,-81.3114));
267
+ points.push(new GLatLng(35.20787,-81.31129));
268
+ // points.push(new GLatLng(35.20788,-81.31129));
269
+ // points.push(new GLatLng(35.20792,-81.31111));
270
+ // points.push(new GLatLng(35.208,-81.31103));
271
+ // points.push(new GLatLng(35.2081,-81.31085));
272
+ points.push(new GLatLng(35.2082,-81.31068));
273
+ // points.push(new GLatLng(35.20824,-81.31063));
274
+ // points.push(new GLatLng(35.20832,-81.31051));
275
+ // points.push(new GLatLng(35.20845,-81.31042));
276
+ // points.push(new GLatLng(35.20847,-81.31035));
277
+ points.push(new GLatLng(35.20856,-81.31023));
278
+ // points.push(new GLatLng(35.20873,-81.31018));
279
+ // points.push(new GLatLng(35.20885,-81.31002));
280
+ // points.push(new GLatLng(35.20898,-81.31002));
281
+ // points.push(new GLatLng(35.20907,-81.30991));
282
+ points.push(new GLatLng(35.20907,-81.30982));
283
+ // points.push(new GLatLng(35.20912,-81.3097));
284
+ // points.push(new GLatLng(35.20918,-81.30959));
285
+ // points.push(new GLatLng(35.20926,-81.30943));
286
+ // points.push(new GLatLng(35.20934,-81.30927));
287
+ points.push(new GLatLng(35.20939,-81.30918));
288
+ // points.push(new GLatLng(35.2094,-81.30918));
289
+ // points.push(new GLatLng(35.20951,-81.30898));
290
+ // points.push(new GLatLng(35.20956,-81.30891));
291
+ // points.push(new GLatLng(35.20963,-81.30882));
292
+ points.push(new GLatLng(35.20973,-81.30871));
293
+ // points.push(new GLatLng(35.20992,-81.30862));
294
+ // points.push(new GLatLng(35.21015,-81.30852));
295
+ // points.push(new GLatLng(35.21031,-81.30854));
296
+ // points.push(new GLatLng(35.21044,-81.30844));
297
+ points.push(new GLatLng(35.21059,-81.30841));
298
+ // points.push(new GLatLng(35.21077,-81.30839));
299
+ // points.push(new GLatLng(35.21081,-81.30831));
300
+ // points.push(new GLatLng(35.21086,-81.30822));
301
+ // points.push(new GLatLng(35.21098,-81.30815));
302
+ points.push(new GLatLng(35.21112,-81.30809));
303
+ // points.push(new GLatLng(35.2112,-81.30802));
304
+ // points.push(new GLatLng(35.2113,-81.30801));
305
+ // points.push(new GLatLng(35.21136,-81.30793));
306
+ // points.push(new GLatLng(35.21141,-81.30778));
307
+ points.push(new GLatLng(35.21145,-81.30769));
308
+ // points.push(new GLatLng(35.21156,-81.30759));
309
+ // points.push(new GLatLng(35.21165,-81.30759));
310
+ // points.push(new GLatLng(35.21178,-81.30752));
311
+ // points.push(new GLatLng(35.21185,-81.30741));
312
+ points.push(new GLatLng(35.21193,-81.3073));
313
+ // points.push(new GLatLng(35.21207,-81.30719));
314
+ // points.push(new GLatLng(35.2122,-81.30698));
315
+ // points.push(new GLatLng(35.21229,-81.30683));
316
+ // points.push(new GLatLng(35.21247,-81.30674));
317
+ points.push(new GLatLng(35.21257,-81.30664));
318
+ // points.push(new GLatLng(35.2126,-81.30664));
319
+ // points.push(new GLatLng(35.21266,-81.30653));
320
+ // points.push(new GLatLng(35.21272,-81.30645));
321
+ // points.push(new GLatLng(35.21282,-81.30631));
322
+ points.push(new GLatLng(35.21285,-81.30622));
323
+ // points.push(new GLatLng(35.21292,-81.30605));
324
+ // points.push(new GLatLng(35.21299,-81.30597));
325
+ // points.push(new GLatLng(35.21306,-81.30582));
326
+ // points.push(new GLatLng(35.2131,-81.30566));
327
+ points.push(new GLatLng(35.21324,-81.30553));
328
+ // points.push(new GLatLng(35.21338,-81.30535));
329
+ // points.push(new GLatLng(35.21343,-81.30523));
330
+ // points.push(new GLatLng(35.21342,-81.30508));
331
+ // points.push(new GLatLng(35.21344,-81.30506));
332
+ points.push(new GLatLng(35.21354,-81.30501));
333
+ // points.push(new GLatLng(35.2136,-81.30489));
334
+ // points.push(new GLatLng(35.21367,-81.3048));
335
+ // points.push(new GLatLng(35.21377,-81.30472));
336
+ // points.push(new GLatLng(35.21383,-81.30462));
337
+ points.push(new GLatLng(35.21393,-81.30447));
338
+ // points.push(new GLatLng(35.21402,-81.30435));
339
+ // points.push(new GLatLng(35.21416,-81.30427));
340
+ // points.push(new GLatLng(35.21427,-81.30419));
341
+ // points.push(new GLatLng(35.21431,-81.30397));
342
+ points.push(new GLatLng(35.2144,-81.3039));
343
+ // points.push(new GLatLng(35.21455,-81.30379));
344
+ // points.push(new GLatLng(35.21458,-81.30371));
345
+ // points.push(new GLatLng(35.21461,-81.30363));
346
+ // points.push(new GLatLng(35.2147,-81.30345));
347
+ points.push(new GLatLng(35.2148,-81.30332));
348
+ // points.push(new GLatLng(35.21496,-81.30318));
349
+ // points.push(new GLatLng(35.21498,-81.30309));
350
+ // points.push(new GLatLng(35.21504,-81.30291));
351
+ // points.push(new GLatLng(35.21506,-81.30286));
352
+ points.push(new GLatLng(35.21513,-81.30267));
353
+ // points.push(new GLatLng(35.21519,-81.30245));
354
+ // points.push(new GLatLng(35.21536,-81.30226));
355
+ // points.push(new GLatLng(35.2153,-81.30205));
356
+ // points.push(new GLatLng(35.21535,-81.30187));
357
+ points.push(new GLatLng(35.2154,-81.30173));
358
+ // points.push(new GLatLng(35.21543,-81.30153));
359
+ // points.push(new GLatLng(35.21551,-81.30123));
360
+ // points.push(new GLatLng(35.21556,-81.30108));
361
+ // points.push(new GLatLng(35.21563,-81.30088));
362
+ points.push(new GLatLng(35.21572,-81.30069));
363
+ // points.push(new GLatLng(35.21584,-81.30043));
364
+ // points.push(new GLatLng(35.21602,-81.30021));
365
+ // points.push(new GLatLng(35.21605,-81.3));
366
+ // points.push(new GLatLng(35.21614,-81.29979));
367
+ points.push(new GLatLng(35.21623,-81.29961));
368
+ // points.push(new GLatLng(35.21637,-81.29936));
369
+ // points.push(new GLatLng(35.21643,-81.29913));
370
+ // points.push(new GLatLng(35.21657,-81.29894));
371
+ // points.push(new GLatLng(35.21666,-81.29882));
372
+ points.push(new GLatLng(35.21679,-81.29858));
373
+ // points.push(new GLatLng(35.21686,-81.29843));
374
+ // points.push(new GLatLng(35.21697,-81.29816));
375
+ // points.push(new GLatLng(35.21697,-81.2981));
376
+ // points.push(new GLatLng(35.21705,-81.29786));
377
+ points.push(new GLatLng(35.21714,-81.2977));
378
+ // points.push(new GLatLng(35.2172,-81.29754));
379
+ // points.push(new GLatLng(35.21722,-81.29741));
380
+ // points.push(new GLatLng(35.21704,-81.29692));
381
+ // points.push(new GLatLng(35.2169,-81.29674));
382
+ points.push(new GLatLng(35.21673,-81.29667));
383
+ // points.push(new GLatLng(35.21655,-81.29678));
384
+ // points.push(new GLatLng(35.21638,-81.29683));
385
+ // points.push(new GLatLng(35.21618,-81.29694));
386
+ // points.push(new GLatLng(35.21604,-81.29708));
387
+ points.push(new GLatLng(35.21588,-81.29714));
388
+ // points.push(new GLatLng(35.21569,-81.29712));
389
+ // points.push(new GLatLng(35.21548,-81.29714));
390
+ // points.push(new GLatLng(35.21529,-81.29712));
391
+ // points.push(new GLatLng(35.21516,-81.297));
392
+ points.push(new GLatLng(35.21506,-81.29691));
393
+ // points.push(new GLatLng(35.21489,-81.29662));
394
+ // points.push(new GLatLng(35.21477,-81.29648));
395
+ // points.push(new GLatLng(35.21476,-81.29648));
396
+ // points.push(new GLatLng(35.21467,-81.29634));
397
+ points.push(new GLatLng(35.21458,-81.29615));
398
+ // points.push(new GLatLng(35.21453,-81.29583));
399
+ // points.push(new GLatLng(35.2145,-81.29568));
400
+ // points.push(new GLatLng(35.21462,-81.29531));
401
+ // points.push(new GLatLng(35.21474,-81.29511));
402
+ points.push(new GLatLng(35.2148,-81.29499));
403
+ // points.push(new GLatLng(35.21482,-81.29495));
404
+ // points.push(new GLatLng(35.21493,-81.2947));
405
+ // points.push(new GLatLng(35.21479,-81.29447));
406
+ // points.push(new GLatLng(35.21462,-81.29433));
407
+ points.push(new GLatLng(35.21442,-81.29411));
408
+ // points.push(new GLatLng(35.21426,-81.29387));
409
+ // points.push(new GLatLng(35.21406,-81.29365));
410
+ // points.push(new GLatLng(35.21387,-81.29354));
411
+ // points.push(new GLatLng(35.21369,-81.29338));
412
+ points.push(new GLatLng(35.21353,-81.29335));
413
+ // points.push(new GLatLng(35.21355,-81.2932));
414
+ // points.push(new GLatLng(35.21355,-81.29341));
415
+ // points.push(new GLatLng(35.21358,-81.29344));
416
+ // points.push(new GLatLng(35.21384,-81.29329));
417
+ points.push(new GLatLng(35.21391,-81.29335));
418
+ // points.push(new GLatLng(35.21345,-81.29367));
419
+ // points.push(new GLatLng(35.21343,-81.2937));
420
+ // points.push(new GLatLng(35.21353,-81.29337));
421
+ // points.push(new GLatLng(35.21348,-81.29346));
422
+ points.push(new GLatLng(35.2135,-81.29354));
423
+ // points.push(new GLatLng(35.2134,-81.29362));
424
+ // points.push(new GLatLng(35.21357,-81.29352));
425
+ // points.push(new GLatLng(35.21362,-81.2935));
426
+ // points.push(new GLatLng(35.21366,-81.29348));
427
+ points.push(new GLatLng(35.21363,-81.29344));
428
+ // points.push(new GLatLng(35.2136,-81.2934));
429
+ // points.push(new GLatLng(35.21352,-81.29336));
430
+ // points.push(new GLatLng(35.2137,-81.29344));
431
+ // points.push(new GLatLng(35.21376,-81.29342));
432
+ points.push(new GLatLng(35.21375,-81.29342));
433
+ // points.push(new GLatLng(35.21375,-81.29342));
434
+ // points.push(new GLatLng(35.21375,-81.29342));
435
+ // points.push(new GLatLng(35.21375,-81.29342));
436
+ // points.push(new GLatLng(35.21385,-81.29351));
437
+ points.push(new GLatLng(35.2141,-81.29368));
438
+ // points.push(new GLatLng(35.21435,-81.29405));
439
+ // points.push(new GLatLng(35.21451,-81.29421));
440
+ // points.push(new GLatLng(35.2147,-81.29438));
441
+ // points.push(new GLatLng(35.21485,-81.2946));
442
+ points.push(new GLatLng(35.21501,-81.29487));
443
+ // points.push(new GLatLng(35.21515,-81.29474));
444
+ // points.push(new GLatLng(35.2154,-81.29459));
445
+ // points.push(new GLatLng(35.21546,-81.29456));
446
+ // points.push(new GLatLng(35.21569,-81.29436));
447
+ points.push(new GLatLng(35.21577,-81.2943));
448
+ // points.push(new GLatLng(35.21594,-81.29411));
449
+ // points.push(new GLatLng(35.21607,-81.29387));
450
+ // points.push(new GLatLng(35.21614,-81.29364));
451
+ // points.push(new GLatLng(35.21616,-81.29331));
452
+ points.push(new GLatLng(35.21617,-81.29312));
453
+ // points.push(new GLatLng(35.21618,-81.2928));
454
+ // points.push(new GLatLng(35.21625,-81.29256));
455
+ // points.push(new GLatLng(35.21627,-81.29225));
456
+ // points.push(new GLatLng(35.21623,-81.29194));
457
+ points.push(new GLatLng(35.21624,-81.2919));
458
+ // points.push(new GLatLng(35.21627,-81.29157));
459
+ // points.push(new GLatLng(35.21616,-81.29141));
460
+ // points.push(new GLatLng(35.21618,-81.29114));
461
+ // points.push(new GLatLng(35.21624,-81.29087));
462
+ points.push(new GLatLng(35.21617,-81.2907));
463
+ // points.push(new GLatLng(35.21613,-81.29034));
464
+ // points.push(new GLatLng(35.21617,-81.29018));
465
+ // points.push(new GLatLng(35.21636,-81.28988));
466
+ // points.push(new GLatLng(35.2164,-81.28978));
467
+ points.push(new GLatLng(35.21658,-81.28954));
468
+ // points.push(new GLatLng(35.21658,-81.28916));
469
+ // points.push(new GLatLng(35.21654,-81.28901));
470
+ // points.push(new GLatLng(35.2165,-81.28879));
471
+ // points.push(new GLatLng(35.2165,-81.28878));
472
+ points.push(new GLatLng(35.21646,-81.28868));
473
+ // points.push(new GLatLng(35.21653,-81.28832));
474
+ // points.push(new GLatLng(35.21664,-81.28803));
475
+ // points.push(new GLatLng(35.21692,-81.2878));
476
+ // points.push(new GLatLng(35.21707,-81.28766));
477
+ points.push(new GLatLng(35.21709,-81.28764));
478
+ // points.push(new GLatLng(35.21726,-81.28743));
479
+ // points.push(new GLatLng(35.21731,-81.28721));
480
+ // points.push(new GLatLng(35.21738,-81.28689));
481
+ // points.push(new GLatLng(35.21749,-81.28671));
482
+ points.push(new GLatLng(35.21762,-81.28641));
483
+ // points.push(new GLatLng(35.21776,-81.28623));
484
+ // points.push(new GLatLng(35.21793,-81.286));
485
+ // points.push(new GLatLng(35.21793,-81.28599));
486
+ // points.push(new GLatLng(35.21798,-81.28591));
487
+ points.push(new GLatLng(35.218,-81.28578));
488
+ // points.push(new GLatLng(35.21802,-81.28574));
489
+ // points.push(new GLatLng(35.21809,-81.28563));
490
+ // points.push(new GLatLng(35.21811,-81.2856));
491
+ // points.push(new GLatLng(35.21818,-81.28538));
492
+ points.push(new GLatLng(35.21816,-81.28518));
493
+ // points.push(new GLatLng(35.21814,-81.28513));
494
+ // points.push(new GLatLng(35.21814,-81.28504));
495
+ // points.push(new GLatLng(35.21815,-81.28496));
496
+ // points.push(new GLatLng(35.21817,-81.28483));
497
+ points.push(new GLatLng(35.21818,-81.28477));
498
+ // points.push(new GLatLng(35.21823,-81.28469));
499
+ // points.push(new GLatLng(35.21831,-81.28466));
500
+ // points.push(new GLatLng(35.21848,-81.28475));
501
+ // points.push(new GLatLng(35.21864,-81.2848));
502
+ points.push(new GLatLng(35.21874,-81.28485));
503
+ // points.push(new GLatLng(35.21876,-81.28487));
504
+ // points.push(new GLatLng(35.21882,-81.28494));
505
+ // points.push(new GLatLng(35.21894,-81.28527));
506
+ // points.push(new GLatLng(35.21905,-81.28534));
507
+ points.push(new GLatLng(35.21924,-81.28543));
508
+ // points.push(new GLatLng(35.21938,-81.28548));
509
+ // points.push(new GLatLng(35.2195,-81.28561));
510
+ // points.push(new GLatLng(35.21961,-81.28568));
511
+ // points.push(new GLatLng(35.21974,-81.28578));
512
+ points.push(new GLatLng(35.21996,-81.28575));
513
+ // points.push(new GLatLng(35.22006,-81.28574));
514
+ // points.push(new GLatLng(35.22032,-81.28558));
515
+ // points.push(new GLatLng(35.2205,-81.28554));
516
+ // points.push(new GLatLng(35.22072,-81.28552));
517
+ points.push(new GLatLng(35.22095,-81.2855));
518
+ // points.push(new GLatLng(35.22112,-81.28537));
519
+ // points.push(new GLatLng(35.22125,-81.28529));
520
+ // points.push(new GLatLng(35.22142,-81.28541));
521
+ // points.push(new GLatLng(35.22145,-81.28543));
522
+ points.push(new GLatLng(35.22171,-81.28551));
523
+ // points.push(new GLatLng(35.22189,-81.28552));
524
+ // points.push(new GLatLng(35.222,-81.28552));
525
+ // points.push(new GLatLng(35.22223,-81.28553));
526
+ // points.push(new GLatLng(35.22245,-81.28569));
527
+ points.push(new GLatLng(35.2227,-81.2858));
528
+ // points.push(new GLatLng(35.22287,-81.28607));
529
+ // points.push(new GLatLng(35.22298,-81.28621));
530
+ // points.push(new GLatLng(35.22321,-81.28629));
531
+ // points.push(new GLatLng(35.22344,-81.28621));
532
+ points.push(new GLatLng(35.22365,-81.28608));
533
+ // points.push(new GLatLng(35.2239,-81.28618));
534
+ // points.push(new GLatLng(35.2239,-81.28619));
535
+ // points.push(new GLatLng(35.22417,-81.28629));
536
+ // points.push(new GLatLng(35.2243,-81.28628));
537
+ points.push(new GLatLng(35.22447,-81.28618));
538
+ // points.push(new GLatLng(35.22466,-81.28625));
539
+ // points.push(new GLatLng(35.22482,-81.28615));
540
+ // points.push(new GLatLng(35.22497,-81.28602));
541
+ // points.push(new GLatLng(35.22506,-81.2859));
542
+ points.push(new GLatLng(35.22519,-81.28582));
543
+ // points.push(new GLatLng(35.22537,-81.28578));
544
+ // points.push(new GLatLng(35.22573,-81.28561));
545
+ // points.push(new GLatLng(35.22597,-81.28522));
546
+ // points.push(new GLatLng(35.22619,-81.2851));
547
+ points.push(new GLatLng(35.22628,-81.2851));
548
+ // points.push(new GLatLng(35.22649,-81.28504));
549
+ // points.push(new GLatLng(35.22667,-81.28483));
550
+ // points.push(new GLatLng(35.22677,-81.28478));
551
+ // points.push(new GLatLng(35.22682,-81.28472));
552
+ points.push(new GLatLng(35.22698,-81.28457));
553
+ // points.push(new GLatLng(35.22717,-81.28445));
554
+ // points.push(new GLatLng(35.22721,-81.28423));
555
+ // points.push(new GLatLng(35.22713,-81.28405));
556
+ // points.push(new GLatLng(35.22714,-81.28365));
557
+ points.push(new GLatLng(35.22724,-81.28346));
558
+ // points.push(new GLatLng(35.22736,-81.28337));
559
+ // points.push(new GLatLng(35.22749,-81.2832));
560
+ // points.push(new GLatLng(35.22751,-81.28318));
561
+ // points.push(new GLatLng(35.22771,-81.28307));
562
+ points.push(new GLatLng(35.22784,-81.28305));
563
+ // points.push(new GLatLng(35.22805,-81.283));
564
+ // points.push(new GLatLng(35.22826,-81.28281));
565
+ // points.push(new GLatLng(35.22836,-81.28265));
566
+ // points.push(new GLatLng(35.22839,-81.28263));
567
+ points.push(new GLatLng(35.22854,-81.28255));
568
+ // points.push(new GLatLng(35.22867,-81.28261));
569
+ // points.push(new GLatLng(35.22887,-81.28259));
570
+ // points.push(new GLatLng(35.22911,-81.28257));
571
+ // points.push(new GLatLng(35.22924,-81.28252));
572
+ points.push(new GLatLng(35.2294,-81.28243));
573
+ // points.push(new GLatLng(35.22974,-81.28246));
574
+ // points.push(new GLatLng(35.22991,-81.28237));
575
+ // points.push(new GLatLng(35.23011,-81.28223));
576
+ // points.push(new GLatLng(35.23025,-81.28204));
577
+ points.push(new GLatLng(35.23031,-81.28181));
578
+ // points.push(new GLatLng(35.2304,-81.2817));
579
+ // points.push(new GLatLng(35.23055,-81.28151));
580
+ // points.push(new GLatLng(35.23067,-81.28137));
581
+ // points.push(new GLatLng(35.23089,-81.2811));
582
+ points.push(new GLatLng(35.23098,-81.28101));
583
+ // points.push(new GLatLng(35.23107,-81.28113));
584
+ // points.push(new GLatLng(35.23117,-81.2812));
585
+ // points.push(new GLatLng(35.23133,-81.28118));
586
+ // points.push(new GLatLng(35.23139,-81.28118));
587
+ points.push(new GLatLng(35.23163,-81.28114));
588
+ // points.push(new GLatLng(35.23192,-81.28109));
589
+ // points.push(new GLatLng(35.23203,-81.28099));
590
+ // points.push(new GLatLng(35.23221,-81.28075));
591
+ // points.push(new GLatLng(35.23262,-81.28056));
592
+ points.push(new GLatLng(35.23272,-81.28046));
593
+ // points.push(new GLatLng(35.23281,-81.28036));
594
+ // points.push(new GLatLng(35.23295,-81.2804));
595
+ // points.push(new GLatLng(35.23314,-81.28039));
596
+ // points.push(new GLatLng(35.23336,-81.28029));
597
+ points.push(new GLatLng(35.23344,-81.28022));
598
+ // points.push(new GLatLng(35.23381,-81.28009));
599
+ // points.push(new GLatLng(35.23409,-81.2799));
600
+ // points.push(new GLatLng(35.23436,-81.27981));
601
+ // points.push(new GLatLng(35.2345,-81.27981));
602
+ points.push(new GLatLng(35.23483,-81.27981));
603
+ // points.push(new GLatLng(35.23499,-81.2796));
604
+ // points.push(new GLatLng(35.23545,-81.27941));
605
+ // points.push(new GLatLng(35.23554,-81.2792));
606
+ // points.push(new GLatLng(35.23555,-81.27904));
607
+ points.push(new GLatLng(35.23565,-81.27871));
608
+ // points.push(new GLatLng(35.23585,-81.27857));
609
+ // points.push(new GLatLng(35.236,-81.27827));
610
+ // points.push(new GLatLng(35.23609,-81.27815));
611
+ // points.push(new GLatLng(35.23615,-81.27811));
612
+ points.push(new GLatLng(35.23611,-81.27738));
613
+ // points.push(new GLatLng(35.23613,-81.2773));
614
+ // points.push(new GLatLng(35.23619,-81.27696));
615
+ // points.push(new GLatLng(35.23622,-81.27675));
616
+ // points.push(new GLatLng(35.23623,-81.27655));
617
+ points.push(new GLatLng(35.23621,-81.27637));
618
+ // points.push(new GLatLng(35.2362,-81.27614));
619
+ // points.push(new GLatLng(35.23619,-81.27596));
620
+ // points.push(new GLatLng(35.23628,-81.27589));
621
+ // points.push(new GLatLng(35.23636,-81.27573));
622
+ points.push(new GLatLng(35.23645,-81.27564));
623
+ // points.push(new GLatLng(35.23656,-81.2755));
624
+ // points.push(new GLatLng(35.2366,-81.27535));
625
+ // points.push(new GLatLng(35.23671,-81.27515));
626
+ // points.push(new GLatLng(35.23683,-81.27504));
627
+ points.push(new GLatLng(35.23689,-81.27493));
628
+ // points.push(new GLatLng(35.23695,-81.27476));
629
+ // points.push(new GLatLng(35.23695,-81.27454));
630
+ // points.push(new GLatLng(35.237,-81.27439));
631
+ // points.push(new GLatLng(35.237,-81.27429));
632
+ points.push(new GLatLng(35.23705,-81.27424));
633
+ // points.push(new GLatLng(35.23714,-81.27408));
634
+ // points.push(new GLatLng(35.2372,-81.27394));
635
+ // points.push(new GLatLng(35.23728,-81.27398));
636
+ // points.push(new GLatLng(35.23734,-81.27402));
637
+ points.push(new GLatLng(35.23734,-81.27402));
638
+ // points.push(new GLatLng(35.23734,-81.27401));
639
+ // points.push(new GLatLng(35.23736,-81.27397));
640
+ // points.push(new GLatLng(35.23735,-81.27401));
641
+ // points.push(new GLatLng(35.23736,-81.274));
642
+ points.push(new GLatLng(35.23732,-81.274));
643
+ // points.push(new GLatLng(35.23731,-81.27401));
644
+ // points.push(new GLatLng(35.23731,-81.27401));
645
+ // points.push(new GLatLng(35.23725,-81.27401));
646
+ // points.push(new GLatLng(35.23711,-81.27404));
647
+ points.push(new GLatLng(35.23708,-81.27405));
648
+ // points.push(new GLatLng(35.23705,-81.27405));
649
+ // points.push(new GLatLng(35.23699,-81.27405));
650
+ // points.push(new GLatLng(35.23681,-81.27417));
651
+ // points.push(new GLatLng(35.23665,-81.27418));
652
+ points.push(new GLatLng(35.23658,-81.2742));
653
+ // points.push(new GLatLng(35.23642,-81.27409));
654
+ // points.push(new GLatLng(35.23641,-81.27409));
655
+ // points.push(new GLatLng(35.23635,-81.27411));
656
+ // points.push(new GLatLng(35.23621,-81.27414));
657
+ points.push(new GLatLng(35.23616,-81.27416));
658
+ // points.push(new GLatLng(35.23614,-81.27416));
659
+ // points.push(new GLatLng(35.23612,-81.27417));
660
+ // points.push(new GLatLng(35.23592,-81.27429));
661
+ // points.push(new GLatLng(35.2359,-81.27428));
662
+ points.push(new GLatLng(35.23586,-81.27423));
663
+ // points.push(new GLatLng(35.23585,-81.27424));
664
+ // points.push(new GLatLng(35.23574,-81.27419));
665
+ // points.push(new GLatLng(35.23571,-81.2742));
666
+ // points.push(new GLatLng(35.23562,-81.27423));
667
+ points.push(new GLatLng(35.23553,-81.27422));
668
+ // points.push(new GLatLng(35.23551,-81.27424));
669
+ // points.push(new GLatLng(35.2355,-81.27425));
670
+ // points.push(new GLatLng(35.23546,-81.27435));
671
+ // points.push(new GLatLng(35.23545,-81.27437));
672
+ points.push(new GLatLng(35.23516,-81.2745));
673
+ // points.push(new GLatLng(35.23492,-81.27455));
674
+ // points.push(new GLatLng(35.23479,-81.27471));
675
+ // points.push(new GLatLng(35.23455,-81.27477));
676
+ // points.push(new GLatLng(35.23448,-81.27478));
677
+ points.push(new GLatLng(35.23432,-81.27489));
678
+ // points.push(new GLatLng(35.23412,-81.2749));
679
+ // points.push(new GLatLng(35.23397,-81.27502));
680
+ // points.push(new GLatLng(35.23383,-81.27509));
681
+ // points.push(new GLatLng(35.23372,-81.27516));
682
+ points.push(new GLatLng(35.23362,-81.27526));
683
+ // points.push(new GLatLng(35.23357,-81.27525));
684
+ // points.push(new GLatLng(35.2335,-81.27523));
685
+ // points.push(new GLatLng(35.23351,-81.27528));
686
+ // points.push(new GLatLng(35.23348,-81.27521));
687
+ points.push(new GLatLng(35.23342,-81.27519));
688
+ // points.push(new GLatLng(35.23333,-81.27518));
689
+ // points.push(new GLatLng(35.23331,-81.27517));
690
+ // points.push(new GLatLng(35.23326,-81.27515));
691
+ // points.push(new GLatLng(35.23316,-81.27521));
692
+ points.push(new GLatLng(35.23308,-81.2752));
693
+ // points.push(new GLatLng(35.23303,-81.27513));
694
+ // points.push(new GLatLng(35.23295,-81.27514));
695
+ // points.push(new GLatLng(35.23287,-81.27522));
696
+ // points.push(new GLatLng(35.23284,-81.27528));
697
+ points.push(new GLatLng(35.23277,-81.27531));
698
+ // points.push(new GLatLng(35.23268,-81.27528));
699
+ // points.push(new GLatLng(35.23257,-81.27522));
700
+ // points.push(new GLatLng(35.23251,-81.27523));
701
+ // points.push(new GLatLng(35.23245,-81.27526));
702
+ points.push(new GLatLng(35.23243,-81.27528));
703
+ // points.push(new GLatLng(35.23242,-81.27525));
704
+ // points.push(new GLatLng(35.23242,-81.27522));
705
+ // points.push(new GLatLng(35.23242,-81.27522));
706
+ // points.push(new GLatLng(35.23242,-81.27524));
707
+ points.push(new GLatLng(35.23244,-81.27539));
708
+ // points.push(new GLatLng(35.23245,-81.27559));
709
+ // points.push(new GLatLng(35.23241,-81.27584));
710
+ // points.push(new GLatLng(35.23242,-81.27594));
711
+ // points.push(new GLatLng(35.23252,-81.27599));
712
+ points.push(new GLatLng(35.23258,-81.27598));
713
+ // points.push(new GLatLng(35.23247,-81.27596));
714
+ // points.push(new GLatLng(35.2324,-81.27594));
715
+ // points.push(new GLatLng(35.23238,-81.27595));
716
+ // points.push(new GLatLng(35.23235,-81.27608));
717
+ points.push(new GLatLng(35.23237,-81.27629));
718
+ // points.push(new GLatLng(35.23235,-81.27645));
719
+ // points.push(new GLatLng(35.23241,-81.27658));
720
+ // points.push(new GLatLng(35.23223,-81.27664));
721
+ // points.push(new GLatLng(35.23212,-81.27675));
722
+ points.push(new GLatLng(35.23204,-81.27679));
723
+ // points.push(new GLatLng(35.23196,-81.27692));
724
+ // points.push(new GLatLng(35.23192,-81.27693));
725
+ // points.push(new GLatLng(35.23183,-81.27698));
726
+ // points.push(new GLatLng(35.23173,-81.27708));
727
+ points.push(new GLatLng(35.23167,-81.27714));
728
+ // points.push(new GLatLng(35.23163,-81.27718));
729
+ // points.push(new GLatLng(35.23154,-81.27723));
730
+ // points.push(new GLatLng(35.23145,-81.27725));
731
+ // points.push(new GLatLng(35.23143,-81.27728));
732
+ points.push(new GLatLng(35.2314,-81.27734));
733
+ // points.push(new GLatLng(35.23134,-81.27749));
734
+ // points.push(new GLatLng(35.23132,-81.27758));
735
+ // points.push(new GLatLng(35.23129,-81.2777));
736
+ // points.push(new GLatLng(35.23117,-81.27772));
737
+ points.push(new GLatLng(35.2311,-81.27782));
738
+ // points.push(new GLatLng(35.23103,-81.27782));
739
+ // points.push(new GLatLng(35.23083,-81.27802));
740
+ // points.push(new GLatLng(35.23074,-81.27828));
741
+ // points.push(new GLatLng(35.23067,-81.27837));
742
+ points.push(new GLatLng(35.23058,-81.27846));
743
+ // points.push(new GLatLng(35.23043,-81.27852));
744
+ // points.push(new GLatLng(35.23026,-81.27864));
745
+ // points.push(new GLatLng(35.23016,-81.27869));
746
+ // points.push(new GLatLng(35.23009,-81.27874));
747
+ points.push(new GLatLng(35.23,-81.27885));
748
+ // points.push(new GLatLng(35.22983,-81.279));
749
+ // points.push(new GLatLng(35.22969,-81.27909));
750
+ // points.push(new GLatLng(35.22948,-81.27924));
751
+ // points.push(new GLatLng(35.22941,-81.27935));
752
+ points.push(new GLatLng(35.2293,-81.2795));
753
+ // points.push(new GLatLng(35.22913,-81.27964));
754
+ // points.push(new GLatLng(35.22898,-81.27976));
755
+ // points.push(new GLatLng(35.22883,-81.27977));
756
+ // points.push(new GLatLng(35.22872,-81.27977));
757
+ points.push(new GLatLng(35.22862,-81.27976));
758
+ // points.push(new GLatLng(35.22856,-81.28001));
759
+ // points.push(new GLatLng(35.22845,-81.28008));
760
+ // points.push(new GLatLng(35.22832,-81.28016));
761
+ // points.push(new GLatLng(35.2282,-81.28017));
762
+ points.push(new GLatLng(35.22804,-81.28014));
763
+ // points.push(new GLatLng(35.22793,-81.28017));
764
+ // points.push(new GLatLng(35.22784,-81.28019));
765
+ // points.push(new GLatLng(35.2278,-81.28019));
766
+ // points.push(new GLatLng(35.22774,-81.28023));
767
+ points.push(new GLatLng(35.22761,-81.28032));
768
+ // points.push(new GLatLng(35.22743,-81.28061));
769
+ // points.push(new GLatLng(35.22732,-81.2807));
770
+ // points.push(new GLatLng(35.22707,-81.28082));
771
+ // points.push(new GLatLng(35.2269,-81.28095));
772
+ points.push(new GLatLng(35.22679,-81.2811));
773
+ // points.push(new GLatLng(35.2267,-81.28117));
774
+ // points.push(new GLatLng(35.22666,-81.28118));
775
+ // points.push(new GLatLng(35.22658,-81.28118));
776
+ // points.push(new GLatLng(35.22648,-81.28127));
777
+ points.push(new GLatLng(35.22636,-81.28128));
778
+ // points.push(new GLatLng(35.22627,-81.28131));
779
+ // points.push(new GLatLng(35.22623,-81.28132));
780
+ // points.push(new GLatLng(35.2262,-81.28135));
781
+ // points.push(new GLatLng(35.22599,-81.28138));
782
+ points.push(new GLatLng(35.22586,-81.28144));
783
+ // points.push(new GLatLng(35.22572,-81.28148));
784
+ // points.push(new GLatLng(35.22561,-81.28146));
785
+ // points.push(new GLatLng(35.22555,-81.28154));
786
+ // points.push(new GLatLng(35.2254,-81.28157));
787
+ points.push(new GLatLng(35.22533,-81.28162));
788
+ // points.push(new GLatLng(35.22527,-81.28164));
789
+ // points.push(new GLatLng(35.22523,-81.28167));
790
+ // points.push(new GLatLng(35.22511,-81.28167));
791
+ // points.push(new GLatLng(35.22501,-81.28175));
792
+ points.push(new GLatLng(35.22489,-81.28179));
793
+ // points.push(new GLatLng(35.22475,-81.28183));
794
+ // points.push(new GLatLng(35.22465,-81.28188));
795
+ // points.push(new GLatLng(35.22452,-81.28191));
796
+ // points.push(new GLatLng(35.22439,-81.282));
797
+ points.push(new GLatLng(35.22427,-81.28211));
798
+ // points.push(new GLatLng(35.2241,-81.28213));
799
+ // points.push(new GLatLng(35.22399,-81.28215));
800
+ // points.push(new GLatLng(35.22384,-81.28224));
801
+ // points.push(new GLatLng(35.22379,-81.28231));
802
+ points.push(new GLatLng(35.2237,-81.28245));
803
+ // points.push(new GLatLng(35.2235,-81.28266));
804
+ // points.push(new GLatLng(35.2233,-81.28266));
805
+ // points.push(new GLatLng(35.22314,-81.28275));
806
+ // points.push(new GLatLng(35.22294,-81.28278));
807
+ points.push(new GLatLng(35.22277,-81.28277));
808
+ // points.push(new GLatLng(35.22268,-81.28278));
809
+ // points.push(new GLatLng(35.22249,-81.28278));
810
+ // points.push(new GLatLng(35.22229,-81.28276));
811
+ // points.push(new GLatLng(35.22215,-81.28274));
812
+ points.push(new GLatLng(35.22203,-81.28279));
813
+ // points.push(new GLatLng(35.22195,-81.28282));
814
+ // points.push(new GLatLng(35.22186,-81.28282));
815
+ // points.push(new GLatLng(35.22169,-81.28281));
816
+ // points.push(new GLatLng(35.22157,-81.28277));
817
+ points.push(new GLatLng(35.22147,-81.28284));
818
+ // points.push(new GLatLng(35.22137,-81.28286));
819
+ // points.push(new GLatLng(35.22129,-81.28285));
820
+ // points.push(new GLatLng(35.22128,-81.28285));
821
+ // points.push(new GLatLng(35.22123,-81.28279));
822
+ points.push(new GLatLng(35.22113,-81.28279));
823
+ // points.push(new GLatLng(35.22106,-81.28275));
824
+ // points.push(new GLatLng(35.22095,-81.28275));
825
+ // points.push(new GLatLng(35.22086,-81.28277));
826
+ // points.push(new GLatLng(35.22075,-81.2827));
827
+ points.push(new GLatLng(35.22064,-81.28266));
828
+ // points.push(new GLatLng(35.22056,-81.28265));
829
+ // points.push(new GLatLng(35.2205,-81.28264));
830
+ // points.push(new GLatLng(35.22041,-81.28262));
831
+ // points.push(new GLatLng(35.22029,-81.28262));
832
+ points.push(new GLatLng(35.22018,-81.28264));
833
+ // points.push(new GLatLng(35.22004,-81.28257));
834
+ // points.push(new GLatLng(35.21986,-81.28261));
835
+ // points.push(new GLatLng(35.21969,-81.28254));
836
+ // points.push(new GLatLng(35.21955,-81.28246));
837
+ points.push(new GLatLng(35.21943,-81.28241));
838
+ // points.push(new GLatLng(35.21934,-81.28238));
839
+ // points.push(new GLatLng(35.21926,-81.2824));
840
+ // points.push(new GLatLng(35.21907,-81.2824));
841
+ // points.push(new GLatLng(35.21897,-81.28248));
842
+ points.push(new GLatLng(35.21885,-81.28253));
843
+ // points.push(new GLatLng(35.21877,-81.28255));
844
+ // points.push(new GLatLng(35.21866,-81.28263));
845
+ // points.push(new GLatLng(35.21859,-81.28271));
846
+ // points.push(new GLatLng(35.21849,-81.28277));
847
+ points.push(new GLatLng(35.21844,-81.28278));
848
+ // points.push(new GLatLng(35.21846,-81.2829));
849
+ // points.push(new GLatLng(35.21838,-81.28288));
850
+ // points.push(new GLatLng(35.21832,-81.28297));
851
+ // points.push(new GLatLng(35.21826,-81.28306));
852
+ points.push(new GLatLng(35.21819,-81.2831));
853
+ // points.push(new GLatLng(35.21824,-81.28324));
854
+ // points.push(new GLatLng(35.21826,-81.28333));
855
+ // points.push(new GLatLng(35.21814,-81.28336));
856
+ // points.push(new GLatLng(35.21807,-81.28339));
857
+ points.push(new GLatLng(35.21794,-81.28355));
858
+ // points.push(new GLatLng(35.21784,-81.28372));
859
+ // points.push(new GLatLng(35.21788,-81.28387));
860
+ // points.push(new GLatLng(35.21794,-81.28413));
861
+ // points.push(new GLatLng(35.21803,-81.28424));
862
+ points.push(new GLatLng(35.21813,-81.28446));
863
+ // points.push(new GLatLng(35.21813,-81.28471));
864
+ // points.push(new GLatLng(35.21808,-81.2849));
865
+ // points.push(new GLatLng(35.21819,-81.28506));
866
+ // points.push(new GLatLng(35.21821,-81.28535));
867
+ points.push(new GLatLng(35.21804,-81.28571));
868
+ // points.push(new GLatLng(35.21791,-81.28595));
869
+ // points.push(new GLatLng(35.21777,-81.28616));
870
+ // points.push(new GLatLng(35.21763,-81.28629));
871
+ // points.push(new GLatLng(35.21759,-81.28648));
872
+ points.push(new GLatLng(35.21757,-81.28653));
873
+ // points.push(new GLatLng(35.2173,-81.2871));
874
+ // points.push(new GLatLng(35.21727,-81.28745));
875
+ // points.push(new GLatLng(35.21722,-81.28764));
876
+ // points.push(new GLatLng(35.21711,-81.28774));
877
+ points.push(new GLatLng(35.21693,-81.28772));
878
+ // points.push(new GLatLng(35.21692,-81.28788));
879
+ // points.push(new GLatLng(35.21686,-81.28796));
880
+ // points.push(new GLatLng(35.21664,-81.28818));
881
+ // points.push(new GLatLng(35.21652,-81.28838));
882
+ points.push(new GLatLng(35.21645,-81.28853));
883
+ // points.push(new GLatLng(35.21647,-81.28879));
884
+ // points.push(new GLatLng(35.2165,-81.28895));
885
+ // points.push(new GLatLng(35.21655,-81.2892));
886
+ // points.push(new GLatLng(35.21656,-81.28939));
887
+ points.push(new GLatLng(35.21651,-81.28961));
888
+ // points.push(new GLatLng(35.21641,-81.28977));
889
+ // points.push(new GLatLng(35.21631,-81.28986));
890
+ // points.push(new GLatLng(35.21618,-81.29));
891
+ // points.push(new GLatLng(35.21615,-81.29016));
892
+ points.push(new GLatLng(35.21616,-81.29035));
893
+ // points.push(new GLatLng(35.21623,-81.29062));
894
+ // points.push(new GLatLng(35.21629,-81.29079));
895
+ // points.push(new GLatLng(35.21622,-81.29096));
896
+ // points.push(new GLatLng(35.21627,-81.29108));
897
+ points.push(new GLatLng(35.21625,-81.29125));
898
+ // points.push(new GLatLng(35.21628,-81.2914));
899
+ // points.push(new GLatLng(35.21624,-81.29155));
900
+ // points.push(new GLatLng(35.21614,-81.29159));
901
+ // points.push(new GLatLng(35.21611,-81.29185));
902
+ points.push(new GLatLng(35.21619,-81.29205));
903
+ // points.push(new GLatLng(35.21624,-81.29223));
904
+ // points.push(new GLatLng(35.21616,-81.2925));
905
+ // points.push(new GLatLng(35.21615,-81.29268));
906
+ // points.push(new GLatLng(35.21604,-81.2928));
907
+ points.push(new GLatLng(35.21588,-81.29292));
908
+ // points.push(new GLatLng(35.2158,-81.29295));
909
+ // points.push(new GLatLng(35.21579,-81.293));
910
+ // points.push(new GLatLng(35.21572,-81.29314));
911
+ // points.push(new GLatLng(35.21547,-81.2934));
912
+ points.push(new GLatLng(35.21539,-81.29335));
913
+ // points.push(new GLatLng(35.21535,-81.29332));
914
+ // points.push(new GLatLng(35.21524,-81.29356));
915
+ // points.push(new GLatLng(35.21482,-81.29377));
916
+ // points.push(new GLatLng(35.21475,-81.29372));
917
+ points.push(new GLatLng(35.21451,-81.29345));
918
+ // points.push(new GLatLng(35.21404,-81.29331));
919
+ // points.push(new GLatLng(35.21392,-81.29328));
920
+ // points.push(new GLatLng(35.21376,-81.29329));
921
+ // points.push(new GLatLng(35.21371,-81.29327));
922
+ points.push(new GLatLng(35.21357,-81.29327));
923
+ // points.push(new GLatLng(35.21356,-81.29324));
924
+ // points.push(new GLatLng(35.2135,-81.2932));
925
+ // points.push(new GLatLng(35.21337,-81.29342));
926
+ // points.push(new GLatLng(35.21337,-81.2933));
927
+ points.push(new GLatLng(35.21349,-81.29343));
928
+ // points.push(new GLatLng(35.21348,-81.29354));
929
+ // points.push(new GLatLng(35.21344,-81.29367));
930
+ // points.push(new GLatLng(35.21346,-81.29368));
931
+ // points.push(new GLatLng(35.21344,-81.2937));
932
+ points.push(new GLatLng(35.21344,-81.2937));
933
+ // points.push(new GLatLng(35.21344,-81.29365));
934
+ // points.push(new GLatLng(35.21288,-81.29341));
935
+ // points.push(new GLatLng(35.21249,-81.29326));
936
+ // points.push(new GLatLng(35.21231,-81.2931));
937
+ points.push(new GLatLng(35.21226,-81.29299));
938
+ // points.push(new GLatLng(35.21206,-81.29276));
939
+ // points.push(new GLatLng(35.21191,-81.29244));
940
+ // points.push(new GLatLng(35.21158,-81.29186));
941
+ // points.push(new GLatLng(35.21145,-81.29168));
942
+ points.push(new GLatLng(35.21136,-81.2916));
943
+ // points.push(new GLatLng(35.21122,-81.29137));
944
+ // points.push(new GLatLng(35.21112,-81.29071));
945
+ // points.push(new GLatLng(35.21124,-81.29003));
946
+ // points.push(new GLatLng(35.2113,-81.28971));
947
+ points.push(new GLatLng(35.21135,-81.28962));
948
+ // points.push(new GLatLng(35.21147,-81.28956));
949
+ // points.push(new GLatLng(35.2117,-81.28962));
950
+ // points.push(new GLatLng(35.21183,-81.28967));
951
+ // points.push(new GLatLng(35.21212,-81.28973));
952
+ points.push(new GLatLng(35.21259,-81.28983));
953
+ // points.push(new GLatLng(35.21272,-81.28986));
954
+ // points.push(new GLatLng(35.2131,-81.28985));
955
+ // points.push(new GLatLng(35.21355,-81.2896));
956
+ // points.push(new GLatLng(35.21391,-81.28916));
957
+ points.push(new GLatLng(35.2141,-81.28894));
958
+ // points.push(new GLatLng(35.21454,-81.2883));
959
+ // points.push(new GLatLng(35.21483,-81.28788));
960
+ // points.push(new GLatLng(35.21513,-81.28745));
961
+ // points.push(new GLatLng(35.21533,-81.28716));
962
+ points.push(new GLatLng(35.21563,-81.28673));
963
+ // points.push(new GLatLng(35.21647,-81.28574));
964
+ // points.push(new GLatLng(35.21756,-81.285));
965
+ // points.push(new GLatLng(35.21784,-81.28488));
966
+ // points.push(new GLatLng(35.21811,-81.28484));
967
+ points.push(new GLatLng(35.21819,-81.28486));
968
+ // points.push(new GLatLng(35.21834,-81.285));
969
+ // points.push(new GLatLng(35.21864,-81.28541));
970
+ // points.push(new GLatLng(35.21895,-81.2858));
971
+ // points.push(new GLatLng(35.21906,-81.28595));
972
+ points.push(new GLatLng(35.22034,-81.2874));
973
+ // points.push(new GLatLng(35.22115,-81.28791));
974
+ // points.push(new GLatLng(35.22147,-81.28812));
975
+ // points.push(new GLatLng(35.22163,-81.28823));
976
+ // points.push(new GLatLng(35.22334,-81.28932));
977
+ points.push(new GLatLng(35.22518,-81.2908));
978
+ // points.push(new GLatLng(35.22566,-81.29126));
979
+ // points.push(new GLatLng(35.22598,-81.29156));
980
+ // points.push(new GLatLng(35.22663,-81.29217));
981
+ // points.push(new GLatLng(35.22726,-81.29276));
982
+ points.push(new GLatLng(35.22758,-81.29302));
983
+ // points.push(new GLatLng(35.22863,-81.29369));
984
+ // points.push(new GLatLng(35.22881,-81.29379));
985
+ // points.push(new GLatLng(35.23052,-81.29446));
986
+ // points.push(new GLatLng(35.2309,-81.29451));
987
+ points.push(new GLatLng(35.23227,-81.29441));
988
+ // points.push(new GLatLng(35.23358,-81.2942));
989
+ // points.push(new GLatLng(35.23504,-81.29356));
990
+ // points.push(new GLatLng(35.23591,-81.29299));
991
+ // points.push(new GLatLng(35.23631,-81.29249));
992
+ points.push(new GLatLng(35.23669,-81.29196));
993
+ // points.push(new GLatLng(35.23732,-81.29107));
994
+ // points.push(new GLatLng(35.23759,-81.29068));
995
+ // points.push(new GLatLng(35.23786,-81.2903));
996
+ // points.push(new GLatLng(35.23799,-81.29011));
997
+ points.push(new GLatLng(35.23885,-81.28894));
998
+ // points.push(new GLatLng(35.23942,-81.28828));
999
+ // points.push(new GLatLng(35.24044,-81.28781));
1000
+ // points.push(new GLatLng(35.24061,-81.28775));
1001
+ // points.push(new GLatLng(35.24113,-81.2876));
1002
+ points.push(new GLatLng(35.2415,-81.28752));
1003
+ // points.push(new GLatLng(35.24187,-81.28741));
1004
+ // points.push(new GLatLng(35.24222,-81.28724));
1005
+ // points.push(new GLatLng(35.243,-81.28673));
1006
+ // points.push(new GLatLng(35.24343,-81.28642));
1007
+ points.push(new GLatLng(35.24356,-81.28631));
1008
+ // points.push(new GLatLng(35.24392,-81.28583));
1009
+ // points.push(new GLatLng(35.24442,-81.28542));
1010
+ // points.push(new GLatLng(35.24479,-81.28523));
1011
+ // points.push(new GLatLng(35.24536,-81.28496));
1012
+ points.push(new GLatLng(35.24565,-81.2848));
1013
+ // points.push(new GLatLng(35.24621,-81.28451));
1014
+ // points.push(new GLatLng(35.24685,-81.28462));
1015
+ // points.push(new GLatLng(35.2472,-81.28494));
1016
+ // points.push(new GLatLng(35.24762,-81.28542));
1017
+ points.push(new GLatLng(35.24826,-81.28645));
1018
+ // points.push(new GLatLng(35.24841,-81.2867));
1019
+ // points.push(new GLatLng(35.24853,-81.28679));
1020
+ // points.push(new GLatLng(35.24857,-81.28679));
1021
+ // points.push(new GLatLng(35.24863,-81.28682));
1022
+ points.push(new GLatLng(35.24869,-81.28671));
1023
+ // points.push(new GLatLng(35.24879,-81.2862));
1024
+ // points.push(new GLatLng(35.24888,-81.28593));
1025
+ // points.push(new GLatLng(35.24897,-81.28564));
1026
+ // points.push(new GLatLng(35.24902,-81.28549));
1027
+ points.push(new GLatLng(35.24921,-81.285));
1028
+ // points.push(new GLatLng(35.25003,-81.28359));
1029
+ // points.push(new GLatLng(35.2514,-81.28137));
1030
+ // points.push(new GLatLng(35.25195,-81.2802));
1031
+ // points.push(new GLatLng(35.2529,-81.27807));
1032
+ points.push(new GLatLng(35.25331,-81.27713));
1033
+ // points.push(new GLatLng(35.25358,-81.27642));
1034
+ // points.push(new GLatLng(35.25372,-81.27592));
1035
+ // points.push(new GLatLng(35.25384,-81.27543));
1036
+ // points.push(new GLatLng(35.25395,-81.27494));
1037
+ points.push(new GLatLng(35.25408,-81.27416));
1038
+ // points.push(new GLatLng(35.25417,-81.27362));
1039
+ // points.push(new GLatLng(35.25426,-81.27305));
1040
+ // points.push(new GLatLng(35.25435,-81.27246));
1041
+ // points.push(new GLatLng(35.25451,-81.27158));
1042
+ points.push(new GLatLng(35.25456,-81.27129));
1043
+ // points.push(new GLatLng(35.25494,-81.26901));
1044
+ // points.push(new GLatLng(35.25515,-81.26765));
1045
+ // points.push(new GLatLng(35.25519,-81.26739));
1046
+ // points.push(new GLatLng(35.25545,-81.26583));
1047
+ points.push(new GLatLng(35.25558,-81.26506));
1048
+ // points.push(new GLatLng(35.25583,-81.26352));
1049
+ // points.push(new GLatLng(35.25601,-81.26256));
1050
+ // points.push(new GLatLng(35.25616,-81.26161));
1051
+ // points.push(new GLatLng(35.25629,-81.26089));
1052
+ points.push(new GLatLng(35.25646,-81.26));
1053
+ // points.push(new GLatLng(35.25659,-81.25949));
1054
+ // points.push(new GLatLng(35.25664,-81.25925));
1055
+ // points.push(new GLatLng(35.25663,-81.25914));
1056
+ // points.push(new GLatLng(35.2567,-81.25854));
1057
+ points.push(new GLatLng(35.25697,-81.25704));
1058
+ // points.push(new GLatLng(35.25702,-81.25682));
1059
+ // points.push(new GLatLng(35.25709,-81.25652));
1060
+ // points.push(new GLatLng(35.25709,-81.25652));
1061
+ // points.push(new GLatLng(35.2571,-81.25648));
1062
+ points.push(new GLatLng(35.25737,-81.2563));
1063
+ // points.push(new GLatLng(35.25842,-81.25635));
1064
+ // points.push(new GLatLng(35.25853,-81.25635));
1065
+ // points.push(new GLatLng(35.25892,-81.25637));
1066
+ // points.push(new GLatLng(35.25905,-81.25637));
1067
+ points.push(new GLatLng(35.25953,-81.25616));
1068
+ // points.push(new GLatLng(35.25985,-81.25588));
1069
+ // points.push(new GLatLng(35.25996,-81.25579));
1070
+ // points.push(new GLatLng(35.26032,-81.25559));
1071
+ // points.push(new GLatLng(35.26046,-81.25556));
1072
+ points.push(new GLatLng(35.26153,-81.25549));
1073
+ // points.push(new GLatLng(35.26185,-81.25549));
1074
+ // points.push(new GLatLng(35.2633,-81.25543));
1075
+ // points.push(new GLatLng(35.26346,-81.25543));
1076
+ // points.push(new GLatLng(35.26447,-81.2557));
1077
+ points.push(new GLatLng(35.26498,-81.25607));
1078
+ // points.push(new GLatLng(35.26537,-81.25643));
1079
+ // points.push(new GLatLng(35.26583,-81.25629));
1080
+ // points.push(new GLatLng(35.26636,-81.25562));
1081
+ // points.push(new GLatLng(35.26686,-81.25494));
1082
+ points.push(new GLatLng(35.26722,-81.25433));
1083
+ // points.push(new GLatLng(35.26772,-81.25312));
1084
+ // points.push(new GLatLng(35.26792,-81.25261));
1085
+ // points.push(new GLatLng(35.26813,-81.25208));
1086
+ points.push(new GLatLng(35.26834,-81.25154));
1087
+
1088
+ // app_max=200.0 ratio=5.325 increment=5
1089
+
1090
+ var routePolyline = new GPolyline(points);
1091
+ map.addOverlay(routePolyline);
1092
+
1093
+ // Create a base icon for all of our markers that specifies the
1094
+ // shadow, icon dimensions, etc.
1095
+ var baseIcon = new GIcon();
1096
+ baseIcon.shadow = "images/shadow50.png";
1097
+ baseIcon.iconSize = new GSize(20, 34);
1098
+ baseIcon.shadowSize = new GSize(37, 34);
1099
+ baseIcon.iconAnchor = new GPoint(9, 34);
1100
+ baseIcon.infoWindowAnchor = new GPoint(9, 2);
1101
+ baseIcon.infoShadowAnchor = new GPoint(18, 25);
1102
+
1103
+ var iconStart = new GIcon(baseIcon);
1104
+ iconStart.image = "images/dd-start.png";
1105
+ var pStart = new GPoint(-81.29359, 35.21357);
1106
+ var mStart = new GMarker(pStart, iconStart);
1107
+ GEvent.addListener(mStart, "click", function() {
1108
+ 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 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.21357</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.29359</td></tr></table>");
1109
+ });
1110
+ map.addOverlay(mStart);
1111
+
1112
+ var icon1 = new GIcon(baseIcon);
1113
+ icon1.image = "images/marker1.png";
1114
+ var p1 = new GPoint(-81.30494, 35.21358);
1115
+ var m1 = new GMarker(p1, icon1);
1116
+ GEvent.addListener(m1, "click", function() {
1117
+ 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.003</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>0:28:07</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>2.139</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.21358</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.30494</td></tr></table>");
1118
+ });
1119
+ map.addOverlay(m1);
1120
+
1121
+ var icon2 = new GIcon(baseIcon);
1122
+ icon2.image = "images/marker2.png";
1123
+ var p2 = new GPoint(-81.31187, 35.20753);
1124
+ var m2 = new GMarker(p2, icon2);
1125
+ GEvent.addListener(m2, "click", function() {
1126
+ 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.000</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>1:39:43</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.203</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.20753</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.31187</td></tr></table>");
1127
+ });
1128
+ map.addOverlay(m2);
1129
+
1130
+ var icon3 = new GIcon(baseIcon);
1131
+ icon3.image = "images/marker3.png";
1132
+ var p3 = new GPoint(-81.29913, 35.21643);
1133
+ var m3 = new GMarker(p3, icon3);
1134
+ GEvent.addListener(m3, "click", function() {
1135
+ 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.013</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>2:15:03</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.339</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.21643</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.29913</td></tr></table>");
1136
+ });
1137
+ map.addOverlay(m3);
1138
+
1139
+ var icon4 = new GIcon(baseIcon);
1140
+ icon4.image = "images/marker4.png";
1141
+ var p4 = new GPoint(-81.29331, 35.21616);
1142
+ var m4 = new GMarker(p4, icon4);
1143
+ GEvent.addListener(m4, "click", function() {
1144
+ 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.004</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>2:42:34</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.478</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.21616</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.29331</td></tr></table>");
1145
+ });
1146
+ map.addOverlay(m4);
1147
+
1148
+ var icon5 = new GIcon(baseIcon);
1149
+ icon5.image = "images/marker5.png";
1150
+ var p5 = new GPoint(-81.28629, 35.22417);
1151
+ var m5 = new GMarker(p5, icon5);
1152
+ GEvent.addListener(m5, "click", function() {
1153
+ 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.015</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>3:04:33</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.630</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.22417</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.28629</td></tr></table>");
1154
+ });
1155
+ map.addOverlay(m5);
1156
+
1157
+ var icon6 = new GIcon(baseIcon);
1158
+ icon6.image = "images/marker6.png";
1159
+ var p6 = new GPoint(-81.27871, 35.23565);
1160
+ var m6 = new GMarker(p6, icon6);
1161
+ GEvent.addListener(m6, "click", function() {
1162
+ 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.014</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>3:27:46</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.737</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.23565</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.27871</td></tr></table>");
1163
+ });
1164
+ map.addOverlay(m6);
1165
+
1166
+ var icon7 = new GIcon(baseIcon);
1167
+ icon7.image = "images/marker7.png";
1168
+ var p7 = new GPoint(-81.27846, 35.23058);
1169
+ var m7 = new GMarker(p7, icon7);
1170
+ GEvent.addListener(m7, "click", function() {
1171
+ 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.008</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>4:29:32</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.560</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.23058</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.27846</td></tr></table>");
1172
+ });
1173
+ map.addOverlay(m7);
1174
+
1175
+ var icon8 = new GIcon(baseIcon);
1176
+ icon8.image = "images/marker8.png";
1177
+ var p8 = new GPoint(-81.28339, 35.21807);
1178
+ var m8 = new GMarker(p8, icon8);
1179
+ GEvent.addListener(m8, "click", function() {
1180
+ 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.003</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>5:13:13</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.533</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.21807</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.28339</td></tr></table>");
1181
+ });
1182
+ map.addOverlay(m8);
1183
+
1184
+ var icon9 = new GIcon(baseIcon);
1185
+ icon9.image = "images/marker9.png";
1186
+ var p9 = new GPoint(-81.29276, 35.21206);
1187
+ var m9 = new GMarker(p9, icon9);
1188
+ GEvent.addListener(m9, "click", function() {
1189
+ 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.001</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>5:51:40</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.536</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.21206</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.29276</td></tr></table>");
1190
+ });
1191
+ map.addOverlay(m9);
1192
+
1193
+ var icon10 = new GIcon(baseIcon);
1194
+ icon10.image = "images/marker10.png";
1195
+ var p10 = new GPoint(-81.28791, 35.22115);
1196
+ var m10 = new GMarker(p10, icon10);
1197
+ GEvent.addListener(m10, "click", function() {
1198
+ 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.057</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>5:54:35</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.702</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.22115</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.28791</td></tr></table>");
1199
+ });
1200
+ map.addOverlay(m10);
1201
+
1202
+ var icon11 = new GIcon(baseIcon);
1203
+ icon11.image = "images/marker11.png";
1204
+ var p11 = new GPoint(-81.2942, 35.23358);
1205
+ var m11 = new GMarker(p11, icon11);
1206
+ GEvent.addListener(m11, "click", function() {
1207
+ 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.020</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>5:55:46</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>1.858</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.23358</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.2942</td></tr></table>");
1208
+ });
1209
+ map.addOverlay(m11);
1210
+
1211
+ var icon12 = new GIcon(baseIcon);
1212
+ icon12.image = "images/marker12.png";
1213
+ var p12 = new GPoint(-81.28496, 35.24536);
1214
+ var m12 = new GMarker(p12, icon12);
1215
+ GEvent.addListener(m12, "click", function() {
1216
+ 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.013</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>5:57:09</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>2.018</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.24536</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.28496</td></tr></table>");
1217
+ });
1218
+ map.addOverlay(m12);
1219
+
1220
+ var icon13 = new GIcon(baseIcon);
1221
+ icon13.image = "images/marker13.png";
1222
+ var p13 = new GPoint(-81.27592, 35.25372);
1223
+ var m13 = new GMarker(p13, icon13);
1224
+ GEvent.addListener(m13, "click", function() {
1225
+ 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.011</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>5:58:55</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>2.175</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.25372</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.27592</td></tr></table>");
1226
+ });
1227
+ map.addOverlay(m13);
1228
+
1229
+ var icon14 = new GIcon(baseIcon);
1230
+ icon14.image = "images/marker14.png";
1231
+ var p14 = new GPoint(-81.25854, 35.2567);
1232
+ var m14 = new GMarker(p14, icon14);
1233
+ GEvent.addListener(m14, "click", function() {
1234
+ 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.014</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>6:00:11</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>2.334</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.2567</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.25854</td></tr></table>");
1235
+ });
1236
+ map.addOverlay(m14);
1237
+
1238
+ var icon15 = new GIcon(baseIcon);
1239
+ icon15.image = "images/marker15.png";
1240
+ var p15 = new GPoint(-81.25261, 35.26792);
1241
+ var m15 = new GMarker(p15, icon15);
1242
+ GEvent.addListener(m15, "click", function() {
1243
+ 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.021</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>6:03:01</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>2.483</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.26792</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.25261</td></tr></table>");
1244
+ });
1245
+ map.addOverlay(m15);
1246
+
1247
+ var iconFinish = new GIcon(baseIcon);
1248
+ iconFinish.image = "images/dd-end.png";
1249
+ var pFinish = new GPoint(-81.25154, 35.26834);
1250
+ var mFinish = new GMarker(pFinish, iconFinish);
1251
+ GEvent.addListener(mFinish, "click", function() {
1252
+ 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;'>15.088</td></tr><tr><td>Elapsed Time: </td><td style='padding-left:12px;padding-right:1px;'>6:03:05</td></tr><tr><td>Average MPH: </td><td style='padding-left:12px;padding-right:1px;'>2.493</td></tr><tr><td>Latitude: </td><td style='padding-left:12px;padding-right:1px;'>35.26834</td></tr><tr><td>Longitude: </td><td style='padding-left:12px;padding-right:1px;'>-81.25154</td></tr></table>");
1253
+ });
1254
+ map.addOverlay(mFinish);
1255
+
1256
+
1257
+
1258
+
1259
+ GEvent.addListener(map, "click", function() {
1260
+ var center = map.getCenter();
1261
+
1262
+ document.getElementById("messages").innerHTML = 'click: ' + center.toString();
1263
+ });
1264
+ GEvent.addListener(map, "moveend", function() {
1265
+ var center = map.getCenter();
1266
+
1267
+ document.getElementById("messages").innerHTML = 'moveend: ' + center.toString();
1268
+ });
1269
+
1270
+ }
1271
+ }
1272
+ //]]>
1273
+
1274
+ </script>
1275
+ </head>
1276
+ <body onload="load()" onunload="GUnload()">
1277
+ <center>
1278
+ <h3> Crowders Mountain Hike </h3>
1279
+ <div id="map" style="width: 1500px; height: 800px"></div>
1280
+ <div id="messages"></div>
1281
+ </center>
1282
+ </body>
1283
+ </html>