postrunner 0.0.3 → 0.0.4

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 (1322) hide show
  1. checksums.yaml +4 -4
  2. data/lib/postrunner/ActivityView.rb +26 -0
  3. data/lib/postrunner/version.rb +1 -1
  4. data/misc/flot/API.md +1498 -0
  5. data/misc/flot/CONTRIBUTING.md +98 -0
  6. data/misc/flot/FAQ.md +75 -0
  7. data/misc/flot/LICENSE.txt +22 -0
  8. data/misc/flot/Makefile +12 -0
  9. data/misc/flot/NEWS.md +1026 -0
  10. data/misc/flot/PLUGINS.md +143 -0
  11. data/misc/flot/README.md +110 -0
  12. data/misc/flot/examples/.DS_Store +0 -0
  13. data/misc/flot/examples/ajax/data-eu-gdp-growth-1.json +4 -0
  14. data/misc/flot/examples/ajax/data-eu-gdp-growth-2.json +4 -0
  15. data/misc/flot/examples/ajax/data-eu-gdp-growth-3.json +4 -0
  16. data/misc/flot/examples/ajax/data-eu-gdp-growth-4.json +4 -0
  17. data/misc/flot/examples/ajax/data-eu-gdp-growth-5.json +4 -0
  18. data/misc/flot/examples/ajax/data-eu-gdp-growth.json +4 -0
  19. data/misc/flot/examples/ajax/data-japan-gdp-growth.json +4 -0
  20. data/misc/flot/examples/ajax/data-usa-gdp-growth.json +4 -0
  21. data/misc/flot/examples/ajax/index.html +173 -0
  22. data/misc/flot/examples/annotating/index.html +87 -0
  23. data/misc/flot/examples/axes-interacting/index.html +97 -0
  24. data/misc/flot/examples/axes-multiple/index.html +77 -0
  25. data/misc/flot/examples/axes-time/index.html +137 -0
  26. data/misc/flot/examples/axes-time-zones/date.js +893 -0
  27. data/misc/flot/examples/axes-time-zones/index.html +114 -0
  28. data/misc/flot/examples/axes-time-zones/tz/africa +1181 -0
  29. data/misc/flot/examples/axes-time-zones/tz/antarctica +413 -0
  30. data/misc/flot/examples/axes-time-zones/tz/asia +2717 -0
  31. data/misc/flot/examples/axes-time-zones/tz/australasia +1719 -0
  32. data/misc/flot/examples/axes-time-zones/tz/backward +117 -0
  33. data/misc/flot/examples/axes-time-zones/tz/etcetera +81 -0
  34. data/misc/flot/examples/axes-time-zones/tz/europe +2856 -0
  35. data/misc/flot/examples/axes-time-zones/tz/factory +10 -0
  36. data/misc/flot/examples/axes-time-zones/tz/iso3166.tab +276 -0
  37. data/misc/flot/examples/axes-time-zones/tz/leapseconds +100 -0
  38. data/misc/flot/examples/axes-time-zones/tz/northamerica +3235 -0
  39. data/misc/flot/examples/axes-time-zones/tz/pacificnew +28 -0
  40. data/misc/flot/examples/axes-time-zones/tz/solar87 +390 -0
  41. data/misc/flot/examples/axes-time-zones/tz/solar88 +390 -0
  42. data/misc/flot/examples/axes-time-zones/tz/solar89 +395 -0
  43. data/misc/flot/examples/axes-time-zones/tz/southamerica +1711 -0
  44. data/misc/flot/examples/axes-time-zones/tz/systemv +38 -0
  45. data/misc/flot/examples/axes-time-zones/tz/yearistype.sh +38 -0
  46. data/misc/flot/examples/axes-time-zones/tz/zone.tab +441 -0
  47. data/misc/flot/examples/background.png +0 -0
  48. data/misc/flot/examples/basic-options/index.html +91 -0
  49. data/misc/flot/examples/basic-usage/index.html +57 -0
  50. data/misc/flot/examples/canvas/index.html +75 -0
  51. data/misc/flot/examples/categories/index.html +64 -0
  52. data/misc/flot/examples/examples.css +97 -0
  53. data/misc/flot/examples/image/hs-2004-27-a-large-web.jpg +0 -0
  54. data/misc/flot/examples/image/index.html +69 -0
  55. data/misc/flot/examples/index.html +80 -0
  56. data/misc/flot/examples/interacting/index.html +118 -0
  57. data/misc/flot/examples/navigate/arrow-down.gif +0 -0
  58. data/misc/flot/examples/navigate/arrow-left.gif +0 -0
  59. data/misc/flot/examples/navigate/arrow-right.gif +0 -0
  60. data/misc/flot/examples/navigate/arrow-up.gif +0 -0
  61. data/misc/flot/examples/navigate/index.html +153 -0
  62. data/misc/flot/examples/percentiles/index.html +79 -0
  63. data/misc/flot/examples/realtime/index.html +122 -0
  64. data/misc/flot/examples/resize/index.html +76 -0
  65. data/misc/flot/examples/selection/index.html +152 -0
  66. data/misc/flot/examples/series-errorbars/index.html +150 -0
  67. data/misc/flot/examples/series-pie/index.html +818 -0
  68. data/misc/flot/examples/series-toggle/index.html +121 -0
  69. data/misc/flot/examples/series-types/index.html +90 -0
  70. data/misc/flot/examples/shared/jquery-ui/jquery-ui.min.css +6 -0
  71. data/misc/flot/examples/shared/jquery-ui/jquery-ui.min.js +6 -0
  72. data/misc/flot/examples/stacking/index.html +107 -0
  73. data/misc/flot/examples/symbols/index.html +76 -0
  74. data/misc/flot/examples/threshold/index.html +76 -0
  75. data/misc/flot/examples/tracking/index.html +135 -0
  76. data/misc/flot/examples/visitors/index.html +147 -0
  77. data/misc/flot/examples/zooming/index.html +144 -0
  78. data/misc/flot/excanvas.js +1428 -0
  79. data/misc/flot/excanvas.min.js +1 -0
  80. data/misc/flot/jquery.colorhelpers.js +180 -0
  81. data/misc/flot/jquery.colorhelpers.min.js +1 -0
  82. data/misc/flot/jquery.flot.canvas.js +345 -0
  83. data/misc/flot/jquery.flot.canvas.min.js +7 -0
  84. data/misc/flot/jquery.flot.categories.js +190 -0
  85. data/misc/flot/jquery.flot.categories.min.js +7 -0
  86. data/misc/flot/jquery.flot.crosshair.js +176 -0
  87. data/misc/flot/jquery.flot.crosshair.min.js +7 -0
  88. data/misc/flot/jquery.flot.errorbars.js +353 -0
  89. data/misc/flot/jquery.flot.errorbars.min.js +7 -0
  90. data/misc/flot/jquery.flot.fillbetween.js +226 -0
  91. data/misc/flot/jquery.flot.fillbetween.min.js +7 -0
  92. data/misc/flot/jquery.flot.image.js +241 -0
  93. data/misc/flot/jquery.flot.image.min.js +7 -0
  94. data/misc/flot/jquery.flot.js +3168 -0
  95. data/misc/flot/jquery.flot.min.js +8 -0
  96. data/misc/flot/jquery.flot.navigate.js +346 -0
  97. data/misc/flot/jquery.flot.navigate.min.js +7 -0
  98. data/misc/flot/jquery.flot.pie.js +820 -0
  99. data/misc/flot/jquery.flot.pie.min.js +7 -0
  100. data/misc/flot/jquery.flot.resize.js +59 -0
  101. data/misc/flot/jquery.flot.resize.min.js +7 -0
  102. data/misc/flot/jquery.flot.selection.js +360 -0
  103. data/misc/flot/jquery.flot.selection.min.js +7 -0
  104. data/misc/flot/jquery.flot.stack.js +188 -0
  105. data/misc/flot/jquery.flot.stack.min.js +7 -0
  106. data/misc/flot/jquery.flot.symbol.js +71 -0
  107. data/misc/flot/jquery.flot.symbol.min.js +7 -0
  108. data/misc/flot/jquery.flot.threshold.js +142 -0
  109. data/misc/flot/jquery.flot.threshold.min.js +7 -0
  110. data/misc/flot/jquery.flot.time.js +432 -0
  111. data/misc/flot/jquery.flot.time.min.js +7 -0
  112. data/misc/flot/jquery.js +9472 -0
  113. data/misc/flot/jquery.min.js +5 -0
  114. data/misc/jquery/jquery-2.1.1.min.js +4 -0
  115. data/misc/openlayers/.gitignore +7 -0
  116. data/misc/openlayers/OpenLayers.debug.js +85622 -0
  117. data/misc/openlayers/OpenLayers.js +1443 -0
  118. data/misc/openlayers/OpenLayers.light.debug.js +37230 -0
  119. data/misc/openlayers/OpenLayers.light.js +592 -0
  120. data/misc/openlayers/OpenLayers.mobile.debug.js +41831 -0
  121. data/misc/openlayers/OpenLayers.mobile.js +681 -0
  122. data/misc/openlayers/apidoc_config/Languages.txt +113 -0
  123. data/misc/openlayers/apidoc_config/Menu.txt +520 -0
  124. data/misc/openlayers/apidoc_config/OL.css +20 -0
  125. data/misc/openlayers/apidoc_config/Topics.txt +105 -0
  126. data/misc/openlayers/art/arrows.svg +127 -0
  127. data/misc/openlayers/art/layer-switcher-maximize.svg +128 -0
  128. data/misc/openlayers/art/layer-switcher-minimize.svg +142 -0
  129. data/misc/openlayers/art/marker.svg +25 -0
  130. data/misc/openlayers/art/measuring-stick-off.svg +36 -0
  131. data/misc/openlayers/art/measuring-stick-on.svg +36 -0
  132. data/misc/openlayers/art/panning-hand-off.svg +44 -0
  133. data/misc/openlayers/art/panning-hand-on.svg +44 -0
  134. data/misc/openlayers/art/slider.svg +71 -0
  135. data/misc/openlayers/art/zoom-world.svg +193 -0
  136. data/misc/openlayers/art/zoombar.svg +73 -0
  137. data/misc/openlayers/authors.txt +56 -0
  138. data/misc/openlayers/build/README.txt +46 -0
  139. data/misc/openlayers/build/build.py +158 -0
  140. data/misc/openlayers/build/buildUncompressed.py +25 -0
  141. data/misc/openlayers/build/closure-compiler/Externs.js +50 -0
  142. data/misc/openlayers/build/full.cfg +14 -0
  143. data/misc/openlayers/build/license.txt +57 -0
  144. data/misc/openlayers/build/light.cfg +32 -0
  145. data/misc/openlayers/build/lite.cfg +17 -0
  146. data/misc/openlayers/build/mobile.cfg +36 -0
  147. data/misc/openlayers/build/tests.cfg +11 -0
  148. data/misc/openlayers/doc_config/Data/ClassHierarchy.nd +0 -0
  149. data/misc/openlayers/doc_config/Data/ConfigFileInfo.nd +0 -0
  150. data/misc/openlayers/doc_config/Data/FileInfo.nd +323 -0
  151. data/misc/openlayers/doc_config/Data/ImageFileInfo.nd +0 -0
  152. data/misc/openlayers/doc_config/Data/ImageReferenceTable.nd +0 -0
  153. data/misc/openlayers/doc_config/Data/IndexInfo.nd +0 -0
  154. data/misc/openlayers/doc_config/Data/PreviousMenuState.nd +0 -0
  155. data/misc/openlayers/doc_config/Data/PreviousSettings.nd +0 -0
  156. data/misc/openlayers/doc_config/Data/SymbolTable.nd +0 -0
  157. data/misc/openlayers/doc_config/Languages.txt +113 -0
  158. data/misc/openlayers/doc_config/Menu.txt +520 -0
  159. data/misc/openlayers/doc_config/OL.css +20 -0
  160. data/misc/openlayers/doc_config/Topics.txt +102 -0
  161. data/misc/openlayers/examples/Jugl.js +8 -0
  162. data/misc/openlayers/examples/KMLParser.html +57 -0
  163. data/misc/openlayers/examples/SLDSelect.html +202 -0
  164. data/misc/openlayers/examples/WMSDescribeLayerParser.html +52 -0
  165. data/misc/openlayers/examples/accelerometer.html +100 -0
  166. data/misc/openlayers/examples/accessible-click-control.html +69 -0
  167. data/misc/openlayers/examples/accessible-click-control.js +199 -0
  168. data/misc/openlayers/examples/accessible-panel.html +130 -0
  169. data/misc/openlayers/examples/accessible-panel.js +64 -0
  170. data/misc/openlayers/examples/accessible.html +167 -0
  171. data/misc/openlayers/examples/all-overlays-google.html +34 -0
  172. data/misc/openlayers/examples/all-overlays-google.js +19 -0
  173. data/misc/openlayers/examples/all-overlays.html +76 -0
  174. data/misc/openlayers/examples/anchor-permalink.html +29 -0
  175. data/misc/openlayers/examples/anchor-permalink.js +13 -0
  176. data/misc/openlayers/examples/animated_panning.html +98 -0
  177. data/misc/openlayers/examples/animator.js +670 -0
  178. data/misc/openlayers/examples/arcgis93rest.html +69 -0
  179. data/misc/openlayers/examples/arcgiscache_ags.html +221 -0
  180. data/misc/openlayers/examples/arcgiscache_direct.html +108 -0
  181. data/misc/openlayers/examples/arcgiscache_jsonp.html +106 -0
  182. data/misc/openlayers/examples/arcims-thematic.html +82 -0
  183. data/misc/openlayers/examples/arcims.html +57 -0
  184. data/misc/openlayers/examples/attribution.html +60 -0
  185. data/misc/openlayers/examples/behavior-fixed-http-gml.html +56 -0
  186. data/misc/openlayers/examples/bing-tiles-restrictedzoom.html +43 -0
  187. data/misc/openlayers/examples/bing-tiles-restrictedzoom.js +37 -0
  188. data/misc/openlayers/examples/bing-tiles.html +39 -0
  189. data/misc/openlayers/examples/bing-tiles.js +31 -0
  190. data/misc/openlayers/examples/bing.html +64 -0
  191. data/misc/openlayers/examples/bootstrap.html +81 -0
  192. data/misc/openlayers/examples/bootstrap.js +31 -0
  193. data/misc/openlayers/examples/boxes-vector.html +59 -0
  194. data/misc/openlayers/examples/boxes.html +58 -0
  195. data/misc/openlayers/examples/browser.html +152 -0
  196. data/misc/openlayers/examples/browser.js +241 -0
  197. data/misc/openlayers/examples/buffer.html +54 -0
  198. data/misc/openlayers/examples/cache-read.html +36 -0
  199. data/misc/openlayers/examples/cache-read.js +36 -0
  200. data/misc/openlayers/examples/cache-write.html +37 -0
  201. data/misc/openlayers/examples/cache-write.js +46 -0
  202. data/misc/openlayers/examples/canvas-hit-detection.html +31 -0
  203. data/misc/openlayers/examples/canvas-hit-detection.js +88 -0
  204. data/misc/openlayers/examples/canvas-inspector.html +53 -0
  205. data/misc/openlayers/examples/canvas-inspector.js +91 -0
  206. data/misc/openlayers/examples/canvas.html +35 -0
  207. data/misc/openlayers/examples/canvas.js +57 -0
  208. data/misc/openlayers/examples/cartodb-geojson.html +71 -0
  209. data/misc/openlayers/examples/click-handler.html +232 -0
  210. data/misc/openlayers/examples/click.html +91 -0
  211. data/misc/openlayers/examples/clientzoom.html +72 -0
  212. data/misc/openlayers/examples/clientzoom.js +39 -0
  213. data/misc/openlayers/examples/controls.html +86 -0
  214. data/misc/openlayers/examples/cql-format.html +54 -0
  215. data/misc/openlayers/examples/cql-format.js +61 -0
  216. data/misc/openlayers/examples/cross-origin-xml.html +32 -0
  217. data/misc/openlayers/examples/cross-origin-xml.js +25 -0
  218. data/misc/openlayers/examples/cross-origin.html +36 -0
  219. data/misc/openlayers/examples/cross-origin.js +39 -0
  220. data/misc/openlayers/examples/custom-control.html +68 -0
  221. data/misc/openlayers/examples/custom-style.html +66 -0
  222. data/misc/openlayers/examples/data/4_m_citylights_lg.gif +0 -0
  223. data/misc/openlayers/examples/data/line.json +10 -0
  224. data/misc/openlayers/examples/data/point.json +8 -0
  225. data/misc/openlayers/examples/data/poly.json +9 -0
  226. data/misc/openlayers/examples/data/roads.json +349 -0
  227. data/misc/openlayers/examples/data/tazdem.tiff +0 -0
  228. data/misc/openlayers/examples/debug.html +77 -0
  229. data/misc/openlayers/examples/document-drag.html +43 -0
  230. data/misc/openlayers/examples/donut.html +62 -0
  231. data/misc/openlayers/examples/donut.js +44 -0
  232. data/misc/openlayers/examples/drag-feature.html +114 -0
  233. data/misc/openlayers/examples/draw-feature.html +143 -0
  234. data/misc/openlayers/examples/draw-undo-redo.html +38 -0
  235. data/misc/openlayers/examples/draw-undo-redo.js +45 -0
  236. data/misc/openlayers/examples/dynamic-text-layer.html +101 -0
  237. data/misc/openlayers/examples/editing-methods.html +58 -0
  238. data/misc/openlayers/examples/editing-methods.js +83 -0
  239. data/misc/openlayers/examples/editingtoolbar-outside.html +56 -0
  240. data/misc/openlayers/examples/editingtoolbar.html +55 -0
  241. data/misc/openlayers/examples/encoded-polyline.html +47 -0
  242. data/misc/openlayers/examples/events.html +155 -0
  243. data/misc/openlayers/examples/example-list.html +302 -0
  244. data/misc/openlayers/examples/example.html +25 -0
  245. data/misc/openlayers/examples/example.js +23 -0
  246. data/misc/openlayers/examples/feature-events.html +46 -0
  247. data/misc/openlayers/examples/feature-events.js +67 -0
  248. data/misc/openlayers/examples/filter-strategy.html +54 -0
  249. data/misc/openlayers/examples/filter-strategy.js +84 -0
  250. data/misc/openlayers/examples/filter.html +107 -0
  251. data/misc/openlayers/examples/fractional-zoom.html +72 -0
  252. data/misc/openlayers/examples/fullScreen.html +53 -0
  253. data/misc/openlayers/examples/fullScreen.js +20 -0
  254. data/misc/openlayers/examples/fusiontables.html +35 -0
  255. data/misc/openlayers/examples/fusiontables.js +51 -0
  256. data/misc/openlayers/examples/game-accel-ball.html +82 -0
  257. data/misc/openlayers/examples/geojson-reprojected.html +46 -0
  258. data/misc/openlayers/examples/geojson-reprojected.js +27 -0
  259. data/misc/openlayers/examples/geojson-reprojected.json +1 -0
  260. data/misc/openlayers/examples/geojson.html +77 -0
  261. data/misc/openlayers/examples/geolocation.html +41 -0
  262. data/misc/openlayers/examples/geolocation.js +112 -0
  263. data/misc/openlayers/examples/georss-flickr.html +119 -0
  264. data/misc/openlayers/examples/georss-markers.html +45 -0
  265. data/misc/openlayers/examples/georss.html +63 -0
  266. data/misc/openlayers/examples/georss.xml +378 -0
  267. data/misc/openlayers/examples/getfeature-wfs.html +84 -0
  268. data/misc/openlayers/examples/getfeatureinfo-control.html +221 -0
  269. data/misc/openlayers/examples/getfeatureinfo-popup.html +96 -0
  270. data/misc/openlayers/examples/gml/line.xml +42 -0
  271. data/misc/openlayers/examples/gml/multipoint.xml +70 -0
  272. data/misc/openlayers/examples/gml/multipolygon.xml +106 -0
  273. data/misc/openlayers/examples/gml/owls.xml +156 -0
  274. data/misc/openlayers/examples/gml/point.xml +42 -0
  275. data/misc/openlayers/examples/gml/polygon.xml +89 -0
  276. data/misc/openlayers/examples/gml-layer.html +48 -0
  277. data/misc/openlayers/examples/google-static.html +39 -0
  278. data/misc/openlayers/examples/google-static.js +61 -0
  279. data/misc/openlayers/examples/google-v3-alloverlays.html +33 -0
  280. data/misc/openlayers/examples/google-v3-alloverlays.js +35 -0
  281. data/misc/openlayers/examples/google-v3.html +35 -0
  282. data/misc/openlayers/examples/google-v3.js +39 -0
  283. data/misc/openlayers/examples/google.html +69 -0
  284. data/misc/openlayers/examples/graphic-name.html +42 -0
  285. data/misc/openlayers/examples/graphic-name.js +67 -0
  286. data/misc/openlayers/examples/graticule.html +116 -0
  287. data/misc/openlayers/examples/gutter.html +55 -0
  288. data/misc/openlayers/examples/highlight-feature.html +88 -0
  289. data/misc/openlayers/examples/hover-handler.html +216 -0
  290. data/misc/openlayers/examples/image-layer.html +76 -0
  291. data/misc/openlayers/examples/img/check-round-green.png +0 -0
  292. data/misc/openlayers/examples/img/check-round-grey.png +0 -0
  293. data/misc/openlayers/examples/img/list.png +0 -0
  294. data/misc/openlayers/examples/img/locate.png +0 -0
  295. data/misc/openlayers/examples/img/marker_shadow.png +0 -0
  296. data/misc/openlayers/examples/img/minus1.png +0 -0
  297. data/misc/openlayers/examples/img/mobile-layers.png +0 -0
  298. data/misc/openlayers/examples/img/mobile-loc.png +0 -0
  299. data/misc/openlayers/examples/img/mobile-zoombar.png +0 -0
  300. data/misc/openlayers/examples/img/openlayers.png +0 -0
  301. data/misc/openlayers/examples/img/popupMatrix.jpg +0 -0
  302. data/misc/openlayers/examples/img/small.jpg +0 -0
  303. data/misc/openlayers/examples/img/thinlong.jpg +0 -0
  304. data/misc/openlayers/examples/img/widelong.jpg +0 -0
  305. data/misc/openlayers/examples/img/wideshort.jpg +0 -0
  306. data/misc/openlayers/examples/intersects.html +193 -0
  307. data/misc/openlayers/examples/kamap.html +45 -0
  308. data/misc/openlayers/examples/kamap.txt +508 -0
  309. data/misc/openlayers/examples/kinetic.html +44 -0
  310. data/misc/openlayers/examples/kinetic.js +27 -0
  311. data/misc/openlayers/examples/kml/lines.kml +275 -0
  312. data/misc/openlayers/examples/kml/styles.kml +21 -0
  313. data/misc/openlayers/examples/kml/sundials.kml +2273 -0
  314. data/misc/openlayers/examples/kml-layer.html +36 -0
  315. data/misc/openlayers/examples/kml-layer.js +22 -0
  316. data/misc/openlayers/examples/kml-pointtrack.html +40 -0
  317. data/misc/openlayers/examples/kml-pointtrack.js +52 -0
  318. data/misc/openlayers/examples/kml-track.html +42 -0
  319. data/misc/openlayers/examples/kml-track.js +40 -0
  320. data/misc/openlayers/examples/kml-track.kml +3359 -0
  321. data/misc/openlayers/examples/label-scale.html +34 -0
  322. data/misc/openlayers/examples/label-scale.js +72 -0
  323. data/misc/openlayers/examples/late-render.html +48 -0
  324. data/misc/openlayers/examples/layer-opacity.html +95 -0
  325. data/misc/openlayers/examples/layerLoadMonitoring.html +135 -0
  326. data/misc/openlayers/examples/layerswitcher.html +60 -0
  327. data/misc/openlayers/examples/light-basic.html +35 -0
  328. data/misc/openlayers/examples/light-basic.js +67 -0
  329. data/misc/openlayers/examples/lite.html +39 -0
  330. data/misc/openlayers/examples/mapbox.html +30 -0
  331. data/misc/openlayers/examples/mapbox.js +21 -0
  332. data/misc/openlayers/examples/mapguide.html +155 -0
  333. data/misc/openlayers/examples/mapquest.html +28 -0
  334. data/misc/openlayers/examples/mapquest.js +36 -0
  335. data/misc/openlayers/examples/mapserver.html +41 -0
  336. data/misc/openlayers/examples/mapserver_untiled.html +43 -0
  337. data/misc/openlayers/examples/marker-shadow.html +152 -0
  338. data/misc/openlayers/examples/markerResize.html +60 -0
  339. data/misc/openlayers/examples/markers.html +59 -0
  340. data/misc/openlayers/examples/markersTextLayer.html +41 -0
  341. data/misc/openlayers/examples/measure.html +203 -0
  342. data/misc/openlayers/examples/mobile-base.js +167 -0
  343. data/misc/openlayers/examples/mobile-drawing.html +52 -0
  344. data/misc/openlayers/examples/mobile-drawing.js +71 -0
  345. data/misc/openlayers/examples/mobile-jq.html +76 -0
  346. data/misc/openlayers/examples/mobile-jq.js +159 -0
  347. data/misc/openlayers/examples/mobile-layers.html +62 -0
  348. data/misc/openlayers/examples/mobile-layers.js +71 -0
  349. data/misc/openlayers/examples/mobile-navigation.html +52 -0
  350. data/misc/openlayers/examples/mobile-navigation.js +24 -0
  351. data/misc/openlayers/examples/mobile-sencha.html +184 -0
  352. data/misc/openlayers/examples/mobile-sencha.js +198 -0
  353. data/misc/openlayers/examples/mobile-wmts-vienna.css +205 -0
  354. data/misc/openlayers/examples/mobile-wmts-vienna.html +27 -0
  355. data/misc/openlayers/examples/mobile-wmts-vienna.js +281 -0
  356. data/misc/openlayers/examples/mobile.html +56 -0
  357. data/misc/openlayers/examples/mobile.js +39 -0
  358. data/misc/openlayers/examples/modify-feature.html +193 -0
  359. data/misc/openlayers/examples/mouse-position.html +67 -0
  360. data/misc/openlayers/examples/mousewheel-interval.html +63 -0
  361. data/misc/openlayers/examples/multiserver.html +52 -0
  362. data/misc/openlayers/examples/multitouch.html +28 -0
  363. data/misc/openlayers/examples/mvs.html +129 -0
  364. data/misc/openlayers/examples/navigation-control.html +44 -0
  365. data/misc/openlayers/examples/navigation-history.html +62 -0
  366. data/misc/openlayers/examples/navtoolbar-alwaysZoom.html +85 -0
  367. data/misc/openlayers/examples/navtoolbar-outsidemap.html +47 -0
  368. data/misc/openlayers/examples/navtoolbar.html +46 -0
  369. data/misc/openlayers/examples/offline-storage.html +44 -0
  370. data/misc/openlayers/examples/offline-storage.js +199 -0
  371. data/misc/openlayers/examples/openls.html +88 -0
  372. data/misc/openlayers/examples/ordering.html +221 -0
  373. data/misc/openlayers/examples/osm/sutton_coldfield.osm +662 -0
  374. data/misc/openlayers/examples/osm-google.html +32 -0
  375. data/misc/openlayers/examples/osm-google.js +23 -0
  376. data/misc/openlayers/examples/osm-grayscale.html +77 -0
  377. data/misc/openlayers/examples/osm-marker-popup.html +32 -0
  378. data/misc/openlayers/examples/osm-marker-popup.js +39 -0
  379. data/misc/openlayers/examples/osm.html +41 -0
  380. data/misc/openlayers/examples/overviewmap.html +120 -0
  381. data/misc/openlayers/examples/pan-zoom-panels.html +97 -0
  382. data/misc/openlayers/examples/panel.html +99 -0
  383. data/misc/openlayers/examples/point-grid.html +75 -0
  384. data/misc/openlayers/examples/point-grid.js +33 -0
  385. data/misc/openlayers/examples/point-track-markers.html +72 -0
  386. data/misc/openlayers/examples/polar-projections.html +41 -0
  387. data/misc/openlayers/examples/polar-projections.js +84 -0
  388. data/misc/openlayers/examples/popupMatrix.html +652 -0
  389. data/misc/openlayers/examples/proxy.cgi +81 -0
  390. data/misc/openlayers/examples/regular-polygons.html +177 -0
  391. data/misc/openlayers/examples/resize-features.html +101 -0
  392. data/misc/openlayers/examples/restricted-extent.html +77 -0
  393. data/misc/openlayers/examples/rotate-features.html +113 -0
  394. data/misc/openlayers/examples/select-feature-multilayer.html +129 -0
  395. data/misc/openlayers/examples/select-feature-openpopup.html +106 -0
  396. data/misc/openlayers/examples/select-feature.html +170 -0
  397. data/misc/openlayers/examples/setextent.html +39 -0
  398. data/misc/openlayers/examples/simplify-linestring.html +103 -0
  399. data/misc/openlayers/examples/simplify-linestring.js +599 -0
  400. data/misc/openlayers/examples/single-tile.html +33 -0
  401. data/misc/openlayers/examples/single-tile.js +20 -0
  402. data/misc/openlayers/examples/sld-parser.html +70 -0
  403. data/misc/openlayers/examples/sld.html +31 -0
  404. data/misc/openlayers/examples/sld.js +102 -0
  405. data/misc/openlayers/examples/snap-grid.html +78 -0
  406. data/misc/openlayers/examples/snap-grid.js +81 -0
  407. data/misc/openlayers/examples/snap-split.html +281 -0
  408. data/misc/openlayers/examples/snapping.html +324 -0
  409. data/misc/openlayers/examples/sos.html +189 -0
  410. data/misc/openlayers/examples/spherical-mercator.html +120 -0
  411. data/misc/openlayers/examples/split-feature.html +116 -0
  412. data/misc/openlayers/examples/strategy-bbox.html +106 -0
  413. data/misc/openlayers/examples/strategy-cluster-extended.html +125 -0
  414. data/misc/openlayers/examples/strategy-cluster-extended.js +247 -0
  415. data/misc/openlayers/examples/strategy-cluster-threshold.html +149 -0
  416. data/misc/openlayers/examples/strategy-cluster.html +238 -0
  417. data/misc/openlayers/examples/strategy-paging.html +115 -0
  418. data/misc/openlayers/examples/style-rules.html +49 -0
  419. data/misc/openlayers/examples/style-rules.js +99 -0
  420. data/misc/openlayers/examples/style.css +143 -0
  421. data/misc/openlayers/examples/style.mobile-jq.css +62 -0
  422. data/misc/openlayers/examples/stylemap.html +100 -0
  423. data/misc/openlayers/examples/styles-context.html +117 -0
  424. data/misc/openlayers/examples/styles-rotation.html +93 -0
  425. data/misc/openlayers/examples/styles-unique.html +109 -0
  426. data/misc/openlayers/examples/sundials-spherical-mercator.html +111 -0
  427. data/misc/openlayers/examples/sundials.html +107 -0
  428. data/misc/openlayers/examples/symbolizers-fill-stroke-graphic.html +141 -0
  429. data/misc/openlayers/examples/tasmania/TasmaniaCities.xml +40 -0
  430. data/misc/openlayers/examples/tasmania/TasmaniaRoads.xml +204 -0
  431. data/misc/openlayers/examples/tasmania/TasmaniaStateBoundaries.xml +92 -0
  432. data/misc/openlayers/examples/tasmania/TasmaniaWaterBodies.xml +162 -0
  433. data/misc/openlayers/examples/tasmania/sld-tasmania.xml +594 -0
  434. data/misc/openlayers/examples/teleportation.html +76 -0
  435. data/misc/openlayers/examples/textfile.txt +4 -0
  436. data/misc/openlayers/examples/tile-origin.html +38 -0
  437. data/misc/openlayers/examples/tile-origin.js +16 -0
  438. data/misc/openlayers/examples/tilecache.html +58 -0
  439. data/misc/openlayers/examples/tms.html +62 -0
  440. data/misc/openlayers/examples/transform-feature.html +123 -0
  441. data/misc/openlayers/examples/transition.html +70 -0
  442. data/misc/openlayers/examples/using-proj4js.html +109 -0
  443. data/misc/openlayers/examples/using-proj4js.js +132 -0
  444. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/0/0.json +1 -0
  445. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/0/1.json +1 -0
  446. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/0/2.json +1 -0
  447. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/1/0.json +1 -0
  448. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/1/1.json +1 -0
  449. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/1/2.json +1 -0
  450. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/2/0.json +1 -0
  451. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/2/1.json +1 -0
  452. data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/2/2.json +1 -0
  453. data/misc/openlayers/examples/utfgrid/geography-class/0/0/0.grid.json +1 -0
  454. data/misc/openlayers/examples/utfgrid/geography-class/1/0/0.grid.json +1 -0
  455. data/misc/openlayers/examples/utfgrid/geography-class/1/0/1.grid.json +1 -0
  456. data/misc/openlayers/examples/utfgrid/geography-class/1/1/0.grid.json +1 -0
  457. data/misc/openlayers/examples/utfgrid/geography-class/1/1/1.grid.json +1 -0
  458. data/misc/openlayers/examples/utfgrid/geography-class/2/0/0.grid.json +1 -0
  459. data/misc/openlayers/examples/utfgrid/geography-class/2/0/1.grid.json +1 -0
  460. data/misc/openlayers/examples/utfgrid/geography-class/2/0/2.grid.json +1 -0
  461. data/misc/openlayers/examples/utfgrid/geography-class/2/0/3.grid.json +1 -0
  462. data/misc/openlayers/examples/utfgrid/geography-class/2/1/0.grid.json +1 -0
  463. data/misc/openlayers/examples/utfgrid/geography-class/2/1/1.grid.json +1 -0
  464. data/misc/openlayers/examples/utfgrid/geography-class/2/1/2.grid.json +1 -0
  465. data/misc/openlayers/examples/utfgrid/geography-class/2/1/3.grid.json +1 -0
  466. data/misc/openlayers/examples/utfgrid/geography-class/2/2/0.grid.json +1 -0
  467. data/misc/openlayers/examples/utfgrid/geography-class/2/2/1.grid.json +1 -0
  468. data/misc/openlayers/examples/utfgrid/geography-class/2/2/2.grid.json +1 -0
  469. data/misc/openlayers/examples/utfgrid/geography-class/2/2/3.grid.json +1 -0
  470. data/misc/openlayers/examples/utfgrid/geography-class/2/3/0.grid.json +1 -0
  471. data/misc/openlayers/examples/utfgrid/geography-class/2/3/1.grid.json +1 -0
  472. data/misc/openlayers/examples/utfgrid/geography-class/2/3/2.grid.json +1 -0
  473. data/misc/openlayers/examples/utfgrid/geography-class/2/3/3.grid.json +1 -0
  474. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/0/0.json +1 -0
  475. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/0/1.json +1 -0
  476. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/0/2.json +1 -0
  477. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/1/0.json +1 -0
  478. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/1/1.json +1 -0
  479. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/1/2.json +1 -0
  480. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/2/0.json +1 -0
  481. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/2/1.json +1 -0
  482. data/misc/openlayers/examples/utfgrid/world_utfgrid/1/2/2.json +1 -0
  483. data/misc/openlayers/examples/utfgrid-geography-class.html +51 -0
  484. data/misc/openlayers/examples/utfgrid-geography-class.js +62 -0
  485. data/misc/openlayers/examples/utfgrid.html +64 -0
  486. data/misc/openlayers/examples/utfgrid.js +61 -0
  487. data/misc/openlayers/examples/utfgrid_twogrids.html +51 -0
  488. data/misc/openlayers/examples/utfgrid_twogrids.js +70 -0
  489. data/misc/openlayers/examples/vector-features-with-text.html +138 -0
  490. data/misc/openlayers/examples/vector-features.html +149 -0
  491. data/misc/openlayers/examples/vector-formats.html +240 -0
  492. data/misc/openlayers/examples/web-mercator.html +50 -0
  493. data/misc/openlayers/examples/web-mercator.js +37 -0
  494. data/misc/openlayers/examples/wfs-filter.html +35 -0
  495. data/misc/openlayers/examples/wfs-filter.js +48 -0
  496. data/misc/openlayers/examples/wfs-protocol-transactions.html +104 -0
  497. data/misc/openlayers/examples/wfs-protocol-transactions.js +106 -0
  498. data/misc/openlayers/examples/wfs-protocol.html +55 -0
  499. data/misc/openlayers/examples/wfs-reprojection.html +42 -0
  500. data/misc/openlayers/examples/wfs-reprojection.js +60 -0
  501. data/misc/openlayers/examples/wfs-snap-split.html +292 -0
  502. data/misc/openlayers/examples/wfs-spatial-filter.html +37 -0
  503. data/misc/openlayers/examples/wfs-spatial-filter.js +36 -0
  504. data/misc/openlayers/examples/wfs-states.html +34 -0
  505. data/misc/openlayers/examples/wfs-states.js +35 -0
  506. data/misc/openlayers/examples/wmc.html +150 -0
  507. data/misc/openlayers/examples/wms-long-url.html +44 -0
  508. data/misc/openlayers/examples/wms-long-url.js +26 -0
  509. data/misc/openlayers/examples/wms-untiled.html +48 -0
  510. data/misc/openlayers/examples/wms-v13.html +57 -0
  511. data/misc/openlayers/examples/wms.html +49 -0
  512. data/misc/openlayers/examples/wmst.html +63 -0
  513. data/misc/openlayers/examples/wmts-capabilities.html +43 -0
  514. data/misc/openlayers/examples/wmts-capabilities.js +58 -0
  515. data/misc/openlayers/examples/wmts-getfeatureinfo.html +74 -0
  516. data/misc/openlayers/examples/wmts-getfeatureinfo.js +94 -0
  517. data/misc/openlayers/examples/wmts.html +41 -0
  518. data/misc/openlayers/examples/wmts.js +35 -0
  519. data/misc/openlayers/examples/wps-client.html +31 -0
  520. data/misc/openlayers/examples/wps-client.js +75 -0
  521. data/misc/openlayers/examples/wps.html +89 -0
  522. data/misc/openlayers/examples/wps.js +353 -0
  523. data/misc/openlayers/examples/wrapDateLine.html +73 -0
  524. data/misc/openlayers/examples/xhtml.html +42 -0
  525. data/misc/openlayers/examples/xml/features.xml +2 -0
  526. data/misc/openlayers/examples/xml/georss-flickr.xml +730 -0
  527. data/misc/openlayers/examples/xml/track1.xml +98 -0
  528. data/misc/openlayers/examples/xml/wmsdescribelayer.xml +5 -0
  529. data/misc/openlayers/examples/xml.html +161 -0
  530. data/misc/openlayers/examples/xyz-esri.html +45 -0
  531. data/misc/openlayers/examples/yelp-georss.xml +147 -0
  532. data/misc/openlayers/examples/zoom.html +68 -0
  533. data/misc/openlayers/examples/zoom.js +34 -0
  534. data/misc/openlayers/examples/zoomLevels.html +81 -0
  535. data/misc/openlayers/examples/zoomify.html +70 -0
  536. data/misc/openlayers/img/blank.gif +0 -0
  537. data/misc/openlayers/img/cloud-popup-relative.png +0 -0
  538. data/misc/openlayers/img/drag-rectangle-off.png +0 -0
  539. data/misc/openlayers/img/drag-rectangle-on.png +0 -0
  540. data/misc/openlayers/img/east-mini.png +0 -0
  541. data/misc/openlayers/img/layer-switcher-maximize.png +0 -0
  542. data/misc/openlayers/img/layer-switcher-minimize.png +0 -0
  543. data/misc/openlayers/img/marker-blue.png +0 -0
  544. data/misc/openlayers/img/marker-gold.png +0 -0
  545. data/misc/openlayers/img/marker-green.png +0 -0
  546. data/misc/openlayers/img/marker.png +0 -0
  547. data/misc/openlayers/img/measuring-stick-off.png +0 -0
  548. data/misc/openlayers/img/measuring-stick-on.png +0 -0
  549. data/misc/openlayers/img/north-mini.png +0 -0
  550. data/misc/openlayers/img/panning-hand-off.png +0 -0
  551. data/misc/openlayers/img/panning-hand-on.png +0 -0
  552. data/misc/openlayers/img/slider.png +0 -0
  553. data/misc/openlayers/img/south-mini.png +0 -0
  554. data/misc/openlayers/img/west-mini.png +0 -0
  555. data/misc/openlayers/img/zoom-minus-mini.png +0 -0
  556. data/misc/openlayers/img/zoom-plus-mini.png +0 -0
  557. data/misc/openlayers/img/zoom-world-mini.png +0 -0
  558. data/misc/openlayers/img/zoombar.png +0 -0
  559. data/misc/openlayers/lib/Firebug/errorIcon.png +0 -0
  560. data/misc/openlayers/lib/Firebug/firebug.css +209 -0
  561. data/misc/openlayers/lib/Firebug/firebug.html +23 -0
  562. data/misc/openlayers/lib/Firebug/firebug.js +674 -0
  563. data/misc/openlayers/lib/Firebug/firebugx.js +10 -0
  564. data/misc/openlayers/lib/Firebug/infoIcon.png +0 -0
  565. data/misc/openlayers/lib/Firebug/license.txt +30 -0
  566. data/misc/openlayers/lib/Firebug/readme.txt +13 -0
  567. data/misc/openlayers/lib/Firebug/warningIcon.png +0 -0
  568. data/misc/openlayers/lib/OpenLayers/Animation.js +102 -0
  569. data/misc/openlayers/lib/OpenLayers/BaseTypes/Bounds.js +837 -0
  570. data/misc/openlayers/lib/OpenLayers/BaseTypes/Class.js +121 -0
  571. data/misc/openlayers/lib/OpenLayers/BaseTypes/Date.js +123 -0
  572. data/misc/openlayers/lib/OpenLayers/BaseTypes/Element.js +189 -0
  573. data/misc/openlayers/lib/OpenLayers/BaseTypes/LonLat.js +215 -0
  574. data/misc/openlayers/lib/OpenLayers/BaseTypes/Pixel.js +143 -0
  575. data/misc/openlayers/lib/OpenLayers/BaseTypes/Size.js +89 -0
  576. data/misc/openlayers/lib/OpenLayers/BaseTypes.js +463 -0
  577. data/misc/openlayers/lib/OpenLayers/Console.js +250 -0
  578. data/misc/openlayers/lib/OpenLayers/Control/ArgParser.js +182 -0
  579. data/misc/openlayers/lib/OpenLayers/Control/Attribution.js +104 -0
  580. data/misc/openlayers/lib/OpenLayers/Control/Button.js +44 -0
  581. data/misc/openlayers/lib/OpenLayers/Control/CacheRead.js +156 -0
  582. data/misc/openlayers/lib/OpenLayers/Control/CacheWrite.js +257 -0
  583. data/misc/openlayers/lib/OpenLayers/Control/DragFeature.js +366 -0
  584. data/misc/openlayers/lib/OpenLayers/Control/DragPan.js +156 -0
  585. data/misc/openlayers/lib/OpenLayers/Control/DrawFeature.js +229 -0
  586. data/misc/openlayers/lib/OpenLayers/Control/EditingToolbar.js +81 -0
  587. data/misc/openlayers/lib/OpenLayers/Control/Geolocate.js +192 -0
  588. data/misc/openlayers/lib/OpenLayers/Control/GetFeature.js +597 -0
  589. data/misc/openlayers/lib/OpenLayers/Control/Graticule.js +377 -0
  590. data/misc/openlayers/lib/OpenLayers/Control/KeyboardDefaults.js +142 -0
  591. data/misc/openlayers/lib/OpenLayers/Control/LayerSwitcher.js +521 -0
  592. data/misc/openlayers/lib/OpenLayers/Control/Measure.js +379 -0
  593. data/misc/openlayers/lib/OpenLayers/Control/ModifyFeature.js +835 -0
  594. data/misc/openlayers/lib/OpenLayers/Control/MousePosition.js +227 -0
  595. data/misc/openlayers/lib/OpenLayers/Control/NavToolbar.js +57 -0
  596. data/misc/openlayers/lib/OpenLayers/Control/Navigation.js +345 -0
  597. data/misc/openlayers/lib/OpenLayers/Control/NavigationHistory.js +423 -0
  598. data/misc/openlayers/lib/OpenLayers/Control/OverviewMap.js +750 -0
  599. data/misc/openlayers/lib/OpenLayers/Control/Pan.js +95 -0
  600. data/misc/openlayers/lib/OpenLayers/Control/PanPanel.js +73 -0
  601. data/misc/openlayers/lib/OpenLayers/Control/PanZoom.js +233 -0
  602. data/misc/openlayers/lib/OpenLayers/Control/PanZoomBar.js +408 -0
  603. data/misc/openlayers/lib/OpenLayers/Control/Panel.js +431 -0
  604. data/misc/openlayers/lib/OpenLayers/Control/Permalink.js +257 -0
  605. data/misc/openlayers/lib/OpenLayers/Control/PinchZoom.js +157 -0
  606. data/misc/openlayers/lib/OpenLayers/Control/SLDSelect.js +567 -0
  607. data/misc/openlayers/lib/OpenLayers/Control/Scale.js +100 -0
  608. data/misc/openlayers/lib/OpenLayers/Control/ScaleLine.js +220 -0
  609. data/misc/openlayers/lib/OpenLayers/Control/SelectFeature.js +643 -0
  610. data/misc/openlayers/lib/OpenLayers/Control/Snapping.js +560 -0
  611. data/misc/openlayers/lib/OpenLayers/Control/Split.js +494 -0
  612. data/misc/openlayers/lib/OpenLayers/Control/TouchNavigation.js +182 -0
  613. data/misc/openlayers/lib/OpenLayers/Control/TransformFeature.js +624 -0
  614. data/misc/openlayers/lib/OpenLayers/Control/UTFGrid.js +240 -0
  615. data/misc/openlayers/lib/OpenLayers/Control/WMSGetFeatureInfo.js +532 -0
  616. data/misc/openlayers/lib/OpenLayers/Control/WMTSGetFeatureInfo.js +400 -0
  617. data/misc/openlayers/lib/OpenLayers/Control/Zoom.js +138 -0
  618. data/misc/openlayers/lib/OpenLayers/Control/ZoomBox.js +129 -0
  619. data/misc/openlayers/lib/OpenLayers/Control/ZoomIn.js +29 -0
  620. data/misc/openlayers/lib/OpenLayers/Control/ZoomOut.js +29 -0
  621. data/misc/openlayers/lib/OpenLayers/Control/ZoomPanel.js +54 -0
  622. data/misc/openlayers/lib/OpenLayers/Control/ZoomToMaxExtent.js +35 -0
  623. data/misc/openlayers/lib/OpenLayers/Control.js +371 -0
  624. data/misc/openlayers/lib/OpenLayers/Events/buttonclick.js +206 -0
  625. data/misc/openlayers/lib/OpenLayers/Events/featureclick.js +321 -0
  626. data/misc/openlayers/lib/OpenLayers/Events.js +1170 -0
  627. data/misc/openlayers/lib/OpenLayers/Feature/Vector.js +510 -0
  628. data/misc/openlayers/lib/OpenLayers/Feature.js +225 -0
  629. data/misc/openlayers/lib/OpenLayers/Filter/Comparison.js +267 -0
  630. data/misc/openlayers/lib/OpenLayers/Filter/FeatureId.js +87 -0
  631. data/misc/openlayers/lib/OpenLayers/Filter/Function.js +49 -0
  632. data/misc/openlayers/lib/OpenLayers/Filter/Logical.js +121 -0
  633. data/misc/openlayers/lib/OpenLayers/Filter/Spatial.js +122 -0
  634. data/misc/openlayers/lib/OpenLayers/Filter.js +87 -0
  635. data/misc/openlayers/lib/OpenLayers/Format/ArcXML/Features.js +46 -0
  636. data/misc/openlayers/lib/OpenLayers/Format/ArcXML.js +1028 -0
  637. data/misc/openlayers/lib/OpenLayers/Format/Atom.js +712 -0
  638. data/misc/openlayers/lib/OpenLayers/Format/CQL.js +452 -0
  639. data/misc/openlayers/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js +240 -0
  640. data/misc/openlayers/lib/OpenLayers/Format/CSWGetDomain.js +34 -0
  641. data/misc/openlayers/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js +457 -0
  642. data/misc/openlayers/lib/OpenLayers/Format/CSWGetRecords.js +34 -0
  643. data/misc/openlayers/lib/OpenLayers/Format/Context.js +334 -0
  644. data/misc/openlayers/lib/OpenLayers/Format/EncodedPolyline.js +557 -0
  645. data/misc/openlayers/lib/OpenLayers/Format/Filter/v1.js +504 -0
  646. data/misc/openlayers/lib/OpenLayers/Format/Filter/v1_0_0.js +184 -0
  647. data/misc/openlayers/lib/OpenLayers/Format/Filter/v1_1_0.js +222 -0
  648. data/misc/openlayers/lib/OpenLayers/Format/Filter.js +53 -0
  649. data/misc/openlayers/lib/OpenLayers/Format/GML/Base.js +645 -0
  650. data/misc/openlayers/lib/OpenLayers/Format/GML/v2.js +193 -0
  651. data/misc/openlayers/lib/OpenLayers/Format/GML/v3.js +477 -0
  652. data/misc/openlayers/lib/OpenLayers/Format/GML.js +923 -0
  653. data/misc/openlayers/lib/OpenLayers/Format/GPX.js +385 -0
  654. data/misc/openlayers/lib/OpenLayers/Format/GeoJSON.js +716 -0
  655. data/misc/openlayers/lib/OpenLayers/Format/GeoRSS.js +409 -0
  656. data/misc/openlayers/lib/OpenLayers/Format/JSON.js +398 -0
  657. data/misc/openlayers/lib/OpenLayers/Format/KML.js +1517 -0
  658. data/misc/openlayers/lib/OpenLayers/Format/OGCExceptionReport.js +108 -0
  659. data/misc/openlayers/lib/OpenLayers/Format/OSM.js +465 -0
  660. data/misc/openlayers/lib/OpenLayers/Format/OWSCommon/v1.js +318 -0
  661. data/misc/openlayers/lib/OpenLayers/Format/OWSCommon/v1_0_0.js +62 -0
  662. data/misc/openlayers/lib/OpenLayers/Format/OWSCommon/v1_1_0.js +116 -0
  663. data/misc/openlayers/lib/OpenLayers/Format/OWSCommon.js +78 -0
  664. data/misc/openlayers/lib/OpenLayers/Format/OWSContext/v0_3_1.js +595 -0
  665. data/misc/openlayers/lib/OpenLayers/Format/OWSContext.js +86 -0
  666. data/misc/openlayers/lib/OpenLayers/Format/QueryStringFilter.js +183 -0
  667. data/misc/openlayers/lib/OpenLayers/Format/SLD/v1.js +1309 -0
  668. data/misc/openlayers/lib/OpenLayers/Format/SLD/v1_0_0.js +46 -0
  669. data/misc/openlayers/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js +149 -0
  670. data/misc/openlayers/lib/OpenLayers/Format/SLD.js +81 -0
  671. data/misc/openlayers/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js +158 -0
  672. data/misc/openlayers/lib/OpenLayers/Format/SOSCapabilities.js +48 -0
  673. data/misc/openlayers/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js +190 -0
  674. data/misc/openlayers/lib/OpenLayers/Format/SOSGetObservation.js +302 -0
  675. data/misc/openlayers/lib/OpenLayers/Format/Text.js +151 -0
  676. data/misc/openlayers/lib/OpenLayers/Format/WCSCapabilities/v1.js +55 -0
  677. data/misc/openlayers/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js +170 -0
  678. data/misc/openlayers/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js +109 -0
  679. data/misc/openlayers/lib/OpenLayers/Format/WCSCapabilities.js +47 -0
  680. data/misc/openlayers/lib/OpenLayers/Format/WCSGetCoverage.js +199 -0
  681. data/misc/openlayers/lib/OpenLayers/Format/WFS.js +223 -0
  682. data/misc/openlayers/lib/OpenLayers/Format/WFSCapabilities/v1.js +129 -0
  683. data/misc/openlayers/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js +115 -0
  684. data/misc/openlayers/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js +63 -0
  685. data/misc/openlayers/lib/OpenLayers/Format/WFSCapabilities.js +47 -0
  686. data/misc/openlayers/lib/OpenLayers/Format/WFSDescribeFeatureType.js +234 -0
  687. data/misc/openlayers/lib/OpenLayers/Format/WFST/v1.js +446 -0
  688. data/misc/openlayers/lib/OpenLayers/Format/WFST/v1_0_0.js +174 -0
  689. data/misc/openlayers/lib/OpenLayers/Format/WFST/v1_1_0.js +189 -0
  690. data/misc/openlayers/lib/OpenLayers/Format/WFST.js +34 -0
  691. data/misc/openlayers/lib/OpenLayers/Format/WKT.js +392 -0
  692. data/misc/openlayers/lib/OpenLayers/Format/WMC/v1.js +1267 -0
  693. data/misc/openlayers/lib/OpenLayers/Format/WMC/v1_0_0.js +104 -0
  694. data/misc/openlayers/lib/OpenLayers/Format/WMC/v1_1_0.js +149 -0
  695. data/misc/openlayers/lib/OpenLayers/Format/WMC.js +182 -0
  696. data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1.js +368 -0
  697. data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_1.js +122 -0
  698. data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js +57 -0
  699. data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js +60 -0
  700. data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js +85 -0
  701. data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_3.js +128 -0
  702. data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js +30 -0
  703. data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities.js +56 -0
  704. data/misc/openlayers/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js +122 -0
  705. data/misc/openlayers/lib/OpenLayers/Format/WMSDescribeLayer.js +53 -0
  706. data/misc/openlayers/lib/OpenLayers/Format/WMSGetFeatureInfo.js +296 -0
  707. data/misc/openlayers/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js +251 -0
  708. data/misc/openlayers/lib/OpenLayers/Format/WMTSCapabilities.js +230 -0
  709. data/misc/openlayers/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js +119 -0
  710. data/misc/openlayers/lib/OpenLayers/Format/WPSCapabilities.js +48 -0
  711. data/misc/openlayers/lib/OpenLayers/Format/WPSDescribeProcess.js +185 -0
  712. data/misc/openlayers/lib/OpenLayers/Format/WPSExecute.js +395 -0
  713. data/misc/openlayers/lib/OpenLayers/Format/XLS/v1.js +304 -0
  714. data/misc/openlayers/lib/OpenLayers/Format/XLS/v1_1_0.js +48 -0
  715. data/misc/openlayers/lib/OpenLayers/Format/XLS.js +68 -0
  716. data/misc/openlayers/lib/OpenLayers/Format/XML/VersionedOGC.js +212 -0
  717. data/misc/openlayers/lib/OpenLayers/Format/XML.js +897 -0
  718. data/misc/openlayers/lib/OpenLayers/Format.js +123 -0
  719. data/misc/openlayers/lib/OpenLayers/Geometry/Collection.js +563 -0
  720. data/misc/openlayers/lib/OpenLayers/Geometry/Curve.js +89 -0
  721. data/misc/openlayers/lib/OpenLayers/Geometry/LineString.js +646 -0
  722. data/misc/openlayers/lib/OpenLayers/Geometry/LinearRing.js +433 -0
  723. data/misc/openlayers/lib/OpenLayers/Geometry/MultiLineString.js +258 -0
  724. data/misc/openlayers/lib/OpenLayers/Geometry/MultiPoint.js +66 -0
  725. data/misc/openlayers/lib/OpenLayers/Geometry/MultiPolygon.js +42 -0
  726. data/misc/openlayers/lib/OpenLayers/Geometry/Point.js +283 -0
  727. data/misc/openlayers/lib/OpenLayers/Geometry/Polygon.js +255 -0
  728. data/misc/openlayers/lib/OpenLayers/Geometry.js +500 -0
  729. data/misc/openlayers/lib/OpenLayers/Handler/Box.js +244 -0
  730. data/misc/openlayers/lib/OpenLayers/Handler/Click.js +505 -0
  731. data/misc/openlayers/lib/OpenLayers/Handler/Drag.js +547 -0
  732. data/misc/openlayers/lib/OpenLayers/Handler/Feature.js +434 -0
  733. data/misc/openlayers/lib/OpenLayers/Handler/Hover.js +180 -0
  734. data/misc/openlayers/lib/OpenLayers/Handler/Keyboard.js +117 -0
  735. data/misc/openlayers/lib/OpenLayers/Handler/MouseWheel.js +264 -0
  736. data/misc/openlayers/lib/OpenLayers/Handler/Path.js +543 -0
  737. data/misc/openlayers/lib/OpenLayers/Handler/Pinch.js +239 -0
  738. data/misc/openlayers/lib/OpenLayers/Handler/Point.js +556 -0
  739. data/misc/openlayers/lib/OpenLayers/Handler/Polygon.js +305 -0
  740. data/misc/openlayers/lib/OpenLayers/Handler/RegularPolygon.js +429 -0
  741. data/misc/openlayers/lib/OpenLayers/Handler.js +325 -0
  742. data/misc/openlayers/lib/OpenLayers/Icon.js +243 -0
  743. data/misc/openlayers/lib/OpenLayers/Kinetic.js +178 -0
  744. data/misc/openlayers/lib/OpenLayers/Lang/ar.js +32 -0
  745. data/misc/openlayers/lib/OpenLayers/Lang/be-tarask.js +54 -0
  746. data/misc/openlayers/lib/OpenLayers/Lang/bg.js +25 -0
  747. data/misc/openlayers/lib/OpenLayers/Lang/br.js +53 -0
  748. data/misc/openlayers/lib/OpenLayers/Lang/ca.js +89 -0
  749. data/misc/openlayers/lib/OpenLayers/Lang/cs-CZ.js +45 -0
  750. data/misc/openlayers/lib/OpenLayers/Lang/da-DK.js +80 -0
  751. data/misc/openlayers/lib/OpenLayers/Lang/de.js +55 -0
  752. data/misc/openlayers/lib/OpenLayers/Lang/el.js +19 -0
  753. data/misc/openlayers/lib/OpenLayers/Lang/en-CA.js +21 -0
  754. data/misc/openlayers/lib/OpenLayers/Lang/en.js +89 -0
  755. data/misc/openlayers/lib/OpenLayers/Lang/es.js +90 -0
  756. data/misc/openlayers/lib/OpenLayers/Lang/fi.js +32 -0
  757. data/misc/openlayers/lib/OpenLayers/Lang/fr.js +53 -0
  758. data/misc/openlayers/lib/OpenLayers/Lang/fur.js +35 -0
  759. data/misc/openlayers/lib/OpenLayers/Lang/gl.js +53 -0
  760. data/misc/openlayers/lib/OpenLayers/Lang/gsw.js +53 -0
  761. data/misc/openlayers/lib/OpenLayers/Lang/hr.js +37 -0
  762. data/misc/openlayers/lib/OpenLayers/Lang/hsb.js +53 -0
  763. data/misc/openlayers/lib/OpenLayers/Lang/hu.js +54 -0
  764. data/misc/openlayers/lib/OpenLayers/Lang/ia.js +53 -0
  765. data/misc/openlayers/lib/OpenLayers/Lang/id.js +54 -0
  766. data/misc/openlayers/lib/OpenLayers/Lang/io.js +19 -0
  767. data/misc/openlayers/lib/OpenLayers/Lang/is.js +27 -0
  768. data/misc/openlayers/lib/OpenLayers/Lang/it.js +80 -0
  769. data/misc/openlayers/lib/OpenLayers/Lang/ja.js +54 -0
  770. data/misc/openlayers/lib/OpenLayers/Lang/km.js +23 -0
  771. data/misc/openlayers/lib/OpenLayers/Lang/ksh.js +53 -0
  772. data/misc/openlayers/lib/OpenLayers/Lang/lt.js +47 -0
  773. data/misc/openlayers/lib/OpenLayers/Lang/nb.js +82 -0
  774. data/misc/openlayers/lib/OpenLayers/Lang/nds.js +37 -0
  775. data/misc/openlayers/lib/OpenLayers/Lang/nl.js +53 -0
  776. data/misc/openlayers/lib/OpenLayers/Lang/nn.js +19 -0
  777. data/misc/openlayers/lib/OpenLayers/Lang/oc.js +53 -0
  778. data/misc/openlayers/lib/OpenLayers/Lang/pl.js +89 -0
  779. data/misc/openlayers/lib/OpenLayers/Lang/pt-BR.js +54 -0
  780. data/misc/openlayers/lib/OpenLayers/Lang/pt.js +55 -0
  781. data/misc/openlayers/lib/OpenLayers/Lang/ro.js +69 -0
  782. data/misc/openlayers/lib/OpenLayers/Lang/ru.js +56 -0
  783. data/misc/openlayers/lib/OpenLayers/Lang/sk.js +44 -0
  784. data/misc/openlayers/lib/OpenLayers/Lang/sv-SE.js +45 -0
  785. data/misc/openlayers/lib/OpenLayers/Lang/te.js +27 -0
  786. data/misc/openlayers/lib/OpenLayers/Lang/vi.js +53 -0
  787. data/misc/openlayers/lib/OpenLayers/Lang/zh-CN.js +80 -0
  788. data/misc/openlayers/lib/OpenLayers/Lang/zh-TW.js +81 -0
  789. data/misc/openlayers/lib/OpenLayers/Lang.js +134 -0
  790. data/misc/openlayers/lib/OpenLayers/Layer/ArcGIS93Rest.js +225 -0
  791. data/misc/openlayers/lib/OpenLayers/Layer/ArcGISCache.js +480 -0
  792. data/misc/openlayers/lib/OpenLayers/Layer/ArcIMS.js +425 -0
  793. data/misc/openlayers/lib/OpenLayers/Layer/Bing.js +333 -0
  794. data/misc/openlayers/lib/OpenLayers/Layer/Boxes.js +76 -0
  795. data/misc/openlayers/lib/OpenLayers/Layer/EventPane.js +441 -0
  796. data/misc/openlayers/lib/OpenLayers/Layer/FixedZoomLevels.js +319 -0
  797. data/misc/openlayers/lib/OpenLayers/Layer/GeoRSS.js +265 -0
  798. data/misc/openlayers/lib/OpenLayers/Layer/Google/v3.js +351 -0
  799. data/misc/openlayers/lib/OpenLayers/Layer/Google.js +809 -0
  800. data/misc/openlayers/lib/OpenLayers/Layer/Grid.js +1343 -0
  801. data/misc/openlayers/lib/OpenLayers/Layer/HTTPRequest.js +230 -0
  802. data/misc/openlayers/lib/OpenLayers/Layer/Image.js +259 -0
  803. data/misc/openlayers/lib/OpenLayers/Layer/KaMap.js +192 -0
  804. data/misc/openlayers/lib/OpenLayers/Layer/KaMapCache.js +143 -0
  805. data/misc/openlayers/lib/OpenLayers/Layer/MapGuide.js +443 -0
  806. data/misc/openlayers/lib/OpenLayers/Layer/MapServer.js +181 -0
  807. data/misc/openlayers/lib/OpenLayers/Layer/Markers.js +187 -0
  808. data/misc/openlayers/lib/OpenLayers/Layer/OSM.js +123 -0
  809. data/misc/openlayers/lib/OpenLayers/Layer/PointGrid.js +299 -0
  810. data/misc/openlayers/lib/OpenLayers/Layer/PointTrack.js +125 -0
  811. data/misc/openlayers/lib/OpenLayers/Layer/SphericalMercator.js +146 -0
  812. data/misc/openlayers/lib/OpenLayers/Layer/TMS.js +202 -0
  813. data/misc/openlayers/lib/OpenLayers/Layer/Text.js +267 -0
  814. data/misc/openlayers/lib/OpenLayers/Layer/TileCache.js +140 -0
  815. data/misc/openlayers/lib/OpenLayers/Layer/UTFGrid.js +184 -0
  816. data/misc/openlayers/lib/OpenLayers/Layer/Vector/RootContainer.js +154 -0
  817. data/misc/openlayers/lib/OpenLayers/Layer/Vector.js +1007 -0
  818. data/misc/openlayers/lib/OpenLayers/Layer/WMS.js +267 -0
  819. data/misc/openlayers/lib/OpenLayers/Layer/WMTS.js +510 -0
  820. data/misc/openlayers/lib/OpenLayers/Layer/WorldWind.js +105 -0
  821. data/misc/openlayers/lib/OpenLayers/Layer/XYZ.js +172 -0
  822. data/misc/openlayers/lib/OpenLayers/Layer/Zoomify.js +260 -0
  823. data/misc/openlayers/lib/OpenLayers/Layer.js +1377 -0
  824. data/misc/openlayers/lib/OpenLayers/Map.js +2867 -0
  825. data/misc/openlayers/lib/OpenLayers/Marker/Box.js +120 -0
  826. data/misc/openlayers/lib/OpenLayers/Marker.js +241 -0
  827. data/misc/openlayers/lib/OpenLayers/Popup/Anchored.js +195 -0
  828. data/misc/openlayers/lib/OpenLayers/Popup/Framed.js +343 -0
  829. data/misc/openlayers/lib/OpenLayers/Popup/FramedCloud.js +227 -0
  830. data/misc/openlayers/lib/OpenLayers/Popup.js +1065 -0
  831. data/misc/openlayers/lib/OpenLayers/Projection.js +322 -0
  832. data/misc/openlayers/lib/OpenLayers/Protocol/CSW/v2_0_2.js +127 -0
  833. data/misc/openlayers/lib/OpenLayers/Protocol/CSW.js +30 -0
  834. data/misc/openlayers/lib/OpenLayers/Protocol/HTTP.js +580 -0
  835. data/misc/openlayers/lib/OpenLayers/Protocol/SOS/v1_0_0.js +133 -0
  836. data/misc/openlayers/lib/OpenLayers/Protocol/SOS.js +33 -0
  837. data/misc/openlayers/lib/OpenLayers/Protocol/Script.js +377 -0
  838. data/misc/openlayers/lib/OpenLayers/Protocol/WFS/v1.js +453 -0
  839. data/misc/openlayers/lib/OpenLayers/Protocol/WFS/v1_0_0.js +44 -0
  840. data/misc/openlayers/lib/OpenLayers/Protocol/WFS/v1_1_0.js +68 -0
  841. data/misc/openlayers/lib/OpenLayers/Protocol/WFS.js +86 -0
  842. data/misc/openlayers/lib/OpenLayers/Protocol.js +291 -0
  843. data/misc/openlayers/lib/OpenLayers/Renderer/Canvas.js +906 -0
  844. data/misc/openlayers/lib/OpenLayers/Renderer/Elements.js +1053 -0
  845. data/misc/openlayers/lib/OpenLayers/Renderer/SVG.js +1012 -0
  846. data/misc/openlayers/lib/OpenLayers/Renderer/VML.js +985 -0
  847. data/misc/openlayers/lib/OpenLayers/Renderer.js +432 -0
  848. data/misc/openlayers/lib/OpenLayers/Request/XMLHttpRequest.js +458 -0
  849. data/misc/openlayers/lib/OpenLayers/Request.js +429 -0
  850. data/misc/openlayers/lib/OpenLayers/Rule.js +236 -0
  851. data/misc/openlayers/lib/OpenLayers/SingleFile.js +78 -0
  852. data/misc/openlayers/lib/OpenLayers/Spherical.js +67 -0
  853. data/misc/openlayers/lib/OpenLayers/Strategy/BBOX.js +290 -0
  854. data/misc/openlayers/lib/OpenLayers/Strategy/Cluster.js +283 -0
  855. data/misc/openlayers/lib/OpenLayers/Strategy/Filter.js +159 -0
  856. data/misc/openlayers/lib/OpenLayers/Strategy/Fixed.js +135 -0
  857. data/misc/openlayers/lib/OpenLayers/Strategy/Paging.js +233 -0
  858. data/misc/openlayers/lib/OpenLayers/Strategy/Refresh.js +141 -0
  859. data/misc/openlayers/lib/OpenLayers/Strategy/Save.js +231 -0
  860. data/misc/openlayers/lib/OpenLayers/Strategy.js +121 -0
  861. data/misc/openlayers/lib/OpenLayers/Style.js +448 -0
  862. data/misc/openlayers/lib/OpenLayers/Style2.js +112 -0
  863. data/misc/openlayers/lib/OpenLayers/StyleMap.js +161 -0
  864. data/misc/openlayers/lib/OpenLayers/Symbolizer/Line.js +74 -0
  865. data/misc/openlayers/lib/OpenLayers/Symbolizer/Point.js +157 -0
  866. data/misc/openlayers/lib/OpenLayers/Symbolizer/Polygon.js +88 -0
  867. data/misc/openlayers/lib/OpenLayers/Symbolizer/Raster.js +34 -0
  868. data/misc/openlayers/lib/OpenLayers/Symbolizer/Text.js +70 -0
  869. data/misc/openlayers/lib/OpenLayers/Symbolizer.js +55 -0
  870. data/misc/openlayers/lib/OpenLayers/Tile/Image/IFrame.js +233 -0
  871. data/misc/openlayers/lib/OpenLayers/Tile/Image.js +510 -0
  872. data/misc/openlayers/lib/OpenLayers/Tile/UTFGrid.js +252 -0
  873. data/misc/openlayers/lib/OpenLayers/Tile.js +292 -0
  874. data/misc/openlayers/lib/OpenLayers/TileManager.js +462 -0
  875. data/misc/openlayers/lib/OpenLayers/Tween.js +361 -0
  876. data/misc/openlayers/lib/OpenLayers/Util/vendorPrefix.js +131 -0
  877. data/misc/openlayers/lib/OpenLayers/Util.js +1773 -0
  878. data/misc/openlayers/lib/OpenLayers/WPSClient.js +223 -0
  879. data/misc/openlayers/lib/OpenLayers/WPSProcess.js +501 -0
  880. data/misc/openlayers/lib/OpenLayers.js +429 -0
  881. data/misc/openlayers/lib/Rico/Color.js +253 -0
  882. data/misc/openlayers/lib/Rico/Corner.js +339 -0
  883. data/misc/openlayers/lib/Rico/license.js +19 -0
  884. data/misc/openlayers/lib/deprecated.js +5842 -0
  885. data/misc/openlayers/license.txt +27 -0
  886. data/misc/openlayers/licenses/APACHE-2.0.txt +202 -0
  887. data/misc/openlayers/licenses/BSD-LICENSE.txt +28 -0
  888. data/misc/openlayers/licenses/MIT-LICENSE.txt +18 -0
  889. data/misc/openlayers/notes/2.12.md +391 -0
  890. data/misc/openlayers/notes/2.13.md +159 -0
  891. data/misc/openlayers/readme.md +79 -0
  892. data/misc/openlayers/tests/Animation.html +96 -0
  893. data/misc/openlayers/tests/BaseTypes/Bounds.html +738 -0
  894. data/misc/openlayers/tests/BaseTypes/Class.html +350 -0
  895. data/misc/openlayers/tests/BaseTypes/Date.html +191 -0
  896. data/misc/openlayers/tests/BaseTypes/Element.html +195 -0
  897. data/misc/openlayers/tests/BaseTypes/LonLat.html +241 -0
  898. data/misc/openlayers/tests/BaseTypes/Pixel.html +123 -0
  899. data/misc/openlayers/tests/BaseTypes/Size.html +67 -0
  900. data/misc/openlayers/tests/BaseTypes.html +387 -0
  901. data/misc/openlayers/tests/Console.html +39 -0
  902. data/misc/openlayers/tests/Control/ArgParser.html +26 -0
  903. data/misc/openlayers/tests/Control/Attribution.html +60 -0
  904. data/misc/openlayers/tests/Control/Button.html +17 -0
  905. data/misc/openlayers/tests/Control/CacheRead.html +108 -0
  906. data/misc/openlayers/tests/Control/CacheWrite.html +90 -0
  907. data/misc/openlayers/tests/Control/DragFeature.html +383 -0
  908. data/misc/openlayers/tests/Control/DragPan.html +104 -0
  909. data/misc/openlayers/tests/Control/DrawFeature.html +160 -0
  910. data/misc/openlayers/tests/Control/EditingToolbar.html +33 -0
  911. data/misc/openlayers/tests/Control/Geolocate.html +129 -0
  912. data/misc/openlayers/tests/Control/GetFeature.html +177 -0
  913. data/misc/openlayers/tests/Control/Graticule.html +66 -0
  914. data/misc/openlayers/tests/Control/KeyboardDefaults.html +173 -0
  915. data/misc/openlayers/tests/Control/LayerSwitcher.html +249 -0
  916. data/misc/openlayers/tests/Control/Measure.html +386 -0
  917. data/misc/openlayers/tests/Control/ModifyFeature.html +828 -0
  918. data/misc/openlayers/tests/Control/MousePosition.html +109 -0
  919. data/misc/openlayers/tests/Control/NavToolbar.html +45 -0
  920. data/misc/openlayers/tests/Control/Navigation.html +200 -0
  921. data/misc/openlayers/tests/Control/NavigationHistory.html +245 -0
  922. data/misc/openlayers/tests/Control/OverviewMap.html +266 -0
  923. data/misc/openlayers/tests/Control/Pan.html +201 -0
  924. data/misc/openlayers/tests/Control/PanPanel.html +61 -0
  925. data/misc/openlayers/tests/Control/PanZoom.html +244 -0
  926. data/misc/openlayers/tests/Control/PanZoomBar.html +245 -0
  927. data/misc/openlayers/tests/Control/Panel.html +382 -0
  928. data/misc/openlayers/tests/Control/Permalink.html +453 -0
  929. data/misc/openlayers/tests/Control/PinchZoom.html +134 -0
  930. data/misc/openlayers/tests/Control/SLDSelect.html +239 -0
  931. data/misc/openlayers/tests/Control/Scale.html +54 -0
  932. data/misc/openlayers/tests/Control/ScaleLine.html +187 -0
  933. data/misc/openlayers/tests/Control/SelectFeature.html +632 -0
  934. data/misc/openlayers/tests/Control/Snapping.html +448 -0
  935. data/misc/openlayers/tests/Control/Split.html +319 -0
  936. data/misc/openlayers/tests/Control/TouchNavigation.html +155 -0
  937. data/misc/openlayers/tests/Control/TransformFeature.html +129 -0
  938. data/misc/openlayers/tests/Control/UTFGrid.html +120 -0
  939. data/misc/openlayers/tests/Control/WMSGetFeatureInfo.html +644 -0
  940. data/misc/openlayers/tests/Control/WMTSGetFeatureInfo.html +334 -0
  941. data/misc/openlayers/tests/Control/Zoom.html +83 -0
  942. data/misc/openlayers/tests/Control/ZoomBox.html +54 -0
  943. data/misc/openlayers/tests/Control/ZoomIn.html +101 -0
  944. data/misc/openlayers/tests/Control/ZoomOut.html +100 -0
  945. data/misc/openlayers/tests/Control/ZoomToMaxExtent.html +102 -0
  946. data/misc/openlayers/tests/Control.html +107 -0
  947. data/misc/openlayers/tests/Events/buttonclick.html +214 -0
  948. data/misc/openlayers/tests/Events/featureclick.html +91 -0
  949. data/misc/openlayers/tests/Events.html +487 -0
  950. data/misc/openlayers/tests/Extras.html +21 -0
  951. data/misc/openlayers/tests/Feature/Vector.html +170 -0
  952. data/misc/openlayers/tests/Feature.html +205 -0
  953. data/misc/openlayers/tests/Filter/Comparison.html +373 -0
  954. data/misc/openlayers/tests/Filter/FeatureId.html +67 -0
  955. data/misc/openlayers/tests/Filter/Logical.html +144 -0
  956. data/misc/openlayers/tests/Filter/Spatial.html +112 -0
  957. data/misc/openlayers/tests/Filter.html +31 -0
  958. data/misc/openlayers/tests/Format/ArcXML/Features.html +69 -0
  959. data/misc/openlayers/tests/Format/ArcXML.html +277 -0
  960. data/misc/openlayers/tests/Format/Atom.html +450 -0
  961. data/misc/openlayers/tests/Format/CQL.html +364 -0
  962. data/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html +56 -0
  963. data/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.js +18 -0
  964. data/misc/openlayers/tests/Format/CSWGetDomain.html +23 -0
  965. data/misc/openlayers/tests/Format/CSWGetRecords/v2_0_2.html +88 -0
  966. data/misc/openlayers/tests/Format/CSWGetRecords/v2_0_2.js +50 -0
  967. data/misc/openlayers/tests/Format/CSWGetRecords.html +23 -0
  968. data/misc/openlayers/tests/Format/EncodedPolyline.html +372 -0
  969. data/misc/openlayers/tests/Format/Filter/v1.html +404 -0
  970. data/misc/openlayers/tests/Format/Filter/v1_0_0.html +295 -0
  971. data/misc/openlayers/tests/Format/Filter/v1_1_0.html +402 -0
  972. data/misc/openlayers/tests/Format/Filter.html +21 -0
  973. data/misc/openlayers/tests/Format/GML/cases.js +232 -0
  974. data/misc/openlayers/tests/Format/GML/v2.html +684 -0
  975. data/misc/openlayers/tests/Format/GML/v3.html +828 -0
  976. data/misc/openlayers/tests/Format/GML.html +462 -0
  977. data/misc/openlayers/tests/Format/GPX.html +179 -0
  978. data/misc/openlayers/tests/Format/GeoJSON.html +468 -0
  979. data/misc/openlayers/tests/Format/GeoRSS.html +122 -0
  980. data/misc/openlayers/tests/Format/JSON.html +53 -0
  981. data/misc/openlayers/tests/Format/KML.html +1437 -0
  982. data/misc/openlayers/tests/Format/OGCExceptionReport.html +100 -0
  983. data/misc/openlayers/tests/Format/OSM.html +115 -0
  984. data/misc/openlayers/tests/Format/OWSCommon/v1_0_0.html +34 -0
  985. data/misc/openlayers/tests/Format/OWSCommon/v1_1_0.html +34 -0
  986. data/misc/openlayers/tests/Format/OWSContext/v0_3_1.html +278 -0
  987. data/misc/openlayers/tests/Format/QueryStringFilter.html +306 -0
  988. data/misc/openlayers/tests/Format/SLD/v1_0_0.html +1028 -0
  989. data/misc/openlayers/tests/Format/SLD/v1_0_0_GeoServer.html +228 -0
  990. data/misc/openlayers/tests/Format/SLD.html +36 -0
  991. data/misc/openlayers/tests/Format/SOSCapabilities/v1_0_0.html +80 -0
  992. data/misc/openlayers/tests/Format/SOSCapabilities/v1_0_0.js +484 -0
  993. data/misc/openlayers/tests/Format/SOSGetFeatureOfInterest.html +80 -0
  994. data/misc/openlayers/tests/Format/SOSGetObservation.html +183 -0
  995. data/misc/openlayers/tests/Format/Text.html +49 -0
  996. data/misc/openlayers/tests/Format/WCSCapabilities/v1.html +87 -0
  997. data/misc/openlayers/tests/Format/WCSCapabilities.html +43 -0
  998. data/misc/openlayers/tests/Format/WCSGetCoverage.html +80 -0
  999. data/misc/openlayers/tests/Format/WFS.html +81 -0
  1000. data/misc/openlayers/tests/Format/WFSCapabilities/v1.html +179 -0
  1001. data/misc/openlayers/tests/Format/WFSCapabilities.html +43 -0
  1002. data/misc/openlayers/tests/Format/WFSDescribeFeatureType.html +436 -0
  1003. data/misc/openlayers/tests/Format/WFST/v1.html +455 -0
  1004. data/misc/openlayers/tests/Format/WFST/v1_0_0.html +135 -0
  1005. data/misc/openlayers/tests/Format/WFST/v1_1_0.html +236 -0
  1006. data/misc/openlayers/tests/Format/WFST.html +23 -0
  1007. data/misc/openlayers/tests/Format/WKT.html +297 -0
  1008. data/misc/openlayers/tests/Format/WMC/v1.html +266 -0
  1009. data/misc/openlayers/tests/Format/WMC/v1_1_0.html +86 -0
  1010. data/misc/openlayers/tests/Format/WMC.html +315 -0
  1011. data/misc/openlayers/tests/Format/WMSCapabilities/v1_1_1.html +5209 -0
  1012. data/misc/openlayers/tests/Format/WMSCapabilities/v1_1_1_WMSC.html +348 -0
  1013. data/misc/openlayers/tests/Format/WMSCapabilities/v1_3_0.html +614 -0
  1014. data/misc/openlayers/tests/Format/WMSCapabilities.html +20 -0
  1015. data/misc/openlayers/tests/Format/WMSDescribeLayer.html +65 -0
  1016. data/misc/openlayers/tests/Format/WMSGetFeatureInfo.html +319 -0
  1017. data/misc/openlayers/tests/Format/WMTSCapabilities/v1_0_0.html +1042 -0
  1018. data/misc/openlayers/tests/Format/WMTSCapabilities.html +20 -0
  1019. data/misc/openlayers/tests/Format/WPSCapabilities/v1_0_0.html +30 -0
  1020. data/misc/openlayers/tests/Format/WPSCapabilities/v1_0_0.js +112 -0
  1021. data/misc/openlayers/tests/Format/WPSDescribeProcess.html +206 -0
  1022. data/misc/openlayers/tests/Format/WPSExecute.html +549 -0
  1023. data/misc/openlayers/tests/Format/XLS/v1_1_0.html +98 -0
  1024. data/misc/openlayers/tests/Format/XML/VersionedOGC.html +51 -0
  1025. data/misc/openlayers/tests/Format/XML.html +900 -0
  1026. data/misc/openlayers/tests/Format.html +23 -0
  1027. data/misc/openlayers/tests/Geometry/Collection.html +431 -0
  1028. data/misc/openlayers/tests/Geometry/Curve.html +157 -0
  1029. data/misc/openlayers/tests/Geometry/LineString.html +443 -0
  1030. data/misc/openlayers/tests/Geometry/LinearRing.html +362 -0
  1031. data/misc/openlayers/tests/Geometry/MultiLineString.html +267 -0
  1032. data/misc/openlayers/tests/Geometry/MultiPoint.html +130 -0
  1033. data/misc/openlayers/tests/Geometry/MultiPolygon.html +34 -0
  1034. data/misc/openlayers/tests/Geometry/Point.html +244 -0
  1035. data/misc/openlayers/tests/Geometry/Polygon.html +420 -0
  1036. data/misc/openlayers/tests/Geometry.html +356 -0
  1037. data/misc/openlayers/tests/Handler/Box.html +106 -0
  1038. data/misc/openlayers/tests/Handler/Click.html +735 -0
  1039. data/misc/openlayers/tests/Handler/Drag.html +603 -0
  1040. data/misc/openlayers/tests/Handler/Feature.html +698 -0
  1041. data/misc/openlayers/tests/Handler/Hover.html +136 -0
  1042. data/misc/openlayers/tests/Handler/Keyboard.html +150 -0
  1043. data/misc/openlayers/tests/Handler/MouseWheel.html +182 -0
  1044. data/misc/openlayers/tests/Handler/Path.html +1464 -0
  1045. data/misc/openlayers/tests/Handler/Pinch.html +285 -0
  1046. data/misc/openlayers/tests/Handler/Point.html +600 -0
  1047. data/misc/openlayers/tests/Handler/Polygon.html +1161 -0
  1048. data/misc/openlayers/tests/Handler/RegularPolygon.html +235 -0
  1049. data/misc/openlayers/tests/Handler.html +265 -0
  1050. data/misc/openlayers/tests/Icon.html +68 -0
  1051. data/misc/openlayers/tests/Kinetic.html +132 -0
  1052. data/misc/openlayers/tests/Lang.html +106 -0
  1053. data/misc/openlayers/tests/Layer/ArcGIS93Rest.html +324 -0
  1054. data/misc/openlayers/tests/Layer/ArcGISCache.html +256 -0
  1055. data/misc/openlayers/tests/Layer/ArcGISCache.json +334 -0
  1056. data/misc/openlayers/tests/Layer/ArcIMS.html +123 -0
  1057. data/misc/openlayers/tests/Layer/Bing.html +200 -0
  1058. data/misc/openlayers/tests/Layer/EventPane.html +172 -0
  1059. data/misc/openlayers/tests/Layer/FixedZoomLevels.html +137 -0
  1060. data/misc/openlayers/tests/Layer/GeoRSS.html +210 -0
  1061. data/misc/openlayers/tests/Layer/Google/v3.html +337 -0
  1062. data/misc/openlayers/tests/Layer/Google.html +369 -0
  1063. data/misc/openlayers/tests/Layer/Grid.html +1593 -0
  1064. data/misc/openlayers/tests/Layer/HTTPRequest.html +229 -0
  1065. data/misc/openlayers/tests/Layer/Image.html +164 -0
  1066. data/misc/openlayers/tests/Layer/KaMap.html +287 -0
  1067. data/misc/openlayers/tests/Layer/MapGuide.html +177 -0
  1068. data/misc/openlayers/tests/Layer/MapServer.html +238 -0
  1069. data/misc/openlayers/tests/Layer/Markers.html +156 -0
  1070. data/misc/openlayers/tests/Layer/OSM.html +16 -0
  1071. data/misc/openlayers/tests/Layer/PointGrid.html +232 -0
  1072. data/misc/openlayers/tests/Layer/PointTrack.html +79 -0
  1073. data/misc/openlayers/tests/Layer/SphericalMercator.html +126 -0
  1074. data/misc/openlayers/tests/Layer/TMS.html +262 -0
  1075. data/misc/openlayers/tests/Layer/Text.html +211 -0
  1076. data/misc/openlayers/tests/Layer/TileCache.html +203 -0
  1077. data/misc/openlayers/tests/Layer/UTFGrid.html +131 -0
  1078. data/misc/openlayers/tests/Layer/Vector/RootContainer.html +63 -0
  1079. data/misc/openlayers/tests/Layer/Vector.html +879 -0
  1080. data/misc/openlayers/tests/Layer/WMS.html +583 -0
  1081. data/misc/openlayers/tests/Layer/WMTS.html +1491 -0
  1082. data/misc/openlayers/tests/Layer/WrapDateLine.html +188 -0
  1083. data/misc/openlayers/tests/Layer/XYZ.html +266 -0
  1084. data/misc/openlayers/tests/Layer/atom-1.0.xml +34 -0
  1085. data/misc/openlayers/tests/Layer/data_Layer_Text_textfile.txt +3 -0
  1086. data/misc/openlayers/tests/Layer/data_Layer_Text_textfile_2.txt +3 -0
  1087. data/misc/openlayers/tests/Layer/data_Layer_Text_textfile_overflow.txt +3 -0
  1088. data/misc/openlayers/tests/Layer/georss.txt +378 -0
  1089. data/misc/openlayers/tests/Layer.html +910 -0
  1090. data/misc/openlayers/tests/Map.html +2255 -0
  1091. data/misc/openlayers/tests/Marker/Box.html +183 -0
  1092. data/misc/openlayers/tests/Marker.html +163 -0
  1093. data/misc/openlayers/tests/OLLoader.js +26 -0
  1094. data/misc/openlayers/tests/OpenLayers1.html +18 -0
  1095. data/misc/openlayers/tests/OpenLayers2.html +19 -0
  1096. data/misc/openlayers/tests/OpenLayers3.html +19 -0
  1097. data/misc/openlayers/tests/OpenLayers4.html +18 -0
  1098. data/misc/openlayers/tests/OpenLayersJsFiles.html +27 -0
  1099. data/misc/openlayers/tests/Popup/Anchored.html +37 -0
  1100. data/misc/openlayers/tests/Popup/FramedCloud.html +18 -0
  1101. data/misc/openlayers/tests/Popup.html +219 -0
  1102. data/misc/openlayers/tests/Projection.html +87 -0
  1103. data/misc/openlayers/tests/Protocol/CSW.html +90 -0
  1104. data/misc/openlayers/tests/Protocol/HTTP.html +842 -0
  1105. data/misc/openlayers/tests/Protocol/SOS.html +57 -0
  1106. data/misc/openlayers/tests/Protocol/Script.html +282 -0
  1107. data/misc/openlayers/tests/Protocol/WFS.html +471 -0
  1108. data/misc/openlayers/tests/Protocol.html +63 -0
  1109. data/misc/openlayers/tests/README.txt +16 -0
  1110. data/misc/openlayers/tests/Renderer/Canvas.html +501 -0
  1111. data/misc/openlayers/tests/Renderer/Elements.html +651 -0
  1112. data/misc/openlayers/tests/Renderer/SVG.html +441 -0
  1113. data/misc/openlayers/tests/Renderer/VML.html +454 -0
  1114. data/misc/openlayers/tests/Renderer.html +96 -0
  1115. data/misc/openlayers/tests/Request/XMLHttpRequest.html +59 -0
  1116. data/misc/openlayers/tests/Request.html +524 -0
  1117. data/misc/openlayers/tests/Rule.html +123 -0
  1118. data/misc/openlayers/tests/SingleFile1.html +15 -0
  1119. data/misc/openlayers/tests/SingleFile2.html +15 -0
  1120. data/misc/openlayers/tests/SingleFile3.html +15 -0
  1121. data/misc/openlayers/tests/Strategy/BBOX.html +361 -0
  1122. data/misc/openlayers/tests/Strategy/Cluster.html +148 -0
  1123. data/misc/openlayers/tests/Strategy/Filter.html +135 -0
  1124. data/misc/openlayers/tests/Strategy/Fixed.html +253 -0
  1125. data/misc/openlayers/tests/Strategy/Paging.html +113 -0
  1126. data/misc/openlayers/tests/Strategy/Refresh.html +177 -0
  1127. data/misc/openlayers/tests/Strategy/Save.html +127 -0
  1128. data/misc/openlayers/tests/Strategy.html +94 -0
  1129. data/misc/openlayers/tests/Style.html +426 -0
  1130. data/misc/openlayers/tests/Style2.html +56 -0
  1131. data/misc/openlayers/tests/StyleMap.html +44 -0
  1132. data/misc/openlayers/tests/Symbolizer/Line.html +42 -0
  1133. data/misc/openlayers/tests/Symbolizer/Point.html +52 -0
  1134. data/misc/openlayers/tests/Symbolizer/Polygon.html +44 -0
  1135. data/misc/openlayers/tests/Symbolizer/Raster.html +32 -0
  1136. data/misc/openlayers/tests/Symbolizer/Text.html +42 -0
  1137. data/misc/openlayers/tests/Symbolizer.html +31 -0
  1138. data/misc/openlayers/tests/Test.AnotherWay.baseadditions.js +191 -0
  1139. data/misc/openlayers/tests/Test.AnotherWay.css +243 -0
  1140. data/misc/openlayers/tests/Test.AnotherWay.geom_eq.js +139 -0
  1141. data/misc/openlayers/tests/Test.AnotherWay.js +2498 -0
  1142. data/misc/openlayers/tests/Test.AnotherWay.xml_eq.js +311 -0
  1143. data/misc/openlayers/tests/Tile/Image/IFrame.html +183 -0
  1144. data/misc/openlayers/tests/Tile/Image.html +490 -0
  1145. data/misc/openlayers/tests/Tile/UTFGrid.html +306 -0
  1146. data/misc/openlayers/tests/Tile.html +130 -0
  1147. data/misc/openlayers/tests/TileManager.html +137 -0
  1148. data/misc/openlayers/tests/Tween.html +116 -0
  1149. data/misc/openlayers/tests/Util/vendorPrefix.html +117 -0
  1150. data/misc/openlayers/tests/Util.html +1180 -0
  1151. data/misc/openlayers/tests/Util_common.js +64 -0
  1152. data/misc/openlayers/tests/Util_w3c.html +35 -0
  1153. data/misc/openlayers/tests/WPSClient.html +108 -0
  1154. data/misc/openlayers/tests/WPSProcess.html +188 -0
  1155. data/misc/openlayers/tests/atom-1.0.xml +34 -0
  1156. data/misc/openlayers/tests/auto-tests.html +2447 -0
  1157. data/misc/openlayers/tests/data/geos_wkt_intersects.js +495 -0
  1158. data/misc/openlayers/tests/data/osm.js +14 -0
  1159. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/0/0.json +1 -0
  1160. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/0/1.json +1 -0
  1161. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/0/2.json +1 -0
  1162. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/1/0.json +1 -0
  1163. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/1/1.json +1 -0
  1164. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/1/2.json +1 -0
  1165. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/2/0.json +1 -0
  1166. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/2/1.json +1 -0
  1167. data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/2/2.json +1 -0
  1168. data/misc/openlayers/tests/data/utfgrid/demo-1.1.json +1 -0
  1169. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/0/0.json +1 -0
  1170. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/0/1.json +1 -0
  1171. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/0/2.json +1 -0
  1172. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/1/0.json +1 -0
  1173. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/1/1.json +1 -0
  1174. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/1/2.json +1 -0
  1175. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/2/0.json +1 -0
  1176. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/2/1.json +1 -0
  1177. data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/2/2.json +1 -0
  1178. data/misc/openlayers/tests/data_Layer_Text_textfile.txt +3 -0
  1179. data/misc/openlayers/tests/data_Layer_Text_textfile_2.txt +3 -0
  1180. data/misc/openlayers/tests/data_Layer_Text_textfile_overflow.txt +3 -0
  1181. data/misc/openlayers/tests/deprecated/Ajax.html +28 -0
  1182. data/misc/openlayers/tests/deprecated/BaseTypes/Class.html +142 -0
  1183. data/misc/openlayers/tests/deprecated/BaseTypes/Element.html +56 -0
  1184. data/misc/openlayers/tests/deprecated/Control/MouseToolbar.html +60 -0
  1185. data/misc/openlayers/tests/deprecated/Geometry/Rectangle.html +77 -0
  1186. data/misc/openlayers/tests/deprecated/Layer/GML.html +61 -0
  1187. data/misc/openlayers/tests/deprecated/Layer/MapServer/Untiled.html +158 -0
  1188. data/misc/openlayers/tests/deprecated/Layer/MapServer.html +59 -0
  1189. data/misc/openlayers/tests/deprecated/Layer/WFS.html +178 -0
  1190. data/misc/openlayers/tests/deprecated/Layer/WMS/Post.html +89 -0
  1191. data/misc/openlayers/tests/deprecated/Layer/WMS.html +60 -0
  1192. data/misc/openlayers/tests/deprecated/Layer/Yahoo.html +121 -0
  1193. data/misc/openlayers/tests/deprecated/Layer/mice.xml +156 -0
  1194. data/misc/openlayers/tests/deprecated/Layer/owls.xml +156 -0
  1195. data/misc/openlayers/tests/deprecated/Popup/AnchoredBubble.html +61 -0
  1196. data/misc/openlayers/tests/deprecated/Protocol/SQL/Gears.html +474 -0
  1197. data/misc/openlayers/tests/deprecated/Protocol/SQL.html +24 -0
  1198. data/misc/openlayers/tests/deprecated/Renderer/SVG2.html +399 -0
  1199. data/misc/openlayers/tests/deprecated/Tile/WFS.html +215 -0
  1200. data/misc/openlayers/tests/deprecated/Util.html +20 -0
  1201. data/misc/openlayers/tests/georss.txt +378 -0
  1202. data/misc/openlayers/tests/grid_inittiles.html +30 -0
  1203. data/misc/openlayers/tests/index.html +6 -0
  1204. data/misc/openlayers/tests/list-tests.html +260 -0
  1205. data/misc/openlayers/tests/manual/ajax.html +49 -0
  1206. data/misc/openlayers/tests/manual/ajax.txt +1 -0
  1207. data/misc/openlayers/tests/manual/alloverlays-mixed.html +55 -0
  1208. data/misc/openlayers/tests/manual/arcims-2117.html +103 -0
  1209. data/misc/openlayers/tests/manual/arkansas.rss +9 -0
  1210. data/misc/openlayers/tests/manual/big-georss.html +33 -0
  1211. data/misc/openlayers/tests/manual/box-quirks.html +52 -0
  1212. data/misc/openlayers/tests/manual/box-strict.html +46 -0
  1213. data/misc/openlayers/tests/manual/clip-features-svg.html +128 -0
  1214. data/misc/openlayers/tests/manual/dateline-sketch.html +66 -0
  1215. data/misc/openlayers/tests/manual/dateline-smallextent.html +61 -0
  1216. data/misc/openlayers/tests/manual/draw-feature.html +73 -0
  1217. data/misc/openlayers/tests/manual/feature-handler.html +126 -0
  1218. data/misc/openlayers/tests/manual/geodesic.html +160 -0
  1219. data/misc/openlayers/tests/manual/geojson-geomcoll-reprojection.html +74 -0
  1220. data/misc/openlayers/tests/manual/google-fullscreen-overlay.html +54 -0
  1221. data/misc/openlayers/tests/manual/google-panning.html +122 -0
  1222. data/misc/openlayers/tests/manual/google-resize.html +55 -0
  1223. data/misc/openlayers/tests/manual/google-tilt.html +37 -0
  1224. data/misc/openlayers/tests/manual/google-v3-resize.html +54 -0
  1225. data/misc/openlayers/tests/manual/loadend.html +73 -0
  1226. data/misc/openlayers/tests/manual/map-events.html +38 -0
  1227. data/misc/openlayers/tests/manual/memory/Marker-2258.html +60 -0
  1228. data/misc/openlayers/tests/manual/memory/PanZoom-2323.html +41 -0
  1229. data/misc/openlayers/tests/manual/memory/RemoveChild-2170.html +56 -0
  1230. data/misc/openlayers/tests/manual/memory/VML-2170.html +49 -0
  1231. data/misc/openlayers/tests/manual/multiple-google-layers.html +135 -0
  1232. data/misc/openlayers/tests/manual/overviewmap-projection.html +70 -0
  1233. data/misc/openlayers/tests/manual/page-position.html +103 -0
  1234. data/misc/openlayers/tests/manual/pan-redraw-svg.html +58 -0
  1235. data/misc/openlayers/tests/manual/popup-keepInMap.html +100 -0
  1236. data/misc/openlayers/tests/manual/reflow.html +59 -0
  1237. data/misc/openlayers/tests/manual/renderedDimensions.html +113 -0
  1238. data/misc/openlayers/tests/manual/select-feature-right-click.html +86 -0
  1239. data/misc/openlayers/tests/manual/select-feature.html +75 -0
  1240. data/misc/openlayers/tests/manual/tiles-loading.html +122 -0
  1241. data/misc/openlayers/tests/manual/tween.html +82 -0
  1242. data/misc/openlayers/tests/manual/vector-features-performance.html +149 -0
  1243. data/misc/openlayers/tests/manual/vector-layer-zindex.html +143 -0
  1244. data/misc/openlayers/tests/mice.xml +156 -0
  1245. data/misc/openlayers/tests/node.js/mockdom.js +104 -0
  1246. data/misc/openlayers/tests/node.js/node-tests.cfg +12 -0
  1247. data/misc/openlayers/tests/node.js/node.js +1 -0
  1248. data/misc/openlayers/tests/node.js/run-test.js +26 -0
  1249. data/misc/openlayers/tests/node.js/run.sh +10 -0
  1250. data/misc/openlayers/tests/owls.xml +156 -0
  1251. data/misc/openlayers/tests/run-tests.html +155 -0
  1252. data/misc/openlayers/tests/selenium/remotecontrol/config.cfg +48 -0
  1253. data/misc/openlayers/tests/selenium/remotecontrol/selenium.py +1846 -0
  1254. data/misc/openlayers/tests/selenium/remotecontrol/setup.txt +8 -0
  1255. data/misc/openlayers/tests/selenium/remotecontrol/test_ol.py +95 -0
  1256. data/misc/openlayers/tests/speed/geometry.html +43 -0
  1257. data/misc/openlayers/tests/speed/string_format.html +29 -0
  1258. data/misc/openlayers/tests/speed/vector-renderers.html +25 -0
  1259. data/misc/openlayers/tests/speed/vector-renderers.js +70 -0
  1260. data/misc/openlayers/tests/speed/wmc_speed.html +30 -0
  1261. data/misc/openlayers/tests/speed/wmscaps.html +52 -0
  1262. data/misc/openlayers/tests/speed/wmscaps.js +4956 -0
  1263. data/misc/openlayers/tests/speed/wmscaps.xml +4954 -0
  1264. data/misc/openlayers/tests/throws.js +82 -0
  1265. data/misc/openlayers/theme/default/google.css +9 -0
  1266. data/misc/openlayers/theme/default/google.tidy.css +1 -0
  1267. data/misc/openlayers/theme/default/ie6-style.css +10 -0
  1268. data/misc/openlayers/theme/default/ie6-style.tidy.css +1 -0
  1269. data/misc/openlayers/theme/default/img/add_point_off.png +0 -0
  1270. data/misc/openlayers/theme/default/img/add_point_on.png +0 -0
  1271. data/misc/openlayers/theme/default/img/blank.gif +0 -0
  1272. data/misc/openlayers/theme/default/img/close.gif +0 -0
  1273. data/misc/openlayers/theme/default/img/drag-rectangle-off.png +0 -0
  1274. data/misc/openlayers/theme/default/img/drag-rectangle-on.png +0 -0
  1275. data/misc/openlayers/theme/default/img/draw_line_off.png +0 -0
  1276. data/misc/openlayers/theme/default/img/draw_line_on.png +0 -0
  1277. data/misc/openlayers/theme/default/img/draw_point_off.png +0 -0
  1278. data/misc/openlayers/theme/default/img/draw_point_on.png +0 -0
  1279. data/misc/openlayers/theme/default/img/draw_polygon_off.png +0 -0
  1280. data/misc/openlayers/theme/default/img/draw_polygon_on.png +0 -0
  1281. data/misc/openlayers/theme/default/img/editing_tool_bar.png +0 -0
  1282. data/misc/openlayers/theme/default/img/move_feature_off.png +0 -0
  1283. data/misc/openlayers/theme/default/img/move_feature_on.png +0 -0
  1284. data/misc/openlayers/theme/default/img/navigation_history.png +0 -0
  1285. data/misc/openlayers/theme/default/img/overview_replacement.gif +0 -0
  1286. data/misc/openlayers/theme/default/img/pan-panel-NOALPHA.png +0 -0
  1287. data/misc/openlayers/theme/default/img/pan-panel.png +0 -0
  1288. data/misc/openlayers/theme/default/img/pan_off.png +0 -0
  1289. data/misc/openlayers/theme/default/img/pan_on.png +0 -0
  1290. data/misc/openlayers/theme/default/img/panning-hand-off.png +0 -0
  1291. data/misc/openlayers/theme/default/img/panning-hand-on.png +0 -0
  1292. data/misc/openlayers/theme/default/img/remove_point_off.png +0 -0
  1293. data/misc/openlayers/theme/default/img/remove_point_on.png +0 -0
  1294. data/misc/openlayers/theme/default/img/ruler.png +0 -0
  1295. data/misc/openlayers/theme/default/img/save_features_off.png +0 -0
  1296. data/misc/openlayers/theme/default/img/save_features_on.png +0 -0
  1297. data/misc/openlayers/theme/default/img/view_next_off.png +0 -0
  1298. data/misc/openlayers/theme/default/img/view_next_on.png +0 -0
  1299. data/misc/openlayers/theme/default/img/view_previous_off.png +0 -0
  1300. data/misc/openlayers/theme/default/img/view_previous_on.png +0 -0
  1301. data/misc/openlayers/theme/default/img/zoom-panel-NOALPHA.png +0 -0
  1302. data/misc/openlayers/theme/default/img/zoom-panel.png +0 -0
  1303. data/misc/openlayers/theme/default/style.css +516 -0
  1304. data/misc/openlayers/theme/default/style.mobile.css +70 -0
  1305. data/misc/openlayers/theme/default/style.mobile.tidy.css +1 -0
  1306. data/misc/openlayers/theme/default/style.tidy.css +1 -0
  1307. data/misc/openlayers/tools/BeautifulSoup.py +1767 -0
  1308. data/misc/openlayers/tools/README.txt +14 -0
  1309. data/misc/openlayers/tools/closure_library_jscompiler.py +71 -0
  1310. data/misc/openlayers/tools/closure_ws.py +28 -0
  1311. data/misc/openlayers/tools/exampleparser.py +251 -0
  1312. data/misc/openlayers/tools/jsmin.c +272 -0
  1313. data/misc/openlayers/tools/jsmin.py +216 -0
  1314. data/misc/openlayers/tools/mergejs.py +287 -0
  1315. data/misc/openlayers/tools/minimize.py +47 -0
  1316. data/misc/openlayers/tools/oldot.py +43 -0
  1317. data/misc/openlayers/tools/release.sh +71 -0
  1318. data/misc/openlayers/tools/shrinksafe.py +54 -0
  1319. data/misc/openlayers/tools/toposort.py +35 -0
  1320. data/misc/openlayers/tools/uglify_js.py +35 -0
  1321. data/misc/openlayers/tools/update_dev_dir.sh +103 -0
  1322. metadata +1320 -2
