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.
- checksums.yaml +4 -4
- data/lib/postrunner/ActivityView.rb +26 -0
- data/lib/postrunner/version.rb +1 -1
- data/misc/flot/API.md +1498 -0
- data/misc/flot/CONTRIBUTING.md +98 -0
- data/misc/flot/FAQ.md +75 -0
- data/misc/flot/LICENSE.txt +22 -0
- data/misc/flot/Makefile +12 -0
- data/misc/flot/NEWS.md +1026 -0
- data/misc/flot/PLUGINS.md +143 -0
- data/misc/flot/README.md +110 -0
- data/misc/flot/examples/.DS_Store +0 -0
- data/misc/flot/examples/ajax/data-eu-gdp-growth-1.json +4 -0
- data/misc/flot/examples/ajax/data-eu-gdp-growth-2.json +4 -0
- data/misc/flot/examples/ajax/data-eu-gdp-growth-3.json +4 -0
- data/misc/flot/examples/ajax/data-eu-gdp-growth-4.json +4 -0
- data/misc/flot/examples/ajax/data-eu-gdp-growth-5.json +4 -0
- data/misc/flot/examples/ajax/data-eu-gdp-growth.json +4 -0
- data/misc/flot/examples/ajax/data-japan-gdp-growth.json +4 -0
- data/misc/flot/examples/ajax/data-usa-gdp-growth.json +4 -0
- data/misc/flot/examples/ajax/index.html +173 -0
- data/misc/flot/examples/annotating/index.html +87 -0
- data/misc/flot/examples/axes-interacting/index.html +97 -0
- data/misc/flot/examples/axes-multiple/index.html +77 -0
- data/misc/flot/examples/axes-time/index.html +137 -0
- data/misc/flot/examples/axes-time-zones/date.js +893 -0
- data/misc/flot/examples/axes-time-zones/index.html +114 -0
- data/misc/flot/examples/axes-time-zones/tz/africa +1181 -0
- data/misc/flot/examples/axes-time-zones/tz/antarctica +413 -0
- data/misc/flot/examples/axes-time-zones/tz/asia +2717 -0
- data/misc/flot/examples/axes-time-zones/tz/australasia +1719 -0
- data/misc/flot/examples/axes-time-zones/tz/backward +117 -0
- data/misc/flot/examples/axes-time-zones/tz/etcetera +81 -0
- data/misc/flot/examples/axes-time-zones/tz/europe +2856 -0
- data/misc/flot/examples/axes-time-zones/tz/factory +10 -0
- data/misc/flot/examples/axes-time-zones/tz/iso3166.tab +276 -0
- data/misc/flot/examples/axes-time-zones/tz/leapseconds +100 -0
- data/misc/flot/examples/axes-time-zones/tz/northamerica +3235 -0
- data/misc/flot/examples/axes-time-zones/tz/pacificnew +28 -0
- data/misc/flot/examples/axes-time-zones/tz/solar87 +390 -0
- data/misc/flot/examples/axes-time-zones/tz/solar88 +390 -0
- data/misc/flot/examples/axes-time-zones/tz/solar89 +395 -0
- data/misc/flot/examples/axes-time-zones/tz/southamerica +1711 -0
- data/misc/flot/examples/axes-time-zones/tz/systemv +38 -0
- data/misc/flot/examples/axes-time-zones/tz/yearistype.sh +38 -0
- data/misc/flot/examples/axes-time-zones/tz/zone.tab +441 -0
- data/misc/flot/examples/background.png +0 -0
- data/misc/flot/examples/basic-options/index.html +91 -0
- data/misc/flot/examples/basic-usage/index.html +57 -0
- data/misc/flot/examples/canvas/index.html +75 -0
- data/misc/flot/examples/categories/index.html +64 -0
- data/misc/flot/examples/examples.css +97 -0
- data/misc/flot/examples/image/hs-2004-27-a-large-web.jpg +0 -0
- data/misc/flot/examples/image/index.html +69 -0
- data/misc/flot/examples/index.html +80 -0
- data/misc/flot/examples/interacting/index.html +118 -0
- data/misc/flot/examples/navigate/arrow-down.gif +0 -0
- data/misc/flot/examples/navigate/arrow-left.gif +0 -0
- data/misc/flot/examples/navigate/arrow-right.gif +0 -0
- data/misc/flot/examples/navigate/arrow-up.gif +0 -0
- data/misc/flot/examples/navigate/index.html +153 -0
- data/misc/flot/examples/percentiles/index.html +79 -0
- data/misc/flot/examples/realtime/index.html +122 -0
- data/misc/flot/examples/resize/index.html +76 -0
- data/misc/flot/examples/selection/index.html +152 -0
- data/misc/flot/examples/series-errorbars/index.html +150 -0
- data/misc/flot/examples/series-pie/index.html +818 -0
- data/misc/flot/examples/series-toggle/index.html +121 -0
- data/misc/flot/examples/series-types/index.html +90 -0
- data/misc/flot/examples/shared/jquery-ui/jquery-ui.min.css +6 -0
- data/misc/flot/examples/shared/jquery-ui/jquery-ui.min.js +6 -0
- data/misc/flot/examples/stacking/index.html +107 -0
- data/misc/flot/examples/symbols/index.html +76 -0
- data/misc/flot/examples/threshold/index.html +76 -0
- data/misc/flot/examples/tracking/index.html +135 -0
- data/misc/flot/examples/visitors/index.html +147 -0
- data/misc/flot/examples/zooming/index.html +144 -0
- data/misc/flot/excanvas.js +1428 -0
- data/misc/flot/excanvas.min.js +1 -0
- data/misc/flot/jquery.colorhelpers.js +180 -0
- data/misc/flot/jquery.colorhelpers.min.js +1 -0
- data/misc/flot/jquery.flot.canvas.js +345 -0
- data/misc/flot/jquery.flot.canvas.min.js +7 -0
- data/misc/flot/jquery.flot.categories.js +190 -0
- data/misc/flot/jquery.flot.categories.min.js +7 -0
- data/misc/flot/jquery.flot.crosshair.js +176 -0
- data/misc/flot/jquery.flot.crosshair.min.js +7 -0
- data/misc/flot/jquery.flot.errorbars.js +353 -0
- data/misc/flot/jquery.flot.errorbars.min.js +7 -0
- data/misc/flot/jquery.flot.fillbetween.js +226 -0
- data/misc/flot/jquery.flot.fillbetween.min.js +7 -0
- data/misc/flot/jquery.flot.image.js +241 -0
- data/misc/flot/jquery.flot.image.min.js +7 -0
- data/misc/flot/jquery.flot.js +3168 -0
- data/misc/flot/jquery.flot.min.js +8 -0
- data/misc/flot/jquery.flot.navigate.js +346 -0
- data/misc/flot/jquery.flot.navigate.min.js +7 -0
- data/misc/flot/jquery.flot.pie.js +820 -0
- data/misc/flot/jquery.flot.pie.min.js +7 -0
- data/misc/flot/jquery.flot.resize.js +59 -0
- data/misc/flot/jquery.flot.resize.min.js +7 -0
- data/misc/flot/jquery.flot.selection.js +360 -0
- data/misc/flot/jquery.flot.selection.min.js +7 -0
- data/misc/flot/jquery.flot.stack.js +188 -0
- data/misc/flot/jquery.flot.stack.min.js +7 -0
- data/misc/flot/jquery.flot.symbol.js +71 -0
- data/misc/flot/jquery.flot.symbol.min.js +7 -0
- data/misc/flot/jquery.flot.threshold.js +142 -0
- data/misc/flot/jquery.flot.threshold.min.js +7 -0
- data/misc/flot/jquery.flot.time.js +432 -0
- data/misc/flot/jquery.flot.time.min.js +7 -0
- data/misc/flot/jquery.js +9472 -0
- data/misc/flot/jquery.min.js +5 -0
- data/misc/jquery/jquery-2.1.1.min.js +4 -0
- data/misc/openlayers/.gitignore +7 -0
- data/misc/openlayers/OpenLayers.debug.js +85622 -0
- data/misc/openlayers/OpenLayers.js +1443 -0
- data/misc/openlayers/OpenLayers.light.debug.js +37230 -0
- data/misc/openlayers/OpenLayers.light.js +592 -0
- data/misc/openlayers/OpenLayers.mobile.debug.js +41831 -0
- data/misc/openlayers/OpenLayers.mobile.js +681 -0
- data/misc/openlayers/apidoc_config/Languages.txt +113 -0
- data/misc/openlayers/apidoc_config/Menu.txt +520 -0
- data/misc/openlayers/apidoc_config/OL.css +20 -0
- data/misc/openlayers/apidoc_config/Topics.txt +105 -0
- data/misc/openlayers/art/arrows.svg +127 -0
- data/misc/openlayers/art/layer-switcher-maximize.svg +128 -0
- data/misc/openlayers/art/layer-switcher-minimize.svg +142 -0
- data/misc/openlayers/art/marker.svg +25 -0
- data/misc/openlayers/art/measuring-stick-off.svg +36 -0
- data/misc/openlayers/art/measuring-stick-on.svg +36 -0
- data/misc/openlayers/art/panning-hand-off.svg +44 -0
- data/misc/openlayers/art/panning-hand-on.svg +44 -0
- data/misc/openlayers/art/slider.svg +71 -0
- data/misc/openlayers/art/zoom-world.svg +193 -0
- data/misc/openlayers/art/zoombar.svg +73 -0
- data/misc/openlayers/authors.txt +56 -0
- data/misc/openlayers/build/README.txt +46 -0
- data/misc/openlayers/build/build.py +158 -0
- data/misc/openlayers/build/buildUncompressed.py +25 -0
- data/misc/openlayers/build/closure-compiler/Externs.js +50 -0
- data/misc/openlayers/build/full.cfg +14 -0
- data/misc/openlayers/build/license.txt +57 -0
- data/misc/openlayers/build/light.cfg +32 -0
- data/misc/openlayers/build/lite.cfg +17 -0
- data/misc/openlayers/build/mobile.cfg +36 -0
- data/misc/openlayers/build/tests.cfg +11 -0
- data/misc/openlayers/doc_config/Data/ClassHierarchy.nd +0 -0
- data/misc/openlayers/doc_config/Data/ConfigFileInfo.nd +0 -0
- data/misc/openlayers/doc_config/Data/FileInfo.nd +323 -0
- data/misc/openlayers/doc_config/Data/ImageFileInfo.nd +0 -0
- data/misc/openlayers/doc_config/Data/ImageReferenceTable.nd +0 -0
- data/misc/openlayers/doc_config/Data/IndexInfo.nd +0 -0
- data/misc/openlayers/doc_config/Data/PreviousMenuState.nd +0 -0
- data/misc/openlayers/doc_config/Data/PreviousSettings.nd +0 -0
- data/misc/openlayers/doc_config/Data/SymbolTable.nd +0 -0
- data/misc/openlayers/doc_config/Languages.txt +113 -0
- data/misc/openlayers/doc_config/Menu.txt +520 -0
- data/misc/openlayers/doc_config/OL.css +20 -0
- data/misc/openlayers/doc_config/Topics.txt +102 -0
- data/misc/openlayers/examples/Jugl.js +8 -0
- data/misc/openlayers/examples/KMLParser.html +57 -0
- data/misc/openlayers/examples/SLDSelect.html +202 -0
- data/misc/openlayers/examples/WMSDescribeLayerParser.html +52 -0
- data/misc/openlayers/examples/accelerometer.html +100 -0
- data/misc/openlayers/examples/accessible-click-control.html +69 -0
- data/misc/openlayers/examples/accessible-click-control.js +199 -0
- data/misc/openlayers/examples/accessible-panel.html +130 -0
- data/misc/openlayers/examples/accessible-panel.js +64 -0
- data/misc/openlayers/examples/accessible.html +167 -0
- data/misc/openlayers/examples/all-overlays-google.html +34 -0
- data/misc/openlayers/examples/all-overlays-google.js +19 -0
- data/misc/openlayers/examples/all-overlays.html +76 -0
- data/misc/openlayers/examples/anchor-permalink.html +29 -0
- data/misc/openlayers/examples/anchor-permalink.js +13 -0
- data/misc/openlayers/examples/animated_panning.html +98 -0
- data/misc/openlayers/examples/animator.js +670 -0
- data/misc/openlayers/examples/arcgis93rest.html +69 -0
- data/misc/openlayers/examples/arcgiscache_ags.html +221 -0
- data/misc/openlayers/examples/arcgiscache_direct.html +108 -0
- data/misc/openlayers/examples/arcgiscache_jsonp.html +106 -0
- data/misc/openlayers/examples/arcims-thematic.html +82 -0
- data/misc/openlayers/examples/arcims.html +57 -0
- data/misc/openlayers/examples/attribution.html +60 -0
- data/misc/openlayers/examples/behavior-fixed-http-gml.html +56 -0
- data/misc/openlayers/examples/bing-tiles-restrictedzoom.html +43 -0
- data/misc/openlayers/examples/bing-tiles-restrictedzoom.js +37 -0
- data/misc/openlayers/examples/bing-tiles.html +39 -0
- data/misc/openlayers/examples/bing-tiles.js +31 -0
- data/misc/openlayers/examples/bing.html +64 -0
- data/misc/openlayers/examples/bootstrap.html +81 -0
- data/misc/openlayers/examples/bootstrap.js +31 -0
- data/misc/openlayers/examples/boxes-vector.html +59 -0
- data/misc/openlayers/examples/boxes.html +58 -0
- data/misc/openlayers/examples/browser.html +152 -0
- data/misc/openlayers/examples/browser.js +241 -0
- data/misc/openlayers/examples/buffer.html +54 -0
- data/misc/openlayers/examples/cache-read.html +36 -0
- data/misc/openlayers/examples/cache-read.js +36 -0
- data/misc/openlayers/examples/cache-write.html +37 -0
- data/misc/openlayers/examples/cache-write.js +46 -0
- data/misc/openlayers/examples/canvas-hit-detection.html +31 -0
- data/misc/openlayers/examples/canvas-hit-detection.js +88 -0
- data/misc/openlayers/examples/canvas-inspector.html +53 -0
- data/misc/openlayers/examples/canvas-inspector.js +91 -0
- data/misc/openlayers/examples/canvas.html +35 -0
- data/misc/openlayers/examples/canvas.js +57 -0
- data/misc/openlayers/examples/cartodb-geojson.html +71 -0
- data/misc/openlayers/examples/click-handler.html +232 -0
- data/misc/openlayers/examples/click.html +91 -0
- data/misc/openlayers/examples/clientzoom.html +72 -0
- data/misc/openlayers/examples/clientzoom.js +39 -0
- data/misc/openlayers/examples/controls.html +86 -0
- data/misc/openlayers/examples/cql-format.html +54 -0
- data/misc/openlayers/examples/cql-format.js +61 -0
- data/misc/openlayers/examples/cross-origin-xml.html +32 -0
- data/misc/openlayers/examples/cross-origin-xml.js +25 -0
- data/misc/openlayers/examples/cross-origin.html +36 -0
- data/misc/openlayers/examples/cross-origin.js +39 -0
- data/misc/openlayers/examples/custom-control.html +68 -0
- data/misc/openlayers/examples/custom-style.html +66 -0
- data/misc/openlayers/examples/data/4_m_citylights_lg.gif +0 -0
- data/misc/openlayers/examples/data/line.json +10 -0
- data/misc/openlayers/examples/data/point.json +8 -0
- data/misc/openlayers/examples/data/poly.json +9 -0
- data/misc/openlayers/examples/data/roads.json +349 -0
- data/misc/openlayers/examples/data/tazdem.tiff +0 -0
- data/misc/openlayers/examples/debug.html +77 -0
- data/misc/openlayers/examples/document-drag.html +43 -0
- data/misc/openlayers/examples/donut.html +62 -0
- data/misc/openlayers/examples/donut.js +44 -0
- data/misc/openlayers/examples/drag-feature.html +114 -0
- data/misc/openlayers/examples/draw-feature.html +143 -0
- data/misc/openlayers/examples/draw-undo-redo.html +38 -0
- data/misc/openlayers/examples/draw-undo-redo.js +45 -0
- data/misc/openlayers/examples/dynamic-text-layer.html +101 -0
- data/misc/openlayers/examples/editing-methods.html +58 -0
- data/misc/openlayers/examples/editing-methods.js +83 -0
- data/misc/openlayers/examples/editingtoolbar-outside.html +56 -0
- data/misc/openlayers/examples/editingtoolbar.html +55 -0
- data/misc/openlayers/examples/encoded-polyline.html +47 -0
- data/misc/openlayers/examples/events.html +155 -0
- data/misc/openlayers/examples/example-list.html +302 -0
- data/misc/openlayers/examples/example.html +25 -0
- data/misc/openlayers/examples/example.js +23 -0
- data/misc/openlayers/examples/feature-events.html +46 -0
- data/misc/openlayers/examples/feature-events.js +67 -0
- data/misc/openlayers/examples/filter-strategy.html +54 -0
- data/misc/openlayers/examples/filter-strategy.js +84 -0
- data/misc/openlayers/examples/filter.html +107 -0
- data/misc/openlayers/examples/fractional-zoom.html +72 -0
- data/misc/openlayers/examples/fullScreen.html +53 -0
- data/misc/openlayers/examples/fullScreen.js +20 -0
- data/misc/openlayers/examples/fusiontables.html +35 -0
- data/misc/openlayers/examples/fusiontables.js +51 -0
- data/misc/openlayers/examples/game-accel-ball.html +82 -0
- data/misc/openlayers/examples/geojson-reprojected.html +46 -0
- data/misc/openlayers/examples/geojson-reprojected.js +27 -0
- data/misc/openlayers/examples/geojson-reprojected.json +1 -0
- data/misc/openlayers/examples/geojson.html +77 -0
- data/misc/openlayers/examples/geolocation.html +41 -0
- data/misc/openlayers/examples/geolocation.js +112 -0
- data/misc/openlayers/examples/georss-flickr.html +119 -0
- data/misc/openlayers/examples/georss-markers.html +45 -0
- data/misc/openlayers/examples/georss.html +63 -0
- data/misc/openlayers/examples/georss.xml +378 -0
- data/misc/openlayers/examples/getfeature-wfs.html +84 -0
- data/misc/openlayers/examples/getfeatureinfo-control.html +221 -0
- data/misc/openlayers/examples/getfeatureinfo-popup.html +96 -0
- data/misc/openlayers/examples/gml/line.xml +42 -0
- data/misc/openlayers/examples/gml/multipoint.xml +70 -0
- data/misc/openlayers/examples/gml/multipolygon.xml +106 -0
- data/misc/openlayers/examples/gml/owls.xml +156 -0
- data/misc/openlayers/examples/gml/point.xml +42 -0
- data/misc/openlayers/examples/gml/polygon.xml +89 -0
- data/misc/openlayers/examples/gml-layer.html +48 -0
- data/misc/openlayers/examples/google-static.html +39 -0
- data/misc/openlayers/examples/google-static.js +61 -0
- data/misc/openlayers/examples/google-v3-alloverlays.html +33 -0
- data/misc/openlayers/examples/google-v3-alloverlays.js +35 -0
- data/misc/openlayers/examples/google-v3.html +35 -0
- data/misc/openlayers/examples/google-v3.js +39 -0
- data/misc/openlayers/examples/google.html +69 -0
- data/misc/openlayers/examples/graphic-name.html +42 -0
- data/misc/openlayers/examples/graphic-name.js +67 -0
- data/misc/openlayers/examples/graticule.html +116 -0
- data/misc/openlayers/examples/gutter.html +55 -0
- data/misc/openlayers/examples/highlight-feature.html +88 -0
- data/misc/openlayers/examples/hover-handler.html +216 -0
- data/misc/openlayers/examples/image-layer.html +76 -0
- data/misc/openlayers/examples/img/check-round-green.png +0 -0
- data/misc/openlayers/examples/img/check-round-grey.png +0 -0
- data/misc/openlayers/examples/img/list.png +0 -0
- data/misc/openlayers/examples/img/locate.png +0 -0
- data/misc/openlayers/examples/img/marker_shadow.png +0 -0
- data/misc/openlayers/examples/img/minus1.png +0 -0
- data/misc/openlayers/examples/img/mobile-layers.png +0 -0
- data/misc/openlayers/examples/img/mobile-loc.png +0 -0
- data/misc/openlayers/examples/img/mobile-zoombar.png +0 -0
- data/misc/openlayers/examples/img/openlayers.png +0 -0
- data/misc/openlayers/examples/img/popupMatrix.jpg +0 -0
- data/misc/openlayers/examples/img/small.jpg +0 -0
- data/misc/openlayers/examples/img/thinlong.jpg +0 -0
- data/misc/openlayers/examples/img/widelong.jpg +0 -0
- data/misc/openlayers/examples/img/wideshort.jpg +0 -0
- data/misc/openlayers/examples/intersects.html +193 -0
- data/misc/openlayers/examples/kamap.html +45 -0
- data/misc/openlayers/examples/kamap.txt +508 -0
- data/misc/openlayers/examples/kinetic.html +44 -0
- data/misc/openlayers/examples/kinetic.js +27 -0
- data/misc/openlayers/examples/kml/lines.kml +275 -0
- data/misc/openlayers/examples/kml/styles.kml +21 -0
- data/misc/openlayers/examples/kml/sundials.kml +2273 -0
- data/misc/openlayers/examples/kml-layer.html +36 -0
- data/misc/openlayers/examples/kml-layer.js +22 -0
- data/misc/openlayers/examples/kml-pointtrack.html +40 -0
- data/misc/openlayers/examples/kml-pointtrack.js +52 -0
- data/misc/openlayers/examples/kml-track.html +42 -0
- data/misc/openlayers/examples/kml-track.js +40 -0
- data/misc/openlayers/examples/kml-track.kml +3359 -0
- data/misc/openlayers/examples/label-scale.html +34 -0
- data/misc/openlayers/examples/label-scale.js +72 -0
- data/misc/openlayers/examples/late-render.html +48 -0
- data/misc/openlayers/examples/layer-opacity.html +95 -0
- data/misc/openlayers/examples/layerLoadMonitoring.html +135 -0
- data/misc/openlayers/examples/layerswitcher.html +60 -0
- data/misc/openlayers/examples/light-basic.html +35 -0
- data/misc/openlayers/examples/light-basic.js +67 -0
- data/misc/openlayers/examples/lite.html +39 -0
- data/misc/openlayers/examples/mapbox.html +30 -0
- data/misc/openlayers/examples/mapbox.js +21 -0
- data/misc/openlayers/examples/mapguide.html +155 -0
- data/misc/openlayers/examples/mapquest.html +28 -0
- data/misc/openlayers/examples/mapquest.js +36 -0
- data/misc/openlayers/examples/mapserver.html +41 -0
- data/misc/openlayers/examples/mapserver_untiled.html +43 -0
- data/misc/openlayers/examples/marker-shadow.html +152 -0
- data/misc/openlayers/examples/markerResize.html +60 -0
- data/misc/openlayers/examples/markers.html +59 -0
- data/misc/openlayers/examples/markersTextLayer.html +41 -0
- data/misc/openlayers/examples/measure.html +203 -0
- data/misc/openlayers/examples/mobile-base.js +167 -0
- data/misc/openlayers/examples/mobile-drawing.html +52 -0
- data/misc/openlayers/examples/mobile-drawing.js +71 -0
- data/misc/openlayers/examples/mobile-jq.html +76 -0
- data/misc/openlayers/examples/mobile-jq.js +159 -0
- data/misc/openlayers/examples/mobile-layers.html +62 -0
- data/misc/openlayers/examples/mobile-layers.js +71 -0
- data/misc/openlayers/examples/mobile-navigation.html +52 -0
- data/misc/openlayers/examples/mobile-navigation.js +24 -0
- data/misc/openlayers/examples/mobile-sencha.html +184 -0
- data/misc/openlayers/examples/mobile-sencha.js +198 -0
- data/misc/openlayers/examples/mobile-wmts-vienna.css +205 -0
- data/misc/openlayers/examples/mobile-wmts-vienna.html +27 -0
- data/misc/openlayers/examples/mobile-wmts-vienna.js +281 -0
- data/misc/openlayers/examples/mobile.html +56 -0
- data/misc/openlayers/examples/mobile.js +39 -0
- data/misc/openlayers/examples/modify-feature.html +193 -0
- data/misc/openlayers/examples/mouse-position.html +67 -0
- data/misc/openlayers/examples/mousewheel-interval.html +63 -0
- data/misc/openlayers/examples/multiserver.html +52 -0
- data/misc/openlayers/examples/multitouch.html +28 -0
- data/misc/openlayers/examples/mvs.html +129 -0
- data/misc/openlayers/examples/navigation-control.html +44 -0
- data/misc/openlayers/examples/navigation-history.html +62 -0
- data/misc/openlayers/examples/navtoolbar-alwaysZoom.html +85 -0
- data/misc/openlayers/examples/navtoolbar-outsidemap.html +47 -0
- data/misc/openlayers/examples/navtoolbar.html +46 -0
- data/misc/openlayers/examples/offline-storage.html +44 -0
- data/misc/openlayers/examples/offline-storage.js +199 -0
- data/misc/openlayers/examples/openls.html +88 -0
- data/misc/openlayers/examples/ordering.html +221 -0
- data/misc/openlayers/examples/osm/sutton_coldfield.osm +662 -0
- data/misc/openlayers/examples/osm-google.html +32 -0
- data/misc/openlayers/examples/osm-google.js +23 -0
- data/misc/openlayers/examples/osm-grayscale.html +77 -0
- data/misc/openlayers/examples/osm-marker-popup.html +32 -0
- data/misc/openlayers/examples/osm-marker-popup.js +39 -0
- data/misc/openlayers/examples/osm.html +41 -0
- data/misc/openlayers/examples/overviewmap.html +120 -0
- data/misc/openlayers/examples/pan-zoom-panels.html +97 -0
- data/misc/openlayers/examples/panel.html +99 -0
- data/misc/openlayers/examples/point-grid.html +75 -0
- data/misc/openlayers/examples/point-grid.js +33 -0
- data/misc/openlayers/examples/point-track-markers.html +72 -0
- data/misc/openlayers/examples/polar-projections.html +41 -0
- data/misc/openlayers/examples/polar-projections.js +84 -0
- data/misc/openlayers/examples/popupMatrix.html +652 -0
- data/misc/openlayers/examples/proxy.cgi +81 -0
- data/misc/openlayers/examples/regular-polygons.html +177 -0
- data/misc/openlayers/examples/resize-features.html +101 -0
- data/misc/openlayers/examples/restricted-extent.html +77 -0
- data/misc/openlayers/examples/rotate-features.html +113 -0
- data/misc/openlayers/examples/select-feature-multilayer.html +129 -0
- data/misc/openlayers/examples/select-feature-openpopup.html +106 -0
- data/misc/openlayers/examples/select-feature.html +170 -0
- data/misc/openlayers/examples/setextent.html +39 -0
- data/misc/openlayers/examples/simplify-linestring.html +103 -0
- data/misc/openlayers/examples/simplify-linestring.js +599 -0
- data/misc/openlayers/examples/single-tile.html +33 -0
- data/misc/openlayers/examples/single-tile.js +20 -0
- data/misc/openlayers/examples/sld-parser.html +70 -0
- data/misc/openlayers/examples/sld.html +31 -0
- data/misc/openlayers/examples/sld.js +102 -0
- data/misc/openlayers/examples/snap-grid.html +78 -0
- data/misc/openlayers/examples/snap-grid.js +81 -0
- data/misc/openlayers/examples/snap-split.html +281 -0
- data/misc/openlayers/examples/snapping.html +324 -0
- data/misc/openlayers/examples/sos.html +189 -0
- data/misc/openlayers/examples/spherical-mercator.html +120 -0
- data/misc/openlayers/examples/split-feature.html +116 -0
- data/misc/openlayers/examples/strategy-bbox.html +106 -0
- data/misc/openlayers/examples/strategy-cluster-extended.html +125 -0
- data/misc/openlayers/examples/strategy-cluster-extended.js +247 -0
- data/misc/openlayers/examples/strategy-cluster-threshold.html +149 -0
- data/misc/openlayers/examples/strategy-cluster.html +238 -0
- data/misc/openlayers/examples/strategy-paging.html +115 -0
- data/misc/openlayers/examples/style-rules.html +49 -0
- data/misc/openlayers/examples/style-rules.js +99 -0
- data/misc/openlayers/examples/style.css +143 -0
- data/misc/openlayers/examples/style.mobile-jq.css +62 -0
- data/misc/openlayers/examples/stylemap.html +100 -0
- data/misc/openlayers/examples/styles-context.html +117 -0
- data/misc/openlayers/examples/styles-rotation.html +93 -0
- data/misc/openlayers/examples/styles-unique.html +109 -0
- data/misc/openlayers/examples/sundials-spherical-mercator.html +111 -0
- data/misc/openlayers/examples/sundials.html +107 -0
- data/misc/openlayers/examples/symbolizers-fill-stroke-graphic.html +141 -0
- data/misc/openlayers/examples/tasmania/TasmaniaCities.xml +40 -0
- data/misc/openlayers/examples/tasmania/TasmaniaRoads.xml +204 -0
- data/misc/openlayers/examples/tasmania/TasmaniaStateBoundaries.xml +92 -0
- data/misc/openlayers/examples/tasmania/TasmaniaWaterBodies.xml +162 -0
- data/misc/openlayers/examples/tasmania/sld-tasmania.xml +594 -0
- data/misc/openlayers/examples/teleportation.html +76 -0
- data/misc/openlayers/examples/textfile.txt +4 -0
- data/misc/openlayers/examples/tile-origin.html +38 -0
- data/misc/openlayers/examples/tile-origin.js +16 -0
- data/misc/openlayers/examples/tilecache.html +58 -0
- data/misc/openlayers/examples/tms.html +62 -0
- data/misc/openlayers/examples/transform-feature.html +123 -0
- data/misc/openlayers/examples/transition.html +70 -0
- data/misc/openlayers/examples/using-proj4js.html +109 -0
- data/misc/openlayers/examples/using-proj4js.js +132 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/0/0.json +1 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/0/1.json +1 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/0/2.json +1 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/1/0.json +1 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/1/1.json +1 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/1/2.json +1 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/2/0.json +1 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/2/1.json +1 -0
- data/misc/openlayers/examples/utfgrid/bio_utfgrid/1/2/2.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/0/0/0.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/1/0/0.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/1/0/1.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/1/1/0.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/1/1/1.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/0/0.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/0/1.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/0/2.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/0/3.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/1/0.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/1/1.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/1/2.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/1/3.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/2/0.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/2/1.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/2/2.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/2/3.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/3/0.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/3/1.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/3/2.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/geography-class/2/3/3.grid.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/0/0.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/0/1.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/0/2.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/1/0.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/1/1.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/1/2.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/2/0.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/2/1.json +1 -0
- data/misc/openlayers/examples/utfgrid/world_utfgrid/1/2/2.json +1 -0
- data/misc/openlayers/examples/utfgrid-geography-class.html +51 -0
- data/misc/openlayers/examples/utfgrid-geography-class.js +62 -0
- data/misc/openlayers/examples/utfgrid.html +64 -0
- data/misc/openlayers/examples/utfgrid.js +61 -0
- data/misc/openlayers/examples/utfgrid_twogrids.html +51 -0
- data/misc/openlayers/examples/utfgrid_twogrids.js +70 -0
- data/misc/openlayers/examples/vector-features-with-text.html +138 -0
- data/misc/openlayers/examples/vector-features.html +149 -0
- data/misc/openlayers/examples/vector-formats.html +240 -0
- data/misc/openlayers/examples/web-mercator.html +50 -0
- data/misc/openlayers/examples/web-mercator.js +37 -0
- data/misc/openlayers/examples/wfs-filter.html +35 -0
- data/misc/openlayers/examples/wfs-filter.js +48 -0
- data/misc/openlayers/examples/wfs-protocol-transactions.html +104 -0
- data/misc/openlayers/examples/wfs-protocol-transactions.js +106 -0
- data/misc/openlayers/examples/wfs-protocol.html +55 -0
- data/misc/openlayers/examples/wfs-reprojection.html +42 -0
- data/misc/openlayers/examples/wfs-reprojection.js +60 -0
- data/misc/openlayers/examples/wfs-snap-split.html +292 -0
- data/misc/openlayers/examples/wfs-spatial-filter.html +37 -0
- data/misc/openlayers/examples/wfs-spatial-filter.js +36 -0
- data/misc/openlayers/examples/wfs-states.html +34 -0
- data/misc/openlayers/examples/wfs-states.js +35 -0
- data/misc/openlayers/examples/wmc.html +150 -0
- data/misc/openlayers/examples/wms-long-url.html +44 -0
- data/misc/openlayers/examples/wms-long-url.js +26 -0
- data/misc/openlayers/examples/wms-untiled.html +48 -0
- data/misc/openlayers/examples/wms-v13.html +57 -0
- data/misc/openlayers/examples/wms.html +49 -0
- data/misc/openlayers/examples/wmst.html +63 -0
- data/misc/openlayers/examples/wmts-capabilities.html +43 -0
- data/misc/openlayers/examples/wmts-capabilities.js +58 -0
- data/misc/openlayers/examples/wmts-getfeatureinfo.html +74 -0
- data/misc/openlayers/examples/wmts-getfeatureinfo.js +94 -0
- data/misc/openlayers/examples/wmts.html +41 -0
- data/misc/openlayers/examples/wmts.js +35 -0
- data/misc/openlayers/examples/wps-client.html +31 -0
- data/misc/openlayers/examples/wps-client.js +75 -0
- data/misc/openlayers/examples/wps.html +89 -0
- data/misc/openlayers/examples/wps.js +353 -0
- data/misc/openlayers/examples/wrapDateLine.html +73 -0
- data/misc/openlayers/examples/xhtml.html +42 -0
- data/misc/openlayers/examples/xml/features.xml +2 -0
- data/misc/openlayers/examples/xml/georss-flickr.xml +730 -0
- data/misc/openlayers/examples/xml/track1.xml +98 -0
- data/misc/openlayers/examples/xml/wmsdescribelayer.xml +5 -0
- data/misc/openlayers/examples/xml.html +161 -0
- data/misc/openlayers/examples/xyz-esri.html +45 -0
- data/misc/openlayers/examples/yelp-georss.xml +147 -0
- data/misc/openlayers/examples/zoom.html +68 -0
- data/misc/openlayers/examples/zoom.js +34 -0
- data/misc/openlayers/examples/zoomLevels.html +81 -0
- data/misc/openlayers/examples/zoomify.html +70 -0
- data/misc/openlayers/img/blank.gif +0 -0
- data/misc/openlayers/img/cloud-popup-relative.png +0 -0
- data/misc/openlayers/img/drag-rectangle-off.png +0 -0
- data/misc/openlayers/img/drag-rectangle-on.png +0 -0
- data/misc/openlayers/img/east-mini.png +0 -0
- data/misc/openlayers/img/layer-switcher-maximize.png +0 -0
- data/misc/openlayers/img/layer-switcher-minimize.png +0 -0
- data/misc/openlayers/img/marker-blue.png +0 -0
- data/misc/openlayers/img/marker-gold.png +0 -0
- data/misc/openlayers/img/marker-green.png +0 -0
- data/misc/openlayers/img/marker.png +0 -0
- data/misc/openlayers/img/measuring-stick-off.png +0 -0
- data/misc/openlayers/img/measuring-stick-on.png +0 -0
- data/misc/openlayers/img/north-mini.png +0 -0
- data/misc/openlayers/img/panning-hand-off.png +0 -0
- data/misc/openlayers/img/panning-hand-on.png +0 -0
- data/misc/openlayers/img/slider.png +0 -0
- data/misc/openlayers/img/south-mini.png +0 -0
- data/misc/openlayers/img/west-mini.png +0 -0
- data/misc/openlayers/img/zoom-minus-mini.png +0 -0
- data/misc/openlayers/img/zoom-plus-mini.png +0 -0
- data/misc/openlayers/img/zoom-world-mini.png +0 -0
- data/misc/openlayers/img/zoombar.png +0 -0
- data/misc/openlayers/lib/Firebug/errorIcon.png +0 -0
- data/misc/openlayers/lib/Firebug/firebug.css +209 -0
- data/misc/openlayers/lib/Firebug/firebug.html +23 -0
- data/misc/openlayers/lib/Firebug/firebug.js +674 -0
- data/misc/openlayers/lib/Firebug/firebugx.js +10 -0
- data/misc/openlayers/lib/Firebug/infoIcon.png +0 -0
- data/misc/openlayers/lib/Firebug/license.txt +30 -0
- data/misc/openlayers/lib/Firebug/readme.txt +13 -0
- data/misc/openlayers/lib/Firebug/warningIcon.png +0 -0
- data/misc/openlayers/lib/OpenLayers/Animation.js +102 -0
- data/misc/openlayers/lib/OpenLayers/BaseTypes/Bounds.js +837 -0
- data/misc/openlayers/lib/OpenLayers/BaseTypes/Class.js +121 -0
- data/misc/openlayers/lib/OpenLayers/BaseTypes/Date.js +123 -0
- data/misc/openlayers/lib/OpenLayers/BaseTypes/Element.js +189 -0
- data/misc/openlayers/lib/OpenLayers/BaseTypes/LonLat.js +215 -0
- data/misc/openlayers/lib/OpenLayers/BaseTypes/Pixel.js +143 -0
- data/misc/openlayers/lib/OpenLayers/BaseTypes/Size.js +89 -0
- data/misc/openlayers/lib/OpenLayers/BaseTypes.js +463 -0
- data/misc/openlayers/lib/OpenLayers/Console.js +250 -0
- data/misc/openlayers/lib/OpenLayers/Control/ArgParser.js +182 -0
- data/misc/openlayers/lib/OpenLayers/Control/Attribution.js +104 -0
- data/misc/openlayers/lib/OpenLayers/Control/Button.js +44 -0
- data/misc/openlayers/lib/OpenLayers/Control/CacheRead.js +156 -0
- data/misc/openlayers/lib/OpenLayers/Control/CacheWrite.js +257 -0
- data/misc/openlayers/lib/OpenLayers/Control/DragFeature.js +366 -0
- data/misc/openlayers/lib/OpenLayers/Control/DragPan.js +156 -0
- data/misc/openlayers/lib/OpenLayers/Control/DrawFeature.js +229 -0
- data/misc/openlayers/lib/OpenLayers/Control/EditingToolbar.js +81 -0
- data/misc/openlayers/lib/OpenLayers/Control/Geolocate.js +192 -0
- data/misc/openlayers/lib/OpenLayers/Control/GetFeature.js +597 -0
- data/misc/openlayers/lib/OpenLayers/Control/Graticule.js +377 -0
- data/misc/openlayers/lib/OpenLayers/Control/KeyboardDefaults.js +142 -0
- data/misc/openlayers/lib/OpenLayers/Control/LayerSwitcher.js +521 -0
- data/misc/openlayers/lib/OpenLayers/Control/Measure.js +379 -0
- data/misc/openlayers/lib/OpenLayers/Control/ModifyFeature.js +835 -0
- data/misc/openlayers/lib/OpenLayers/Control/MousePosition.js +227 -0
- data/misc/openlayers/lib/OpenLayers/Control/NavToolbar.js +57 -0
- data/misc/openlayers/lib/OpenLayers/Control/Navigation.js +345 -0
- data/misc/openlayers/lib/OpenLayers/Control/NavigationHistory.js +423 -0
- data/misc/openlayers/lib/OpenLayers/Control/OverviewMap.js +750 -0
- data/misc/openlayers/lib/OpenLayers/Control/Pan.js +95 -0
- data/misc/openlayers/lib/OpenLayers/Control/PanPanel.js +73 -0
- data/misc/openlayers/lib/OpenLayers/Control/PanZoom.js +233 -0
- data/misc/openlayers/lib/OpenLayers/Control/PanZoomBar.js +408 -0
- data/misc/openlayers/lib/OpenLayers/Control/Panel.js +431 -0
- data/misc/openlayers/lib/OpenLayers/Control/Permalink.js +257 -0
- data/misc/openlayers/lib/OpenLayers/Control/PinchZoom.js +157 -0
- data/misc/openlayers/lib/OpenLayers/Control/SLDSelect.js +567 -0
- data/misc/openlayers/lib/OpenLayers/Control/Scale.js +100 -0
- data/misc/openlayers/lib/OpenLayers/Control/ScaleLine.js +220 -0
- data/misc/openlayers/lib/OpenLayers/Control/SelectFeature.js +643 -0
- data/misc/openlayers/lib/OpenLayers/Control/Snapping.js +560 -0
- data/misc/openlayers/lib/OpenLayers/Control/Split.js +494 -0
- data/misc/openlayers/lib/OpenLayers/Control/TouchNavigation.js +182 -0
- data/misc/openlayers/lib/OpenLayers/Control/TransformFeature.js +624 -0
- data/misc/openlayers/lib/OpenLayers/Control/UTFGrid.js +240 -0
- data/misc/openlayers/lib/OpenLayers/Control/WMSGetFeatureInfo.js +532 -0
- data/misc/openlayers/lib/OpenLayers/Control/WMTSGetFeatureInfo.js +400 -0
- data/misc/openlayers/lib/OpenLayers/Control/Zoom.js +138 -0
- data/misc/openlayers/lib/OpenLayers/Control/ZoomBox.js +129 -0
- data/misc/openlayers/lib/OpenLayers/Control/ZoomIn.js +29 -0
- data/misc/openlayers/lib/OpenLayers/Control/ZoomOut.js +29 -0
- data/misc/openlayers/lib/OpenLayers/Control/ZoomPanel.js +54 -0
- data/misc/openlayers/lib/OpenLayers/Control/ZoomToMaxExtent.js +35 -0
- data/misc/openlayers/lib/OpenLayers/Control.js +371 -0
- data/misc/openlayers/lib/OpenLayers/Events/buttonclick.js +206 -0
- data/misc/openlayers/lib/OpenLayers/Events/featureclick.js +321 -0
- data/misc/openlayers/lib/OpenLayers/Events.js +1170 -0
- data/misc/openlayers/lib/OpenLayers/Feature/Vector.js +510 -0
- data/misc/openlayers/lib/OpenLayers/Feature.js +225 -0
- data/misc/openlayers/lib/OpenLayers/Filter/Comparison.js +267 -0
- data/misc/openlayers/lib/OpenLayers/Filter/FeatureId.js +87 -0
- data/misc/openlayers/lib/OpenLayers/Filter/Function.js +49 -0
- data/misc/openlayers/lib/OpenLayers/Filter/Logical.js +121 -0
- data/misc/openlayers/lib/OpenLayers/Filter/Spatial.js +122 -0
- data/misc/openlayers/lib/OpenLayers/Filter.js +87 -0
- data/misc/openlayers/lib/OpenLayers/Format/ArcXML/Features.js +46 -0
- data/misc/openlayers/lib/OpenLayers/Format/ArcXML.js +1028 -0
- data/misc/openlayers/lib/OpenLayers/Format/Atom.js +712 -0
- data/misc/openlayers/lib/OpenLayers/Format/CQL.js +452 -0
- data/misc/openlayers/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js +240 -0
- data/misc/openlayers/lib/OpenLayers/Format/CSWGetDomain.js +34 -0
- data/misc/openlayers/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js +457 -0
- data/misc/openlayers/lib/OpenLayers/Format/CSWGetRecords.js +34 -0
- data/misc/openlayers/lib/OpenLayers/Format/Context.js +334 -0
- data/misc/openlayers/lib/OpenLayers/Format/EncodedPolyline.js +557 -0
- data/misc/openlayers/lib/OpenLayers/Format/Filter/v1.js +504 -0
- data/misc/openlayers/lib/OpenLayers/Format/Filter/v1_0_0.js +184 -0
- data/misc/openlayers/lib/OpenLayers/Format/Filter/v1_1_0.js +222 -0
- data/misc/openlayers/lib/OpenLayers/Format/Filter.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Format/GML/Base.js +645 -0
- data/misc/openlayers/lib/OpenLayers/Format/GML/v2.js +193 -0
- data/misc/openlayers/lib/OpenLayers/Format/GML/v3.js +477 -0
- data/misc/openlayers/lib/OpenLayers/Format/GML.js +923 -0
- data/misc/openlayers/lib/OpenLayers/Format/GPX.js +385 -0
- data/misc/openlayers/lib/OpenLayers/Format/GeoJSON.js +716 -0
- data/misc/openlayers/lib/OpenLayers/Format/GeoRSS.js +409 -0
- data/misc/openlayers/lib/OpenLayers/Format/JSON.js +398 -0
- data/misc/openlayers/lib/OpenLayers/Format/KML.js +1517 -0
- data/misc/openlayers/lib/OpenLayers/Format/OGCExceptionReport.js +108 -0
- data/misc/openlayers/lib/OpenLayers/Format/OSM.js +465 -0
- data/misc/openlayers/lib/OpenLayers/Format/OWSCommon/v1.js +318 -0
- data/misc/openlayers/lib/OpenLayers/Format/OWSCommon/v1_0_0.js +62 -0
- data/misc/openlayers/lib/OpenLayers/Format/OWSCommon/v1_1_0.js +116 -0
- data/misc/openlayers/lib/OpenLayers/Format/OWSCommon.js +78 -0
- data/misc/openlayers/lib/OpenLayers/Format/OWSContext/v0_3_1.js +595 -0
- data/misc/openlayers/lib/OpenLayers/Format/OWSContext.js +86 -0
- data/misc/openlayers/lib/OpenLayers/Format/QueryStringFilter.js +183 -0
- data/misc/openlayers/lib/OpenLayers/Format/SLD/v1.js +1309 -0
- data/misc/openlayers/lib/OpenLayers/Format/SLD/v1_0_0.js +46 -0
- data/misc/openlayers/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js +149 -0
- data/misc/openlayers/lib/OpenLayers/Format/SLD.js +81 -0
- data/misc/openlayers/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js +158 -0
- data/misc/openlayers/lib/OpenLayers/Format/SOSCapabilities.js +48 -0
- data/misc/openlayers/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js +190 -0
- data/misc/openlayers/lib/OpenLayers/Format/SOSGetObservation.js +302 -0
- data/misc/openlayers/lib/OpenLayers/Format/Text.js +151 -0
- data/misc/openlayers/lib/OpenLayers/Format/WCSCapabilities/v1.js +55 -0
- data/misc/openlayers/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js +170 -0
- data/misc/openlayers/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js +109 -0
- data/misc/openlayers/lib/OpenLayers/Format/WCSCapabilities.js +47 -0
- data/misc/openlayers/lib/OpenLayers/Format/WCSGetCoverage.js +199 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFS.js +223 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFSCapabilities/v1.js +129 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js +115 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js +63 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFSCapabilities.js +47 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFSDescribeFeatureType.js +234 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFST/v1.js +446 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFST/v1_0_0.js +174 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFST/v1_1_0.js +189 -0
- data/misc/openlayers/lib/OpenLayers/Format/WFST.js +34 -0
- data/misc/openlayers/lib/OpenLayers/Format/WKT.js +392 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMC/v1.js +1267 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMC/v1_0_0.js +104 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMC/v1_1_0.js +149 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMC.js +182 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1.js +368 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_1.js +122 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js +57 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js +60 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js +85 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_3.js +128 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js +30 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSCapabilities.js +56 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js +122 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSDescribeLayer.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMSGetFeatureInfo.js +296 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js +251 -0
- data/misc/openlayers/lib/OpenLayers/Format/WMTSCapabilities.js +230 -0
- data/misc/openlayers/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js +119 -0
- data/misc/openlayers/lib/OpenLayers/Format/WPSCapabilities.js +48 -0
- data/misc/openlayers/lib/OpenLayers/Format/WPSDescribeProcess.js +185 -0
- data/misc/openlayers/lib/OpenLayers/Format/WPSExecute.js +395 -0
- data/misc/openlayers/lib/OpenLayers/Format/XLS/v1.js +304 -0
- data/misc/openlayers/lib/OpenLayers/Format/XLS/v1_1_0.js +48 -0
- data/misc/openlayers/lib/OpenLayers/Format/XLS.js +68 -0
- data/misc/openlayers/lib/OpenLayers/Format/XML/VersionedOGC.js +212 -0
- data/misc/openlayers/lib/OpenLayers/Format/XML.js +897 -0
- data/misc/openlayers/lib/OpenLayers/Format.js +123 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/Collection.js +563 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/Curve.js +89 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/LineString.js +646 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/LinearRing.js +433 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/MultiLineString.js +258 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/MultiPoint.js +66 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/MultiPolygon.js +42 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/Point.js +283 -0
- data/misc/openlayers/lib/OpenLayers/Geometry/Polygon.js +255 -0
- data/misc/openlayers/lib/OpenLayers/Geometry.js +500 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Box.js +244 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Click.js +505 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Drag.js +547 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Feature.js +434 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Hover.js +180 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Keyboard.js +117 -0
- data/misc/openlayers/lib/OpenLayers/Handler/MouseWheel.js +264 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Path.js +543 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Pinch.js +239 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Point.js +556 -0
- data/misc/openlayers/lib/OpenLayers/Handler/Polygon.js +305 -0
- data/misc/openlayers/lib/OpenLayers/Handler/RegularPolygon.js +429 -0
- data/misc/openlayers/lib/OpenLayers/Handler.js +325 -0
- data/misc/openlayers/lib/OpenLayers/Icon.js +243 -0
- data/misc/openlayers/lib/OpenLayers/Kinetic.js +178 -0
- data/misc/openlayers/lib/OpenLayers/Lang/ar.js +32 -0
- data/misc/openlayers/lib/OpenLayers/Lang/be-tarask.js +54 -0
- data/misc/openlayers/lib/OpenLayers/Lang/bg.js +25 -0
- data/misc/openlayers/lib/OpenLayers/Lang/br.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/ca.js +89 -0
- data/misc/openlayers/lib/OpenLayers/Lang/cs-CZ.js +45 -0
- data/misc/openlayers/lib/OpenLayers/Lang/da-DK.js +80 -0
- data/misc/openlayers/lib/OpenLayers/Lang/de.js +55 -0
- data/misc/openlayers/lib/OpenLayers/Lang/el.js +19 -0
- data/misc/openlayers/lib/OpenLayers/Lang/en-CA.js +21 -0
- data/misc/openlayers/lib/OpenLayers/Lang/en.js +89 -0
- data/misc/openlayers/lib/OpenLayers/Lang/es.js +90 -0
- data/misc/openlayers/lib/OpenLayers/Lang/fi.js +32 -0
- data/misc/openlayers/lib/OpenLayers/Lang/fr.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/fur.js +35 -0
- data/misc/openlayers/lib/OpenLayers/Lang/gl.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/gsw.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/hr.js +37 -0
- data/misc/openlayers/lib/OpenLayers/Lang/hsb.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/hu.js +54 -0
- data/misc/openlayers/lib/OpenLayers/Lang/ia.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/id.js +54 -0
- data/misc/openlayers/lib/OpenLayers/Lang/io.js +19 -0
- data/misc/openlayers/lib/OpenLayers/Lang/is.js +27 -0
- data/misc/openlayers/lib/OpenLayers/Lang/it.js +80 -0
- data/misc/openlayers/lib/OpenLayers/Lang/ja.js +54 -0
- data/misc/openlayers/lib/OpenLayers/Lang/km.js +23 -0
- data/misc/openlayers/lib/OpenLayers/Lang/ksh.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/lt.js +47 -0
- data/misc/openlayers/lib/OpenLayers/Lang/nb.js +82 -0
- data/misc/openlayers/lib/OpenLayers/Lang/nds.js +37 -0
- data/misc/openlayers/lib/OpenLayers/Lang/nl.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/nn.js +19 -0
- data/misc/openlayers/lib/OpenLayers/Lang/oc.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/pl.js +89 -0
- data/misc/openlayers/lib/OpenLayers/Lang/pt-BR.js +54 -0
- data/misc/openlayers/lib/OpenLayers/Lang/pt.js +55 -0
- data/misc/openlayers/lib/OpenLayers/Lang/ro.js +69 -0
- data/misc/openlayers/lib/OpenLayers/Lang/ru.js +56 -0
- data/misc/openlayers/lib/OpenLayers/Lang/sk.js +44 -0
- data/misc/openlayers/lib/OpenLayers/Lang/sv-SE.js +45 -0
- data/misc/openlayers/lib/OpenLayers/Lang/te.js +27 -0
- data/misc/openlayers/lib/OpenLayers/Lang/vi.js +53 -0
- data/misc/openlayers/lib/OpenLayers/Lang/zh-CN.js +80 -0
- data/misc/openlayers/lib/OpenLayers/Lang/zh-TW.js +81 -0
- data/misc/openlayers/lib/OpenLayers/Lang.js +134 -0
- data/misc/openlayers/lib/OpenLayers/Layer/ArcGIS93Rest.js +225 -0
- data/misc/openlayers/lib/OpenLayers/Layer/ArcGISCache.js +480 -0
- data/misc/openlayers/lib/OpenLayers/Layer/ArcIMS.js +425 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Bing.js +333 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Boxes.js +76 -0
- data/misc/openlayers/lib/OpenLayers/Layer/EventPane.js +441 -0
- data/misc/openlayers/lib/OpenLayers/Layer/FixedZoomLevels.js +319 -0
- data/misc/openlayers/lib/OpenLayers/Layer/GeoRSS.js +265 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Google/v3.js +351 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Google.js +809 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Grid.js +1343 -0
- data/misc/openlayers/lib/OpenLayers/Layer/HTTPRequest.js +230 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Image.js +259 -0
- data/misc/openlayers/lib/OpenLayers/Layer/KaMap.js +192 -0
- data/misc/openlayers/lib/OpenLayers/Layer/KaMapCache.js +143 -0
- data/misc/openlayers/lib/OpenLayers/Layer/MapGuide.js +443 -0
- data/misc/openlayers/lib/OpenLayers/Layer/MapServer.js +181 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Markers.js +187 -0
- data/misc/openlayers/lib/OpenLayers/Layer/OSM.js +123 -0
- data/misc/openlayers/lib/OpenLayers/Layer/PointGrid.js +299 -0
- data/misc/openlayers/lib/OpenLayers/Layer/PointTrack.js +125 -0
- data/misc/openlayers/lib/OpenLayers/Layer/SphericalMercator.js +146 -0
- data/misc/openlayers/lib/OpenLayers/Layer/TMS.js +202 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Text.js +267 -0
- data/misc/openlayers/lib/OpenLayers/Layer/TileCache.js +140 -0
- data/misc/openlayers/lib/OpenLayers/Layer/UTFGrid.js +184 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Vector/RootContainer.js +154 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Vector.js +1007 -0
- data/misc/openlayers/lib/OpenLayers/Layer/WMS.js +267 -0
- data/misc/openlayers/lib/OpenLayers/Layer/WMTS.js +510 -0
- data/misc/openlayers/lib/OpenLayers/Layer/WorldWind.js +105 -0
- data/misc/openlayers/lib/OpenLayers/Layer/XYZ.js +172 -0
- data/misc/openlayers/lib/OpenLayers/Layer/Zoomify.js +260 -0
- data/misc/openlayers/lib/OpenLayers/Layer.js +1377 -0
- data/misc/openlayers/lib/OpenLayers/Map.js +2867 -0
- data/misc/openlayers/lib/OpenLayers/Marker/Box.js +120 -0
- data/misc/openlayers/lib/OpenLayers/Marker.js +241 -0
- data/misc/openlayers/lib/OpenLayers/Popup/Anchored.js +195 -0
- data/misc/openlayers/lib/OpenLayers/Popup/Framed.js +343 -0
- data/misc/openlayers/lib/OpenLayers/Popup/FramedCloud.js +227 -0
- data/misc/openlayers/lib/OpenLayers/Popup.js +1065 -0
- data/misc/openlayers/lib/OpenLayers/Projection.js +322 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/CSW/v2_0_2.js +127 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/CSW.js +30 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/HTTP.js +580 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/SOS/v1_0_0.js +133 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/SOS.js +33 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/Script.js +377 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/WFS/v1.js +453 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/WFS/v1_0_0.js +44 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/WFS/v1_1_0.js +68 -0
- data/misc/openlayers/lib/OpenLayers/Protocol/WFS.js +86 -0
- data/misc/openlayers/lib/OpenLayers/Protocol.js +291 -0
- data/misc/openlayers/lib/OpenLayers/Renderer/Canvas.js +906 -0
- data/misc/openlayers/lib/OpenLayers/Renderer/Elements.js +1053 -0
- data/misc/openlayers/lib/OpenLayers/Renderer/SVG.js +1012 -0
- data/misc/openlayers/lib/OpenLayers/Renderer/VML.js +985 -0
- data/misc/openlayers/lib/OpenLayers/Renderer.js +432 -0
- data/misc/openlayers/lib/OpenLayers/Request/XMLHttpRequest.js +458 -0
- data/misc/openlayers/lib/OpenLayers/Request.js +429 -0
- data/misc/openlayers/lib/OpenLayers/Rule.js +236 -0
- data/misc/openlayers/lib/OpenLayers/SingleFile.js +78 -0
- data/misc/openlayers/lib/OpenLayers/Spherical.js +67 -0
- data/misc/openlayers/lib/OpenLayers/Strategy/BBOX.js +290 -0
- data/misc/openlayers/lib/OpenLayers/Strategy/Cluster.js +283 -0
- data/misc/openlayers/lib/OpenLayers/Strategy/Filter.js +159 -0
- data/misc/openlayers/lib/OpenLayers/Strategy/Fixed.js +135 -0
- data/misc/openlayers/lib/OpenLayers/Strategy/Paging.js +233 -0
- data/misc/openlayers/lib/OpenLayers/Strategy/Refresh.js +141 -0
- data/misc/openlayers/lib/OpenLayers/Strategy/Save.js +231 -0
- data/misc/openlayers/lib/OpenLayers/Strategy.js +121 -0
- data/misc/openlayers/lib/OpenLayers/Style.js +448 -0
- data/misc/openlayers/lib/OpenLayers/Style2.js +112 -0
- data/misc/openlayers/lib/OpenLayers/StyleMap.js +161 -0
- data/misc/openlayers/lib/OpenLayers/Symbolizer/Line.js +74 -0
- data/misc/openlayers/lib/OpenLayers/Symbolizer/Point.js +157 -0
- data/misc/openlayers/lib/OpenLayers/Symbolizer/Polygon.js +88 -0
- data/misc/openlayers/lib/OpenLayers/Symbolizer/Raster.js +34 -0
- data/misc/openlayers/lib/OpenLayers/Symbolizer/Text.js +70 -0
- data/misc/openlayers/lib/OpenLayers/Symbolizer.js +55 -0
- data/misc/openlayers/lib/OpenLayers/Tile/Image/IFrame.js +233 -0
- data/misc/openlayers/lib/OpenLayers/Tile/Image.js +510 -0
- data/misc/openlayers/lib/OpenLayers/Tile/UTFGrid.js +252 -0
- data/misc/openlayers/lib/OpenLayers/Tile.js +292 -0
- data/misc/openlayers/lib/OpenLayers/TileManager.js +462 -0
- data/misc/openlayers/lib/OpenLayers/Tween.js +361 -0
- data/misc/openlayers/lib/OpenLayers/Util/vendorPrefix.js +131 -0
- data/misc/openlayers/lib/OpenLayers/Util.js +1773 -0
- data/misc/openlayers/lib/OpenLayers/WPSClient.js +223 -0
- data/misc/openlayers/lib/OpenLayers/WPSProcess.js +501 -0
- data/misc/openlayers/lib/OpenLayers.js +429 -0
- data/misc/openlayers/lib/Rico/Color.js +253 -0
- data/misc/openlayers/lib/Rico/Corner.js +339 -0
- data/misc/openlayers/lib/Rico/license.js +19 -0
- data/misc/openlayers/lib/deprecated.js +5842 -0
- data/misc/openlayers/license.txt +27 -0
- data/misc/openlayers/licenses/APACHE-2.0.txt +202 -0
- data/misc/openlayers/licenses/BSD-LICENSE.txt +28 -0
- data/misc/openlayers/licenses/MIT-LICENSE.txt +18 -0
- data/misc/openlayers/notes/2.12.md +391 -0
- data/misc/openlayers/notes/2.13.md +159 -0
- data/misc/openlayers/readme.md +79 -0
- data/misc/openlayers/tests/Animation.html +96 -0
- data/misc/openlayers/tests/BaseTypes/Bounds.html +738 -0
- data/misc/openlayers/tests/BaseTypes/Class.html +350 -0
- data/misc/openlayers/tests/BaseTypes/Date.html +191 -0
- data/misc/openlayers/tests/BaseTypes/Element.html +195 -0
- data/misc/openlayers/tests/BaseTypes/LonLat.html +241 -0
- data/misc/openlayers/tests/BaseTypes/Pixel.html +123 -0
- data/misc/openlayers/tests/BaseTypes/Size.html +67 -0
- data/misc/openlayers/tests/BaseTypes.html +387 -0
- data/misc/openlayers/tests/Console.html +39 -0
- data/misc/openlayers/tests/Control/ArgParser.html +26 -0
- data/misc/openlayers/tests/Control/Attribution.html +60 -0
- data/misc/openlayers/tests/Control/Button.html +17 -0
- data/misc/openlayers/tests/Control/CacheRead.html +108 -0
- data/misc/openlayers/tests/Control/CacheWrite.html +90 -0
- data/misc/openlayers/tests/Control/DragFeature.html +383 -0
- data/misc/openlayers/tests/Control/DragPan.html +104 -0
- data/misc/openlayers/tests/Control/DrawFeature.html +160 -0
- data/misc/openlayers/tests/Control/EditingToolbar.html +33 -0
- data/misc/openlayers/tests/Control/Geolocate.html +129 -0
- data/misc/openlayers/tests/Control/GetFeature.html +177 -0
- data/misc/openlayers/tests/Control/Graticule.html +66 -0
- data/misc/openlayers/tests/Control/KeyboardDefaults.html +173 -0
- data/misc/openlayers/tests/Control/LayerSwitcher.html +249 -0
- data/misc/openlayers/tests/Control/Measure.html +386 -0
- data/misc/openlayers/tests/Control/ModifyFeature.html +828 -0
- data/misc/openlayers/tests/Control/MousePosition.html +109 -0
- data/misc/openlayers/tests/Control/NavToolbar.html +45 -0
- data/misc/openlayers/tests/Control/Navigation.html +200 -0
- data/misc/openlayers/tests/Control/NavigationHistory.html +245 -0
- data/misc/openlayers/tests/Control/OverviewMap.html +266 -0
- data/misc/openlayers/tests/Control/Pan.html +201 -0
- data/misc/openlayers/tests/Control/PanPanel.html +61 -0
- data/misc/openlayers/tests/Control/PanZoom.html +244 -0
- data/misc/openlayers/tests/Control/PanZoomBar.html +245 -0
- data/misc/openlayers/tests/Control/Panel.html +382 -0
- data/misc/openlayers/tests/Control/Permalink.html +453 -0
- data/misc/openlayers/tests/Control/PinchZoom.html +134 -0
- data/misc/openlayers/tests/Control/SLDSelect.html +239 -0
- data/misc/openlayers/tests/Control/Scale.html +54 -0
- data/misc/openlayers/tests/Control/ScaleLine.html +187 -0
- data/misc/openlayers/tests/Control/SelectFeature.html +632 -0
- data/misc/openlayers/tests/Control/Snapping.html +448 -0
- data/misc/openlayers/tests/Control/Split.html +319 -0
- data/misc/openlayers/tests/Control/TouchNavigation.html +155 -0
- data/misc/openlayers/tests/Control/TransformFeature.html +129 -0
- data/misc/openlayers/tests/Control/UTFGrid.html +120 -0
- data/misc/openlayers/tests/Control/WMSGetFeatureInfo.html +644 -0
- data/misc/openlayers/tests/Control/WMTSGetFeatureInfo.html +334 -0
- data/misc/openlayers/tests/Control/Zoom.html +83 -0
- data/misc/openlayers/tests/Control/ZoomBox.html +54 -0
- data/misc/openlayers/tests/Control/ZoomIn.html +101 -0
- data/misc/openlayers/tests/Control/ZoomOut.html +100 -0
- data/misc/openlayers/tests/Control/ZoomToMaxExtent.html +102 -0
- data/misc/openlayers/tests/Control.html +107 -0
- data/misc/openlayers/tests/Events/buttonclick.html +214 -0
- data/misc/openlayers/tests/Events/featureclick.html +91 -0
- data/misc/openlayers/tests/Events.html +487 -0
- data/misc/openlayers/tests/Extras.html +21 -0
- data/misc/openlayers/tests/Feature/Vector.html +170 -0
- data/misc/openlayers/tests/Feature.html +205 -0
- data/misc/openlayers/tests/Filter/Comparison.html +373 -0
- data/misc/openlayers/tests/Filter/FeatureId.html +67 -0
- data/misc/openlayers/tests/Filter/Logical.html +144 -0
- data/misc/openlayers/tests/Filter/Spatial.html +112 -0
- data/misc/openlayers/tests/Filter.html +31 -0
- data/misc/openlayers/tests/Format/ArcXML/Features.html +69 -0
- data/misc/openlayers/tests/Format/ArcXML.html +277 -0
- data/misc/openlayers/tests/Format/Atom.html +450 -0
- data/misc/openlayers/tests/Format/CQL.html +364 -0
- data/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html +56 -0
- data/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.js +18 -0
- data/misc/openlayers/tests/Format/CSWGetDomain.html +23 -0
- data/misc/openlayers/tests/Format/CSWGetRecords/v2_0_2.html +88 -0
- data/misc/openlayers/tests/Format/CSWGetRecords/v2_0_2.js +50 -0
- data/misc/openlayers/tests/Format/CSWGetRecords.html +23 -0
- data/misc/openlayers/tests/Format/EncodedPolyline.html +372 -0
- data/misc/openlayers/tests/Format/Filter/v1.html +404 -0
- data/misc/openlayers/tests/Format/Filter/v1_0_0.html +295 -0
- data/misc/openlayers/tests/Format/Filter/v1_1_0.html +402 -0
- data/misc/openlayers/tests/Format/Filter.html +21 -0
- data/misc/openlayers/tests/Format/GML/cases.js +232 -0
- data/misc/openlayers/tests/Format/GML/v2.html +684 -0
- data/misc/openlayers/tests/Format/GML/v3.html +828 -0
- data/misc/openlayers/tests/Format/GML.html +462 -0
- data/misc/openlayers/tests/Format/GPX.html +179 -0
- data/misc/openlayers/tests/Format/GeoJSON.html +468 -0
- data/misc/openlayers/tests/Format/GeoRSS.html +122 -0
- data/misc/openlayers/tests/Format/JSON.html +53 -0
- data/misc/openlayers/tests/Format/KML.html +1437 -0
- data/misc/openlayers/tests/Format/OGCExceptionReport.html +100 -0
- data/misc/openlayers/tests/Format/OSM.html +115 -0
- data/misc/openlayers/tests/Format/OWSCommon/v1_0_0.html +34 -0
- data/misc/openlayers/tests/Format/OWSCommon/v1_1_0.html +34 -0
- data/misc/openlayers/tests/Format/OWSContext/v0_3_1.html +278 -0
- data/misc/openlayers/tests/Format/QueryStringFilter.html +306 -0
- data/misc/openlayers/tests/Format/SLD/v1_0_0.html +1028 -0
- data/misc/openlayers/tests/Format/SLD/v1_0_0_GeoServer.html +228 -0
- data/misc/openlayers/tests/Format/SLD.html +36 -0
- data/misc/openlayers/tests/Format/SOSCapabilities/v1_0_0.html +80 -0
- data/misc/openlayers/tests/Format/SOSCapabilities/v1_0_0.js +484 -0
- data/misc/openlayers/tests/Format/SOSGetFeatureOfInterest.html +80 -0
- data/misc/openlayers/tests/Format/SOSGetObservation.html +183 -0
- data/misc/openlayers/tests/Format/Text.html +49 -0
- data/misc/openlayers/tests/Format/WCSCapabilities/v1.html +87 -0
- data/misc/openlayers/tests/Format/WCSCapabilities.html +43 -0
- data/misc/openlayers/tests/Format/WCSGetCoverage.html +80 -0
- data/misc/openlayers/tests/Format/WFS.html +81 -0
- data/misc/openlayers/tests/Format/WFSCapabilities/v1.html +179 -0
- data/misc/openlayers/tests/Format/WFSCapabilities.html +43 -0
- data/misc/openlayers/tests/Format/WFSDescribeFeatureType.html +436 -0
- data/misc/openlayers/tests/Format/WFST/v1.html +455 -0
- data/misc/openlayers/tests/Format/WFST/v1_0_0.html +135 -0
- data/misc/openlayers/tests/Format/WFST/v1_1_0.html +236 -0
- data/misc/openlayers/tests/Format/WFST.html +23 -0
- data/misc/openlayers/tests/Format/WKT.html +297 -0
- data/misc/openlayers/tests/Format/WMC/v1.html +266 -0
- data/misc/openlayers/tests/Format/WMC/v1_1_0.html +86 -0
- data/misc/openlayers/tests/Format/WMC.html +315 -0
- data/misc/openlayers/tests/Format/WMSCapabilities/v1_1_1.html +5209 -0
- data/misc/openlayers/tests/Format/WMSCapabilities/v1_1_1_WMSC.html +348 -0
- data/misc/openlayers/tests/Format/WMSCapabilities/v1_3_0.html +614 -0
- data/misc/openlayers/tests/Format/WMSCapabilities.html +20 -0
- data/misc/openlayers/tests/Format/WMSDescribeLayer.html +65 -0
- data/misc/openlayers/tests/Format/WMSGetFeatureInfo.html +319 -0
- data/misc/openlayers/tests/Format/WMTSCapabilities/v1_0_0.html +1042 -0
- data/misc/openlayers/tests/Format/WMTSCapabilities.html +20 -0
- data/misc/openlayers/tests/Format/WPSCapabilities/v1_0_0.html +30 -0
- data/misc/openlayers/tests/Format/WPSCapabilities/v1_0_0.js +112 -0
- data/misc/openlayers/tests/Format/WPSDescribeProcess.html +206 -0
- data/misc/openlayers/tests/Format/WPSExecute.html +549 -0
- data/misc/openlayers/tests/Format/XLS/v1_1_0.html +98 -0
- data/misc/openlayers/tests/Format/XML/VersionedOGC.html +51 -0
- data/misc/openlayers/tests/Format/XML.html +900 -0
- data/misc/openlayers/tests/Format.html +23 -0
- data/misc/openlayers/tests/Geometry/Collection.html +431 -0
- data/misc/openlayers/tests/Geometry/Curve.html +157 -0
- data/misc/openlayers/tests/Geometry/LineString.html +443 -0
- data/misc/openlayers/tests/Geometry/LinearRing.html +362 -0
- data/misc/openlayers/tests/Geometry/MultiLineString.html +267 -0
- data/misc/openlayers/tests/Geometry/MultiPoint.html +130 -0
- data/misc/openlayers/tests/Geometry/MultiPolygon.html +34 -0
- data/misc/openlayers/tests/Geometry/Point.html +244 -0
- data/misc/openlayers/tests/Geometry/Polygon.html +420 -0
- data/misc/openlayers/tests/Geometry.html +356 -0
- data/misc/openlayers/tests/Handler/Box.html +106 -0
- data/misc/openlayers/tests/Handler/Click.html +735 -0
- data/misc/openlayers/tests/Handler/Drag.html +603 -0
- data/misc/openlayers/tests/Handler/Feature.html +698 -0
- data/misc/openlayers/tests/Handler/Hover.html +136 -0
- data/misc/openlayers/tests/Handler/Keyboard.html +150 -0
- data/misc/openlayers/tests/Handler/MouseWheel.html +182 -0
- data/misc/openlayers/tests/Handler/Path.html +1464 -0
- data/misc/openlayers/tests/Handler/Pinch.html +285 -0
- data/misc/openlayers/tests/Handler/Point.html +600 -0
- data/misc/openlayers/tests/Handler/Polygon.html +1161 -0
- data/misc/openlayers/tests/Handler/RegularPolygon.html +235 -0
- data/misc/openlayers/tests/Handler.html +265 -0
- data/misc/openlayers/tests/Icon.html +68 -0
- data/misc/openlayers/tests/Kinetic.html +132 -0
- data/misc/openlayers/tests/Lang.html +106 -0
- data/misc/openlayers/tests/Layer/ArcGIS93Rest.html +324 -0
- data/misc/openlayers/tests/Layer/ArcGISCache.html +256 -0
- data/misc/openlayers/tests/Layer/ArcGISCache.json +334 -0
- data/misc/openlayers/tests/Layer/ArcIMS.html +123 -0
- data/misc/openlayers/tests/Layer/Bing.html +200 -0
- data/misc/openlayers/tests/Layer/EventPane.html +172 -0
- data/misc/openlayers/tests/Layer/FixedZoomLevels.html +137 -0
- data/misc/openlayers/tests/Layer/GeoRSS.html +210 -0
- data/misc/openlayers/tests/Layer/Google/v3.html +337 -0
- data/misc/openlayers/tests/Layer/Google.html +369 -0
- data/misc/openlayers/tests/Layer/Grid.html +1593 -0
- data/misc/openlayers/tests/Layer/HTTPRequest.html +229 -0
- data/misc/openlayers/tests/Layer/Image.html +164 -0
- data/misc/openlayers/tests/Layer/KaMap.html +287 -0
- data/misc/openlayers/tests/Layer/MapGuide.html +177 -0
- data/misc/openlayers/tests/Layer/MapServer.html +238 -0
- data/misc/openlayers/tests/Layer/Markers.html +156 -0
- data/misc/openlayers/tests/Layer/OSM.html +16 -0
- data/misc/openlayers/tests/Layer/PointGrid.html +232 -0
- data/misc/openlayers/tests/Layer/PointTrack.html +79 -0
- data/misc/openlayers/tests/Layer/SphericalMercator.html +126 -0
- data/misc/openlayers/tests/Layer/TMS.html +262 -0
- data/misc/openlayers/tests/Layer/Text.html +211 -0
- data/misc/openlayers/tests/Layer/TileCache.html +203 -0
- data/misc/openlayers/tests/Layer/UTFGrid.html +131 -0
- data/misc/openlayers/tests/Layer/Vector/RootContainer.html +63 -0
- data/misc/openlayers/tests/Layer/Vector.html +879 -0
- data/misc/openlayers/tests/Layer/WMS.html +583 -0
- data/misc/openlayers/tests/Layer/WMTS.html +1491 -0
- data/misc/openlayers/tests/Layer/WrapDateLine.html +188 -0
- data/misc/openlayers/tests/Layer/XYZ.html +266 -0
- data/misc/openlayers/tests/Layer/atom-1.0.xml +34 -0
- data/misc/openlayers/tests/Layer/data_Layer_Text_textfile.txt +3 -0
- data/misc/openlayers/tests/Layer/data_Layer_Text_textfile_2.txt +3 -0
- data/misc/openlayers/tests/Layer/data_Layer_Text_textfile_overflow.txt +3 -0
- data/misc/openlayers/tests/Layer/georss.txt +378 -0
- data/misc/openlayers/tests/Layer.html +910 -0
- data/misc/openlayers/tests/Map.html +2255 -0
- data/misc/openlayers/tests/Marker/Box.html +183 -0
- data/misc/openlayers/tests/Marker.html +163 -0
- data/misc/openlayers/tests/OLLoader.js +26 -0
- data/misc/openlayers/tests/OpenLayers1.html +18 -0
- data/misc/openlayers/tests/OpenLayers2.html +19 -0
- data/misc/openlayers/tests/OpenLayers3.html +19 -0
- data/misc/openlayers/tests/OpenLayers4.html +18 -0
- data/misc/openlayers/tests/OpenLayersJsFiles.html +27 -0
- data/misc/openlayers/tests/Popup/Anchored.html +37 -0
- data/misc/openlayers/tests/Popup/FramedCloud.html +18 -0
- data/misc/openlayers/tests/Popup.html +219 -0
- data/misc/openlayers/tests/Projection.html +87 -0
- data/misc/openlayers/tests/Protocol/CSW.html +90 -0
- data/misc/openlayers/tests/Protocol/HTTP.html +842 -0
- data/misc/openlayers/tests/Protocol/SOS.html +57 -0
- data/misc/openlayers/tests/Protocol/Script.html +282 -0
- data/misc/openlayers/tests/Protocol/WFS.html +471 -0
- data/misc/openlayers/tests/Protocol.html +63 -0
- data/misc/openlayers/tests/README.txt +16 -0
- data/misc/openlayers/tests/Renderer/Canvas.html +501 -0
- data/misc/openlayers/tests/Renderer/Elements.html +651 -0
- data/misc/openlayers/tests/Renderer/SVG.html +441 -0
- data/misc/openlayers/tests/Renderer/VML.html +454 -0
- data/misc/openlayers/tests/Renderer.html +96 -0
- data/misc/openlayers/tests/Request/XMLHttpRequest.html +59 -0
- data/misc/openlayers/tests/Request.html +524 -0
- data/misc/openlayers/tests/Rule.html +123 -0
- data/misc/openlayers/tests/SingleFile1.html +15 -0
- data/misc/openlayers/tests/SingleFile2.html +15 -0
- data/misc/openlayers/tests/SingleFile3.html +15 -0
- data/misc/openlayers/tests/Strategy/BBOX.html +361 -0
- data/misc/openlayers/tests/Strategy/Cluster.html +148 -0
- data/misc/openlayers/tests/Strategy/Filter.html +135 -0
- data/misc/openlayers/tests/Strategy/Fixed.html +253 -0
- data/misc/openlayers/tests/Strategy/Paging.html +113 -0
- data/misc/openlayers/tests/Strategy/Refresh.html +177 -0
- data/misc/openlayers/tests/Strategy/Save.html +127 -0
- data/misc/openlayers/tests/Strategy.html +94 -0
- data/misc/openlayers/tests/Style.html +426 -0
- data/misc/openlayers/tests/Style2.html +56 -0
- data/misc/openlayers/tests/StyleMap.html +44 -0
- data/misc/openlayers/tests/Symbolizer/Line.html +42 -0
- data/misc/openlayers/tests/Symbolizer/Point.html +52 -0
- data/misc/openlayers/tests/Symbolizer/Polygon.html +44 -0
- data/misc/openlayers/tests/Symbolizer/Raster.html +32 -0
- data/misc/openlayers/tests/Symbolizer/Text.html +42 -0
- data/misc/openlayers/tests/Symbolizer.html +31 -0
- data/misc/openlayers/tests/Test.AnotherWay.baseadditions.js +191 -0
- data/misc/openlayers/tests/Test.AnotherWay.css +243 -0
- data/misc/openlayers/tests/Test.AnotherWay.geom_eq.js +139 -0
- data/misc/openlayers/tests/Test.AnotherWay.js +2498 -0
- data/misc/openlayers/tests/Test.AnotherWay.xml_eq.js +311 -0
- data/misc/openlayers/tests/Tile/Image/IFrame.html +183 -0
- data/misc/openlayers/tests/Tile/Image.html +490 -0
- data/misc/openlayers/tests/Tile/UTFGrid.html +306 -0
- data/misc/openlayers/tests/Tile.html +130 -0
- data/misc/openlayers/tests/TileManager.html +137 -0
- data/misc/openlayers/tests/Tween.html +116 -0
- data/misc/openlayers/tests/Util/vendorPrefix.html +117 -0
- data/misc/openlayers/tests/Util.html +1180 -0
- data/misc/openlayers/tests/Util_common.js +64 -0
- data/misc/openlayers/tests/Util_w3c.html +35 -0
- data/misc/openlayers/tests/WPSClient.html +108 -0
- data/misc/openlayers/tests/WPSProcess.html +188 -0
- data/misc/openlayers/tests/atom-1.0.xml +34 -0
- data/misc/openlayers/tests/auto-tests.html +2447 -0
- data/misc/openlayers/tests/data/geos_wkt_intersects.js +495 -0
- data/misc/openlayers/tests/data/osm.js +14 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/0/0.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/0/1.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/0/2.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/1/0.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/1/1.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/1/2.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/2/0.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/2/1.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/bio_utfgrid/1/2/2.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/demo-1.1.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/0/0.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/0/1.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/0/2.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/1/0.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/1/1.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/1/2.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/2/0.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/2/1.json +1 -0
- data/misc/openlayers/tests/data/utfgrid/world_utfgrid/1/2/2.json +1 -0
- data/misc/openlayers/tests/data_Layer_Text_textfile.txt +3 -0
- data/misc/openlayers/tests/data_Layer_Text_textfile_2.txt +3 -0
- data/misc/openlayers/tests/data_Layer_Text_textfile_overflow.txt +3 -0
- data/misc/openlayers/tests/deprecated/Ajax.html +28 -0
- data/misc/openlayers/tests/deprecated/BaseTypes/Class.html +142 -0
- data/misc/openlayers/tests/deprecated/BaseTypes/Element.html +56 -0
- data/misc/openlayers/tests/deprecated/Control/MouseToolbar.html +60 -0
- data/misc/openlayers/tests/deprecated/Geometry/Rectangle.html +77 -0
- data/misc/openlayers/tests/deprecated/Layer/GML.html +61 -0
- data/misc/openlayers/tests/deprecated/Layer/MapServer/Untiled.html +158 -0
- data/misc/openlayers/tests/deprecated/Layer/MapServer.html +59 -0
- data/misc/openlayers/tests/deprecated/Layer/WFS.html +178 -0
- data/misc/openlayers/tests/deprecated/Layer/WMS/Post.html +89 -0
- data/misc/openlayers/tests/deprecated/Layer/WMS.html +60 -0
- data/misc/openlayers/tests/deprecated/Layer/Yahoo.html +121 -0
- data/misc/openlayers/tests/deprecated/Layer/mice.xml +156 -0
- data/misc/openlayers/tests/deprecated/Layer/owls.xml +156 -0
- data/misc/openlayers/tests/deprecated/Popup/AnchoredBubble.html +61 -0
- data/misc/openlayers/tests/deprecated/Protocol/SQL/Gears.html +474 -0
- data/misc/openlayers/tests/deprecated/Protocol/SQL.html +24 -0
- data/misc/openlayers/tests/deprecated/Renderer/SVG2.html +399 -0
- data/misc/openlayers/tests/deprecated/Tile/WFS.html +215 -0
- data/misc/openlayers/tests/deprecated/Util.html +20 -0
- data/misc/openlayers/tests/georss.txt +378 -0
- data/misc/openlayers/tests/grid_inittiles.html +30 -0
- data/misc/openlayers/tests/index.html +6 -0
- data/misc/openlayers/tests/list-tests.html +260 -0
- data/misc/openlayers/tests/manual/ajax.html +49 -0
- data/misc/openlayers/tests/manual/ajax.txt +1 -0
- data/misc/openlayers/tests/manual/alloverlays-mixed.html +55 -0
- data/misc/openlayers/tests/manual/arcims-2117.html +103 -0
- data/misc/openlayers/tests/manual/arkansas.rss +9 -0
- data/misc/openlayers/tests/manual/big-georss.html +33 -0
- data/misc/openlayers/tests/manual/box-quirks.html +52 -0
- data/misc/openlayers/tests/manual/box-strict.html +46 -0
- data/misc/openlayers/tests/manual/clip-features-svg.html +128 -0
- data/misc/openlayers/tests/manual/dateline-sketch.html +66 -0
- data/misc/openlayers/tests/manual/dateline-smallextent.html +61 -0
- data/misc/openlayers/tests/manual/draw-feature.html +73 -0
- data/misc/openlayers/tests/manual/feature-handler.html +126 -0
- data/misc/openlayers/tests/manual/geodesic.html +160 -0
- data/misc/openlayers/tests/manual/geojson-geomcoll-reprojection.html +74 -0
- data/misc/openlayers/tests/manual/google-fullscreen-overlay.html +54 -0
- data/misc/openlayers/tests/manual/google-panning.html +122 -0
- data/misc/openlayers/tests/manual/google-resize.html +55 -0
- data/misc/openlayers/tests/manual/google-tilt.html +37 -0
- data/misc/openlayers/tests/manual/google-v3-resize.html +54 -0
- data/misc/openlayers/tests/manual/loadend.html +73 -0
- data/misc/openlayers/tests/manual/map-events.html +38 -0
- data/misc/openlayers/tests/manual/memory/Marker-2258.html +60 -0
- data/misc/openlayers/tests/manual/memory/PanZoom-2323.html +41 -0
- data/misc/openlayers/tests/manual/memory/RemoveChild-2170.html +56 -0
- data/misc/openlayers/tests/manual/memory/VML-2170.html +49 -0
- data/misc/openlayers/tests/manual/multiple-google-layers.html +135 -0
- data/misc/openlayers/tests/manual/overviewmap-projection.html +70 -0
- data/misc/openlayers/tests/manual/page-position.html +103 -0
- data/misc/openlayers/tests/manual/pan-redraw-svg.html +58 -0
- data/misc/openlayers/tests/manual/popup-keepInMap.html +100 -0
- data/misc/openlayers/tests/manual/reflow.html +59 -0
- data/misc/openlayers/tests/manual/renderedDimensions.html +113 -0
- data/misc/openlayers/tests/manual/select-feature-right-click.html +86 -0
- data/misc/openlayers/tests/manual/select-feature.html +75 -0
- data/misc/openlayers/tests/manual/tiles-loading.html +122 -0
- data/misc/openlayers/tests/manual/tween.html +82 -0
- data/misc/openlayers/tests/manual/vector-features-performance.html +149 -0
- data/misc/openlayers/tests/manual/vector-layer-zindex.html +143 -0
- data/misc/openlayers/tests/mice.xml +156 -0
- data/misc/openlayers/tests/node.js/mockdom.js +104 -0
- data/misc/openlayers/tests/node.js/node-tests.cfg +12 -0
- data/misc/openlayers/tests/node.js/node.js +1 -0
- data/misc/openlayers/tests/node.js/run-test.js +26 -0
- data/misc/openlayers/tests/node.js/run.sh +10 -0
- data/misc/openlayers/tests/owls.xml +156 -0
- data/misc/openlayers/tests/run-tests.html +155 -0
- data/misc/openlayers/tests/selenium/remotecontrol/config.cfg +48 -0
- data/misc/openlayers/tests/selenium/remotecontrol/selenium.py +1846 -0
- data/misc/openlayers/tests/selenium/remotecontrol/setup.txt +8 -0
- data/misc/openlayers/tests/selenium/remotecontrol/test_ol.py +95 -0
- data/misc/openlayers/tests/speed/geometry.html +43 -0
- data/misc/openlayers/tests/speed/string_format.html +29 -0
- data/misc/openlayers/tests/speed/vector-renderers.html +25 -0
- data/misc/openlayers/tests/speed/vector-renderers.js +70 -0
- data/misc/openlayers/tests/speed/wmc_speed.html +30 -0
- data/misc/openlayers/tests/speed/wmscaps.html +52 -0
- data/misc/openlayers/tests/speed/wmscaps.js +4956 -0
- data/misc/openlayers/tests/speed/wmscaps.xml +4954 -0
- data/misc/openlayers/tests/throws.js +82 -0
- data/misc/openlayers/theme/default/google.css +9 -0
- data/misc/openlayers/theme/default/google.tidy.css +1 -0
- data/misc/openlayers/theme/default/ie6-style.css +10 -0
- data/misc/openlayers/theme/default/ie6-style.tidy.css +1 -0
- data/misc/openlayers/theme/default/img/add_point_off.png +0 -0
- data/misc/openlayers/theme/default/img/add_point_on.png +0 -0
- data/misc/openlayers/theme/default/img/blank.gif +0 -0
- data/misc/openlayers/theme/default/img/close.gif +0 -0
- data/misc/openlayers/theme/default/img/drag-rectangle-off.png +0 -0
- data/misc/openlayers/theme/default/img/drag-rectangle-on.png +0 -0
- data/misc/openlayers/theme/default/img/draw_line_off.png +0 -0
- data/misc/openlayers/theme/default/img/draw_line_on.png +0 -0
- data/misc/openlayers/theme/default/img/draw_point_off.png +0 -0
- data/misc/openlayers/theme/default/img/draw_point_on.png +0 -0
- data/misc/openlayers/theme/default/img/draw_polygon_off.png +0 -0
- data/misc/openlayers/theme/default/img/draw_polygon_on.png +0 -0
- data/misc/openlayers/theme/default/img/editing_tool_bar.png +0 -0
- data/misc/openlayers/theme/default/img/move_feature_off.png +0 -0
- data/misc/openlayers/theme/default/img/move_feature_on.png +0 -0
- data/misc/openlayers/theme/default/img/navigation_history.png +0 -0
- data/misc/openlayers/theme/default/img/overview_replacement.gif +0 -0
- data/misc/openlayers/theme/default/img/pan-panel-NOALPHA.png +0 -0
- data/misc/openlayers/theme/default/img/pan-panel.png +0 -0
- data/misc/openlayers/theme/default/img/pan_off.png +0 -0
- data/misc/openlayers/theme/default/img/pan_on.png +0 -0
- data/misc/openlayers/theme/default/img/panning-hand-off.png +0 -0
- data/misc/openlayers/theme/default/img/panning-hand-on.png +0 -0
- data/misc/openlayers/theme/default/img/remove_point_off.png +0 -0
- data/misc/openlayers/theme/default/img/remove_point_on.png +0 -0
- data/misc/openlayers/theme/default/img/ruler.png +0 -0
- data/misc/openlayers/theme/default/img/save_features_off.png +0 -0
- data/misc/openlayers/theme/default/img/save_features_on.png +0 -0
- data/misc/openlayers/theme/default/img/view_next_off.png +0 -0
- data/misc/openlayers/theme/default/img/view_next_on.png +0 -0
- data/misc/openlayers/theme/default/img/view_previous_off.png +0 -0
- data/misc/openlayers/theme/default/img/view_previous_on.png +0 -0
- data/misc/openlayers/theme/default/img/zoom-panel-NOALPHA.png +0 -0
- data/misc/openlayers/theme/default/img/zoom-panel.png +0 -0
- data/misc/openlayers/theme/default/style.css +516 -0
- data/misc/openlayers/theme/default/style.mobile.css +70 -0
- data/misc/openlayers/theme/default/style.mobile.tidy.css +1 -0
- data/misc/openlayers/theme/default/style.tidy.css +1 -0
- data/misc/openlayers/tools/BeautifulSoup.py +1767 -0
- data/misc/openlayers/tools/README.txt +14 -0
- data/misc/openlayers/tools/closure_library_jscompiler.py +71 -0
- data/misc/openlayers/tools/closure_ws.py +28 -0
- data/misc/openlayers/tools/exampleparser.py +251 -0
- data/misc/openlayers/tools/jsmin.c +272 -0
- data/misc/openlayers/tools/jsmin.py +216 -0
- data/misc/openlayers/tools/mergejs.py +287 -0
- data/misc/openlayers/tools/minimize.py +47 -0
- data/misc/openlayers/tools/oldot.py +43 -0
- data/misc/openlayers/tools/release.sh +71 -0
- data/misc/openlayers/tools/shrinksafe.py +54 -0
- data/misc/openlayers/tools/toposort.py +35 -0
- data/misc/openlayers/tools/uglify_js.py +35 -0
- data/misc/openlayers/tools/update_dev_dir.sh +103 -0
- metadata +1320 -2
|
@@ -0,0 +1,820 @@
|
|
|
1
|
+
/* Flot plugin for rendering pie charts.
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2007-2014 IOLA and Ole Laursen.
|
|
4
|
+
Licensed under the MIT license.
|
|
5
|
+
|
|
6
|
+
The plugin assumes that each series has a single data value, and that each
|
|
7
|
+
value is a positive integer or zero. Negative numbers don't make sense for a
|
|
8
|
+
pie chart, and have unpredictable results. The values do NOT need to be
|
|
9
|
+
passed in as percentages; the plugin will calculate the total and per-slice
|
|
10
|
+
percentages internally.
|
|
11
|
+
|
|
12
|
+
* Created by Brian Medendorp
|
|
13
|
+
|
|
14
|
+
* Updated with contributions from btburnett3, Anthony Aragues and Xavi Ivars
|
|
15
|
+
|
|
16
|
+
The plugin supports these options:
|
|
17
|
+
|
|
18
|
+
series: {
|
|
19
|
+
pie: {
|
|
20
|
+
show: true/false
|
|
21
|
+
radius: 0-1 for percentage of fullsize, or a specified pixel length, or 'auto'
|
|
22
|
+
innerRadius: 0-1 for percentage of fullsize or a specified pixel length, for creating a donut effect
|
|
23
|
+
startAngle: 0-2 factor of PI used for starting angle (in radians) i.e 3/2 starts at the top, 0 and 2 have the same result
|
|
24
|
+
tilt: 0-1 for percentage to tilt the pie, where 1 is no tilt, and 0 is completely flat (nothing will show)
|
|
25
|
+
offset: {
|
|
26
|
+
top: integer value to move the pie up or down
|
|
27
|
+
left: integer value to move the pie left or right, or 'auto'
|
|
28
|
+
},
|
|
29
|
+
stroke: {
|
|
30
|
+
color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#FFF')
|
|
31
|
+
width: integer pixel width of the stroke
|
|
32
|
+
},
|
|
33
|
+
label: {
|
|
34
|
+
show: true/false, or 'auto'
|
|
35
|
+
formatter: a user-defined function that modifies the text/style of the label text
|
|
36
|
+
radius: 0-1 for percentage of fullsize, or a specified pixel length
|
|
37
|
+
background: {
|
|
38
|
+
color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#000')
|
|
39
|
+
opacity: 0-1
|
|
40
|
+
},
|
|
41
|
+
threshold: 0-1 for the percentage value at which to hide labels (if they're too small)
|
|
42
|
+
},
|
|
43
|
+
combine: {
|
|
44
|
+
threshold: 0-1 for the percentage value at which to combine slices (if they're too small)
|
|
45
|
+
color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#CCC'), if null, the plugin will automatically use the color of the first slice to be combined
|
|
46
|
+
label: any text value of what the combined slice should be labeled
|
|
47
|
+
}
|
|
48
|
+
highlight: {
|
|
49
|
+
opacity: 0-1
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
More detail and specific examples can be found in the included HTML file.
|
|
55
|
+
|
|
56
|
+
*/
|
|
57
|
+
|
|
58
|
+
(function($) {
|
|
59
|
+
|
|
60
|
+
// Maximum redraw attempts when fitting labels within the plot
|
|
61
|
+
|
|
62
|
+
var REDRAW_ATTEMPTS = 10;
|
|
63
|
+
|
|
64
|
+
// Factor by which to shrink the pie when fitting labels within the plot
|
|
65
|
+
|
|
66
|
+
var REDRAW_SHRINK = 0.95;
|
|
67
|
+
|
|
68
|
+
function init(plot) {
|
|
69
|
+
|
|
70
|
+
var canvas = null,
|
|
71
|
+
target = null,
|
|
72
|
+
options = null,
|
|
73
|
+
maxRadius = null,
|
|
74
|
+
centerLeft = null,
|
|
75
|
+
centerTop = null,
|
|
76
|
+
processed = false,
|
|
77
|
+
ctx = null;
|
|
78
|
+
|
|
79
|
+
// interactive variables
|
|
80
|
+
|
|
81
|
+
var highlights = [];
|
|
82
|
+
|
|
83
|
+
// add hook to determine if pie plugin in enabled, and then perform necessary operations
|
|
84
|
+
|
|
85
|
+
plot.hooks.processOptions.push(function(plot, options) {
|
|
86
|
+
if (options.series.pie.show) {
|
|
87
|
+
|
|
88
|
+
options.grid.show = false;
|
|
89
|
+
|
|
90
|
+
// set labels.show
|
|
91
|
+
|
|
92
|
+
if (options.series.pie.label.show == "auto") {
|
|
93
|
+
if (options.legend.show) {
|
|
94
|
+
options.series.pie.label.show = false;
|
|
95
|
+
} else {
|
|
96
|
+
options.series.pie.label.show = true;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// set radius
|
|
101
|
+
|
|
102
|
+
if (options.series.pie.radius == "auto") {
|
|
103
|
+
if (options.series.pie.label.show) {
|
|
104
|
+
options.series.pie.radius = 3/4;
|
|
105
|
+
} else {
|
|
106
|
+
options.series.pie.radius = 1;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// ensure sane tilt
|
|
111
|
+
|
|
112
|
+
if (options.series.pie.tilt > 1) {
|
|
113
|
+
options.series.pie.tilt = 1;
|
|
114
|
+
} else if (options.series.pie.tilt < 0) {
|
|
115
|
+
options.series.pie.tilt = 0;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
plot.hooks.bindEvents.push(function(plot, eventHolder) {
|
|
121
|
+
var options = plot.getOptions();
|
|
122
|
+
if (options.series.pie.show) {
|
|
123
|
+
if (options.grid.hoverable) {
|
|
124
|
+
eventHolder.unbind("mousemove").mousemove(onMouseMove);
|
|
125
|
+
}
|
|
126
|
+
if (options.grid.clickable) {
|
|
127
|
+
eventHolder.unbind("click").click(onClick);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
plot.hooks.processDatapoints.push(function(plot, series, data, datapoints) {
|
|
133
|
+
var options = plot.getOptions();
|
|
134
|
+
if (options.series.pie.show) {
|
|
135
|
+
processDatapoints(plot, series, data, datapoints);
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
|
|
139
|
+
plot.hooks.drawOverlay.push(function(plot, octx) {
|
|
140
|
+
var options = plot.getOptions();
|
|
141
|
+
if (options.series.pie.show) {
|
|
142
|
+
drawOverlay(plot, octx);
|
|
143
|
+
}
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
plot.hooks.draw.push(function(plot, newCtx) {
|
|
147
|
+
var options = plot.getOptions();
|
|
148
|
+
if (options.series.pie.show) {
|
|
149
|
+
draw(plot, newCtx);
|
|
150
|
+
}
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
function processDatapoints(plot, series, datapoints) {
|
|
154
|
+
if (!processed) {
|
|
155
|
+
processed = true;
|
|
156
|
+
canvas = plot.getCanvas();
|
|
157
|
+
target = $(canvas).parent();
|
|
158
|
+
options = plot.getOptions();
|
|
159
|
+
plot.setData(combine(plot.getData()));
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
function combine(data) {
|
|
164
|
+
|
|
165
|
+
var total = 0,
|
|
166
|
+
combined = 0,
|
|
167
|
+
numCombined = 0,
|
|
168
|
+
color = options.series.pie.combine.color,
|
|
169
|
+
newdata = [];
|
|
170
|
+
|
|
171
|
+
// Fix up the raw data from Flot, ensuring the data is numeric
|
|
172
|
+
|
|
173
|
+
for (var i = 0; i < data.length; ++i) {
|
|
174
|
+
|
|
175
|
+
var value = data[i].data;
|
|
176
|
+
|
|
177
|
+
// If the data is an array, we'll assume that it's a standard
|
|
178
|
+
// Flot x-y pair, and are concerned only with the second value.
|
|
179
|
+
|
|
180
|
+
// Note how we use the original array, rather than creating a
|
|
181
|
+
// new one; this is more efficient and preserves any extra data
|
|
182
|
+
// that the user may have stored in higher indexes.
|
|
183
|
+
|
|
184
|
+
if ($.isArray(value) && value.length == 1) {
|
|
185
|
+
value = value[0];
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
if ($.isArray(value)) {
|
|
189
|
+
// Equivalent to $.isNumeric() but compatible with jQuery < 1.7
|
|
190
|
+
if (!isNaN(parseFloat(value[1])) && isFinite(value[1])) {
|
|
191
|
+
value[1] = +value[1];
|
|
192
|
+
} else {
|
|
193
|
+
value[1] = 0;
|
|
194
|
+
}
|
|
195
|
+
} else if (!isNaN(parseFloat(value)) && isFinite(value)) {
|
|
196
|
+
value = [1, +value];
|
|
197
|
+
} else {
|
|
198
|
+
value = [1, 0];
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
data[i].data = [value];
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// Sum up all the slices, so we can calculate percentages for each
|
|
205
|
+
|
|
206
|
+
for (var i = 0; i < data.length; ++i) {
|
|
207
|
+
total += data[i].data[0][1];
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
// Count the number of slices with percentages below the combine
|
|
211
|
+
// threshold; if it turns out to be just one, we won't combine.
|
|
212
|
+
|
|
213
|
+
for (var i = 0; i < data.length; ++i) {
|
|
214
|
+
var value = data[i].data[0][1];
|
|
215
|
+
if (value / total <= options.series.pie.combine.threshold) {
|
|
216
|
+
combined += value;
|
|
217
|
+
numCombined++;
|
|
218
|
+
if (!color) {
|
|
219
|
+
color = data[i].color;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
for (var i = 0; i < data.length; ++i) {
|
|
225
|
+
var value = data[i].data[0][1];
|
|
226
|
+
if (numCombined < 2 || value / total > options.series.pie.combine.threshold) {
|
|
227
|
+
newdata.push(
|
|
228
|
+
$.extend(data[i], { /* extend to allow keeping all other original data values
|
|
229
|
+
and using them e.g. in labelFormatter. */
|
|
230
|
+
data: [[1, value]],
|
|
231
|
+
color: data[i].color,
|
|
232
|
+
label: data[i].label,
|
|
233
|
+
angle: value * Math.PI * 2 / total,
|
|
234
|
+
percent: value / (total / 100)
|
|
235
|
+
})
|
|
236
|
+
);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
if (numCombined > 1) {
|
|
241
|
+
newdata.push({
|
|
242
|
+
data: [[1, combined]],
|
|
243
|
+
color: color,
|
|
244
|
+
label: options.series.pie.combine.label,
|
|
245
|
+
angle: combined * Math.PI * 2 / total,
|
|
246
|
+
percent: combined / (total / 100)
|
|
247
|
+
});
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
return newdata;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
function draw(plot, newCtx) {
|
|
254
|
+
|
|
255
|
+
if (!target) {
|
|
256
|
+
return; // if no series were passed
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
var canvasWidth = plot.getPlaceholder().width(),
|
|
260
|
+
canvasHeight = plot.getPlaceholder().height(),
|
|
261
|
+
legendWidth = target.children().filter(".legend").children().width() || 0;
|
|
262
|
+
|
|
263
|
+
ctx = newCtx;
|
|
264
|
+
|
|
265
|
+
// WARNING: HACK! REWRITE THIS CODE AS SOON AS POSSIBLE!
|
|
266
|
+
|
|
267
|
+
// When combining smaller slices into an 'other' slice, we need to
|
|
268
|
+
// add a new series. Since Flot gives plugins no way to modify the
|
|
269
|
+
// list of series, the pie plugin uses a hack where the first call
|
|
270
|
+
// to processDatapoints results in a call to setData with the new
|
|
271
|
+
// list of series, then subsequent processDatapoints do nothing.
|
|
272
|
+
|
|
273
|
+
// The plugin-global 'processed' flag is used to control this hack;
|
|
274
|
+
// it starts out false, and is set to true after the first call to
|
|
275
|
+
// processDatapoints.
|
|
276
|
+
|
|
277
|
+
// Unfortunately this turns future setData calls into no-ops; they
|
|
278
|
+
// call processDatapoints, the flag is true, and nothing happens.
|
|
279
|
+
|
|
280
|
+
// To fix this we'll set the flag back to false here in draw, when
|
|
281
|
+
// all series have been processed, so the next sequence of calls to
|
|
282
|
+
// processDatapoints once again starts out with a slice-combine.
|
|
283
|
+
// This is really a hack; in 0.9 we need to give plugins a proper
|
|
284
|
+
// way to modify series before any processing begins.
|
|
285
|
+
|
|
286
|
+
processed = false;
|
|
287
|
+
|
|
288
|
+
// calculate maximum radius and center point
|
|
289
|
+
|
|
290
|
+
maxRadius = Math.min(canvasWidth, canvasHeight / options.series.pie.tilt) / 2;
|
|
291
|
+
centerTop = canvasHeight / 2 + options.series.pie.offset.top;
|
|
292
|
+
centerLeft = canvasWidth / 2;
|
|
293
|
+
|
|
294
|
+
if (options.series.pie.offset.left == "auto") {
|
|
295
|
+
if (options.legend.position.match("w")) {
|
|
296
|
+
centerLeft += legendWidth / 2;
|
|
297
|
+
} else {
|
|
298
|
+
centerLeft -= legendWidth / 2;
|
|
299
|
+
}
|
|
300
|
+
if (centerLeft < maxRadius) {
|
|
301
|
+
centerLeft = maxRadius;
|
|
302
|
+
} else if (centerLeft > canvasWidth - maxRadius) {
|
|
303
|
+
centerLeft = canvasWidth - maxRadius;
|
|
304
|
+
}
|
|
305
|
+
} else {
|
|
306
|
+
centerLeft += options.series.pie.offset.left;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
var slices = plot.getData(),
|
|
310
|
+
attempts = 0;
|
|
311
|
+
|
|
312
|
+
// Keep shrinking the pie's radius until drawPie returns true,
|
|
313
|
+
// indicating that all the labels fit, or we try too many times.
|
|
314
|
+
|
|
315
|
+
do {
|
|
316
|
+
if (attempts > 0) {
|
|
317
|
+
maxRadius *= REDRAW_SHRINK;
|
|
318
|
+
}
|
|
319
|
+
attempts += 1;
|
|
320
|
+
clear();
|
|
321
|
+
if (options.series.pie.tilt <= 0.8) {
|
|
322
|
+
drawShadow();
|
|
323
|
+
}
|
|
324
|
+
} while (!drawPie() && attempts < REDRAW_ATTEMPTS)
|
|
325
|
+
|
|
326
|
+
if (attempts >= REDRAW_ATTEMPTS) {
|
|
327
|
+
clear();
|
|
328
|
+
target.prepend("<div class='error'>Could not draw pie with labels contained inside canvas</div>");
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
if (plot.setSeries && plot.insertLegend) {
|
|
332
|
+
plot.setSeries(slices);
|
|
333
|
+
plot.insertLegend();
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
// we're actually done at this point, just defining internal functions at this point
|
|
337
|
+
|
|
338
|
+
function clear() {
|
|
339
|
+
ctx.clearRect(0, 0, canvasWidth, canvasHeight);
|
|
340
|
+
target.children().filter(".pieLabel, .pieLabelBackground").remove();
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
function drawShadow() {
|
|
344
|
+
|
|
345
|
+
var shadowLeft = options.series.pie.shadow.left;
|
|
346
|
+
var shadowTop = options.series.pie.shadow.top;
|
|
347
|
+
var edge = 10;
|
|
348
|
+
var alpha = options.series.pie.shadow.alpha;
|
|
349
|
+
var radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius;
|
|
350
|
+
|
|
351
|
+
if (radius >= canvasWidth / 2 - shadowLeft || radius * options.series.pie.tilt >= canvasHeight / 2 - shadowTop || radius <= edge) {
|
|
352
|
+
return; // shadow would be outside canvas, so don't draw it
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
ctx.save();
|
|
356
|
+
ctx.translate(shadowLeft,shadowTop);
|
|
357
|
+
ctx.globalAlpha = alpha;
|
|
358
|
+
ctx.fillStyle = "#000";
|
|
359
|
+
|
|
360
|
+
// center and rotate to starting position
|
|
361
|
+
|
|
362
|
+
ctx.translate(centerLeft,centerTop);
|
|
363
|
+
ctx.scale(1, options.series.pie.tilt);
|
|
364
|
+
|
|
365
|
+
//radius -= edge;
|
|
366
|
+
|
|
367
|
+
for (var i = 1; i <= edge; i++) {
|
|
368
|
+
ctx.beginPath();
|
|
369
|
+
ctx.arc(0, 0, radius, 0, Math.PI * 2, false);
|
|
370
|
+
ctx.fill();
|
|
371
|
+
radius -= i;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
ctx.restore();
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
function drawPie() {
|
|
378
|
+
|
|
379
|
+
var startAngle = Math.PI * options.series.pie.startAngle;
|
|
380
|
+
var radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius;
|
|
381
|
+
|
|
382
|
+
// center and rotate to starting position
|
|
383
|
+
|
|
384
|
+
ctx.save();
|
|
385
|
+
ctx.translate(centerLeft,centerTop);
|
|
386
|
+
ctx.scale(1, options.series.pie.tilt);
|
|
387
|
+
//ctx.rotate(startAngle); // start at top; -- This doesn't work properly in Opera
|
|
388
|
+
|
|
389
|
+
// draw slices
|
|
390
|
+
|
|
391
|
+
ctx.save();
|
|
392
|
+
var currentAngle = startAngle;
|
|
393
|
+
for (var i = 0; i < slices.length; ++i) {
|
|
394
|
+
slices[i].startAngle = currentAngle;
|
|
395
|
+
drawSlice(slices[i].angle, slices[i].color, true);
|
|
396
|
+
}
|
|
397
|
+
ctx.restore();
|
|
398
|
+
|
|
399
|
+
// draw slice outlines
|
|
400
|
+
|
|
401
|
+
if (options.series.pie.stroke.width > 0) {
|
|
402
|
+
ctx.save();
|
|
403
|
+
ctx.lineWidth = options.series.pie.stroke.width;
|
|
404
|
+
currentAngle = startAngle;
|
|
405
|
+
for (var i = 0; i < slices.length; ++i) {
|
|
406
|
+
drawSlice(slices[i].angle, options.series.pie.stroke.color, false);
|
|
407
|
+
}
|
|
408
|
+
ctx.restore();
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
// draw donut hole
|
|
412
|
+
|
|
413
|
+
drawDonutHole(ctx);
|
|
414
|
+
|
|
415
|
+
ctx.restore();
|
|
416
|
+
|
|
417
|
+
// Draw the labels, returning true if they fit within the plot
|
|
418
|
+
|
|
419
|
+
if (options.series.pie.label.show) {
|
|
420
|
+
return drawLabels();
|
|
421
|
+
} else return true;
|
|
422
|
+
|
|
423
|
+
function drawSlice(angle, color, fill) {
|
|
424
|
+
|
|
425
|
+
if (angle <= 0 || isNaN(angle)) {
|
|
426
|
+
return;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
if (fill) {
|
|
430
|
+
ctx.fillStyle = color;
|
|
431
|
+
} else {
|
|
432
|
+
ctx.strokeStyle = color;
|
|
433
|
+
ctx.lineJoin = "round";
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
ctx.beginPath();
|
|
437
|
+
if (Math.abs(angle - Math.PI * 2) > 0.000000001) {
|
|
438
|
+
ctx.moveTo(0, 0); // Center of the pie
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
//ctx.arc(0, 0, radius, 0, angle, false); // This doesn't work properly in Opera
|
|
442
|
+
ctx.arc(0, 0, radius,currentAngle, currentAngle + angle / 2, false);
|
|
443
|
+
ctx.arc(0, 0, radius,currentAngle + angle / 2, currentAngle + angle, false);
|
|
444
|
+
ctx.closePath();
|
|
445
|
+
//ctx.rotate(angle); // This doesn't work properly in Opera
|
|
446
|
+
currentAngle += angle;
|
|
447
|
+
|
|
448
|
+
if (fill) {
|
|
449
|
+
ctx.fill();
|
|
450
|
+
} else {
|
|
451
|
+
ctx.stroke();
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
function drawLabels() {
|
|
456
|
+
|
|
457
|
+
var currentAngle = startAngle;
|
|
458
|
+
var radius = options.series.pie.label.radius > 1 ? options.series.pie.label.radius : maxRadius * options.series.pie.label.radius;
|
|
459
|
+
|
|
460
|
+
for (var i = 0; i < slices.length; ++i) {
|
|
461
|
+
if (slices[i].percent >= options.series.pie.label.threshold * 100) {
|
|
462
|
+
if (!drawLabel(slices[i], currentAngle, i)) {
|
|
463
|
+
return false;
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
currentAngle += slices[i].angle;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
return true;
|
|
470
|
+
|
|
471
|
+
function drawLabel(slice, startAngle, index) {
|
|
472
|
+
|
|
473
|
+
if (slice.data[0][1] == 0) {
|
|
474
|
+
return true;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
// format label text
|
|
478
|
+
|
|
479
|
+
var lf = options.legend.labelFormatter, text, plf = options.series.pie.label.formatter;
|
|
480
|
+
|
|
481
|
+
if (lf) {
|
|
482
|
+
text = lf(slice.label, slice);
|
|
483
|
+
} else {
|
|
484
|
+
text = slice.label;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
if (plf) {
|
|
488
|
+
text = plf(text, slice);
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
var halfAngle = ((startAngle + slice.angle) + startAngle) / 2;
|
|
492
|
+
var x = centerLeft + Math.round(Math.cos(halfAngle) * radius);
|
|
493
|
+
var y = centerTop + Math.round(Math.sin(halfAngle) * radius) * options.series.pie.tilt;
|
|
494
|
+
|
|
495
|
+
var html = "<span class='pieLabel' id='pieLabel" + index + "' style='position:absolute;top:" + y + "px;left:" + x + "px;'>" + text + "</span>";
|
|
496
|
+
target.append(html);
|
|
497
|
+
|
|
498
|
+
var label = target.children("#pieLabel" + index);
|
|
499
|
+
var labelTop = (y - label.height() / 2);
|
|
500
|
+
var labelLeft = (x - label.width() / 2);
|
|
501
|
+
|
|
502
|
+
label.css("top", labelTop);
|
|
503
|
+
label.css("left", labelLeft);
|
|
504
|
+
|
|
505
|
+
// check to make sure that the label is not outside the canvas
|
|
506
|
+
|
|
507
|
+
if (0 - labelTop > 0 || 0 - labelLeft > 0 || canvasHeight - (labelTop + label.height()) < 0 || canvasWidth - (labelLeft + label.width()) < 0) {
|
|
508
|
+
return false;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
if (options.series.pie.label.background.opacity != 0) {
|
|
512
|
+
|
|
513
|
+
// put in the transparent background separately to avoid blended labels and label boxes
|
|
514
|
+
|
|
515
|
+
var c = options.series.pie.label.background.color;
|
|
516
|
+
|
|
517
|
+
if (c == null) {
|
|
518
|
+
c = slice.color;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
var pos = "top:" + labelTop + "px;left:" + labelLeft + "px;";
|
|
522
|
+
$("<div class='pieLabelBackground' style='position:absolute;width:" + label.width() + "px;height:" + label.height() + "px;" + pos + "background-color:" + c + ";'></div>")
|
|
523
|
+
.css("opacity", options.series.pie.label.background.opacity)
|
|
524
|
+
.insertBefore(label);
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
return true;
|
|
528
|
+
} // end individual label function
|
|
529
|
+
} // end drawLabels function
|
|
530
|
+
} // end drawPie function
|
|
531
|
+
} // end draw function
|
|
532
|
+
|
|
533
|
+
// Placed here because it needs to be accessed from multiple locations
|
|
534
|
+
|
|
535
|
+
function drawDonutHole(layer) {
|
|
536
|
+
if (options.series.pie.innerRadius > 0) {
|
|
537
|
+
|
|
538
|
+
// subtract the center
|
|
539
|
+
|
|
540
|
+
layer.save();
|
|
541
|
+
var innerRadius = options.series.pie.innerRadius > 1 ? options.series.pie.innerRadius : maxRadius * options.series.pie.innerRadius;
|
|
542
|
+
layer.globalCompositeOperation = "destination-out"; // this does not work with excanvas, but it will fall back to using the stroke color
|
|
543
|
+
layer.beginPath();
|
|
544
|
+
layer.fillStyle = options.series.pie.stroke.color;
|
|
545
|
+
layer.arc(0, 0, innerRadius, 0, Math.PI * 2, false);
|
|
546
|
+
layer.fill();
|
|
547
|
+
layer.closePath();
|
|
548
|
+
layer.restore();
|
|
549
|
+
|
|
550
|
+
// add inner stroke
|
|
551
|
+
|
|
552
|
+
layer.save();
|
|
553
|
+
layer.beginPath();
|
|
554
|
+
layer.strokeStyle = options.series.pie.stroke.color;
|
|
555
|
+
layer.arc(0, 0, innerRadius, 0, Math.PI * 2, false);
|
|
556
|
+
layer.stroke();
|
|
557
|
+
layer.closePath();
|
|
558
|
+
layer.restore();
|
|
559
|
+
|
|
560
|
+
// TODO: add extra shadow inside hole (with a mask) if the pie is tilted.
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
//-- Additional Interactive related functions --
|
|
565
|
+
|
|
566
|
+
function isPointInPoly(poly, pt) {
|
|
567
|
+
for(var c = false, i = -1, l = poly.length, j = l - 1; ++i < l; j = i)
|
|
568
|
+
((poly[i][1] <= pt[1] && pt[1] < poly[j][1]) || (poly[j][1] <= pt[1] && pt[1]< poly[i][1]))
|
|
569
|
+
&& (pt[0] < (poly[j][0] - poly[i][0]) * (pt[1] - poly[i][1]) / (poly[j][1] - poly[i][1]) + poly[i][0])
|
|
570
|
+
&& (c = !c);
|
|
571
|
+
return c;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
function findNearbySlice(mouseX, mouseY) {
|
|
575
|
+
|
|
576
|
+
var slices = plot.getData(),
|
|
577
|
+
options = plot.getOptions(),
|
|
578
|
+
radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius,
|
|
579
|
+
x, y;
|
|
580
|
+
|
|
581
|
+
for (var i = 0; i < slices.length; ++i) {
|
|
582
|
+
|
|
583
|
+
var s = slices[i];
|
|
584
|
+
|
|
585
|
+
if (s.pie.show) {
|
|
586
|
+
|
|
587
|
+
ctx.save();
|
|
588
|
+
ctx.beginPath();
|
|
589
|
+
ctx.moveTo(0, 0); // Center of the pie
|
|
590
|
+
//ctx.scale(1, options.series.pie.tilt); // this actually seems to break everything when here.
|
|
591
|
+
ctx.arc(0, 0, radius, s.startAngle, s.startAngle + s.angle / 2, false);
|
|
592
|
+
ctx.arc(0, 0, radius, s.startAngle + s.angle / 2, s.startAngle + s.angle, false);
|
|
593
|
+
ctx.closePath();
|
|
594
|
+
x = mouseX - centerLeft;
|
|
595
|
+
y = mouseY - centerTop;
|
|
596
|
+
|
|
597
|
+
if (ctx.isPointInPath) {
|
|
598
|
+
if (ctx.isPointInPath(mouseX - centerLeft, mouseY - centerTop)) {
|
|
599
|
+
ctx.restore();
|
|
600
|
+
return {
|
|
601
|
+
datapoint: [s.percent, s.data],
|
|
602
|
+
dataIndex: 0,
|
|
603
|
+
series: s,
|
|
604
|
+
seriesIndex: i
|
|
605
|
+
};
|
|
606
|
+
}
|
|
607
|
+
} else {
|
|
608
|
+
|
|
609
|
+
// excanvas for IE doesn;t support isPointInPath, this is a workaround.
|
|
610
|
+
|
|
611
|
+
var p1X = radius * Math.cos(s.startAngle),
|
|
612
|
+
p1Y = radius * Math.sin(s.startAngle),
|
|
613
|
+
p2X = radius * Math.cos(s.startAngle + s.angle / 4),
|
|
614
|
+
p2Y = radius * Math.sin(s.startAngle + s.angle / 4),
|
|
615
|
+
p3X = radius * Math.cos(s.startAngle + s.angle / 2),
|
|
616
|
+
p3Y = radius * Math.sin(s.startAngle + s.angle / 2),
|
|
617
|
+
p4X = radius * Math.cos(s.startAngle + s.angle / 1.5),
|
|
618
|
+
p4Y = radius * Math.sin(s.startAngle + s.angle / 1.5),
|
|
619
|
+
p5X = radius * Math.cos(s.startAngle + s.angle),
|
|
620
|
+
p5Y = radius * Math.sin(s.startAngle + s.angle),
|
|
621
|
+
arrPoly = [[0, 0], [p1X, p1Y], [p2X, p2Y], [p3X, p3Y], [p4X, p4Y], [p5X, p5Y]],
|
|
622
|
+
arrPoint = [x, y];
|
|
623
|
+
|
|
624
|
+
// TODO: perhaps do some mathmatical trickery here with the Y-coordinate to compensate for pie tilt?
|
|
625
|
+
|
|
626
|
+
if (isPointInPoly(arrPoly, arrPoint)) {
|
|
627
|
+
ctx.restore();
|
|
628
|
+
return {
|
|
629
|
+
datapoint: [s.percent, s.data],
|
|
630
|
+
dataIndex: 0,
|
|
631
|
+
series: s,
|
|
632
|
+
seriesIndex: i
|
|
633
|
+
};
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
ctx.restore();
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
return null;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
function onMouseMove(e) {
|
|
645
|
+
triggerClickHoverEvent("plothover", e);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
function onClick(e) {
|
|
649
|
+
triggerClickHoverEvent("plotclick", e);
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
// trigger click or hover event (they send the same parameters so we share their code)
|
|
653
|
+
|
|
654
|
+
function triggerClickHoverEvent(eventname, e) {
|
|
655
|
+
|
|
656
|
+
var offset = plot.offset();
|
|
657
|
+
var canvasX = parseInt(e.pageX - offset.left);
|
|
658
|
+
var canvasY = parseInt(e.pageY - offset.top);
|
|
659
|
+
var item = findNearbySlice(canvasX, canvasY);
|
|
660
|
+
|
|
661
|
+
if (options.grid.autoHighlight) {
|
|
662
|
+
|
|
663
|
+
// clear auto-highlights
|
|
664
|
+
|
|
665
|
+
for (var i = 0; i < highlights.length; ++i) {
|
|
666
|
+
var h = highlights[i];
|
|
667
|
+
if (h.auto == eventname && !(item && h.series == item.series)) {
|
|
668
|
+
unhighlight(h.series);
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
// highlight the slice
|
|
674
|
+
|
|
675
|
+
if (item) {
|
|
676
|
+
highlight(item.series, eventname);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
// trigger any hover bind events
|
|
680
|
+
|
|
681
|
+
var pos = { pageX: e.pageX, pageY: e.pageY };
|
|
682
|
+
target.trigger(eventname, [pos, item]);
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
function highlight(s, auto) {
|
|
686
|
+
//if (typeof s == "number") {
|
|
687
|
+
// s = series[s];
|
|
688
|
+
//}
|
|
689
|
+
|
|
690
|
+
var i = indexOfHighlight(s);
|
|
691
|
+
|
|
692
|
+
if (i == -1) {
|
|
693
|
+
highlights.push({ series: s, auto: auto });
|
|
694
|
+
plot.triggerRedrawOverlay();
|
|
695
|
+
} else if (!auto) {
|
|
696
|
+
highlights[i].auto = false;
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
function unhighlight(s) {
|
|
701
|
+
if (s == null) {
|
|
702
|
+
highlights = [];
|
|
703
|
+
plot.triggerRedrawOverlay();
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
//if (typeof s == "number") {
|
|
707
|
+
// s = series[s];
|
|
708
|
+
//}
|
|
709
|
+
|
|
710
|
+
var i = indexOfHighlight(s);
|
|
711
|
+
|
|
712
|
+
if (i != -1) {
|
|
713
|
+
highlights.splice(i, 1);
|
|
714
|
+
plot.triggerRedrawOverlay();
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
function indexOfHighlight(s) {
|
|
719
|
+
for (var i = 0; i < highlights.length; ++i) {
|
|
720
|
+
var h = highlights[i];
|
|
721
|
+
if (h.series == s)
|
|
722
|
+
return i;
|
|
723
|
+
}
|
|
724
|
+
return -1;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
function drawOverlay(plot, octx) {
|
|
728
|
+
|
|
729
|
+
var options = plot.getOptions();
|
|
730
|
+
|
|
731
|
+
var radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius;
|
|
732
|
+
|
|
733
|
+
octx.save();
|
|
734
|
+
octx.translate(centerLeft, centerTop);
|
|
735
|
+
octx.scale(1, options.series.pie.tilt);
|
|
736
|
+
|
|
737
|
+
for (var i = 0; i < highlights.length; ++i) {
|
|
738
|
+
drawHighlight(highlights[i].series);
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
drawDonutHole(octx);
|
|
742
|
+
|
|
743
|
+
octx.restore();
|
|
744
|
+
|
|
745
|
+
function drawHighlight(series) {
|
|
746
|
+
|
|
747
|
+
if (series.angle <= 0 || isNaN(series.angle)) {
|
|
748
|
+
return;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
//octx.fillStyle = parseColor(options.series.pie.highlight.color).scale(null, null, null, options.series.pie.highlight.opacity).toString();
|
|
752
|
+
octx.fillStyle = "rgba(255, 255, 255, " + options.series.pie.highlight.opacity + ")"; // this is temporary until we have access to parseColor
|
|
753
|
+
octx.beginPath();
|
|
754
|
+
if (Math.abs(series.angle - Math.PI * 2) > 0.000000001) {
|
|
755
|
+
octx.moveTo(0, 0); // Center of the pie
|
|
756
|
+
}
|
|
757
|
+
octx.arc(0, 0, radius, series.startAngle, series.startAngle + series.angle / 2, false);
|
|
758
|
+
octx.arc(0, 0, radius, series.startAngle + series.angle / 2, series.startAngle + series.angle, false);
|
|
759
|
+
octx.closePath();
|
|
760
|
+
octx.fill();
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
} // end init (plugin body)
|
|
764
|
+
|
|
765
|
+
// define pie specific options and their default values
|
|
766
|
+
|
|
767
|
+
var options = {
|
|
768
|
+
series: {
|
|
769
|
+
pie: {
|
|
770
|
+
show: false,
|
|
771
|
+
radius: "auto", // actual radius of the visible pie (based on full calculated radius if <=1, or hard pixel value)
|
|
772
|
+
innerRadius: 0, /* for donut */
|
|
773
|
+
startAngle: 3/2,
|
|
774
|
+
tilt: 1,
|
|
775
|
+
shadow: {
|
|
776
|
+
left: 5, // shadow left offset
|
|
777
|
+
top: 15, // shadow top offset
|
|
778
|
+
alpha: 0.02 // shadow alpha
|
|
779
|
+
},
|
|
780
|
+
offset: {
|
|
781
|
+
top: 0,
|
|
782
|
+
left: "auto"
|
|
783
|
+
},
|
|
784
|
+
stroke: {
|
|
785
|
+
color: "#fff",
|
|
786
|
+
width: 1
|
|
787
|
+
},
|
|
788
|
+
label: {
|
|
789
|
+
show: "auto",
|
|
790
|
+
formatter: function(label, slice) {
|
|
791
|
+
return "<div style='font-size:x-small;text-align:center;padding:2px;color:" + slice.color + ";'>" + label + "<br/>" + Math.round(slice.percent) + "%</div>";
|
|
792
|
+
}, // formatter function
|
|
793
|
+
radius: 1, // radius at which to place the labels (based on full calculated radius if <=1, or hard pixel value)
|
|
794
|
+
background: {
|
|
795
|
+
color: null,
|
|
796
|
+
opacity: 0
|
|
797
|
+
},
|
|
798
|
+
threshold: 0 // percentage at which to hide the label (i.e. the slice is too narrow)
|
|
799
|
+
},
|
|
800
|
+
combine: {
|
|
801
|
+
threshold: -1, // percentage at which to combine little slices into one larger slice
|
|
802
|
+
color: null, // color to give the new slice (auto-generated if null)
|
|
803
|
+
label: "Other" // label to give the new slice
|
|
804
|
+
},
|
|
805
|
+
highlight: {
|
|
806
|
+
//color: "#fff", // will add this functionality once parseColor is available
|
|
807
|
+
opacity: 0.5
|
|
808
|
+
}
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
};
|
|
812
|
+
|
|
813
|
+
$.plot.plugins.push({
|
|
814
|
+
init: init,
|
|
815
|
+
options: options,
|
|
816
|
+
name: "pie",
|
|
817
|
+
version: "1.1"
|
|
818
|
+
});
|
|
819
|
+
|
|
820
|
+
})(jQuery);
|