├── .gitignore ├── LICENSE.md ├── README.md ├── elastic_terrain_screenshot_01.jpg ├── elastic_terrain_screenshot_02.jpg ├── map ├── Gruntfile.js ├── package.json └── src │ ├── data │ ├── blank.png │ └── configs.json │ ├── index.html │ ├── js │ ├── config.js │ ├── configmanager.js │ ├── configmanager_static.js │ ├── controlbar.js │ ├── init.js │ ├── layers.js │ ├── showcase.js │ ├── viewer.js │ └── webglcheck.js │ └── resources │ ├── css │ ├── base.css │ ├── controlbar.css │ ├── images │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ └── ui-bg_inset-soft_25_000000_1x100.png │ ├── jquery-ui.min.css │ ├── ol.css │ └── showcase.css │ ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ ├── images │ ├── elasticterrain_logo.svg │ ├── elasticterrain_preview.jpg │ ├── favicon.ico │ └── mars-overlay.png │ └── js │ ├── jquery-2.1.3.min.js │ ├── jquery-ui.min.js │ └── jquery_knob.js └── ol3 ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── DEVELOPING.md ├── LICENSE.md ├── Makefile ├── README.md ├── bin ├── check-example.js ├── check-requires.py ├── combine-examples.py ├── example-screenshot.js ├── loader_hosted_examples.js ├── pyglslunit.py └── split-example.py ├── changelog ├── v3.1.0.md └── v3.1.1.md ├── config ├── example.json ├── examples-all.json ├── examples │ ├── elasticterrain.html │ ├── example-verbatim.html │ ├── example.html │ └── readme.md ├── jsdoc │ ├── api │ │ ├── conf.json │ │ ├── index.md │ │ ├── plugins │ │ │ ├── api.js │ │ │ ├── events.js │ │ │ ├── inheritdoc.js │ │ │ ├── observable.js │ │ │ └── typedefs.js │ │ ├── readme.md │ │ └── template │ │ │ ├── README.md │ │ │ ├── less │ │ │ ├── common.less │ │ │ ├── footer.less │ │ │ ├── jaguar.less │ │ │ ├── main.less │ │ │ └── navigation.less │ │ │ ├── publish.js │ │ │ ├── static │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── logo-70x70.png │ │ │ ├── scripts │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.min.map │ │ │ │ ├── linenumber.js │ │ │ │ ├── main.js │ │ │ │ └── prettify │ │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ │ ├── lang-css.js │ │ │ │ │ └── prettify.js │ │ │ └── styles │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── jaguar.css │ │ │ │ ├── prettify-jsdoc.css │ │ │ │ └── prettify-tomorrow.css │ │ │ └── tmpl │ │ │ ├── container.tmpl │ │ │ ├── details.tmpl │ │ │ ├── example.tmpl │ │ │ ├── examples.tmpl │ │ │ ├── exceptions.tmpl │ │ │ ├── layout.tmpl │ │ │ ├── mainpage.tmpl │ │ │ ├── members.tmpl │ │ │ ├── method.tmpl │ │ │ ├── navigation.tmpl │ │ │ ├── observables.tmpl │ │ │ ├── params.tmpl │ │ │ ├── properties.tmpl │ │ │ ├── returns.tmpl │ │ │ ├── source.tmpl │ │ │ ├── stability.tmpl │ │ │ ├── tutorial.tmpl │ │ │ └── type.tmpl │ └── info │ │ ├── api-plugin.js │ │ ├── conf.json │ │ ├── define-plugin.js │ │ ├── publish.js │ │ └── virtual-plugin.js ├── ol-debug.json ├── ol.json └── readme.md ├── css └── ol.css ├── doc ├── index.hbs ├── quickstart.hbs └── tutorials │ ├── concepts.hbs │ ├── index.hbs │ └── introduction.md ├── examples ├── .eslintrc ├── Jugl.js ├── accessible.css ├── accessible.html ├── accessible.js ├── animation.html ├── animation.js ├── arcgis-tiled.html ├── arcgis-tiled.js ├── attributions.html ├── attributions.js ├── bing-maps.html ├── bing-maps.js ├── blend-modes.css ├── blend-modes.html ├── blend-modes.js ├── box-selection.css ├── box-selection.html ├── box-selection.js ├── button-title.css ├── button-title.html ├── button-title.js ├── canvas-tiles.html ├── canvas-tiles.js ├── center.css ├── center.html ├── center.js ├── cluster.html ├── cluster.js ├── color-manipulation.css ├── color-manipulation.html ├── color-manipulation.js ├── custom-controls.css ├── custom-controls.html ├── custom-controls.js ├── custom-interactions.html ├── custom-interactions.js ├── d3.html ├── d3.js ├── data │ ├── Butterfly.png │ ├── IGNWMTSCapabilities.xml │ ├── WMTSCapabilities.xml │ ├── arrow.png │ ├── blank.png │ ├── configs.json │ ├── dot.png │ ├── elasticterrain_tiles │ │ ├── 0 │ │ │ └── 0 │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── 1 │ │ │ ├── 0 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ └── 1 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ ├── 2 │ │ │ ├── 0 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ ├── 1 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ ├── 2 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ └── 3 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ ├── 3 │ │ │ ├── 0 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ ├── 1 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ ├── 2 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ ├── 3 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ ├── 4 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ ├── 5 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ ├── 6 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ └── 7 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ └── 4 │ │ │ ├── 0 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 1 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 2 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 3 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 4 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 5 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 6 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 7 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 8 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 9 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 10 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 11 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 12 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 13 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── 14 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ └── 15 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ ├── geojson │ │ ├── countries-110m.geojson │ │ ├── countries.geojson │ │ ├── line-samples.geojson │ │ ├── point-samples.geojson │ │ ├── polygon-samples.geojson │ │ ├── roads-seoul.geojson │ │ └── switzerland.geojson │ ├── geolocation-orientation.json │ ├── geolocation_marker.png │ ├── geolocation_marker_heading.png │ ├── gml │ │ └── topp-states-wfs.xml │ ├── gpx │ │ └── fells_loop.gpx │ ├── icon.png │ ├── igc │ │ ├── Clement-Latour.igc │ │ ├── Damien-de-Baenst.igc │ │ ├── Sylvain-Dhonneur.igc │ │ ├── Tom-Payne.igc │ │ └── Ulrich-Prinz.igc │ ├── kml │ │ ├── 2012-02-10.kml │ │ ├── 2012_Earthquakes_Mag5.kml │ │ └── timezones.kml │ ├── ogcsample.xml │ ├── openflights │ │ └── flights.json │ ├── sld │ │ └── countries.sld │ ├── topojson │ │ ├── us.json │ │ └── world-110m.json │ └── wmsgetfeatureinfo │ │ └── osm-restaurant-hotel.xml ├── device-orientation.html ├── device-orientation.js ├── drag-and-drop-image-vector.html ├── drag-and-drop-image-vector.js ├── drag-and-drop.html ├── drag-and-drop.js ├── drag-rotate-and-zoom.html ├── drag-rotate-and-zoom.js ├── draw-and-modify-features.html ├── draw-and-modify-features.js ├── draw-features.html ├── draw-features.js ├── dynamic-data.html ├── dynamic-data.js ├── earthquake-clusters.css ├── earthquake-clusters.html ├── earthquake-clusters.js ├── earthquake-custom-symbol.html ├── earthquake-custom-symbol.js ├── elasticterrain.html ├── elasticterrain.js ├── epsg-4326.html ├── epsg-4326.js ├── export-map.html ├── export-map.js ├── export-pdf.css ├── export-pdf.html ├── export-pdf.js ├── feature-animation.html ├── feature-animation.js ├── feature-move-animation.html ├── feature-move-animation.js ├── flight-animation.html ├── flight-animation.js ├── fractal.css ├── fractal.html ├── fractal.js ├── full-screen-drag-rotate-and-zoom.css ├── full-screen-drag-rotate-and-zoom.html ├── full-screen-drag-rotate-and-zoom.js ├── full-screen-source.css ├── full-screen-source.html ├── full-screen-source.js ├── full-screen.css ├── full-screen.html ├── full-screen.js ├── geojson.html ├── geojson.js ├── geolocation-orientation.html ├── geolocation-orientation.js ├── geolocation.html ├── geolocation.js ├── getfeatureinfo-image.html ├── getfeatureinfo-image.js ├── getfeatureinfo-layers.html ├── getfeatureinfo-layers.js ├── getfeatureinfo-tile.html ├── getfeatureinfo-tile.js ├── gpx.html ├── gpx.js ├── graticule.html ├── graticule.js ├── heatmap-earthquakes.html ├── heatmap-earthquakes.js ├── icon-color.css ├── icon-color.html ├── icon-color.js ├── icon-negative.html ├── icon-negative.js ├── icon-sprite-webgl.html ├── icon-sprite-webgl.js ├── icon.css ├── icon.html ├── icon.js ├── igc.html ├── igc.js ├── image-filter.html ├── image-filter.js ├── image-load-events.css ├── image-load-events.html ├── image-load-events.js ├── image-vector-layer.html ├── image-vector-layer.js ├── index.html ├── jsts.html ├── jsts.js ├── kml-earthquakes.css ├── kml-earthquakes.html ├── kml-earthquakes.js ├── kml-timezones.css ├── kml-timezones.html ├── kml-timezones.js ├── kml.html ├── kml.js ├── layer-clipping-webgl.html ├── layer-clipping-webgl.js ├── layer-clipping.css ├── layer-clipping.html ├── layer-clipping.js ├── layer-extent.html ├── layer-extent.js ├── layer-group.css ├── layer-group.html ├── layer-group.js ├── layer-spy.html ├── layer-spy.js ├── layer-swipe.html ├── layer-swipe.js ├── layer-z-index.html ├── layer-z-index.js ├── lazy-source.css ├── lazy-source.html ├── lazy-source.js ├── line-arrows.html ├── line-arrows.js ├── localized-openstreetmap.html ├── localized-openstreetmap.js ├── mapbox-vector-tiles-advanced.css ├── mapbox-vector-tiles-advanced.html ├── mapbox-vector-tiles-advanced.js ├── mapbox-vector-tiles.css ├── mapbox-vector-tiles.html ├── mapbox-vector-tiles.js ├── mapguide-untiled.html ├── mapguide-untiled.js ├── mapquest.html ├── mapquest.js ├── measure.css ├── measure.html ├── measure.js ├── min-max-resolution.html ├── min-max-resolution.js ├── mobile-full-screen.html ├── mobile-full-screen.js ├── modify-features.html ├── modify-features.js ├── modify-test.css ├── modify-test.html ├── modify-test.js ├── mouse-position.html ├── mouse-position.js ├── moveend.html ├── moveend.js ├── navigation-controls.html ├── navigation-controls.js ├── osm-vector-tiles.css ├── osm-vector-tiles.html ├── osm-vector-tiles.js ├── overlay.css ├── overlay.html ├── overlay.js ├── overviewmap-custom.css ├── overviewmap-custom.html ├── overviewmap-custom.js ├── overviewmap.html ├── overviewmap.js ├── permalink.html ├── permalink.js ├── polygon-styles.css ├── polygon-styles.html ├── polygon-styles.js ├── popup.css ├── popup.html ├── popup.js ├── preload.html ├── preload.js ├── raster.css ├── raster.html ├── raster.js ├── readme.md ├── region-growing.css ├── region-growing.html ├── region-growing.js ├── regularshape.html ├── regularshape.js ├── render-geometry.html ├── render-geometry.js ├── reprojection-by-code.html ├── reprojection-by-code.js ├── reprojection-image.html ├── reprojection-image.js ├── reprojection-wgs84.html ├── reprojection-wgs84.js ├── reprojection.html ├── reprojection.js ├── resources │ ├── common.js │ ├── layout.css │ ├── logo-70x70.png │ ├── map-background.jpg │ ├── mapbox-streets-v6-style.js │ ├── prism │ │ ├── prism.css │ │ └── prism.min.js │ └── zeroclipboard │ │ ├── .jshintrc │ │ ├── ZeroClipboard.Core.js │ │ ├── ZeroClipboard.Core.min.js │ │ ├── ZeroClipboard.Core.min.map │ │ ├── ZeroClipboard.js │ │ ├── ZeroClipboard.min.js │ │ ├── ZeroClipboard.min.map │ │ └── ZeroClipboard.swf ├── rotation.html ├── rotation.js ├── scale-line.html ├── scale-line.js ├── scaleline-indiana-east.html ├── scaleline-indiana-east.js ├── select-features.html ├── select-features.js ├── semi-transparent-layer.html ├── semi-transparent-layer.js ├── shaded-relief.css ├── shaded-relief.html ├── shaded-relief.js ├── side-by-side.html ├── side-by-side.js ├── simple.html ├── simple.js ├── snap.html ├── snap.js ├── sphere-mollweide.html ├── sphere-mollweide.js ├── stamen.html ├── stamen.js ├── static-image.html ├── static-image.js ├── symbol-atlas-webgl.html ├── symbol-atlas-webgl.js ├── synthetic-lines.html ├── synthetic-lines.js ├── synthetic-points.html ├── synthetic-points.js ├── teleport.html ├── teleport.js ├── tile-load-events.css ├── tile-load-events.html ├── tile-load-events.js ├── tilejson.html ├── tilejson.js ├── tileutfgrid.css ├── tileutfgrid.html ├── tileutfgrid.js ├── tissot.html ├── tissot.js ├── topojson.html ├── topojson.js ├── translate-features.html ├── translate-features.js ├── turf.html ├── turf.js ├── vector-esri-edit.html ├── vector-esri-edit.js ├── vector-esri.html ├── vector-esri.js ├── vector-labels.css ├── vector-labels.html ├── vector-labels.js ├── vector-layer.html ├── vector-layer.js ├── vector-osm.html ├── vector-osm.js ├── vector-wfs.html ├── vector-wfs.js ├── wkt.html ├── wkt.js ├── wms-capabilities.css ├── wms-capabilities.html ├── wms-capabilities.js ├── wms-custom-proj.html ├── wms-custom-proj.js ├── wms-custom-tilegrid-512x256.html ├── wms-custom-tilegrid-512x256.js ├── wms-image-custom-proj.html ├── wms-image-custom-proj.js ├── wms-image.html ├── wms-image.js ├── wms-no-proj.html ├── wms-no-proj.js ├── wms-tiled-wrap-180.html ├── wms-tiled-wrap-180.js ├── wms-tiled.html ├── wms-tiled.js ├── wms-time.html ├── wms-time.js ├── wmts-capabilities.css ├── wmts-capabilities.html ├── wmts-capabilities.js ├── wmts-dimensions.html ├── wmts-dimensions.js ├── wmts-hidpi.css ├── wmts-hidpi.html ├── wmts-hidpi.js ├── wmts-ign.html ├── wmts-ign.js ├── wmts-layer-from-capabilities.html ├── wmts-layer-from-capabilities.js ├── wmts.html ├── wmts.js ├── xyz-esri-4326-512.html ├── xyz-esri-4326-512.js ├── xyz-esri.html ├── xyz-esri.js ├── xyz-retina.html ├── xyz-retina.js ├── xyz.html ├── xyz.js ├── zoom-constrained.html ├── zoom-constrained.js ├── zoomify.html ├── zoomify.js ├── zoomslider.css ├── zoomslider.html └── zoomslider.js ├── externs ├── bingmaps.js ├── bootstrap.js ├── closure-compiler.js ├── esrijson.js ├── example.js ├── fastclick.js ├── geojson.js ├── jquery-1.9.js ├── jspdf.js ├── oli.js ├── olx.js ├── proj4js.js ├── readme.md ├── tilejson.js ├── topojson.js └── webgl-debug.js ├── licenses ├── APACHE-2.0.txt ├── BSD-LICENSE.txt └── MIT-LICENSE.txt ├── map ├── package.json ├── src ├── ol.jsdoc ├── ol │ ├── animation.js │ ├── animation.jsdoc │ ├── array.js │ ├── attribution.js │ ├── binary.js │ ├── canvasfunction.js │ ├── centerconstraint.js │ ├── collection.js │ ├── color │ │ ├── color.js │ │ ├── color.jsdoc │ │ └── colormatrix.js │ ├── colorramp.js │ ├── constraints.js │ ├── control.jsdoc │ ├── control │ │ ├── attributioncontrol.js │ │ ├── control.js │ │ ├── controldefaults.js │ │ ├── fullscreencontrol.js │ │ ├── mousepositioncontrol.js │ │ ├── mousepositiondemcontrol.js │ │ ├── overviewmapcontrol.js │ │ ├── rotatecontrol.js │ │ ├── scalelinecontrol.js │ │ ├── zoomcontrol.js │ │ ├── zoomslidercontrol.js │ │ └── zoomtoextentcontrol.js │ ├── coordinate.js │ ├── coordinate.jsdoc │ ├── css.js │ ├── deviceorientation.js │ ├── dom │ │ ├── dom.js │ │ └── input.js │ ├── easing.js │ ├── easing.jsdoc │ ├── elevation.js │ ├── ellipsoid │ │ ├── ellipsoid.js │ │ └── wgs84ellipsoid.js │ ├── events │ │ ├── condition.js │ │ └── condition.jsdoc │ ├── extent.js │ ├── extent.jsdoc │ ├── feature.js │ ├── feature.jsdoc │ ├── featureoverlay.js │ ├── format.jsdoc │ ├── format │ │ ├── binaryfeatureformat.js │ │ ├── featureformat.js │ │ ├── format.js │ │ ├── geojsonformat.js │ │ ├── gml │ │ │ ├── gml2format.js │ │ │ ├── gml3format.js │ │ │ └── gmlbaseformat.js │ │ ├── gpxformat.js │ │ ├── igcformat.js │ │ ├── jsonfeatureformat.js │ │ ├── kmlformat.js │ │ ├── osmxmlformat.js │ │ ├── owsformat.js │ │ ├── polylineformat.js │ │ ├── textfeatureformat.js │ │ ├── topojsonformat.js │ │ ├── wfsformat.js │ │ ├── wktformat.js │ │ ├── wmscapabilitiesformat.js │ │ ├── wmsgetfeatureinfoformat.js │ │ ├── xlinkformat.js │ │ ├── xmlfeatureformat.js │ │ ├── xmlformat.js │ │ └── xsdformat.js │ ├── framestate.js │ ├── geolocation.js │ ├── geom │ │ ├── circle.js │ │ ├── flat │ │ │ ├── areaflatgeom.js │ │ │ ├── centerflatgeom.js │ │ │ ├── closestflatgeom.js │ │ │ ├── containsflatgeom.js │ │ │ ├── deflateflatgeom.js │ │ │ ├── flipflatgeom.js │ │ │ ├── geodesicflatgeom.js │ │ │ ├── inflateflatgeom.js │ │ │ ├── interiorpointflatgeom.js │ │ │ ├── interpolateflatgeom.js │ │ │ ├── intersectsextent.js │ │ │ ├── lengthflatgeom.js │ │ │ ├── orientflatgeom.js │ │ │ ├── reverseflatgeom.js │ │ │ ├── segmentsflatgeom.js │ │ │ ├── simplifyflatgeom.js │ │ │ └── transformflatgeom.js │ │ ├── geom.jsdoc │ │ ├── geometry.js │ │ ├── geometrycollection.js │ │ ├── linearring.js │ │ ├── linestring.js │ │ ├── multilinestring.js │ │ ├── multipoint.js │ │ ├── multipolygon.js │ │ ├── point.js │ │ ├── polygon.js │ │ └── simplegeometry.js │ ├── graticule.js │ ├── has.js │ ├── has.jsdoc │ ├── image.js │ ├── imagebase.js │ ├── imagecanvas.js │ ├── imageloadfunction.js │ ├── imagetile.js │ ├── imageurlfunction.js │ ├── interaction │ │ ├── doubleclickzoominteraction.js │ │ ├── draganddropinteraction.js │ │ ├── dragboxinteraction.js │ │ ├── dragpaninteraction.js │ │ ├── dragrotateandzoominteraction.js │ │ ├── dragrotateinteraction.js │ │ ├── dragshearintegrated.js │ │ ├── dragzoominteraction.js │ │ ├── drawinteraction.js │ │ ├── interaction.js │ │ ├── interaction.jsdoc │ │ ├── interactiondefaults.js │ │ ├── keyboardpaninteraction.js │ │ ├── keyboardzoominteraction.js │ │ ├── modifyinteraction.js │ │ ├── mousewheelzoominteraction.js │ │ ├── pinchrotateinteraction.js │ │ ├── pinchzoominteraction.js │ │ ├── pointerinteraction.js │ │ └── selectinteraction.js │ ├── kinetic.js │ ├── layer │ │ ├── heatmaplayer.js │ │ ├── imagelayer.js │ │ ├── layer.js │ │ ├── layer.jsdoc │ │ ├── layerbase.js │ │ ├── layergroup.js │ │ ├── tiledemlayer.js │ │ ├── tilelayer.js │ │ └── vectorlayer.js │ ├── loadingstrategy.js │ ├── loadingstrategy.jsdoc │ ├── map.js │ ├── mapbrowserevent.js │ ├── mapevent.js │ ├── math.js │ ├── object.js │ ├── observable.js │ ├── ol.js │ ├── overlay.js │ ├── pixel.js │ ├── pointer │ │ ├── eventsource.js │ │ ├── mousesource.js │ │ ├── mssource.js │ │ ├── nativesource.js │ │ ├── pointerevent.js │ │ ├── pointereventhandler.js │ │ └── touchsource.js │ ├── proj │ │ ├── common.js │ │ ├── epsg3857projection.js │ │ ├── epsg4326projection.js │ │ ├── proj.js │ │ └── proj.jsdoc │ ├── render.jsdoc │ ├── render │ │ ├── box.js │ │ ├── canvas │ │ │ ├── canvas.js │ │ │ ├── canvas.jsdoc │ │ │ ├── canvasimmediate.js │ │ │ └── canvasreplay.js │ │ ├── ireplay.js │ │ ├── ivectorcontext.js │ │ ├── renderevent.js │ │ ├── vector.js │ │ └── webgl │ │ │ ├── webglimagecolor.glsl │ │ │ ├── webglimagecolorshader.js │ │ │ ├── webglimagedefault.glsl │ │ │ ├── webglimagedefaultshader.js │ │ │ ├── webglimmediate.js │ │ │ └── webglreplay.js │ ├── renderer │ │ ├── canvas │ │ │ ├── canvasimagelayerrenderer.js │ │ │ ├── canvaslayerrenderer.js │ │ │ ├── canvasmaprenderer.js │ │ │ ├── canvastilelayerrenderer.js │ │ │ └── canvasvectorlayerrenderer.js │ │ ├── dom │ │ │ ├── domimagelayerrenderer.js │ │ │ ├── domlayerrenderer.js │ │ │ ├── dommaprenderer.js │ │ │ ├── domtilelayerrenderer.js │ │ │ └── domvectorlayerrenderer.js │ │ ├── layerrenderer.js │ │ ├── maprenderer.js │ │ └── webgl │ │ │ ├── webglimagelayerrenderer.js │ │ │ ├── webgllayerrenderer.js │ │ │ ├── webglmapcolor.glsl │ │ │ ├── webglmapcolorshader.js │ │ │ ├── webglmapdefault.glsl │ │ │ ├── webglmapdefaultshader.js │ │ │ ├── webglmaprenderer.js │ │ │ ├── webgltiledemlayer.demglsl │ │ │ ├── webgltiledemlayerrenderer.js │ │ │ ├── webgltilelayer.glsl │ │ │ ├── webgltilelayerrenderer.js │ │ │ ├── webgltilelayershader.js │ │ │ └── webglvectorlayerrenderer.js │ ├── resolutionconstraint.js │ ├── rotationconstraint.js │ ├── size.js │ ├── source.jsdoc │ ├── source │ │ ├── bingmapssource.js │ │ ├── clustersource.js │ │ ├── formatvectorsource.js │ │ ├── geojsonsource.js │ │ ├── gpxsource.js │ │ ├── igcsource.js │ │ ├── imagecanvassource.js │ │ ├── imagemapguidesource.js │ │ ├── imagesource.js │ │ ├── imagestaticsource.js │ │ ├── imagevectorsource.js │ │ ├── imagewmssource.js │ │ ├── kmlsource.js │ │ ├── mapquestsource.js │ │ ├── osmsource.js │ │ ├── osmxmlsource.js │ │ ├── servervectorsource.js │ │ ├── source.js │ │ ├── stamensource.js │ │ ├── staticvectorsource.js │ │ ├── tiledebugsource.js │ │ ├── tileimagesource.js │ │ ├── tilejsonsource.js │ │ ├── tilesource.js │ │ ├── tileutfgridsource.js │ │ ├── tilevectorsource.js │ │ ├── tilewmssource.js │ │ ├── topojsonsource.js │ │ ├── vectorsource.js │ │ ├── wmssource.js │ │ ├── wmssource.jsdoc │ │ ├── wmtssource.js │ │ ├── xyzsource.js │ │ └── zoomifysource.js │ ├── sphere │ │ ├── normal.js │ │ ├── sphere.js │ │ └── wgs84sphere.js │ ├── structs │ │ ├── checksum.js │ │ ├── lrucache.js │ │ ├── priorityqueue.js │ │ └── rbush.js │ ├── style.jsdoc │ ├── style │ │ ├── atlasmanager.js │ │ ├── circlestyle.js │ │ ├── fillstyle.js │ │ ├── iconstyle.js │ │ ├── imagestyle.js │ │ ├── regularshapestyle.js │ │ ├── strokestyle.js │ │ ├── style.js │ │ └── textstyle.js │ ├── tile.js │ ├── tilecache.js │ ├── tilecoord.js │ ├── tilegrid.jsdoc │ ├── tilegrid │ │ ├── tilegrid.js │ │ ├── wmtstilegrid.js │ │ ├── xyztilegrid.js │ │ └── zoomifytilegrid.js │ ├── tileloadfunction.js │ ├── tilequeue.js │ ├── tilerange.js │ ├── tileurlfunction.js │ ├── transformfunction.js │ ├── vec │ │ └── mat4.js │ ├── view.js │ ├── webgl │ │ ├── buffer.js │ │ ├── context.js │ │ ├── demshader.mustache │ │ ├── shader.js │ │ ├── shader.mustache │ │ └── webgl.js │ └── xml.js └── olx.jsdoc ├── tasks ├── build-examples.js ├── build-ext.js ├── build.js ├── changelog.sh ├── generate-exports.js ├── generate-externs.js ├── generate-info.js ├── generate-requires.js ├── install.js ├── publish.sh ├── readme.md ├── serve-lib.js ├── serve.js ├── test-coverage.js ├── test-rendering.js └── test.js ├── test ├── README.md ├── index.html ├── phantom_hooks.js ├── spec │ ├── .eslintrc │ └── ol │ │ ├── array.test.js │ │ ├── collection.test.js │ │ ├── color.test.js │ │ ├── control │ │ ├── control.test.js │ │ ├── fullscreencontrol.test.js │ │ ├── mousepositioncontrol.test.js │ │ ├── overviewmapcontrol.test.js │ │ ├── rotatecontrol.test.js │ │ ├── scalelinecontrol.test.js │ │ ├── zoomcontrol.test.js │ │ ├── zoomslidercontrol.test.js │ │ └── zoomtoextentcontrol.test.js │ │ ├── coordinate.test.js │ │ ├── data │ │ ├── 14-8938-5680.vector.pbf │ │ ├── bing_aerialwithlabels.json │ │ ├── point.json │ │ └── tilejson.json │ │ ├── deviceorientation.test.js │ │ ├── events.test.js │ │ ├── events │ │ ├── event.test.js │ │ └── eventtarget.test.js │ │ ├── expect.test.js │ │ ├── extent.test.js │ │ ├── feature.test.js │ │ ├── featureloader.test.js │ │ ├── format │ │ ├── esrijson │ │ │ └── ksfields.json │ │ ├── esrijsonformat.test.js │ │ ├── geojson │ │ │ └── countries.geojson │ │ ├── geojsonformat.test.js │ │ ├── gml │ │ │ ├── more-geoms.xml │ │ │ ├── multiple-typenames-ns.xml │ │ │ ├── multiple-typenames.xml │ │ │ ├── ogr.xml │ │ │ ├── only-boundedby.xml │ │ │ ├── osm-wfs-10.xml │ │ │ ├── repeated-name.xml │ │ │ ├── topp-states-gml.xml │ │ │ └── topp-states-wfs.xml │ │ ├── gmlformat.test.js │ │ ├── gpxformat.test.js │ │ ├── igcformat.test.js │ │ ├── kml │ │ │ ├── states.kml │ │ │ └── style.kml │ │ ├── kmlformat.test.js │ │ ├── mvtformat.test.js │ │ ├── osmxmlformat.test.js │ │ ├── owsformat.test.js │ │ ├── polylineformat.test.js │ │ ├── topojson.test.js │ │ ├── topojson │ │ │ ├── simple.json │ │ │ └── world-110m.json │ │ ├── wfs │ │ │ ├── EmptyFeatureCollection.xml │ │ │ ├── GetFeatureMultiple.xml │ │ │ ├── Native.xml │ │ │ ├── NumberOfFeatures.xml │ │ │ ├── TransactionMulti.xml │ │ │ ├── TransactionResponse.xml │ │ │ ├── TransactionSrs.xml │ │ │ ├── TransactionUpdate.xml │ │ │ ├── TransactionUpdateMultiGeoms.xml │ │ │ ├── boundedBy.xml │ │ │ ├── mapserver.xml │ │ │ ├── polygonv2.xml │ │ │ └── topp-states-wfs.xml │ │ ├── wfsformat.test.js │ │ ├── wkt │ │ │ └── illinois.wkt │ │ ├── wktformat.test.js │ │ ├── wms │ │ │ ├── getfeatureinfo.xml │ │ │ └── ogcsample.xml │ │ ├── wmscapabilities.test.js │ │ ├── wmsgetfeatureinfoformat.test.js │ │ ├── wmts │ │ │ └── arcgis.xml │ │ └── wmtscapabilitiesformat.test.js │ │ ├── geolocation.test.js │ │ ├── geom │ │ ├── circle.test.js │ │ ├── flat │ │ │ ├── areaflatgeom.test.js │ │ │ ├── closestflatgeom.test.js │ │ │ ├── deflateflatgeom.test.js │ │ │ ├── flipflatgeom.test.js │ │ │ ├── inflateflatgeom.test.js │ │ │ ├── interpolateflatgeom.test.js │ │ │ ├── intersectsextentflatgeom.test.js │ │ │ ├── orientflatgeom.test.js │ │ │ ├── reverseflatgeom.test.js │ │ │ ├── segmentsflatgeom.test.js │ │ │ ├── simplifyflatgeom.test.js │ │ │ └── transformflatgeom.test.js │ │ ├── geometrycollection.test.js │ │ ├── linestring.test.js │ │ ├── multilinestring.test.js │ │ ├── multipoint.test.js │ │ ├── multipolygon.test.js │ │ ├── point.test.js │ │ └── polygon.test.js │ │ ├── graticule.test.js │ │ ├── interaction │ │ ├── draganddropinteraction.test.js │ │ ├── dragrotateandzoominteraction.test.js │ │ ├── dragzoominteraction.test.js │ │ ├── drawinteraction.test.js │ │ ├── interaction.test.js │ │ ├── keyboardpaninteraction.test.js │ │ ├── keyboardzoominteraction.test.js │ │ ├── modifyinteraction.test.js │ │ ├── mousewheelzoominteraction.test.js │ │ ├── selectinteraction.test.js │ │ ├── snapinteraction.test.js │ │ └── translateinteraction.test.js │ │ ├── layer │ │ ├── heatmaplayer.test.js │ │ ├── layer.test.js │ │ ├── layergroup.test.js │ │ ├── tilelayer.test.js │ │ ├── vectorlayer.test.js │ │ └── vectortilelayer.test.js │ │ ├── map.test.js │ │ ├── mapbrowserevent.test.js │ │ ├── math.test.js │ │ ├── net.test.js │ │ ├── object.test.js │ │ ├── objectutil.test.js │ │ ├── observable.test.js │ │ ├── overlay.test.js │ │ ├── pointer │ │ ├── mousesource.test.js │ │ ├── pointereventhandler.test.js │ │ └── touchsource.test.js │ │ ├── proj │ │ ├── epsg3857projection.test.js │ │ └── proj.test.js │ │ ├── render.test.js │ │ ├── render │ │ ├── box.test.js │ │ ├── canvas.test.js │ │ ├── canvasimmediate.test.js │ │ ├── renderfeature.test.js │ │ ├── vector.test.js │ │ └── webglreplay.test.js │ │ ├── renderer │ │ ├── canvas │ │ │ ├── canvaslayerrenderer.test.js │ │ │ ├── canvasmaprenderer.test.js │ │ │ ├── canvasreplay.test.js │ │ │ ├── canvasvectorlayerrenderer.test.js │ │ │ └── canvasvectortilelayerrenderer.test.js │ │ ├── layerrenderer.test.js │ │ └── webgl │ │ │ └── webglimagelayerrenderer.test.js │ │ ├── reproj │ │ ├── image.test.js │ │ ├── reproj.test.js │ │ ├── tile.test.js │ │ └── triangulation.test.js │ │ ├── resolutionconstraint.test.js │ │ ├── rotationconstraint.test.js │ │ ├── size.test.js │ │ ├── source │ │ ├── bingmapssource.test.js │ │ ├── clustersource.test.js │ │ ├── images │ │ │ └── 12-655-1583.png │ │ ├── imagestaticsource.test.js │ │ ├── imagewmssource.test.js │ │ ├── rastersource.test.js │ │ ├── source.test.js │ │ ├── tilearcgisrestsource.test.js │ │ ├── tileimagesource.test.js │ │ ├── tilejsonsource.test.js │ │ ├── tilesource.test.js │ │ ├── tilewmssource.test.js │ │ ├── urltilesource.test.js │ │ ├── vectorsource.test.js │ │ ├── vectorsource │ │ │ └── single-feature.json │ │ ├── vectortilesource.test.js │ │ ├── wmtssource.test.js │ │ └── xyzsource.test.js │ │ ├── sphere │ │ └── sphere.test.js │ │ ├── structs │ │ ├── lrucache.test.js │ │ ├── priorityqueue.test.js │ │ └── rbush.test.js │ │ ├── style.test.js │ │ ├── style │ │ ├── atlasmanager.test.js │ │ ├── circlestyle.test.js │ │ ├── iconstyle.test.js │ │ ├── regularshapestyle.test.js │ │ └── textstyle.test.js │ │ ├── tilecoord.test.js │ │ ├── tilegrid │ │ ├── tilegrid.test.js │ │ └── wmtstilegrid.test.js │ │ ├── tilequeue.test.js │ │ ├── tilerange.test.js │ │ ├── tileurlfunction.test.js │ │ ├── view.test.js │ │ └── webgl │ │ └── buffer.test.js └── test-extensions.js └── test_rendering ├── README.md ├── index.html ├── slimerjs-profile ├── prefs.js └── times.json ├── spec ├── .eslintrc └── ol │ ├── data │ ├── icon.png │ ├── me0.svg │ └── tiles │ │ ├── 4326 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0.png │ │ ├── 512x256 │ │ └── 5 │ │ │ └── 3 │ │ │ └── 19.png │ │ ├── mvt │ │ └── 14-8938-5680.vector.pbf │ │ ├── osm-512x256 │ │ └── 5 │ │ │ └── 3 │ │ │ └── 12.png │ │ ├── osm │ │ └── 5 │ │ │ ├── 5 │ │ │ ├── 12.png │ │ │ └── 13.png │ │ │ └── 6 │ │ │ ├── 12.png │ │ │ └── 13.png │ │ └── stamen-labels │ │ └── 5 │ │ └── 5 │ │ └── 12.png │ ├── expected │ ├── pan-canvas.png │ ├── pan-webgl.png │ ├── render-canvas.png │ ├── render-webgl.png │ ├── rotate-canvas.png │ ├── rotate-webgl.png │ ├── zoom-canvas.png │ └── zoom-webgl.png │ ├── layer │ ├── expected │ │ ├── 2-layers-canvas.png │ │ ├── 2-layers-webgl.png │ │ ├── 512x256-canvas.png │ │ ├── 512x256-webgl.png │ │ ├── image-canvas.png │ │ ├── image-scaled.png │ │ ├── image-webgl.png │ │ ├── opacity-canvas.png │ │ ├── opacity-webgl.png │ │ ├── osm-canvas.png │ │ ├── osm-webgl.png │ │ └── vectortile-canvas.png │ ├── image.test.js │ ├── tile.test.js │ └── vectortile.test.js │ ├── map.test.js │ ├── reproj │ ├── expected │ │ ├── 4326-to-3857.png │ │ ├── 512x256-to-64x128.png │ │ ├── dateline-merc-180.png │ │ ├── dateline-pole.png │ │ ├── image-3857-to-4326.png │ │ ├── image-dateline-merc-180.png │ │ ├── image-dateline-pole.png │ │ ├── osm4326.png │ │ ├── osm5070.png │ │ ├── osm54009.png │ │ ├── stitch-osm3740.png │ │ └── stitch-osm4326.png │ ├── image.test.js │ └── tile.test.js │ └── style │ ├── circle.test.js │ ├── expected │ ├── circle-canvas.png │ ├── circle-webgl.png │ ├── icon-canvas-svg-offset.png │ ├── icon-canvas-svg-offset2.png │ ├── icon-canvas-svg-scale.png │ ├── icon-canvas.png │ ├── icon-webgl.png │ ├── linestring-strokes-canvas.png │ ├── polygon-fill-and-strokes-canvas.png │ ├── polygon-types-canvas.png │ ├── polygon-zindex-canvas.png │ ├── regularshape-canvas.png │ └── regularshape-webgl.png │ ├── icon.test.js │ ├── linestring.test.js │ ├── polygon.test.js │ └── regularshape.test.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/README.md -------------------------------------------------------------------------------- /elastic_terrain_screenshot_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/elastic_terrain_screenshot_01.jpg -------------------------------------------------------------------------------- /elastic_terrain_screenshot_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/elastic_terrain_screenshot_02.jpg -------------------------------------------------------------------------------- /map/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/Gruntfile.js -------------------------------------------------------------------------------- /map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/package.json -------------------------------------------------------------------------------- /map/src/data/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/data/blank.png -------------------------------------------------------------------------------- /map/src/data/configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/data/configs.json -------------------------------------------------------------------------------- /map/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/index.html -------------------------------------------------------------------------------- /map/src/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/config.js -------------------------------------------------------------------------------- /map/src/js/configmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/configmanager.js -------------------------------------------------------------------------------- /map/src/js/configmanager_static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/configmanager_static.js -------------------------------------------------------------------------------- /map/src/js/controlbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/controlbar.js -------------------------------------------------------------------------------- /map/src/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/init.js -------------------------------------------------------------------------------- /map/src/js/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/layers.js -------------------------------------------------------------------------------- /map/src/js/showcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/showcase.js -------------------------------------------------------------------------------- /map/src/js/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/viewer.js -------------------------------------------------------------------------------- /map/src/js/webglcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/js/webglcheck.js -------------------------------------------------------------------------------- /map/src/resources/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/css/base.css -------------------------------------------------------------------------------- /map/src/resources/css/controlbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/css/controlbar.css -------------------------------------------------------------------------------- /map/src/resources/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/css/jquery-ui.min.css -------------------------------------------------------------------------------- /map/src/resources/css/ol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/css/ol.css -------------------------------------------------------------------------------- /map/src/resources/css/showcase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/css/showcase.css -------------------------------------------------------------------------------- /map/src/resources/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/less/core.less -------------------------------------------------------------------------------- /map/src/resources/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/less/icons.less -------------------------------------------------------------------------------- /map/src/resources/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/less/larger.less -------------------------------------------------------------------------------- /map/src/resources/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/less/list.less -------------------------------------------------------------------------------- /map/src/resources/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /map/src/resources/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/less/path.less -------------------------------------------------------------------------------- /map/src/resources/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /map/src/resources/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /map/src/resources/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /map/src/resources/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /map/src/resources/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/images/favicon.ico -------------------------------------------------------------------------------- /map/src/resources/images/mars-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/images/mars-overlay.png -------------------------------------------------------------------------------- /map/src/resources/js/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/js/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /map/src/resources/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/js/jquery-ui.min.js -------------------------------------------------------------------------------- /map/src/resources/js/jquery_knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/map/src/resources/js/jquery_knob.js -------------------------------------------------------------------------------- /ol3/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/.jshintrc -------------------------------------------------------------------------------- /ol3/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/.npmignore -------------------------------------------------------------------------------- /ol3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/.travis.yml -------------------------------------------------------------------------------- /ol3/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/CONTRIBUTING.md -------------------------------------------------------------------------------- /ol3/DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/DEVELOPING.md -------------------------------------------------------------------------------- /ol3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/LICENSE.md -------------------------------------------------------------------------------- /ol3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/Makefile -------------------------------------------------------------------------------- /ol3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/README.md -------------------------------------------------------------------------------- /ol3/bin/check-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/bin/check-example.js -------------------------------------------------------------------------------- /ol3/bin/check-requires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/bin/check-requires.py -------------------------------------------------------------------------------- /ol3/bin/combine-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/bin/combine-examples.py -------------------------------------------------------------------------------- /ol3/bin/example-screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/bin/example-screenshot.js -------------------------------------------------------------------------------- /ol3/bin/loader_hosted_examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/bin/loader_hosted_examples.js -------------------------------------------------------------------------------- /ol3/bin/pyglslunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/bin/pyglslunit.py -------------------------------------------------------------------------------- /ol3/bin/split-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/bin/split-example.py -------------------------------------------------------------------------------- /ol3/changelog/v3.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/changelog/v3.1.0.md -------------------------------------------------------------------------------- /ol3/changelog/v3.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/changelog/v3.1.1.md -------------------------------------------------------------------------------- /ol3/config/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/example.json -------------------------------------------------------------------------------- /ol3/config/examples-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/examples-all.json -------------------------------------------------------------------------------- /ol3/config/examples/elasticterrain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/examples/elasticterrain.html -------------------------------------------------------------------------------- /ol3/config/examples/example-verbatim.html: -------------------------------------------------------------------------------- 1 | {{{ contents }}} 2 | -------------------------------------------------------------------------------- /ol3/config/examples/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/examples/example.html -------------------------------------------------------------------------------- /ol3/config/examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/examples/readme.md -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/conf.json -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/index.md -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/plugins/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/plugins/api.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/plugins/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/plugins/events.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/plugins/inheritdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/plugins/inheritdoc.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/plugins/observable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/plugins/observable.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/plugins/typedefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/plugins/typedefs.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/readme.md -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/README.md -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/less/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/less/common.less -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/less/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/less/footer.less -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/less/jaguar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/less/jaguar.less -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/less/main.less -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/publish.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/details.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/details.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/example.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/example.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/layout.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/members.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/members.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/method.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/method.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/params.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/params.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/returns.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/returns.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/source.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/source.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/api/template/tmpl/type.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/api/template/tmpl/type.tmpl -------------------------------------------------------------------------------- /ol3/config/jsdoc/info/api-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/info/api-plugin.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/info/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/info/conf.json -------------------------------------------------------------------------------- /ol3/config/jsdoc/info/define-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/info/define-plugin.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/info/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/info/publish.js -------------------------------------------------------------------------------- /ol3/config/jsdoc/info/virtual-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/jsdoc/info/virtual-plugin.js -------------------------------------------------------------------------------- /ol3/config/ol-debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/ol-debug.json -------------------------------------------------------------------------------- /ol3/config/ol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/ol.json -------------------------------------------------------------------------------- /ol3/config/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/config/readme.md -------------------------------------------------------------------------------- /ol3/css/ol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/css/ol.css -------------------------------------------------------------------------------- /ol3/doc/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/doc/index.hbs -------------------------------------------------------------------------------- /ol3/doc/quickstart.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/doc/quickstart.hbs -------------------------------------------------------------------------------- /ol3/doc/tutorials/concepts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/doc/tutorials/concepts.hbs -------------------------------------------------------------------------------- /ol3/doc/tutorials/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/doc/tutorials/index.hbs -------------------------------------------------------------------------------- /ol3/doc/tutorials/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/doc/tutorials/introduction.md -------------------------------------------------------------------------------- /ol3/examples/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/.eslintrc -------------------------------------------------------------------------------- /ol3/examples/Jugl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/Jugl.js -------------------------------------------------------------------------------- /ol3/examples/accessible.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/accessible.css -------------------------------------------------------------------------------- /ol3/examples/accessible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/accessible.html -------------------------------------------------------------------------------- /ol3/examples/accessible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/accessible.js -------------------------------------------------------------------------------- /ol3/examples/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/animation.html -------------------------------------------------------------------------------- /ol3/examples/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/animation.js -------------------------------------------------------------------------------- /ol3/examples/arcgis-tiled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/arcgis-tiled.html -------------------------------------------------------------------------------- /ol3/examples/arcgis-tiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/arcgis-tiled.js -------------------------------------------------------------------------------- /ol3/examples/attributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/attributions.html -------------------------------------------------------------------------------- /ol3/examples/attributions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/attributions.js -------------------------------------------------------------------------------- /ol3/examples/bing-maps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/bing-maps.html -------------------------------------------------------------------------------- /ol3/examples/bing-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/bing-maps.js -------------------------------------------------------------------------------- /ol3/examples/blend-modes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/blend-modes.css -------------------------------------------------------------------------------- /ol3/examples/blend-modes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/blend-modes.html -------------------------------------------------------------------------------- /ol3/examples/blend-modes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/blend-modes.js -------------------------------------------------------------------------------- /ol3/examples/box-selection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/box-selection.css -------------------------------------------------------------------------------- /ol3/examples/box-selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/box-selection.html -------------------------------------------------------------------------------- /ol3/examples/box-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/box-selection.js -------------------------------------------------------------------------------- /ol3/examples/button-title.css: -------------------------------------------------------------------------------- 1 | .tooltip-inner { 2 | white-space: nowrap; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/button-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/button-title.html -------------------------------------------------------------------------------- /ol3/examples/button-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/button-title.js -------------------------------------------------------------------------------- /ol3/examples/canvas-tiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/canvas-tiles.html -------------------------------------------------------------------------------- /ol3/examples/canvas-tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/canvas-tiles.js -------------------------------------------------------------------------------- /ol3/examples/center.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/center.css -------------------------------------------------------------------------------- /ol3/examples/center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/center.html -------------------------------------------------------------------------------- /ol3/examples/center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/center.js -------------------------------------------------------------------------------- /ol3/examples/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/cluster.html -------------------------------------------------------------------------------- /ol3/examples/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/cluster.js -------------------------------------------------------------------------------- /ol3/examples/color-manipulation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/color-manipulation.css -------------------------------------------------------------------------------- /ol3/examples/color-manipulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/color-manipulation.html -------------------------------------------------------------------------------- /ol3/examples/color-manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/color-manipulation.js -------------------------------------------------------------------------------- /ol3/examples/custom-controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/custom-controls.css -------------------------------------------------------------------------------- /ol3/examples/custom-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/custom-controls.html -------------------------------------------------------------------------------- /ol3/examples/custom-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/custom-controls.js -------------------------------------------------------------------------------- /ol3/examples/custom-interactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/custom-interactions.html -------------------------------------------------------------------------------- /ol3/examples/custom-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/custom-interactions.js -------------------------------------------------------------------------------- /ol3/examples/d3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/d3.html -------------------------------------------------------------------------------- /ol3/examples/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/d3.js -------------------------------------------------------------------------------- /ol3/examples/data/Butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/Butterfly.png -------------------------------------------------------------------------------- /ol3/examples/data/IGNWMTSCapabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/IGNWMTSCapabilities.xml -------------------------------------------------------------------------------- /ol3/examples/data/WMTSCapabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/WMTSCapabilities.xml -------------------------------------------------------------------------------- /ol3/examples/data/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/arrow.png -------------------------------------------------------------------------------- /ol3/examples/data/blank.png: -------------------------------------------------------------------------------- 1 | ../../../map/src/data/blank.png -------------------------------------------------------------------------------- /ol3/examples/data/configs.json: -------------------------------------------------------------------------------- 1 | ../../../map/src/data/configs.json -------------------------------------------------------------------------------- /ol3/examples/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/dot.png -------------------------------------------------------------------------------- /ol3/examples/data/geojson/countries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/geojson/countries.geojson -------------------------------------------------------------------------------- /ol3/examples/data/geojson/line-samples.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/geojson/line-samples.geojson -------------------------------------------------------------------------------- /ol3/examples/data/geojson/point-samples.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/geojson/point-samples.geojson -------------------------------------------------------------------------------- /ol3/examples/data/geolocation_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/geolocation_marker.png -------------------------------------------------------------------------------- /ol3/examples/data/gml/topp-states-wfs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/gml/topp-states-wfs.xml -------------------------------------------------------------------------------- /ol3/examples/data/gpx/fells_loop.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/gpx/fells_loop.gpx -------------------------------------------------------------------------------- /ol3/examples/data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/icon.png -------------------------------------------------------------------------------- /ol3/examples/data/igc/Clement-Latour.igc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/igc/Clement-Latour.igc -------------------------------------------------------------------------------- /ol3/examples/data/igc/Damien-de-Baenst.igc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/igc/Damien-de-Baenst.igc -------------------------------------------------------------------------------- /ol3/examples/data/igc/Sylvain-Dhonneur.igc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/igc/Sylvain-Dhonneur.igc -------------------------------------------------------------------------------- /ol3/examples/data/igc/Tom-Payne.igc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/igc/Tom-Payne.igc -------------------------------------------------------------------------------- /ol3/examples/data/igc/Ulrich-Prinz.igc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/igc/Ulrich-Prinz.igc -------------------------------------------------------------------------------- /ol3/examples/data/kml/2012-02-10.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/kml/2012-02-10.kml -------------------------------------------------------------------------------- /ol3/examples/data/kml/timezones.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/kml/timezones.kml -------------------------------------------------------------------------------- /ol3/examples/data/ogcsample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/ogcsample.xml -------------------------------------------------------------------------------- /ol3/examples/data/openflights/flights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/openflights/flights.json -------------------------------------------------------------------------------- /ol3/examples/data/sld/countries.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/sld/countries.sld -------------------------------------------------------------------------------- /ol3/examples/data/topojson/us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/topojson/us.json -------------------------------------------------------------------------------- /ol3/examples/data/topojson/world-110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/data/topojson/world-110m.json -------------------------------------------------------------------------------- /ol3/examples/device-orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/device-orientation.html -------------------------------------------------------------------------------- /ol3/examples/device-orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/device-orientation.js -------------------------------------------------------------------------------- /ol3/examples/drag-and-drop-image-vector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/drag-and-drop-image-vector.html -------------------------------------------------------------------------------- /ol3/examples/drag-and-drop-image-vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/drag-and-drop-image-vector.js -------------------------------------------------------------------------------- /ol3/examples/drag-and-drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/drag-and-drop.html -------------------------------------------------------------------------------- /ol3/examples/drag-and-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/drag-and-drop.js -------------------------------------------------------------------------------- /ol3/examples/drag-rotate-and-zoom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/drag-rotate-and-zoom.html -------------------------------------------------------------------------------- /ol3/examples/drag-rotate-and-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/drag-rotate-and-zoom.js -------------------------------------------------------------------------------- /ol3/examples/draw-and-modify-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/draw-and-modify-features.html -------------------------------------------------------------------------------- /ol3/examples/draw-and-modify-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/draw-and-modify-features.js -------------------------------------------------------------------------------- /ol3/examples/draw-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/draw-features.html -------------------------------------------------------------------------------- /ol3/examples/draw-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/draw-features.js -------------------------------------------------------------------------------- /ol3/examples/dynamic-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/dynamic-data.html -------------------------------------------------------------------------------- /ol3/examples/dynamic-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/dynamic-data.js -------------------------------------------------------------------------------- /ol3/examples/earthquake-clusters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/earthquake-clusters.css -------------------------------------------------------------------------------- /ol3/examples/earthquake-clusters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/earthquake-clusters.html -------------------------------------------------------------------------------- /ol3/examples/earthquake-clusters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/earthquake-clusters.js -------------------------------------------------------------------------------- /ol3/examples/earthquake-custom-symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/earthquake-custom-symbol.html -------------------------------------------------------------------------------- /ol3/examples/earthquake-custom-symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/earthquake-custom-symbol.js -------------------------------------------------------------------------------- /ol3/examples/elasticterrain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/elasticterrain.html -------------------------------------------------------------------------------- /ol3/examples/elasticterrain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/elasticterrain.js -------------------------------------------------------------------------------- /ol3/examples/epsg-4326.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/epsg-4326.html -------------------------------------------------------------------------------- /ol3/examples/epsg-4326.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/epsg-4326.js -------------------------------------------------------------------------------- /ol3/examples/export-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/export-map.html -------------------------------------------------------------------------------- /ol3/examples/export-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/export-map.js -------------------------------------------------------------------------------- /ol3/examples/export-pdf.css: -------------------------------------------------------------------------------- 1 | .map { 2 | max-width: 566px; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/export-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/export-pdf.html -------------------------------------------------------------------------------- /ol3/examples/export-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/export-pdf.js -------------------------------------------------------------------------------- /ol3/examples/feature-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/feature-animation.html -------------------------------------------------------------------------------- /ol3/examples/feature-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/feature-animation.js -------------------------------------------------------------------------------- /ol3/examples/feature-move-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/feature-move-animation.html -------------------------------------------------------------------------------- /ol3/examples/feature-move-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/feature-move-animation.js -------------------------------------------------------------------------------- /ol3/examples/flight-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/flight-animation.html -------------------------------------------------------------------------------- /ol3/examples/flight-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/flight-animation.js -------------------------------------------------------------------------------- /ol3/examples/fractal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/fractal.css -------------------------------------------------------------------------------- /ol3/examples/fractal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/fractal.html -------------------------------------------------------------------------------- /ol3/examples/fractal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/fractal.js -------------------------------------------------------------------------------- /ol3/examples/full-screen-source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/full-screen-source.css -------------------------------------------------------------------------------- /ol3/examples/full-screen-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/full-screen-source.html -------------------------------------------------------------------------------- /ol3/examples/full-screen-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/full-screen-source.js -------------------------------------------------------------------------------- /ol3/examples/full-screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/full-screen.css -------------------------------------------------------------------------------- /ol3/examples/full-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/full-screen.html -------------------------------------------------------------------------------- /ol3/examples/full-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/full-screen.js -------------------------------------------------------------------------------- /ol3/examples/geojson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/geojson.html -------------------------------------------------------------------------------- /ol3/examples/geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/geojson.js -------------------------------------------------------------------------------- /ol3/examples/geolocation-orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/geolocation-orientation.html -------------------------------------------------------------------------------- /ol3/examples/geolocation-orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/geolocation-orientation.js -------------------------------------------------------------------------------- /ol3/examples/geolocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/geolocation.html -------------------------------------------------------------------------------- /ol3/examples/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/geolocation.js -------------------------------------------------------------------------------- /ol3/examples/getfeatureinfo-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/getfeatureinfo-image.html -------------------------------------------------------------------------------- /ol3/examples/getfeatureinfo-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/getfeatureinfo-image.js -------------------------------------------------------------------------------- /ol3/examples/getfeatureinfo-layers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/getfeatureinfo-layers.html -------------------------------------------------------------------------------- /ol3/examples/getfeatureinfo-layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/getfeatureinfo-layers.js -------------------------------------------------------------------------------- /ol3/examples/getfeatureinfo-tile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/getfeatureinfo-tile.html -------------------------------------------------------------------------------- /ol3/examples/getfeatureinfo-tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/getfeatureinfo-tile.js -------------------------------------------------------------------------------- /ol3/examples/gpx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/gpx.html -------------------------------------------------------------------------------- /ol3/examples/gpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/gpx.js -------------------------------------------------------------------------------- /ol3/examples/graticule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/graticule.html -------------------------------------------------------------------------------- /ol3/examples/graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/graticule.js -------------------------------------------------------------------------------- /ol3/examples/heatmap-earthquakes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/heatmap-earthquakes.html -------------------------------------------------------------------------------- /ol3/examples/heatmap-earthquakes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/heatmap-earthquakes.js -------------------------------------------------------------------------------- /ol3/examples/icon-color.css: -------------------------------------------------------------------------------- 1 | #map { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/icon-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/icon-color.html -------------------------------------------------------------------------------- /ol3/examples/icon-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/icon-color.js -------------------------------------------------------------------------------- /ol3/examples/icon-negative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/icon-negative.html -------------------------------------------------------------------------------- /ol3/examples/icon-negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/icon-negative.js -------------------------------------------------------------------------------- /ol3/examples/icon-sprite-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/icon-sprite-webgl.html -------------------------------------------------------------------------------- /ol3/examples/icon-sprite-webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/icon-sprite-webgl.js -------------------------------------------------------------------------------- /ol3/examples/icon.css: -------------------------------------------------------------------------------- 1 | #map { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/icon.html -------------------------------------------------------------------------------- /ol3/examples/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/icon.js -------------------------------------------------------------------------------- /ol3/examples/igc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/igc.html -------------------------------------------------------------------------------- /ol3/examples/igc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/igc.js -------------------------------------------------------------------------------- /ol3/examples/image-filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/image-filter.html -------------------------------------------------------------------------------- /ol3/examples/image-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/image-filter.js -------------------------------------------------------------------------------- /ol3/examples/image-load-events.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/image-load-events.css -------------------------------------------------------------------------------- /ol3/examples/image-load-events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/image-load-events.html -------------------------------------------------------------------------------- /ol3/examples/image-load-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/image-load-events.js -------------------------------------------------------------------------------- /ol3/examples/image-vector-layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/image-vector-layer.html -------------------------------------------------------------------------------- /ol3/examples/image-vector-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/image-vector-layer.js -------------------------------------------------------------------------------- /ol3/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/index.html -------------------------------------------------------------------------------- /ol3/examples/jsts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/jsts.html -------------------------------------------------------------------------------- /ol3/examples/jsts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/jsts.js -------------------------------------------------------------------------------- /ol3/examples/kml-earthquakes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/kml-earthquakes.css -------------------------------------------------------------------------------- /ol3/examples/kml-earthquakes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/kml-earthquakes.html -------------------------------------------------------------------------------- /ol3/examples/kml-earthquakes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/kml-earthquakes.js -------------------------------------------------------------------------------- /ol3/examples/kml-timezones.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/kml-timezones.css -------------------------------------------------------------------------------- /ol3/examples/kml-timezones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/kml-timezones.html -------------------------------------------------------------------------------- /ol3/examples/kml-timezones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/kml-timezones.js -------------------------------------------------------------------------------- /ol3/examples/kml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/kml.html -------------------------------------------------------------------------------- /ol3/examples/kml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/kml.js -------------------------------------------------------------------------------- /ol3/examples/layer-clipping-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-clipping-webgl.html -------------------------------------------------------------------------------- /ol3/examples/layer-clipping-webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-clipping-webgl.js -------------------------------------------------------------------------------- /ol3/examples/layer-clipping.css: -------------------------------------------------------------------------------- 1 | #map { 2 | background: transparent; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/layer-clipping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-clipping.html -------------------------------------------------------------------------------- /ol3/examples/layer-clipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-clipping.js -------------------------------------------------------------------------------- /ol3/examples/layer-extent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-extent.html -------------------------------------------------------------------------------- /ol3/examples/layer-extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-extent.js -------------------------------------------------------------------------------- /ol3/examples/layer-group.css: -------------------------------------------------------------------------------- 1 | #layertree li > span { 2 | cursor: pointer; 3 | } -------------------------------------------------------------------------------- /ol3/examples/layer-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-group.html -------------------------------------------------------------------------------- /ol3/examples/layer-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-group.js -------------------------------------------------------------------------------- /ol3/examples/layer-spy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-spy.html -------------------------------------------------------------------------------- /ol3/examples/layer-spy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-spy.js -------------------------------------------------------------------------------- /ol3/examples/layer-swipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-swipe.html -------------------------------------------------------------------------------- /ol3/examples/layer-swipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-swipe.js -------------------------------------------------------------------------------- /ol3/examples/layer-z-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-z-index.html -------------------------------------------------------------------------------- /ol3/examples/layer-z-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/layer-z-index.js -------------------------------------------------------------------------------- /ol3/examples/lazy-source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/lazy-source.css -------------------------------------------------------------------------------- /ol3/examples/lazy-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/lazy-source.html -------------------------------------------------------------------------------- /ol3/examples/lazy-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/lazy-source.js -------------------------------------------------------------------------------- /ol3/examples/line-arrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/line-arrows.html -------------------------------------------------------------------------------- /ol3/examples/line-arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/line-arrows.js -------------------------------------------------------------------------------- /ol3/examples/localized-openstreetmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/localized-openstreetmap.html -------------------------------------------------------------------------------- /ol3/examples/localized-openstreetmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/localized-openstreetmap.js -------------------------------------------------------------------------------- /ol3/examples/mapbox-vector-tiles-advanced.css: -------------------------------------------------------------------------------- 1 | .map { 2 | background: #f8f4f0; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/mapbox-vector-tiles-advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mapbox-vector-tiles-advanced.js -------------------------------------------------------------------------------- /ol3/examples/mapbox-vector-tiles.css: -------------------------------------------------------------------------------- 1 | .map { 2 | background: #f8f4f0; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/mapbox-vector-tiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mapbox-vector-tiles.html -------------------------------------------------------------------------------- /ol3/examples/mapbox-vector-tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mapbox-vector-tiles.js -------------------------------------------------------------------------------- /ol3/examples/mapguide-untiled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mapguide-untiled.html -------------------------------------------------------------------------------- /ol3/examples/mapguide-untiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mapguide-untiled.js -------------------------------------------------------------------------------- /ol3/examples/mapquest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mapquest.html -------------------------------------------------------------------------------- /ol3/examples/mapquest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mapquest.js -------------------------------------------------------------------------------- /ol3/examples/measure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/measure.css -------------------------------------------------------------------------------- /ol3/examples/measure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/measure.html -------------------------------------------------------------------------------- /ol3/examples/measure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/measure.js -------------------------------------------------------------------------------- /ol3/examples/min-max-resolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/min-max-resolution.html -------------------------------------------------------------------------------- /ol3/examples/min-max-resolution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/min-max-resolution.js -------------------------------------------------------------------------------- /ol3/examples/mobile-full-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mobile-full-screen.html -------------------------------------------------------------------------------- /ol3/examples/mobile-full-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mobile-full-screen.js -------------------------------------------------------------------------------- /ol3/examples/modify-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/modify-features.html -------------------------------------------------------------------------------- /ol3/examples/modify-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/modify-features.js -------------------------------------------------------------------------------- /ol3/examples/modify-test.css: -------------------------------------------------------------------------------- 1 | .map { 2 | background: grey; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/modify-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/modify-test.html -------------------------------------------------------------------------------- /ol3/examples/modify-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/modify-test.js -------------------------------------------------------------------------------- /ol3/examples/mouse-position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mouse-position.html -------------------------------------------------------------------------------- /ol3/examples/mouse-position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/mouse-position.js -------------------------------------------------------------------------------- /ol3/examples/moveend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/moveend.html -------------------------------------------------------------------------------- /ol3/examples/moveend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/moveend.js -------------------------------------------------------------------------------- /ol3/examples/navigation-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/navigation-controls.html -------------------------------------------------------------------------------- /ol3/examples/navigation-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/navigation-controls.js -------------------------------------------------------------------------------- /ol3/examples/osm-vector-tiles.css: -------------------------------------------------------------------------------- 1 | .map { 2 | background: #f8f4f0; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/osm-vector-tiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/osm-vector-tiles.html -------------------------------------------------------------------------------- /ol3/examples/osm-vector-tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/osm-vector-tiles.js -------------------------------------------------------------------------------- /ol3/examples/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/overlay.css -------------------------------------------------------------------------------- /ol3/examples/overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/overlay.html -------------------------------------------------------------------------------- /ol3/examples/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/overlay.js -------------------------------------------------------------------------------- /ol3/examples/overviewmap-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/overviewmap-custom.css -------------------------------------------------------------------------------- /ol3/examples/overviewmap-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/overviewmap-custom.html -------------------------------------------------------------------------------- /ol3/examples/overviewmap-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/overviewmap-custom.js -------------------------------------------------------------------------------- /ol3/examples/overviewmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/overviewmap.html -------------------------------------------------------------------------------- /ol3/examples/overviewmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/overviewmap.js -------------------------------------------------------------------------------- /ol3/examples/permalink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/permalink.html -------------------------------------------------------------------------------- /ol3/examples/permalink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/permalink.js -------------------------------------------------------------------------------- /ol3/examples/polygon-styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ol3/examples/polygon-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/polygon-styles.html -------------------------------------------------------------------------------- /ol3/examples/polygon-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/polygon-styles.js -------------------------------------------------------------------------------- /ol3/examples/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/popup.css -------------------------------------------------------------------------------- /ol3/examples/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/popup.html -------------------------------------------------------------------------------- /ol3/examples/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/popup.js -------------------------------------------------------------------------------- /ol3/examples/preload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/preload.html -------------------------------------------------------------------------------- /ol3/examples/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/preload.js -------------------------------------------------------------------------------- /ol3/examples/raster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/raster.css -------------------------------------------------------------------------------- /ol3/examples/raster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/raster.html -------------------------------------------------------------------------------- /ol3/examples/raster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/raster.js -------------------------------------------------------------------------------- /ol3/examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/readme.md -------------------------------------------------------------------------------- /ol3/examples/region-growing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/region-growing.css -------------------------------------------------------------------------------- /ol3/examples/region-growing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/region-growing.html -------------------------------------------------------------------------------- /ol3/examples/region-growing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/region-growing.js -------------------------------------------------------------------------------- /ol3/examples/regularshape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/regularshape.html -------------------------------------------------------------------------------- /ol3/examples/regularshape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/regularshape.js -------------------------------------------------------------------------------- /ol3/examples/render-geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/render-geometry.html -------------------------------------------------------------------------------- /ol3/examples/render-geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/render-geometry.js -------------------------------------------------------------------------------- /ol3/examples/reprojection-by-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/reprojection-by-code.html -------------------------------------------------------------------------------- /ol3/examples/reprojection-by-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/reprojection-by-code.js -------------------------------------------------------------------------------- /ol3/examples/reprojection-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/reprojection-image.html -------------------------------------------------------------------------------- /ol3/examples/reprojection-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/reprojection-image.js -------------------------------------------------------------------------------- /ol3/examples/reprojection-wgs84.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/reprojection-wgs84.html -------------------------------------------------------------------------------- /ol3/examples/reprojection-wgs84.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/reprojection-wgs84.js -------------------------------------------------------------------------------- /ol3/examples/reprojection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/reprojection.html -------------------------------------------------------------------------------- /ol3/examples/reprojection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/reprojection.js -------------------------------------------------------------------------------- /ol3/examples/resources/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/resources/common.js -------------------------------------------------------------------------------- /ol3/examples/resources/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/resources/layout.css -------------------------------------------------------------------------------- /ol3/examples/resources/logo-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/resources/logo-70x70.png -------------------------------------------------------------------------------- /ol3/examples/resources/map-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/resources/map-background.jpg -------------------------------------------------------------------------------- /ol3/examples/resources/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/resources/prism/prism.css -------------------------------------------------------------------------------- /ol3/examples/resources/prism/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/resources/prism/prism.min.js -------------------------------------------------------------------------------- /ol3/examples/rotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/rotation.html -------------------------------------------------------------------------------- /ol3/examples/rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/rotation.js -------------------------------------------------------------------------------- /ol3/examples/scale-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/scale-line.html -------------------------------------------------------------------------------- /ol3/examples/scale-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/scale-line.js -------------------------------------------------------------------------------- /ol3/examples/scaleline-indiana-east.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/scaleline-indiana-east.html -------------------------------------------------------------------------------- /ol3/examples/scaleline-indiana-east.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/scaleline-indiana-east.js -------------------------------------------------------------------------------- /ol3/examples/select-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/select-features.html -------------------------------------------------------------------------------- /ol3/examples/select-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/select-features.js -------------------------------------------------------------------------------- /ol3/examples/semi-transparent-layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/semi-transparent-layer.html -------------------------------------------------------------------------------- /ol3/examples/semi-transparent-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/semi-transparent-layer.js -------------------------------------------------------------------------------- /ol3/examples/shaded-relief.css: -------------------------------------------------------------------------------- 1 | table.controls td { 2 | text-align: center; 3 | padding: 2px 5px; 4 | } 5 | -------------------------------------------------------------------------------- /ol3/examples/shaded-relief.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/shaded-relief.html -------------------------------------------------------------------------------- /ol3/examples/shaded-relief.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/shaded-relief.js -------------------------------------------------------------------------------- /ol3/examples/side-by-side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/side-by-side.html -------------------------------------------------------------------------------- /ol3/examples/side-by-side.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/side-by-side.js -------------------------------------------------------------------------------- /ol3/examples/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/simple.html -------------------------------------------------------------------------------- /ol3/examples/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/simple.js -------------------------------------------------------------------------------- /ol3/examples/snap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/snap.html -------------------------------------------------------------------------------- /ol3/examples/snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/snap.js -------------------------------------------------------------------------------- /ol3/examples/sphere-mollweide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/sphere-mollweide.html -------------------------------------------------------------------------------- /ol3/examples/sphere-mollweide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/sphere-mollweide.js -------------------------------------------------------------------------------- /ol3/examples/stamen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/stamen.html -------------------------------------------------------------------------------- /ol3/examples/stamen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/stamen.js -------------------------------------------------------------------------------- /ol3/examples/static-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/static-image.html -------------------------------------------------------------------------------- /ol3/examples/static-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/static-image.js -------------------------------------------------------------------------------- /ol3/examples/symbol-atlas-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/symbol-atlas-webgl.html -------------------------------------------------------------------------------- /ol3/examples/symbol-atlas-webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/symbol-atlas-webgl.js -------------------------------------------------------------------------------- /ol3/examples/synthetic-lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/synthetic-lines.html -------------------------------------------------------------------------------- /ol3/examples/synthetic-lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/synthetic-lines.js -------------------------------------------------------------------------------- /ol3/examples/synthetic-points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/synthetic-points.html -------------------------------------------------------------------------------- /ol3/examples/synthetic-points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/synthetic-points.js -------------------------------------------------------------------------------- /ol3/examples/teleport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/teleport.html -------------------------------------------------------------------------------- /ol3/examples/teleport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/teleport.js -------------------------------------------------------------------------------- /ol3/examples/tile-load-events.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tile-load-events.css -------------------------------------------------------------------------------- /ol3/examples/tile-load-events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tile-load-events.html -------------------------------------------------------------------------------- /ol3/examples/tile-load-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tile-load-events.js -------------------------------------------------------------------------------- /ol3/examples/tilejson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tilejson.html -------------------------------------------------------------------------------- /ol3/examples/tilejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tilejson.js -------------------------------------------------------------------------------- /ol3/examples/tileutfgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tileutfgrid.css -------------------------------------------------------------------------------- /ol3/examples/tileutfgrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tileutfgrid.html -------------------------------------------------------------------------------- /ol3/examples/tileutfgrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tileutfgrid.js -------------------------------------------------------------------------------- /ol3/examples/tissot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tissot.html -------------------------------------------------------------------------------- /ol3/examples/tissot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/tissot.js -------------------------------------------------------------------------------- /ol3/examples/topojson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/topojson.html -------------------------------------------------------------------------------- /ol3/examples/topojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/topojson.js -------------------------------------------------------------------------------- /ol3/examples/translate-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/translate-features.html -------------------------------------------------------------------------------- /ol3/examples/translate-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/translate-features.js -------------------------------------------------------------------------------- /ol3/examples/turf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/turf.html -------------------------------------------------------------------------------- /ol3/examples/turf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/turf.js -------------------------------------------------------------------------------- /ol3/examples/vector-esri-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-esri-edit.html -------------------------------------------------------------------------------- /ol3/examples/vector-esri-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-esri-edit.js -------------------------------------------------------------------------------- /ol3/examples/vector-esri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-esri.html -------------------------------------------------------------------------------- /ol3/examples/vector-esri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-esri.js -------------------------------------------------------------------------------- /ol3/examples/vector-labels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-labels.css -------------------------------------------------------------------------------- /ol3/examples/vector-labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-labels.html -------------------------------------------------------------------------------- /ol3/examples/vector-labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-labels.js -------------------------------------------------------------------------------- /ol3/examples/vector-layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-layer.html -------------------------------------------------------------------------------- /ol3/examples/vector-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-layer.js -------------------------------------------------------------------------------- /ol3/examples/vector-osm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-osm.html -------------------------------------------------------------------------------- /ol3/examples/vector-osm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-osm.js -------------------------------------------------------------------------------- /ol3/examples/vector-wfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-wfs.html -------------------------------------------------------------------------------- /ol3/examples/vector-wfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/vector-wfs.js -------------------------------------------------------------------------------- /ol3/examples/wkt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wkt.html -------------------------------------------------------------------------------- /ol3/examples/wkt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wkt.js -------------------------------------------------------------------------------- /ol3/examples/wms-capabilities.css: -------------------------------------------------------------------------------- 1 | .log-container { 2 | height: 400px; 3 | overflow: scroll; 4 | } 5 | -------------------------------------------------------------------------------- /ol3/examples/wms-capabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-capabilities.html -------------------------------------------------------------------------------- /ol3/examples/wms-capabilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-capabilities.js -------------------------------------------------------------------------------- /ol3/examples/wms-custom-proj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-custom-proj.html -------------------------------------------------------------------------------- /ol3/examples/wms-custom-proj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-custom-proj.js -------------------------------------------------------------------------------- /ol3/examples/wms-custom-tilegrid-512x256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-custom-tilegrid-512x256.js -------------------------------------------------------------------------------- /ol3/examples/wms-image-custom-proj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-image-custom-proj.html -------------------------------------------------------------------------------- /ol3/examples/wms-image-custom-proj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-image-custom-proj.js -------------------------------------------------------------------------------- /ol3/examples/wms-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-image.html -------------------------------------------------------------------------------- /ol3/examples/wms-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-image.js -------------------------------------------------------------------------------- /ol3/examples/wms-no-proj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-no-proj.html -------------------------------------------------------------------------------- /ol3/examples/wms-no-proj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-no-proj.js -------------------------------------------------------------------------------- /ol3/examples/wms-tiled-wrap-180.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-tiled-wrap-180.html -------------------------------------------------------------------------------- /ol3/examples/wms-tiled-wrap-180.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-tiled-wrap-180.js -------------------------------------------------------------------------------- /ol3/examples/wms-tiled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-tiled.html -------------------------------------------------------------------------------- /ol3/examples/wms-tiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-tiled.js -------------------------------------------------------------------------------- /ol3/examples/wms-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-time.html -------------------------------------------------------------------------------- /ol3/examples/wms-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wms-time.js -------------------------------------------------------------------------------- /ol3/examples/wmts-capabilities.css: -------------------------------------------------------------------------------- 1 | .log-container { 2 | height: 400px; 3 | overflow: scroll; 4 | } 5 | -------------------------------------------------------------------------------- /ol3/examples/wmts-capabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-capabilities.html -------------------------------------------------------------------------------- /ol3/examples/wmts-capabilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-capabilities.js -------------------------------------------------------------------------------- /ol3/examples/wmts-dimensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-dimensions.html -------------------------------------------------------------------------------- /ol3/examples/wmts-dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-dimensions.js -------------------------------------------------------------------------------- /ol3/examples/wmts-hidpi.css: -------------------------------------------------------------------------------- 1 | .map { 2 | background: white; 3 | } 4 | -------------------------------------------------------------------------------- /ol3/examples/wmts-hidpi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-hidpi.html -------------------------------------------------------------------------------- /ol3/examples/wmts-hidpi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-hidpi.js -------------------------------------------------------------------------------- /ol3/examples/wmts-ign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-ign.html -------------------------------------------------------------------------------- /ol3/examples/wmts-ign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-ign.js -------------------------------------------------------------------------------- /ol3/examples/wmts-layer-from-capabilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts-layer-from-capabilities.js -------------------------------------------------------------------------------- /ol3/examples/wmts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts.html -------------------------------------------------------------------------------- /ol3/examples/wmts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/wmts.js -------------------------------------------------------------------------------- /ol3/examples/xyz-esri-4326-512.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/xyz-esri-4326-512.html -------------------------------------------------------------------------------- /ol3/examples/xyz-esri-4326-512.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/xyz-esri-4326-512.js -------------------------------------------------------------------------------- /ol3/examples/xyz-esri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/xyz-esri.html -------------------------------------------------------------------------------- /ol3/examples/xyz-esri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/xyz-esri.js -------------------------------------------------------------------------------- /ol3/examples/xyz-retina.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/xyz-retina.html -------------------------------------------------------------------------------- /ol3/examples/xyz-retina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/xyz-retina.js -------------------------------------------------------------------------------- /ol3/examples/xyz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/xyz.html -------------------------------------------------------------------------------- /ol3/examples/xyz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/xyz.js -------------------------------------------------------------------------------- /ol3/examples/zoom-constrained.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/zoom-constrained.html -------------------------------------------------------------------------------- /ol3/examples/zoom-constrained.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/zoom-constrained.js -------------------------------------------------------------------------------- /ol3/examples/zoomify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/zoomify.html -------------------------------------------------------------------------------- /ol3/examples/zoomify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/zoomify.js -------------------------------------------------------------------------------- /ol3/examples/zoomslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/zoomslider.css -------------------------------------------------------------------------------- /ol3/examples/zoomslider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/zoomslider.html -------------------------------------------------------------------------------- /ol3/examples/zoomslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/examples/zoomslider.js -------------------------------------------------------------------------------- /ol3/externs/bingmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/bingmaps.js -------------------------------------------------------------------------------- /ol3/externs/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/bootstrap.js -------------------------------------------------------------------------------- /ol3/externs/closure-compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/closure-compiler.js -------------------------------------------------------------------------------- /ol3/externs/esrijson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/esrijson.js -------------------------------------------------------------------------------- /ol3/externs/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/example.js -------------------------------------------------------------------------------- /ol3/externs/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/fastclick.js -------------------------------------------------------------------------------- /ol3/externs/geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/geojson.js -------------------------------------------------------------------------------- /ol3/externs/jquery-1.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/jquery-1.9.js -------------------------------------------------------------------------------- /ol3/externs/jspdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/jspdf.js -------------------------------------------------------------------------------- /ol3/externs/oli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/oli.js -------------------------------------------------------------------------------- /ol3/externs/olx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/olx.js -------------------------------------------------------------------------------- /ol3/externs/proj4js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/proj4js.js -------------------------------------------------------------------------------- /ol3/externs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/readme.md -------------------------------------------------------------------------------- /ol3/externs/tilejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/tilejson.js -------------------------------------------------------------------------------- /ol3/externs/topojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/topojson.js -------------------------------------------------------------------------------- /ol3/externs/webgl-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/externs/webgl-debug.js -------------------------------------------------------------------------------- /ol3/licenses/APACHE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/licenses/APACHE-2.0.txt -------------------------------------------------------------------------------- /ol3/licenses/BSD-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/licenses/BSD-LICENSE.txt -------------------------------------------------------------------------------- /ol3/licenses/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/licenses/MIT-LICENSE.txt -------------------------------------------------------------------------------- /ol3/map: -------------------------------------------------------------------------------- 1 | ../map -------------------------------------------------------------------------------- /ol3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/package.json -------------------------------------------------------------------------------- /ol3/src/ol.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/animation.js -------------------------------------------------------------------------------- /ol3/src/ol/animation.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/animation.jsdoc -------------------------------------------------------------------------------- /ol3/src/ol/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/array.js -------------------------------------------------------------------------------- /ol3/src/ol/attribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/attribution.js -------------------------------------------------------------------------------- /ol3/src/ol/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/binary.js -------------------------------------------------------------------------------- /ol3/src/ol/canvasfunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/canvasfunction.js -------------------------------------------------------------------------------- /ol3/src/ol/centerconstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/centerconstraint.js -------------------------------------------------------------------------------- /ol3/src/ol/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/collection.js -------------------------------------------------------------------------------- /ol3/src/ol/color/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/color/color.js -------------------------------------------------------------------------------- /ol3/src/ol/color/color.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/color/color.jsdoc -------------------------------------------------------------------------------- /ol3/src/ol/color/colormatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/color/colormatrix.js -------------------------------------------------------------------------------- /ol3/src/ol/colorramp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/colorramp.js -------------------------------------------------------------------------------- /ol3/src/ol/constraints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/constraints.js -------------------------------------------------------------------------------- /ol3/src/ol/control.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.control 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/control/attributioncontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/attributioncontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/control/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/control.js -------------------------------------------------------------------------------- /ol3/src/ol/control/controldefaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/controldefaults.js -------------------------------------------------------------------------------- /ol3/src/ol/control/fullscreencontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/fullscreencontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/control/mousepositioncontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/mousepositioncontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/control/overviewmapcontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/overviewmapcontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/control/rotatecontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/rotatecontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/control/scalelinecontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/scalelinecontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/control/zoomcontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/zoomcontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/control/zoomslidercontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/zoomslidercontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/control/zoomtoextentcontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/control/zoomtoextentcontrol.js -------------------------------------------------------------------------------- /ol3/src/ol/coordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/coordinate.js -------------------------------------------------------------------------------- /ol3/src/ol/coordinate.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.coordinate 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/css.js -------------------------------------------------------------------------------- /ol3/src/ol/deviceorientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/deviceorientation.js -------------------------------------------------------------------------------- /ol3/src/ol/dom/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/dom/dom.js -------------------------------------------------------------------------------- /ol3/src/ol/dom/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/dom/input.js -------------------------------------------------------------------------------- /ol3/src/ol/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/easing.js -------------------------------------------------------------------------------- /ol3/src/ol/easing.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/easing.jsdoc -------------------------------------------------------------------------------- /ol3/src/ol/elevation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/elevation.js -------------------------------------------------------------------------------- /ol3/src/ol/ellipsoid/ellipsoid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/ellipsoid/ellipsoid.js -------------------------------------------------------------------------------- /ol3/src/ol/ellipsoid/wgs84ellipsoid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/ellipsoid/wgs84ellipsoid.js -------------------------------------------------------------------------------- /ol3/src/ol/events/condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/events/condition.js -------------------------------------------------------------------------------- /ol3/src/ol/events/condition.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/events/condition.jsdoc -------------------------------------------------------------------------------- /ol3/src/ol/extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/extent.js -------------------------------------------------------------------------------- /ol3/src/ol/extent.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.extent 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/feature.js -------------------------------------------------------------------------------- /ol3/src/ol/feature.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.feature 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/featureoverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/featureoverlay.js -------------------------------------------------------------------------------- /ol3/src/ol/format.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.format 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/format/binaryfeatureformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/binaryfeatureformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/featureformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/featureformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/format.js -------------------------------------------------------------------------------- /ol3/src/ol/format/geojsonformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/geojsonformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/gml/gml2format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/gml/gml2format.js -------------------------------------------------------------------------------- /ol3/src/ol/format/gml/gml3format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/gml/gml3format.js -------------------------------------------------------------------------------- /ol3/src/ol/format/gml/gmlbaseformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/gml/gmlbaseformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/gpxformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/gpxformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/igcformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/igcformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/jsonfeatureformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/jsonfeatureformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/kmlformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/kmlformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/osmxmlformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/osmxmlformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/owsformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/owsformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/polylineformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/polylineformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/textfeatureformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/textfeatureformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/topojsonformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/topojsonformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/wfsformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/wfsformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/wktformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/wktformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/wmscapabilitiesformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/wmscapabilitiesformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/wmsgetfeatureinfoformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/wmsgetfeatureinfoformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/xlinkformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/xlinkformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/xmlfeatureformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/xmlfeatureformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/xmlformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/xmlformat.js -------------------------------------------------------------------------------- /ol3/src/ol/format/xsdformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/format/xsdformat.js -------------------------------------------------------------------------------- /ol3/src/ol/framestate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/framestate.js -------------------------------------------------------------------------------- /ol3/src/ol/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geolocation.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/circle.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/areaflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/areaflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/centerflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/centerflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/closestflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/closestflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/containsflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/containsflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/deflateflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/deflateflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/flipflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/flipflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/geodesicflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/geodesicflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/inflateflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/inflateflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/interpolateflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/interpolateflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/intersectsextent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/intersectsextent.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/lengthflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/lengthflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/orientflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/orientflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/reverseflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/reverseflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/segmentsflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/segmentsflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/simplifyflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/simplifyflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/flat/transformflatgeom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/flat/transformflatgeom.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/geom.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.geom 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/geom/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/geometry.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/geometrycollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/geometrycollection.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/linearring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/linearring.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/linestring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/linestring.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/multilinestring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/multilinestring.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/multipoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/multipoint.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/multipolygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/multipolygon.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/point.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/polygon.js -------------------------------------------------------------------------------- /ol3/src/ol/geom/simplegeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/geom/simplegeometry.js -------------------------------------------------------------------------------- /ol3/src/ol/graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/graticule.js -------------------------------------------------------------------------------- /ol3/src/ol/has.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/has.js -------------------------------------------------------------------------------- /ol3/src/ol/has.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.has 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/image.js -------------------------------------------------------------------------------- /ol3/src/ol/imagebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/imagebase.js -------------------------------------------------------------------------------- /ol3/src/ol/imagecanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/imagecanvas.js -------------------------------------------------------------------------------- /ol3/src/ol/imageloadfunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/imageloadfunction.js -------------------------------------------------------------------------------- /ol3/src/ol/imagetile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/imagetile.js -------------------------------------------------------------------------------- /ol3/src/ol/imageurlfunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/imageurlfunction.js -------------------------------------------------------------------------------- /ol3/src/ol/interaction/dragboxinteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/interaction/dragboxinteraction.js -------------------------------------------------------------------------------- /ol3/src/ol/interaction/dragpaninteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/interaction/dragpaninteraction.js -------------------------------------------------------------------------------- /ol3/src/ol/interaction/drawinteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/interaction/drawinteraction.js -------------------------------------------------------------------------------- /ol3/src/ol/interaction/interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/interaction/interaction.js -------------------------------------------------------------------------------- /ol3/src/ol/interaction/interaction.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.interaction 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/interaction/modifyinteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/interaction/modifyinteraction.js -------------------------------------------------------------------------------- /ol3/src/ol/interaction/pointerinteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/interaction/pointerinteraction.js -------------------------------------------------------------------------------- /ol3/src/ol/interaction/selectinteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/interaction/selectinteraction.js -------------------------------------------------------------------------------- /ol3/src/ol/kinetic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/kinetic.js -------------------------------------------------------------------------------- /ol3/src/ol/layer/heatmaplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/layer/heatmaplayer.js -------------------------------------------------------------------------------- /ol3/src/ol/layer/imagelayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/layer/imagelayer.js -------------------------------------------------------------------------------- /ol3/src/ol/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/layer/layer.js -------------------------------------------------------------------------------- /ol3/src/ol/layer/layer.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.layer 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/layer/layerbase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/layer/layerbase.js -------------------------------------------------------------------------------- /ol3/src/ol/layer/layergroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/layer/layergroup.js -------------------------------------------------------------------------------- /ol3/src/ol/layer/tiledemlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/layer/tiledemlayer.js -------------------------------------------------------------------------------- /ol3/src/ol/layer/tilelayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/layer/tilelayer.js -------------------------------------------------------------------------------- /ol3/src/ol/layer/vectorlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/layer/vectorlayer.js -------------------------------------------------------------------------------- /ol3/src/ol/loadingstrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/loadingstrategy.js -------------------------------------------------------------------------------- /ol3/src/ol/loadingstrategy.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/loadingstrategy.jsdoc -------------------------------------------------------------------------------- /ol3/src/ol/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/map.js -------------------------------------------------------------------------------- /ol3/src/ol/mapbrowserevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/mapbrowserevent.js -------------------------------------------------------------------------------- /ol3/src/ol/mapevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/mapevent.js -------------------------------------------------------------------------------- /ol3/src/ol/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/math.js -------------------------------------------------------------------------------- /ol3/src/ol/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/object.js -------------------------------------------------------------------------------- /ol3/src/ol/observable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/observable.js -------------------------------------------------------------------------------- /ol3/src/ol/ol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/ol.js -------------------------------------------------------------------------------- /ol3/src/ol/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/overlay.js -------------------------------------------------------------------------------- /ol3/src/ol/pixel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/pixel.js -------------------------------------------------------------------------------- /ol3/src/ol/pointer/eventsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/pointer/eventsource.js -------------------------------------------------------------------------------- /ol3/src/ol/pointer/mousesource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/pointer/mousesource.js -------------------------------------------------------------------------------- /ol3/src/ol/pointer/mssource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/pointer/mssource.js -------------------------------------------------------------------------------- /ol3/src/ol/pointer/nativesource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/pointer/nativesource.js -------------------------------------------------------------------------------- /ol3/src/ol/pointer/pointerevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/pointer/pointerevent.js -------------------------------------------------------------------------------- /ol3/src/ol/pointer/pointereventhandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/pointer/pointereventhandler.js -------------------------------------------------------------------------------- /ol3/src/ol/pointer/touchsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/pointer/touchsource.js -------------------------------------------------------------------------------- /ol3/src/ol/proj/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/proj/common.js -------------------------------------------------------------------------------- /ol3/src/ol/proj/epsg3857projection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/proj/epsg3857projection.js -------------------------------------------------------------------------------- /ol3/src/ol/proj/epsg4326projection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/proj/epsg4326projection.js -------------------------------------------------------------------------------- /ol3/src/ol/proj/proj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/proj/proj.js -------------------------------------------------------------------------------- /ol3/src/ol/proj/proj.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/proj/proj.jsdoc -------------------------------------------------------------------------------- /ol3/src/ol/render.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.render 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/render/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/box.js -------------------------------------------------------------------------------- /ol3/src/ol/render/canvas/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/canvas/canvas.js -------------------------------------------------------------------------------- /ol3/src/ol/render/canvas/canvas.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.render.canvas 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/render/canvas/canvasimmediate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/canvas/canvasimmediate.js -------------------------------------------------------------------------------- /ol3/src/ol/render/canvas/canvasreplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/canvas/canvasreplay.js -------------------------------------------------------------------------------- /ol3/src/ol/render/ireplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/ireplay.js -------------------------------------------------------------------------------- /ol3/src/ol/render/ivectorcontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/ivectorcontext.js -------------------------------------------------------------------------------- /ol3/src/ol/render/renderevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/renderevent.js -------------------------------------------------------------------------------- /ol3/src/ol/render/vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/vector.js -------------------------------------------------------------------------------- /ol3/src/ol/render/webgl/webglimagecolor.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/webgl/webglimagecolor.glsl -------------------------------------------------------------------------------- /ol3/src/ol/render/webgl/webglimmediate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/webgl/webglimmediate.js -------------------------------------------------------------------------------- /ol3/src/ol/render/webgl/webglreplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/render/webgl/webglreplay.js -------------------------------------------------------------------------------- /ol3/src/ol/renderer/dom/domlayerrenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/renderer/dom/domlayerrenderer.js -------------------------------------------------------------------------------- /ol3/src/ol/renderer/dom/dommaprenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/renderer/dom/dommaprenderer.js -------------------------------------------------------------------------------- /ol3/src/ol/renderer/layerrenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/renderer/layerrenderer.js -------------------------------------------------------------------------------- /ol3/src/ol/renderer/maprenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/renderer/maprenderer.js -------------------------------------------------------------------------------- /ol3/src/ol/renderer/webgl/webglmapcolor.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/renderer/webgl/webglmapcolor.glsl -------------------------------------------------------------------------------- /ol3/src/ol/resolutionconstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/resolutionconstraint.js -------------------------------------------------------------------------------- /ol3/src/ol/rotationconstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/rotationconstraint.js -------------------------------------------------------------------------------- /ol3/src/ol/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/size.js -------------------------------------------------------------------------------- /ol3/src/ol/source.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.source 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/source/bingmapssource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/bingmapssource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/clustersource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/clustersource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/formatvectorsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/formatvectorsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/geojsonsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/geojsonsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/gpxsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/gpxsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/igcsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/igcsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/imagecanvassource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/imagecanvassource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/imagemapguidesource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/imagemapguidesource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/imagesource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/imagesource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/imagestaticsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/imagestaticsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/imagevectorsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/imagevectorsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/imagewmssource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/imagewmssource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/kmlsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/kmlsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/mapquestsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/mapquestsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/osmsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/osmsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/osmxmlsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/osmxmlsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/servervectorsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/servervectorsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/source.js -------------------------------------------------------------------------------- /ol3/src/ol/source/stamensource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/stamensource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/staticvectorsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/staticvectorsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/tiledebugsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/tiledebugsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/tileimagesource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/tileimagesource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/tilejsonsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/tilejsonsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/tilesource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/tilesource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/tileutfgridsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/tileutfgridsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/tilevectorsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/tilevectorsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/tilewmssource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/tilewmssource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/topojsonsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/topojsonsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/vectorsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/vectorsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/wmssource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/wmssource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/wmssource.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.source.wms 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/source/wmtssource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/wmtssource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/xyzsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/xyzsource.js -------------------------------------------------------------------------------- /ol3/src/ol/source/zoomifysource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/source/zoomifysource.js -------------------------------------------------------------------------------- /ol3/src/ol/sphere/normal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/sphere/normal.js -------------------------------------------------------------------------------- /ol3/src/ol/sphere/sphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/sphere/sphere.js -------------------------------------------------------------------------------- /ol3/src/ol/sphere/wgs84sphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/sphere/wgs84sphere.js -------------------------------------------------------------------------------- /ol3/src/ol/structs/checksum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/structs/checksum.js -------------------------------------------------------------------------------- /ol3/src/ol/structs/lrucache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/structs/lrucache.js -------------------------------------------------------------------------------- /ol3/src/ol/structs/priorityqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/structs/priorityqueue.js -------------------------------------------------------------------------------- /ol3/src/ol/structs/rbush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/structs/rbush.js -------------------------------------------------------------------------------- /ol3/src/ol/style.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style.jsdoc -------------------------------------------------------------------------------- /ol3/src/ol/style/atlasmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/atlasmanager.js -------------------------------------------------------------------------------- /ol3/src/ol/style/circlestyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/circlestyle.js -------------------------------------------------------------------------------- /ol3/src/ol/style/fillstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/fillstyle.js -------------------------------------------------------------------------------- /ol3/src/ol/style/iconstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/iconstyle.js -------------------------------------------------------------------------------- /ol3/src/ol/style/imagestyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/imagestyle.js -------------------------------------------------------------------------------- /ol3/src/ol/style/regularshapestyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/regularshapestyle.js -------------------------------------------------------------------------------- /ol3/src/ol/style/strokestyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/strokestyle.js -------------------------------------------------------------------------------- /ol3/src/ol/style/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/style.js -------------------------------------------------------------------------------- /ol3/src/ol/style/textstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/style/textstyle.js -------------------------------------------------------------------------------- /ol3/src/ol/tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tile.js -------------------------------------------------------------------------------- /ol3/src/ol/tilecache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tilecache.js -------------------------------------------------------------------------------- /ol3/src/ol/tilecoord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tilecoord.js -------------------------------------------------------------------------------- /ol3/src/ol/tilegrid.jsdoc: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace ol.tilegrid 3 | */ 4 | -------------------------------------------------------------------------------- /ol3/src/ol/tilegrid/tilegrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tilegrid/tilegrid.js -------------------------------------------------------------------------------- /ol3/src/ol/tilegrid/wmtstilegrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tilegrid/wmtstilegrid.js -------------------------------------------------------------------------------- /ol3/src/ol/tilegrid/xyztilegrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tilegrid/xyztilegrid.js -------------------------------------------------------------------------------- /ol3/src/ol/tilegrid/zoomifytilegrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tilegrid/zoomifytilegrid.js -------------------------------------------------------------------------------- /ol3/src/ol/tileloadfunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tileloadfunction.js -------------------------------------------------------------------------------- /ol3/src/ol/tilequeue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tilequeue.js -------------------------------------------------------------------------------- /ol3/src/ol/tilerange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tilerange.js -------------------------------------------------------------------------------- /ol3/src/ol/tileurlfunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/tileurlfunction.js -------------------------------------------------------------------------------- /ol3/src/ol/transformfunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/transformfunction.js -------------------------------------------------------------------------------- /ol3/src/ol/vec/mat4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/vec/mat4.js -------------------------------------------------------------------------------- /ol3/src/ol/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/view.js -------------------------------------------------------------------------------- /ol3/src/ol/webgl/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/webgl/buffer.js -------------------------------------------------------------------------------- /ol3/src/ol/webgl/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/webgl/context.js -------------------------------------------------------------------------------- /ol3/src/ol/webgl/demshader.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/webgl/demshader.mustache -------------------------------------------------------------------------------- /ol3/src/ol/webgl/shader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/webgl/shader.js -------------------------------------------------------------------------------- /ol3/src/ol/webgl/shader.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/webgl/shader.mustache -------------------------------------------------------------------------------- /ol3/src/ol/webgl/webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/webgl/webgl.js -------------------------------------------------------------------------------- /ol3/src/ol/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/ol/xml.js -------------------------------------------------------------------------------- /ol3/src/olx.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/src/olx.jsdoc -------------------------------------------------------------------------------- /ol3/tasks/build-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/build-examples.js -------------------------------------------------------------------------------- /ol3/tasks/build-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/build-ext.js -------------------------------------------------------------------------------- /ol3/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/build.js -------------------------------------------------------------------------------- /ol3/tasks/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/changelog.sh -------------------------------------------------------------------------------- /ol3/tasks/generate-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/generate-exports.js -------------------------------------------------------------------------------- /ol3/tasks/generate-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/generate-externs.js -------------------------------------------------------------------------------- /ol3/tasks/generate-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/generate-info.js -------------------------------------------------------------------------------- /ol3/tasks/generate-requires.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/generate-requires.js -------------------------------------------------------------------------------- /ol3/tasks/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/install.js -------------------------------------------------------------------------------- /ol3/tasks/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/publish.sh -------------------------------------------------------------------------------- /ol3/tasks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/readme.md -------------------------------------------------------------------------------- /ol3/tasks/serve-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/serve-lib.js -------------------------------------------------------------------------------- /ol3/tasks/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/serve.js -------------------------------------------------------------------------------- /ol3/tasks/test-coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/test-coverage.js -------------------------------------------------------------------------------- /ol3/tasks/test-rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/test-rendering.js -------------------------------------------------------------------------------- /ol3/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/tasks/test.js -------------------------------------------------------------------------------- /ol3/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/README.md -------------------------------------------------------------------------------- /ol3/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/index.html -------------------------------------------------------------------------------- /ol3/test/phantom_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/phantom_hooks.js -------------------------------------------------------------------------------- /ol3/test/spec/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/.eslintrc -------------------------------------------------------------------------------- /ol3/test/spec/ol/array.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/array.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/collection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/collection.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/color.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/color.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/control/control.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/control/control.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/control/zoomcontrol.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/control/zoomcontrol.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/coordinate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/coordinate.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/data/point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/data/point.json -------------------------------------------------------------------------------- /ol3/test/spec/ol/data/tilejson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/data/tilejson.json -------------------------------------------------------------------------------- /ol3/test/spec/ol/deviceorientation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/deviceorientation.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/events.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/events.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/events/event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/events/event.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/events/eventtarget.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/events/eventtarget.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/expect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/expect.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/extent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/extent.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/feature.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/feature.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/featureloader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/featureloader.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/gml/more-geoms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/gml/more-geoms.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/gml/ogr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/gml/ogr.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/gml/osm-wfs-10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/gml/osm-wfs-10.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/gmlformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/gmlformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/gpxformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/gpxformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/igcformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/igcformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/kml/states.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/kml/states.kml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/kml/style.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/kml/style.kml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/kmlformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/kmlformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/mvtformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/mvtformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/osmxmlformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/osmxmlformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/owsformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/owsformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/topojson.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/topojson.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/topojson/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/topojson/simple.json -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wfs/Native.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wfs/Native.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wfs/boundedBy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wfs/boundedBy.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wfs/mapserver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wfs/mapserver.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wfs/polygonv2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wfs/polygonv2.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wfsformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wfsformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wkt/illinois.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wkt/illinois.wkt -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wktformat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wktformat.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wms/ogcsample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wms/ogcsample.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/format/wmts/arcgis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/format/wmts/arcgis.xml -------------------------------------------------------------------------------- /ol3/test/spec/ol/geolocation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/geolocation.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/geom/circle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/geom/circle.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/geom/linestring.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/geom/linestring.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/geom/multipoint.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/geom/multipoint.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/geom/multipolygon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/geom/multipolygon.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/geom/point.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/geom/point.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/geom/polygon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/geom/polygon.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/graticule.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/graticule.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/layer/heatmaplayer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/layer/heatmaplayer.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/layer/layer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/layer/layer.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/layer/layergroup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/layer/layergroup.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/layer/tilelayer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/layer/tilelayer.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/layer/vectorlayer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/layer/vectorlayer.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/map.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/map.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/mapbrowserevent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/mapbrowserevent.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/math.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/math.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/net.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/net.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/object.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/object.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/objectutil.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/objectutil.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/observable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/observable.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/overlay.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/overlay.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/pointer/mousesource.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/pointer/mousesource.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/pointer/touchsource.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/pointer/touchsource.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/proj/proj.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/proj/proj.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/render.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/render.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/render/box.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/render/box.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/render/canvas.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/render/canvas.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/render/vector.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/render/vector.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/render/webglreplay.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/render/webglreplay.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/reproj/image.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/reproj/image.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/reproj/reproj.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/reproj/reproj.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/reproj/tile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/reproj/tile.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/rotationconstraint.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/rotationconstraint.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/size.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/size.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/source/rastersource.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/source/rastersource.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/source/source.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/source/source.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/source/tilesource.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/source/tilesource.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/source/vectorsource.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/source/vectorsource.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/source/wmtssource.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/source/wmtssource.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/source/xyzsource.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/source/xyzsource.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/sphere/sphere.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/sphere/sphere.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/structs/lrucache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/structs/lrucache.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/structs/rbush.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/structs/rbush.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/style.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/style.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/style/atlasmanager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/style/atlasmanager.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/style/circlestyle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/style/circlestyle.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/style/iconstyle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/style/iconstyle.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/style/textstyle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/style/textstyle.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/tilecoord.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/tilecoord.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/tilegrid/tilegrid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/tilegrid/tilegrid.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/tilequeue.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/tilequeue.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/tilerange.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/tilerange.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/tileurlfunction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/tileurlfunction.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/view.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/view.test.js -------------------------------------------------------------------------------- /ol3/test/spec/ol/webgl/buffer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/spec/ol/webgl/buffer.test.js -------------------------------------------------------------------------------- /ol3/test/test-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test/test-extensions.js -------------------------------------------------------------------------------- /ol3/test_rendering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test_rendering/README.md -------------------------------------------------------------------------------- /ol3/test_rendering/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test_rendering/index.html -------------------------------------------------------------------------------- /ol3/test_rendering/slimerjs-profile/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test_rendering/slimerjs-profile/prefs.js -------------------------------------------------------------------------------- /ol3/test_rendering/slimerjs-profile/times.json: -------------------------------------------------------------------------------- 1 | { 2 | "created": 1427803527460 3 | } 4 | -------------------------------------------------------------------------------- /ol3/test_rendering/spec/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test_rendering/spec/.eslintrc -------------------------------------------------------------------------------- /ol3/test_rendering/spec/ol/data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test_rendering/spec/ol/data/icon.png -------------------------------------------------------------------------------- /ol3/test_rendering/spec/ol/data/me0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test_rendering/spec/ol/data/me0.svg -------------------------------------------------------------------------------- /ol3/test_rendering/spec/ol/map.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test_rendering/spec/ol/map.test.js -------------------------------------------------------------------------------- /ol3/test_rendering/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buddebej/elasticterrain/HEAD/ol3/test_rendering/test.js --------------------------------------------------------------------------------