@@ -0,0 +1,75 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <title>Flot Examples: Canvas text</title>
6
+ <link href="../examples.css" rel="stylesheet" type="text/css">
7
+ <!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../excanvas.min.js"></script><![endif]-->
8
+ <script language="javascript" type="text/javascript" src="../../jquery.js"></script>
9
+ <script language="javascript" type="text/javascript" src="../../jquery.flot.js"></script>
10
+ <script language="javascript" type="text/javascript" src="../../jquery.flot.time.js"></script>
11
+ <script language="javascript" type="text/javascript" src="../../jquery.flot.canvas.js"></script>
12
+ <script type="text/javascript">
13
+
14
+ $(function() {
15
+
16
+ var oilPrices = [[1167692400000,61.05], [1167778800000,58.32], [1167865200000,57.35], [1167951600000,56.31], [1168210800000,55.55], [1168297200000,55.64], [1168383600000,54.02], [1168470000000,51.88], [1168556400000,52.99], [1168815600000,52.99], [1168902000000,51.21], [1168988400000,52.24], [1169074800000,50.48], [1169161200000,51.99], [1169420400000,51.13], [1169506800000,55.04], [1169593200000,55.37], [1169679600000,54.23], [1169766000000,55.42], [1170025200000,54.01], [1170111600000,56.97], [1170198000000,58.14], [1170284400000,58.14], [1170370800000,59.02], [1170630000000,58.74], [1170716400000,58.88], [1170802800000,57.71], [1170889200000,59.71], [1170975600000,59.89], [1171234800000,57.81], [1171321200000,59.06], [1171407600000,58.00], [1171494000000,57.99], [1171580400000,59.39], [1171839600000,59.39], [1171926000000,58.07], [1172012400000,60.07], [1172098800000,61.14], [1172444400000,61.39], [1172530800000,61.46], [1172617200000,61.79], [1172703600000,62.00], [1172790000000,60.07], [1173135600000,60.69], [1173222000000,61.82], [1173308400000,60.05], [1173654000000,58.91], [1173740400000,57.93], [1173826800000,58.16], [1173913200000,57.55], [1173999600000,57.11], [1174258800000,56.59], [1174345200000,59.61], [1174518000000,61.69], [1174604400000,62.28], [1174860000000,62.91], [1174946400000,62.93], [1175032800000,64.03], [1175119200000,66.03], [1175205600000,65.87], [1175464800000,64.64], [1175637600000,64.38], [1175724000000,64.28], [1175810400000,64.28], [1176069600000,61.51], [1176156000000,61.89], [1176242400000,62.01], [1176328800000,63.85], [1176415200000,63.63], [1176674400000,63.61], [1176760800000,63.10], [1176847200000,63.13], [1176933600000,61.83], [1177020000000,63.38], [1177279200000,64.58], [1177452000000,65.84], [1177538400000,65.06], [1177624800000,66.46], [1177884000000,64.40], [1178056800000,63.68], [1178143200000,63.19], [1178229600000,61.93], [1178488800000,61.47], [1178575200000,61.55], [1178748000000,61.81], [1178834400000,62.37], [1179093600000,62.46], [1179180000000,63.17], [1179266400000,62.55], [1179352800000,64.94], [1179698400000,66.27], [1179784800000,65.50], [1179871200000,65.77], [1179957600000,64.18], [1180044000000,65.20], [1180389600000,63.15], [1180476000000,63.49], [1180562400000,65.08], [1180908000000,66.30], [1180994400000,65.96], [1181167200000,66.93], [1181253600000,65.98], [1181599200000,65.35], [1181685600000,66.26], [1181858400000,68.00], [1182117600000,69.09], [1182204000000,69.10], [1182290400000,68.19], [1182376800000,68.19], [1182463200000,69.14], [1182722400000,68.19], [1182808800000,67.77], [1182895200000,68.97], [1182981600000,69.57], [1183068000000,70.68], [1183327200000,71.09], [1183413600000,70.92], [1183586400000,71.81], [1183672800000,72.81], [1183932000000,72.19], [1184018400000,72.56], [1184191200000,72.50], [1184277600000,74.15], [1184623200000,75.05], [1184796000000,75.92], [1184882400000,75.57], [1185141600000,74.89], [1185228000000,73.56], [1185314400000,75.57], [1185400800000,74.95], [1185487200000,76.83], [1185832800000,78.21], [1185919200000,76.53], [1186005600000,76.86], [1186092000000,76.00], [1186437600000,71.59], [1186696800000,71.47], [1186956000000,71.62], [1187042400000,71.00], [1187301600000,71.98], [1187560800000,71.12], [1187647200000,69.47], [1187733600000,69.26], [1187820000000,69.83], [1187906400000,71.09], [1188165600000,71.73], [1188338400000,73.36], [1188511200000,74.04], [1188856800000,76.30], [1189116000000,77.49], [1189461600000,78.23], [1189548000000,79.91], [1189634400000,80.09], [1189720800000,79.10], [1189980000000,80.57], [1190066400000,81.93], [1190239200000,83.32], [1190325600000,81.62], [1190584800000,80.95], [1190671200000,79.53], [1190757600000,80.30], [1190844000000,82.88], [1190930400000,81.66], [1191189600000,80.24], [1191276000000,80.05], [1191362400000,79.94], [1191448800000,81.44], [1191535200000,81.22], [1191794400000,79.02], [1191880800000,80.26], [1191967200000,80.30], [1192053600000,83.08], [1192140000000,83.69], [1192399200000,86.13], [1192485600000,87.61], [1192572000000,87.40], [1192658400000,89.47], [1192744800000,88.60], [1193004000000,87.56], [1193090400000,87.56], [1193176800000,87.10], [1193263200000,91.86], [1193612400000,93.53], [1193698800000,94.53], [1193871600000,95.93], [1194217200000,93.98], [1194303600000,96.37], [1194476400000,95.46], [1194562800000,96.32], [1195081200000,93.43], [1195167600000,95.10], [1195426800000,94.64], [1195513200000,95.10], [1196031600000,97.70], [1196118000000,94.42], [1196204400000,90.62], [1196290800000,91.01], [1196377200000,88.71], [1196636400000,88.32], [1196809200000,90.23], [1196982000000,88.28], [1197241200000,87.86], [1197327600000,90.02], [1197414000000,92.25], [1197586800000,90.63], [1197846000000,90.63], [1197932400000,90.49], [1198018800000,91.24], [1198105200000,91.06], [1198191600000,90.49], [1198710000000,96.62], [1198796400000,96.00], [1199142000000,99.62], [1199314800000,99.18], [1199401200000,95.09], [1199660400000,96.33], [1199833200000,95.67], [1200351600000,91.90], [1200438000000,90.84], [1200524400000,90.13], [1200610800000,90.57], [1200956400000,89.21], [1201042800000,86.99], [1201129200000,89.85], [1201474800000,90.99], [1201561200000,91.64], [1201647600000,92.33], [1201734000000,91.75], [1202079600000,90.02], [1202166000000,88.41], [1202252400000,87.14], [1202338800000,88.11], [1202425200000,91.77], [1202770800000,92.78], [1202857200000,93.27], [1202943600000,95.46], [1203030000000,95.46], [1203289200000,101.74], [1203462000000,98.81], [1203894000000,100.88], [1204066800000,99.64], [1204153200000,102.59], [1204239600000,101.84], [1204498800000,99.52], [1204585200000,99.52], [1204671600000,104.52], [1204758000000,105.47], [1204844400000,105.15], [1205103600000,108.75], [1205276400000,109.92], [1205362800000,110.33], [1205449200000,110.21], [1205708400000,105.68], [1205967600000,101.84], [1206313200000,100.86], [1206399600000,101.22], [1206486000000,105.90], [1206572400000,107.58], [1206658800000,105.62], [1206914400000,101.58], [1207000800000,100.98], [1207173600000,103.83], [1207260000000,106.23], [1207605600000,108.50], [1207778400000,110.11], [1207864800000,110.14], [1208210400000,113.79], [1208296800000,114.93], [1208383200000,114.86], [1208728800000,117.48], [1208815200000,118.30], [1208988000000,116.06], [1209074400000,118.52], [1209333600000,118.75], [1209420000000,113.46], [1209592800000,112.52], [1210024800000,121.84], [1210111200000,123.53], [1210197600000,123.69], [1210543200000,124.23], [1210629600000,125.80], [1210716000000,126.29], [1211148000000,127.05], [1211320800000,129.07], [1211493600000,132.19], [1211839200000,128.85], [1212357600000,127.76], [1212703200000,138.54], [1212962400000,136.80], [1213135200000,136.38], [1213308000000,134.86], [1213653600000,134.01], [1213740000000,136.68], [1213912800000,135.65], [1214172000000,134.62], [1214258400000,134.62], [1214344800000,134.62], [1214431200000,139.64], [1214517600000,140.21], [1214776800000,140.00], [1214863200000,140.97], [1214949600000,143.57], [1215036000000,145.29], [1215381600000,141.37], [1215468000000,136.04], [1215727200000,146.40], [1215986400000,145.18], [1216072800000,138.74], [1216159200000,134.60], [1216245600000,129.29], [1216332000000,130.65], [1216677600000,127.95], [1216850400000,127.95], [1217282400000,122.19], [1217455200000,124.08], [1217541600000,125.10], [1217800800000,121.41], [1217887200000,119.17], [1217973600000,118.58], [1218060000000,120.02], [1218405600000,114.45], [1218492000000,113.01], [1218578400000,116.00], [1218751200000,113.77], [1219010400000,112.87], [1219096800000,114.53], [1219269600000,114.98], [1219356000000,114.98], [1219701600000,116.27], [1219788000000,118.15], [1219874400000,115.59], [1219960800000,115.46], [1220306400000,109.71], [1220392800000,109.35], [1220565600000,106.23], [1220824800000,106.34]];
17
+
18
+ var exchangeRates = [[1167606000000,0.7580], [1167692400000,0.7580], [1167778800000,0.75470], [1167865200000,0.75490], [1167951600000,0.76130], [1168038000000,0.76550], [1168124400000,0.76930], [1168210800000,0.76940], [1168297200000,0.76880], [1168383600000,0.76780], [1168470000000,0.77080], [1168556400000,0.77270], [1168642800000,0.77490], [1168729200000,0.77410], [1168815600000,0.77410], [1168902000000,0.77320], [1168988400000,0.77270], [1169074800000,0.77370], [1169161200000,0.77240], [1169247600000,0.77120], [1169334000000,0.7720], [1169420400000,0.77210], [1169506800000,0.77170], [1169593200000,0.77040], [1169679600000,0.7690], [1169766000000,0.77110], [1169852400000,0.7740], [1169938800000,0.77450], [1170025200000,0.77450], [1170111600000,0.7740], [1170198000000,0.77160], [1170284400000,0.77130], [1170370800000,0.76780], [1170457200000,0.76880], [1170543600000,0.77180], [1170630000000,0.77180], [1170716400000,0.77280], [1170802800000,0.77290], [1170889200000,0.76980], [1170975600000,0.76850], [1171062000000,0.76810], [1171148400000,0.7690], [1171234800000,0.7690], [1171321200000,0.76980], [1171407600000,0.76990], [1171494000000,0.76510], [1171580400000,0.76130], [1171666800000,0.76160], [1171753200000,0.76140], [1171839600000,0.76140], [1171926000000,0.76070], [1172012400000,0.76020], [1172098800000,0.76110], [1172185200000,0.76220], [1172271600000,0.76150], [1172358000000,0.75980], [1172444400000,0.75980], [1172530800000,0.75920], [1172617200000,0.75730], [1172703600000,0.75660], [1172790000000,0.75670], [1172876400000,0.75910], [1172962800000,0.75820], [1173049200000,0.75850], [1173135600000,0.76130], [1173222000000,0.76310], [1173308400000,0.76150], [1173394800000,0.760], [1173481200000,0.76130], [1173567600000,0.76270], [1173654000000,0.76270], [1173740400000,0.76080], [1173826800000,0.75830], [1173913200000,0.75750], [1173999600000,0.75620], [1174086000000,0.7520], [1174172400000,0.75120], [1174258800000,0.75120], [1174345200000,0.75170], [1174431600000,0.7520], [1174518000000,0.75110], [1174604400000,0.7480], [1174690800000,0.75090], [1174777200000,0.75310], [1174860000000,0.75310], [1174946400000,0.75270], [1175032800000,0.74980], [1175119200000,0.74930], [1175205600000,0.75040], [1175292000000,0.750], [1175378400000,0.74910], [1175464800000,0.74910], [1175551200000,0.74850], [1175637600000,0.74840], [1175724000000,0.74920], [1175810400000,0.74710], [1175896800000,0.74590], [1175983200000,0.74770], [1176069600000,0.74770], [1176156000000,0.74830], [1176242400000,0.74580], [1176328800000,0.74480], [1176415200000,0.7430], [1176501600000,0.73990], [1176588000000,0.73950], [1176674400000,0.73950], [1176760800000,0.73780], [1176847200000,0.73820], [1176933600000,0.73620], [1177020000000,0.73550], [1177106400000,0.73480], [1177192800000,0.73610], [1177279200000,0.73610], [1177365600000,0.73650], [1177452000000,0.73620], [1177538400000,0.73310], [1177624800000,0.73390], [1177711200000,0.73440], [1177797600000,0.73270], [1177884000000,0.73270], [1177970400000,0.73360], [1178056800000,0.73330], [1178143200000,0.73590], [1178229600000,0.73590], [1178316000000,0.73720], [1178402400000,0.7360], [1178488800000,0.7360], [1178575200000,0.7350], [1178661600000,0.73650], [1178748000000,0.73840], [1178834400000,0.73950], [1178920800000,0.74130], [1179007200000,0.73970], [1179093600000,0.73960], [1179180000000,0.73850], [1179266400000,0.73780], [1179352800000,0.73660], [1179439200000,0.740], [1179525600000,0.74110], [1179612000000,0.74060], [1179698400000,0.74050], [1179784800000,0.74140], [1179871200000,0.74310], [1179957600000,0.74310], [1180044000000,0.74380], [1180130400000,0.74430], [1180216800000,0.74430], [1180303200000,0.74430], [1180389600000,0.74340], [1180476000000,0.74290], [1180562400000,0.74420], [1180648800000,0.7440], [1180735200000,0.74390], [1180821600000,0.74370], [1180908000000,0.74370], [1180994400000,0.74290], [1181080800000,0.74030], [1181167200000,0.73990], [1181253600000,0.74180], [1181340000000,0.74680], [1181426400000,0.7480], [1181512800000,0.7480], [1181599200000,0.7490], [1181685600000,0.74940], [1181772000000,0.75220], [1181858400000,0.75150], [1181944800000,0.75020], [1182031200000,0.74720], [1182117600000,0.74720], [1182204000000,0.74620], [1182290400000,0.74550], [1182376800000,0.74490], [1182463200000,0.74670], [1182549600000,0.74580], [1182636000000,0.74270], [1182722400000,0.74270], [1182808800000,0.7430], [1182895200000,0.74290], [1182981600000,0.7440], [1183068000000,0.7430], [1183154400000,0.74220], [1183240800000,0.73880], [1183327200000,0.73880], [1183413600000,0.73690], [1183500000000,0.73450], [1183586400000,0.73450], [1183672800000,0.73450], [1183759200000,0.73520], [1183845600000,0.73410], [1183932000000,0.73410], [1184018400000,0.7340], [1184104800000,0.73240], [1184191200000,0.72720], [1184277600000,0.72640], [1184364000000,0.72550], [1184450400000,0.72580], [1184536800000,0.72580], [1184623200000,0.72560], [1184709600000,0.72570], [1184796000000,0.72470], [1184882400000,0.72430], [1184968800000,0.72440], [1185055200000,0.72350], [1185141600000,0.72350], [1185228000000,0.72350], [1185314400000,0.72350], [1185400800000,0.72620], [1185487200000,0.72880], [1185573600000,0.73010], [1185660000000,0.73370], [1185746400000,0.73370], [1185832800000,0.73240], [1185919200000,0.72970], [1186005600000,0.73170], [1186092000000,0.73150], [1186178400000,0.72880], [1186264800000,0.72630], [1186351200000,0.72630], [1186437600000,0.72420], [1186524000000,0.72530], [1186610400000,0.72640], [1186696800000,0.7270], [1186783200000,0.73120], [1186869600000,0.73050], [1186956000000,0.73050], [1187042400000,0.73180], [1187128800000,0.73580], [1187215200000,0.74090], [1187301600000,0.74540], [1187388000000,0.74370], [1187474400000,0.74240], [1187560800000,0.74240], [1187647200000,0.74150], [1187733600000,0.74190], [1187820000000,0.74140], [1187906400000,0.73770], [1187992800000,0.73550], [1188079200000,0.73150], [1188165600000,0.73150], [1188252000000,0.7320], [1188338400000,0.73320], [1188424800000,0.73460], [1188511200000,0.73280], [1188597600000,0.73230], [1188684000000,0.7340], [1188770400000,0.7340], [1188856800000,0.73360], [1188943200000,0.73510], [1189029600000,0.73460], [1189116000000,0.73210], [1189202400000,0.72940], [1189288800000,0.72660], [1189375200000,0.72660], [1189461600000,0.72540], [1189548000000,0.72420], [1189634400000,0.72130], [1189720800000,0.71970], [1189807200000,0.72090], [1189893600000,0.7210], [1189980000000,0.7210], [1190066400000,0.7210], [1190152800000,0.72090], [1190239200000,0.71590], [1190325600000,0.71330], [1190412000000,0.71050], [1190498400000,0.70990], [1190584800000,0.70990], [1190671200000,0.70930], [1190757600000,0.70930], [1190844000000,0.70760], [1190930400000,0.7070], [1191016800000,0.70490], [1191103200000,0.70120], [1191189600000,0.70110], [1191276000000,0.70190], [1191362400000,0.70460], [1191448800000,0.70630], [1191535200000,0.70890], [1191621600000,0.70770], [1191708000000,0.70770], [1191794400000,0.70770], [1191880800000,0.70910], [1191967200000,0.71180], [1192053600000,0.70790], [1192140000000,0.70530], [1192226400000,0.7050], [1192312800000,0.70550], [1192399200000,0.70550], [1192485600000,0.70450], [1192572000000,0.70510], [1192658400000,0.70510], [1192744800000,0.70170], [1192831200000,0.70], [1192917600000,0.69950], [1193004000000,0.69940], [1193090400000,0.70140], [1193176800000,0.70360], [1193263200000,0.70210], [1193349600000,0.70020], [1193436000000,0.69670], [1193522400000,0.6950], [1193612400000,0.6950], [1193698800000,0.69390], [1193785200000,0.6940], [1193871600000,0.69220], [1193958000000,0.69190], [1194044400000,0.69140], [1194130800000,0.68940], [1194217200000,0.68910], [1194303600000,0.69040], [1194390000000,0.6890], [1194476400000,0.68340], [1194562800000,0.68230], [1194649200000,0.68070], [1194735600000,0.68150], [1194822000000,0.68150], [1194908400000,0.68470], [1194994800000,0.68590], [1195081200000,0.68220], [1195167600000,0.68270], [1195254000000,0.68370], [1195340400000,0.68230], [1195426800000,0.68220], [1195513200000,0.68220], [1195599600000,0.67920], [1195686000000,0.67460], [1195772400000,0.67350], [1195858800000,0.67310], [1195945200000,0.67420], [1196031600000,0.67440], [1196118000000,0.67390], [1196204400000,0.67310], [1196290800000,0.67610], [1196377200000,0.67610], [1196463600000,0.67850], [1196550000000,0.68180], [1196636400000,0.68360], [1196722800000,0.68230], [1196809200000,0.68050], [1196895600000,0.67930], [1196982000000,0.68490], [1197068400000,0.68330], [1197154800000,0.68250], [1197241200000,0.68250], [1197327600000,0.68160], [1197414000000,0.67990], [1197500400000,0.68130], [1197586800000,0.68090], [1197673200000,0.68680], [1197759600000,0.69330], [1197846000000,0.69330], [1197932400000,0.69450], [1198018800000,0.69440], [1198105200000,0.69460], [1198191600000,0.69640], [1198278000000,0.69650], [1198364400000,0.69560], [1198450800000,0.69560], [1198537200000,0.6950], [1198623600000,0.69480], [1198710000000,0.69280], [1198796400000,0.68870], [1198882800000,0.68240], [1198969200000,0.67940], [1199055600000,0.67940], [1199142000000,0.68030], [1199228400000,0.68550], [1199314800000,0.68240], [1199401200000,0.67910], [1199487600000,0.67830], [1199574000000,0.67850], [1199660400000,0.67850], [1199746800000,0.67970], [1199833200000,0.680], [1199919600000,0.68030], [1200006000000,0.68050], [1200092400000,0.6760], [1200178800000,0.6770], [1200265200000,0.6770], [1200351600000,0.67360], [1200438000000,0.67260], [1200524400000,0.67640], [1200610800000,0.68210], [1200697200000,0.68310], [1200783600000,0.68420], [1200870000000,0.68420], [1200956400000,0.68870], [1201042800000,0.69030], [1201129200000,0.68480], [1201215600000,0.68240], [1201302000000,0.67880], [1201388400000,0.68140], [1201474800000,0.68140], [1201561200000,0.67970], [1201647600000,0.67690], [1201734000000,0.67650], [1201820400000,0.67330], [1201906800000,0.67290], [1201993200000,0.67580], [1202079600000,0.67580], [1202166000000,0.6750], [1202252400000,0.6780], [1202338800000,0.68330], [1202425200000,0.68560], [1202511600000,0.69030], [1202598000000,0.68960], [1202684400000,0.68960], [1202770800000,0.68820], [1202857200000,0.68790], [1202943600000,0.68620], [1203030000000,0.68520], [1203116400000,0.68230], [1203202800000,0.68130], [1203289200000,0.68130], [1203375600000,0.68220], [1203462000000,0.68020], [1203548400000,0.68020], [1203634800000,0.67840], [1203721200000,0.67480], [1203807600000,0.67470], [1203894000000,0.67470], [1203980400000,0.67480], [1204066800000,0.67330], [1204153200000,0.6650], [1204239600000,0.66110], [1204326000000,0.65830], [1204412400000,0.6590], [1204498800000,0.6590], [1204585200000,0.65810], [1204671600000,0.65780], [1204758000000,0.65740], [1204844400000,0.65320], [1204930800000,0.65020], [1205017200000,0.65140], [1205103600000,0.65140], [1205190000000,0.65070], [1205276400000,0.6510], [1205362800000,0.64890], [1205449200000,0.64240], [1205535600000,0.64060], [1205622000000,0.63820], [1205708400000,0.63820], [1205794800000,0.63410], [1205881200000,0.63440], [1205967600000,0.63780], [1206054000000,0.64390], [1206140400000,0.64780], [1206226800000,0.64810], [1206313200000,0.64810], [1206399600000,0.64940], [1206486000000,0.64380], [1206572400000,0.63770], [1206658800000,0.63290], [1206745200000,0.63360], [1206831600000,0.63330], [1206914400000,0.63330], [1207000800000,0.6330], [1207087200000,0.63710], [1207173600000,0.64030], [1207260000000,0.63960], [1207346400000,0.63640], [1207432800000,0.63560], [1207519200000,0.63560], [1207605600000,0.63680], [1207692000000,0.63570], [1207778400000,0.63540], [1207864800000,0.6320], [1207951200000,0.63320], [1208037600000,0.63280], [1208124000000,0.63310], [1208210400000,0.63420], [1208296800000,0.63210], [1208383200000,0.63020], [1208469600000,0.62780], [1208556000000,0.63080], [1208642400000,0.63240], [1208728800000,0.63240], [1208815200000,0.63070], [1208901600000,0.62770], [1208988000000,0.62690], [1209074400000,0.63350], [1209160800000,0.63920], [1209247200000,0.640], [1209333600000,0.64010], [1209420000000,0.63960], [1209506400000,0.64070], [1209592800000,0.64230], [1209679200000,0.64290], [1209765600000,0.64720], [1209852000000,0.64850], [1209938400000,0.64860], [1210024800000,0.64670], [1210111200000,0.64440], [1210197600000,0.64670], [1210284000000,0.65090], [1210370400000,0.64780], [1210456800000,0.64610], [1210543200000,0.64610], [1210629600000,0.64680], [1210716000000,0.64490], [1210802400000,0.6470], [1210888800000,0.64610], [1210975200000,0.64520], [1211061600000,0.64220], [1211148000000,0.64220], [1211234400000,0.64250], [1211320800000,0.64140], [1211407200000,0.63660], [1211493600000,0.63460], [1211580000000,0.6350], [1211666400000,0.63460], [1211752800000,0.63460], [1211839200000,0.63430], [1211925600000,0.63460], [1212012000000,0.63790], [1212098400000,0.64160], [1212184800000,0.64420], [1212271200000,0.64310], [1212357600000,0.64310], [1212444000000,0.64350], [1212530400000,0.6440], [1212616800000,0.64730], [1212703200000,0.64690], [1212789600000,0.63860], [1212876000000,0.63560], [1212962400000,0.6340], [1213048800000,0.63460], [1213135200000,0.6430], [1213221600000,0.64520], [1213308000000,0.64670], [1213394400000,0.65060], [1213480800000,0.65040], [1213567200000,0.65030], [1213653600000,0.64810], [1213740000000,0.64510], [1213826400000,0.6450], [1213912800000,0.64410], [1213999200000,0.64140], [1214085600000,0.64090], [1214172000000,0.64090], [1214258400000,0.64280], [1214344800000,0.64310], [1214431200000,0.64180], [1214517600000,0.63710], [1214604000000,0.63490], [1214690400000,0.63330], [1214776800000,0.63340], [1214863200000,0.63380], [1214949600000,0.63420], [1215036000000,0.6320], [1215122400000,0.63180], [1215208800000,0.6370], [1215295200000,0.63680], [1215381600000,0.63680], [1215468000000,0.63830], [1215554400000,0.63710], [1215640800000,0.63710], [1215727200000,0.63550], [1215813600000,0.6320], [1215900000000,0.62770], [1215986400000,0.62760], [1216072800000,0.62910], [1216159200000,0.62740], [1216245600000,0.62930], [1216332000000,0.63110], [1216418400000,0.6310], [1216504800000,0.63120], [1216591200000,0.63120], [1216677600000,0.63040], [1216764000000,0.62940], [1216850400000,0.63480], [1216936800000,0.63780], [1217023200000,0.63680], [1217109600000,0.63680], [1217196000000,0.63680], [1217282400000,0.6360], [1217368800000,0.6370], [1217455200000,0.64180], [1217541600000,0.64110], [1217628000000,0.64350], [1217714400000,0.64270], [1217800800000,0.64270], [1217887200000,0.64190], [1217973600000,0.64460], [1218060000000,0.64680], [1218146400000,0.64870], [1218232800000,0.65940], [1218319200000,0.66660], [1218405600000,0.66660], [1218492000000,0.66780], [1218578400000,0.67120], [1218664800000,0.67050], [1218751200000,0.67180], [1218837600000,0.67840], [1218924000000,0.68110], [1219010400000,0.68110], [1219096800000,0.67940], [1219183200000,0.68040], [1219269600000,0.67810], [1219356000000,0.67560], [1219442400000,0.67350], [1219528800000,0.67630], [1219615200000,0.67620], [1219701600000,0.67770], [1219788000000,0.68150], [1219874400000,0.68020], [1219960800000,0.6780], [1220047200000,0.67960], [1220133600000,0.68170], [1220220000000,0.68170], [1220306400000,0.68320], [1220392800000,0.68770], [1220479200000,0.69120], [1220565600000,0.69140], [1220652000000,0.70090], [1220738400000,0.70120], [1220824800000,0.7010], [1220911200000,0.70050]];
19
+
20
+ var data = [
21
+ { data: oilPrices, label: "Oil price ($)" },
22
+ { data: exchangeRates, label: "USD/EUR exchange rate", yaxis: 2 }
23
+ ];
24
+
25
+ var options = {
26
+ canvas: true,
27
+ xaxes: [ { mode: "time" } ],
28
+ yaxes: [ { min: 0 }, {
29
+ position: "right",
30
+ alignTicksWithAxis: 1,
31
+ tickFormatter: function(value, axis) {
32
+ return value.toFixed(axis.tickDecimals) + "€";
33
+ }
34
+ } ],
35
+ legend: { position: "sw" }
36
+ }
37
+
38
+ $.plot("#placeholder", data, options);
39
+
40
+ $("input").change(function () {
41
+ options.canvas = $(this).is(":checked");
42
+ $.plot("#placeholder", data, options);
43
+ });
44
+
45
+ // Add the Flot version string to the footer
46
+
47
+ $("#footer").prepend("Flot " + $.plot.version + " &ndash; ");
48
+ });
49
+
50
+ </script>
51
+ </head>
52
+ <body>
53
+
54
+ <div id="header">
55
+ <h2>Canvas text</h2>
56
+ </div>
57
+
58
+ <div id="content">
59
+
60
+ <div class="demo-container">
61
+ <div id="placeholder" class="demo-placeholder"></div>
62
+ </div>
63
+
64
+ <p>This example uses the same dataset (raw oil price in US $/barrel of crude oil vs. the exchange rate from US $ to €) as the multiple-axes example, but uses the canvas plugin to render axis tick labels using canvas text.</p>
65
+
66
+ <p><input type="checkbox" checked="checked">Enable canvas text</input></p>
67
+
68
+ </div>
69
+
70
+ <div id="footer">
71
+ Copyright &copy; 2007 - 2014 IOLA and Ole Laursen
72
+ </div>
73
+
74
+ </body>
75
+ </html>
@@ -0,0 +1,64 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <title>Flot Examples: Categories</title>
6
+ <link href="../examples.css" rel="stylesheet" type="text/css">
7
+ <!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../excanvas.min.js"></script><![endif]-->
8
+ <script language="javascript" type="text/javascript" src="../../jquery.js"></script>
9
+ <script language="javascript" type="text/javascript" src="../../jquery.flot.js"></script>
10
+ <script language="javascript" type="text/javascript" src="../../jquery.flot.categories.js"></script>
11
+ <script type="text/javascript">
12
+
13
+ $(function() {
14
+
15
+ var data = [ ["January", 10], ["February", 8], ["March", 4], ["April", 13], ["May", 17], ["June", 9] ];
16
+
17
+ $.plot("#placeholder", [ data ], {
18
+ series: {
19
+ bars: {
20
+ show: true,
21
+ barWidth: 0.6,
22
+ align: "center"
23
+ }
24
+ },
25
+ xaxis: {
26
+ mode: "categories",
27
+ tickLength: 0
28
+ }
29
+ });
30
+
31
+ // Add the Flot version string to the footer
32
+
33
+ $("#footer").prepend("Flot " + $.plot.version + " &ndash; ");
34
+ });
35
+
36
+ </script>
37
+ </head>
38
+ <body>
39
+
40
+ <div id="header">
41
+ <h2>Categories</h2>
42
+ </div>
43
+
44
+ <div id="content">
45
+
46
+ <div class="demo-container">
47
+ <div id="placeholder" class="demo-placeholder"></div>
48
+ </div>
49
+
50
+ <p>With the categories plugin you can plot categories/textual data easily.</p>
51
+
52
+ </div>
53
+
54
+ <div id="footer">
55
+ Copyright &copy; 2007 - 2014 IOLA and Ole Laursen
56
+ </div>
57
+
58
+ </body>
59
+ </html>
60
+
61
+
62
+
63
+
64
+
@@ -0,0 +1,97 @@
1
+ * { padding: 0; margin: 0; vertical-align: top; }
2
+
3
+ body {
4
+ background: url(background.png) repeat-x;
5
+ font: 18px/1.5em "proxima-nova", Helvetica, Arial, sans-serif;
6
+ }
7
+
8
+ a { color: #069; }
9
+ a:hover { color: #28b; }
10
+
11
+ h2 {
12
+ margin-top: 15px;
13
+ font: normal 32px "omnes-pro", Helvetica, Arial, sans-serif;
14
+ }
15
+
16
+ h3 {
17
+ margin-left: 30px;
18
+ font: normal 26px "omnes-pro", Helvetica, Arial, sans-serif;
19
+ color: #666;
20
+ }
21
+
22
+ p {
23
+ margin-top: 10px;
24
+ }
25
+
26
+ button {
27
+ font-size: 18px;
28
+ padding: 1px 7px;
29
+ }
30
+
31
+ input {
32
+ font-size: 18px;
33
+ }
34
+
35
+ input[type=checkbox] {
36
+ margin: 7px;
37
+ }
38
+
39
+ #header {
40
+ position: relative;
41
+ width: 900px;
42
+ margin: auto;
43
+ }
44
+
45
+ #header h2 {
46
+ margin-left: 10px;
47
+ vertical-align: middle;
48
+ font-size: 42px;
49
+ font-weight: bold;
50
+ text-decoration: none;
51
+ color: #000;
52
+ }
53
+
54
+ #content {
55
+ width: 880px;
56
+ margin: 0 auto;
57
+ padding: 10px;
58
+ }
59
+
60
+ #footer {
61
+ margin-top: 25px;
62
+ margin-bottom: 10px;
63
+ text-align: center;
64
+ font-size: 12px;
65
+ color: #999;
66
+ }
67
+
68
+ .demo-container {
69
+ box-sizing: border-box;
70
+ width: 850px;
71
+ height: 450px;
72
+ padding: 20px 15px 15px 15px;
73
+ margin: 15px auto 30px auto;
74
+ border: 1px solid #ddd;
75
+ background: #fff;
76
+ background: linear-gradient(#f6f6f6 0, #fff 50px);
77
+ background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
78
+ background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
79
+ background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
80
+ background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
81
+ box-shadow: 0 3px 10px rgba(0,0,0,0.15);
82
+ -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
83
+ -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
84
+ -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
85
+ -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
86
+ }
87
+
88
+ .demo-placeholder {
89
+ width: 100%;
90
+ height: 100%;
91
+ font-size: 14px;
92
+ line-height: 1.2em;
93
+ }
94
+
95
+ .legend table {
96
+ border-spacing: 5px;
97
+ }
@@ -0,0 +1,69 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <title>Flot Examples: Image Plots</title>
6
+ <link href="../examples.css" rel="stylesheet" type="text/css">
7
+ <!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../excanvas.min.js"></script><![endif]-->
8
+ <script language="javascript" type="text/javascript" src="../../jquery.js"></script>
9
+ <script language="javascript" type="text/javascript" src="../../jquery.flot.js"></script>
10
+ <script language="javascript" type="text/javascript" src="../../jquery.flot.image.js"></script>
11
+ <script type="text/javascript">
12
+
13
+ $(function() {
14
+
15
+ var data = [[["hs-2004-27-a-large-web.jpg", -10, -10, 10, 10]]];
16
+
17
+ var options = {
18
+ series: {
19
+ images: {
20
+ show: true
21
+ }
22
+ },
23
+ xaxis: {
24
+ min: -8,
25
+ max: 4
26
+ },
27
+ yaxis: {
28
+ min: -8,
29
+ max: 4
30
+ }
31
+ };
32
+
33
+ $.plot.image.loadDataImages(data, options, function () {
34
+ $.plot("#placeholder", data, options);
35
+ });
36
+
37
+ // Add the Flot version string to the footer
38
+
39
+ $("#footer").prepend("Flot " + $.plot.version + " &ndash; ");
40
+ });
41
+
42
+ </script>
43
+ </head>
44
+ <body>
45
+
46
+ <div id="header">
47
+ <h2>Image Plots</h2>
48
+ </div>
49
+
50
+ <div id="content">
51
+
52
+ <div class="demo-container" style="width:600px;height:600px;">
53
+ <div id="placeholder" class="demo-placeholder"></div>
54
+ </div>
55
+
56
+ <p>The Cat's Eye Nebula (<a href="http://hubblesite.org/gallery/album/nebula/pr2004027a/">picture from Hubble</a>).</p>
57
+
58
+ <p>With the image plugin, you can plot static images against a set of axes. This is for useful for adding ticks to complex prerendered visualizations. Instead of inputting data points, you specify the images and where their two opposite corners are supposed to be in plot space.</p>
59
+
60
+ <p>Images represent a little further complication because you need to make sure they are loaded before you can use them (Flot skips incomplete images). The plugin comes with a couple of helpers for doing that.</p>
61
+
62
+ </div>
63
+
64
+ <div id="footer">
65
+ Copyright &copy; 2007 - 2014 IOLA and Ole Laursen
66
+ </div>
67
+
68
+ </body>
69
+ </html>
@@ -0,0 +1,80 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <title>Flot Examples</title>
6
+ <link href="examples.css" rel="stylesheet" type="text/css">
7
+ <style>
8
+
9
+ h3 {
10
+ margin-top: 30px;
11
+ margin-bottom: 5px;
12
+ }
13
+
14
+ </style>
15
+ <script language="javascript" type="text/javascript" src="../jquery.js"></script>
16
+ <script language="javascript" type="text/javascript" src="../jquery.flot.js"></script>
17
+ <script type="text/javascript">
18
+
19
+ $(function() {
20
+
21
+ // Add the Flot version string to the footer
22
+
23
+ $("#footer").prepend("Flot " + $.plot.version + " &ndash; ");
24
+ });
25
+
26
+ </script>
27
+ </head>
28
+ <body>
29
+
30
+ <div id="header">
31
+ <h2>Flot Examples</h2>
32
+ </div>
33
+
34
+ <div id="content">
35
+
36
+ <p>Here are some examples for <a href="http://www.flotcharts.org">Flot</a>, the Javascript charting library for jQuery:</p>
37
+
38
+ <h3>Basic Usage</h3>
39
+
40
+ <ul>
41
+ <li><a href="basic-usage/index.html">Basic example</a></li>
42
+ <li><a href="series-types/index.html">Different graph types</a> and <a href="categories/index.html">simple categories/textual data</a></li>
43
+ <li><a href="basic-options/index.html">Setting various options</a> and <a href="annotating/index.html">annotating a chart</a></li>
44
+ <li><a href="ajax/index.html">Updating graphs with AJAX</a> and <a href="realtime/index.html">real-time updates</a></li>
45
+ </ul>
46
+
47
+ <h3>Interactivity</h3>
48
+
49
+ <ul>
50
+ <li><a href="series-toggle/index.html">Turning series on/off</a></li>
51
+ <li><a href="selection/index.html">Rectangular selection support and zooming</a> and <a href="zooming/index.html">zooming with overview</a> (both with selection plugin)</li>
52
+ <li><a href="interacting/index.html">Interacting with the data points</a></li>
53
+ <li><a href="navigate/index.html">Panning and zooming</a> (with navigation plugin)</li>
54
+ <li><a href="resize/index.html">Automatically redraw when window is resized</a> (with resize plugin)</li>
55
+ </ul>
56
+
57
+ <h3>Additional Features</h3>
58
+
59
+ <ul>
60
+ <li><a href="symbols/index.html">Using other symbols than circles for points</a> (with symbol plugin)</li>
61
+ <li><a href="axes-time/index.html">Plotting time series</a>, <a href="visitors/index.html">visitors per day with zooming and weekends</a> (with selection plugin) and <a href="axes-time-zones/index.html">time zone support</a></li>
62
+ <li><a href="axes-multiple/index.html">Multiple axes</a> and <a href="axes-interacting/index.html">interacting with the axes</a></li>
63
+ <li><a href="threshold/index.html">Thresholding the data</a> (with threshold plugin)</li>
64
+ <li><a href="stacking/index.html">Stacked charts</a> (with stacking plugin)</li>
65
+ <li><a href="percentiles/index.html">Using filled areas to plot percentiles</a> (with fillbetween plugin)</li>
66
+ <li><a href="tracking/index.html">Tracking curves with crosshair</a> (with crosshair plugin)</li>
67
+ <li><a href="image/index.html">Plotting prerendered images</a> (with image plugin)</li>
68
+ <li><a href="series-errorbars/index.html">Plotting error bars</a> (with errorbars plugin)</li>
69
+ <li><a href="series-pie/index.html">Pie charts</a> (with pie plugin)</li>
70
+ <li><a href="canvas/index.html">Rendering text with canvas instead of HTML</a> (with canvas plugin)</li>
71
+ </ul>
72
+
73
+ </div>
74
+
75
+ <div id="footer">
76
+ Copyright &copy; 2007 - 2013 IOLA and Ole Laursen
77
+ </div>
78
+
79
+ </body>
80
+ </html>
@@ -0,0 +1,118 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <title>Flot Examples: Interactivity</title>
6
+ <link href="../examples.css" rel="stylesheet" type="text/css">
7
+ <!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../excanvas.min.js"></script><![endif]-->
8
+ <script language="javascript" type="text/javascript" src="../../jquery.js"></script>
9
+ <script language="javascript" type="text/javascript" src="../../jquery.flot.js"></script>
10
+ <script type="text/javascript">
11
+
12
+ $(function() {
13
+
14
+ var sin = [],
15
+ cos = [];
16
+
17
+ for (var i = 0; i < 14; i += 0.5) {
18
+ sin.push([i, Math.sin(i)]);
19
+ cos.push([i, Math.cos(i)]);
20
+ }
21
+
22
+ var plot = $.plot("#placeholder", [
23
+ { data: sin, label: "sin(x)"},
24
+ { data: cos, label: "cos(x)"}
25
+ ], {
26
+ series: {
27
+ lines: {
28
+ show: true
29
+ },
30
+ points: {
31
+ show: true
32
+ }
33
+ },
34
+ grid: {
35
+ hoverable: true,
36
+ clickable: true
37
+ },
38
+ yaxis: {
39
+ min: -1.2,
40
+ max: 1.2
41
+ }
42
+ });
43
+
44
+ $("<div id='tooltip'></div>").css({
45
+ position: "absolute",
46
+ display: "none",
47
+ border: "1px solid #fdd",
48
+ padding: "2px",
49
+ "background-color": "#fee",
50
+ opacity: 0.80
51
+ }).appendTo("body");
52
+
53
+ $("#placeholder").bind("plothover", function (event, pos, item) {
54
+
55
+ if ($("#enablePosition:checked").length > 0) {
56
+ var str = "(" + pos.x.toFixed(2) + ", " + pos.y.toFixed(2) + ")";
57
+ $("#hoverdata").text(str);
58
+ }
59
+
60
+ if ($("#enableTooltip:checked").length > 0) {
61
+ if (item) {
62
+ var x = item.datapoint[0].toFixed(2),
63
+ y = item.datapoint[1].toFixed(2);
64
+
65
+ $("#tooltip").html(item.series.label + " of " + x + " = " + y)
66
+ .css({top: item.pageY+5, left: item.pageX+5})
67
+ .fadeIn(200);
68
+ } else {
69
+ $("#tooltip").hide();
70
+ }
71
+ }
72
+ });
73
+
74
+ $("#placeholder").bind("plotclick", function (event, pos, item) {
75
+ if (item) {
76
+ $("#clickdata").text(" - click point " + item.dataIndex + " in " + item.series.label);
77
+ plot.highlight(item.series, item.datapoint);
78
+ }
79
+ });
80
+
81
+ // Add the Flot version string to the footer
82
+
83
+ $("#footer").prepend("Flot " + $.plot.version + " &ndash; ");
84
+ });
85
+
86
+ </script>
87
+ </head>
88
+ <body>
89
+ <div id="header">
90
+ <h2>Interactivity</h2>
91
+ </div>
92
+
93
+ <div id="content">
94
+
95
+ <div class="demo-container">
96
+ <div id="placeholder" class="demo-placeholder"></div>
97
+ </div>
98
+
99
+ <p>One of the goals of Flot is to support user interactions. Try pointing and clicking on the points.</p>
100
+
101
+ <p>
102
+ <label><input id="enablePosition" type="checkbox" checked="checked"></input>Show mouse position</label>
103
+ <span id="hoverdata"></span>
104
+ <span id="clickdata"></span>
105
+ </p>
106
+
107
+ <p>A tooltip is easy to build with a bit of jQuery code and the data returned from the plot.</p>
108
+
109
+ <p><label><input id="enableTooltip" type="checkbox" checked="checked"></input>Enable tooltip</label></p>
110
+
111
+ </div>
112
+
113
+ <div id="footer">
114
+ Copyright &copy; 2007 - 2014 IOLA and Ole Laursen
115
+ </div>
116
+
117
+ </body>
118
+ </html>