diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b287df784e..c142073ea7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -157,4 +157,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: rendering-tests - path: rendering/cases/**/actual.png + path: test/rendering/cases/**/actual.png diff --git a/package-lock.json b/package-lock.json index 088484129e..a83c104b85 100644 --- a/package-lock.json +++ b/package-lock.json @@ -46,7 +46,7 @@ "jsdoc": "3.6.6", "jsdoc-plugin-typescript": "^2.0.5", "json-stringify-safe": "^5.0.1", - "karma": "^6.2.0", + "karma": "^6.3.2", "karma-chrome-launcher": "3.1.0", "karma-coverage-istanbul-reporter": "^3.0.0", "karma-firefox-launcher": "^2.0.0", diff --git a/package.json b/package.json index c702b91436..a6aa1915cb 100644 --- a/package.json +++ b/package.json @@ -10,12 +10,12 @@ "private": true, "homepage": "https://openlayers.org/", "scripts": { - "lint": "eslint tasks test rendering src/ol examples config", + "lint": "eslint tasks test src/ol examples config", "pretest": "npm run lint && npm run typecheck", - "test-rendering": "node rendering/test.js", + "test-rendering": "node test/rendering/test.js", "test-spec": "npm run karma -- --single-run --log-level error", "test": "npm run test-spec && npm run test-rendering -- --force", - "karma": "karma start test/karma.config.js", + "karma": "karma start test/browser/karma.config.js", "start": "npm run serve-examples", "serve-examples": "webpack serve --config examples/webpack/config.js --mode development", "build-examples": "webpack --config examples/webpack/config.js --mode production", @@ -80,7 +80,7 @@ "jsdoc": "3.6.6", "jsdoc-plugin-typescript": "^2.0.5", "json-stringify-safe": "^5.0.1", - "karma": "^6.2.0", + "karma": "^6.3.2", "karma-chrome-launcher": "3.1.0", "karma-coverage-istanbul-reporter": "^3.0.0", "karma-firefox-launcher": "^2.0.0", diff --git a/rendering/cases/layer-vector-extent-geographic/main.js b/rendering/cases/layer-vector-extent-geographic/main.js deleted file mode 100644 index f24061bfe6..0000000000 --- a/rendering/cases/layer-vector-extent-geographic/main.js +++ /dev/null @@ -1,27 +0,0 @@ -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import Map from '../../../src/ol/Map.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import {useGeographic} from '../../../src/ol/proj.js'; - -useGeographic(); - -new Map({ - target: 'map', - view: new View({ - center: [0, 0], - zoom: 1, - }), - layers: [ - new VectorLayer({ - extent: [-50, -45, 50, 45], - source: new VectorSource({ - url: '/data/countries.json', - format: new GeoJSON(), - }), - }), - ], -}); - -render(); diff --git a/rendering/data/2012_Earthquakes_Mag5.kml b/rendering/data/2012_Earthquakes_Mag5.kml deleted file mode 120000 index f52e83bab3..0000000000 --- a/rendering/data/2012_Earthquakes_Mag5.kml +++ /dev/null @@ -1 +0,0 @@ -../../examples/data/kml/2012_Earthquakes_Mag5.kml \ No newline at end of file diff --git a/test/README.md b/test/README.md index 30bce5e585..841dce0f2a 100644 --- a/test/README.md +++ b/test/README.md @@ -1,11 +1,8 @@ ## Included in this directory -- index.html - the web page used to run the test suite. +- browser - Unit/integration tests run in a browser -- spec - includes the OpenLayers test/spec files. - -- test-extensions.js - includes OpenLayers-specific extensions to the - testing frameworks. +- rendering - Tests that make assertions about rendered map output ## Run the test suite diff --git a/test/.eslintrc b/test/browser/.eslintrc similarity index 100% rename from test/.eslintrc rename to test/browser/.eslintrc diff --git a/test/index_test.js b/test/browser/index_test.js similarity index 100% rename from test/index_test.js rename to test/browser/index_test.js diff --git a/test/karma.config.js b/test/browser/karma.config.js similarity index 86% rename from test/karma.config.js rename to test/browser/karma.config.js index a07ce87a5e..2bdb8cf334 100644 --- a/test/karma.config.js +++ b/test/browser/karma.config.js @@ -4,7 +4,7 @@ module.exports = function (karma) { karma.set({ browsers: [process.env.CI ? 'ChromeHeadless' : 'Chrome'], browserDisconnectTolerance: 2, - frameworks: ['mocha'], + frameworks: ['webpack', 'mocha'], client: { runInParent: true, mocha: { @@ -67,7 +67,6 @@ module.exports = function (karma) { ], exclude: ['**/*.test.js'], proxies: { - '/rendering/': '/base/rendering/', '/spec/': '/base/spec/', }, preprocessors: { @@ -76,7 +75,7 @@ module.exports = function (karma) { reporters: ['dots', 'coverage-istanbul'], coverageIstanbulReporter: { reports: ['text-summary', 'html'], - dir: path.resolve(__dirname, '../coverage/'), + dir: path.resolve(__dirname, '../../coverage/'), fixWebpackSourcePaths: true, }, webpack: { @@ -111,19 +110,13 @@ module.exports = function (karma) { use: { loader: path.join( __dirname, - '../examples/webpack/worker-loader.js' + '../../examples/webpack/worker-loader.js' ), }, - include: [path.join(__dirname, '../src/ol/worker')], + include: [path.join(__dirname, '../../src/ol/worker')], }, ], }, - resolve: { - alias: { - // allow imports from 'ol/module' instead of specifiying the source path - ol: path.join(__dirname, '..', 'src', 'ol'), - }, - }, }, webpackMiddleware: { noInfo: true, diff --git a/test/module-global.js b/test/browser/module-global.js similarity index 100% rename from test/module-global.js rename to test/browser/module-global.js diff --git a/test/spec/ol/MapBrowserEvent.test.js b/test/browser/spec/ol/MapBrowserEvent.test.js similarity index 92% rename from test/spec/ol/MapBrowserEvent.test.js rename to test/browser/spec/ol/MapBrowserEvent.test.js index 9fcec758c3..4cab4d9a07 100644 --- a/test/spec/ol/MapBrowserEvent.test.js +++ b/test/browser/spec/ol/MapBrowserEvent.test.js @@ -1,7 +1,7 @@ -import Event from '../../../src/ol/events/Event.js'; -import MapBrowserEvent from '../../../src/ol/MapBrowserEvent.js'; -import {Map, View} from '../../../src/ol/index.js'; -import {clearUserProjection, useGeographic} from '../../../src/ol/proj.js'; +import Event from '../../../../src/ol/events/Event.js'; +import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; +import {Map, View} from '../../../../src/ol/index.js'; +import {clearUserProjection, useGeographic} from '../../../../src/ol/proj.js'; function createMap() { const size = 256; diff --git a/test/spec/ol/MapBrowserEventHandler.test.js b/test/browser/spec/ol/MapBrowserEventHandler.test.js similarity index 96% rename from test/spec/ol/MapBrowserEventHandler.test.js rename to test/browser/spec/ol/MapBrowserEventHandler.test.js index 9c41725694..c4c04b980e 100644 --- a/test/spec/ol/MapBrowserEventHandler.test.js +++ b/test/browser/spec/ol/MapBrowserEventHandler.test.js @@ -1,8 +1,8 @@ -import Map from '../../../src/ol/Map.js'; -import MapBrowserEventHandler from '../../../src/ol/MapBrowserEventHandler.js'; -import OlEvent from '../../../src/ol/events/Event.js'; -import {DEVICE_PIXEL_RATIO} from '../../../src/ol/has.js'; -import {listen} from '../../../src/ol/events.js'; +import Map from '../../../../src/ol/Map.js'; +import MapBrowserEventHandler from '../../../../src/ol/MapBrowserEventHandler.js'; +import OlEvent from '../../../../src/ol/events/Event.js'; +import {DEVICE_PIXEL_RATIO} from '../../../../src/ol/has.js'; +import {listen} from '../../../../src/ol/events.js'; describe('ol/MapBrowserEventHandler', function () { describe('#emulateClick_', function () { diff --git a/test/spec/ol/array.test.js b/test/browser/spec/ol/array.test.js similarity index 99% rename from test/spec/ol/array.test.js rename to test/browser/spec/ol/array.test.js index 8761e2b3af..6f0f6b17a3 100644 --- a/test/spec/ol/array.test.js +++ b/test/browser/spec/ol/array.test.js @@ -10,7 +10,7 @@ import { remove, reverseSubArray, stableSort, -} from '../../../src/ol/array.js'; +} from '../../../../src/ol/array.js'; describe('ol.array', function () { describe('binarySearch', function () { diff --git a/test/spec/ol/assertionerror.test.js b/test/browser/spec/ol/assertionerror.test.js similarity index 89% rename from test/spec/ol/assertionerror.test.js rename to test/browser/spec/ol/assertionerror.test.js index 6ba91b0ee5..d3e6d07f2e 100644 --- a/test/spec/ol/assertionerror.test.js +++ b/test/browser/spec/ol/assertionerror.test.js @@ -1,5 +1,5 @@ -import AssertionError from '../../../src/ol/AssertionError.js'; -import {VERSION} from '../../../src/ol/util.js'; +import AssertionError from '../../../../src/ol/AssertionError.js'; +import {VERSION} from '../../../../src/ol/util.js'; describe('ol.AssertionError', function () { it('generates an error', function () { diff --git a/test/spec/ol/asserts.test.js b/test/browser/spec/ol/asserts.test.js similarity index 80% rename from test/spec/ol/asserts.test.js rename to test/browser/spec/ol/asserts.test.js index b36077f602..d73603d738 100644 --- a/test/spec/ol/asserts.test.js +++ b/test/browser/spec/ol/asserts.test.js @@ -1,4 +1,4 @@ -import {assert} from '../../../src/ol/asserts.js'; +import {assert} from '../../../../src/ol/asserts.js'; describe('ol.asserts', function () { describe('ol.asserts.assert', function () { diff --git a/test/spec/ol/collection.test.js b/test/browser/spec/ol/collection.test.js similarity index 98% rename from test/spec/ol/collection.test.js rename to test/browser/spec/ol/collection.test.js index a0bd69ec3d..f509f03cd0 100644 --- a/test/spec/ol/collection.test.js +++ b/test/browser/spec/ol/collection.test.js @@ -1,6 +1,6 @@ -import Collection from '../../../src/ol/Collection.js'; -import CollectionEventType from '../../../src/ol/CollectionEventType.js'; -import {listen} from '../../../src/ol/events.js'; +import Collection from '../../../../src/ol/Collection.js'; +import CollectionEventType from '../../../../src/ol/CollectionEventType.js'; +import {listen} from '../../../../src/ol/events.js'; describe('ol.collection', function () { let collection; diff --git a/test/spec/ol/color.test.js b/test/browser/spec/ol/color.test.js similarity index 99% rename from test/spec/ol/color.test.js rename to test/browser/spec/ol/color.test.js index 036874c0b3..5d28db45d4 100644 --- a/test/spec/ol/color.test.js +++ b/test/browser/spec/ol/color.test.js @@ -5,7 +5,7 @@ import { isStringColor, normalize, toString, -} from '../../../src/ol/color.js'; +} from '../../../../src/ol/color.js'; describe('ol.color', function () { describe('asArray()', function () { diff --git a/test/spec/ol/control/attribution.test.js b/test/browser/spec/ol/control/attribution.test.js similarity index 88% rename from test/spec/ol/control/attribution.test.js rename to test/browser/spec/ol/control/attribution.test.js index e980014ed6..7e671a5035 100644 --- a/test/spec/ol/control/attribution.test.js +++ b/test/browser/spec/ol/control/attribution.test.js @@ -1,10 +1,10 @@ -import Attribution from '../../../../src/ol/control/Attribution.js'; -import Map from '../../../../src/ol/Map.js'; -import Tile from '../../../../src/ol/Tile.js'; -import TileLayer from '../../../../src/ol/layer/Tile.js'; -import TileSource from '../../../../src/ol/source/Tile.js'; -import View from '../../../../src/ol/View.js'; -import {createXYZ} from '../../../../src/ol/tilegrid.js'; +import Attribution from '../../../../../src/ol/control/Attribution.js'; +import Map from '../../../../../src/ol/Map.js'; +import Tile from '../../../../../src/ol/Tile.js'; +import TileLayer from '../../../../../src/ol/layer/Tile.js'; +import TileSource from '../../../../../src/ol/source/Tile.js'; +import View from '../../../../../src/ol/View.js'; +import {createXYZ} from '../../../../../src/ol/tilegrid.js'; describe('ol.control.Attribution', function () { let map; diff --git a/test/spec/ol/control/control.test.js b/test/browser/spec/ol/control/control.test.js similarity index 96% rename from test/spec/ol/control/control.test.js rename to test/browser/spec/ol/control/control.test.js index 8c5240da87..63bc7f9fbc 100644 --- a/test/spec/ol/control/control.test.js +++ b/test/browser/spec/ol/control/control.test.js @@ -1,5 +1,5 @@ -import Control from '../../../../src/ol/control/Control.js'; -import Map from '../../../../src/ol/Map.js'; +import Control from '../../../../../src/ol/control/Control.js'; +import Map from '../../../../../src/ol/Map.js'; describe('ol.control.Control', function () { let map, control; diff --git a/test/spec/ol/control/fullscreen.test.js b/test/browser/spec/ol/control/fullscreen.test.js similarity index 78% rename from test/spec/ol/control/fullscreen.test.js rename to test/browser/spec/ol/control/fullscreen.test.js index 9655b8dc91..fed0db292a 100644 --- a/test/spec/ol/control/fullscreen.test.js +++ b/test/browser/spec/ol/control/fullscreen.test.js @@ -1,4 +1,4 @@ -import FullScreen from '../../../../src/ol/control/FullScreen.js'; +import FullScreen from '../../../../../src/ol/control/FullScreen.js'; describe('ol.control.FullScreen', function () { describe('constructor', function () { diff --git a/test/spec/ol/control/mouseposition.test.js b/test/browser/spec/ol/control/mouseposition.test.js similarity index 94% rename from test/spec/ol/control/mouseposition.test.js rename to test/browser/spec/ol/control/mouseposition.test.js index bb248b11f5..5fada58a64 100644 --- a/test/spec/ol/control/mouseposition.test.js +++ b/test/browser/spec/ol/control/mouseposition.test.js @@ -1,7 +1,7 @@ -import EventType from '../../../../src/ol/pointer/EventType.js'; -import Map from '../../../../src/ol/Map.js'; -import MousePosition from '../../../../src/ol/control/MousePosition.js'; -import View from '../../../../src/ol/View.js'; +import EventType from '../../../../../src/ol/pointer/EventType.js'; +import Map from '../../../../../src/ol/Map.js'; +import MousePosition from '../../../../../src/ol/control/MousePosition.js'; +import View from '../../../../../src/ol/View.js'; describe('ol/control/MousePosition', function () { describe('constructor', function () { diff --git a/test/spec/ol/control/overviewmap.test.js b/test/browser/spec/ol/control/overviewmap.test.js similarity index 94% rename from test/spec/ol/control/overviewmap.test.js rename to test/browser/spec/ol/control/overviewmap.test.js index 97c131769c..0116ca1d58 100644 --- a/test/spec/ol/control/overviewmap.test.js +++ b/test/browser/spec/ol/control/overviewmap.test.js @@ -1,7 +1,7 @@ -import Control from '../../../../src/ol/control/Control.js'; -import Map from '../../../../src/ol/Map.js'; -import OverviewMap from '../../../../src/ol/control/OverviewMap.js'; -import View from '../../../../src/ol/View.js'; +import Control from '../../../../../src/ol/control/Control.js'; +import Map from '../../../../../src/ol/Map.js'; +import OverviewMap from '../../../../../src/ol/control/OverviewMap.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.control.OverviewMap', function () { let map, target; diff --git a/test/spec/ol/control/rotate.test.js b/test/browser/spec/ol/control/rotate.test.js similarity index 79% rename from test/spec/ol/control/rotate.test.js rename to test/browser/spec/ol/control/rotate.test.js index 1bf03af4ea..ee9995f098 100644 --- a/test/spec/ol/control/rotate.test.js +++ b/test/browser/spec/ol/control/rotate.test.js @@ -1,4 +1,4 @@ -import Rotate from '../../../../src/ol/control/Rotate.js'; +import Rotate from '../../../../../src/ol/control/Rotate.js'; describe('ol.control.Rotate', function () { describe('constructor', function () { diff --git a/test/spec/ol/control/scaleline.test.js b/test/browser/spec/ol/control/scaleline.test.js similarity index 98% rename from test/spec/ol/control/scaleline.test.js rename to test/browser/spec/ol/control/scaleline.test.js index ba74835c76..2de14aadcc 100644 --- a/test/spec/ol/control/scaleline.test.js +++ b/test/browser/spec/ol/control/scaleline.test.js @@ -1,14 +1,14 @@ -import Map from '../../../../src/ol/Map.js'; -import Projection from '../../../../src/ol/proj/Projection.js'; -import ScaleLine from '../../../../src/ol/control/ScaleLine.js'; -import View from '../../../../src/ol/View.js'; +import Map from '../../../../../src/ol/Map.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; +import ScaleLine from '../../../../../src/ol/control/ScaleLine.js'; +import View from '../../../../../src/ol/View.js'; import proj4 from 'proj4'; import { addCommon, clearAllProjections, fromLonLat, -} from '../../../../src/ol/proj.js'; -import {register} from '../../../../src/ol/proj/proj4.js'; +} from '../../../../../src/ol/proj.js'; +import {register} from '../../../../../src/ol/proj/proj4.js'; describe('ol.control.ScaleLine', function () { let map; diff --git a/test/spec/ol/control/zoom.test.js b/test/browser/spec/ol/control/zoom.test.js similarity index 80% rename from test/spec/ol/control/zoom.test.js rename to test/browser/spec/ol/control/zoom.test.js index 76c03ecba5..2edbd30f82 100644 --- a/test/spec/ol/control/zoom.test.js +++ b/test/browser/spec/ol/control/zoom.test.js @@ -1,4 +1,4 @@ -import Zoom from '../../../../src/ol/control/Zoom.js'; +import Zoom from '../../../../../src/ol/control/Zoom.js'; describe('ol.control.Zoom', function () { describe('constructor', function () { diff --git a/test/spec/ol/control/zoomslider.test.js b/test/browser/spec/ol/control/zoomslider.test.js similarity index 96% rename from test/spec/ol/control/zoomslider.test.js rename to test/browser/spec/ol/control/zoomslider.test.js index fc46f99e21..055a3f523b 100644 --- a/test/spec/ol/control/zoomslider.test.js +++ b/test/browser/spec/ol/control/zoomslider.test.js @@ -1,8 +1,8 @@ -import Event from '../../../../src/ol/events/Event.js'; -import EventTarget from '../../../../src/ol/events/Target.js'; -import Map from '../../../../src/ol/Map.js'; -import View from '../../../../src/ol/View.js'; -import ZoomSlider from '../../../../src/ol/control/ZoomSlider.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import EventTarget from '../../../../../src/ol/events/Target.js'; +import Map from '../../../../../src/ol/Map.js'; +import View from '../../../../../src/ol/View.js'; +import ZoomSlider from '../../../../../src/ol/control/ZoomSlider.js'; describe('ol.control.ZoomSlider', function () { let map, target, zoomslider; diff --git a/test/spec/ol/control/zoomtoextent.test.js b/test/browser/spec/ol/control/zoomtoextent.test.js similarity index 77% rename from test/spec/ol/control/zoomtoextent.test.js rename to test/browser/spec/ol/control/zoomtoextent.test.js index f5382fce0b..db2c282250 100644 --- a/test/spec/ol/control/zoomtoextent.test.js +++ b/test/browser/spec/ol/control/zoomtoextent.test.js @@ -1,4 +1,4 @@ -import ZoomToExtent from '../../../../src/ol/control/ZoomToExtent.js'; +import ZoomToExtent from '../../../../../src/ol/control/ZoomToExtent.js'; describe('ol.control.ZoomToExtent', function () { describe('constructor', function () { diff --git a/test/spec/ol/coordinate.test.js b/test/browser/spec/ol/coordinate.test.js similarity index 97% rename from test/spec/ol/coordinate.test.js rename to test/browser/spec/ol/coordinate.test.js index 1998097f8e..abb4f3b7fe 100644 --- a/test/spec/ol/coordinate.test.js +++ b/test/browser/spec/ol/coordinate.test.js @@ -1,5 +1,5 @@ -import Circle from '../../../src/ol/geom/Circle.js'; -import Projection from '../../../src/ol/proj/Projection.js'; +import Circle from '../../../../src/ol/geom/Circle.js'; +import Projection from '../../../../src/ol/proj/Projection.js'; import { add as addCoordinate, closestOnCircle, @@ -13,8 +13,8 @@ import { toStringHDMS, toStringXY, wrapX, -} from '../../../src/ol/coordinate.js'; -import {get} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/coordinate.js'; +import {get} from '../../../../src/ol/proj.js'; describe('ol.coordinate', function () { describe('#add', function () { diff --git a/test/spec/ol/css.test.js b/test/browser/spec/ol/css.test.js similarity index 96% rename from test/spec/ol/css.test.js rename to test/browser/spec/ol/css.test.js index 129481070a..c3c2d06c80 100644 --- a/test/spec/ol/css.test.js +++ b/test/browser/spec/ol/css.test.js @@ -1,4 +1,4 @@ -import {getFontParameters} from '../../../src/ol/css.js'; +import {getFontParameters} from '../../../../src/ol/css.js'; describe('ol.css', function () { describe('getFontParameters()', function () { diff --git a/test/spec/ol/data/14-8938-5680.vector.pbf b/test/browser/spec/ol/data/14-8938-5680.vector.pbf similarity index 100% rename from test/spec/ol/data/14-8938-5680.vector.pbf rename to test/browser/spec/ol/data/14-8938-5680.vector.pbf diff --git a/test/spec/ol/data/bing_aerialwithlabels.json b/test/browser/spec/ol/data/bing_aerialwithlabels.json similarity index 100% rename from test/spec/ol/data/bing_aerialwithlabels.json rename to test/browser/spec/ol/data/bing_aerialwithlabels.json diff --git a/test/spec/ol/data/dot.png b/test/browser/spec/ol/data/dot.png similarity index 100% rename from test/spec/ol/data/dot.png rename to test/browser/spec/ol/data/dot.png diff --git a/test/spec/ol/data/mapbox-geography-class-1-1-0.grid.json b/test/browser/spec/ol/data/mapbox-geography-class-1-1-0.grid.json similarity index 100% rename from test/spec/ol/data/mapbox-geography-class-1-1-0.grid.json rename to test/browser/spec/ol/data/mapbox-geography-class-1-1-0.grid.json diff --git a/test/spec/ol/data/osm-0-0-0.png b/test/browser/spec/ol/data/osm-0-0-0.png similarity index 100% rename from test/spec/ol/data/osm-0-0-0.png rename to test/browser/spec/ol/data/osm-0-0-0.png diff --git a/test/spec/ol/data/point.json b/test/browser/spec/ol/data/point.json similarity index 100% rename from test/spec/ol/data/point.json rename to test/browser/spec/ol/data/point.json diff --git a/test/spec/ol/data/tilejson.json b/test/browser/spec/ol/data/tilejson.json similarity index 100% rename from test/spec/ol/data/tilejson.json rename to test/browser/spec/ol/data/tilejson.json diff --git a/test/spec/ol/data/utfgrid.json b/test/browser/spec/ol/data/utfgrid.json similarity index 100% rename from test/spec/ol/data/utfgrid.json rename to test/browser/spec/ol/data/utfgrid.json diff --git a/test/spec/ol/disposable.test.js b/test/browser/spec/ol/disposable.test.js similarity index 94% rename from test/spec/ol/disposable.test.js rename to test/browser/spec/ol/disposable.test.js index 14d3669b07..278eceeaa3 100644 --- a/test/spec/ol/disposable.test.js +++ b/test/browser/spec/ol/disposable.test.js @@ -1,4 +1,4 @@ -import Disposable from '../../../src/ol/Disposable.js'; +import Disposable from '../../../../src/ol/Disposable.js'; describe('ol.Disposable', function () { describe('constructor', function () { diff --git a/test/spec/ol/dom/dom.test.js b/test/browser/spec/ol/dom/dom.test.js similarity index 99% rename from test/spec/ol/dom/dom.test.js rename to test/browser/spec/ol/dom/dom.test.js index 4e72aec72e..25d6d711b7 100644 --- a/test/spec/ol/dom/dom.test.js +++ b/test/browser/spec/ol/dom/dom.test.js @@ -3,7 +3,7 @@ import { outerHeight, outerWidth, replaceChildren, -} from '../../../../src/ol/dom.js'; +} from '../../../../../src/ol/dom.js'; describe('ol.dom', function () { describe('ol.dom.createCanvasContext2D', function () { diff --git a/test/spec/ol/events.test.js b/test/browser/spec/ol/events.test.js similarity index 95% rename from test/spec/ol/events.test.js rename to test/browser/spec/ol/events.test.js index 0d91100e8a..e11745c546 100644 --- a/test/spec/ol/events.test.js +++ b/test/browser/spec/ol/events.test.js @@ -1,5 +1,5 @@ -import EventTarget from '../../../src/ol/events/Target.js'; -import {listen, listenOnce, unlistenByKey} from '../../../src/ol/events.js'; +import EventTarget from '../../../../src/ol/events/Target.js'; +import {listen, listenOnce, unlistenByKey} from '../../../../src/ol/events.js'; describe('ol.events', function () { let add, target; diff --git a/test/spec/ol/events/event.test.js b/test/browser/spec/ol/events/event.test.js similarity index 96% rename from test/spec/ol/events/event.test.js rename to test/browser/spec/ol/events/event.test.js index 9ca7100842..fdd74eda01 100644 --- a/test/spec/ol/events/event.test.js +++ b/test/browser/spec/ol/events/event.test.js @@ -1,7 +1,7 @@ import Event, { preventDefault, stopPropagation, -} from '../../../../src/ol/events/Event.js'; +} from '../../../../../src/ol/events/Event.js'; describe('ol.events.Event', function () { describe('constructor', function () { diff --git a/test/spec/ol/events/eventtarget.test.js b/test/browser/spec/ol/events/eventtarget.test.js similarity index 96% rename from test/spec/ol/events/eventtarget.test.js rename to test/browser/spec/ol/events/eventtarget.test.js index 7223d4158c..76e92903a2 100644 --- a/test/spec/ol/events/eventtarget.test.js +++ b/test/browser/spec/ol/events/eventtarget.test.js @@ -1,7 +1,7 @@ -import Disposable from '../../../../src/ol/Disposable.js'; -import Event from '../../../../src/ol/events/Event.js'; -import EventTarget from '../../../../src/ol/events/Target.js'; -import {listen} from '../../../../src/ol/events.js'; +import Disposable from '../../../../../src/ol/Disposable.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import EventTarget from '../../../../../src/ol/events/Target.js'; +import {listen} from '../../../../../src/ol/events.js'; describe('ol.events.EventTarget', function () { let called, events, eventTarget, spy1, spy2, spy3; diff --git a/test/spec/ol/expect.test.js b/test/browser/spec/ol/expect.test.js similarity index 100% rename from test/spec/ol/expect.test.js rename to test/browser/spec/ol/expect.test.js diff --git a/test/spec/ol/extent.test.js b/test/browser/spec/ol/extent.test.js similarity index 99% rename from test/spec/ol/extent.test.js rename to test/browser/spec/ol/extent.test.js index 287a738a6e..639b0604ff 100644 --- a/test/spec/ol/extent.test.js +++ b/test/browser/spec/ol/extent.test.js @@ -1,6 +1,6 @@ -import * as _ol_extent_ from '../../../src/ol/extent.js'; -import {get, getTransform} from '../../../src/ol/proj.js'; -import {register} from '../../../src/ol/proj/proj4.js'; +import * as _ol_extent_ from '../../../../src/ol/extent.js'; +import {get, getTransform} from '../../../../src/ol/proj.js'; +import {register} from '../../../../src/ol/proj/proj4.js'; describe('ol.extent', function () { describe('buffer', function () { diff --git a/test/spec/ol/feature.test.js b/test/browser/spec/ol/feature.test.js similarity index 98% rename from test/spec/ol/feature.test.js rename to test/browser/spec/ol/feature.test.js index a0dda111f7..3941602b9b 100644 --- a/test/spec/ol/feature.test.js +++ b/test/browser/spec/ol/feature.test.js @@ -1,7 +1,7 @@ -import Feature, {createStyleFunction} from '../../../src/ol/Feature.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Style from '../../../src/ol/style/Style.js'; -import {isEmpty} from '../../../src/ol/obj.js'; +import Feature, {createStyleFunction} from '../../../../src/ol/Feature.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Style from '../../../../src/ol/style/Style.js'; +import {isEmpty} from '../../../../src/ol/obj.js'; describe('ol.Feature', function () { describe('constructor', function () { diff --git a/test/spec/ol/featureloader.test.js b/test/browser/spec/ol/featureloader.test.js similarity index 92% rename from test/spec/ol/featureloader.test.js rename to test/browser/spec/ol/featureloader.test.js index 14fdd90072..a6e9f16e30 100644 --- a/test/spec/ol/featureloader.test.js +++ b/test/browser/spec/ol/featureloader.test.js @@ -1,6 +1,6 @@ -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import {xhr} from '../../../src/ol/featureloader.js'; +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import {xhr} from '../../../../src/ol/featureloader.js'; describe('ol.featureloader', function () { describe('ol.featureloader.xhr', function () { diff --git a/test/spec/ol/format/esrijson.test.js b/test/browser/spec/ol/format/esrijson.test.js similarity index 98% rename from test/spec/ol/format/esrijson.test.js rename to test/browser/spec/ol/format/esrijson.test.js index 2af41df4c5..8dc46d395a 100644 --- a/test/spec/ol/format/esrijson.test.js +++ b/test/browser/spec/ol/format/esrijson.test.js @@ -1,14 +1,14 @@ -import EsriJSON from '../../../../src/ol/format/EsriJSON.js'; -import Feature from '../../../../src/ol/Feature.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import LinearRing from '../../../../src/ol/geom/LinearRing.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import {equals} from '../../../../src/ol/extent.js'; -import {get as getProjection, transform} from '../../../../src/ol/proj.js'; +import EsriJSON from '../../../../../src/ol/format/EsriJSON.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import LinearRing from '../../../../../src/ol/geom/LinearRing.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import {equals} from '../../../../../src/ol/extent.js'; +import {get as getProjection, transform} from '../../../../../src/ol/proj.js'; describe('ol.format.EsriJSON', function () { let format; diff --git a/test/spec/ol/format/esrijson/ksfields.json b/test/browser/spec/ol/format/esrijson/ksfields.json similarity index 100% rename from test/spec/ol/format/esrijson/ksfields.json rename to test/browser/spec/ol/format/esrijson/ksfields.json diff --git a/test/spec/ol/format/geojson.test.js b/test/browser/spec/ol/format/geojson.test.js similarity index 97% rename from test/spec/ol/format/geojson.test.js rename to test/browser/spec/ol/format/geojson.test.js index 884d217c2b..d374eec876 100644 --- a/test/spec/ol/format/geojson.test.js +++ b/test/browser/spec/ol/format/geojson.test.js @@ -1,20 +1,20 @@ -import Circle from '../../../../src/ol/geom/Circle.js'; -import Feature from '../../../../src/ol/Feature.js'; -import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; -import GeometryCollection from '../../../../src/ol/geom/GeometryCollection.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import LinearRing from '../../../../src/ol/geom/LinearRing.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Circle from '../../../../../src/ol/geom/Circle.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GeoJSON from '../../../../../src/ol/format/GeoJSON.js'; +import GeometryCollection from '../../../../../src/ol/geom/GeometryCollection.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import LinearRing from '../../../../../src/ol/geom/LinearRing.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; import { Projection, fromLonLat, get as getProjection, toLonLat, transform, -} from '../../../../src/ol/proj.js'; -import {equals} from '../../../../src/ol/extent.js'; +} from '../../../../../src/ol/proj.js'; +import {equals} from '../../../../../src/ol/extent.js'; describe('ol.format.GeoJSON', function () { let format; diff --git a/test/spec/ol/format/geojson/countries.geojson b/test/browser/spec/ol/format/geojson/countries.geojson similarity index 100% rename from test/spec/ol/format/geojson/countries.geojson rename to test/browser/spec/ol/format/geojson/countries.geojson diff --git a/test/spec/ol/format/gml.test.js b/test/browser/spec/ol/format/gml.test.js similarity index 99% rename from test/spec/ol/format/gml.test.js rename to test/browser/spec/ol/format/gml.test.js index 3b50b3d79d..3eaacae281 100644 --- a/test/spec/ol/format/gml.test.js +++ b/test/browser/spec/ol/format/gml.test.js @@ -1,16 +1,16 @@ -import Feature from '../../../../src/ol/Feature.js'; -import GML from '../../../../src/ol/format/GML.js'; -import GML2 from '../../../../src/ol/format/GML2.js'; -import GML32 from '../../../../src/ol/format/GML32.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import LinearRing from '../../../../src/ol/geom/LinearRing.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import {createElementNS, parse} from '../../../../src/ol/xml.js'; -import {transform} from '../../../../src/ol/proj.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GML from '../../../../../src/ol/format/GML.js'; +import GML2 from '../../../../../src/ol/format/GML2.js'; +import GML32 from '../../../../../src/ol/format/GML32.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import LinearRing from '../../../../../src/ol/geom/LinearRing.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import {createElementNS, parse} from '../../../../../src/ol/xml.js'; +import {transform} from '../../../../../src/ol/proj.js'; const readGeometry = function (format, text, opt_options) { const doc = parse(text); diff --git a/test/spec/ol/format/gml/geoserver3DFeatures.xml b/test/browser/spec/ol/format/gml/geoserver3DFeatures.xml similarity index 100% rename from test/spec/ol/format/gml/geoserver3DFeatures.xml rename to test/browser/spec/ol/format/gml/geoserver3DFeatures.xml diff --git a/test/spec/ol/format/gml/gml-complex.xml b/test/browser/spec/ol/format/gml/gml-complex.xml similarity index 100% rename from test/spec/ol/format/gml/gml-complex.xml rename to test/browser/spec/ol/format/gml/gml-complex.xml diff --git a/test/spec/ol/format/gml/more-geoms.xml b/test/browser/spec/ol/format/gml/more-geoms.xml similarity index 100% rename from test/spec/ol/format/gml/more-geoms.xml rename to test/browser/spec/ol/format/gml/more-geoms.xml diff --git a/test/spec/ol/format/gml/multiple-typenames-mapserver.xml b/test/browser/spec/ol/format/gml/multiple-typenames-mapserver.xml similarity index 100% rename from test/spec/ol/format/gml/multiple-typenames-mapserver.xml rename to test/browser/spec/ol/format/gml/multiple-typenames-mapserver.xml diff --git a/test/spec/ol/format/gml/multiple-typenames-ns.xml b/test/browser/spec/ol/format/gml/multiple-typenames-ns.xml similarity index 100% rename from test/spec/ol/format/gml/multiple-typenames-ns.xml rename to test/browser/spec/ol/format/gml/multiple-typenames-ns.xml diff --git a/test/spec/ol/format/gml/multiple-typenames.xml b/test/browser/spec/ol/format/gml/multiple-typenames.xml similarity index 100% rename from test/spec/ol/format/gml/multiple-typenames.xml rename to test/browser/spec/ol/format/gml/multiple-typenames.xml diff --git a/test/spec/ol/format/gml/ogr.xml b/test/browser/spec/ol/format/gml/ogr.xml similarity index 100% rename from test/spec/ol/format/gml/ogr.xml rename to test/browser/spec/ol/format/gml/ogr.xml diff --git a/test/spec/ol/format/gml/only-boundedby.xml b/test/browser/spec/ol/format/gml/only-boundedby.xml similarity index 100% rename from test/spec/ol/format/gml/only-boundedby.xml rename to test/browser/spec/ol/format/gml/only-boundedby.xml diff --git a/test/spec/ol/format/gml/osm-wfs-10.xml b/test/browser/spec/ol/format/gml/osm-wfs-10.xml similarity index 100% rename from test/spec/ol/format/gml/osm-wfs-10.xml rename to test/browser/spec/ol/format/gml/osm-wfs-10.xml diff --git a/test/spec/ol/format/gml/repeated-name.xml b/test/browser/spec/ol/format/gml/repeated-name.xml similarity index 100% rename from test/spec/ol/format/gml/repeated-name.xml rename to test/browser/spec/ol/format/gml/repeated-name.xml diff --git a/test/spec/ol/format/gml/topp-states-gml-featureMember.xml b/test/browser/spec/ol/format/gml/topp-states-gml-featureMember.xml similarity index 100% rename from test/spec/ol/format/gml/topp-states-gml-featureMember.xml rename to test/browser/spec/ol/format/gml/topp-states-gml-featureMember.xml diff --git a/test/spec/ol/format/gml/topp-states-gml.xml b/test/browser/spec/ol/format/gml/topp-states-gml.xml similarity index 100% rename from test/spec/ol/format/gml/topp-states-gml.xml rename to test/browser/spec/ol/format/gml/topp-states-gml.xml diff --git a/test/spec/ol/format/gml/topp-states-wfs.xml b/test/browser/spec/ol/format/gml/topp-states-wfs.xml similarity index 100% rename from test/spec/ol/format/gml/topp-states-wfs.xml rename to test/browser/spec/ol/format/gml/topp-states-wfs.xml diff --git a/test/spec/ol/format/gpx.test.js b/test/browser/spec/ol/format/gpx.test.js similarity index 97% rename from test/spec/ol/format/gpx.test.js rename to test/browser/spec/ol/format/gpx.test.js index 33651dc0d8..5e687a4d5f 100644 --- a/test/spec/ol/format/gpx.test.js +++ b/test/browser/spec/ol/format/gpx.test.js @@ -1,11 +1,11 @@ -import Feature from '../../../../src/ol/Feature.js'; -import GPX from '../../../../src/ol/format/GPX.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import {get as getProjection, transform} from '../../../../src/ol/proj.js'; -import {parse} from '../../../../src/ol/xml.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GPX from '../../../../../src/ol/format/GPX.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import {get as getProjection, transform} from '../../../../../src/ol/proj.js'; +import {parse} from '../../../../../src/ol/xml.js'; describe('ol.format.GPX', function () { let format; diff --git a/test/spec/ol/format/igc.test.js b/test/browser/spec/ol/format/igc.test.js similarity index 96% rename from test/spec/ol/format/igc.test.js rename to test/browser/spec/ol/format/igc.test.js index 6f281f08b1..94749a0851 100644 --- a/test/spec/ol/format/igc.test.js +++ b/test/browser/spec/ol/format/igc.test.js @@ -1,6 +1,6 @@ -import Feature from '../../../../src/ol/Feature.js'; -import IGC from '../../../../src/ol/format/IGC.js'; -import {get as getProjection, transform} from '../../../../src/ol/proj.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import IGC from '../../../../../src/ol/format/IGC.js'; +import {get as getProjection, transform} from '../../../../../src/ol/proj.js'; describe('ol.format.IGC', function () { let format; diff --git a/test/spec/ol/format/iiif.test.js b/test/browser/spec/ol/format/iiif.test.js similarity index 99% rename from test/spec/ol/format/iiif.test.js rename to test/browser/spec/ol/format/iiif.test.js index 415d895854..19fb73fe69 100644 --- a/test/spec/ol/format/iiif.test.js +++ b/test/browser/spec/ol/format/iiif.test.js @@ -1,5 +1,5 @@ -import IIIFInfo from '../../../../src/ol/format/IIIFInfo.js'; -import {Versions} from '../../../../src/ol/format/IIIFInfo.js'; +import IIIFInfo from '../../../../../src/ol/format/IIIFInfo.js'; +import {Versions} from '../../../../../src/ol/format/IIIFInfo.js'; describe('ol.format.IIIFInfo', function () { const iiifInfo = new IIIFInfo(); diff --git a/test/spec/ol/format/kml.test.js b/test/browser/spec/ol/format/kml.test.js similarity index 99% rename from test/spec/ol/format/kml.test.js rename to test/browser/spec/ol/format/kml.test.js index b92db81e39..470688cd07 100644 --- a/test/spec/ol/format/kml.test.js +++ b/test/browser/spec/ol/format/kml.test.js @@ -1,11 +1,11 @@ -import CircleStyle from '../../../../src/ol/style/Circle.js'; -import Feature from '../../../../src/ol/Feature.js'; -import Fill from '../../../../src/ol/style/Fill.js'; -import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; -import GeometryCollection from '../../../../src/ol/geom/GeometryCollection.js'; -import Icon from '../../../../src/ol/style/Icon.js'; -import IconAnchorUnits from '../../../../src/ol/style/IconAnchorUnits.js'; -import IconOrigin from '../../../../src/ol/style/IconOrigin.js'; +import CircleStyle from '../../../../../src/ol/style/Circle.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import Fill from '../../../../../src/ol/style/Fill.js'; +import GeoJSON from '../../../../../src/ol/format/GeoJSON.js'; +import GeometryCollection from '../../../../../src/ol/geom/GeometryCollection.js'; +import Icon from '../../../../../src/ol/style/Icon.js'; +import IconAnchorUnits from '../../../../../src/ol/style/IconAnchorUnits.js'; +import IconOrigin from '../../../../../src/ol/style/IconOrigin.js'; import KML, { getDefaultFillStyle, getDefaultImageStyle, @@ -14,27 +14,27 @@ import KML, { getDefaultStyleArray, getDefaultTextStyle, readFlatCoordinates, -} from '../../../../src/ol/format/KML.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import LinearRing from '../../../../src/ol/geom/LinearRing.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import Projection from '../../../../src/ol/proj/Projection.js'; -import Stroke from '../../../../src/ol/style/Stroke.js'; -import Style from '../../../../src/ol/style/Style.js'; -import Text from '../../../../src/ol/style/Text.js'; +} from '../../../../../src/ol/format/KML.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import LinearRing from '../../../../../src/ol/geom/LinearRing.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; +import Stroke from '../../../../../src/ol/style/Stroke.js'; +import Style from '../../../../../src/ol/style/Style.js'; +import Text from '../../../../../src/ol/style/Text.js'; import { addCoordinateTransforms, addProjection, get as getProjection, transform, -} from '../../../../src/ol/proj.js'; -import {find} from '../../../../src/ol/array.js'; -import {parse} from '../../../../src/ol/xml.js'; -import {remove as removeTransform} from '../../../../src/ol/proj/transforms.js'; +} from '../../../../../src/ol/proj.js'; +import {find} from '../../../../../src/ol/array.js'; +import {parse} from '../../../../../src/ol/xml.js'; +import {remove as removeTransform} from '../../../../../src/ol/proj/transforms.js'; describe('ol.format.KML', function () { let format; diff --git a/test/spec/ol/format/kml/networklinks.kml b/test/browser/spec/ol/format/kml/networklinks.kml similarity index 100% rename from test/spec/ol/format/kml/networklinks.kml rename to test/browser/spec/ol/format/kml/networklinks.kml diff --git a/test/spec/ol/format/kml/states.kml b/test/browser/spec/ol/format/kml/states.kml similarity index 100% rename from test/spec/ol/format/kml/states.kml rename to test/browser/spec/ol/format/kml/states.kml diff --git a/test/spec/ol/format/kml/style.kml b/test/browser/spec/ol/format/kml/style.kml similarity index 100% rename from test/spec/ol/format/kml/style.kml rename to test/browser/spec/ol/format/kml/style.kml diff --git a/test/spec/ol/format/mvt.test.js b/test/browser/spec/ol/format/mvt.test.js similarity index 95% rename from test/spec/ol/format/mvt.test.js rename to test/browser/spec/ol/format/mvt.test.js index 5951727fcd..f4a04bf891 100644 --- a/test/spec/ol/format/mvt.test.js +++ b/test/browser/spec/ol/format/mvt.test.js @@ -1,9 +1,9 @@ -import Feature from '../../../../src/ol/Feature.js'; -import MVT from '../../../../src/ol/format/MVT.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import RenderFeature from '../../../../src/ol/render/Feature.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import MVT from '../../../../../src/ol/format/MVT.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import RenderFeature from '../../../../../src/ol/render/Feature.js'; where('ArrayBuffer.isView').describe('ol.format.MVT', function () { let data; diff --git a/test/spec/ol/format/osmxml.test.js b/test/browser/spec/ol/format/osmxml.test.js similarity index 92% rename from test/spec/ol/format/osmxml.test.js rename to test/browser/spec/ol/format/osmxml.test.js index cfc0dc82da..2e18e98ad9 100644 --- a/test/spec/ol/format/osmxml.test.js +++ b/test/browser/spec/ol/format/osmxml.test.js @@ -1,8 +1,8 @@ -import Feature from '../../../../src/ol/Feature.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import OSMXML from '../../../../src/ol/format/OSMXML.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import {get as getProjection, transform} from '../../../../src/ol/proj.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import OSMXML from '../../../../../src/ol/format/OSMXML.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import {get as getProjection, transform} from '../../../../../src/ol/proj.js'; describe('ol.format.OSMXML', function () { let format; diff --git a/test/spec/ol/format/ows.test.js b/test/browser/spec/ol/format/ows.test.js similarity index 98% rename from test/spec/ol/format/ows.test.js rename to test/browser/spec/ol/format/ows.test.js index 187b85870a..9bf35cb30b 100644 --- a/test/spec/ol/format/ows.test.js +++ b/test/browser/spec/ol/format/ows.test.js @@ -1,5 +1,5 @@ -import OWS from '../../../../src/ol/format/OWS.js'; -import {parse} from '../../../../src/ol/xml.js'; +import OWS from '../../../../../src/ol/format/OWS.js'; +import {parse} from '../../../../../src/ol/xml.js'; describe('ol.format.OWS 1.1', function () { const parser = new OWS(); diff --git a/test/spec/ol/format/polyline.test.js b/test/browser/spec/ol/format/polyline.test.js similarity index 97% rename from test/spec/ol/format/polyline.test.js rename to test/browser/spec/ol/format/polyline.test.js index 5d44bf15aa..c73e8e0762 100644 --- a/test/spec/ol/format/polyline.test.js +++ b/test/browser/spec/ol/format/polyline.test.js @@ -1,7 +1,7 @@ -import Feature from '../../../../src/ol/Feature.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import Polyline, * as polyline from '../../../../src/ol/format/Polyline.js'; -import {get as getProjection, transform} from '../../../../src/ol/proj.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import Polyline, * as polyline from '../../../../../src/ol/format/Polyline.js'; +import {get as getProjection, transform} from '../../../../../src/ol/proj.js'; describe('ol.format.Polyline', function () { let format; diff --git a/test/spec/ol/format/topojson.test.js b/test/browser/spec/ol/format/topojson.test.js similarity index 94% rename from test/spec/ol/format/topojson.test.js rename to test/browser/spec/ol/format/topojson.test.js index bee50e6992..85b7e84aba 100644 --- a/test/spec/ol/format/topojson.test.js +++ b/test/browser/spec/ol/format/topojson.test.js @@ -1,9 +1,9 @@ -import Feature from '../../../../src/ol/Feature.js'; -import FeatureFormat from '../../../../src/ol/format/Feature.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import TopoJSON from '../../../../src/ol/format/TopoJSON.js'; -import {transform} from '../../../../src/ol/proj.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import FeatureFormat from '../../../../../src/ol/format/Feature.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import TopoJSON from '../../../../../src/ol/format/TopoJSON.js'; +import {transform} from '../../../../../src/ol/proj.js'; const aruba = { type: 'Topology', diff --git a/test/spec/ol/format/topojson/simple.json b/test/browser/spec/ol/format/topojson/simple.json similarity index 100% rename from test/spec/ol/format/topojson/simple.json rename to test/browser/spec/ol/format/topojson/simple.json diff --git a/test/spec/ol/format/topojson/world-110m.json b/test/browser/spec/ol/format/topojson/world-110m.json similarity index 100% rename from test/spec/ol/format/topojson/world-110m.json rename to test/browser/spec/ol/format/topojson/world-110m.json diff --git a/test/spec/ol/format/wfs.test.js b/test/browser/spec/ol/format/wfs.test.js similarity index 98% rename from test/spec/ol/format/wfs.test.js rename to test/browser/spec/ol/format/wfs.test.js index 8fd73b9a7d..d95750a705 100644 --- a/test/spec/ol/format/wfs.test.js +++ b/test/browser/spec/ol/format/wfs.test.js @@ -1,17 +1,17 @@ -import Feature from '../../../../src/ol/Feature.js'; -import GML2 from '../../../../src/ol/format/GML2.js'; -import GML32 from '../../../../src/ol/format/GML32.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import WFS, {writeFilter} from '../../../../src/ol/format/WFS.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GML2 from '../../../../../src/ol/format/GML2.js'; +import GML32 from '../../../../../src/ol/format/GML32.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import WFS, {writeFilter} from '../../../../../src/ol/format/WFS.js'; import { addCommon, clearAllProjections, transform, -} from '../../../../src/ol/proj.js'; +} from '../../../../../src/ol/proj.js'; import { and as andFilter, bbox as bboxFilter, @@ -32,9 +32,9 @@ import { or as orFilter, resourceId as resourceIdFilter, within as withinFilter, -} from '../../../../src/ol/format/filter.js'; -import {parse} from '../../../../src/ol/xml.js'; -import {register} from '../../../../src/ol/proj/proj4.js'; +} from '../../../../../src/ol/format/filter.js'; +import {parse} from '../../../../../src/ol/xml.js'; +import {register} from '../../../../../src/ol/proj/proj4.js'; describe('ol.format.WFS', function () { describe('featureType', function () { diff --git a/test/spec/ol/format/wfs/EmptyFeatureCollection.xml b/test/browser/spec/ol/format/wfs/EmptyFeatureCollection.xml similarity index 100% rename from test/spec/ol/format/wfs/EmptyFeatureCollection.xml rename to test/browser/spec/ol/format/wfs/EmptyFeatureCollection.xml diff --git a/test/spec/ol/format/wfs/GetFeatureMultiple.xml b/test/browser/spec/ol/format/wfs/GetFeatureMultiple.xml similarity index 100% rename from test/spec/ol/format/wfs/GetFeatureMultiple.xml rename to test/browser/spec/ol/format/wfs/GetFeatureMultiple.xml diff --git a/test/spec/ol/format/wfs/Native.xml b/test/browser/spec/ol/format/wfs/Native.xml similarity index 100% rename from test/spec/ol/format/wfs/Native.xml rename to test/browser/spec/ol/format/wfs/Native.xml diff --git a/test/spec/ol/format/wfs/NumberOfFeatures.xml b/test/browser/spec/ol/format/wfs/NumberOfFeatures.xml similarity index 100% rename from test/spec/ol/format/wfs/NumberOfFeatures.xml rename to test/browser/spec/ol/format/wfs/NumberOfFeatures.xml diff --git a/test/spec/ol/format/wfs/TransactionMulti.xml b/test/browser/spec/ol/format/wfs/TransactionMulti.xml similarity index 100% rename from test/spec/ol/format/wfs/TransactionMulti.xml rename to test/browser/spec/ol/format/wfs/TransactionMulti.xml diff --git a/test/spec/ol/format/wfs/TransactionMultiVersion100.xml b/test/browser/spec/ol/format/wfs/TransactionMultiVersion100.xml similarity index 100% rename from test/spec/ol/format/wfs/TransactionMultiVersion100.xml rename to test/browser/spec/ol/format/wfs/TransactionMultiVersion100.xml diff --git a/test/spec/ol/format/wfs/TransactionMultiVersion100_3D.xml b/test/browser/spec/ol/format/wfs/TransactionMultiVersion100_3D.xml similarity index 100% rename from test/spec/ol/format/wfs/TransactionMultiVersion100_3D.xml rename to test/browser/spec/ol/format/wfs/TransactionMultiVersion100_3D.xml diff --git a/test/spec/ol/format/wfs/TransactionMulti_3D.xml b/test/browser/spec/ol/format/wfs/TransactionMulti_3D.xml similarity index 100% rename from test/spec/ol/format/wfs/TransactionMulti_3D.xml rename to test/browser/spec/ol/format/wfs/TransactionMulti_3D.xml diff --git a/test/spec/ol/format/wfs/TransactionResponse.xml b/test/browser/spec/ol/format/wfs/TransactionResponse.xml similarity index 100% rename from test/spec/ol/format/wfs/TransactionResponse.xml rename to test/browser/spec/ol/format/wfs/TransactionResponse.xml diff --git a/test/spec/ol/format/wfs/TransactionSrs.xml b/test/browser/spec/ol/format/wfs/TransactionSrs.xml similarity index 100% rename from test/spec/ol/format/wfs/TransactionSrs.xml rename to test/browser/spec/ol/format/wfs/TransactionSrs.xml diff --git a/test/spec/ol/format/wfs/TransactionUpdate.xml b/test/browser/spec/ol/format/wfs/TransactionUpdate.xml similarity index 100% rename from test/spec/ol/format/wfs/TransactionUpdate.xml rename to test/browser/spec/ol/format/wfs/TransactionUpdate.xml diff --git a/test/spec/ol/format/wfs/TransactionUpdateMultiGeoms.xml b/test/browser/spec/ol/format/wfs/TransactionUpdateMultiGeoms.xml similarity index 100% rename from test/spec/ol/format/wfs/TransactionUpdateMultiGeoms.xml rename to test/browser/spec/ol/format/wfs/TransactionUpdateMultiGeoms.xml diff --git a/test/spec/ol/format/wfs/boundedBy.xml b/test/browser/spec/ol/format/wfs/boundedBy.xml similarity index 100% rename from test/spec/ol/format/wfs/boundedBy.xml rename to test/browser/spec/ol/format/wfs/boundedBy.xml diff --git a/test/spec/ol/format/wfs/mapserver.xml b/test/browser/spec/ol/format/wfs/mapserver.xml similarity index 100% rename from test/spec/ol/format/wfs/mapserver.xml rename to test/browser/spec/ol/format/wfs/mapserver.xml diff --git a/test/spec/ol/format/wfs/polygonv2.xml b/test/browser/spec/ol/format/wfs/polygonv2.xml similarity index 100% rename from test/spec/ol/format/wfs/polygonv2.xml rename to test/browser/spec/ol/format/wfs/polygonv2.xml diff --git a/test/spec/ol/format/wfs/topp-states-wfs.xml b/test/browser/spec/ol/format/wfs/topp-states-wfs.xml similarity index 100% rename from test/spec/ol/format/wfs/topp-states-wfs.xml rename to test/browser/spec/ol/format/wfs/topp-states-wfs.xml diff --git a/test/spec/ol/format/wkb.test.js b/test/browser/spec/ol/format/wkb.test.js similarity index 99% rename from test/spec/ol/format/wkb.test.js rename to test/browser/spec/ol/format/wkb.test.js index dcd2bf51a2..0f6e13a940 100644 --- a/test/spec/ol/format/wkb.test.js +++ b/test/browser/spec/ol/format/wkb.test.js @@ -1,10 +1,10 @@ -import Feature from '../../../../src/ol/Feature.js'; -import GeometryCollection from '../../../../src/ol/geom/GeometryCollection.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import SimpleGeometry from '../../../../src/ol/geom/SimpleGeometry.js'; -import WKB from '../../../../src/ol/format/WKB.js'; -import WKT from '../../../../src/ol/format/WKT.js'; -import {transform} from '../../../../src/ol/proj.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GeometryCollection from '../../../../../src/ol/geom/GeometryCollection.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import SimpleGeometry from '../../../../../src/ol/geom/SimpleGeometry.js'; +import WKB from '../../../../../src/ol/format/WKB.js'; +import WKT from '../../../../../src/ol/format/WKT.js'; +import {transform} from '../../../../../src/ol/proj.js'; const patterns = [ [ diff --git a/test/spec/ol/format/wkt.test.js b/test/browser/spec/ol/format/wkt.test.js similarity index 99% rename from test/spec/ol/format/wkt.test.js rename to test/browser/spec/ol/format/wkt.test.js index eddb55bfb3..47aa5f4423 100644 --- a/test/spec/ol/format/wkt.test.js +++ b/test/browser/spec/ol/format/wkt.test.js @@ -1,7 +1,7 @@ -import Feature from '../../../../src/ol/Feature.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import WKT from '../../../../src/ol/format/WKT.js'; -import {transform} from '../../../../src/ol/proj.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import WKT from '../../../../../src/ol/format/WKT.js'; +import {transform} from '../../../../../src/ol/proj.js'; describe('ol.format.WKT', function () { let format = new WKT(); diff --git a/test/spec/ol/format/wkt/illinois.wkt b/test/browser/spec/ol/format/wkt/illinois.wkt similarity index 100% rename from test/spec/ol/format/wkt/illinois.wkt rename to test/browser/spec/ol/format/wkt/illinois.wkt diff --git a/test/spec/ol/format/wms/getfeatureinfo.xml b/test/browser/spec/ol/format/wms/getfeatureinfo.xml similarity index 100% rename from test/spec/ol/format/wms/getfeatureinfo.xml rename to test/browser/spec/ol/format/wms/getfeatureinfo.xml diff --git a/test/spec/ol/format/wms/ogcsample.xml b/test/browser/spec/ol/format/wms/ogcsample.xml similarity index 100% rename from test/spec/ol/format/wms/ogcsample.xml rename to test/browser/spec/ol/format/wms/ogcsample.xml diff --git a/test/spec/ol/format/wms/singlelayer.xml b/test/browser/spec/ol/format/wms/singlelayer.xml similarity index 100% rename from test/spec/ol/format/wms/singlelayer.xml rename to test/browser/spec/ol/format/wms/singlelayer.xml diff --git a/test/spec/ol/format/wmscapabilities.test.js b/test/browser/spec/ol/format/wmscapabilities.test.js similarity index 98% rename from test/spec/ol/format/wmscapabilities.test.js rename to test/browser/spec/ol/format/wmscapabilities.test.js index 4ab1282068..e6a395cb39 100644 --- a/test/spec/ol/format/wmscapabilities.test.js +++ b/test/browser/spec/ol/format/wmscapabilities.test.js @@ -1,4 +1,4 @@ -import WMSCapabilities from '../../../../src/ol/format/WMSCapabilities.js'; +import WMSCapabilities from '../../../../../src/ol/format/WMSCapabilities.js'; describe('ol.format.WMSCapabilities', function () { describe('when parsing ogcsample.xml', function () { diff --git a/test/spec/ol/format/wmsgetfeatureinfo.test.js b/test/browser/spec/ol/format/wmsgetfeatureinfo.test.js similarity index 97% rename from test/spec/ol/format/wmsgetfeatureinfo.test.js rename to test/browser/spec/ol/format/wmsgetfeatureinfo.test.js index d2ec8f3aa8..de209de9ec 100644 --- a/test/spec/ol/format/wmsgetfeatureinfo.test.js +++ b/test/browser/spec/ol/format/wmsgetfeatureinfo.test.js @@ -1,6 +1,6 @@ -import WMSGetFeatureInfo from '../../../../src/ol/format/WMSGetFeatureInfo.js'; -import {addCommon, clearAllProjections} from '../../../../src/ol/proj.js'; -import {register} from '../../../../src/ol/proj/proj4.js'; +import WMSGetFeatureInfo from '../../../../../src/ol/format/WMSGetFeatureInfo.js'; +import {addCommon, clearAllProjections} from '../../../../../src/ol/proj.js'; +import {register} from '../../../../../src/ol/proj/proj4.js'; describe('ol.format.WMSGetFeatureInfo', function () { describe('#getLayers', function () { diff --git a/test/spec/ol/format/wmts/arcgis.xml b/test/browser/spec/ol/format/wmts/arcgis.xml similarity index 100% rename from test/spec/ol/format/wmts/arcgis.xml rename to test/browser/spec/ol/format/wmts/arcgis.xml diff --git a/test/spec/ol/format/wmts/capabilities_wgs84.xml b/test/browser/spec/ol/format/wmts/capabilities_wgs84.xml similarity index 100% rename from test/spec/ol/format/wmts/capabilities_wgs84.xml rename to test/browser/spec/ol/format/wmts/capabilities_wgs84.xml diff --git a/test/spec/ol/format/wmts/capabilities_wgs84_with_boundingbox.xml b/test/browser/spec/ol/format/wmts/capabilities_wgs84_with_boundingbox.xml similarity index 100% rename from test/spec/ol/format/wmts/capabilities_wgs84_with_boundingbox.xml rename to test/browser/spec/ol/format/wmts/capabilities_wgs84_with_boundingbox.xml diff --git a/test/spec/ol/format/wmts/capabilities_with_tilematrixsetlink.xml b/test/browser/spec/ol/format/wmts/capabilities_with_tilematrixsetlink.xml similarity index 100% rename from test/spec/ol/format/wmts/capabilities_with_tilematrixsetlink.xml rename to test/browser/spec/ol/format/wmts/capabilities_with_tilematrixsetlink.xml diff --git a/test/spec/ol/format/wmts/ign.xml b/test/browser/spec/ol/format/wmts/ign.xml similarity index 100% rename from test/spec/ol/format/wmts/ign.xml rename to test/browser/spec/ol/format/wmts/ign.xml diff --git a/test/spec/ol/format/wmts/ogcsample.xml b/test/browser/spec/ol/format/wmts/ogcsample.xml similarity index 100% rename from test/spec/ol/format/wmts/ogcsample.xml rename to test/browser/spec/ol/format/wmts/ogcsample.xml diff --git a/test/spec/ol/format/wmtscapabilities.test.js b/test/browser/spec/ol/format/wmtscapabilities.test.js similarity index 99% rename from test/spec/ol/format/wmtscapabilities.test.js rename to test/browser/spec/ol/format/wmtscapabilities.test.js index bfec4ddb36..f6337b6c0f 100644 --- a/test/spec/ol/format/wmtscapabilities.test.js +++ b/test/browser/spec/ol/format/wmtscapabilities.test.js @@ -1,4 +1,4 @@ -import WMTSCapabilities from '../../../../src/ol/format/WMTSCapabilities.js'; +import WMTSCapabilities from '../../../../../src/ol/format/WMTSCapabilities.js'; describe('ol.format.WMTSCapabilities', function () { describe('when parsing ogcsample.xml', function () { diff --git a/test/spec/ol/format/xsd.test.js b/test/browser/spec/ol/format/xsd.test.js similarity index 85% rename from test/spec/ol/format/xsd.test.js rename to test/browser/spec/ol/format/xsd.test.js index 38510195f9..b01d3bb196 100644 --- a/test/spec/ol/format/xsd.test.js +++ b/test/browser/spec/ol/format/xsd.test.js @@ -1,4 +1,4 @@ -import {readDateTime} from '../../../../src/ol/format/xsd.js'; +import {readDateTime} from '../../../../../src/ol/format/xsd.js'; describe('ol/format/xsd', function () { describe('readDateTime', function () { diff --git a/test/spec/ol/functions.test.js b/test/browser/spec/ol/functions.test.js similarity index 96% rename from test/spec/ol/functions.test.js rename to test/browser/spec/ol/functions.test.js index 76dd3d882a..913f575cc0 100644 --- a/test/spec/ol/functions.test.js +++ b/test/browser/spec/ol/functions.test.js @@ -1,4 +1,4 @@ -import {memoizeOne} from '../../../src/ol/functions.js'; +import {memoizeOne} from '../../../../src/ol/functions.js'; describe('ol/functions', function () { describe('memoizeOne()', function () { diff --git a/test/spec/ol/geolocation.test.js b/test/browser/spec/ol/geolocation.test.js similarity index 80% rename from test/spec/ol/geolocation.test.js rename to test/browser/spec/ol/geolocation.test.js index c413f28de7..a56250cf7e 100644 --- a/test/spec/ol/geolocation.test.js +++ b/test/browser/spec/ol/geolocation.test.js @@ -1,4 +1,4 @@ -import Geolocation from '../../../src/ol/Geolocation.js'; +import Geolocation from '../../../../src/ol/Geolocation.js'; describe('ol.Geolocation', function () { describe('constructor', function () { diff --git a/test/spec/ol/geom/circle.test.js b/test/browser/spec/ol/geom/circle.test.js similarity index 99% rename from test/spec/ol/geom/circle.test.js rename to test/browser/spec/ol/geom/circle.test.js index f4bfc62212..b650989741 100644 --- a/test/spec/ol/geom/circle.test.js +++ b/test/browser/spec/ol/geom/circle.test.js @@ -1,4 +1,4 @@ -import Circle from '../../../../src/ol/geom/Circle.js'; +import Circle from '../../../../../src/ol/geom/Circle.js'; describe('ol.geom.Circle', function () { describe('with a unit circle', function () { diff --git a/test/spec/ol/geom/flat/area.test.js b/test/browser/spec/ol/geom/flat/area.test.js similarity index 88% rename from test/spec/ol/geom/flat/area.test.js rename to test/browser/spec/ol/geom/flat/area.test.js index 06b02348bf..94c737384b 100644 --- a/test/spec/ol/geom/flat/area.test.js +++ b/test/browser/spec/ol/geom/flat/area.test.js @@ -1,4 +1,7 @@ -import {linearRing, linearRings} from '../../../../../src/ol/geom/flat/area.js'; +import { + linearRing, + linearRings, +} from '../../../../../../src/ol/geom/flat/area.js'; describe('ol.geom.flat.area', function () { describe('ol.geom.flat.area.linearRing', function () { diff --git a/test/spec/ol/geom/flat/center.test.js b/test/browser/spec/ol/geom/flat/center.test.js similarity index 94% rename from test/spec/ol/geom/flat/center.test.js rename to test/browser/spec/ol/geom/flat/center.test.js index 276cc3a7d7..c0c555ea22 100644 --- a/test/spec/ol/geom/flat/center.test.js +++ b/test/browser/spec/ol/geom/flat/center.test.js @@ -1,5 +1,5 @@ -import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; -import {linearRingss as linearRingssCenter} from '../../../../../src/ol/geom/flat/center.js'; +import MultiPolygon from '../../../../../../src/ol/geom/MultiPolygon.js'; +import {linearRingss as linearRingssCenter} from '../../../../../../src/ol/geom/flat/center.js'; describe('ol.geom.flat.center', function () { describe('ol.geom.flat.center.linearRingss', function () { diff --git a/test/spec/ol/geom/flat/closest.test.js b/test/browser/spec/ol/geom/flat/closest.test.js similarity index 99% rename from test/spec/ol/geom/flat/closest.test.js rename to test/browser/spec/ol/geom/flat/closest.test.js index 7ac99a5228..e53a817944 100644 --- a/test/spec/ol/geom/flat/closest.test.js +++ b/test/browser/spec/ol/geom/flat/closest.test.js @@ -1,7 +1,7 @@ import { assignClosestPoint, maxSquaredDelta, -} from '../../../../../src/ol/geom/flat/closest.js'; +} from '../../../../../../src/ol/geom/flat/closest.js'; describe('ol.geom.flat.closest', function () { describe('with simple data', function () { diff --git a/test/spec/ol/geom/flat/contains.test.js b/test/browser/spec/ol/geom/flat/contains.test.js similarity index 96% rename from test/spec/ol/geom/flat/contains.test.js rename to test/browser/spec/ol/geom/flat/contains.test.js index 0cb568dad7..c3eb6dc178 100644 --- a/test/spec/ol/geom/flat/contains.test.js +++ b/test/browser/spec/ol/geom/flat/contains.test.js @@ -1,4 +1,4 @@ -import {linearRingContainsXY} from '../../../../../src/ol/geom/flat/contains.js'; +import {linearRingContainsXY} from '../../../../../../src/ol/geom/flat/contains.js'; describe('ol.geom.flat.contains', function () { describe('with simple data', function () { diff --git a/test/spec/ol/geom/flat/deflate.test.js b/test/browser/spec/ol/geom/flat/deflate.test.js similarity index 95% rename from test/spec/ol/geom/flat/deflate.test.js rename to test/browser/spec/ol/geom/flat/deflate.test.js index 42ad40ccc9..63893368e1 100644 --- a/test/spec/ol/geom/flat/deflate.test.js +++ b/test/browser/spec/ol/geom/flat/deflate.test.js @@ -1,7 +1,7 @@ import { deflateCoordinates, deflateCoordinatesArray, -} from '../../../../../src/ol/geom/flat/deflate.js'; +} from '../../../../../../src/ol/geom/flat/deflate.js'; describe('ol.geom.flat.deflate', function () { describe('ol.geom.flat.deflate.deflateCoordinates', function () { diff --git a/test/spec/ol/geom/flat/flip.test.js b/test/browser/spec/ol/geom/flat/flip.test.js similarity index 94% rename from test/spec/ol/geom/flat/flip.test.js rename to test/browser/spec/ol/geom/flat/flip.test.js index 0eb9857700..877734555c 100644 --- a/test/spec/ol/geom/flat/flip.test.js +++ b/test/browser/spec/ol/geom/flat/flip.test.js @@ -1,4 +1,4 @@ -import {flipXY} from '../../../../../src/ol/geom/flat/flip.js'; +import {flipXY} from '../../../../../../src/ol/geom/flat/flip.js'; describe('ol.geom.flat.flip', function () { describe('ol.geom.flat.flip.flipXY', function () { diff --git a/test/spec/ol/geom/flat/inflate.test.js b/test/browser/spec/ol/geom/flat/inflate.test.js similarity index 93% rename from test/spec/ol/geom/flat/inflate.test.js rename to test/browser/spec/ol/geom/flat/inflate.test.js index cf84aeba79..051349074e 100644 --- a/test/spec/ol/geom/flat/inflate.test.js +++ b/test/browser/spec/ol/geom/flat/inflate.test.js @@ -1,7 +1,7 @@ import { inflateCoordinates, inflateCoordinatesArray, -} from '../../../../../src/ol/geom/flat/inflate.js'; +} from '../../../../../../src/ol/geom/flat/inflate.js'; describe('ol.geom.flat.inflate', function () { describe('ol.geom.flat.inflate.inflateCoordinates', function () { diff --git a/test/spec/ol/geom/flat/interpolate.test.js b/test/browser/spec/ol/geom/flat/interpolate.test.js similarity index 96% rename from test/spec/ol/geom/flat/interpolate.test.js rename to test/browser/spec/ol/geom/flat/interpolate.test.js index 8d8d07de87..3a6ac862d2 100644 --- a/test/spec/ol/geom/flat/interpolate.test.js +++ b/test/browser/spec/ol/geom/flat/interpolate.test.js @@ -1,4 +1,4 @@ -import {interpolatePoint} from '../../../../../src/ol/geom/flat/interpolate.js'; +import {interpolatePoint} from '../../../../../../src/ol/geom/flat/interpolate.js'; describe('ol.geom.flat.interpolate', function () { describe('ol.geom.flat.interpolate.interpolatePoint', function () { diff --git a/test/spec/ol/geom/flat/intersectsextent.test.js b/test/browser/spec/ol/geom/flat/intersectsextent.test.js similarity index 98% rename from test/spec/ol/geom/flat/intersectsextent.test.js rename to test/browser/spec/ol/geom/flat/intersectsextent.test.js index fb75f56da6..f9d26d0d4d 100644 --- a/test/spec/ol/geom/flat/intersectsextent.test.js +++ b/test/browser/spec/ol/geom/flat/intersectsextent.test.js @@ -2,7 +2,7 @@ import { intersectsLineString, intersectsLinearRing, intersectsLinearRingArray, -} from '../../../../../src/ol/geom/flat/intersectsextent.js'; +} from '../../../../../../src/ol/geom/flat/intersectsextent.js'; describe('ol.geom.flat.intersectsextent', function () { describe('ol.geom.flat.intersectsextent.intersectsLineString', function () { diff --git a/test/spec/ol/geom/flat/length.test.js b/test/browser/spec/ol/geom/flat/length.test.js similarity index 98% rename from test/spec/ol/geom/flat/length.test.js rename to test/browser/spec/ol/geom/flat/length.test.js index cfca250a64..b2d81c7183 100644 --- a/test/spec/ol/geom/flat/length.test.js +++ b/test/browser/spec/ol/geom/flat/length.test.js @@ -1,7 +1,7 @@ import { lineStringLength, linearRingLength, -} from '../../../../../src/ol/geom/flat/length.js'; +} from '../../../../../../src/ol/geom/flat/length.js'; describe('ol.geom.flat.length', function () { describe('ol.geom.flat.length.lineStringLength', function () { diff --git a/test/spec/ol/geom/flat/orient.test.js b/test/browser/spec/ol/geom/flat/orient.test.js similarity index 99% rename from test/spec/ol/geom/flat/orient.test.js rename to test/browser/spec/ol/geom/flat/orient.test.js index e39039c539..2a639a0b58 100644 --- a/test/spec/ol/geom/flat/orient.test.js +++ b/test/browser/spec/ol/geom/flat/orient.test.js @@ -4,7 +4,7 @@ import { linearRingssAreOriented, orientLinearRings, orientLinearRingsArray, -} from '../../../../../src/ol/geom/flat/orient.js'; +} from '../../../../../../src/ol/geom/flat/orient.js'; describe('ol.geom.flat.orient', function () { describe('ol.geom.flat.orient.linearRingIsClockwise', function () { diff --git a/test/spec/ol/geom/flat/reverse.test.js b/test/browser/spec/ol/geom/flat/reverse.test.js similarity index 99% rename from test/spec/ol/geom/flat/reverse.test.js rename to test/browser/spec/ol/geom/flat/reverse.test.js index a295691c5f..71d8aa3e43 100644 --- a/test/spec/ol/geom/flat/reverse.test.js +++ b/test/browser/spec/ol/geom/flat/reverse.test.js @@ -1,4 +1,4 @@ -import {coordinates as reverseCoordinates} from '../../../../../src/ol/geom/flat/reverse.js'; +import {coordinates as reverseCoordinates} from '../../../../../../src/ol/geom/flat/reverse.js'; describe('ol.geom.flat.reverse', function () { describe('ol.geom.flat.reverse.coordinates', function () { diff --git a/test/spec/ol/geom/flat/segments.test.js b/test/browser/spec/ol/geom/flat/segments.test.js similarity index 95% rename from test/spec/ol/geom/flat/segments.test.js rename to test/browser/spec/ol/geom/flat/segments.test.js index 03bdfc91b3..85f10330bd 100644 --- a/test/spec/ol/geom/flat/segments.test.js +++ b/test/browser/spec/ol/geom/flat/segments.test.js @@ -1,4 +1,4 @@ -import {forEach as forEachSegment} from '../../../../../src/ol/geom/flat/segments.js'; +import {forEach as forEachSegment} from '../../../../../../src/ol/geom/flat/segments.js'; describe('ol.geom.flat.segments', function () { describe('ol.geom.flat.segments.forEach', function () { diff --git a/test/spec/ol/geom/flat/simplify.test.js b/test/browser/spec/ol/geom/flat/simplify.test.js similarity index 99% rename from test/spec/ol/geom/flat/simplify.test.js rename to test/browser/spec/ol/geom/flat/simplify.test.js index b6fc9d4bc3..74d5bbdce8 100644 --- a/test/spec/ol/geom/flat/simplify.test.js +++ b/test/browser/spec/ol/geom/flat/simplify.test.js @@ -3,7 +3,7 @@ import { quantize, radialDistance, simplifyLineString, -} from '../../../../../src/ol/geom/flat/simplify.js'; +} from '../../../../../../src/ol/geom/flat/simplify.js'; describe('ol.geom.flat.simplify', function () { const flatCoordinates = [ diff --git a/test/spec/ol/geom/flat/straightchunk.test.js b/test/browser/spec/ol/geom/flat/straightchunk.test.js similarity index 95% rename from test/spec/ol/geom/flat/straightchunk.test.js rename to test/browser/spec/ol/geom/flat/straightchunk.test.js index 7865d78bf5..cb2a3bef6f 100644 --- a/test/spec/ol/geom/flat/straightchunk.test.js +++ b/test/browser/spec/ol/geom/flat/straightchunk.test.js @@ -1,4 +1,4 @@ -import {matchingChunk} from '../../../../../src/ol/geom/flat/straightchunk.js'; +import {matchingChunk} from '../../../../../../src/ol/geom/flat/straightchunk.js'; describe('ol.geom.flat.straightchunk', function () { describe('ol.geom.flat.straightchunk.matchingChunk', function () { diff --git a/test/spec/ol/geom/flat/textpath.test.js b/test/browser/spec/ol/geom/flat/textpath.test.js similarity index 97% rename from test/spec/ol/geom/flat/textpath.test.js rename to test/browser/spec/ol/geom/flat/textpath.test.js index 15a11a534f..a12ce86f71 100644 --- a/test/spec/ol/geom/flat/textpath.test.js +++ b/test/browser/spec/ol/geom/flat/textpath.test.js @@ -1,5 +1,5 @@ -import {drawTextOnPath} from '../../../../../src/ol/geom/flat/textpath.js'; -import {lineStringLength} from '../../../../../src/ol/geom/flat/length.js'; +import {drawTextOnPath} from '../../../../../../src/ol/geom/flat/textpath.js'; +import {lineStringLength} from '../../../../../../src/ol/geom/flat/length.js'; describe('ol.geom.flat.drawTextOnPath', function () { const horizontal = [0, 0, 100, 0]; diff --git a/test/spec/ol/geom/flat/topologyflatgeom.test.js b/test/browser/spec/ol/geom/flat/topologyflatgeom.test.js similarity index 93% rename from test/spec/ol/geom/flat/topologyflatgeom.test.js rename to test/browser/spec/ol/geom/flat/topologyflatgeom.test.js index 68e832cd39..42c1750d5c 100644 --- a/test/spec/ol/geom/flat/topologyflatgeom.test.js +++ b/test/browser/spec/ol/geom/flat/topologyflatgeom.test.js @@ -1,4 +1,4 @@ -import {lineStringIsClosed} from '../../../../../src/ol/geom/flat/topology.js'; +import {lineStringIsClosed} from '../../../../../../src/ol/geom/flat/topology.js'; describe('ol.geom.flat.topology', function () { describe('ol.geom.flat.topology.lineStringIsClosed', function () { diff --git a/test/spec/ol/geom/flat/transform.test.js b/test/browser/spec/ol/geom/flat/transform.test.js similarity index 96% rename from test/spec/ol/geom/flat/transform.test.js rename to test/browser/spec/ol/geom/flat/transform.test.js index 9b46186645..5832c970ef 100644 --- a/test/spec/ol/geom/flat/transform.test.js +++ b/test/browser/spec/ol/geom/flat/transform.test.js @@ -1,6 +1,9 @@ -import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; -import {rotate, translate} from '../../../../../src/ol/geom/flat/transform.js'; -import {transformGeom2D} from '../../../../../src/ol/geom/SimpleGeometry.js'; +import MultiPolygon from '../../../../../../src/ol/geom/MultiPolygon.js'; +import { + rotate, + translate, +} from '../../../../../../src/ol/geom/flat/transform.js'; +import {transformGeom2D} from '../../../../../../src/ol/geom/SimpleGeometry.js'; describe('ol.geom.flat.transform', function () { describe('ol.geom.flat.transform.transform2D', function () { diff --git a/test/spec/ol/geom/geometrycollection.test.js b/test/browser/spec/ol/geom/geometrycollection.test.js similarity index 96% rename from test/spec/ol/geom/geometrycollection.test.js rename to test/browser/spec/ol/geom/geometrycollection.test.js index f66cf9e25a..00a496200d 100644 --- a/test/spec/ol/geom/geometrycollection.test.js +++ b/test/browser/spec/ol/geom/geometrycollection.test.js @@ -1,8 +1,8 @@ -import Geometry from '../../../../src/ol/geom/Geometry.js'; -import GeometryCollection from '../../../../src/ol/geom/GeometryCollection.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Geometry from '../../../../../src/ol/geom/Geometry.js'; +import GeometryCollection from '../../../../../src/ol/geom/GeometryCollection.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; describe('ol.geom.GeometryCollection', function () { const outer = [ diff --git a/test/spec/ol/geom/linestring.test.js b/test/browser/spec/ol/geom/linestring.test.js similarity index 99% rename from test/spec/ol/geom/linestring.test.js rename to test/browser/spec/ol/geom/linestring.test.js index 13e572cf2c..d18f200a9a 100644 --- a/test/spec/ol/geom/linestring.test.js +++ b/test/browser/spec/ol/geom/linestring.test.js @@ -1,5 +1,5 @@ -import LineString from '../../../../src/ol/geom/LineString.js'; -import {isEmpty} from '../../../../src/ol/extent.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import {isEmpty} from '../../../../../src/ol/extent.js'; describe('ol.geom.LineString', function () { it('cannot be constructed with a null geometry', function () { diff --git a/test/spec/ol/geom/multilinestring.test.js b/test/browser/spec/ol/geom/multilinestring.test.js similarity index 98% rename from test/spec/ol/geom/multilinestring.test.js rename to test/browser/spec/ol/geom/multilinestring.test.js index 874d25b80c..ed7554f0a6 100644 --- a/test/spec/ol/geom/multilinestring.test.js +++ b/test/browser/spec/ol/geom/multilinestring.test.js @@ -1,6 +1,6 @@ -import LineString from '../../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import {isEmpty} from '../../../../src/ol/extent.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import {isEmpty} from '../../../../../src/ol/extent.js'; describe('ol.geom.MultiLineString', function () { it('cannot be constructed with a null geometry', function () { diff --git a/test/spec/ol/geom/multipoint.test.js b/test/browser/spec/ol/geom/multipoint.test.js similarity index 98% rename from test/spec/ol/geom/multipoint.test.js rename to test/browser/spec/ol/geom/multipoint.test.js index d71a87071e..03915d8e75 100644 --- a/test/spec/ol/geom/multipoint.test.js +++ b/test/browser/spec/ol/geom/multipoint.test.js @@ -1,6 +1,6 @@ -import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import {isEmpty} from '../../../../src/ol/extent.js'; +import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import {isEmpty} from '../../../../../src/ol/extent.js'; describe('ol.geom.MultiPoint', function () { it('cannot be constructed with a null geometry', function () { diff --git a/test/spec/ol/geom/multipolygon.test.js b/test/browser/spec/ol/geom/multipolygon.test.js similarity index 98% rename from test/spec/ol/geom/multipolygon.test.js rename to test/browser/spec/ol/geom/multipolygon.test.js index bb97567dee..a63e7865a2 100644 --- a/test/spec/ol/geom/multipolygon.test.js +++ b/test/browser/spec/ol/geom/multipolygon.test.js @@ -1,5 +1,5 @@ -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; describe('ol.geom.MultiPolygon', function () { it('cannot be constructed with a null geometry', function () { diff --git a/test/spec/ol/geom/point.test.js b/test/browser/spec/ol/geom/point.test.js similarity index 98% rename from test/spec/ol/geom/point.test.js rename to test/browser/spec/ol/geom/point.test.js index 3a28211928..0d5eb034d6 100644 --- a/test/spec/ol/geom/point.test.js +++ b/test/browser/spec/ol/geom/point.test.js @@ -1,8 +1,8 @@ -import Point from '../../../../src/ol/geom/Point.js'; +import Point from '../../../../../src/ol/geom/Point.js'; import { get as getProjection, getTransformFromProjections, -} from '../../../../src/ol/proj.js'; +} from '../../../../../src/ol/proj.js'; describe('ol.geom.Point', function () { it('cannot be constructed with a null geometry', function () { diff --git a/test/spec/ol/geom/polygon.test.js b/test/browser/spec/ol/geom/polygon.test.js similarity index 98% rename from test/spec/ol/geom/polygon.test.js rename to test/browser/spec/ol/geom/polygon.test.js index d1278b9379..987176051e 100644 --- a/test/spec/ol/geom/polygon.test.js +++ b/test/browser/spec/ol/geom/polygon.test.js @@ -1,10 +1,10 @@ -import Circle from '../../../../src/ol/geom/Circle.js'; -import LinearRing from '../../../../src/ol/geom/LinearRing.js'; +import Circle from '../../../../../src/ol/geom/Circle.js'; +import LinearRing from '../../../../../src/ol/geom/LinearRing.js'; import Polygon, { fromCircle, fromExtent, -} from '../../../../src/ol/geom/Polygon.js'; -import {boundingExtent, isEmpty} from '../../../../src/ol/extent.js'; +} from '../../../../../src/ol/geom/Polygon.js'; +import {boundingExtent, isEmpty} from '../../../../../src/ol/extent.js'; describe('ol/geom/Polygon', function () { it('cannot be constructed with a null geometry', function () { diff --git a/test/spec/ol/graticule.test.js b/test/browser/spec/ol/graticule.test.js similarity index 96% rename from test/spec/ol/graticule.test.js rename to test/browser/spec/ol/graticule.test.js index c0a2f3c593..4d31da592f 100644 --- a/test/spec/ol/graticule.test.js +++ b/test/browser/spec/ol/graticule.test.js @@ -1,9 +1,9 @@ -import Feature from '../../../src/ol/Feature.js'; -import Graticule from '../../../src/ol/layer/Graticule.js'; -import Map from '../../../src/ol/Map.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Text from '../../../src/ol/style/Text.js'; -import {fromLonLat, get as getProjection} from '../../../src/ol/proj.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Graticule from '../../../../src/ol/layer/Graticule.js'; +import Map from '../../../../src/ol/Map.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Text from '../../../../src/ol/style/Text.js'; +import {fromLonLat, get as getProjection} from '../../../../src/ol/proj.js'; describe('ol.layer.Graticule', function () { let graticule; diff --git a/test/spec/ol/image.test.js b/test/browser/spec/ol/image.test.js similarity index 95% rename from test/spec/ol/image.test.js rename to test/browser/spec/ol/image.test.js index 7e85fb3ea9..f38f5bf6fe 100644 --- a/test/spec/ol/image.test.js +++ b/test/browser/spec/ol/image.test.js @@ -1,4 +1,4 @@ -import {listenImage} from '../../../src/ol/Image.js'; +import {listenImage} from '../../../../src/ol/Image.js'; describe('HTML Image loading', function () { let handleLoad, handleError, img; diff --git a/test/spec/ol/imagetile.test.js b/test/browser/spec/ol/imagetile.test.js similarity index 88% rename from test/spec/ol/imagetile.test.js rename to test/browser/spec/ol/imagetile.test.js index db217ba887..19a4de1750 100644 --- a/test/spec/ol/imagetile.test.js +++ b/test/browser/spec/ol/imagetile.test.js @@ -1,8 +1,8 @@ -import EventType from '../../../src/ol/events/EventType.js'; -import ImageTile from '../../../src/ol/ImageTile.js'; -import TileState from '../../../src/ol/TileState.js'; -import {defaultImageLoadFunction} from '../../../src/ol/source/Image.js'; -import {listen, unlistenByKey} from '../../../src/ol/events.js'; +import EventType from '../../../../src/ol/events/EventType.js'; +import ImageTile from '../../../../src/ol/ImageTile.js'; +import TileState from '../../../../src/ol/TileState.js'; +import {defaultImageLoadFunction} from '../../../../src/ol/source/Image.js'; +import {listen, unlistenByKey} from '../../../../src/ol/events.js'; describe('ol.ImageTile', function () { describe('#load()', function () { diff --git a/test/spec/ol/index.test.js b/test/browser/spec/ol/index.test.js similarity index 90% rename from test/spec/ol/index.test.js rename to test/browser/spec/ol/index.test.js index 5fcd5b96ed..c715e5903c 100644 --- a/test/spec/ol/index.test.js +++ b/test/browser/spec/ol/index.test.js @@ -1,4 +1,4 @@ -import {getUid} from '../../../src/ol/util.js'; +import {getUid} from '../../../../src/ol/util.js'; describe('getUid()', function () { it('is constant once generated', function () { diff --git a/test/spec/ol/interaction/draganddrop.test.js b/test/browser/spec/ol/interaction/draganddrop.test.js similarity index 95% rename from test/spec/ol/interaction/draganddrop.test.js rename to test/browser/spec/ol/interaction/draganddrop.test.js index c6d2bb8eb3..04890168bd 100644 --- a/test/spec/ol/interaction/draganddrop.test.js +++ b/test/browser/spec/ol/interaction/draganddrop.test.js @@ -1,10 +1,10 @@ -import DragAndDrop from '../../../../src/ol/interaction/DragAndDrop.js'; -import Event from '../../../../src/ol/events/Event.js'; -import EventTarget from '../../../../src/ol/events/Target.js'; -import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; -import MVT from '../../../../src/ol/format/MVT.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; +import DragAndDrop from '../../../../../src/ol/interaction/DragAndDrop.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import EventTarget from '../../../../../src/ol/events/Target.js'; +import GeoJSON from '../../../../../src/ol/format/GeoJSON.js'; +import MVT from '../../../../../src/ol/format/MVT.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; where('FileReader').describe('ol.interaction.DragAndDrop', function () { let viewport, map, interaction; diff --git a/test/spec/ol/interaction/dragrotateandzoom.test.js b/test/browser/spec/ol/interaction/dragrotateandzoom.test.js similarity index 84% rename from test/spec/ol/interaction/dragrotateandzoom.test.js rename to test/browser/spec/ol/interaction/dragrotateandzoom.test.js index da2dbbb626..a754f5cf73 100644 --- a/test/spec/ol/interaction/dragrotateandzoom.test.js +++ b/test/browser/spec/ol/interaction/dragrotateandzoom.test.js @@ -1,10 +1,10 @@ -import DragRotateAndZoom from '../../../../src/ol/interaction/DragRotateAndZoom.js'; -import Event from '../../../../src/ol/events/Event.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; +import DragRotateAndZoom from '../../../../../src/ol/interaction/DragRotateAndZoom.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.interaction.DragRotateAndZoom', function () { describe('constructor', function () { diff --git a/test/spec/ol/interaction/dragzoom.test.js b/test/browser/spec/ol/interaction/dragzoom.test.js similarity index 84% rename from test/spec/ol/interaction/dragzoom.test.js rename to test/browser/spec/ol/interaction/dragzoom.test.js index 0edc19bac4..9fef5182b2 100644 --- a/test/spec/ol/interaction/dragzoom.test.js +++ b/test/browser/spec/ol/interaction/dragzoom.test.js @@ -1,11 +1,11 @@ -import DragZoom from '../../../../src/ol/interaction/DragZoom.js'; -import Map from '../../../../src/ol/Map.js'; -import RenderBox from '../../../../src/ol/render/Box.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; -import {getCenter} from '../../../../src/ol/extent.js'; -import {fromExtent as polygonFromExtent} from '../../../../src/ol/geom/Polygon.js'; +import DragZoom from '../../../../../src/ol/interaction/DragZoom.js'; +import Map from '../../../../../src/ol/Map.js'; +import RenderBox from '../../../../../src/ol/render/Box.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; +import {getCenter} from '../../../../../src/ol/extent.js'; +import {fromExtent as polygonFromExtent} from '../../../../../src/ol/geom/Polygon.js'; describe('ol.interaction.DragZoom', function () { let target, map, source; diff --git a/test/spec/ol/interaction/draw.test.js b/test/browser/spec/ol/interaction/draw.test.js similarity index 97% rename from test/spec/ol/interaction/draw.test.js rename to test/browser/spec/ol/interaction/draw.test.js index 0861ff702d..b09f73aee9 100644 --- a/test/spec/ol/interaction/draw.test.js +++ b/test/browser/spec/ol/interaction/draw.test.js @@ -1,37 +1,37 @@ -import Circle from '../../../../src/ol/geom/Circle.js'; +import Circle from '../../../../../src/ol/geom/Circle.js'; import Draw, { createBox, createRegularPolygon, -} from '../../../../src/ol/interaction/Draw.js'; -import Feature from '../../../../src/ol/Feature.js'; -import GeometryType from '../../../../src/ol/geom/GeometryType.js'; -import Interaction from '../../../../src/ol/interaction/Interaction.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; +} from '../../../../../src/ol/interaction/Draw.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GeometryType from '../../../../../src/ol/geom/GeometryType.js'; +import Interaction from '../../../../../src/ol/interaction/Interaction.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; import proj4 from 'proj4'; import { altKeyOnly, always, shiftKeyOnly, -} from '../../../../src/ol/events/condition.js'; +} from '../../../../../src/ol/events/condition.js'; import { clearUserProjection, setUserProjection, transform, -} from '../../../../src/ol/proj.js'; -import {equals} from '../../../../src/ol/array.js'; -import {listen} from '../../../../src/ol/events.js'; -import {register} from '../../../../src/ol/proj/proj4.js'; -import {unByKey} from '../../../../src/ol/Observable.js'; +} from '../../../../../src/ol/proj.js'; +import {equals} from '../../../../../src/ol/array.js'; +import {listen} from '../../../../../src/ol/events.js'; +import {register} from '../../../../../src/ol/proj/proj4.js'; +import {unByKey} from '../../../../../src/ol/Observable.js'; describe('ol.interaction.Draw', function () { let target, map, source; diff --git a/test/spec/ol/interaction/extent.test.js b/test/browser/spec/ol/interaction/extent.test.js similarity index 94% rename from test/spec/ol/interaction/extent.test.js rename to test/browser/spec/ol/interaction/extent.test.js index 00c325ec63..3e722b064e 100644 --- a/test/spec/ol/interaction/extent.test.js +++ b/test/browser/spec/ol/interaction/extent.test.js @@ -1,7 +1,7 @@ -import ExtentInteraction from '../../../../src/ol/interaction/Extent.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import View from '../../../../src/ol/View.js'; +import ExtentInteraction from '../../../../../src/ol/interaction/Extent.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.interaction.Extent', function () { let map, interaction; diff --git a/test/spec/ol/interaction/interaction.test.js b/test/browser/spec/ol/interaction/interaction.test.js similarity index 88% rename from test/spec/ol/interaction/interaction.test.js rename to test/browser/spec/ol/interaction/interaction.test.js index ba26783c8c..b972af9e02 100644 --- a/test/spec/ol/interaction/interaction.test.js +++ b/test/browser/spec/ol/interaction/interaction.test.js @@ -1,10 +1,13 @@ -import EventTarget from '../../../../src/ol/events/Target.js'; +import EventTarget from '../../../../../src/ol/events/Target.js'; import Interaction, { zoomByDelta, -} from '../../../../src/ol/interaction/Interaction.js'; -import {FALSE} from '../../../../src/ol/functions.js'; -import {Map, View} from '../../../../src/ol/index.js'; -import {clearUserProjection, useGeographic} from '../../../../src/ol/proj.js'; +} from '../../../../../src/ol/interaction/Interaction.js'; +import {FALSE} from '../../../../../src/ol/functions.js'; +import {Map, View} from '../../../../../src/ol/index.js'; +import { + clearUserProjection, + useGeographic, +} from '../../../../../src/ol/proj.js'; describe('ol.interaction.Interaction', function () { describe('constructor', function () { diff --git a/test/spec/ol/interaction/keyboardpan.test.js b/test/browser/spec/ol/interaction/keyboardpan.test.js similarity index 86% rename from test/spec/ol/interaction/keyboardpan.test.js rename to test/browser/spec/ol/interaction/keyboardpan.test.js index f615dcff18..da3f090556 100644 --- a/test/spec/ol/interaction/keyboardpan.test.js +++ b/test/browser/spec/ol/interaction/keyboardpan.test.js @@ -1,7 +1,7 @@ -import Event from '../../../../src/ol/events/Event.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import View from '../../../../src/ol/View.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.interaction.KeyboardPan', function () { let map; diff --git a/test/spec/ol/interaction/keyboardzoom.test.js b/test/browser/spec/ol/interaction/keyboardzoom.test.js similarity index 87% rename from test/spec/ol/interaction/keyboardzoom.test.js rename to test/browser/spec/ol/interaction/keyboardzoom.test.js index 53fd828392..a5b2aebf8b 100644 --- a/test/spec/ol/interaction/keyboardzoom.test.js +++ b/test/browser/spec/ol/interaction/keyboardzoom.test.js @@ -1,7 +1,7 @@ -import Event from '../../../../src/ol/events/Event.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import View from '../../../../src/ol/View.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.interaction.KeyboardZoom', function () { let map; diff --git a/test/spec/ol/interaction/modify.test.js b/test/browser/spec/ol/interaction/modify.test.js similarity index 96% rename from test/spec/ol/interaction/modify.test.js rename to test/browser/spec/ol/interaction/modify.test.js index 8df76ac5d8..875f44b05e 100644 --- a/test/spec/ol/interaction/modify.test.js +++ b/test/browser/spec/ol/interaction/modify.test.js @@ -1,27 +1,27 @@ -import Circle from '../../../../src/ol/geom/Circle.js'; -import CircleStyle from '../../../../src/ol/style/Circle.js'; -import Collection from '../../../../src/ol/Collection.js'; -import Event from '../../../../src/ol/events/Event.js'; -import Feature from '../../../../src/ol/Feature.js'; -import GeometryCollection from '../../../../src/ol/geom/GeometryCollection.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import Modify, {ModifyEvent} from '../../../../src/ol/interaction/Modify.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon, {fromExtent} from '../../../../src/ol/geom/Polygon.js'; -import Snap from '../../../../src/ol/interaction/Snap.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; -import {Fill, Style} from '../../../../src/ol/style.js'; -import {MultiPoint} from '../../../../src/ol/geom.js'; +import Circle from '../../../../../src/ol/geom/Circle.js'; +import CircleStyle from '../../../../../src/ol/style/Circle.js'; +import Collection from '../../../../../src/ol/Collection.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GeometryCollection from '../../../../../src/ol/geom/GeometryCollection.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import Modify, {ModifyEvent} from '../../../../../src/ol/interaction/Modify.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon, {fromExtent} from '../../../../../src/ol/geom/Polygon.js'; +import Snap from '../../../../../src/ol/interaction/Snap.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; +import {Fill, Style} from '../../../../../src/ol/style.js'; +import {MultiPoint} from '../../../../../src/ol/geom.js'; import { clearUserProjection, setUserProjection, -} from '../../../../src/ol/proj.js'; -import {doubleClick} from '../../../../src/ol/events/condition.js'; -import {getValues} from '../../../../src/ol/obj.js'; +} from '../../../../../src/ol/proj.js'; +import {doubleClick} from '../../../../../src/ol/events/condition.js'; +import {getValues} from '../../../../../src/ol/obj.js'; describe('ol.interaction.Modify', function () { let target, map, layer, source, features; diff --git a/test/spec/ol/interaction/mousewheelzoom.test.js b/test/browser/spec/ol/interaction/mousewheelzoom.test.js similarity index 91% rename from test/spec/ol/interaction/mousewheelzoom.test.js rename to test/browser/spec/ol/interaction/mousewheelzoom.test.js index b621e2fef2..0640478fea 100644 --- a/test/spec/ol/interaction/mousewheelzoom.test.js +++ b/test/browser/spec/ol/interaction/mousewheelzoom.test.js @@ -1,11 +1,11 @@ -import Event from '../../../../src/ol/events/Event.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; import MouseWheelZoom, { Mode, -} from '../../../../src/ol/interaction/MouseWheelZoom.js'; -import View from '../../../../src/ol/View.js'; -import {DEVICE_PIXEL_RATIO, FIREFOX} from '../../../../src/ol/has.js'; +} from '../../../../../src/ol/interaction/MouseWheelZoom.js'; +import View from '../../../../../src/ol/View.js'; +import {DEVICE_PIXEL_RATIO, FIREFOX} from '../../../../../src/ol/has.js'; describe('ol.interaction.MouseWheelZoom', function () { let map, interaction; diff --git a/test/spec/ol/interaction/pointer.test.js b/test/browser/spec/ol/interaction/pointer.test.js similarity index 93% rename from test/spec/ol/interaction/pointer.test.js rename to test/browser/spec/ol/interaction/pointer.test.js index 797723a6d2..ee426592cd 100644 --- a/test/spec/ol/interaction/pointer.test.js +++ b/test/browser/spec/ol/interaction/pointer.test.js @@ -1,7 +1,7 @@ -import Event from '../../../../src/ol/events/Event.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import PointerInteraction from '../../../../src/ol/interaction/Pointer.js'; +import Event from '../../../../../src/ol/events/Event.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import PointerInteraction from '../../../../../src/ol/interaction/Pointer.js'; describe('ol.interaction.Pointer', function () { describe('#handleEvent', function () { diff --git a/test/spec/ol/interaction/select.test.js b/test/browser/spec/ol/interaction/select.test.js similarity index 95% rename from test/spec/ol/interaction/select.test.js rename to test/browser/spec/ol/interaction/select.test.js index e0c76bcc5b..a9fc7b310f 100644 --- a/test/spec/ol/interaction/select.test.js +++ b/test/browser/spec/ol/interaction/select.test.js @@ -1,15 +1,15 @@ -import Collection from '../../../../src/ol/Collection.js'; -import Feature from '../../../../src/ol/Feature.js'; -import Interaction from '../../../../src/ol/interaction/Interaction.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import MapBrowserEventType from '../../../../src/ol/MapBrowserEventType.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import Select from '../../../../src/ol/interaction/Select.js'; -import Style from '../../../../src/ol/style/Style.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; +import Collection from '../../../../../src/ol/Collection.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import Interaction from '../../../../../src/ol/interaction/Interaction.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import MapBrowserEventType from '../../../../../src/ol/MapBrowserEventType.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import Select from '../../../../../src/ol/interaction/Select.js'; +import Style from '../../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.interaction.Select', function () { let target, map, layer, source; diff --git a/test/spec/ol/interaction/snap.test.js b/test/browser/spec/ol/interaction/snap.test.js similarity index 94% rename from test/spec/ol/interaction/snap.test.js rename to test/browser/spec/ol/interaction/snap.test.js index a21e2a5aff..52295dd417 100644 --- a/test/spec/ol/interaction/snap.test.js +++ b/test/browser/spec/ol/interaction/snap.test.js @@ -1,17 +1,17 @@ -import Circle from '../../../../src/ol/geom/Circle.js'; -import Collection from '../../../../src/ol/Collection.js'; -import Feature from '../../../../src/ol/Feature.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import Map from '../../../../src/ol/Map.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Snap from '../../../../src/ol/interaction/Snap.js'; -import View from '../../../../src/ol/View.js'; +import Circle from '../../../../../src/ol/geom/Circle.js'; +import Collection from '../../../../../src/ol/Collection.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import Map from '../../../../../src/ol/Map.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Snap from '../../../../../src/ol/interaction/Snap.js'; +import View from '../../../../../src/ol/View.js'; import { clearUserProjection, setUserProjection, transform, useGeographic, -} from '../../../../src/ol/proj.js'; +} from '../../../../../src/ol/proj.js'; import {overrideRAF} from '../../util.js'; describe('ol.interaction.Snap', function () { diff --git a/test/spec/ol/interaction/translate.test.js b/test/browser/spec/ol/interaction/translate.test.js similarity index 94% rename from test/spec/ol/interaction/translate.test.js rename to test/browser/spec/ol/interaction/translate.test.js index 4b8038287a..b51105d431 100644 --- a/test/spec/ol/interaction/translate.test.js +++ b/test/browser/spec/ol/interaction/translate.test.js @@ -1,15 +1,15 @@ -import Collection from '../../../../src/ol/Collection.js'; -import Feature from '../../../../src/ol/Feature.js'; -import Interaction from '../../../../src/ol/interaction/Interaction.js'; -import Map from '../../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; -import Point from '../../../../src/ol/geom/Point.js'; +import Collection from '../../../../../src/ol/Collection.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import Interaction from '../../../../../src/ol/interaction/Interaction.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../../src/ol/MapBrowserEvent.js'; +import Point from '../../../../../src/ol/geom/Point.js'; import Translate, { TranslateEvent, -} from '../../../../src/ol/interaction/Translate.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; +} from '../../../../../src/ol/interaction/Translate.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.interaction.Translate', function () { let target, map, source, features; diff --git a/test/spec/ol/layer/MapboxVector.test.js b/test/browser/spec/ol/layer/MapboxVector.test.js similarity index 97% rename from test/spec/ol/layer/MapboxVector.test.js rename to test/browser/spec/ol/layer/MapboxVector.test.js index 5d7733e6a8..650f56fbb2 100644 --- a/test/spec/ol/layer/MapboxVector.test.js +++ b/test/browser/spec/ol/layer/MapboxVector.test.js @@ -3,7 +3,7 @@ import { normalizeSourceUrl, normalizeSpriteUrl, normalizeStyleUrl, -} from '../../../../src/ol/layer/MapboxVector.js'; +} from '../../../../../src/ol/layer/MapboxVector.js'; describe('ol/layer/MapboxVector', () => { describe('getMapboxPath()', () => { diff --git a/test/spec/ol/layer/group.test.js b/test/browser/spec/ol/layer/group.test.js similarity index 97% rename from test/spec/ol/layer/group.test.js rename to test/browser/spec/ol/layer/group.test.js index 69fee8f9f2..4dcd623277 100644 --- a/test/spec/ol/layer/group.test.js +++ b/test/browser/spec/ol/layer/group.test.js @@ -1,10 +1,10 @@ -import Collection from '../../../../src/ol/Collection.js'; -import Layer from '../../../../src/ol/layer/Layer.js'; -import LayerGroup from '../../../../src/ol/layer/Group.js'; -import Source from '../../../../src/ol/source/Source.js'; -import {assign} from '../../../../src/ol/obj.js'; -import {getIntersection} from '../../../../src/ol/extent.js'; -import {getUid} from '../../../../src/ol/util.js'; +import Collection from '../../../../../src/ol/Collection.js'; +import Layer from '../../../../../src/ol/layer/Layer.js'; +import LayerGroup from '../../../../../src/ol/layer/Group.js'; +import Source from '../../../../../src/ol/source/Source.js'; +import {assign} from '../../../../../src/ol/obj.js'; +import {getIntersection} from '../../../../../src/ol/extent.js'; +import {getUid} from '../../../../../src/ol/util.js'; describe('ol.layer.Group', function () { describe('constructor (defaults)', function () { diff --git a/test/spec/ol/layer/heatmap.test.js b/test/browser/spec/ol/layer/heatmap.test.js similarity index 87% rename from test/spec/ol/layer/heatmap.test.js rename to test/browser/spec/ol/layer/heatmap.test.js index 6d5be12e70..d67f0a896c 100644 --- a/test/spec/ol/layer/heatmap.test.js +++ b/test/browser/spec/ol/layer/heatmap.test.js @@ -1,9 +1,9 @@ -import Feature from '../../../../src/ol/Feature.js'; -import HeatmapLayer from '../../../../src/ol/layer/Heatmap.js'; -import Map from '../../../../src/ol/Map.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import HeatmapLayer from '../../../../../src/ol/layer/Heatmap.js'; +import Map from '../../../../../src/ol/Map.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.layer.Heatmap', function () { describe('constructor', function () { diff --git a/test/spec/ol/layer/layer.test.js b/test/browser/spec/ol/layer/layer.test.js similarity index 98% rename from test/spec/ol/layer/layer.test.js rename to test/browser/spec/ol/layer/layer.test.js index a331f6bbbd..af46d03979 100644 --- a/test/spec/ol/layer/layer.test.js +++ b/test/browser/spec/ol/layer/layer.test.js @@ -1,8 +1,8 @@ -import Layer, {inView} from '../../../../src/ol/layer/Layer.js'; -import Map from '../../../../src/ol/Map.js'; -import RenderEvent from '../../../../src/ol/render/Event.js'; -import Source from '../../../../src/ol/source/Source.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import Layer, {inView} from '../../../../../src/ol/layer/Layer.js'; +import Map from '../../../../../src/ol/Map.js'; +import RenderEvent from '../../../../../src/ol/render/Event.js'; +import Source from '../../../../../src/ol/source/Source.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.layer.Layer', function () { describe('constructor (defaults)', function () { diff --git a/test/spec/ol/layer/tile.test.js b/test/browser/spec/ol/layer/tile.test.js similarity index 93% rename from test/spec/ol/layer/tile.test.js rename to test/browser/spec/ol/layer/tile.test.js index ca5ab57b93..bfe36b8683 100644 --- a/test/spec/ol/layer/tile.test.js +++ b/test/browser/spec/ol/layer/tile.test.js @@ -1,6 +1,6 @@ -import TileLayer from '../../../../src/ol/layer/Tile.js'; -import {Map, View} from '../../../../src/ol/index.js'; -import {OSM, XYZ} from '../../../../src/ol/source.js'; +import TileLayer from '../../../../../src/ol/layer/Tile.js'; +import {Map, View} from '../../../../../src/ol/index.js'; +import {OSM, XYZ} from '../../../../../src/ol/source.js'; describe('ol.layer.Tile', function () { describe('constructor (defaults)', function () { diff --git a/test/spec/ol/layer/vector.test.js b/test/browser/spec/ol/layer/vector.test.js similarity index 89% rename from test/spec/ol/layer/vector.test.js rename to test/browser/spec/ol/layer/vector.test.js index 4bb498caa5..537bfe010a 100644 --- a/test/spec/ol/layer/vector.test.js +++ b/test/browser/spec/ol/layer/vector.test.js @@ -1,14 +1,14 @@ -import Feature from '../../../../src/ol/Feature.js'; -import ImageStyle from '../../../../src/ol/style/Image.js'; -import Layer from '../../../../src/ol/layer/Layer.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import Map from '../../../../src/ol/Map.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Stroke from '../../../../src/ol/style/Stroke.js'; -import Style, {createDefaultStyle} from '../../../../src/ol/style/Style.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import ImageStyle from '../../../../../src/ol/style/Image.js'; +import Layer from '../../../../../src/ol/layer/Layer.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import Map from '../../../../../src/ol/Map.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../../src/ol/style/Stroke.js'; +import Style, {createDefaultStyle} from '../../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.layer.Vector', function () { describe('constructor', function () { diff --git a/test/spec/ol/layer/vectorimage.test.js b/test/browser/spec/ol/layer/vectorimage.test.js similarity index 78% rename from test/spec/ol/layer/vectorimage.test.js rename to test/browser/spec/ol/layer/vectorimage.test.js index ed093b6977..e8db757a63 100644 --- a/test/spec/ol/layer/vectorimage.test.js +++ b/test/browser/spec/ol/layer/vectorimage.test.js @@ -1,9 +1,9 @@ -import Feature from '../../../../src/ol/Feature.js'; -import Map from '../../../../src/ol/Map.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import VectorImageLayer from '../../../../src/ol/layer/VectorImage.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import Map from '../../../../../src/ol/Map.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import VectorImageLayer from '../../../../../src/ol/layer/VectorImage.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; describe('ol/layer/VectorImage', function () { describe('#getFeatures()', function () { diff --git a/test/spec/ol/layer/vectortile.test.js b/test/browser/spec/ol/layer/vectortile.test.js similarity index 91% rename from test/spec/ol/layer/vectortile.test.js rename to test/browser/spec/ol/layer/vectortile.test.js index 2c1d512be5..5f839a4e03 100644 --- a/test/spec/ol/layer/vectortile.test.js +++ b/test/browser/spec/ol/layer/vectortile.test.js @@ -1,9 +1,9 @@ -import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; -import Map from '../../../../src/ol/Map.js'; -import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; -import View from '../../../../src/ol/View.js'; -import {fromLonLat} from '../../../../src/ol/proj.js'; +import GeoJSON from '../../../../../src/ol/format/GeoJSON.js'; +import Map from '../../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../../src/ol/source/VectorTile.js'; +import View from '../../../../../src/ol/View.js'; +import {fromLonLat} from '../../../../../src/ol/proj.js'; describe('ol.layer.VectorTile', function () { describe('constructor (defaults)', function () { diff --git a/test/spec/ol/map.test.js b/test/browser/spec/ol/map.test.js similarity index 95% rename from test/spec/ol/map.test.js rename to test/browser/spec/ol/map.test.js index e02a0bca83..4867764f88 100644 --- a/test/spec/ol/map.test.js +++ b/test/browser/spec/ol/map.test.js @@ -1,36 +1,36 @@ -import DoubleClickZoom from '../../../src/ol/interaction/DoubleClickZoom.js'; -import DragPan from '../../../src/ol/interaction/DragPan.js'; -import Feature from '../../../src/ol/Feature.js'; -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import ImageLayer from '../../../src/ol/layer/Image.js'; -import ImageState from '../../../src/ol/ImageState.js'; -import ImageStatic from '../../../src/ol/source/ImageStatic.js'; -import Interaction from '../../../src/ol/interaction/Interaction.js'; -import Map from '../../../src/ol/Map.js'; -import MapBrowserEvent from '../../../src/ol/MapBrowserEvent.js'; -import MapEvent from '../../../src/ol/MapEvent.js'; -import MouseWheelZoom from '../../../src/ol/interaction/MouseWheelZoom.js'; -import Overlay from '../../../src/ol/Overlay.js'; -import PinchZoom from '../../../src/ol/interaction/PinchZoom.js'; -import Select from '../../../src/ol/interaction/Select.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import TileLayerRenderer from '../../../src/ol/renderer/canvas/TileLayer.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {LineString, Point, Polygon} from '../../../src/ol/geom.js'; -import {TRUE} from '../../../src/ol/functions.js'; +import DoubleClickZoom from '../../../../src/ol/interaction/DoubleClickZoom.js'; +import DragPan from '../../../../src/ol/interaction/DragPan.js'; +import Feature from '../../../../src/ol/Feature.js'; +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import ImageState from '../../../../src/ol/ImageState.js'; +import ImageStatic from '../../../../src/ol/source/ImageStatic.js'; +import Interaction from '../../../../src/ol/interaction/Interaction.js'; +import Map from '../../../../src/ol/Map.js'; +import MapBrowserEvent from '../../../../src/ol/MapBrowserEvent.js'; +import MapEvent from '../../../../src/ol/MapEvent.js'; +import MouseWheelZoom from '../../../../src/ol/interaction/MouseWheelZoom.js'; +import Overlay from '../../../../src/ol/Overlay.js'; +import PinchZoom from '../../../../src/ol/interaction/PinchZoom.js'; +import Select from '../../../../src/ol/interaction/Select.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import TileLayerRenderer from '../../../../src/ol/renderer/canvas/TileLayer.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {LineString, Point, Polygon} from '../../../../src/ol/geom.js'; +import {TRUE} from '../../../../src/ol/functions.js'; import { clearUserProjection, fromLonLat, get as getProjection, transform, useGeographic, -} from '../../../src/ol/proj.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; -import {defaults as defaultInteractions} from '../../../src/ol/interaction.js'; -import {tile as tileStrategy} from '../../../src/ol/loadingstrategy.js'; +} from '../../../../src/ol/proj.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; +import {defaults as defaultInteractions} from '../../../../src/ol/interaction.js'; +import {tile as tileStrategy} from '../../../../src/ol/loadingstrategy.js'; describe('ol.Map', function () { describe('constructor', function () { diff --git a/test/spec/ol/math.test.js b/test/browser/spec/ol/math.test.js similarity index 99% rename from test/spec/ol/math.test.js rename to test/browser/spec/ol/math.test.js index 96a722f8bd..d1634fa1f9 100644 --- a/test/spec/ol/math.test.js +++ b/test/browser/spec/ol/math.test.js @@ -7,7 +7,7 @@ import { solveLinearSystem, toDegrees, toRadians, -} from '../../../src/ol/math.js'; +} from '../../../../src/ol/math.js'; describe('ol.math.clamp', function () { it('returns the correct value at -Infinity', function () { diff --git a/test/spec/ol/net.test.js b/test/browser/spec/ol/net.test.js similarity index 95% rename from test/spec/ol/net.test.js rename to test/browser/spec/ol/net.test.js index 20738f9a02..3276d482ef 100644 --- a/test/spec/ol/net.test.js +++ b/test/browser/spec/ol/net.test.js @@ -1,5 +1,5 @@ -import {getUid} from '../../../src/ol/util.js'; -import {jsonp as requestJSONP} from '../../../src/ol/net.js'; +import {getUid} from '../../../../src/ol/util.js'; +import {jsonp as requestJSONP} from '../../../../src/ol/net.js'; describe('ol.net', function () { describe('jsonp()', function () { diff --git a/test/spec/ol/object.test.js b/test/browser/spec/ol/object.test.js similarity index 98% rename from test/spec/ol/object.test.js rename to test/browser/spec/ol/object.test.js index b3529b27c2..f54429cf9b 100644 --- a/test/spec/ol/object.test.js +++ b/test/browser/spec/ol/object.test.js @@ -1,5 +1,5 @@ -import BaseObject from '../../../src/ol/Object.js'; -import {listen} from '../../../src/ol/events.js'; +import BaseObject from '../../../../src/ol/Object.js'; +import {listen} from '../../../../src/ol/events.js'; describe('ol.Object', function () { let o; diff --git a/test/spec/ol/objectutil.test.js b/test/browser/spec/ol/objectutil.test.js similarity index 96% rename from test/spec/ol/objectutil.test.js rename to test/browser/spec/ol/objectutil.test.js index 02c9dcf2a5..944333e3bc 100644 --- a/test/spec/ol/objectutil.test.js +++ b/test/browser/spec/ol/objectutil.test.js @@ -1,4 +1,4 @@ -import {assign, clear, getValues, isEmpty} from '../../../src/ol/obj.js'; +import {assign, clear, getValues, isEmpty} from '../../../../src/ol/obj.js'; describe('ol.obj.assign()', function () { it('is an alias for Object.assign() where available', function () { diff --git a/test/spec/ol/observable.test.js b/test/browser/spec/ol/observable.test.js similarity index 96% rename from test/spec/ol/observable.test.js rename to test/browser/spec/ol/observable.test.js index d92bdf46a9..73ea92a177 100644 --- a/test/spec/ol/observable.test.js +++ b/test/browser/spec/ol/observable.test.js @@ -1,5 +1,5 @@ -import EventTarget from '../../../src/ol/events/Target.js'; -import Observable, {unByKey} from '../../../src/ol/Observable.js'; +import EventTarget from '../../../../src/ol/events/Target.js'; +import Observable, {unByKey} from '../../../../src/ol/Observable.js'; describe('ol.Observable', function () { describe('constructor', function () { diff --git a/test/spec/ol/overlay.test.js b/test/browser/spec/ol/overlay.test.js similarity index 94% rename from test/spec/ol/overlay.test.js rename to test/browser/spec/ol/overlay.test.js index 9a3a80ba59..5633f94a90 100644 --- a/test/spec/ol/overlay.test.js +++ b/test/browser/spec/ol/overlay.test.js @@ -1,6 +1,6 @@ -import Map from '../../../src/ol/Map.js'; -import Overlay from '../../../src/ol/Overlay.js'; -import View from '../../../src/ol/View.js'; +import Map from '../../../../src/ol/Map.js'; +import Overlay from '../../../../src/ol/Overlay.js'; +import View from '../../../../src/ol/View.js'; describe('ol.Overlay', function () { let target, map; diff --git a/test/spec/ol/proj.test.js b/test/browser/spec/ol/proj.test.js similarity index 98% rename from test/spec/ol/proj.test.js rename to test/browser/spec/ol/proj.test.js index f1f78cbd53..b279845c1c 100644 --- a/test/spec/ol/proj.test.js +++ b/test/browser/spec/ol/proj.test.js @@ -1,6 +1,6 @@ -import Projection from '../../../src/ol/proj/Projection.js'; -import Units from '../../../src/ol/proj/Units.js'; -import {HALF_SIZE} from '../../../src/ol/proj/epsg3857.js'; +import Projection from '../../../../src/ol/proj/Projection.js'; +import Units from '../../../../src/ol/proj/Units.js'; +import {HALF_SIZE} from '../../../../src/ol/proj/epsg3857.js'; import { METERS_PER_UNIT, addCommon, @@ -22,9 +22,9 @@ import { transform, transformExtent, useGeographic, -} from '../../../src/ol/proj.js'; -import {METERS_PER_UNIT as metersPerDegree} from '../../../src/ol/proj/epsg4326.js'; -import {register} from '../../../src/ol/proj/proj4.js'; +} from '../../../../src/ol/proj.js'; +import {METERS_PER_UNIT as metersPerDegree} from '../../../../src/ol/proj/epsg4326.js'; +import {register} from '../../../../src/ol/proj/proj4.js'; describe('ol.proj', function () { afterEach(function () { diff --git a/test/spec/ol/proj/epsg3857.test.js b/test/browser/spec/ol/proj/epsg3857.test.js similarity index 97% rename from test/spec/ol/proj/epsg3857.test.js rename to test/browser/spec/ol/proj/epsg3857.test.js index 6baf18ff7d..3f6f047340 100644 --- a/test/spec/ol/proj/epsg3857.test.js +++ b/test/browser/spec/ol/proj/epsg3857.test.js @@ -2,14 +2,14 @@ import { HALF_SIZE, MAX_SAFE_Y, fromEPSG4326, -} from '../../../../src/ol/proj/epsg3857.js'; +} from '../../../../../src/ol/proj/epsg3857.js'; import { addCommon, clearAllProjections, getPointResolution, get as getProjection, transform, -} from '../../../../src/ol/proj.js'; +} from '../../../../../src/ol/proj.js'; describe('ol/proj/epsg3857', function () { afterEach(function () { diff --git a/test/spec/ol/proj/transforms.test.js b/test/browser/spec/ol/proj/transforms.test.js similarity index 83% rename from test/spec/ol/proj/transforms.test.js rename to test/browser/spec/ol/proj/transforms.test.js index 74cb245764..8f2cceb079 100644 --- a/test/spec/ol/proj/transforms.test.js +++ b/test/browser/spec/ol/proj/transforms.test.js @@ -1,5 +1,5 @@ -import * as transforms from '../../../../src/ol/proj/transforms.js'; -import Projection from '../../../../src/ol/proj/Projection.js'; +import * as transforms from '../../../../../src/ol/proj/transforms.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; describe('transforms.remove()', function () { const extent = [180, -90, 180, 90]; diff --git a/test/spec/ol/render.test.js b/test/browser/spec/ol/render.test.js similarity index 80% rename from test/spec/ol/render.test.js rename to test/browser/spec/ol/render.test.js index 4fd0bd9ec3..e72c24546a 100644 --- a/test/spec/ol/render.test.js +++ b/test/browser/spec/ol/render.test.js @@ -1,11 +1,11 @@ -import CanvasImmediateRenderer from '../../../src/ol/render/canvas/Immediate.js'; -import {DEVICE_PIXEL_RATIO} from '../../../src/ol/has.js'; +import CanvasImmediateRenderer from '../../../../src/ol/render/canvas/Immediate.js'; +import {DEVICE_PIXEL_RATIO} from '../../../../src/ol/has.js'; import { create as createTransform, scale as scaleTransform, -} from '../../../src/ol/transform.js'; -import {equals} from '../../../src/ol/array.js'; -import {toContext} from '../../../src/ol/render.js'; +} from '../../../../src/ol/transform.js'; +import {equals} from '../../../../src/ol/array.js'; +import {toContext} from '../../../../src/ol/render.js'; describe('ol.render', function () { describe('toContext', function () { diff --git a/test/spec/ol/render/box.test.js b/test/browser/spec/ol/render/box.test.js similarity index 88% rename from test/spec/ol/render/box.test.js rename to test/browser/spec/ol/render/box.test.js index 6e2481ed53..7a685c3649 100644 --- a/test/spec/ol/render/box.test.js +++ b/test/browser/spec/ol/render/box.test.js @@ -1,8 +1,8 @@ -import Disposable from '../../../../src/ol/Disposable.js'; -import Map from '../../../../src/ol/Map.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import RenderBox from '../../../../src/ol/render/Box.js'; -import View from '../../../../src/ol/View.js'; +import Disposable from '../../../../../src/ol/Disposable.js'; +import Map from '../../../../../src/ol/Map.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import RenderBox from '../../../../../src/ol/render/Box.js'; +import View from '../../../../../src/ol/View.js'; describe('ol.render.Box', function () { let box, map, target; diff --git a/test/spec/ol/render/canvas/executorgroup.test.js b/test/browser/spec/ol/render/canvas/executorgroup.test.js similarity index 96% rename from test/spec/ol/render/canvas/executorgroup.test.js rename to test/browser/spec/ol/render/canvas/executorgroup.test.js index 1c8e083865..e56dd1fda2 100644 --- a/test/spec/ol/render/canvas/executorgroup.test.js +++ b/test/browser/spec/ol/render/canvas/executorgroup.test.js @@ -1,4 +1,4 @@ -import {getPixelIndexArray} from '../../../../../src/ol/render/canvas/ExecutorGroup.js'; +import {getPixelIndexArray} from '../../../../../../src/ol/render/canvas/ExecutorGroup.js'; describe('ol.render.canvas.ExecutorGroup', function () { describe('#getPixelIndexArray', function () { diff --git a/test/spec/ol/render/canvas/hitdetect.test.js b/test/browser/spec/ol/render/canvas/hitdetect.test.js similarity index 88% rename from test/spec/ol/render/canvas/hitdetect.test.js rename to test/browser/spec/ol/render/canvas/hitdetect.test.js index 04395ba3b7..85de0c7106 100644 --- a/test/spec/ol/render/canvas/hitdetect.test.js +++ b/test/browser/spec/ol/render/canvas/hitdetect.test.js @@ -1,13 +1,13 @@ -import Circle from '../../../../../src/ol/style/Circle.js'; -import Feature from '../../../../../src/ol/Feature.js'; -import Point from '../../../../../src/ol/geom/Point.js'; -import {Style} from '../../../../../src/ol/style.js'; -import {create} from '../../../../../src/ol/transform.js'; -import {createCanvasContext2D} from '../../../../../src/ol/dom.js'; +import Circle from '../../../../../../src/ol/style/Circle.js'; +import Feature from '../../../../../../src/ol/Feature.js'; +import Point from '../../../../../../src/ol/geom/Point.js'; +import {Style} from '../../../../../../src/ol/style.js'; +import {create} from '../../../../../../src/ol/transform.js'; +import {createCanvasContext2D} from '../../../../../../src/ol/dom.js'; import { createHitDetectionImageData, hitDetect, -} from '../../../../../src/ol/render/canvas/hitdetect.js'; +} from '../../../../../../src/ol/render/canvas/hitdetect.js'; describe('hitdetect', function () { let features, styleFunction; diff --git a/test/spec/ol/render/canvas/immediate.test.js b/test/browser/spec/ol/render/canvas/immediate.test.js similarity index 91% rename from test/spec/ol/render/canvas/immediate.test.js rename to test/browser/spec/ol/render/canvas/immediate.test.js index aee616d7a0..9c3e254025 100644 --- a/test/spec/ol/render/canvas/immediate.test.js +++ b/test/browser/spec/ol/render/canvas/immediate.test.js @@ -1,18 +1,18 @@ -import CanvasImmediateRenderer from '../../../../../src/ol/render/canvas/Immediate.js'; -import Circle from '../../../../../src/ol/geom/Circle.js'; -import CircleStyle from '../../../../../src/ol/style/Circle.js'; -import Fill from '../../../../../src/ol/style/Fill.js'; -import GeometryCollection from '../../../../../src/ol/geom/GeometryCollection.js'; -import LineString from '../../../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../../../src/ol/style/Stroke.js'; -import Style from '../../../../../src/ol/style/Style.js'; -import Text from '../../../../../src/ol/style/Text.js'; -import VectorContext from '../../../../../src/ol/render/VectorContext.js'; +import CanvasImmediateRenderer from '../../../../../../src/ol/render/canvas/Immediate.js'; +import Circle from '../../../../../../src/ol/geom/Circle.js'; +import CircleStyle from '../../../../../../src/ol/style/Circle.js'; +import Fill from '../../../../../../src/ol/style/Fill.js'; +import GeometryCollection from '../../../../../../src/ol/geom/GeometryCollection.js'; +import LineString from '../../../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../../../src/ol/style/Stroke.js'; +import Style from '../../../../../../src/ol/style/Style.js'; +import Text from '../../../../../../src/ol/style/Text.js'; +import VectorContext from '../../../../../../src/ol/render/VectorContext.js'; describe('ol.render.canvas.Immediate', function () { function getMockContext() { diff --git a/test/spec/ol/render/canvas/index.test.js b/test/browser/spec/ol/render/canvas/index.test.js similarity index 98% rename from test/spec/ol/render/canvas/index.test.js rename to test/browser/spec/ol/render/canvas/index.test.js index 08483c480c..b0363a9fb6 100644 --- a/test/spec/ol/render/canvas/index.test.js +++ b/test/browser/spec/ol/render/canvas/index.test.js @@ -1,4 +1,4 @@ -import * as render from '../../../../../src/ol/render/canvas.js'; +import * as render from '../../../../../../src/ol/render/canvas.js'; describe('ol.render.canvas', function () { const font = document.createElement('link'); diff --git a/test/spec/ol/render/canvas/textbuilder.test.js b/test/browser/spec/ol/render/canvas/textbuilder.test.js similarity index 90% rename from test/spec/ol/render/canvas/textbuilder.test.js rename to test/browser/spec/ol/render/canvas/textbuilder.test.js index c306013224..a1a16253b9 100644 --- a/test/spec/ol/render/canvas/textbuilder.test.js +++ b/test/browser/spec/ol/render/canvas/textbuilder.test.js @@ -1,15 +1,15 @@ -import Circle from '../../../../../src/ol/geom/Circle.js'; -import Executor from '../../../../../src/ol/render/canvas/Executor.js'; -import Feature from '../../../../../src/ol/Feature.js'; -import LineString from '../../../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../../src/ol/geom/Polygon.js'; -import Text from '../../../../../src/ol/style/Text.js'; -import TextBuilder from '../../../../../src/ol/render/canvas/TextBuilder.js'; -import {create as createTransform} from '../../../../../src/ol/transform.js'; +import Circle from '../../../../../../src/ol/geom/Circle.js'; +import Executor from '../../../../../../src/ol/render/canvas/Executor.js'; +import Feature from '../../../../../../src/ol/Feature.js'; +import LineString from '../../../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../../src/ol/geom/Polygon.js'; +import Text from '../../../../../../src/ol/style/Text.js'; +import TextBuilder from '../../../../../../src/ol/render/canvas/TextBuilder.js'; +import {create as createTransform} from '../../../../../../src/ol/transform.js'; function createBuilder() { return new TextBuilder(1, [-180, -90, 180, 90], 0.02, 1, true); diff --git a/test/spec/ol/render/feature.test.js b/test/browser/spec/ol/render/feature.test.js similarity index 95% rename from test/spec/ol/render/feature.test.js rename to test/browser/spec/ol/render/feature.test.js index 46564926e0..7d0338f270 100644 --- a/test/spec/ol/render/feature.test.js +++ b/test/browser/spec/ol/render/feature.test.js @@ -1,8 +1,8 @@ -import LineString from '../../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import RenderFeature from '../../../../src/ol/render/Feature.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import RenderFeature from '../../../../../src/ol/render/Feature.js'; describe('ol.render.Feature', function () { const type = 'Point'; diff --git a/test/spec/ol/renderer/canvas/builder.test.js b/test/browser/spec/ol/renderer/canvas/builder.test.js similarity index 93% rename from test/spec/ol/renderer/canvas/builder.test.js rename to test/browser/spec/ol/renderer/canvas/builder.test.js index 400e3fafae..a741d531c6 100644 --- a/test/spec/ol/renderer/canvas/builder.test.js +++ b/test/browser/spec/ol/renderer/canvas/builder.test.js @@ -1,24 +1,24 @@ -import BuilderGroup from '../../../../../src/ol/render/canvas/BuilderGroup.js'; -import CanvasBuilder from '../../../../../src/ol/render/canvas/Builder.js'; -import CanvasLineStringBuilder from '../../../../../src/ol/render/canvas/LineStringBuilder.js'; -import CanvasPolygonBuilder from '../../../../../src/ol/render/canvas/PolygonBuilder.js'; -import ExecutorGroup from '../../../../../src/ol/render/canvas/ExecutorGroup.js'; -import Feature from '../../../../../src/ol/Feature.js'; -import Fill from '../../../../../src/ol/style/Fill.js'; -import GeometryCollection from '../../../../../src/ol/geom/GeometryCollection.js'; -import LineString from '../../../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../../../src/ol/style/Stroke.js'; -import Style from '../../../../../src/ol/style/Style.js'; +import BuilderGroup from '../../../../../../src/ol/render/canvas/BuilderGroup.js'; +import CanvasBuilder from '../../../../../../src/ol/render/canvas/Builder.js'; +import CanvasLineStringBuilder from '../../../../../../src/ol/render/canvas/LineStringBuilder.js'; +import CanvasPolygonBuilder from '../../../../../../src/ol/render/canvas/PolygonBuilder.js'; +import ExecutorGroup from '../../../../../../src/ol/render/canvas/ExecutorGroup.js'; +import Feature from '../../../../../../src/ol/Feature.js'; +import Fill from '../../../../../../src/ol/style/Fill.js'; +import GeometryCollection from '../../../../../../src/ol/geom/GeometryCollection.js'; +import LineString from '../../../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../../../src/ol/style/Stroke.js'; +import Style from '../../../../../../src/ol/style/Style.js'; import { create as createTransform, scale as scaleTransform, -} from '../../../../../src/ol/transform.js'; -import {renderFeature} from '../../../../../src/ol/renderer/vector.js'; +} from '../../../../../../src/ol/transform.js'; +import {renderFeature} from '../../../../../../src/ol/renderer/vector.js'; describe('ol.render.canvas.BuilderGroup', function () { describe('#replay', function () { diff --git a/test/spec/ol/renderer/canvas/imagelayer.test.js b/test/browser/spec/ol/renderer/canvas/imagelayer.test.js similarity index 93% rename from test/spec/ol/renderer/canvas/imagelayer.test.js rename to test/browser/spec/ol/renderer/canvas/imagelayer.test.js index 0ef505725a..4b2c092c0b 100644 --- a/test/spec/ol/renderer/canvas/imagelayer.test.js +++ b/test/browser/spec/ol/renderer/canvas/imagelayer.test.js @@ -1,13 +1,13 @@ -import Feature from '../../../../../src/ol/Feature.js'; -import ImageLayer from '../../../../../src/ol/layer/Image.js'; -import Map from '../../../../../src/ol/Map.js'; -import Point from '../../../../../src/ol/geom/Point.js'; -import Projection from '../../../../../src/ol/proj/Projection.js'; -import Static from '../../../../../src/ol/source/ImageStatic.js'; -import VectorImageLayer from '../../../../../src/ol/layer/VectorImage.js'; -import VectorSource from '../../../../../src/ol/source/Vector.js'; -import View from '../../../../../src/ol/View.js'; -import {get as getProj} from '../../../../../src/ol/proj.js'; +import Feature from '../../../../../../src/ol/Feature.js'; +import ImageLayer from '../../../../../../src/ol/layer/Image.js'; +import Map from '../../../../../../src/ol/Map.js'; +import Point from '../../../../../../src/ol/geom/Point.js'; +import Projection from '../../../../../../src/ol/proj/Projection.js'; +import Static from '../../../../../../src/ol/source/ImageStatic.js'; +import VectorImageLayer from '../../../../../../src/ol/layer/VectorImage.js'; +import VectorSource from '../../../../../../src/ol/source/Vector.js'; +import View from '../../../../../../src/ol/View.js'; +import {get as getProj} from '../../../../../../src/ol/proj.js'; describe('ol.renderer.canvas.ImageLayer', function () { describe('#forEachLayerAtCoordinate', function () { diff --git a/test/spec/ol/renderer/canvas/tilelayer.test.js b/test/browser/spec/ol/renderer/canvas/tilelayer.test.js similarity index 85% rename from test/spec/ol/renderer/canvas/tilelayer.test.js rename to test/browser/spec/ol/renderer/canvas/tilelayer.test.js index 6d7b37d0a0..bc8655241d 100644 --- a/test/spec/ol/renderer/canvas/tilelayer.test.js +++ b/test/browser/spec/ol/renderer/canvas/tilelayer.test.js @@ -1,9 +1,9 @@ -import Map from '../../../../../src/ol/Map.js'; -import TileLayer from '../../../../../src/ol/layer/Tile.js'; -import TileWMS from '../../../../../src/ol/source/TileWMS.js'; -import View from '../../../../../src/ol/View.js'; -import XYZ from '../../../../../src/ol/source/XYZ.js'; -import {fromLonLat} from '../../../../../src/ol/proj.js'; +import Map from '../../../../../../src/ol/Map.js'; +import TileLayer from '../../../../../../src/ol/layer/Tile.js'; +import TileWMS from '../../../../../../src/ol/source/TileWMS.js'; +import View from '../../../../../../src/ol/View.js'; +import XYZ from '../../../../../../src/ol/source/XYZ.js'; +import {fromLonLat} from '../../../../../../src/ol/proj.js'; describe('ol.renderer.canvas.TileLayer', function () { describe('#prepareFrame', function () { @@ -61,7 +61,7 @@ describe('ol.renderer.canvas.TileLayer', function () { layer = new TileLayer({ source: new XYZ({ cacheSize: 1, - url: 'rendering/ol/data/tiles/osm/{z}/{x}/{y}.png', + url: 'bogus-url/{z}/{x}/{y}.png', }), }); map = new Map({ diff --git a/test/spec/ol/renderer/canvas/vectorimage.test.js b/test/browser/spec/ol/renderer/canvas/vectorimage.test.js similarity index 76% rename from test/spec/ol/renderer/canvas/vectorimage.test.js rename to test/browser/spec/ol/renderer/canvas/vectorimage.test.js index eb62163603..23d58df237 100644 --- a/test/spec/ol/renderer/canvas/vectorimage.test.js +++ b/test/browser/spec/ol/renderer/canvas/vectorimage.test.js @@ -1,9 +1,9 @@ -import CanvasVectorImageLayerRenderer from '../../../../../src/ol/renderer/canvas/VectorImageLayer.js'; -import VectorImageLayer from '../../../../../src/ol/layer/VectorImage.js'; -import VectorSource from '../../../../../src/ol/source/Vector.js'; -import {create} from '../../../../../src/ol/transform.js'; -import {get as getProjection} from '../../../../../src/ol/proj.js'; -import {scaleFromCenter} from '../../../../../src/ol/extent.js'; +import CanvasVectorImageLayerRenderer from '../../../../../../src/ol/renderer/canvas/VectorImageLayer.js'; +import VectorImageLayer from '../../../../../../src/ol/layer/VectorImage.js'; +import VectorSource from '../../../../../../src/ol/source/Vector.js'; +import {create} from '../../../../../../src/ol/transform.js'; +import {get as getProjection} from '../../../../../../src/ol/proj.js'; +import {scaleFromCenter} from '../../../../../../src/ol/extent.js'; describe('ol/renderer/canvas/VectorImageLayer', function () { describe('#dispose()', function () { diff --git a/test/spec/ol/renderer/canvas/vectorlayer.test.js b/test/browser/spec/ol/renderer/canvas/vectorlayer.test.js similarity index 94% rename from test/spec/ol/renderer/canvas/vectorlayer.test.js rename to test/browser/spec/ol/renderer/canvas/vectorlayer.test.js index a951d8a7a7..ab78a19d45 100644 --- a/test/spec/ol/renderer/canvas/vectorlayer.test.js +++ b/test/browser/spec/ol/renderer/canvas/vectorlayer.test.js @@ -1,25 +1,25 @@ -import CanvasVectorLayerRenderer from '../../../../../src/ol/renderer/canvas/VectorLayer.js'; -import Circle from '../../../../../src/ol/geom/Circle.js'; -import CircleStyle from '../../../../../src/ol/style/Circle.js'; -import Feature from '../../../../../src/ol/Feature.js'; -import Fill from '../../../../../src/ol/style/Fill.js'; -import Map from '../../../../../src/ol/Map.js'; -import Point from '../../../../../src/ol/geom/Point.js'; -import Stroke from '../../../../../src/ol/style/Stroke.js'; -import Style from '../../../../../src/ol/style/Style.js'; -import Text from '../../../../../src/ol/style/Text.js'; -import VectorLayer from '../../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../../src/ol/source/Vector.js'; -import View from '../../../../../src/ol/View.js'; -import {bbox as bboxStrategy} from '../../../../../src/ol/loadingstrategy.js'; +import CanvasVectorLayerRenderer from '../../../../../../src/ol/renderer/canvas/VectorLayer.js'; +import Circle from '../../../../../../src/ol/geom/Circle.js'; +import CircleStyle from '../../../../../../src/ol/style/Circle.js'; +import Feature from '../../../../../../src/ol/Feature.js'; +import Fill from '../../../../../../src/ol/style/Fill.js'; +import Map from '../../../../../../src/ol/Map.js'; +import Point from '../../../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../../../src/ol/style/Stroke.js'; +import Style from '../../../../../../src/ol/style/Style.js'; +import Text from '../../../../../../src/ol/style/Text.js'; +import VectorLayer from '../../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../../src/ol/source/Vector.js'; +import View from '../../../../../../src/ol/View.js'; +import {bbox as bboxStrategy} from '../../../../../../src/ol/loadingstrategy.js'; import { buffer as bufferExtent, getCenter, getWidth, -} from '../../../../../src/ol/extent.js'; -import {checkedFonts} from '../../../../../src/ol/render/canvas.js'; -import {fromExtent} from '../../../../../src/ol/geom/Polygon.js'; -import {get as getProjection} from '../../../../../src/ol/proj.js'; +} from '../../../../../../src/ol/extent.js'; +import {checkedFonts} from '../../../../../../src/ol/render/canvas.js'; +import {fromExtent} from '../../../../../../src/ol/geom/Polygon.js'; +import {get as getProjection} from '../../../../../../src/ol/proj.js'; describe('ol.renderer.canvas.VectorLayer', function () { describe('constructor', function () { diff --git a/test/spec/ol/renderer/canvas/vectortilelayer.test.js b/test/browser/spec/ol/renderer/canvas/vectortilelayer.test.js similarity index 88% rename from test/spec/ol/renderer/canvas/vectortilelayer.test.js rename to test/browser/spec/ol/renderer/canvas/vectortilelayer.test.js index ef37096906..fefb991827 100644 --- a/test/spec/ol/renderer/canvas/vectortilelayer.test.js +++ b/test/browser/spec/ol/renderer/canvas/vectortilelayer.test.js @@ -1,26 +1,26 @@ -import CanvasVectorTileLayerRenderer from '../../../../../src/ol/renderer/canvas/VectorTileLayer.js'; -import Feature from '../../../../../src/ol/Feature.js'; -import MVT from '../../../../../src/ol/format/MVT.js'; -import Map from '../../../../../src/ol/Map.js'; -import Point from '../../../../../src/ol/geom/Point.js'; -import RenderFeature from '../../../../../src/ol/render/Feature.js'; -import Style from '../../../../../src/ol/style/Style.js'; -import Text from '../../../../../src/ol/style/Text.js'; -import TileLayer from '../../../../../src/ol/layer/Tile.js'; -import TileState from '../../../../../src/ol/TileState.js'; -import VectorRenderTile from '../../../../../src/ol/VectorRenderTile.js'; -import VectorTile from '../../../../../src/ol/VectorTile.js'; -import VectorTileLayer from '../../../../../src/ol/layer/VectorTile.js'; -import VectorTileRenderType from '../../../../../src/ol/layer/VectorTileRenderType.js'; -import VectorTileSource from '../../../../../src/ol/source/VectorTile.js'; -import View from '../../../../../src/ol/View.js'; -import XYZ from '../../../../../src/ol/source/XYZ.js'; -import {checkedFonts} from '../../../../../src/ol/render/canvas.js'; -import {create} from '../../../../../src/ol/transform.js'; -import {createXYZ} from '../../../../../src/ol/tilegrid.js'; -import {getCenter} from '../../../../../src/ol/extent.js'; -import {get as getProjection} from '../../../../../src/ol/proj.js'; -import {getUid} from '../../../../../src/ol/util.js'; +import CanvasVectorTileLayerRenderer from '../../../../../../src/ol/renderer/canvas/VectorTileLayer.js'; +import Feature from '../../../../../../src/ol/Feature.js'; +import MVT from '../../../../../../src/ol/format/MVT.js'; +import Map from '../../../../../../src/ol/Map.js'; +import Point from '../../../../../../src/ol/geom/Point.js'; +import RenderFeature from '../../../../../../src/ol/render/Feature.js'; +import Style from '../../../../../../src/ol/style/Style.js'; +import Text from '../../../../../../src/ol/style/Text.js'; +import TileLayer from '../../../../../../src/ol/layer/Tile.js'; +import TileState from '../../../../../../src/ol/TileState.js'; +import VectorRenderTile from '../../../../../../src/ol/VectorRenderTile.js'; +import VectorTile from '../../../../../../src/ol/VectorTile.js'; +import VectorTileLayer from '../../../../../../src/ol/layer/VectorTile.js'; +import VectorTileRenderType from '../../../../../../src/ol/layer/VectorTileRenderType.js'; +import VectorTileSource from '../../../../../../src/ol/source/VectorTile.js'; +import View from '../../../../../../src/ol/View.js'; +import XYZ from '../../../../../../src/ol/source/XYZ.js'; +import {checkedFonts} from '../../../../../../src/ol/render/canvas.js'; +import {create} from '../../../../../../src/ol/transform.js'; +import {createXYZ} from '../../../../../../src/ol/tilegrid.js'; +import {getCenter} from '../../../../../../src/ol/extent.js'; +import {get as getProjection} from '../../../../../../src/ol/proj.js'; +import {getUid} from '../../../../../../src/ol/util.js'; describe('ol.renderer.canvas.VectorTileLayer', function () { describe('constructor', function () { diff --git a/test/spec/ol/renderer/layer.test.js b/test/browser/spec/ol/renderer/layer.test.js similarity index 88% rename from test/spec/ol/renderer/layer.test.js rename to test/browser/spec/ol/renderer/layer.test.js index ed028b6f8d..44ed7d2950 100644 --- a/test/spec/ol/renderer/layer.test.js +++ b/test/browser/spec/ol/renderer/layer.test.js @@ -1,11 +1,11 @@ -import ImageWrapper from '../../../../src/ol/Image.js'; -import Layer from '../../../../src/ol/layer/Layer.js'; -import LayerRenderer from '../../../../src/ol/renderer/Layer.js'; -import Map from '../../../../src/ol/Map.js'; -import TileLayer from '../../../../src/ol/layer/Tile.js'; -import View from '../../../../src/ol/View.js'; -import XYZ from '../../../../src/ol/source/XYZ.js'; -import {fromKey} from '../../../../src/ol/tilecoord.js'; +import ImageWrapper from '../../../../../src/ol/Image.js'; +import Layer from '../../../../../src/ol/layer/Layer.js'; +import LayerRenderer from '../../../../../src/ol/renderer/Layer.js'; +import Map from '../../../../../src/ol/Map.js'; +import TileLayer from '../../../../../src/ol/layer/Tile.js'; +import View from '../../../../../src/ol/View.js'; +import XYZ from '../../../../../src/ol/source/XYZ.js'; +import {fromKey} from '../../../../../src/ol/tilecoord.js'; describe('ol.renderer.Layer', function () { let renderer; diff --git a/test/spec/ol/renderer/map.test.js b/test/browser/spec/ol/renderer/map.test.js similarity index 89% rename from test/spec/ol/renderer/map.test.js rename to test/browser/spec/ol/renderer/map.test.js index 9c57b3feee..380bb29874 100644 --- a/test/spec/ol/renderer/map.test.js +++ b/test/browser/spec/ol/renderer/map.test.js @@ -1,19 +1,19 @@ -import Disposable from '../../../../src/ol/Disposable.js'; -import Feature from '../../../../src/ol/Feature.js'; -import Map from '../../../../src/ol/Map.js'; -import MapRenderer from '../../../../src/ol/renderer/Map.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; -import {Circle, Fill, Stroke, Style} from '../../../../src/ol/style.js'; +import Disposable from '../../../../../src/ol/Disposable.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import Map from '../../../../../src/ol/Map.js'; +import MapRenderer from '../../../../../src/ol/renderer/Map.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; +import {Circle, Fill, Stroke, Style} from '../../../../../src/ol/style.js'; import { GeometryCollection, LineString, MultiPoint, Point, -} from '../../../../src/ol/geom.js'; -import {Projection} from '../../../../src/ol/proj.js'; -import {fromExtent} from '../../../../src/ol/geom/Polygon.js'; +} from '../../../../../src/ol/geom.js'; +import {Projection} from '../../../../../src/ol/proj.js'; +import {fromExtent} from '../../../../../src/ol/geom/Polygon.js'; describe('ol.renderer.Map', function () { describe('constructor', function () { diff --git a/test/spec/ol/renderer/vector.test.js b/test/browser/spec/ol/renderer/vector.test.js similarity index 87% rename from test/spec/ol/renderer/vector.test.js rename to test/browser/spec/ol/renderer/vector.test.js index f0e894a2f4..6b1cc6218f 100644 --- a/test/spec/ol/renderer/vector.test.js +++ b/test/browser/spec/ol/renderer/vector.test.js @@ -1,17 +1,17 @@ -import CanvasBuilderGroup from '../../../../src/ol/render/canvas/BuilderGroup.js'; -import Feature from '../../../../src/ol/Feature.js'; -import Fill from '../../../../src/ol/style/Fill.js'; -import Icon from '../../../../src/ol/style/Icon.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; -import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../../src/ol/style/Stroke.js'; -import Style from '../../../../src/ol/style/Style.js'; -import {VOID} from '../../../../src/ol/functions.js'; -import {renderFeature} from '../../../../src/ol/renderer/vector.js'; +import CanvasBuilderGroup from '../../../../../src/ol/render/canvas/BuilderGroup.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import Fill from '../../../../../src/ol/style/Fill.js'; +import Icon from '../../../../../src/ol/style/Icon.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js'; +import MultiPolygon from '../../../../../src/ol/geom/MultiPolygon.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../../src/ol/style/Stroke.js'; +import Style from '../../../../../src/ol/style/Style.js'; +import {VOID} from '../../../../../src/ol/functions.js'; +import {renderFeature} from '../../../../../src/ol/renderer/vector.js'; describe('ol.renderer.vector', function () { describe('#renderFeature', function () { diff --git a/test/spec/ol/renderer/webgl/layer.test.js b/test/browser/spec/ol/renderer/webgl/layer.test.js similarity index 98% rename from test/spec/ol/renderer/webgl/layer.test.js rename to test/browser/spec/ol/renderer/webgl/layer.test.js index fc682de668..1828b96d52 100644 --- a/test/spec/ol/renderer/webgl/layer.test.js +++ b/test/browser/spec/ol/renderer/webgl/layer.test.js @@ -1,10 +1,10 @@ -import Layer from '../../../../../src/ol/layer/Layer.js'; +import Layer from '../../../../../../src/ol/layer/Layer.js'; import WebGLLayerRenderer, { colorDecodeId, colorEncodeId, getBlankImageData, writePointFeatureToBuffers, -} from '../../../../../src/ol/renderer/webgl/Layer.js'; +} from '../../../../../../src/ol/renderer/webgl/Layer.js'; describe('ol.renderer.webgl.Layer', function () { describe('constructor', function () { diff --git a/test/spec/ol/renderer/webgl/pointslayer.test.js b/test/browser/spec/ol/renderer/webgl/pointslayer.test.js similarity index 96% rename from test/spec/ol/renderer/webgl/pointslayer.test.js rename to test/browser/spec/ol/renderer/webgl/pointslayer.test.js index b44d60cff6..44cbbbc538 100644 --- a/test/spec/ol/renderer/webgl/pointslayer.test.js +++ b/test/browser/spec/ol/renderer/webgl/pointslayer.test.js @@ -1,18 +1,18 @@ -import Feature from '../../../../../src/ol/Feature.js'; -import GeoJSON from '../../../../../src/ol/format/GeoJSON.js'; -import Point from '../../../../../src/ol/geom/Point.js'; -import VectorLayer from '../../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../../src/ol/source/Vector.js'; -import ViewHint from '../../../../../src/ol/ViewHint.js'; -import WebGLPointsLayer from '../../../../../src/ol/layer/WebGLPoints.js'; -import WebGLPointsLayerRenderer from '../../../../../src/ol/renderer/webgl/PointsLayer.js'; -import {WebGLWorkerMessageType} from '../../../../../src/ol/renderer/webgl/Layer.js'; +import Feature from '../../../../../../src/ol/Feature.js'; +import GeoJSON from '../../../../../../src/ol/format/GeoJSON.js'; +import Point from '../../../../../../src/ol/geom/Point.js'; +import VectorLayer from '../../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../../src/ol/source/Vector.js'; +import ViewHint from '../../../../../../src/ol/ViewHint.js'; +import WebGLPointsLayer from '../../../../../../src/ol/layer/WebGLPoints.js'; +import WebGLPointsLayerRenderer from '../../../../../../src/ol/renderer/webgl/PointsLayer.js'; +import {WebGLWorkerMessageType} from '../../../../../../src/ol/renderer/webgl/Layer.js'; import { compose as composeTransform, create as createTransform, -} from '../../../../../src/ol/transform.js'; -import {get as getProjection} from '../../../../../src/ol/proj.js'; -import {getUid} from '../../../../../src/ol/util.js'; +} from '../../../../../../src/ol/transform.js'; +import {get as getProjection} from '../../../../../../src/ol/proj.js'; +import {getUid} from '../../../../../../src/ol/util.js'; const baseFrameState = { viewHints: [], diff --git a/test/spec/ol/reproj/image.test.js b/test/browser/spec/ol/reproj/image.test.js similarity index 92% rename from test/spec/ol/reproj/image.test.js rename to test/browser/spec/ol/reproj/image.test.js index 24e84842ad..f777626da5 100644 --- a/test/spec/ol/reproj/image.test.js +++ b/test/browser/spec/ol/reproj/image.test.js @@ -1,7 +1,7 @@ -import ImageWrapper from '../../../../src/ol/Image.js'; -import ReprojImage from '../../../../src/ol/reproj/Image.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; -import {listen} from '../../../../src/ol/events.js'; +import ImageWrapper from '../../../../../src/ol/Image.js'; +import ReprojImage from '../../../../../src/ol/reproj/Image.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; +import {listen} from '../../../../../src/ol/events.js'; describe('ol.reproj.Image', function () { function createImage(pixelRatio) { diff --git a/test/spec/ol/reproj/reproj.test.js b/test/browser/spec/ol/reproj/reproj.test.js similarity index 90% rename from test/spec/ol/reproj/reproj.test.js rename to test/browser/spec/ol/reproj/reproj.test.js index 1cc059f367..7579dc1a81 100644 --- a/test/spec/ol/reproj/reproj.test.js +++ b/test/browser/spec/ol/reproj/reproj.test.js @@ -1,5 +1,5 @@ -import {calculateSourceResolution} from '../../../../src/ol/reproj.js'; -import {get as getProjection, transform} from '../../../../src/ol/proj.js'; +import {calculateSourceResolution} from '../../../../../src/ol/reproj.js'; +import {get as getProjection, transform} from '../../../../../src/ol/proj.js'; describe('ol.reproj', function () { describe('#calculateSourceResolution', function () { diff --git a/test/spec/ol/reproj/tile.test.js b/test/browser/spec/ol/reproj/tile.test.js similarity index 90% rename from test/spec/ol/reproj/tile.test.js rename to test/browser/spec/ol/reproj/tile.test.js index 7260153e47..bd0f9a01ea 100644 --- a/test/spec/ol/reproj/tile.test.js +++ b/test/browser/spec/ol/reproj/tile.test.js @@ -1,13 +1,13 @@ -import ImageTile from '../../../../src/ol/ImageTile.js'; -import ReprojTile from '../../../../src/ol/reproj/Tile.js'; +import ImageTile from '../../../../../src/ol/ImageTile.js'; +import ReprojTile from '../../../../../src/ol/reproj/Tile.js'; import { addCommon, clearAllProjections, get as getProjection, -} from '../../../../src/ol/proj.js'; -import {createForProjection} from '../../../../src/ol/tilegrid.js'; -import {listen} from '../../../../src/ol/events.js'; -import {register} from '../../../../src/ol/proj/proj4.js'; +} from '../../../../../src/ol/proj.js'; +import {createForProjection} from '../../../../../src/ol/tilegrid.js'; +import {listen} from '../../../../../src/ol/events.js'; +import {register} from '../../../../../src/ol/proj/proj4.js'; describe('ol.reproj.Tile', function () { beforeEach(function () { diff --git a/test/spec/ol/reproj/triangulation.test.js b/test/browser/spec/ol/reproj/triangulation.test.js similarity index 90% rename from test/spec/ol/reproj/triangulation.test.js rename to test/browser/spec/ol/reproj/triangulation.test.js index 4bc101207d..4884337271 100644 --- a/test/spec/ol/reproj/triangulation.test.js +++ b/test/browser/spec/ol/reproj/triangulation.test.js @@ -1,10 +1,10 @@ -import Triangulation from '../../../../src/ol/reproj/Triangulation.js'; +import Triangulation from '../../../../../src/ol/reproj/Triangulation.js'; import { addCommon, clearAllProjections, get as getProjection, -} from '../../../../src/ol/proj.js'; -import {register} from '../../../../src/ol/proj/proj4.js'; +} from '../../../../../src/ol/proj.js'; +import {register} from '../../../../../src/ol/proj/proj4.js'; describe('ol.reproj.Triangulation', function () { beforeEach(function () { diff --git a/test/spec/ol/resolutionconstraint.test.js b/test/browser/spec/ol/resolutionconstraint.test.js similarity index 99% rename from test/spec/ol/resolutionconstraint.test.js rename to test/browser/spec/ol/resolutionconstraint.test.js index 1dd4c4bc58..8677778bb1 100644 --- a/test/spec/ol/resolutionconstraint.test.js +++ b/test/browser/spec/ol/resolutionconstraint.test.js @@ -1,8 +1,8 @@ -import {createMinMaxResolution} from '../../../src/ol/resolutionconstraint.js'; +import {createMinMaxResolution} from '../../../../src/ol/resolutionconstraint.js'; import { createSnapToPower, createSnapToResolutions, -} from '../../../src/ol/resolutionconstraint.js'; +} from '../../../../src/ol/resolutionconstraint.js'; describe('ol.resolutionconstraint', function () { describe('SnapToResolution', function () { diff --git a/test/spec/ol/rotationconstraint.test.js b/test/browser/spec/ol/rotationconstraint.test.js similarity index 89% rename from test/spec/ol/rotationconstraint.test.js rename to test/browser/spec/ol/rotationconstraint.test.js index 3c34bfd589..071dbce6ab 100644 --- a/test/spec/ol/rotationconstraint.test.js +++ b/test/browser/spec/ol/rotationconstraint.test.js @@ -1,4 +1,4 @@ -import {createSnapToZero} from '../../../src/ol/rotationconstraint.js'; +import {createSnapToZero} from '../../../../src/ol/rotationconstraint.js'; describe('ol.rotationconstraint', function () { describe('SnapToZero', function () { diff --git a/test/spec/ol/size.test.js b/test/browser/spec/ol/size.test.js similarity index 98% rename from test/spec/ol/size.test.js rename to test/browser/spec/ol/size.test.js index a6893ce43f..5340e4eaaf 100644 --- a/test/spec/ol/size.test.js +++ b/test/browser/spec/ol/size.test.js @@ -3,7 +3,7 @@ import { hasArea, scale as scaleSize, toSize, -} from '../../../src/ol/size.js'; +} from '../../../../src/ol/size.js'; describe('ol.size', function () { describe('buffer()', function () { diff --git a/test/spec/ol/source/bingmaps.test.js b/test/browser/spec/ol/source/bingmaps.test.js similarity index 95% rename from test/spec/ol/source/bingmaps.test.js rename to test/browser/spec/ol/source/bingmaps.test.js index a02af3e18b..951699ec80 100644 --- a/test/spec/ol/source/bingmaps.test.js +++ b/test/browser/spec/ol/source/bingmaps.test.js @@ -1,5 +1,5 @@ -import BingMaps, {quadKey} from '../../../../src/ol/source/BingMaps.js'; -import {unByKey} from '../../../../src/ol/Observable.js'; +import BingMaps, {quadKey} from '../../../../../src/ol/source/BingMaps.js'; +import {unByKey} from '../../../../../src/ol/Observable.js'; describe('ol.source.BingMaps', function () { describe('quadKey()', function () { diff --git a/test/spec/ol/source/cartodb.test.js b/test/browser/spec/ol/source/cartodb.test.js similarity index 73% rename from test/spec/ol/source/cartodb.test.js rename to test/browser/spec/ol/source/cartodb.test.js index 844e23a7db..d677444a50 100644 --- a/test/spec/ol/source/cartodb.test.js +++ b/test/browser/spec/ol/source/cartodb.test.js @@ -1,5 +1,5 @@ -import CartoDB from '../../../../src/ol/source/CartoDB.js'; -import XYZ from '../../../../src/ol/source/XYZ.js'; +import CartoDB from '../../../../../src/ol/source/CartoDB.js'; +import XYZ from '../../../../../src/ol/source/XYZ.js'; describe('ol.source.CartoDB', function () { describe('constructor', function () { diff --git a/test/spec/ol/source/cluster.test.js b/test/browser/spec/ol/source/cluster.test.js similarity index 85% rename from test/spec/ol/source/cluster.test.js rename to test/browser/spec/ol/source/cluster.test.js index ce2fd15762..3b11e384eb 100644 --- a/test/spec/ol/source/cluster.test.js +++ b/test/browser/spec/ol/source/cluster.test.js @@ -1,12 +1,12 @@ -import Cluster from '../../../../src/ol/source/Cluster.js'; -import EventType from '../../../../src/ol/events/EventType.js'; -import Feature from '../../../../src/ol/Feature.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Polygon from '../../../../src/ol/geom/Polygon.js'; -import Source from '../../../../src/ol/source/Source.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import Cluster from '../../../../../src/ol/source/Cluster.js'; +import EventType from '../../../../../src/ol/events/EventType.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../../src/ol/geom/Polygon.js'; +import Source from '../../../../../src/ol/source/Source.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.Cluster', function () { describe('constructor', function () { diff --git a/test/spec/ol/source/iiif.test.js b/test/browser/spec/ol/source/iiif.test.js similarity index 98% rename from test/spec/ol/source/iiif.test.js rename to test/browser/spec/ol/source/iiif.test.js index ce23e7b8fe..46ea8bee20 100644 --- a/test/spec/ol/source/iiif.test.js +++ b/test/browser/spec/ol/source/iiif.test.js @@ -1,6 +1,6 @@ -import IIIF from '../../../../src/ol/source/IIIF.js'; -import {DEFAULT_TILE_SIZE} from '../../../../src/ol/tilegrid/common.js'; -import {Versions} from '../../../../src/ol/format/IIIFInfo.js'; +import IIIF from '../../../../../src/ol/source/IIIF.js'; +import {DEFAULT_TILE_SIZE} from '../../../../../src/ol/tilegrid/common.js'; +import {Versions} from '../../../../../src/ol/format/IIIFInfo.js'; describe('ol.source.IIIF', function () { const width = 2000, diff --git a/test/spec/ol/source/imagearcgisrest.test.js b/test/browser/spec/ol/source/imagearcgisrest.test.js similarity index 97% rename from test/spec/ol/source/imagearcgisrest.test.js rename to test/browser/spec/ol/source/imagearcgisrest.test.js index 6103945df7..6a356e1f32 100644 --- a/test/spec/ol/source/imagearcgisrest.test.js +++ b/test/browser/spec/ol/source/imagearcgisrest.test.js @@ -1,5 +1,5 @@ -import ImageArcGISRest from '../../../../src/ol/source/ImageArcGISRest.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import ImageArcGISRest from '../../../../../src/ol/source/ImageArcGISRest.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.ImageArcGISRest', function () { let pixelRatio, options, projection, proj3857, resolution; diff --git a/test/spec/ol/source/images/12-655-1583.png b/test/browser/spec/ol/source/images/12-655-1583.png similarity index 100% rename from test/spec/ol/source/images/12-655-1583.png rename to test/browser/spec/ol/source/images/12-655-1583.png diff --git a/test/spec/ol/source/images/zoomify/TileGroup0/0-0-0.jpg b/test/browser/spec/ol/source/images/zoomify/TileGroup0/0-0-0.jpg similarity index 100% rename from test/spec/ol/source/images/zoomify/TileGroup0/0-0-0.jpg rename to test/browser/spec/ol/source/images/zoomify/TileGroup0/0-0-0.jpg diff --git a/test/spec/ol/source/imagestatic.test.js b/test/browser/spec/ol/source/imagestatic.test.js similarity index 94% rename from test/spec/ol/source/imagestatic.test.js rename to test/browser/spec/ol/source/imagestatic.test.js index 4c6977f826..c705800885 100644 --- a/test/spec/ol/source/imagestatic.test.js +++ b/test/browser/spec/ol/source/imagestatic.test.js @@ -1,5 +1,5 @@ -import Static from '../../../../src/ol/source/ImageStatic.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import Static from '../../../../../src/ol/source/ImageStatic.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.ImageStatic', function () { let extent, pixelRatio, projection, resolution; diff --git a/test/spec/ol/source/imagewms.test.js b/test/browser/spec/ol/source/imagewms.test.js similarity index 97% rename from test/spec/ol/source/imagewms.test.js rename to test/browser/spec/ol/source/imagewms.test.js index 41c21c8aff..a74478b520 100644 --- a/test/spec/ol/source/imagewms.test.js +++ b/test/browser/spec/ol/source/imagewms.test.js @@ -1,10 +1,10 @@ -import Image from '../../../../src/ol/layer/Image.js'; -import ImageState from '../../../../src/ol/ImageState.js'; -import ImageWMS from '../../../../src/ol/source/ImageWMS.js'; -import Map from '../../../../src/ol/Map.js'; -import View from '../../../../src/ol/View.js'; -import {getHeight, getWidth} from '../../../../src/ol/extent.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import Image from '../../../../../src/ol/layer/Image.js'; +import ImageState from '../../../../../src/ol/ImageState.js'; +import ImageWMS from '../../../../../src/ol/source/ImageWMS.js'; +import Map from '../../../../../src/ol/Map.js'; +import View from '../../../../../src/ol/View.js'; +import {getHeight, getWidth} from '../../../../../src/ol/extent.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.ImageWMS', function () { let extent, pixelRatio, options, optionsReproj, projection, resolution; diff --git a/test/spec/ol/source/raster.test.js b/test/browser/spec/ol/source/raster.test.js similarity index 95% rename from test/spec/ol/source/raster.test.js rename to test/browser/spec/ol/source/raster.test.js index 8dc372f0c5..cb871ab677 100644 --- a/test/spec/ol/source/raster.test.js +++ b/test/browser/spec/ol/source/raster.test.js @@ -1,21 +1,21 @@ -import Feature from '../../../../src/ol/Feature.js'; -import ImageLayer from '../../../../src/ol/layer/Image.js'; -import Map from '../../../../src/ol/Map.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Projection from '../../../../src/ol/proj/Projection.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import ImageLayer from '../../../../../src/ol/layer/Image.js'; +import Map from '../../../../../src/ol/Map.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; import RasterSource, { Processor, newImageData, -} from '../../../../src/ol/source/Raster.js'; -import Source from '../../../../src/ol/source/Source.js'; -import Static from '../../../../src/ol/source/ImageStatic.js'; -import TileSource from '../../../../src/ol/source/Tile.js'; -import TileState from '../../../../src/ol/TileState.js'; -import VectorImageLayer from '../../../../src/ol/layer/VectorImage.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; -import XYZ from '../../../../src/ol/source/XYZ.js'; -import {Circle, Fill, Style} from '../../../../src/ol/style.js'; +} from '../../../../../src/ol/source/Raster.js'; +import Source from '../../../../../src/ol/source/Source.js'; +import Static from '../../../../../src/ol/source/ImageStatic.js'; +import TileSource from '../../../../../src/ol/source/Tile.js'; +import TileState from '../../../../../src/ol/TileState.js'; +import VectorImageLayer from '../../../../../src/ol/layer/VectorImage.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; +import XYZ from '../../../../../src/ol/source/XYZ.js'; +import {Circle, Fill, Style} from '../../../../../src/ol/style.js'; const red = 'data:image/gif;base64,R0lGODlhAQABAPAAAP8AAP///yH5BAAAAAAALAAAAAA' + diff --git a/test/spec/ol/source/source.test.js b/test/browser/spec/ol/source/source.test.js similarity index 96% rename from test/spec/ol/source/source.test.js rename to test/browser/spec/ol/source/source.test.js index d171fbf40c..56a95f6b70 100644 --- a/test/spec/ol/source/source.test.js +++ b/test/browser/spec/ol/source/source.test.js @@ -1,5 +1,5 @@ -import Source from '../../../../src/ol/source/Source.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import Source from '../../../../../src/ol/source/Source.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.Source', function () { describe('constructor', function () { diff --git a/test/spec/ol/source/stamen.test.js b/test/browser/spec/ol/source/stamen.test.js similarity index 89% rename from test/spec/ol/source/stamen.test.js rename to test/browser/spec/ol/source/stamen.test.js index 84f578defb..218ca7853e 100644 --- a/test/spec/ol/source/stamen.test.js +++ b/test/browser/spec/ol/source/stamen.test.js @@ -1,4 +1,4 @@ -import Stamen from '../../../../src/ol/source/Stamen.js'; +import Stamen from '../../../../../src/ol/source/Stamen.js'; describe('ol.source.Stamen', function () { describe('constructor', function () { diff --git a/test/spec/ol/source/tile.test.js b/test/browser/spec/ol/source/tile.test.js similarity index 93% rename from test/spec/ol/source/tile.test.js rename to test/browser/spec/ol/source/tile.test.js index 435b891a24..b867470fcf 100644 --- a/test/spec/ol/source/tile.test.js +++ b/test/browser/spec/ol/source/tile.test.js @@ -1,15 +1,15 @@ -import Map from '../../../../src/ol/Map.js'; -import Projection from '../../../../src/ol/proj/Projection.js'; -import Source from '../../../../src/ol/source/Source.js'; -import Tile from '../../../../src/ol/Tile.js'; -import TileDebugSource from '../../../../src/ol/source/TileDebug.js'; -import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; -import TileLayer from '../../../../src/ol/layer/Tile.js'; -import TileRange from '../../../../src/ol/TileRange.js'; -import TileSource from '../../../../src/ol/source/Tile.js'; -import View from '../../../../src/ol/View.js'; -import {getKeyZXY} from '../../../../src/ol/tilecoord.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import Map from '../../../../../src/ol/Map.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; +import Source from '../../../../../src/ol/source/Source.js'; +import Tile from '../../../../../src/ol/Tile.js'; +import TileDebugSource from '../../../../../src/ol/source/TileDebug.js'; +import TileGrid from '../../../../../src/ol/tilegrid/TileGrid.js'; +import TileLayer from '../../../../../src/ol/layer/Tile.js'; +import TileRange from '../../../../../src/ol/TileRange.js'; +import TileSource from '../../../../../src/ol/source/Tile.js'; +import View from '../../../../../src/ol/View.js'; +import {getKeyZXY} from '../../../../../src/ol/tilecoord.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; /** * Tile source for tests that uses a EPSG:4326 based grid with 4 resolutions and diff --git a/test/spec/ol/source/tilearcgisrest.test.js b/test/browser/spec/ol/source/tilearcgisrest.test.js similarity index 97% rename from test/spec/ol/source/tilearcgisrest.test.js rename to test/browser/spec/ol/source/tilearcgisrest.test.js index 63c5880bf3..3a38a4e0c8 100644 --- a/test/spec/ol/source/tilearcgisrest.test.js +++ b/test/browser/spec/ol/source/tilearcgisrest.test.js @@ -1,6 +1,6 @@ -import ImageTile from '../../../../src/ol/ImageTile.js'; -import TileArcGISRest from '../../../../src/ol/source/TileArcGISRest.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import ImageTile from '../../../../../src/ol/ImageTile.js'; +import TileArcGISRest from '../../../../../src/ol/source/TileArcGISRest.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.TileArcGISRest', function () { let options; diff --git a/test/spec/ol/source/tileimage.test.js b/test/browser/spec/ol/source/tileimage.test.js similarity index 90% rename from test/spec/ol/source/tileimage.test.js rename to test/browser/spec/ol/source/tileimage.test.js index 7b56a2eae8..ce42a09e76 100644 --- a/test/spec/ol/source/tileimage.test.js +++ b/test/browser/spec/ol/source/tileimage.test.js @@ -1,19 +1,22 @@ -import ImageTile from '../../../../src/ol/ImageTile.js'; -import Projection from '../../../../src/ol/proj/Projection.js'; -import ReprojTile from '../../../../src/ol/reproj/Tile.js'; -import TileImage from '../../../../src/ol/source/TileImage.js'; -import TileState from '../../../../src/ol/TileState.js'; -import {WORLD_EXTENT} from '../../../../src/ol/proj/epsg3857.js'; +import ImageTile from '../../../../../src/ol/ImageTile.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; +import ReprojTile from '../../../../../src/ol/reproj/Tile.js'; +import TileImage from '../../../../../src/ol/source/TileImage.js'; +import TileState from '../../../../../src/ol/TileState.js'; +import {WORLD_EXTENT} from '../../../../../src/ol/proj/epsg3857.js'; import { addCommon, clearAllProjections, get as getProjection, -} from '../../../../src/ol/proj.js'; -import {createForProjection, createXYZ} from '../../../../src/ol/tilegrid.js'; -import {createFromTemplate} from '../../../../src/ol/tileurlfunction.js'; -import {getKeyZXY} from '../../../../src/ol/tilecoord.js'; -import {listen} from '../../../../src/ol/events.js'; -import {register} from '../../../../src/ol/proj/proj4.js'; +} from '../../../../../src/ol/proj.js'; +import { + createForProjection, + createXYZ, +} from '../../../../../src/ol/tilegrid.js'; +import {createFromTemplate} from '../../../../../src/ol/tileurlfunction.js'; +import {getKeyZXY} from '../../../../../src/ol/tilecoord.js'; +import {listen} from '../../../../../src/ol/events.js'; +import {register} from '../../../../../src/ol/proj/proj4.js'; describe('ol.source.TileImage', function () { function createSource(opt_proj, opt_tileGrid, opt_cacheSize) { diff --git a/test/spec/ol/source/tilejson.test.js b/test/browser/spec/ol/source/tilejson.test.js similarity index 96% rename from test/spec/ol/source/tilejson.test.js rename to test/browser/spec/ol/source/tilejson.test.js index 2ba4489e50..b54c0a2826 100644 --- a/test/spec/ol/source/tilejson.test.js +++ b/test/browser/spec/ol/source/tilejson.test.js @@ -1,7 +1,7 @@ -import Source from '../../../../src/ol/source/Source.js'; -import TileJSON from '../../../../src/ol/source/TileJSON.js'; -import {transformExtent} from '../../../../src/ol/proj.js'; -import {unByKey} from '../../../../src/ol/Observable.js'; +import Source from '../../../../../src/ol/source/Source.js'; +import TileJSON from '../../../../../src/ol/source/TileJSON.js'; +import {transformExtent} from '../../../../../src/ol/proj.js'; +import {unByKey} from '../../../../../src/ol/Observable.js'; describe('ol.source.TileJSON', function () { describe('constructor', function () { diff --git a/test/spec/ol/source/tilewms.test.js b/test/browser/spec/ol/source/tilewms.test.js similarity index 98% rename from test/spec/ol/source/tilewms.test.js rename to test/browser/spec/ol/source/tilewms.test.js index 7bd16e92b2..824f3ce9cd 100644 --- a/test/spec/ol/source/tilewms.test.js +++ b/test/browser/spec/ol/source/tilewms.test.js @@ -1,8 +1,8 @@ -import ImageTile from '../../../../src/ol/ImageTile.js'; -import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; -import TileWMS from '../../../../src/ol/source/TileWMS.js'; -import {createXYZ} from '../../../../src/ol/tilegrid.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import ImageTile from '../../../../../src/ol/ImageTile.js'; +import TileGrid from '../../../../../src/ol/tilegrid/TileGrid.js'; +import TileWMS from '../../../../../src/ol/source/TileWMS.js'; +import {createXYZ} from '../../../../../src/ol/tilegrid.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.TileWMS', function () { let options, optionsReproj; diff --git a/test/spec/ol/source/urltile.test.js b/test/browser/spec/ol/source/urltile.test.js similarity index 96% rename from test/spec/ol/source/urltile.test.js rename to test/browser/spec/ol/source/urltile.test.js index 7cc3073697..6158087b8b 100644 --- a/test/spec/ol/source/urltile.test.js +++ b/test/browser/spec/ol/source/urltile.test.js @@ -1,6 +1,6 @@ -import UrlTile from '../../../../src/ol/source/UrlTile.js'; -import {createXYZ} from '../../../../src/ol/tilegrid.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import UrlTile from '../../../../../src/ol/source/UrlTile.js'; +import {createXYZ} from '../../../../../src/ol/tilegrid.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.UrlTile', function () { describe('#setUrl()', function () { diff --git a/test/spec/ol/source/utfgrid.test.js b/test/browser/spec/ol/source/utfgrid.test.js similarity index 97% rename from test/spec/ol/source/utfgrid.test.js rename to test/browser/spec/ol/source/utfgrid.test.js index 9cb931e612..36e8a304c8 100644 --- a/test/spec/ol/source/utfgrid.test.js +++ b/test/browser/spec/ol/source/utfgrid.test.js @@ -1,11 +1,11 @@ -import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; -import TileSource from '../../../../src/ol/source/Tile.js'; -import UTFGrid, {CustomTile} from '../../../../src/ol/source/UTFGrid.js'; +import TileGrid from '../../../../../src/ol/tilegrid/TileGrid.js'; +import TileSource from '../../../../../src/ol/source/Tile.js'; +import UTFGrid, {CustomTile} from '../../../../../src/ol/source/UTFGrid.js'; import { fromLonLat, get as getProjection, transformExtent, -} from '../../../../src/ol/proj.js'; +} from '../../../../../src/ol/proj.js'; describe('ol.source.UTFGrid', function () { const url = 'spec/ol/data/utfgrid.json'; diff --git a/test/spec/ol/source/vector.test.js b/test/browser/spec/ol/source/vector.test.js similarity index 97% rename from test/spec/ol/source/vector.test.js rename to test/browser/spec/ol/source/vector.test.js index 6940d5fe6f..26159c96e0 100644 --- a/test/spec/ol/source/vector.test.js +++ b/test/browser/spec/ol/source/vector.test.js @@ -1,20 +1,20 @@ -import Collection from '../../../../src/ol/Collection.js'; -import Feature from '../../../../src/ol/Feature.js'; -import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; -import LineString from '../../../../src/ol/geom/LineString.js'; -import Map from '../../../../src/ol/Map.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import VectorLayer from '../../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../../src/ol/source/Vector.js'; -import View from '../../../../src/ol/View.js'; -import {bbox as bboxStrategy} from '../../../../src/ol/loadingstrategy.js'; +import Collection from '../../../../../src/ol/Collection.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GeoJSON from '../../../../../src/ol/format/GeoJSON.js'; +import LineString from '../../../../../src/ol/geom/LineString.js'; +import Map from '../../../../../src/ol/Map.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import VectorLayer from '../../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../../src/ol/source/Vector.js'; +import View from '../../../../../src/ol/View.js'; +import {bbox as bboxStrategy} from '../../../../../src/ol/loadingstrategy.js'; import { fromLonLat, get as getProjection, transformExtent, -} from '../../../../src/ol/proj.js'; -import {getUid} from '../../../../src/ol/util.js'; -import {listen} from '../../../../src/ol/events.js'; +} from '../../../../../src/ol/proj.js'; +import {getUid} from '../../../../../src/ol/util.js'; +import {listen} from '../../../../../src/ol/events.js'; describe('ol.source.Vector', function () { let pointFeature; diff --git a/test/spec/ol/source/vectorsource/single-feature.json b/test/browser/spec/ol/source/vectorsource/single-feature.json similarity index 100% rename from test/spec/ol/source/vectorsource/single-feature.json rename to test/browser/spec/ol/source/vectorsource/single-feature.json diff --git a/test/spec/ol/source/vectortile.test.js b/test/browser/spec/ol/source/vectortile.test.js similarity index 92% rename from test/spec/ol/source/vectortile.test.js rename to test/browser/spec/ol/source/vectortile.test.js index b849d35c54..acb62b715f 100644 --- a/test/spec/ol/source/vectortile.test.js +++ b/test/browser/spec/ol/source/vectortile.test.js @@ -1,20 +1,20 @@ -import Feature from '../../../../src/ol/Feature.js'; -import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; -import MVT from '../../../../src/ol/format/MVT.js'; -import Map from '../../../../src/ol/Map.js'; -import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; -import TileState from '../../../../src/ol/TileState.js'; -import VectorRenderTile from '../../../../src/ol/VectorRenderTile.js'; -import VectorTile from '../../../../src/ol/VectorTile.js'; -import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; -import View from '../../../../src/ol/View.js'; -import {createXYZ} from '../../../../src/ol/tilegrid.js'; -import {fromExtent} from '../../../../src/ol/geom/Polygon.js'; -import {get, get as getProjection} from '../../../../src/ol/proj.js'; -import {getCenter} from '../../../../src/ol/extent.js'; -import {listen, unlistenByKey} from '../../../../src/ol/events.js'; -import {unByKey} from '../../../../src/ol/Observable.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import GeoJSON from '../../../../../src/ol/format/GeoJSON.js'; +import MVT from '../../../../../src/ol/format/MVT.js'; +import Map from '../../../../../src/ol/Map.js'; +import TileGrid from '../../../../../src/ol/tilegrid/TileGrid.js'; +import TileState from '../../../../../src/ol/TileState.js'; +import VectorRenderTile from '../../../../../src/ol/VectorRenderTile.js'; +import VectorTile from '../../../../../src/ol/VectorTile.js'; +import VectorTileLayer from '../../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../../src/ol/source/VectorTile.js'; +import View from '../../../../../src/ol/View.js'; +import {createXYZ} from '../../../../../src/ol/tilegrid.js'; +import {fromExtent} from '../../../../../src/ol/geom/Polygon.js'; +import {get, get as getProjection} from '../../../../../src/ol/proj.js'; +import {getCenter} from '../../../../../src/ol/extent.js'; +import {listen, unlistenByKey} from '../../../../../src/ol/events.js'; +import {unByKey} from '../../../../../src/ol/Observable.js'; describe('ol.source.VectorTile', function () { let format, source; diff --git a/test/spec/ol/source/wmts.test.js b/test/browser/spec/ol/source/wmts.test.js similarity index 97% rename from test/spec/ol/source/wmts.test.js rename to test/browser/spec/ol/source/wmts.test.js index 6b3a69acca..69c4599ea2 100644 --- a/test/spec/ol/source/wmts.test.js +++ b/test/browser/spec/ol/source/wmts.test.js @@ -1,9 +1,11 @@ -import Projection from '../../../../src/ol/proj/Projection.js'; -import WMTS, {optionsFromCapabilities} from '../../../../src/ol/source/WMTS.js'; -import WMTSCapabilities from '../../../../src/ol/format/WMTSCapabilities.js'; -import WMTSTileGrid from '../../../../src/ol/tilegrid/WMTS.js'; -import {getBottomLeft, getTopRight} from '../../../../src/ol/extent.js'; -import {get as getProjection} from '../../../../src/ol/proj.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; +import WMTS, { + optionsFromCapabilities, +} from '../../../../../src/ol/source/WMTS.js'; +import WMTSCapabilities from '../../../../../src/ol/format/WMTSCapabilities.js'; +import WMTSTileGrid from '../../../../../src/ol/tilegrid/WMTS.js'; +import {getBottomLeft, getTopRight} from '../../../../../src/ol/extent.js'; +import {get as getProjection} from '../../../../../src/ol/proj.js'; describe('ol.source.WMTS', function () { describe('when creating options from capabilities', function () { diff --git a/test/spec/ol/source/xyz.test.js b/test/browser/spec/ol/source/xyz.test.js similarity index 93% rename from test/spec/ol/source/xyz.test.js rename to test/browser/spec/ol/source/xyz.test.js index 4e85be5d0a..6604a24393 100644 --- a/test/spec/ol/source/xyz.test.js +++ b/test/browser/spec/ol/source/xyz.test.js @@ -1,11 +1,11 @@ -import Map from '../../../../src/ol/Map.js'; -import TileImage from '../../../../src/ol/source/TileImage.js'; -import TileLayer from '../../../../src/ol/layer/Tile.js'; -import TileSource from '../../../../src/ol/source/Tile.js'; -import UrlTile from '../../../../src/ol/source/UrlTile.js'; -import View from '../../../../src/ol/View.js'; -import XYZ from '../../../../src/ol/source/XYZ.js'; -import {createXYZ} from '../../../../src/ol/tilegrid.js'; +import Map from '../../../../../src/ol/Map.js'; +import TileImage from '../../../../../src/ol/source/TileImage.js'; +import TileLayer from '../../../../../src/ol/layer/Tile.js'; +import TileSource from '../../../../../src/ol/source/Tile.js'; +import UrlTile from '../../../../../src/ol/source/UrlTile.js'; +import View from '../../../../../src/ol/View.js'; +import XYZ from '../../../../../src/ol/source/XYZ.js'; +import {createXYZ} from '../../../../../src/ol/tilegrid.js'; describe('ol.source.XYZ', function () { describe('constructor', function () { diff --git a/test/spec/ol/source/zoomify.test.js b/test/browser/spec/ol/source/zoomify.test.js similarity index 96% rename from test/spec/ol/source/zoomify.test.js rename to test/browser/spec/ol/source/zoomify.test.js index 6d4955a3e9..0d6e71d44d 100644 --- a/test/spec/ol/source/zoomify.test.js +++ b/test/browser/spec/ol/source/zoomify.test.js @@ -1,8 +1,8 @@ -import Projection from '../../../../src/ol/proj/Projection.js'; -import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; -import Zoomify, {CustomTile} from '../../../../src/ol/source/Zoomify.js'; -import {DEFAULT_TILE_SIZE} from '../../../../src/ol/tilegrid/common.js'; -import {listen} from '../../../../src/ol/events.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; +import TileGrid from '../../../../../src/ol/tilegrid/TileGrid.js'; +import Zoomify, {CustomTile} from '../../../../../src/ol/source/Zoomify.js'; +import {DEFAULT_TILE_SIZE} from '../../../../../src/ol/tilegrid/common.js'; +import {listen} from '../../../../../src/ol/events.js'; describe('ol.source.Zoomify', function () { const w = 1024; diff --git a/test/spec/ol/sphere.test.js b/test/browser/spec/ol/sphere.test.js similarity index 92% rename from test/spec/ol/sphere.test.js rename to test/browser/spec/ol/sphere.test.js index f588b360aa..d80e45153d 100644 --- a/test/spec/ol/sphere.test.js +++ b/test/browser/spec/ol/sphere.test.js @@ -1,10 +1,10 @@ -import GeometryCollection from '../../../src/ol/geom/GeometryCollection.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import MultiLineString from '../../../src/ol/geom/MultiLineString.js'; -import MultiPoint from '../../../src/ol/geom/MultiPoint.js'; -import Point from '../../../src/ol/geom/Point.js'; -import WKT from '../../../src/ol/format/WKT.js'; -import {getArea, getDistance, getLength} from '../../../src/ol/sphere.js'; +import GeometryCollection from '../../../../src/ol/geom/GeometryCollection.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import MultiLineString from '../../../../src/ol/geom/MultiLineString.js'; +import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import WKT from '../../../../src/ol/format/WKT.js'; +import {getArea, getDistance, getLength} from '../../../../src/ol/sphere.js'; describe('ol/sphere', function () { describe('getDistance()', function () { diff --git a/test/spec/ol/string.test.js b/test/browser/spec/ol/string.test.js similarity index 97% rename from test/spec/ol/string.test.js rename to test/browser/spec/ol/string.test.js index f93e7cb856..72a11ab683 100644 --- a/test/spec/ol/string.test.js +++ b/test/browser/spec/ol/string.test.js @@ -1,4 +1,4 @@ -import {compareVersions, padNumber} from '../../../src/ol/string.js'; +import {compareVersions, padNumber} from '../../../../src/ol/string.js'; describe('ol.string', function () { describe('ol.string.padNumber', function () { diff --git a/test/spec/ol/structs/linkedlist.test.js b/test/browser/spec/ol/structs/linkedlist.test.js similarity index 99% rename from test/spec/ol/structs/linkedlist.test.js rename to test/browser/spec/ol/structs/linkedlist.test.js index 44e9a77986..aece930ac5 100644 --- a/test/spec/ol/structs/linkedlist.test.js +++ b/test/browser/spec/ol/structs/linkedlist.test.js @@ -1,4 +1,4 @@ -import LinkedList from '../../../../src/ol/structs/LinkedList.js'; +import LinkedList from '../../../../../src/ol/structs/LinkedList.js'; describe('ol.structs.LinkedList', function () { let ll; diff --git a/test/spec/ol/structs/lrucache.test.js b/test/browser/spec/ol/structs/lrucache.test.js similarity index 99% rename from test/spec/ol/structs/lrucache.test.js rename to test/browser/spec/ol/structs/lrucache.test.js index 219a2a9279..1ee5373780 100644 --- a/test/spec/ol/structs/lrucache.test.js +++ b/test/browser/spec/ol/structs/lrucache.test.js @@ -1,4 +1,4 @@ -import LRUCache from '../../../../src/ol/structs/LRUCache.js'; +import LRUCache from '../../../../../src/ol/structs/LRUCache.js'; describe('ol.structs.LRUCache', function () { let lruCache; diff --git a/test/spec/ol/structs/priorityqueue.test.js b/test/browser/spec/ol/structs/priorityqueue.test.js similarity index 97% rename from test/spec/ol/structs/priorityqueue.test.js rename to test/browser/spec/ol/structs/priorityqueue.test.js index d8a6d634d3..295561ee06 100644 --- a/test/spec/ol/structs/priorityqueue.test.js +++ b/test/browser/spec/ol/structs/priorityqueue.test.js @@ -1,4 +1,6 @@ -import PriorityQueue, {DROP} from '../../../../src/ol/structs/PriorityQueue.js'; +import PriorityQueue, { + DROP, +} from '../../../../../src/ol/structs/PriorityQueue.js'; describe('ol.structs.PriorityQueue', function () { const identity = function (a) { diff --git a/test/spec/ol/structs/rbush.test.js b/test/browser/spec/ol/structs/rbush.test.js similarity index 99% rename from test/spec/ol/structs/rbush.test.js rename to test/browser/spec/ol/structs/rbush.test.js index 4bf8ca8ad1..48444ceff7 100644 --- a/test/spec/ol/structs/rbush.test.js +++ b/test/browser/spec/ol/structs/rbush.test.js @@ -1,4 +1,4 @@ -import RBush from '../../../../src/ol/structs/RBush.js'; +import RBush from '../../../../../src/ol/structs/RBush.js'; describe('ol.structs.RBush', function () { let rBush; diff --git a/test/spec/ol/style/circle.test.js b/test/browser/spec/ol/style/circle.test.js similarity index 96% rename from test/spec/ol/style/circle.test.js rename to test/browser/spec/ol/style/circle.test.js index 1eebd48835..201e94adb1 100644 --- a/test/spec/ol/style/circle.test.js +++ b/test/browser/spec/ol/style/circle.test.js @@ -1,6 +1,6 @@ -import CircleStyle from '../../../../src/ol/style/Circle.js'; -import Fill from '../../../../src/ol/style/Fill.js'; -import Stroke from '../../../../src/ol/style/Stroke.js'; +import CircleStyle from '../../../../../src/ol/style/Circle.js'; +import Fill from '../../../../../src/ol/style/Fill.js'; +import Stroke from '../../../../../src/ol/style/Stroke.js'; describe('ol.style.Circle', function () { describe('#constructor', function () { diff --git a/test/spec/ol/style/expressions.test.js b/test/browser/spec/ol/style/expressions.test.js similarity index 99% rename from test/spec/ol/style/expressions.test.js rename to test/browser/spec/ol/style/expressions.test.js index 4febb15a57..63878458b9 100644 --- a/test/spec/ol/style/expressions.test.js +++ b/test/browser/spec/ol/style/expressions.test.js @@ -8,7 +8,7 @@ import { numberToGlsl, stringToGlsl, uniformNameForVariable, -} from '../../../../src/ol/style/expressions.js'; +} from '../../../../../src/ol/style/expressions.js'; describe('ol.style.expressions', function () { describe('numberToGlsl', function () { diff --git a/test/spec/ol/style/fill.test.js b/test/browser/spec/ol/style/fill.test.js similarity index 94% rename from test/spec/ol/style/fill.test.js rename to test/browser/spec/ol/style/fill.test.js index b566a36b57..5a8a044920 100644 --- a/test/spec/ol/style/fill.test.js +++ b/test/browser/spec/ol/style/fill.test.js @@ -1,4 +1,4 @@ -import Fill from '../../../../src/ol/style/Fill.js'; +import Fill from '../../../../../src/ol/style/Fill.js'; describe('ol.style.Fill', function () { describe('#clone', function () { diff --git a/test/spec/ol/style/icon.test.js b/test/browser/spec/ol/style/icon.test.js similarity index 97% rename from test/spec/ol/style/icon.test.js rename to test/browser/spec/ol/style/icon.test.js index 7a3cf48d97..0cb4fc8fce 100644 --- a/test/spec/ol/style/icon.test.js +++ b/test/browser/spec/ol/style/icon.test.js @@ -1,9 +1,9 @@ -import Icon from '../../../../src/ol/style/Icon.js'; +import Icon from '../../../../../src/ol/style/Icon.js'; import IconImage, { get as getIconImage, -} from '../../../../src/ol/style/IconImage.js'; -import {getUid} from '../../../../src/ol/util.js'; -import {shared as iconImageCache} from '../../../../src/ol/style/IconImageCache.js'; +} from '../../../../../src/ol/style/IconImage.js'; +import {getUid} from '../../../../../src/ol/util.js'; +import {shared as iconImageCache} from '../../../../../src/ol/style/IconImageCache.js'; describe('ol.style.Icon', function () { const size = [36, 48]; diff --git a/test/spec/ol/style/iconimagecache.test.js b/test/browser/spec/ol/style/iconimagecache.test.js similarity index 89% rename from test/spec/ol/style/iconimagecache.test.js rename to test/browser/spec/ol/style/iconimagecache.test.js index a1b8f858f3..77546b501a 100644 --- a/test/spec/ol/style/iconimagecache.test.js +++ b/test/browser/spec/ol/style/iconimagecache.test.js @@ -1,7 +1,7 @@ -import IconImage from '../../../../src/ol/style/IconImage.js'; -import {VOID} from '../../../../src/ol/functions.js'; -import {shared as iconImageCache} from '../../../../src/ol/style/IconImageCache.js'; -import {listen} from '../../../../src/ol/events.js'; +import IconImage from '../../../../../src/ol/style/IconImage.js'; +import {VOID} from '../../../../../src/ol/functions.js'; +import {shared as iconImageCache} from '../../../../../src/ol/style/IconImageCache.js'; +import {listen} from '../../../../../src/ol/events.js'; describe('ol.style.IconImageCache', function () { let originalMaxCacheSize; diff --git a/test/spec/ol/style/regularshape.test.js b/test/browser/spec/ol/style/regularshape.test.js similarity index 97% rename from test/spec/ol/style/regularshape.test.js rename to test/browser/spec/ol/style/regularshape.test.js index 509b49d56e..32ec0c87b1 100644 --- a/test/spec/ol/style/regularshape.test.js +++ b/test/browser/spec/ol/style/regularshape.test.js @@ -1,6 +1,6 @@ -import Fill from '../../../../src/ol/style/Fill.js'; -import RegularShape from '../../../../src/ol/style/RegularShape.js'; -import Stroke from '../../../../src/ol/style/Stroke.js'; +import Fill from '../../../../../src/ol/style/Fill.js'; +import RegularShape from '../../../../../src/ol/style/RegularShape.js'; +import Stroke from '../../../../../src/ol/style/Stroke.js'; describe('ol.style.RegularShape', function () { describe('#constructor', function () { diff --git a/test/spec/ol/style/stroke.test.js b/test/browser/spec/ol/style/stroke.test.js similarity index 96% rename from test/spec/ol/style/stroke.test.js rename to test/browser/spec/ol/style/stroke.test.js index 648ab7caef..ae7765e52e 100644 --- a/test/spec/ol/style/stroke.test.js +++ b/test/browser/spec/ol/style/stroke.test.js @@ -1,4 +1,4 @@ -import Stroke from '../../../../src/ol/style/Stroke.js'; +import Stroke from '../../../../../src/ol/style/Stroke.js'; describe('ol.style.Stroke', function () { describe('#clone', function () { diff --git a/test/spec/ol/style/style.test.js b/test/browser/spec/ol/style/style.test.js similarity index 94% rename from test/spec/ol/style/style.test.js rename to test/browser/spec/ol/style/style.test.js index 210c0bb577..d3f2cacdd3 100644 --- a/test/spec/ol/style/style.test.js +++ b/test/browser/spec/ol/style/style.test.js @@ -1,10 +1,10 @@ -import CircleStyle from '../../../../src/ol/style/Circle.js'; -import Feature from '../../../../src/ol/Feature.js'; -import Fill from '../../../../src/ol/style/Fill.js'; -import Point from '../../../../src/ol/geom/Point.js'; -import Stroke from '../../../../src/ol/style/Stroke.js'; -import Style, {toFunction} from '../../../../src/ol/style/Style.js'; -import Text from '../../../../src/ol/style/Text.js'; +import CircleStyle from '../../../../../src/ol/style/Circle.js'; +import Feature from '../../../../../src/ol/Feature.js'; +import Fill from '../../../../../src/ol/style/Fill.js'; +import Point from '../../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../../src/ol/style/Stroke.js'; +import Style, {toFunction} from '../../../../../src/ol/style/Style.js'; +import Text from '../../../../../src/ol/style/Text.js'; describe('ol.style.Style', function () { const testFill = new Fill({ diff --git a/test/spec/ol/style/text.test.js b/test/browser/spec/ol/style/text.test.js similarity index 95% rename from test/spec/ol/style/text.test.js rename to test/browser/spec/ol/style/text.test.js index 44b0b44d7b..4819f2a48e 100644 --- a/test/spec/ol/style/text.test.js +++ b/test/browser/spec/ol/style/text.test.js @@ -1,6 +1,6 @@ -import Fill from '../../../../src/ol/style/Fill.js'; -import Stroke from '../../../../src/ol/style/Stroke.js'; -import Text from '../../../../src/ol/style/Text.js'; +import Fill from '../../../../../src/ol/style/Fill.js'; +import Stroke from '../../../../../src/ol/style/Stroke.js'; +import Text from '../../../../../src/ol/style/Text.js'; describe('ol.style.Text', function () { describe('#constructor', function () { diff --git a/test/spec/ol/tile.test.js b/test/browser/spec/ol/tile.test.js similarity index 94% rename from test/spec/ol/tile.test.js rename to test/browser/spec/ol/tile.test.js index 18b3974d89..4b36120fec 100644 --- a/test/spec/ol/tile.test.js +++ b/test/browser/spec/ol/tile.test.js @@ -1,7 +1,7 @@ -import ImageTile from '../../../src/ol/ImageTile.js'; -import Tile from '../../../src/ol/Tile.js'; -import TileState from '../../../src/ol/TileState.js'; -import {getUid} from '../../../src/ol/util.js'; +import ImageTile from '../../../../src/ol/ImageTile.js'; +import Tile from '../../../../src/ol/Tile.js'; +import TileState from '../../../../src/ol/TileState.js'; +import {getUid} from '../../../../src/ol/util.js'; describe('ol.Tile', function () { describe('constructor', function () { diff --git a/test/spec/ol/tilecache.test.js b/test/browser/spec/ol/tilecache.test.js similarity index 81% rename from test/spec/ol/tilecache.test.js rename to test/browser/spec/ol/tilecache.test.js index d64fa014a9..db1f23942c 100644 --- a/test/spec/ol/tilecache.test.js +++ b/test/browser/spec/ol/tilecache.test.js @@ -1,6 +1,6 @@ -import Tile from '../../../src/ol/Tile.js'; -import TileCache from '../../../src/ol/TileCache.js'; -import {getKey} from '../../../src/ol/tilecoord.js'; +import Tile from '../../../../src/ol/Tile.js'; +import TileCache from '../../../../src/ol/TileCache.js'; +import {getKey} from '../../../../src/ol/tilecoord.js'; describe('ol.TileCache', function () { describe('#pruneExceptNewestZ()', function () { diff --git a/test/spec/ol/tilecoord.test.js b/test/browser/spec/ol/tilecoord.test.js similarity index 98% rename from test/spec/ol/tilecoord.test.js rename to test/browser/spec/ol/tilecoord.test.js index 9c14d5dbbd..4380f7c77d 100644 --- a/test/spec/ol/tilecoord.test.js +++ b/test/browser/spec/ol/tilecoord.test.js @@ -1,10 +1,10 @@ -import TileGrid from '../../../src/ol/tilegrid/TileGrid.js'; +import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; import { fromKey, getKey, hash, withinExtentAndZ, -} from '../../../src/ol/tilecoord.js'; +} from '../../../../src/ol/tilecoord.js'; describe('ol.TileCoord', function () { describe('create', function () { diff --git a/test/spec/ol/tilegrid/tilegrid.test.js b/test/browser/spec/ol/tilegrid/tilegrid.test.js similarity index 98% rename from test/spec/ol/tilegrid/tilegrid.test.js rename to test/browser/spec/ol/tilegrid/tilegrid.test.js index d37082401c..236f34e1d4 100644 --- a/test/spec/ol/tilegrid/tilegrid.test.js +++ b/test/browser/spec/ol/tilegrid/tilegrid.test.js @@ -1,22 +1,22 @@ -import Projection from '../../../../src/ol/proj/Projection.js'; -import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; -import TileRange from '../../../../src/ol/TileRange.js'; +import Projection from '../../../../../src/ol/proj/Projection.js'; +import TileGrid from '../../../../../src/ol/tilegrid/TileGrid.js'; +import TileRange from '../../../../../src/ol/TileRange.js'; import { DEFAULT_MAX_ZOOM, DEFAULT_TILE_SIZE, -} from '../../../../src/ol/tilegrid/common.js'; -import {HALF_SIZE} from '../../../../src/ol/proj/epsg3857.js'; +} from '../../../../../src/ol/tilegrid/common.js'; +import {HALF_SIZE} from '../../../../../src/ol/proj/epsg3857.js'; import { METERS_PER_UNIT, get as getProjection, -} from '../../../../src/ol/proj.js'; +} from '../../../../../src/ol/proj.js'; import { createForExtent, createForProjection, createXYZ, getForProjection as getTileGridForProjection, -} from '../../../../src/ol/tilegrid.js'; -import {createOrUpdate} from '../../../../src/ol/extent.js'; +} from '../../../../../src/ol/tilegrid.js'; +import {createOrUpdate} from '../../../../../src/ol/extent.js'; describe('ol.tilegrid.TileGrid', function () { let resolutions; diff --git a/test/spec/ol/tilegrid/wmts.test.js b/test/browser/spec/ol/tilegrid/wmts.test.js similarity index 97% rename from test/spec/ol/tilegrid/wmts.test.js rename to test/browser/spec/ol/tilegrid/wmts.test.js index 38246d0c14..0b90bf35a8 100644 --- a/test/spec/ol/tilegrid/wmts.test.js +++ b/test/browser/spec/ol/tilegrid/wmts.test.js @@ -1,5 +1,5 @@ -import WMTSCapabilities from '../../../../src/ol/format/WMTSCapabilities.js'; -import {createFromCapabilitiesMatrixSet} from '../../../../src/ol/tilegrid/WMTS.js'; +import WMTSCapabilities from '../../../../../src/ol/format/WMTSCapabilities.js'; +import {createFromCapabilitiesMatrixSet} from '../../../../../src/ol/tilegrid/WMTS.js'; describe('ol.tilegrid.WMTS', function () { describe('when creating tileGrid from capabilities', function () { diff --git a/test/spec/ol/tilequeue.test.js b/test/browser/spec/ol/tilequeue.test.js similarity index 92% rename from test/spec/ol/tilequeue.test.js rename to test/browser/spec/ol/tilequeue.test.js index e069b2ebbc..5644c98513 100644 --- a/test/spec/ol/tilequeue.test.js +++ b/test/browser/spec/ol/tilequeue.test.js @@ -1,9 +1,9 @@ -import ImageTile from '../../../src/ol/ImageTile.js'; -import Tile from '../../../src/ol/Tile.js'; -import TileQueue from '../../../src/ol/TileQueue.js'; -import TileState from '../../../src/ol/TileState.js'; -import {DROP} from '../../../src/ol/structs/PriorityQueue.js'; -import {defaultImageLoadFunction} from '../../../src/ol/source/Image.js'; +import ImageTile from '../../../../src/ol/ImageTile.js'; +import Tile from '../../../../src/ol/Tile.js'; +import TileQueue from '../../../../src/ol/TileQueue.js'; +import TileState from '../../../../src/ol/TileState.js'; +import {DROP} from '../../../../src/ol/structs/PriorityQueue.js'; +import {defaultImageLoadFunction} from '../../../../src/ol/source/Image.js'; describe('ol.TileQueue', function () { function addRandomPriorityTiles(tq, num) { diff --git a/test/spec/ol/tilerange.test.js b/test/browser/spec/ol/tilerange.test.js similarity index 98% rename from test/spec/ol/tilerange.test.js rename to test/browser/spec/ol/tilerange.test.js index 5d565187bc..3db235c689 100644 --- a/test/spec/ol/tilerange.test.js +++ b/test/browser/spec/ol/tilerange.test.js @@ -1,4 +1,4 @@ -import TileRange from '../../../src/ol/TileRange.js'; +import TileRange from '../../../../src/ol/TileRange.js'; describe('ol.TileRange', function () { describe('constructor', function () { diff --git a/test/spec/ol/tileurlfunction.test.js b/test/browser/spec/ol/tileurlfunction.test.js similarity index 95% rename from test/spec/ol/tileurlfunction.test.js rename to test/browser/spec/ol/tileurlfunction.test.js index d145ad158e..90980c813c 100644 --- a/test/spec/ol/tileurlfunction.test.js +++ b/test/browser/spec/ol/tileurlfunction.test.js @@ -1,11 +1,11 @@ -import TileGrid from '../../../src/ol/tilegrid/TileGrid.js'; +import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; import { createFromTemplate, createFromTemplates, createFromTileUrlFunctions, expandUrl, -} from '../../../src/ol/tileurlfunction.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +} from '../../../../src/ol/tileurlfunction.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; describe('ol.TileUrlFunction', function () { describe('expandUrl', function () { diff --git a/test/spec/ol/transform.test.js b/test/browser/spec/ol/transform.test.js similarity index 99% rename from test/spec/ol/transform.test.js rename to test/browser/spec/ol/transform.test.js index af0d28eacd..bf0134ff4f 100644 --- a/test/spec/ol/transform.test.js +++ b/test/browser/spec/ol/transform.test.js @@ -12,7 +12,7 @@ import { set, setFromArray, translate, -} from '../../../src/ol/transform.js'; +} from '../../../../src/ol/transform.js'; describe('ol.transform', function () { function assertRoughlyEqual(t1, t2) { diff --git a/test/spec/ol/uri.test.js b/test/browser/spec/ol/uri.test.js similarity index 97% rename from test/spec/ol/uri.test.js rename to test/browser/spec/ol/uri.test.js index 4bfdbd1953..03950570cb 100644 --- a/test/spec/ol/uri.test.js +++ b/test/browser/spec/ol/uri.test.js @@ -1,4 +1,4 @@ -import {appendParams} from '../../../src/ol/uri.js'; +import {appendParams} from '../../../../src/ol/uri.js'; describe('ol.uri.appendParams()', function () { it('should append empty STYLES with =', function () { diff --git a/test/spec/ol/vec/mat4.test.js b/test/browser/spec/ol/vec/mat4.test.js similarity index 91% rename from test/spec/ol/vec/mat4.test.js rename to test/browser/spec/ol/vec/mat4.test.js index 5da34d372f..61fd700218 100644 --- a/test/spec/ol/vec/mat4.test.js +++ b/test/browser/spec/ol/vec/mat4.test.js @@ -1,4 +1,4 @@ -import {create, fromTransform} from '../../../../src/ol/vec/mat4.js'; +import {create, fromTransform} from '../../../../../src/ol/vec/mat4.js'; describe('mat4', function () { describe('mat4.create()', function () { diff --git a/test/spec/ol/vectorrendertile.test.js b/test/browser/spec/ol/vectorrendertile.test.js similarity index 85% rename from test/spec/ol/vectorrendertile.test.js rename to test/browser/spec/ol/vectorrendertile.test.js index 6918ee63e4..01481fde6b 100644 --- a/test/spec/ol/vectorrendertile.test.js +++ b/test/browser/spec/ol/vectorrendertile.test.js @@ -1,10 +1,10 @@ -import EventType from '../../../src/ol/events/EventType.js'; -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import TileGrid from '../../../src/ol/tilegrid/TileGrid.js'; -import TileState from '../../../src/ol/TileState.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import {defaultLoadFunction} from '../../../src/ol/source/VectorTile.js'; -import {listen, unlistenByKey} from '../../../src/ol/events.js'; +import EventType from '../../../../src/ol/events/EventType.js'; +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import TileGrid from '../../../../src/ol/tilegrid/TileGrid.js'; +import TileState from '../../../../src/ol/TileState.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import {defaultLoadFunction} from '../../../../src/ol/source/VectorTile.js'; +import {listen, unlistenByKey} from '../../../../src/ol/events.js'; describe('ol.VectorRenderTile', function () { it('triggers "change" when previously failed source tiles are loaded', function (done) { diff --git a/test/spec/ol/vectortile.test.js b/test/browser/spec/ol/vectortile.test.js similarity index 74% rename from test/spec/ol/vectortile.test.js rename to test/browser/spec/ol/vectortile.test.js index f2b201e340..6850b9f7f5 100644 --- a/test/spec/ol/vectortile.test.js +++ b/test/browser/spec/ol/vectortile.test.js @@ -1,10 +1,10 @@ -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import MVT from '../../../src/ol/format/MVT.js'; -import VectorTile from '../../../src/ol/VectorTile.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; -import {defaultLoadFunction} from '../../../src/ol/source/VectorTile.js'; -import {get as getProjection} from '../../../src/ol/proj.js'; -import {listen} from '../../../src/ol/events.js'; +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import VectorTile from '../../../../src/ol/VectorTile.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; +import {defaultLoadFunction} from '../../../../src/ol/source/VectorTile.js'; +import {get as getProjection} from '../../../../src/ol/proj.js'; +import {listen} from '../../../../src/ol/events.js'; describe('ol.VectorTile', function () { it('loader reprojects GeoJSON features', function (done) { diff --git a/test/spec/ol/view.test.js b/test/browser/spec/ol/view.test.js similarity index 99% rename from test/spec/ol/view.test.js rename to test/browser/spec/ol/view.test.js index 8376e2d98a..3ed8942958 100644 --- a/test/spec/ol/view.test.js +++ b/test/browser/spec/ol/view.test.js @@ -1,16 +1,16 @@ -import Circle from '../../../src/ol/geom/Circle.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; +import Circle from '../../../../src/ol/geom/Circle.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; import View, { createCenterConstraint, createResolutionConstraint, createRotationConstraint, isNoopAnimation, -} from '../../../src/ol/View.js'; -import ViewHint from '../../../src/ol/ViewHint.js'; -import {clearUserProjection, useGeographic} from '../../../src/ol/proj.js'; -import {createEmpty} from '../../../src/ol/extent.js'; +} from '../../../../src/ol/View.js'; +import ViewHint from '../../../../src/ol/ViewHint.js'; +import {clearUserProjection, useGeographic} from '../../../../src/ol/proj.js'; +import {createEmpty} from '../../../../src/ol/extent.js'; describe('ol.View', function () { describe('constructor (defaults)', function () { diff --git a/test/spec/ol/webgl/buffer.test.js b/test/browser/spec/ol/webgl/buffer.test.js similarity index 96% rename from test/spec/ol/webgl/buffer.test.js rename to test/browser/spec/ol/webgl/buffer.test.js index 6ce8ec024c..276e1df1c3 100644 --- a/test/spec/ol/webgl/buffer.test.js +++ b/test/browser/spec/ol/webgl/buffer.test.js @@ -1,12 +1,12 @@ import WebGLArrayBuffer, { getArrayClassForType, -} from '../../../../src/ol/webgl/Buffer.js'; +} from '../../../../../src/ol/webgl/Buffer.js'; import { ARRAY_BUFFER, ELEMENT_ARRAY_BUFFER, STATIC_DRAW, STREAM_DRAW, -} from '../../../../src/ol/webgl.js'; +} from '../../../../../src/ol/webgl.js'; describe('ol.webgl.Buffer', function () { describe('constructor', function () { diff --git a/test/spec/ol/webgl/helper.test.js b/test/browser/spec/ol/webgl/helper.test.js similarity index 97% rename from test/spec/ol/webgl/helper.test.js rename to test/browser/spec/ol/webgl/helper.test.js index e88d70947c..067dc5febf 100644 --- a/test/spec/ol/webgl/helper.test.js +++ b/test/browser/spec/ol/webgl/helper.test.js @@ -1,13 +1,15 @@ -import WebGLArrayBuffer from '../../../../src/ol/webgl/Buffer.js'; -import WebGLHelper, {DefaultUniform} from '../../../../src/ol/webgl/Helper.js'; -import {ARRAY_BUFFER, FLOAT, STATIC_DRAW} from '../../../../src/ol/webgl.js'; +import WebGLArrayBuffer from '../../../../../src/ol/webgl/Buffer.js'; +import WebGLHelper, { + DefaultUniform, +} from '../../../../../src/ol/webgl/Helper.js'; +import {ARRAY_BUFFER, FLOAT, STATIC_DRAW} from '../../../../../src/ol/webgl.js'; import { create as createTransform, rotate as rotateTransform, scale as scaleTransform, translate as translateTransform, -} from '../../../../src/ol/transform.js'; -import {getUid} from '../../../../src/ol/util.js'; +} from '../../../../../src/ol/transform.js'; +import {getUid} from '../../../../../src/ol/util.js'; const VERTEX_SHADER = ` precision mediump float; diff --git a/test/spec/ol/webgl/rendertarget.test.js b/test/browser/spec/ol/webgl/rendertarget.test.js similarity index 96% rename from test/spec/ol/webgl/rendertarget.test.js rename to test/browser/spec/ol/webgl/rendertarget.test.js index a4b9226d68..b9ed1cc632 100644 --- a/test/spec/ol/webgl/rendertarget.test.js +++ b/test/browser/spec/ol/webgl/rendertarget.test.js @@ -1,5 +1,5 @@ -import WebGLHelper from '../../../../src/ol/webgl/Helper.js'; -import WebGLRenderTarget from '../../../../src/ol/webgl/RenderTarget.js'; +import WebGLHelper from '../../../../../src/ol/webgl/Helper.js'; +import WebGLRenderTarget from '../../../../../src/ol/webgl/RenderTarget.js'; describe('ol.webgl.RenderTarget', function () { let helper, testImage_4x4; diff --git a/test/spec/ol/webgl/shaderbuilder.test.js b/test/browser/spec/ol/webgl/shaderbuilder.test.js similarity index 99% rename from test/spec/ol/webgl/shaderbuilder.test.js rename to test/browser/spec/ol/webgl/shaderbuilder.test.js index 40ccbd7c71..92eaa0c33f 100644 --- a/test/spec/ol/webgl/shaderbuilder.test.js +++ b/test/browser/spec/ol/webgl/shaderbuilder.test.js @@ -1,13 +1,13 @@ import { ShaderBuilder, parseLiteralStyle, -} from '../../../../src/ol/webgl/ShaderBuilder.js'; +} from '../../../../../src/ol/webgl/ShaderBuilder.js'; import { arrayToGlsl, colorToGlsl, numberToGlsl, uniformNameForVariable, -} from '../../../../src/ol/style/expressions.js'; +} from '../../../../../src/ol/style/expressions.js'; describe('ol.webgl.ShaderBuilder', function () { describe('getSymbolVertexShader', function () { diff --git a/test/spec/ol/worker/version.test.js b/test/browser/spec/ol/worker/version.test.js similarity index 82% rename from test/spec/ol/worker/version.test.js rename to test/browser/spec/ol/worker/version.test.js index ed8dddda62..7ba4f17c34 100644 --- a/test/spec/ol/worker/version.test.js +++ b/test/browser/spec/ol/worker/version.test.js @@ -1,5 +1,5 @@ -import {VERSION} from '../../../../src/ol/util.js'; -import {create} from '../../../../src/ol/worker/version.js'; +import {VERSION} from '../../../../../src/ol/util.js'; +import {create} from '../../../../../src/ol/worker/version.js'; describe('ol/worker/version', function () { let worker; diff --git a/test/spec/ol/worker/webgl.test.js b/test/browser/spec/ol/worker/webgl.test.js similarity index 90% rename from test/spec/ol/worker/webgl.test.js rename to test/browser/spec/ol/worker/webgl.test.js index c991d4b164..9ddabb8643 100644 --- a/test/spec/ol/worker/webgl.test.js +++ b/test/browser/spec/ol/worker/webgl.test.js @@ -1,5 +1,5 @@ -import {WebGLWorkerMessageType} from '../../../../src/ol/renderer/webgl/Layer.js'; -import {create} from '../../../../src/ol/worker/webgl.js'; +import {WebGLWorkerMessageType} from '../../../../../src/ol/renderer/webgl/Layer.js'; +import {create} from '../../../../../src/ol/worker/webgl.js'; describe('ol/worker/webgl', function () { let worker; diff --git a/test/spec/util.js b/test/browser/spec/util.js similarity index 100% rename from test/spec/util.js rename to test/browser/spec/util.js diff --git a/test/test-extensions.js b/test/browser/test-extensions.js similarity index 100% rename from test/test-extensions.js rename to test/browser/test-extensions.js diff --git a/rendering/.eslintrc b/test/rendering/.eslintrc similarity index 100% rename from rendering/.eslintrc rename to test/rendering/.eslintrc diff --git a/rendering/.gitignore b/test/rendering/.gitignore similarity index 100% rename from rendering/.gitignore rename to test/rendering/.gitignore diff --git a/rendering/cases/circle-style/expected.png b/test/rendering/cases/circle-style/expected.png similarity index 100% rename from rendering/cases/circle-style/expected.png rename to test/rendering/cases/circle-style/expected.png diff --git a/rendering/cases/circle-style/main.js b/test/rendering/cases/circle-style/main.js similarity index 67% rename from rendering/cases/circle-style/main.js rename to test/rendering/cases/circle-style/main.js index 89b919859d..900e43b0e9 100644 --- a/rendering/cases/circle-style/main.js +++ b/test/rendering/cases/circle-style/main.js @@ -1,12 +1,12 @@ -import Circle from '../../../src/ol/style/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Circle from '../../../../src/ol/style/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const ellipse = new Feature(new Point([-50, -50])); diff --git a/rendering/cases/format-mvt-geojson/expected.png b/test/rendering/cases/format-mvt-geojson/expected.png similarity index 100% rename from rendering/cases/format-mvt-geojson/expected.png rename to test/rendering/cases/format-mvt-geojson/expected.png diff --git a/rendering/cases/format-mvt-geojson/main.js b/test/rendering/cases/format-mvt-geojson/main.js similarity index 71% rename from rendering/cases/format-mvt-geojson/main.js rename to test/rendering/cases/format-mvt-geojson/main.js index 711214dff5..b919fdc4d3 100644 --- a/rendering/cases/format-mvt-geojson/main.js +++ b/test/rendering/cases/format-mvt-geojson/main.js @@ -1,8 +1,8 @@ -import {Feature, Map, View} from '../../../src/ol/index.js'; -import {GeoJSON, MVT} from '../../../src/ol/format.js'; -import {VectorTile as VectorTileLayer} from '../../../src/ol/layer.js'; -import {VectorTile as VectorTileSource} from '../../../src/ol/source.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +import {Feature, Map, View} from '../../../../src/ol/index.js'; +import {GeoJSON, MVT} from '../../../../src/ol/format.js'; +import {VectorTile as VectorTileLayer} from '../../../../src/ol/layer.js'; +import {VectorTile as VectorTileSource} from '../../../../src/ol/source.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([0.26, 24.08]); diff --git a/rendering/cases/geometry-geographic/expected.png b/test/rendering/cases/geometry-geographic/expected.png similarity index 100% rename from rendering/cases/geometry-geographic/expected.png rename to test/rendering/cases/geometry-geographic/expected.png diff --git a/rendering/cases/geometry-geographic/main.js b/test/rendering/cases/geometry-geographic/main.js similarity index 64% rename from rendering/cases/geometry-geographic/main.js rename to test/rendering/cases/geometry-geographic/main.js index bb6418d329..38841dd38e 100644 --- a/rendering/cases/geometry-geographic/main.js +++ b/test/rendering/cases/geometry-geographic/main.js @@ -1,12 +1,12 @@ -import {Circle, Fill, Style} from '../../../src/ol/style.js'; -import {Feature, Map, View} from '../../../src/ol/index.js'; -import {Point} from '../../../src/ol/geom.js'; +import {Circle, Fill, Style} from '../../../../src/ol/style.js'; +import {Feature, Map, View} from '../../../../src/ol/index.js'; +import {Point} from '../../../../src/ol/geom.js'; import { Tile as TileLayer, Vector as VectorLayer, -} from '../../../src/ol/layer.js'; -import {Vector as VectorSource, XYZ} from '../../../src/ol/source.js'; -import {useGeographic} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/layer.js'; +import {Vector as VectorSource, XYZ} from '../../../../src/ol/source.js'; +import {useGeographic} from '../../../../src/ol/proj.js'; useGeographic(); diff --git a/rendering/cases/heatmap-layer/expected.png b/test/rendering/cases/heatmap-layer/expected.png similarity index 100% rename from rendering/cases/heatmap-layer/expected.png rename to test/rendering/cases/heatmap-layer/expected.png diff --git a/rendering/cases/heatmap-layer/main.js b/test/rendering/cases/heatmap-layer/main.js similarity index 64% rename from rendering/cases/heatmap-layer/main.js rename to test/rendering/cases/heatmap-layer/main.js index 4f74275760..27ba83f7aa 100644 --- a/rendering/cases/heatmap-layer/main.js +++ b/test/rendering/cases/heatmap-layer/main.js @@ -1,10 +1,10 @@ -import KML from '../../../src/ol/format/KML.js'; -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {Heatmap as HeatmapLayer} from '../../../src/ol/layer.js'; +import KML from '../../../../src/ol/format/KML.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {Heatmap as HeatmapLayer} from '../../../../src/ol/layer.js'; const vector = new HeatmapLayer({ source: new VectorSource({ diff --git a/rendering/cases/icon-opacity/expected.png b/test/rendering/cases/icon-opacity/expected.png similarity index 100% rename from rendering/cases/icon-opacity/expected.png rename to test/rendering/cases/icon-opacity/expected.png diff --git a/rendering/cases/icon-opacity/main.js b/test/rendering/cases/icon-opacity/main.js similarity index 63% rename from rendering/cases/icon-opacity/main.js rename to test/rendering/cases/icon-opacity/main.js index 5ed35d0515..f8fb63cb96 100644 --- a/rendering/cases/icon-opacity/main.js +++ b/test/rendering/cases/icon-opacity/main.js @@ -1,14 +1,14 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import View from '../../../src/ol/View.js'; -import {Icon, Style} from '../../../src/ol/style.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import View from '../../../../src/ol/View.js'; +import {Icon, Style} from '../../../../src/ol/style.js'; import { Tile as TileLayer, Vector as VectorLayer, -} from '../../../src/ol/layer.js'; -import {Vector as VectorSource, XYZ} from '../../../src/ol/source.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/layer.js'; +import {Vector as VectorSource, XYZ} from '../../../../src/ol/source.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([8.6, 50.1]); diff --git a/rendering/cases/icon-scale/expected.png b/test/rendering/cases/icon-scale/expected.png similarity index 100% rename from rendering/cases/icon-scale/expected.png rename to test/rendering/cases/icon-scale/expected.png diff --git a/rendering/cases/icon-scale/main.js b/test/rendering/cases/icon-scale/main.js similarity index 84% rename from rendering/cases/icon-scale/main.js rename to test/rendering/cases/icon-scale/main.js index cb3744c6fe..7bfe2d7c98 100644 --- a/rendering/cases/icon-scale/main.js +++ b/test/rendering/cases/icon-scale/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import Icon from '../../../src/ol/style/Icon.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Icon from '../../../../src/ol/style/Icon.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const features = [ new Feature({ diff --git a/rendering/cases/icon-symbol-svg/expected.png b/test/rendering/cases/icon-symbol-svg/expected.png similarity index 100% rename from rendering/cases/icon-symbol-svg/expected.png rename to test/rendering/cases/icon-symbol-svg/expected.png diff --git a/rendering/cases/icon-symbol-svg/main.js b/test/rendering/cases/icon-symbol-svg/main.js similarity index 75% rename from rendering/cases/icon-symbol-svg/main.js rename to test/rendering/cases/icon-symbol-svg/main.js index 355f72a499..bae4bfde33 100644 --- a/rendering/cases/icon-symbol-svg/main.js +++ b/test/rendering/cases/icon-symbol-svg/main.js @@ -1,14 +1,14 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import View from '../../../src/ol/View.js'; -import {Icon, Style} from '../../../src/ol/style.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import View from '../../../../src/ol/View.js'; +import {Icon, Style} from '../../../../src/ol/style.js'; import { Tile as TileLayer, Vector as VectorLayer, -} from '../../../src/ol/layer.js'; -import {Vector as VectorSource, XYZ} from '../../../src/ol/source.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/layer.js'; +import {Vector as VectorSource, XYZ} from '../../../../src/ol/source.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([8, 50]); diff --git a/rendering/cases/icon-symbol/expected.png b/test/rendering/cases/icon-symbol/expected.png similarity index 100% rename from rendering/cases/icon-symbol/expected.png rename to test/rendering/cases/icon-symbol/expected.png diff --git a/rendering/cases/icon-symbol/main.js b/test/rendering/cases/icon-symbol/main.js similarity index 62% rename from rendering/cases/icon-symbol/main.js rename to test/rendering/cases/icon-symbol/main.js index 0dcaf38dca..69206f06b7 100644 --- a/rendering/cases/icon-symbol/main.js +++ b/test/rendering/cases/icon-symbol/main.js @@ -1,14 +1,14 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import View from '../../../src/ol/View.js'; -import {Icon, Style} from '../../../src/ol/style.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import View from '../../../../src/ol/View.js'; +import {Icon, Style} from '../../../../src/ol/style.js'; import { Tile as TileLayer, Vector as VectorLayer, -} from '../../../src/ol/layer.js'; -import {Vector as VectorSource, XYZ} from '../../../src/ol/source.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/layer.js'; +import {Vector as VectorSource, XYZ} from '../../../../src/ol/source.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([8.6, 50.1]); diff --git a/rendering/cases/image-no-stretch-disable-smoothing/expected.png b/test/rendering/cases/image-no-stretch-disable-smoothing/expected.png similarity index 100% rename from rendering/cases/image-no-stretch-disable-smoothing/expected.png rename to test/rendering/cases/image-no-stretch-disable-smoothing/expected.png diff --git a/rendering/cases/image-no-stretch-disable-smoothing/main.js b/test/rendering/cases/image-no-stretch-disable-smoothing/main.js similarity index 63% rename from rendering/cases/image-no-stretch-disable-smoothing/main.js rename to test/rendering/cases/image-no-stretch-disable-smoothing/main.js index 201f0e1baa..70d455fad5 100644 --- a/rendering/cases/image-no-stretch-disable-smoothing/main.js +++ b/test/rendering/cases/image-no-stretch-disable-smoothing/main.js @@ -1,7 +1,7 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import Static from '../../../src/ol/source/ImageStatic.js'; -import View from '../../../src/ol/View.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import Static from '../../../../src/ol/source/ImageStatic.js'; +import View from '../../../../src/ol/View.js'; const source = new Static({ url: '/data/tiles/osm/5/5/12.png', diff --git a/rendering/cases/image-stretched-disable-smoothing/expected.png b/test/rendering/cases/image-stretched-disable-smoothing/expected.png similarity index 100% rename from rendering/cases/image-stretched-disable-smoothing/expected.png rename to test/rendering/cases/image-stretched-disable-smoothing/expected.png diff --git a/rendering/cases/image-stretched-disable-smoothing/main.js b/test/rendering/cases/image-stretched-disable-smoothing/main.js similarity index 58% rename from rendering/cases/image-stretched-disable-smoothing/main.js rename to test/rendering/cases/image-stretched-disable-smoothing/main.js index 07b1cb1ae0..c5c9fc60f4 100644 --- a/rendering/cases/image-stretched-disable-smoothing/main.js +++ b/test/rendering/cases/image-stretched-disable-smoothing/main.js @@ -1,8 +1,8 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import Static from '../../../src/ol/source/ImageStatic.js'; -import View from '../../../src/ol/View.js'; -import {fromLonLat, transformExtent} from '../../../src/ol/proj.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import Static from '../../../../src/ol/source/ImageStatic.js'; +import View from '../../../../src/ol/View.js'; +import {fromLonLat, transformExtent} from '../../../../src/ol/proj.js'; const source = new Static({ url: '/data/tiles/osm/5/5/12.png', diff --git a/rendering/cases/immediate-geographic/expected.png b/test/rendering/cases/immediate-geographic/expected.png similarity index 100% rename from rendering/cases/immediate-geographic/expected.png rename to test/rendering/cases/immediate-geographic/expected.png diff --git a/rendering/cases/immediate-geographic/main.js b/test/rendering/cases/immediate-geographic/main.js similarity index 58% rename from rendering/cases/immediate-geographic/main.js rename to test/rendering/cases/immediate-geographic/main.js index 82f6935737..60c0a2f539 100644 --- a/rendering/cases/immediate-geographic/main.js +++ b/test/rendering/cases/immediate-geographic/main.js @@ -1,10 +1,10 @@ -import TileLayer from '../../../src/ol/layer/Tile.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {Circle, Fill, Style} from '../../../src/ol/style.js'; -import {Map, View} from '../../../src/ol/index.js'; -import {Point} from '../../../src/ol/geom.js'; -import {getVectorContext} from '../../../src/ol/render.js'; -import {useGeographic} from '../../../src/ol/proj.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {Circle, Fill, Style} from '../../../../src/ol/style.js'; +import {Map, View} from '../../../../src/ol/index.js'; +import {Point} from '../../../../src/ol/geom.js'; +import {getVectorContext} from '../../../../src/ol/render.js'; +import {useGeographic} from '../../../../src/ol/proj.js'; useGeographic(); diff --git a/rendering/cases/layer-clipping/expected.png b/test/rendering/cases/layer-clipping/expected.png similarity index 100% rename from rendering/cases/layer-clipping/expected.png rename to test/rendering/cases/layer-clipping/expected.png diff --git a/rendering/cases/layer-clipping/main.js b/test/rendering/cases/layer-clipping/main.js similarity index 71% rename from rendering/cases/layer-clipping/main.js rename to test/rendering/cases/layer-clipping/main.js index 23c1a27829..3bdf040489 100644 --- a/rendering/cases/layer-clipping/main.js +++ b/test/rendering/cases/layer-clipping/main.js @@ -1,11 +1,11 @@ -import Map from '../../../src/ol/Map.js'; -import MultiPolygon from '../../../src/ol/geom/MultiPolygon.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {getVectorContext} from '../../../src/ol/render.js'; +import Map from '../../../../src/ol/Map.js'; +import MultiPolygon from '../../../../src/ol/geom/MultiPolygon.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {getVectorContext} from '../../../../src/ol/render.js'; const source = new XYZ({ url: '/data/tiles/osm/{z}/{x}/{y}.png', diff --git a/rendering/cases/layer-group/expected.png b/test/rendering/cases/layer-group/expected.png similarity index 100% rename from rendering/cases/layer-group/expected.png rename to test/rendering/cases/layer-group/expected.png diff --git a/rendering/cases/layer-group/main.js b/test/rendering/cases/layer-group/main.js similarity index 65% rename from rendering/cases/layer-group/main.js rename to test/rendering/cases/layer-group/main.js index d61b52e2ac..b47eace0e2 100644 --- a/rendering/cases/layer-group/main.js +++ b/test/rendering/cases/layer-group/main.js @@ -1,7 +1,10 @@ -import Map from '../../../src/ol/Map.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {Group as LayerGroup, Tile as TileLayer} from '../../../src/ol/layer.js'; +import Map from '../../../../src/ol/Map.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import { + Group as LayerGroup, + Tile as TileLayer, +} from '../../../../src/ol/layer.js'; new Map({ target: 'map', diff --git a/rendering/cases/layer-image-extent-rotation-geographic/expected.png b/test/rendering/cases/layer-image-extent-rotation-geographic/expected.png similarity index 100% rename from rendering/cases/layer-image-extent-rotation-geographic/expected.png rename to test/rendering/cases/layer-image-extent-rotation-geographic/expected.png diff --git a/rendering/cases/layer-image-extent-rotation-geographic/main.js b/test/rendering/cases/layer-image-extent-rotation-geographic/main.js similarity index 71% rename from rendering/cases/layer-image-extent-rotation-geographic/main.js rename to test/rendering/cases/layer-image-extent-rotation-geographic/main.js index 3a3018e7fc..46585f6d36 100644 --- a/rendering/cases/layer-image-extent-rotation-geographic/main.js +++ b/test/rendering/cases/layer-image-extent-rotation-geographic/main.js @@ -1,12 +1,12 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import Static from '../../../src/ol/source/ImageStatic.js'; -import View from '../../../src/ol/View.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import Static from '../../../../src/ol/source/ImageStatic.js'; +import View from '../../../../src/ol/View.js'; import { get as getProjection, transformExtent, useGeographic, -} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/proj.js'; useGeographic(); diff --git a/rendering/cases/layer-image-extent-rotation/expected.png b/test/rendering/cases/layer-image-extent-rotation/expected.png similarity index 100% rename from rendering/cases/layer-image-extent-rotation/expected.png rename to test/rendering/cases/layer-image-extent-rotation/expected.png diff --git a/rendering/cases/layer-image-extent-rotation/main.js b/test/rendering/cases/layer-image-extent-rotation/main.js similarity index 73% rename from rendering/cases/layer-image-extent-rotation/main.js rename to test/rendering/cases/layer-image-extent-rotation/main.js index 43f505970c..09f4946a64 100644 --- a/rendering/cases/layer-image-extent-rotation/main.js +++ b/test/rendering/cases/layer-image-extent-rotation/main.js @@ -1,12 +1,12 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import Static from '../../../src/ol/source/ImageStatic.js'; -import View from '../../../src/ol/View.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import Static from '../../../../src/ol/source/ImageStatic.js'; +import View from '../../../../src/ol/View.js'; import { get as getProjection, transform, transformExtent, -} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/proj.js'; const center = transform([-122.416667, 37.783333], 'EPSG:4326', 'EPSG:3857'); const extent = transformExtent( [-123.1, 37.1, -122.1, 37.9], diff --git a/rendering/cases/layer-image/expected.png b/test/rendering/cases/layer-image/expected.png similarity index 100% rename from rendering/cases/layer-image/expected.png rename to test/rendering/cases/layer-image/expected.png diff --git a/rendering/cases/layer-image/main.js b/test/rendering/cases/layer-image/main.js similarity index 68% rename from rendering/cases/layer-image/main.js rename to test/rendering/cases/layer-image/main.js index 1582be0eda..e15e3fbef7 100644 --- a/rendering/cases/layer-image/main.js +++ b/test/rendering/cases/layer-image/main.js @@ -1,12 +1,12 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import Static from '../../../src/ol/source/ImageStatic.js'; -import View from '../../../src/ol/View.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import Static from '../../../../src/ol/source/ImageStatic.js'; +import View from '../../../../src/ol/View.js'; import { get as getProjection, transform, transformExtent, -} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/proj.js'; const center = transform([-122.416667, 37.783333], 'EPSG:4326', 'EPSG:3857'); new Map({ diff --git a/rendering/cases/layer-mapbox-vector/expected.png b/test/rendering/cases/layer-mapbox-vector/expected.png similarity index 100% rename from rendering/cases/layer-mapbox-vector/expected.png rename to test/rendering/cases/layer-mapbox-vector/expected.png diff --git a/rendering/cases/layer-mapbox-vector/main.js b/test/rendering/cases/layer-mapbox-vector/main.js similarity index 67% rename from rendering/cases/layer-mapbox-vector/main.js rename to test/rendering/cases/layer-mapbox-vector/main.js index 0ba5e04242..77d2888de6 100644 --- a/rendering/cases/layer-mapbox-vector/main.js +++ b/test/rendering/cases/layer-mapbox-vector/main.js @@ -1,6 +1,6 @@ -import Map from '../../../src/ol/Map.js'; -import MapboxVector from '../../../src/ol/layer/MapboxVector.js'; -import View from '../../../src/ol/View.js'; +import Map from '../../../../src/ol/Map.js'; +import MapboxVector from '../../../../src/ol/layer/MapboxVector.js'; +import View from '../../../../src/ol/View.js'; new Map({ layers: [ diff --git a/rendering/cases/layer-tile-extent-geographic/expected.png b/test/rendering/cases/layer-tile-extent-geographic/expected.png similarity index 100% rename from rendering/cases/layer-tile-extent-geographic/expected.png rename to test/rendering/cases/layer-tile-extent-geographic/expected.png diff --git a/rendering/cases/layer-tile-extent-geographic/main.js b/test/rendering/cases/layer-tile-extent-geographic/main.js similarity index 69% rename from rendering/cases/layer-tile-extent-geographic/main.js rename to test/rendering/cases/layer-tile-extent-geographic/main.js index d7bd2c4d5d..aa1ff56d99 100644 --- a/rendering/cases/layer-tile-extent-geographic/main.js +++ b/test/rendering/cases/layer-tile-extent-geographic/main.js @@ -2,11 +2,11 @@ * Tile layers get clipped to their extent. */ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {useGeographic} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {useGeographic} from '../../../../src/ol/proj.js'; useGeographic(); diff --git a/rendering/cases/layer-tile-extent/expected.png b/test/rendering/cases/layer-tile-extent/expected.png similarity index 100% rename from rendering/cases/layer-tile-extent/expected.png rename to test/rendering/cases/layer-tile-extent/expected.png diff --git a/rendering/cases/layer-tile-extent/main.js b/test/rendering/cases/layer-tile-extent/main.js similarity index 66% rename from rendering/cases/layer-tile-extent/main.js rename to test/rendering/cases/layer-tile-extent/main.js index 04821c4aee..8f6a5122f9 100644 --- a/rendering/cases/layer-tile-extent/main.js +++ b/test/rendering/cases/layer-tile-extent/main.js @@ -2,12 +2,12 @@ * Tile layers get clipped to their extent. */ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; -import {transformExtent} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; +import {transformExtent} from '../../../../src/ol/proj.js'; const center = fromLonLat([7, 50]); const extent = transformExtent([2, 47, 10, 53], 'EPSG:4326', 'EPSG:3857'); diff --git a/rendering/cases/layer-tile-none-square/expected.png b/test/rendering/cases/layer-tile-none-square/expected.png similarity index 100% rename from rendering/cases/layer-tile-none-square/expected.png rename to test/rendering/cases/layer-tile-none-square/expected.png diff --git a/rendering/cases/layer-tile-none-square/main.js b/test/rendering/cases/layer-tile-none-square/main.js similarity index 59% rename from rendering/cases/layer-tile-none-square/main.js rename to test/rendering/cases/layer-tile-none-square/main.js index a4766ed4d2..f5de7cbc8c 100644 --- a/rendering/cases/layer-tile-none-square/main.js +++ b/test/rendering/cases/layer-tile-none-square/main.js @@ -1,8 +1,8 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; const center = [-10997148, 4569099]; diff --git a/rendering/cases/layer-tile-opacity/expected.png b/test/rendering/cases/layer-tile-opacity/expected.png similarity index 100% rename from rendering/cases/layer-tile-opacity/expected.png rename to test/rendering/cases/layer-tile-opacity/expected.png diff --git a/rendering/cases/layer-tile-opacity/main.js b/test/rendering/cases/layer-tile-opacity/main.js similarity index 55% rename from rendering/cases/layer-tile-opacity/main.js rename to test/rendering/cases/layer-tile-opacity/main.js index de389c55c9..1044e769cb 100644 --- a/rendering/cases/layer-tile-opacity/main.js +++ b/test/rendering/cases/layer-tile-opacity/main.js @@ -1,8 +1,8 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([8.6, 50.1]); diff --git a/rendering/cases/layer-tile-render-listener/expected.png b/test/rendering/cases/layer-tile-render-listener/expected.png similarity index 100% rename from rendering/cases/layer-tile-render-listener/expected.png rename to test/rendering/cases/layer-tile-render-listener/expected.png diff --git a/rendering/cases/layer-tile-render-listener/main.js b/test/rendering/cases/layer-tile-render-listener/main.js similarity index 57% rename from rendering/cases/layer-tile-render-listener/main.js rename to test/rendering/cases/layer-tile-render-listener/main.js index 2472a6a5c0..efe6f94895 100644 --- a/rendering/cases/layer-tile-render-listener/main.js +++ b/test/rendering/cases/layer-tile-render-listener/main.js @@ -1,13 +1,13 @@ -import CircleStyle from '../../../src/ol/style/Circle.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {fromLonLat, transform} from '../../../src/ol/proj.js'; -import {getVectorContext} from '../../../src/ol/render.js'; +import CircleStyle from '../../../../src/ol/style/Circle.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {fromLonLat, transform} from '../../../../src/ol/proj.js'; +import {getVectorContext} from '../../../../src/ol/render.js'; const center = fromLonLat([8.6, 50.1]); diff --git a/rendering/cases/layer-tile-simple/expected.png b/test/rendering/cases/layer-tile-simple/expected.png similarity index 100% rename from rendering/cases/layer-tile-simple/expected.png rename to test/rendering/cases/layer-tile-simple/expected.png diff --git a/rendering/cases/layer-tile-simple/main.js b/test/rendering/cases/layer-tile-simple/main.js similarity index 53% rename from rendering/cases/layer-tile-simple/main.js rename to test/rendering/cases/layer-tile-simple/main.js index 0a329ac78e..fee206da9c 100644 --- a/rendering/cases/layer-tile-simple/main.js +++ b/test/rendering/cases/layer-tile-simple/main.js @@ -1,8 +1,8 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([8.6, 50.1]); diff --git a/rendering/cases/layer-tile-transition/expected.png b/test/rendering/cases/layer-tile-transition/expected.png similarity index 100% rename from rendering/cases/layer-tile-transition/expected.png rename to test/rendering/cases/layer-tile-transition/expected.png diff --git a/rendering/cases/layer-tile-transition/main.js b/test/rendering/cases/layer-tile-transition/main.js similarity index 51% rename from rendering/cases/layer-tile-transition/main.js rename to test/rendering/cases/layer-tile-transition/main.js index 846fdb888a..13fba2b1c9 100644 --- a/rendering/cases/layer-tile-transition/main.js +++ b/test/rendering/cases/layer-tile-transition/main.js @@ -1,8 +1,8 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([8.6, 50.1]); diff --git a/rendering/cases/layer-tile-two-layers/expected.png b/test/rendering/cases/layer-tile-two-layers/expected.png similarity index 100% rename from rendering/cases/layer-tile-two-layers/expected.png rename to test/rendering/cases/layer-tile-two-layers/expected.png diff --git a/rendering/cases/layer-tile-two-layers/main.js b/test/rendering/cases/layer-tile-two-layers/main.js similarity index 66% rename from rendering/cases/layer-tile-two-layers/main.js rename to test/rendering/cases/layer-tile-two-layers/main.js index d316596210..65887a43f0 100644 --- a/rendering/cases/layer-tile-two-layers/main.js +++ b/test/rendering/cases/layer-tile-two-layers/main.js @@ -1,8 +1,8 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([8.6, 50.1]); diff --git a/rendering/cases/layer-vector-decluttering/expected.png b/test/rendering/cases/layer-vector-decluttering/expected.png similarity index 100% rename from rendering/cases/layer-vector-decluttering/expected.png rename to test/rendering/cases/layer-vector-decluttering/expected.png diff --git a/rendering/cases/layer-vector-decluttering/main.js b/test/rendering/cases/layer-vector-decluttering/main.js similarity index 83% rename from rendering/cases/layer-vector-decluttering/main.js rename to test/rendering/cases/layer-vector-decluttering/main.js index 528e9cadd4..f48adb890f 100644 --- a/rendering/cases/layer-vector-decluttering/main.js +++ b/test/rendering/cases/layer-vector-decluttering/main.js @@ -1,15 +1,15 @@ -import CircleStyle from '../../../src/ol/style/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import Text from '../../../src/ol/style/Text.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import CircleStyle from '../../../../src/ol/style/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import Text from '../../../../src/ol/style/Text.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; let center = [1825927.7316762917, 6143091.089223046]; const map = new Map({ diff --git a/rendering/cases/layer-vector-extent-geographic/expected.png b/test/rendering/cases/layer-vector-extent-geographic/expected.png similarity index 100% rename from rendering/cases/layer-vector-extent-geographic/expected.png rename to test/rendering/cases/layer-vector-extent-geographic/expected.png diff --git a/test/rendering/cases/layer-vector-extent-geographic/main.js b/test/rendering/cases/layer-vector-extent-geographic/main.js new file mode 100644 index 0000000000..322e51dbc3 --- /dev/null +++ b/test/rendering/cases/layer-vector-extent-geographic/main.js @@ -0,0 +1,27 @@ +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import {useGeographic} from '../../../../src/ol/proj.js'; + +useGeographic(); + +new Map({ + target: 'map', + view: new View({ + center: [0, 0], + zoom: 1, + }), + layers: [ + new VectorLayer({ + extent: [-50, -45, 50, 45], + source: new VectorSource({ + url: '/data/countries.json', + format: new GeoJSON(), + }), + }), + ], +}); + +render(); diff --git a/rendering/cases/layer-vector-extent-rotation/expected.png b/test/rendering/cases/layer-vector-extent-rotation/expected.png similarity index 100% rename from rendering/cases/layer-vector-extent-rotation/expected.png rename to test/rendering/cases/layer-vector-extent-rotation/expected.png diff --git a/rendering/cases/layer-vector-extent-rotation/main.js b/test/rendering/cases/layer-vector-extent-rotation/main.js similarity index 51% rename from rendering/cases/layer-vector-extent-rotation/main.js rename to test/rendering/cases/layer-vector-extent-rotation/main.js index d3aa1d82f8..c7a02e7ab6 100644 --- a/rendering/cases/layer-vector-extent-rotation/main.js +++ b/test/rendering/cases/layer-vector-extent-rotation/main.js @@ -1,9 +1,9 @@ -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import Map from '../../../src/ol/Map.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import {transformExtent} from '../../../src/ol/proj.js'; +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import {transformExtent} from '../../../../src/ol/proj.js'; new Map({ target: 'map', diff --git a/rendering/cases/layer-vector-multi-world/expected.png b/test/rendering/cases/layer-vector-multi-world/expected.png similarity index 100% rename from rendering/cases/layer-vector-multi-world/expected.png rename to test/rendering/cases/layer-vector-multi-world/expected.png diff --git a/rendering/cases/layer-vector-multi-world/main.js b/test/rendering/cases/layer-vector-multi-world/main.js similarity index 67% rename from rendering/cases/layer-vector-multi-world/main.js rename to test/rendering/cases/layer-vector-multi-world/main.js index ae458e87fe..546203c8d8 100644 --- a/rendering/cases/layer-vector-multi-world/main.js +++ b/test/rendering/cases/layer-vector-multi-world/main.js @@ -1,13 +1,13 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Polygon from '../../../src/ol/geom/Polygon.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import {Projection, addCoordinateTransforms} from '../../../src/ol/proj.js'; -import {fromEPSG4326, toEPSG4326} from '../../../src/ol/proj/epsg3857.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import {Projection, addCoordinateTransforms} from '../../../../src/ol/proj.js'; +import {fromEPSG4326, toEPSG4326} from '../../../../src/ol/proj/epsg3857.js'; const projection = new Projection({ code: 'custom', diff --git a/rendering/cases/layer-vector-multigeometry-decluttering/expected.png b/test/rendering/cases/layer-vector-multigeometry-decluttering/expected.png similarity index 100% rename from rendering/cases/layer-vector-multigeometry-decluttering/expected.png rename to test/rendering/cases/layer-vector-multigeometry-decluttering/expected.png diff --git a/rendering/cases/layer-vector-multigeometry-decluttering/main.js b/test/rendering/cases/layer-vector-multigeometry-decluttering/main.js similarity index 71% rename from rendering/cases/layer-vector-multigeometry-decluttering/main.js rename to test/rendering/cases/layer-vector-multigeometry-decluttering/main.js index e8de340739..43dd1faf7b 100644 --- a/rendering/cases/layer-vector-multigeometry-decluttering/main.js +++ b/test/rendering/cases/layer-vector-multigeometry-decluttering/main.js @@ -1,9 +1,9 @@ -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import Map from '../../../src/ol/Map.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import {Fill, Stroke, Style, Text} from '../../../src/ol/style.js'; +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import {Fill, Stroke, Style, Text} from '../../../../src/ol/style.js'; const map = new Map({ target: 'map', diff --git a/rendering/cases/layer-vector-multipoint-decluttering/expected.png b/test/rendering/cases/layer-vector-multipoint-decluttering/expected.png similarity index 100% rename from rendering/cases/layer-vector-multipoint-decluttering/expected.png rename to test/rendering/cases/layer-vector-multipoint-decluttering/expected.png diff --git a/rendering/cases/layer-vector-multipoint-decluttering/main.js b/test/rendering/cases/layer-vector-multipoint-decluttering/main.js similarity index 67% rename from rendering/cases/layer-vector-multipoint-decluttering/main.js rename to test/rendering/cases/layer-vector-multipoint-decluttering/main.js index 7b17e84ecc..137be754f7 100644 --- a/rendering/cases/layer-vector-multipoint-decluttering/main.js +++ b/test/rendering/cases/layer-vector-multipoint-decluttering/main.js @@ -1,10 +1,10 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import MultiPoint from '../../../src/ol/geom/MultiPoint.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import {Icon, Stroke, Style, Text} from '../../../src/ol/style.js'; -import {Vector as VectorLayer} from '../../../src/ol/layer.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import {Icon, Stroke, Style, Text} from '../../../../src/ol/style.js'; +import {Vector as VectorLayer} from '../../../../src/ol/layer.js'; const vectorLayer = new VectorLayer({ declutter: true, diff --git a/rendering/cases/layer-vector-polygon-partial/expected.png b/test/rendering/cases/layer-vector-polygon-partial/expected.png similarity index 100% rename from rendering/cases/layer-vector-polygon-partial/expected.png rename to test/rendering/cases/layer-vector-polygon-partial/expected.png diff --git a/rendering/cases/layer-vector-polygon-partial/main.js b/test/rendering/cases/layer-vector-polygon-partial/main.js similarity index 62% rename from rendering/cases/layer-vector-polygon-partial/main.js rename to test/rendering/cases/layer-vector-polygon-partial/main.js index c35ab43021..f76b26ab2f 100644 --- a/rendering/cases/layer-vector-polygon-partial/main.js +++ b/test/rendering/cases/layer-vector-polygon-partial/main.js @@ -1,12 +1,12 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Polygon from '../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const src = new VectorSource({ features: [ diff --git a/rendering/cases/layer-vector-polygon/expected.png b/test/rendering/cases/layer-vector-polygon/expected.png similarity index 100% rename from rendering/cases/layer-vector-polygon/expected.png rename to test/rendering/cases/layer-vector-polygon/expected.png diff --git a/rendering/cases/layer-vector-polygon/main.js b/test/rendering/cases/layer-vector-polygon/main.js similarity index 65% rename from rendering/cases/layer-vector-polygon/main.js rename to test/rendering/cases/layer-vector-polygon/main.js index 22a16666bf..f98a3b50ad 100644 --- a/rendering/cases/layer-vector-polygon/main.js +++ b/test/rendering/cases/layer-vector-polygon/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Polygon from '../../../src/ol/geom/Polygon.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const feature = new Feature({ geometry: new Polygon([ diff --git a/rendering/cases/layer-vector/expected.png b/test/rendering/cases/layer-vector/expected.png similarity index 100% rename from rendering/cases/layer-vector/expected.png rename to test/rendering/cases/layer-vector/expected.png diff --git a/rendering/cases/layer-vector/main.js b/test/rendering/cases/layer-vector/main.js similarity index 80% rename from rendering/cases/layer-vector/main.js rename to test/rendering/cases/layer-vector/main.js index db8448e67d..4bd09ec944 100644 --- a/rendering/cases/layer-vector/main.js +++ b/test/rendering/cases/layer-vector/main.js @@ -1,13 +1,13 @@ -import Circle from '../../../src/ol/geom/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Polygon from '../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Circle from '../../../../src/ol/geom/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const center = [1825927.7316762917, 6143091.089223046]; diff --git a/rendering/cases/layer-vectorimage-decluttering/expected.png b/test/rendering/cases/layer-vectorimage-decluttering/expected.png similarity index 100% rename from rendering/cases/layer-vectorimage-decluttering/expected.png rename to test/rendering/cases/layer-vectorimage-decluttering/expected.png diff --git a/rendering/cases/layer-vectorimage-decluttering/main.js b/test/rendering/cases/layer-vectorimage-decluttering/main.js similarity index 83% rename from rendering/cases/layer-vectorimage-decluttering/main.js rename to test/rendering/cases/layer-vectorimage-decluttering/main.js index e0c23c9e4b..f9e03b8d7e 100644 --- a/rendering/cases/layer-vectorimage-decluttering/main.js +++ b/test/rendering/cases/layer-vectorimage-decluttering/main.js @@ -1,15 +1,15 @@ -import CircleStyle from '../../../src/ol/style/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import Text from '../../../src/ol/style/Text.js'; -import VectorImageLayer from '../../../src/ol/layer/VectorImage.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import CircleStyle from '../../../../src/ol/style/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import Text from '../../../../src/ol/style/Text.js'; +import VectorImageLayer from '../../../../src/ol/layer/VectorImage.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; let center = [1825927.7316762917, 6143091.089223046]; const map = new Map({ diff --git a/rendering/cases/layer-vectorimage-extent-rotation-intersection/expected.png b/test/rendering/cases/layer-vectorimage-extent-rotation-intersection/expected.png similarity index 100% rename from rendering/cases/layer-vectorimage-extent-rotation-intersection/expected.png rename to test/rendering/cases/layer-vectorimage-extent-rotation-intersection/expected.png diff --git a/rendering/cases/layer-vectorimage-extent-rotation-intersection/main.js b/test/rendering/cases/layer-vectorimage-extent-rotation-intersection/main.js similarity index 69% rename from rendering/cases/layer-vectorimage-extent-rotation-intersection/main.js rename to test/rendering/cases/layer-vectorimage-extent-rotation-intersection/main.js index 1aeed82dbb..64dcb6910b 100644 --- a/rendering/cases/layer-vectorimage-extent-rotation-intersection/main.js +++ b/test/rendering/cases/layer-vectorimage-extent-rotation-intersection/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import VectorImageLayer from '../../../src/ol/layer/VectorImage.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import {Fill, RegularShape, Stroke, Style} from '../../../src/ol/style.js'; -import {fromExtent} from '../../../src/ol/geom/Polygon.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import VectorImageLayer from '../../../../src/ol/layer/VectorImage.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import {Fill, RegularShape, Stroke, Style} from '../../../../src/ol/style.js'; +import {fromExtent} from '../../../../src/ol/geom/Polygon.js'; const extent = [ 1900e3 - 100000, diff --git a/rendering/cases/layer-vectorimage-extent-rotation/expected.png b/test/rendering/cases/layer-vectorimage-extent-rotation/expected.png similarity index 100% rename from rendering/cases/layer-vectorimage-extent-rotation/expected.png rename to test/rendering/cases/layer-vectorimage-extent-rotation/expected.png diff --git a/rendering/cases/layer-vectorimage-extent-rotation/main.js b/test/rendering/cases/layer-vectorimage-extent-rotation/main.js similarity index 51% rename from rendering/cases/layer-vectorimage-extent-rotation/main.js rename to test/rendering/cases/layer-vectorimage-extent-rotation/main.js index 0d4390b471..19ad64ca19 100644 --- a/rendering/cases/layer-vectorimage-extent-rotation/main.js +++ b/test/rendering/cases/layer-vectorimage-extent-rotation/main.js @@ -1,9 +1,9 @@ -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import Map from '../../../src/ol/Map.js'; -import VectorImageLayer from '../../../src/ol/layer/VectorImage.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import {transformExtent} from '../../../src/ol/proj.js'; +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorImageLayer from '../../../../src/ol/layer/VectorImage.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import {transformExtent} from '../../../../src/ol/proj.js'; new Map({ target: 'map', diff --git a/rendering/cases/layer-vectorimage/expected.png b/test/rendering/cases/layer-vectorimage/expected.png similarity index 100% rename from rendering/cases/layer-vectorimage/expected.png rename to test/rendering/cases/layer-vectorimage/expected.png diff --git a/rendering/cases/layer-vectorimage/main.js b/test/rendering/cases/layer-vectorimage/main.js similarity index 80% rename from rendering/cases/layer-vectorimage/main.js rename to test/rendering/cases/layer-vectorimage/main.js index 9719125c93..5ed570f0c1 100644 --- a/rendering/cases/layer-vectorimage/main.js +++ b/test/rendering/cases/layer-vectorimage/main.js @@ -1,13 +1,13 @@ -import Circle from '../../../src/ol/geom/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Polygon from '../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorImageLayer from '../../../src/ol/layer/VectorImage.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Circle from '../../../../src/ol/geom/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorImageLayer from '../../../../src/ol/layer/VectorImage.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const center = [1825927.7316762917, 6143091.089223046]; diff --git a/rendering/cases/layer-vectortile-icon-label/expected.png b/test/rendering/cases/layer-vectortile-icon-label/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-icon-label/expected.png rename to test/rendering/cases/layer-vectortile-icon-label/expected.png diff --git a/rendering/cases/layer-vectortile-icon-label/main.js b/test/rendering/cases/layer-vectortile-icon-label/main.js similarity index 70% rename from rendering/cases/layer-vectortile-icon-label/main.js rename to test/rendering/cases/layer-vectortile-icon-label/main.js index 3120eb4d74..ed1034a66f 100644 --- a/rendering/cases/layer-vectortile-icon-label/main.js +++ b/test/rendering/cases/layer-vectortile-icon-label/main.js @@ -1,6 +1,6 @@ -import Map from '../../../src/ol/Map.js'; -import MapboxVector from '../../../src/ol/layer/MapboxVector.js'; -import View from '../../../src/ol/View.js'; +import Map from '../../../../src/ol/Map.js'; +import MapboxVector from '../../../../src/ol/layer/MapboxVector.js'; +import View from '../../../../src/ol/View.js'; const mapboxVectorLayer = new MapboxVector({ styleUrl: '/data/styles/bright-v9/style.json', diff --git a/rendering/cases/layer-vectortile-opacity-declutter/expected.png b/test/rendering/cases/layer-vectortile-opacity-declutter/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-opacity-declutter/expected.png rename to test/rendering/cases/layer-vectortile-opacity-declutter/expected.png diff --git a/rendering/cases/layer-vectortile-opacity-declutter/main.js b/test/rendering/cases/layer-vectortile-opacity-declutter/main.js similarity index 58% rename from rendering/cases/layer-vectortile-opacity-declutter/main.js rename to test/rendering/cases/layer-vectortile-opacity-declutter/main.js index 7ea4b13cb7..3b0c60f15a 100644 --- a/rendering/cases/layer-vectortile-opacity-declutter/main.js +++ b/test/rendering/cases/layer-vectortile-opacity-declutter/main.js @@ -1,9 +1,9 @@ -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; new Map({ layers: [ diff --git a/rendering/cases/layer-vectortile-opacity/expected.png b/test/rendering/cases/layer-vectortile-opacity/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-opacity/expected.png rename to test/rendering/cases/layer-vectortile-opacity/expected.png diff --git a/rendering/cases/layer-vectortile-opacity/main.js b/test/rendering/cases/layer-vectortile-opacity/main.js similarity index 57% rename from rendering/cases/layer-vectortile-opacity/main.js rename to test/rendering/cases/layer-vectortile-opacity/main.js index bda563a18c..f9ae714000 100644 --- a/rendering/cases/layer-vectortile-opacity/main.js +++ b/test/rendering/cases/layer-vectortile-opacity/main.js @@ -1,9 +1,9 @@ -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; new Map({ layers: [ diff --git a/rendering/cases/layer-vectortile-renderbuffer/expected.png b/test/rendering/cases/layer-vectortile-renderbuffer/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-renderbuffer/expected.png rename to test/rendering/cases/layer-vectortile-renderbuffer/expected.png diff --git a/rendering/cases/layer-vectortile-renderbuffer/main.js b/test/rendering/cases/layer-vectortile-renderbuffer/main.js similarity index 70% rename from rendering/cases/layer-vectortile-renderbuffer/main.js rename to test/rendering/cases/layer-vectortile-renderbuffer/main.js index 439c671a65..a73caa7982 100644 --- a/rendering/cases/layer-vectortile-renderbuffer/main.js +++ b/test/rendering/cases/layer-vectortile-renderbuffer/main.js @@ -1,10 +1,10 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {Circle, Fill, Stroke, Style} from '../../../src/ol/style.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {Circle, Fill, Stroke, Style} from '../../../../src/ol/style.js'; const offset = 1380000; const points = [ diff --git a/rendering/cases/layer-vectortile-rendermode-vector-opacity/expected.png b/test/rendering/cases/layer-vectortile-rendermode-vector-opacity/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-rendermode-vector-opacity/expected.png rename to test/rendering/cases/layer-vectortile-rendermode-vector-opacity/expected.png diff --git a/rendering/cases/layer-vectortile-rendermode-vector-opacity/main.js b/test/rendering/cases/layer-vectortile-rendermode-vector-opacity/main.js similarity index 55% rename from rendering/cases/layer-vectortile-rendermode-vector-opacity/main.js rename to test/rendering/cases/layer-vectortile-rendermode-vector-opacity/main.js index bb36089195..dfff3a9fb5 100644 --- a/rendering/cases/layer-vectortile-rendermode-vector-opacity/main.js +++ b/test/rendering/cases/layer-vectortile-rendermode-vector-opacity/main.js @@ -1,10 +1,10 @@ -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileRenderType from '../../../src/ol/layer/VectorTileRenderType.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileRenderType from '../../../../src/ol/layer/VectorTileRenderType.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; new Map({ layers: [ diff --git a/rendering/cases/layer-vectortile-rendermode-vector/expected.png b/test/rendering/cases/layer-vectortile-rendermode-vector/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-rendermode-vector/expected.png rename to test/rendering/cases/layer-vectortile-rendermode-vector/expected.png diff --git a/rendering/cases/layer-vectortile-rendermode-vector/main.js b/test/rendering/cases/layer-vectortile-rendermode-vector/main.js similarity index 54% rename from rendering/cases/layer-vectortile-rendermode-vector/main.js rename to test/rendering/cases/layer-vectortile-rendermode-vector/main.js index f4f6beda3c..8e762e1217 100644 --- a/rendering/cases/layer-vectortile-rendermode-vector/main.js +++ b/test/rendering/cases/layer-vectortile-rendermode-vector/main.js @@ -1,10 +1,10 @@ -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileRenderType from '../../../src/ol/layer/VectorTileRenderType.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileRenderType from '../../../../src/ol/layer/VectorTileRenderType.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; new Map({ layers: [ diff --git a/rendering/cases/layer-vectortile-rotate-hidpi/expected.png b/test/rendering/cases/layer-vectortile-rotate-hidpi/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-rotate-hidpi/expected.png rename to test/rendering/cases/layer-vectortile-rotate-hidpi/expected.png diff --git a/rendering/cases/layer-vectortile-rotate-hidpi/main.js b/test/rendering/cases/layer-vectortile-rotate-hidpi/main.js similarity index 60% rename from rendering/cases/layer-vectortile-rotate-hidpi/main.js rename to test/rendering/cases/layer-vectortile-rotate-hidpi/main.js index 67ed651a06..d868343483 100644 --- a/rendering/cases/layer-vectortile-rotate-hidpi/main.js +++ b/test/rendering/cases/layer-vectortile-rotate-hidpi/main.js @@ -1,9 +1,9 @@ -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; const map = new Map({ pixelRatio: 2, diff --git a/rendering/cases/layer-vectortile-rotate-text/expected.png b/test/rendering/cases/layer-vectortile-rotate-text/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-rotate-text/expected.png rename to test/rendering/cases/layer-vectortile-rotate-text/expected.png diff --git a/rendering/cases/layer-vectortile-rotate-text/main.js b/test/rendering/cases/layer-vectortile-rotate-text/main.js similarity index 69% rename from rendering/cases/layer-vectortile-rotate-text/main.js rename to test/rendering/cases/layer-vectortile-rotate-text/main.js index 0056e4748a..cc07886d0b 100644 --- a/rendering/cases/layer-vectortile-rotate-text/main.js +++ b/test/rendering/cases/layer-vectortile-rotate-text/main.js @@ -1,10 +1,10 @@ -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {Stroke, Style, Text} from '../../../src/ol/style.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {Stroke, Style, Text} from '../../../../src/ol/style.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; new Map({ layers: [ diff --git a/rendering/cases/layer-vectortile-rotate-vector/expected.png b/test/rendering/cases/layer-vectortile-rotate-vector/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-rotate-vector/expected.png rename to test/rendering/cases/layer-vectortile-rotate-vector/expected.png diff --git a/rendering/cases/layer-vectortile-rotate-vector/main.js b/test/rendering/cases/layer-vectortile-rotate-vector/main.js similarity index 52% rename from rendering/cases/layer-vectortile-rotate-vector/main.js rename to test/rendering/cases/layer-vectortile-rotate-vector/main.js index 97754dcac4..1d850223cb 100644 --- a/rendering/cases/layer-vectortile-rotate-vector/main.js +++ b/test/rendering/cases/layer-vectortile-rotate-vector/main.js @@ -1,16 +1,16 @@ -import CircleStyle from '../../../src/ol/style/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import CircleStyle from '../../../../src/ol/style/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; const vectorSource = new VectorSource({ features: [new Feature(new Point([1825727.7316762917, 6143091.089223046]))], diff --git a/rendering/cases/layer-vectortile-rotate/expected.png b/test/rendering/cases/layer-vectortile-rotate/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-rotate/expected.png rename to test/rendering/cases/layer-vectortile-rotate/expected.png diff --git a/rendering/cases/layer-vectortile-rotate/main.js b/test/rendering/cases/layer-vectortile-rotate/main.js similarity index 58% rename from rendering/cases/layer-vectortile-rotate/main.js rename to test/rendering/cases/layer-vectortile-rotate/main.js index 1b14a7fff9..dc538ec890 100644 --- a/rendering/cases/layer-vectortile-rotate/main.js +++ b/test/rendering/cases/layer-vectortile-rotate/main.js @@ -1,9 +1,9 @@ -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; const map = new Map({ layers: [ diff --git a/rendering/cases/layer-vectortile-simple/expected.png b/test/rendering/cases/layer-vectortile-simple/expected.png similarity index 100% rename from rendering/cases/layer-vectortile-simple/expected.png rename to test/rendering/cases/layer-vectortile-simple/expected.png diff --git a/rendering/cases/layer-vectortile-simple/main.js b/test/rendering/cases/layer-vectortile-simple/main.js similarity index 56% rename from rendering/cases/layer-vectortile-simple/main.js rename to test/rendering/cases/layer-vectortile-simple/main.js index ea04ea1e21..432b7620cb 100644 --- a/rendering/cases/layer-vectortile-simple/main.js +++ b/test/rendering/cases/layer-vectortile-simple/main.js @@ -1,9 +1,9 @@ -import MVT from '../../../src/ol/format/MVT.js'; -import Map from '../../../src/ol/Map.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import MVT from '../../../../src/ol/format/MVT.js'; +import Map from '../../../../src/ol/Map.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; new Map({ layers: [ diff --git a/rendering/cases/linestring-style-css-filter/expected.png b/test/rendering/cases/linestring-style-css-filter/expected.png similarity index 100% rename from rendering/cases/linestring-style-css-filter/expected.png rename to test/rendering/cases/linestring-style-css-filter/expected.png diff --git a/rendering/cases/linestring-style-css-filter/index.html b/test/rendering/cases/linestring-style-css-filter/index.html similarity index 100% rename from rendering/cases/linestring-style-css-filter/index.html rename to test/rendering/cases/linestring-style-css-filter/index.html diff --git a/rendering/cases/linestring-style-css-filter/main.js b/test/rendering/cases/linestring-style-css-filter/main.js similarity index 74% rename from rendering/cases/linestring-style-css-filter/main.js rename to test/rendering/cases/linestring-style-css-filter/main.js index ed5b469d36..e9ab5d57f0 100644 --- a/rendering/cases/linestring-style-css-filter/main.js +++ b/test/rendering/cases/linestring-style-css-filter/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); let feature; diff --git a/rendering/cases/linestring-style-opacity/expected.png b/test/rendering/cases/linestring-style-opacity/expected.png similarity index 100% rename from rendering/cases/linestring-style-opacity/expected.png rename to test/rendering/cases/linestring-style-opacity/expected.png diff --git a/rendering/cases/linestring-style-opacity/main.js b/test/rendering/cases/linestring-style-opacity/main.js similarity index 74% rename from rendering/cases/linestring-style-opacity/main.js rename to test/rendering/cases/linestring-style-opacity/main.js index 54b1da06cb..84b40c420d 100644 --- a/rendering/cases/linestring-style-opacity/main.js +++ b/test/rendering/cases/linestring-style-opacity/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); let feature; diff --git a/rendering/cases/linestring-style-rotation/expected.png b/test/rendering/cases/linestring-style-rotation/expected.png similarity index 100% rename from rendering/cases/linestring-style-rotation/expected.png rename to test/rendering/cases/linestring-style-rotation/expected.png diff --git a/rendering/cases/linestring-style-rotation/main.js b/test/rendering/cases/linestring-style-rotation/main.js similarity index 74% rename from rendering/cases/linestring-style-rotation/main.js rename to test/rendering/cases/linestring-style-rotation/main.js index a7d4018e10..166681d369 100644 --- a/rendering/cases/linestring-style-rotation/main.js +++ b/test/rendering/cases/linestring-style-rotation/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); let feature; diff --git a/rendering/cases/linestring-style/expected.png b/test/rendering/cases/linestring-style/expected.png similarity index 100% rename from rendering/cases/linestring-style/expected.png rename to test/rendering/cases/linestring-style/expected.png diff --git a/rendering/cases/linestring-style/main.js b/test/rendering/cases/linestring-style/main.js similarity index 73% rename from rendering/cases/linestring-style/main.js rename to test/rendering/cases/linestring-style/main.js index 04032c21fb..95457d8f7c 100644 --- a/rendering/cases/linestring-style/main.js +++ b/test/rendering/cases/linestring-style/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); let feature; diff --git a/rendering/cases/map-pan/expected.png b/test/rendering/cases/map-pan/expected.png similarity index 100% rename from rendering/cases/map-pan/expected.png rename to test/rendering/cases/map-pan/expected.png diff --git a/rendering/cases/map-pan/main.js b/test/rendering/cases/map-pan/main.js similarity index 56% rename from rendering/cases/map-pan/main.js rename to test/rendering/cases/map-pan/main.js index ac09f2eef4..be027476b1 100644 --- a/rendering/cases/map-pan/main.js +++ b/test/rendering/cases/map-pan/main.js @@ -1,9 +1,9 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const map = new Map({ pixelRatio: 1, diff --git a/rendering/cases/map-text-align/expected.png b/test/rendering/cases/map-text-align/expected.png similarity index 100% rename from rendering/cases/map-text-align/expected.png rename to test/rendering/cases/map-text-align/expected.png diff --git a/rendering/cases/map-text-align/index.html b/test/rendering/cases/map-text-align/index.html similarity index 100% rename from rendering/cases/map-text-align/index.html rename to test/rendering/cases/map-text-align/index.html diff --git a/rendering/cases/map-text-align/main.js b/test/rendering/cases/map-text-align/main.js similarity index 51% rename from rendering/cases/map-text-align/main.js rename to test/rendering/cases/map-text-align/main.js index 446a2dce6b..da24d980d1 100644 --- a/rendering/cases/map-text-align/main.js +++ b/test/rendering/cases/map-text-align/main.js @@ -1,8 +1,8 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; new Map({ layers: [ diff --git a/rendering/cases/map/expected.png b/test/rendering/cases/map/expected.png similarity index 100% rename from rendering/cases/map/expected.png rename to test/rendering/cases/map/expected.png diff --git a/rendering/cases/map/main.js b/test/rendering/cases/map/main.js similarity index 52% rename from rendering/cases/map/main.js rename to test/rendering/cases/map/main.js index ebed216202..0f53644eed 100644 --- a/rendering/cases/map/main.js +++ b/test/rendering/cases/map/main.js @@ -1,9 +1,9 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; new Map({ pixelRatio: 1, diff --git a/rendering/cases/multiple-layers/expected.png b/test/rendering/cases/multiple-layers/expected.png similarity index 100% rename from rendering/cases/multiple-layers/expected.png rename to test/rendering/cases/multiple-layers/expected.png diff --git a/rendering/cases/multiple-layers/main.js b/test/rendering/cases/multiple-layers/main.js similarity index 64% rename from rendering/cases/multiple-layers/main.js rename to test/rendering/cases/multiple-layers/main.js index d3779717c3..2caac7b9a4 100644 --- a/rendering/cases/multiple-layers/main.js +++ b/test/rendering/cases/multiple-layers/main.js @@ -1,14 +1,14 @@ -import Feature from '../../../src/ol/Feature.js'; -import GeoJSON from '../../../src/ol/format/GeoJSON.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import View from '../../../src/ol/View.js'; -import {Stroke, Style} from '../../../src/ol/style.js'; +import Feature from '../../../../src/ol/Feature.js'; +import GeoJSON from '../../../../src/ol/format/GeoJSON.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import View from '../../../../src/ol/View.js'; +import {Stroke, Style} from '../../../../src/ol/style.js'; import { Tile as TileLayer, Vector as VectorLayer, -} from '../../../src/ol/layer.js'; -import {Vector as VectorSource, XYZ} from '../../../src/ol/source.js'; +} from '../../../../src/ol/layer.js'; +import {Vector as VectorSource, XYZ} from '../../../../src/ol/source.js'; const map = new Map({ layers: [ diff --git a/rendering/cases/multipoint-style/expected.png b/test/rendering/cases/multipoint-style/expected.png similarity index 100% rename from rendering/cases/multipoint-style/expected.png rename to test/rendering/cases/multipoint-style/expected.png diff --git a/rendering/cases/multipoint-style/main.js b/test/rendering/cases/multipoint-style/main.js similarity index 84% rename from rendering/cases/multipoint-style/main.js rename to test/rendering/cases/multipoint-style/main.js index 3dfd901872..25a72253c1 100644 --- a/rendering/cases/multipoint-style/main.js +++ b/test/rendering/cases/multipoint-style/main.js @@ -1,13 +1,13 @@ -import CircleStyle from '../../../src/ol/style/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import MultiPoint from '../../../src/ol/geom/MultiPoint.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import CircleStyle from '../../../../src/ol/style/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import MultiPoint from '../../../../src/ol/geom/MultiPoint.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); diff --git a/rendering/cases/point-style/expected.png b/test/rendering/cases/point-style/expected.png similarity index 100% rename from rendering/cases/point-style/expected.png rename to test/rendering/cases/point-style/expected.png diff --git a/rendering/cases/point-style/main.js b/test/rendering/cases/point-style/main.js similarity index 84% rename from rendering/cases/point-style/main.js rename to test/rendering/cases/point-style/main.js index a07aad2fc4..81076cb124 100644 --- a/rendering/cases/point-style/main.js +++ b/test/rendering/cases/point-style/main.js @@ -1,13 +1,13 @@ -import CircleStyle from '../../../src/ol/style/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import CircleStyle from '../../../../src/ol/style/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); diff --git a/rendering/cases/polygon-style-gradient-pattern/expected.png b/test/rendering/cases/polygon-style-gradient-pattern/expected.png similarity index 100% rename from rendering/cases/polygon-style-gradient-pattern/expected.png rename to test/rendering/cases/polygon-style-gradient-pattern/expected.png diff --git a/rendering/cases/polygon-style-gradient-pattern/main.js b/test/rendering/cases/polygon-style-gradient-pattern/main.js similarity index 81% rename from rendering/cases/polygon-style-gradient-pattern/main.js rename to test/rendering/cases/polygon-style-gradient-pattern/main.js index 70035139f0..1b50841120 100644 --- a/rendering/cases/polygon-style-gradient-pattern/main.js +++ b/test/rendering/cases/polygon-style-gradient-pattern/main.js @@ -1,12 +1,12 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Polygon from '../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; // create gradient const canvas = document.createElement('canvas'); diff --git a/rendering/cases/polygon-style/expected.png b/test/rendering/cases/polygon-style/expected.png similarity index 100% rename from rendering/cases/polygon-style/expected.png rename to test/rendering/cases/polygon-style/expected.png diff --git a/rendering/cases/polygon-style/main.js b/test/rendering/cases/polygon-style/main.js similarity index 83% rename from rendering/cases/polygon-style/main.js rename to test/rendering/cases/polygon-style/main.js index 58f415539d..531fe09588 100644 --- a/rendering/cases/polygon-style/main.js +++ b/test/rendering/cases/polygon-style/main.js @@ -1,12 +1,12 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Polygon from '../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); let feature; diff --git a/rendering/cases/regularshape-style/expected.png b/test/rendering/cases/regularshape-style/expected.png similarity index 100% rename from rendering/cases/regularshape-style/expected.png rename to test/rendering/cases/regularshape-style/expected.png diff --git a/rendering/cases/regularshape-style/main.js b/test/rendering/cases/regularshape-style/main.js similarity index 81% rename from rendering/cases/regularshape-style/main.js rename to test/rendering/cases/regularshape-style/main.js index d87ea23231..261415b1eb 100644 --- a/rendering/cases/regularshape-style/main.js +++ b/test/rendering/cases/regularshape-style/main.js @@ -1,14 +1,14 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import RegularShape from '../../../src/ol/style/RegularShape.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import {Icon} from '../../../src/ol/style.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import RegularShape from '../../../../src/ol/style/RegularShape.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import {Icon} from '../../../../src/ol/style.js'; const vectorSource = new VectorSource(); function createFeatures(stroke, fill, offSet = [0, 0]) { diff --git a/rendering/cases/render-context/expected.png b/test/rendering/cases/render-context/expected.png similarity index 100% rename from rendering/cases/render-context/expected.png rename to test/rendering/cases/render-context/expected.png diff --git a/rendering/cases/render-context/index.html b/test/rendering/cases/render-context/index.html similarity index 100% rename from rendering/cases/render-context/index.html rename to test/rendering/cases/render-context/index.html diff --git a/rendering/cases/render-context/main.js b/test/rendering/cases/render-context/main.js similarity index 79% rename from rendering/cases/render-context/main.js rename to test/rendering/cases/render-context/main.js index a449e61e4c..babcf206dc 100644 --- a/rendering/cases/render-context/main.js +++ b/test/rendering/cases/render-context/main.js @@ -1,11 +1,11 @@ -import CircleStyle from '../../../src/ol/style/Circle.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Polygon from '../../../src/ol/geom/Polygon.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import {toContext} from '../../../src/ol/render.js'; +import CircleStyle from '../../../../src/ol/style/Circle.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Polygon from '../../../../src/ol/geom/Polygon.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import {toContext} from '../../../../src/ol/render.js'; const canvas = document.getElementById('canvas'); const vectorContext = toContext(canvas.getContext('2d'), { diff --git a/rendering/cases/reproj-azimuthal-equal-area/expected.png b/test/rendering/cases/reproj-azimuthal-equal-area/expected.png similarity index 100% rename from rendering/cases/reproj-azimuthal-equal-area/expected.png rename to test/rendering/cases/reproj-azimuthal-equal-area/expected.png diff --git a/rendering/cases/reproj-azimuthal-equal-area/main.js b/test/rendering/cases/reproj-azimuthal-equal-area/main.js similarity index 74% rename from rendering/cases/reproj-azimuthal-equal-area/main.js rename to test/rendering/cases/reproj-azimuthal-equal-area/main.js index 1dd05f2452..0846f44b9c 100644 --- a/rendering/cases/reproj-azimuthal-equal-area/main.js +++ b/test/rendering/cases/reproj-azimuthal-equal-area/main.js @@ -1,10 +1,10 @@ -import ImageCanvas from '../../../src/ol/source/ImageCanvas.js'; -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import View from '../../../src/ol/View.js'; +import ImageCanvas from '../../../../src/ol/source/ImageCanvas.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import View from '../../../../src/ol/View.js'; import proj4 from 'proj4'; -import {get as getProjection, transform} from '../../../src/ol/proj.js'; -import {register} from '../../../src/ol/proj/proj4.js'; +import {get as getProjection, transform} from '../../../../src/ol/proj.js'; +import {register} from '../../../../src/ol/proj/proj4.js'; const llpos = [-72, 40]; diff --git a/rendering/cases/reproj-image-no-stretch-disable-smoothing/expected.png b/test/rendering/cases/reproj-image-no-stretch-disable-smoothing/expected.png similarity index 100% rename from rendering/cases/reproj-image-no-stretch-disable-smoothing/expected.png rename to test/rendering/cases/reproj-image-no-stretch-disable-smoothing/expected.png diff --git a/rendering/cases/reproj-image-no-stretch-disable-smoothing/main.js b/test/rendering/cases/reproj-image-no-stretch-disable-smoothing/main.js similarity index 59% rename from rendering/cases/reproj-image-no-stretch-disable-smoothing/main.js rename to test/rendering/cases/reproj-image-no-stretch-disable-smoothing/main.js index b27472710f..0f008d4048 100644 --- a/rendering/cases/reproj-image-no-stretch-disable-smoothing/main.js +++ b/test/rendering/cases/reproj-image-no-stretch-disable-smoothing/main.js @@ -1,8 +1,8 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import Static from '../../../src/ol/source/ImageStatic.js'; -import View from '../../../src/ol/View.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import Static from '../../../../src/ol/source/ImageStatic.js'; +import View from '../../../../src/ol/View.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const source = new Static({ url: '/data/tiles/osm/5/5/12.png', diff --git a/rendering/cases/reproj-image-stretched-disable-smoothing/expected.png b/test/rendering/cases/reproj-image-stretched-disable-smoothing/expected.png similarity index 100% rename from rendering/cases/reproj-image-stretched-disable-smoothing/expected.png rename to test/rendering/cases/reproj-image-stretched-disable-smoothing/expected.png diff --git a/rendering/cases/reproj-image-stretched-disable-smoothing/main.js b/test/rendering/cases/reproj-image-stretched-disable-smoothing/main.js similarity index 60% rename from rendering/cases/reproj-image-stretched-disable-smoothing/main.js rename to test/rendering/cases/reproj-image-stretched-disable-smoothing/main.js index 80d7747fac..977bb4cc8d 100644 --- a/rendering/cases/reproj-image-stretched-disable-smoothing/main.js +++ b/test/rendering/cases/reproj-image-stretched-disable-smoothing/main.js @@ -1,8 +1,11 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import Static from '../../../src/ol/source/ImageStatic.js'; -import View from '../../../src/ol/View.js'; -import {get as getProjection, transformExtent} from '../../../src/ol/proj.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import Static from '../../../../src/ol/source/ImageStatic.js'; +import View from '../../../../src/ol/View.js'; +import { + get as getProjection, + transformExtent, +} from '../../../../src/ol/proj.js'; const source = new Static({ url: '/data/tiles/osm/5/5/12.png', diff --git a/rendering/cases/reproj-image/expected.png b/test/rendering/cases/reproj-image/expected.png similarity index 100% rename from rendering/cases/reproj-image/expected.png rename to test/rendering/cases/reproj-image/expected.png diff --git a/rendering/cases/reproj-image/main.js b/test/rendering/cases/reproj-image/main.js similarity index 59% rename from rendering/cases/reproj-image/main.js rename to test/rendering/cases/reproj-image/main.js index 08444e9120..772c1c084a 100644 --- a/rendering/cases/reproj-image/main.js +++ b/test/rendering/cases/reproj-image/main.js @@ -1,8 +1,11 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import Static from '../../../src/ol/source/ImageStatic.js'; -import View from '../../../src/ol/View.js'; -import {get as getProjection, transformExtent} from '../../../src/ol/proj.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import Static from '../../../../src/ol/source/ImageStatic.js'; +import View from '../../../../src/ol/View.js'; +import { + get as getProjection, + transformExtent, +} from '../../../../src/ol/proj.js'; const source = new Static({ url: '/data/tiles/osm/5/5/12.png', diff --git a/rendering/cases/reproj-tile-4326/expected.png b/test/rendering/cases/reproj-tile-4326/expected.png similarity index 100% rename from rendering/cases/reproj-tile-4326/expected.png rename to test/rendering/cases/reproj-tile-4326/expected.png diff --git a/rendering/cases/reproj-tile-4326/main.js b/test/rendering/cases/reproj-tile-4326/main.js similarity index 63% rename from rendering/cases/reproj-tile-4326/main.js rename to test/rendering/cases/reproj-tile-4326/main.js index 66a6679195..de2bb88447 100644 --- a/rendering/cases/reproj-tile-4326/main.js +++ b/test/rendering/cases/reproj-tile-4326/main.js @@ -1,9 +1,9 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {createForProjection, createXYZ} from '../../../src/ol/tilegrid.js'; -import {get, toLonLat} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {createForProjection, createXYZ} from '../../../../src/ol/tilegrid.js'; +import {get, toLonLat} from '../../../../src/ol/proj.js'; const tileGrid = createXYZ(); const extent = tileGrid.getTileCoordExtent([5, 5, 12]); diff --git a/rendering/cases/reproj-tile-5070/expected.png b/test/rendering/cases/reproj-tile-5070/expected.png similarity index 100% rename from rendering/cases/reproj-tile-5070/expected.png rename to test/rendering/cases/reproj-tile-5070/expected.png diff --git a/rendering/cases/reproj-tile-5070/main.js b/test/rendering/cases/reproj-tile-5070/main.js similarity index 69% rename from rendering/cases/reproj-tile-5070/main.js rename to test/rendering/cases/reproj-tile-5070/main.js index 6f02f05df8..03f507b781 100644 --- a/rendering/cases/reproj-tile-5070/main.js +++ b/test/rendering/cases/reproj-tile-5070/main.js @@ -1,10 +1,10 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; import proj4 from 'proj4'; -import {get, transform} from '../../../src/ol/proj.js'; -import {register} from '../../../src/ol/proj/proj4.js'; +import {get, transform} from '../../../../src/ol/proj.js'; +import {register} from '../../../../src/ol/proj/proj4.js'; proj4.defs( 'EPSG:5070', diff --git a/rendering/cases/reproj-tile-54009/expected.png b/test/rendering/cases/reproj-tile-54009/expected.png similarity index 100% rename from rendering/cases/reproj-tile-54009/expected.png rename to test/rendering/cases/reproj-tile-54009/expected.png diff --git a/rendering/cases/reproj-tile-54009/main.js b/test/rendering/cases/reproj-tile-54009/main.js similarity index 67% rename from rendering/cases/reproj-tile-54009/main.js rename to test/rendering/cases/reproj-tile-54009/main.js index f8763ec65e..de87693032 100644 --- a/rendering/cases/reproj-tile-54009/main.js +++ b/test/rendering/cases/reproj-tile-54009/main.js @@ -1,10 +1,10 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; import proj4 from 'proj4'; -import {get, transform} from '../../../src/ol/proj.js'; -import {register} from '../../../src/ol/proj/proj4.js'; +import {get, transform} from '../../../../src/ol/proj.js'; +import {register} from '../../../../src/ol/proj/proj4.js'; proj4.defs( 'ESRI:54009', diff --git a/rendering/cases/reproj-tile-dateline-merc/expected.png b/test/rendering/cases/reproj-tile-dateline-merc/expected.png similarity index 100% rename from rendering/cases/reproj-tile-dateline-merc/expected.png rename to test/rendering/cases/reproj-tile-dateline-merc/expected.png diff --git a/rendering/cases/reproj-tile-dateline-merc/main.js b/test/rendering/cases/reproj-tile-dateline-merc/main.js similarity index 66% rename from rendering/cases/reproj-tile-dateline-merc/main.js rename to test/rendering/cases/reproj-tile-dateline-merc/main.js index 06ac920635..f3aa3ad9d6 100644 --- a/rendering/cases/reproj-tile-dateline-merc/main.js +++ b/test/rendering/cases/reproj-tile-dateline-merc/main.js @@ -1,10 +1,10 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; import proj4 from 'proj4'; -import {get, transform} from '../../../src/ol/proj.js'; -import {register} from '../../../src/ol/proj/proj4.js'; +import {get, transform} from '../../../../src/ol/proj.js'; +import {register} from '../../../../src/ol/proj/proj4.js'; proj4.defs('merc_180', '+proj=merc +lon_0=180 +units=m +no_defs'); diff --git a/rendering/cases/reproj-tile-disable-smoothing/expected.png b/test/rendering/cases/reproj-tile-disable-smoothing/expected.png similarity index 100% rename from rendering/cases/reproj-tile-disable-smoothing/expected.png rename to test/rendering/cases/reproj-tile-disable-smoothing/expected.png diff --git a/rendering/cases/reproj-tile-disable-smoothing/main.js b/test/rendering/cases/reproj-tile-disable-smoothing/main.js similarity index 63% rename from rendering/cases/reproj-tile-disable-smoothing/main.js rename to test/rendering/cases/reproj-tile-disable-smoothing/main.js index 1826969898..93c88c3dde 100644 --- a/rendering/cases/reproj-tile-disable-smoothing/main.js +++ b/test/rendering/cases/reproj-tile-disable-smoothing/main.js @@ -1,9 +1,9 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; -import {toLonLat} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; +import {toLonLat} from '../../../../src/ol/proj.js'; const tileGrid = createXYZ(); const extent = tileGrid.getTileCoordExtent([5, 5, 12]); diff --git a/rendering/cases/reproj-tile-none-square/expected.png b/test/rendering/cases/reproj-tile-none-square/expected.png similarity index 100% rename from rendering/cases/reproj-tile-none-square/expected.png rename to test/rendering/cases/reproj-tile-none-square/expected.png diff --git a/rendering/cases/reproj-tile-none-square/main.js b/test/rendering/cases/reproj-tile-none-square/main.js similarity index 64% rename from rendering/cases/reproj-tile-none-square/main.js rename to test/rendering/cases/reproj-tile-none-square/main.js index f40f8974d9..de89186a2a 100644 --- a/rendering/cases/reproj-tile-none-square/main.js +++ b/test/rendering/cases/reproj-tile-none-square/main.js @@ -1,9 +1,9 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; -import {toLonLat} from '../../../src/ol/proj.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; +import {toLonLat} from '../../../../src/ol/proj.js'; const tileGrid = createXYZ({tileSize: [512, 256]}); const extent = tileGrid.getTileCoordExtent([5, 3, 12]); diff --git a/rendering/cases/reproj-tile-northpole/expected.png b/test/rendering/cases/reproj-tile-northpole/expected.png similarity index 100% rename from rendering/cases/reproj-tile-northpole/expected.png rename to test/rendering/cases/reproj-tile-northpole/expected.png diff --git a/rendering/cases/reproj-tile-northpole/main.js b/test/rendering/cases/reproj-tile-northpole/main.js similarity index 68% rename from rendering/cases/reproj-tile-northpole/main.js rename to test/rendering/cases/reproj-tile-northpole/main.js index 8a0974bf22..1f10ac6bd0 100644 --- a/rendering/cases/reproj-tile-northpole/main.js +++ b/test/rendering/cases/reproj-tile-northpole/main.js @@ -1,10 +1,10 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; import proj4 from 'proj4'; -import {get, transform} from '../../../src/ol/proj.js'; -import {register} from '../../../src/ol/proj/proj4.js'; +import {get, transform} from '../../../../src/ol/proj.js'; +import {register} from '../../../../src/ol/proj/proj4.js'; proj4.defs( 'EPSG:3413', diff --git a/rendering/cases/rotated-view/expected.png b/test/rendering/cases/rotated-view/expected.png similarity index 100% rename from rendering/cases/rotated-view/expected.png rename to test/rendering/cases/rotated-view/expected.png diff --git a/rendering/cases/rotated-view/main.js b/test/rendering/cases/rotated-view/main.js similarity index 56% rename from rendering/cases/rotated-view/main.js rename to test/rendering/cases/rotated-view/main.js index e561590ccf..760045acb6 100644 --- a/rendering/cases/rotated-view/main.js +++ b/test/rendering/cases/rotated-view/main.js @@ -1,13 +1,13 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import View from '../../../../src/ol/View.js'; import { Tile as TileLayer, Vector as VectorLayer, -} from '../../../src/ol/layer.js'; -import {Vector as VectorSource, XYZ} from '../../../src/ol/source.js'; -import {fromLonLat} from '../../../src/ol/proj.js'; +} from '../../../../src/ol/layer.js'; +import {Vector as VectorSource, XYZ} from '../../../../src/ol/source.js'; +import {fromLonLat} from '../../../../src/ol/proj.js'; const center = fromLonLat([-111, 45.7]); diff --git a/rendering/cases/rtl-text-align/expected.png b/test/rendering/cases/rtl-text-align/expected.png similarity index 100% rename from rendering/cases/rtl-text-align/expected.png rename to test/rendering/cases/rtl-text-align/expected.png diff --git a/rendering/cases/rtl-text-align/main.js b/test/rendering/cases/rtl-text-align/main.js similarity index 73% rename from rendering/cases/rtl-text-align/main.js rename to test/rendering/cases/rtl-text-align/main.js index adf2547acd..bfa6d3f1f2 100644 --- a/rendering/cases/rtl-text-align/main.js +++ b/test/rendering/cases/rtl-text-align/main.js @@ -1,14 +1,14 @@ -import CircleStyle from '../../../src/ol/style/Circle.js'; -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import Text from '../../../src/ol/style/Text.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import CircleStyle from '../../../../src/ol/style/Circle.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import Text from '../../../../src/ol/style/Text.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource({ features: [ diff --git a/rendering/cases/single-layer/expected.png b/test/rendering/cases/single-layer/expected.png similarity index 100% rename from rendering/cases/single-layer/expected.png rename to test/rendering/cases/single-layer/expected.png diff --git a/rendering/cases/single-layer/main.js b/test/rendering/cases/single-layer/main.js similarity index 58% rename from rendering/cases/single-layer/main.js rename to test/rendering/cases/single-layer/main.js index 5800cc2cbf..5d420522ba 100644 --- a/rendering/cases/single-layer/main.js +++ b/test/rendering/cases/single-layer/main.js @@ -1,7 +1,7 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; new Map({ layers: [ diff --git a/rendering/cases/source-raster/expected.png b/test/rendering/cases/source-raster/expected.png similarity index 100% rename from rendering/cases/source-raster/expected.png rename to test/rendering/cases/source-raster/expected.png diff --git a/rendering/cases/source-raster/main.js b/test/rendering/cases/source-raster/main.js similarity index 65% rename from rendering/cases/source-raster/main.js rename to test/rendering/cases/source-raster/main.js index 2804f03108..bbde11663c 100644 --- a/rendering/cases/source-raster/main.js +++ b/test/rendering/cases/source-raster/main.js @@ -1,8 +1,8 @@ -import ImageLayer from '../../../src/ol/layer/Image.js'; -import Map from '../../../src/ol/Map.js'; -import RasterSource from '../../../src/ol/source/Raster.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; +import ImageLayer from '../../../../src/ol/layer/Image.js'; +import Map from '../../../../src/ol/Map.js'; +import RasterSource from '../../../../src/ol/source/Raster.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; const raster = new RasterSource({ sources: [ diff --git a/rendering/cases/source-tilewms-gutter0/expected.png b/test/rendering/cases/source-tilewms-gutter0/expected.png similarity index 100% rename from rendering/cases/source-tilewms-gutter0/expected.png rename to test/rendering/cases/source-tilewms-gutter0/expected.png diff --git a/rendering/cases/source-tilewms-gutter0/main.js b/test/rendering/cases/source-tilewms-gutter0/main.js similarity index 59% rename from rendering/cases/source-tilewms-gutter0/main.js rename to test/rendering/cases/source-tilewms-gutter0/main.js index 3772e3d479..1e6ea84be5 100644 --- a/rendering/cases/source-tilewms-gutter0/main.js +++ b/test/rendering/cases/source-tilewms-gutter0/main.js @@ -1,7 +1,7 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import TileWMS from '../../../src/ol/source/TileWMS.js'; -import View from '../../../src/ol/View.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import TileWMS from '../../../../src/ol/source/TileWMS.js'; +import View from '../../../../src/ol/View.js'; const tileWms = new TileWMS({ params: { diff --git a/rendering/cases/source-tilewms-gutter20/expected.png b/test/rendering/cases/source-tilewms-gutter20/expected.png similarity index 100% rename from rendering/cases/source-tilewms-gutter20/expected.png rename to test/rendering/cases/source-tilewms-gutter20/expected.png diff --git a/rendering/cases/source-tilewms-gutter20/main.js b/test/rendering/cases/source-tilewms-gutter20/main.js similarity index 59% rename from rendering/cases/source-tilewms-gutter20/main.js rename to test/rendering/cases/source-tilewms-gutter20/main.js index 9b0680db20..bb6a97082d 100644 --- a/rendering/cases/source-tilewms-gutter20/main.js +++ b/test/rendering/cases/source-tilewms-gutter20/main.js @@ -1,7 +1,7 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import TileWMS from '../../../src/ol/source/TileWMS.js'; -import View from '../../../src/ol/View.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import TileWMS from '../../../../src/ol/source/TileWMS.js'; +import View from '../../../../src/ol/View.js'; const tileWms = new TileWMS({ params: { diff --git a/rendering/cases/source-vectortile-declutter/expected.png b/test/rendering/cases/source-vectortile-declutter/expected.png similarity index 100% rename from rendering/cases/source-vectortile-declutter/expected.png rename to test/rendering/cases/source-vectortile-declutter/expected.png diff --git a/rendering/cases/source-vectortile-declutter/main.js b/test/rendering/cases/source-vectortile-declutter/main.js similarity index 69% rename from rendering/cases/source-vectortile-declutter/main.js rename to test/rendering/cases/source-vectortile-declutter/main.js index dac6b8b6b1..cf043debac 100644 --- a/rendering/cases/source-vectortile-declutter/main.js +++ b/test/rendering/cases/source-vectortile-declutter/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import VectorTileLayer from '../../../src/ol/layer/VectorTile.js'; -import VectorTileSource from '../../../src/ol/source/VectorTile.js'; -import View from '../../../src/ol/View.js'; -import {Circle, Fill, Stroke, Style} from '../../../src/ol/style.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import VectorTileLayer from '../../../../src/ol/layer/VectorTile.js'; +import VectorTileSource from '../../../../src/ol/source/VectorTile.js'; +import View from '../../../../src/ol/View.js'; +import {Circle, Fill, Stroke, Style} from '../../../../src/ol/style.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; const points = [[0, 0]]; diff --git a/rendering/cases/stacking/expected.png b/test/rendering/cases/stacking/expected.png similarity index 100% rename from rendering/cases/stacking/expected.png rename to test/rendering/cases/stacking/expected.png diff --git a/rendering/cases/stacking/main.js b/test/rendering/cases/stacking/main.js similarity index 84% rename from rendering/cases/stacking/main.js rename to test/rendering/cases/stacking/main.js index 0d784d373a..2bda765f83 100644 --- a/rendering/cases/stacking/main.js +++ b/test/rendering/cases/stacking/main.js @@ -4,11 +4,11 @@ * above layers. */ -import Control from '../../../src/ol/control/Control.js'; -import Layer from '../../../src/ol/layer/Layer.js'; -import Map from '../../../src/ol/Map.js'; -import SourceState from '../../../src/ol/source/State.js'; -import View from '../../../src/ol/View.js'; +import Control from '../../../../src/ol/control/Control.js'; +import Layer from '../../../../src/ol/layer/Layer.js'; +import Map from '../../../../src/ol/Map.js'; +import SourceState from '../../../../src/ol/source/State.js'; +import View from '../../../../src/ol/View.js'; class Element extends Layer { constructor(options, style) { diff --git a/rendering/cases/text-style-linestring-nice/expected.png b/test/rendering/cases/text-style-linestring-nice/expected.png similarity index 100% rename from rendering/cases/text-style-linestring-nice/expected.png rename to test/rendering/cases/text-style-linestring-nice/expected.png diff --git a/rendering/cases/text-style-linestring-nice/main.js b/test/rendering/cases/text-style-linestring-nice/main.js similarity index 87% rename from rendering/cases/text-style-linestring-nice/main.js rename to test/rendering/cases/text-style-linestring-nice/main.js index 9cfb1c0703..e0e4fc93cf 100644 --- a/rendering/cases/text-style-linestring-nice/main.js +++ b/test/rendering/cases/text-style-linestring-nice/main.js @@ -1,13 +1,13 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import Text from '../../../src/ol/style/Text.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import Text from '../../../../src/ol/style/Text.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); diff --git a/rendering/cases/text-style-linestring-ugly/expected.png b/test/rendering/cases/text-style-linestring-ugly/expected.png similarity index 100% rename from rendering/cases/text-style-linestring-ugly/expected.png rename to test/rendering/cases/text-style-linestring-ugly/expected.png diff --git a/rendering/cases/text-style-linestring-ugly/main.js b/test/rendering/cases/text-style-linestring-ugly/main.js similarity index 86% rename from rendering/cases/text-style-linestring-ugly/main.js rename to test/rendering/cases/text-style-linestring-ugly/main.js index f974d86a74..0c569b65c3 100644 --- a/rendering/cases/text-style-linestring-ugly/main.js +++ b/test/rendering/cases/text-style-linestring-ugly/main.js @@ -1,13 +1,13 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import Text from '../../../src/ol/style/Text.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import Text from '../../../../src/ol/style/Text.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); diff --git a/rendering/cases/text-style-overlap/expected.png b/test/rendering/cases/text-style-overlap/expected.png similarity index 100% rename from rendering/cases/text-style-overlap/expected.png rename to test/rendering/cases/text-style-overlap/expected.png diff --git a/rendering/cases/text-style-overlap/main.js b/test/rendering/cases/text-style-overlap/main.js similarity index 81% rename from rendering/cases/text-style-overlap/main.js rename to test/rendering/cases/text-style-overlap/main.js index 9db5f4b6d6..666e8388a0 100644 --- a/rendering/cases/text-style-overlap/main.js +++ b/test/rendering/cases/text-style-overlap/main.js @@ -1,14 +1,14 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import Text from '../../../src/ol/style/Text.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import Text from '../../../../src/ol/style/Text.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const nicePath = [ 20, diff --git a/rendering/cases/text-style/expected.png b/test/rendering/cases/text-style/expected.png similarity index 100% rename from rendering/cases/text-style/expected.png rename to test/rendering/cases/text-style/expected.png diff --git a/rendering/cases/text-style/main.js b/test/rendering/cases/text-style/main.js similarity index 83% rename from rendering/cases/text-style/main.js rename to test/rendering/cases/text-style/main.js index 8fa1a1d412..3f0f6c3157 100644 --- a/rendering/cases/text-style/main.js +++ b/test/rendering/cases/text-style/main.js @@ -1,13 +1,13 @@ -import Feature from '../../../src/ol/Feature.js'; -import Fill from '../../../src/ol/style/Fill.js'; -import Map from '../../../src/ol/Map.js'; -import Point from '../../../src/ol/geom/Point.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import Text from '../../../src/ol/style/Text.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import Fill from '../../../../src/ol/style/Fill.js'; +import Map from '../../../../src/ol/Map.js'; +import Point from '../../../../src/ol/geom/Point.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import Text from '../../../../src/ol/style/Text.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSource = new VectorSource(); let feature; diff --git a/rendering/cases/tile-disable-smoothing/expected.png b/test/rendering/cases/tile-disable-smoothing/expected.png similarity index 100% rename from rendering/cases/tile-disable-smoothing/expected.png rename to test/rendering/cases/tile-disable-smoothing/expected.png diff --git a/rendering/cases/tile-disable-smoothing/main.js b/test/rendering/cases/tile-disable-smoothing/main.js similarity index 65% rename from rendering/cases/tile-disable-smoothing/main.js rename to test/rendering/cases/tile-disable-smoothing/main.js index e82db95336..5d26cf19cc 100644 --- a/rendering/cases/tile-disable-smoothing/main.js +++ b/test/rendering/cases/tile-disable-smoothing/main.js @@ -1,8 +1,8 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; -import {createXYZ} from '../../../src/ol/tilegrid.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; +import {createXYZ} from '../../../../src/ol/tilegrid.js'; const tileGrid = createXYZ(); const extent = tileGrid.getTileCoordExtent([5, 5, 12]); diff --git a/rendering/cases/vector-zindex/expected.png b/test/rendering/cases/vector-zindex/expected.png similarity index 100% rename from rendering/cases/vector-zindex/expected.png rename to test/rendering/cases/vector-zindex/expected.png diff --git a/rendering/cases/vector-zindex/main.js b/test/rendering/cases/vector-zindex/main.js similarity index 64% rename from rendering/cases/vector-zindex/main.js rename to test/rendering/cases/vector-zindex/main.js index 5f833c16dd..5215022b65 100644 --- a/rendering/cases/vector-zindex/main.js +++ b/test/rendering/cases/vector-zindex/main.js @@ -1,11 +1,11 @@ -import Feature from '../../../src/ol/Feature.js'; -import LineString from '../../../src/ol/geom/LineString.js'; -import Map from '../../../src/ol/Map.js'; -import Stroke from '../../../src/ol/style/Stroke.js'; -import Style from '../../../src/ol/style/Style.js'; -import VectorLayer from '../../../src/ol/layer/Vector.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; +import Feature from '../../../../src/ol/Feature.js'; +import LineString from '../../../../src/ol/geom/LineString.js'; +import Map from '../../../../src/ol/Map.js'; +import Stroke from '../../../../src/ol/style/Stroke.js'; +import Style from '../../../../src/ol/style/Style.js'; +import VectorLayer from '../../../../src/ol/layer/Vector.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; const vectorSourceRed = new VectorSource(); const vectorSourceBlue = new VectorSource(); diff --git a/rendering/cases/webgl-points/expected.png b/test/rendering/cases/webgl-points/expected.png similarity index 100% rename from rendering/cases/webgl-points/expected.png rename to test/rendering/cases/webgl-points/expected.png diff --git a/rendering/cases/webgl-points/main.js b/test/rendering/cases/webgl-points/main.js similarity index 61% rename from rendering/cases/webgl-points/main.js rename to test/rendering/cases/webgl-points/main.js index 1067ff903b..d9adee438d 100644 --- a/rendering/cases/webgl-points/main.js +++ b/test/rendering/cases/webgl-points/main.js @@ -1,10 +1,10 @@ -import KML from '../../../src/ol/format/KML.js'; -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import VectorSource from '../../../src/ol/source/Vector.js'; -import View from '../../../src/ol/View.js'; -import WebGLPointsLayer from '../../../src/ol/layer/WebGLPoints.js'; -import XYZ from '../../../src/ol/source/XYZ.js'; +import KML from '../../../../src/ol/format/KML.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import VectorSource from '../../../../src/ol/source/Vector.js'; +import View from '../../../../src/ol/View.js'; +import WebGLPointsLayer from '../../../../src/ol/layer/WebGLPoints.js'; +import XYZ from '../../../../src/ol/source/XYZ.js'; const vector = new WebGLPointsLayer({ source: new VectorSource({ diff --git a/rendering/cases/zoomify-no-zdirection/expected.png b/test/rendering/cases/zoomify-no-zdirection/expected.png similarity index 100% rename from rendering/cases/zoomify-no-zdirection/expected.png rename to test/rendering/cases/zoomify-no-zdirection/expected.png diff --git a/rendering/cases/zoomify-no-zdirection/main.js b/test/rendering/cases/zoomify-no-zdirection/main.js similarity index 58% rename from rendering/cases/zoomify-no-zdirection/main.js rename to test/rendering/cases/zoomify-no-zdirection/main.js index 3226870f4a..bbb3341c4e 100644 --- a/rendering/cases/zoomify-no-zdirection/main.js +++ b/test/rendering/cases/zoomify-no-zdirection/main.js @@ -1,7 +1,7 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import Zoomify from '../../../src/ol/source/Zoomify.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import Zoomify from '../../../../src/ol/source/Zoomify.js'; const layer = new TileLayer({ source: new Zoomify({ diff --git a/rendering/cases/zoomify-zdirection/expected.png b/test/rendering/cases/zoomify-zdirection/expected.png similarity index 100% rename from rendering/cases/zoomify-zdirection/expected.png rename to test/rendering/cases/zoomify-zdirection/expected.png diff --git a/rendering/cases/zoomify-zdirection/main.js b/test/rendering/cases/zoomify-zdirection/main.js similarity index 59% rename from rendering/cases/zoomify-zdirection/main.js rename to test/rendering/cases/zoomify-zdirection/main.js index e7dc380751..6229464ed1 100644 --- a/rendering/cases/zoomify-zdirection/main.js +++ b/test/rendering/cases/zoomify-zdirection/main.js @@ -1,7 +1,7 @@ -import Map from '../../../src/ol/Map.js'; -import TileLayer from '../../../src/ol/layer/Tile.js'; -import View from '../../../src/ol/View.js'; -import Zoomify from '../../../src/ol/source/Zoomify.js'; +import Map from '../../../../src/ol/Map.js'; +import TileLayer from '../../../../src/ol/layer/Tile.js'; +import View from '../../../../src/ol/View.js'; +import Zoomify from '../../../../src/ol/source/Zoomify.js'; const layer = new TileLayer({ source: new Zoomify({ diff --git a/test/rendering/data/2012_Earthquakes_Mag5.kml b/test/rendering/data/2012_Earthquakes_Mag5.kml new file mode 100644 index 0000000000..7a8466f5cb --- /dev/null +++ b/test/rendering/data/2012_Earthquakes_Mag5.kml @@ -0,0 +1,10758 @@ + + + + 2012 Earthquakes, Magnitude 5 + + U.S. Geological Survey + + + + Magnitude 5 + + M 5.9 - 2012 Jan 15, SOUTH SHETLAND ISLANDS + 5.9 + + -56.072,-60.975,0 + + + + M 5.9 - 2012 Jan 19, OFF W. COAST OF S. ISLAND, N.Z. + 5.9 + + 165.778,-46.686,0 + + + + M 5.9 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5.9 + + -177.386,-29.43,0 + + + + M 5.9 - 2012 Feb 9, MACQUARIE ISLAND REGION + 5.9 + + 157.837,-58.312,0 + + + + M 5.9 - 2012 Feb 10, FIJI REGION + 5.9 + + -178.549,-17.968,0 + + + + M 5.9 - 2012 Feb 13, COSTA RICA + 5.9 + + -84.121,9.183,0 + + + + M 5.9 - 2012 Feb 26, TAIWAN + 5.9 + + 120.891,22.661,0 + + + + M 5.9 - 2012 Mar 8, SOUTHERN XINJIANG, CHINA + 5.9 + + 81.307,39.383,0 + + + + M 5.9 - 2012 Mar 19, SAMOA ISLANDS REGION + 5.9 + + -175.702,-14.621,0 + + + + M 5.9 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.9 + + 89.441,2.199,0 + + + + M 5.9 - 2012 Apr 20, OFF W COAST OF NORTHERN SUMATRA + 5.9 + + 93.821,3.269,0 + + + + M 5.9 - 2012 May 10, EASTER ISLAND REGION + 5.9 + + -112.587,-28.73,0 + + + + M 5.9 - 2012 May 19, OFF EAST COAST OF HONSHU, JAPAN + 5.9 + + 143.311,39.665,0 + + + + M 5.9 - 2012 May 23, HOKKAIDO, JAPAN REGION + 5.9 + + 142.082,41.335,0 + + + + M 5.9 - 2012 May 23, WESTERN INDIAN-ANTARCTIC RIDGE + 5.9 + + 139.536,-50.352,0 + + + + M 5.9 - 2012 May 28, TONGA + 5.9 + + -175.976,-19.962,0 + + + + M 5.9 - 2012 Jun 2, SALTA, ARGENTINA + 5.9 + + -63.555,-22.059,0 + + + + M 5.9 - 2012 Jun 4, JAVA, INDONESIA + 5.9 + + 106.371,-7.692,0 + + + + M 5.9 - 2012 Jun 9, TAIWAN REGION + 5.9 + + 122.248,24.572,0 + + + + M 5.9 - 2012 Jun 16, LUZON, PHILIPPINES + 5.9 + + 119.563,15.593,0 + + + + M 5.9 - 2012 Jul 18, PACIFIC-ANTARCTIC RIDGE + 5.9 + + -128.893,-55.661,0 + + + + M 5.9 - 2012 Jul 18, FIJI REGION + 5.9 + + -178.508,-20.872,0 + + + + M 5.9 - 2012 Jul 21, VANUATU REGION + 5.9 + + 173.789,-19.19,0 + + + + M 5.9 - 2012 Jul 29, OFFSHORE GUATEMALA + 5.9 + + -92.294,14.191,0 + + + + M 5.9 - 2012 Aug 8, FIJI + 5.9 + + 178.062,-16.02,0 + + + + M 5.9 - 2012 Aug 25, HOKKAIDO, JAPAN REGION + 5.9 + + 142.913,42.419,0 + + + + M 5.9 - 2012 Sep 9, KURIL ISLANDS + 5.9 + + 155.75,49.247,0 + + + + M 5.9 - 2012 Sep 11, SOUTH OF MARIANA ISLANDS + 5.9 + + 143.218,11.838,0 + + + + M 5.9 - 2012 Oct 8, GULF OF CALIFORNIA + 5.9 + + -109.574,25.127,0 + + + + M 5.9 - 2012 Oct 18, WEST OF MACQUARIE ISLAND + 5.9 + + 144.006,-54.217,0 + + + + M 5.9 - 2012 Oct 23, IZU ISLANDS, JAPAN REGION + 5.9 + + 139.251,29.057,0 + + + + M 5.9 - 2012 Nov 15, BISMARCK SEA + 5.9 + + 148.27,-3.109,0 + + + + M 5.9 - 2012 Nov 17, TONGA REGION + 5.9 + + -172.32,-18.381,0 + + + + M 5.9 - 2012 Nov 21, LIBERTADOR O'HIGGINS, CHILE + 5.9 + + -71.868,-33.939,0 + + + + M 5.9 - 2012 Nov 22, SALTA, ARGENTINA + 5.9 + + -63.571,-22.742,0 + + + + M 5.9 - 2012 Nov 29, NEAR N COAST OF NEW GUINEA, PNG. + 5.9 + + 145.562,-3.423,0 + + + + M 5.9 - 2012 Dec 17, CENTRAL EAST PACIFIC RISE + 5.9 + + -104.495,-4.178,0 + + + + M 5.9 - 2012 Dec 27, OFFSHORE MAULE, CHILE + 5.9 + + -73.255,-35.783,0 + + + + M 5.8 - 2012 Jan 14, BABUYAN ISL REGION, PHILIPPINES + 5.8 + + 121.156,19.202,0 + + + + M 5.8 - 2012 Jan 18, MOLUCCA SEA + 5.8 + + 126.829,-0.877,0 + + + + M 5.8 - 2012 Feb 4, TONGA + 5.8 + + -174.035,-20.536,0 + + + + M 5.8 - 2012 Feb 6, NEGROS- CEBU REG, PHILIPPINES + 5.8 + + 123.08,9.821,0 + + + + M 5.8 - 2012 Feb 14, NEAR EAST COAST OF HONSHU, JAPAN + 5.8 + + 141.386,36.214,0 + + + + M 5.8 - 2012 Feb 15, OFF COAST OF OREGON + 5.8 + + -127.518,43.625,0 + + + + M 5.8 - 2012 Feb 16, MAURITIUS - REUNION REGION + 5.8 + + 65.405,-17.839,0 + + + + M 5.8 - 2012 Mar 16, LEYTE, PHILIPPINES + 5.8 + + 125.633,10.037,0 + + + + M 5.8 - 2012 Mar 17, SOUTHERN EAST PACIFIC RISE + 5.8 + + -107.644,-34.905,0 + + + + M 5.8 - 2012 Apr 10, NORTH OF ASCENSION ISLAND + 5.8 + + -13.972,-1.261,0 + + + + M 5.8 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.8 + + 91.748,1.271,0 + + + + M 5.8 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.8 + + 89.685,1.841,0 + + + + M 5.8 - 2012 Apr 14, SUNDA STRAIT, INDONESIA + 5.8 + + 105.457,-6.81,0 + + + + M 5.8 - 2012 Apr 16, SULAWESI, INDONESIA + 5.8 + + 121.855,-2.64,0 + + + + M 5.8 - 2012 Apr 16, SOUTHERN GREECE + 5.8 + + 21.475,36.632,0 + + + + M 5.8 - 2012 Apr 20, OFF W COAST OF NORTHERN SUMATRA + 5.8 + + 93.36,2.158,0 + + + + M 5.8 - 2012 Apr 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.8 + + 140.349,35.596,0 + + + + M 5.8 - 2012 May 2, WEST OF MACQUARIE ISLAND + 5.8 + + 143.836,-54.565,0 + + + + M 5.8 - 2012 May 19, ANTOFAGASTA, CHILE + 5.8 + + -70.562,-25.729,0 + + + + M 5.8 - 2012 May 29, SOUTH OF FIJI ISLANDS + 5.8 + + -179.61,-22.13,0 + + + + M 5.8 - 2012 May 29, NORTHERN ITALY + 5.8 + + 11.086,44.851,0 + + + + M 5.8 - 2012 Jun 1, NEAR N COAST OF PAPUA, INDONESIA + 5.8 + + 133.269,-0.72,0 + + + + M 5.8 - 2012 Jun 7, FIJI REGION + 5.8 + + -176.34,-20.192,0 + + + + M 5.8 - 2012 Jun 29, SOUTH ATLANTIC OCEAN + 5.8 + + -9.663,-24.747,0 + + + + M 5.8 - 2012 Jul 12, KURIL ISLANDS + 5.8 + + 151.665,45.452,0 + + + + M 5.8 - 2012 Jul 20, KURIL ISLANDS + 5.8 + + 156.132,49.354,0 + + + + M 5.8 - 2012 Aug 5, FIJI REGION + 5.8 + + -178.358,-21.15,0 + + + + M 5.8 - 2012 Aug 16, SOUTHEAST OF EASTER ISLAND + 5.8 + + -98.905,-36.429,0 + + + + M 5.8 - 2012 Aug 18, HALMAHERA, INDONESIA + 5.8 + + 128.697,2.645,0 + + + + M 5.8 - 2012 Sep 3, MORO GULF, MINDANAO, PHILIPPINES + 5.8 + + 123.875,6.61,0 + + + + M 5.8 - 2012 Sep 27, SOLOMON ISLANDS + 5.8 + + 157.456,-8.838,0 + + + + M 5.8 - 2012 Oct 14, SOLOMON ISLANDS + 5.8 + + 156.048,-7.145,0 + + + + M 5.8 - 2012 Oct 23, SOUTHEAST OF LOYALTY ISLANDS + 5.8 + + 171.691,-22.312,0 + + + + M 5.8 - 2012 Nov 11, MYANMAR + 5.8 + + 95.832,22.72,0 + + + + M 5.8 - 2012 Dec 4, SOUTHERN ALASKA + 5.8 + + -150.76,61.237,0 + + + + M 5.8 - 2012 Dec 5, EASTERN IRAN + 5.8 + + 59.571,33.506,0 + + + + M 5.8 - 2012 Dec 14, FIJI REGION + 5.8 + + -178.186,-15.307,0 + + + + M 5.7 - 2012 Jan 7, KERMADEC ISLANDS REGION + 5.7 + + -176.935,-28.613,0 + + + + M 5.7 - 2012 Jan 17, SAMAR, PHILIPPINES + 5.7 + + 125.837,11.177,0 + + + + M 5.7 - 2012 Jan 19, SANTA CRUZ ISLANDS + 5.7 + + 165.57,-10.966,0 + + + + M 5.7 - 2012 Jan 20, FLORES REGION, INDONESIA + 5.7 + + 119.701,-8.406,0 + + + + M 5.7 - 2012 Feb 3, VANUATU + 5.7 + + 167.187,-17.463,0 + + + + M 5.7 - 2012 Feb 10, NEAR N COAST OF PAPUA, INDONESIA + 5.7 + + 132.691,-0.324,0 + + + + M 5.7 - 2012 Mar 4, SOUTHEAST OF LOYALTY ISLANDS + 5.7 + + 169.769,-21.529,0 + + + + M 5.7 - 2012 Mar 25, PACIFIC-ANTARCTIC RIDGE + 5.7 + + -135.923,-54.576,0 + + + + M 5.7 - 2012 Apr 1, EASTERN HONSHU, JAPAN + 5.7 + + 140.957,37.116,0 + + + + M 5.7 - 2012 Apr 1, NEW IRELAND REGION, P.N.G. + 5.7 + + 153.427,-4.516,0 + + + + M 5.7 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.7 + + 89.544,2.913,0 + + + + M 5.7 - 2012 Apr 13, NEAR EAST COAST OF HONSHU, JAPAN + 5.7 + + 141.152,36.988,0 + + + + M 5.7 - 2012 Apr 20, OFF W COAST OF NORTHERN SUMATRA + 5.7 + + 93.853,3.256,0 + + + + M 5.7 - 2012 Apr 21, SOUTHERN MID-ATLANTIC RIDGE + 5.7 + + -16.181,-35.229,0 + + + + M 5.7 - 2012 Apr 23, MOLUCCA SEA + 5.7 + + 125.293,0.374,0 + + + + M 5.7 - 2012 Apr 25, NICOBAR ISLANDS, INDIA REGION + 5.7 + + 93.945,9.011,0 + + + + M 5.7 - 2012 Apr 29, OFF W COAST OF NORTHERN SUMATRA + 5.7 + + 94.509,2.704,0 + + + + M 5.7 - 2012 Apr 30, NORTH INDIAN OCEAN + 5.7 + + 89.598,1.757,0 + + + + M 5.7 - 2012 May 1, GUERRERO, MEXICO + 5.7 + + -101.085,18.251,0 + + + + M 5.7 - 2012 May 5, TONGA + 5.7 + + -174.227,-21.477,0 + + + + M 5.7 - 2012 May 12, TAJIKISTAN + 5.7 + + 70.354,38.612,0 + + + + M 5.7 - 2012 May 16, NEW BRITAIN REGION, P.N.G. + 5.7 + + 149.711,-5.504,0 + + + + M 5.7 - 2012 Jun 4, FIJI REGION + 5.7 + + -177.919,-15.279,0 + + + + M 5.7 - 2012 Jun 11, HINDU KUSH REGION, AFGHANISTAN + 5.7 + + 69.351,36.023,0 + + + + M 5.7 - 2012 Jun 15, MINDANAO, PHILIPPINES + 5.7 + + 126.354,5.719,0 + + + + M 5.7 - 2012 Jun 17, SOLOMON ISLANDS + 5.7 + + 160.356,-8.511,0 + + + + M 5.7 - 2012 Jun 22, MACQUARIE ISLAND REGION + 5.7 + + 158.79,-54.36,0 + + + + M 5.7 - 2012 Jun 27, EL SALVADOR + 5.7 + + -89.967,13.834,0 + + + + M 5.7 - 2012 Jul 2, NEAR COAST OF CENTRAL PERU + 5.7 + + -75.598,-14.423,0 + + + + M 5.7 - 2012 Jul 7, NEW IRELAND REGION, P.N.G. + 5.7 + + 153.296,-4.651,0 + + + + M 5.7 - 2012 Jul 11, KURIL ISLANDS + 5.7 + + 151.424,45.401,0 + + + + M 5.7 - 2012 Jul 11, SOUTH OF FIJI ISLANDS + 5.7 + + -177.362,-26.051,0 + + + + M 5.7 - 2012 Jul 12, HINDU KUSH REGION, AFGHANISTAN + 5.7 + + 70.906,36.527,0 + + + + M 5.7 - 2012 Jul 29, MYANMAR + 5.7 + + 94.299,22.935,0 + + + + M 5.7 - 2012 Aug 18, VANUATU REGION + 5.7 + + 172.379,-13.504,0 + + + + M 5.7 - 2012 Aug 18, TONGA + 5.7 + + -173.042,-15.598,0 + + + + M 5.7 - 2012 Aug 24, KERMADEC ISLANDS REGION + 5.7 + + -176.807,-27.311,0 + + + + M 5.7 - 2012 Sep 3, MINDANAO, PHILIPPINES + 5.7 + + 125.044,7.905,0 + + + + M 5.7 - 2012 Sep 6, CENTRAL EAST PACIFIC RISE + 5.7 + + -105.891,-4.6,0 + + + + M 5.7 - 2012 Sep 8, MARIANA ISLANDS REGION + 5.7 + + 145.923,21.527,0 + + + + M 5.7 - 2012 Sep 8, COSTA RICA + 5.7 + + -85.323,10.082,0 + + + + M 5.7 - 2012 Sep 15, SOUTH OF JAVA, INDONESIA + 5.7 + + 113.865,-10.732,0 + + + + M 5.7 - 2012 Sep 20, FIJI REGION + 5.7 + + -178.513,-20.757,0 + + + + M 5.7 - 2012 Oct 3, KEPULAUAN BATU, INDONESIA + 5.7 + + 97.672,-0.429,0 + + + + M 5.7 - 2012 Oct 5, NORTHERN MID-ATLANTIC RIDGE + 5.7 + + -46.457,17.479,0 + + + + M 5.7 - 2012 Oct 8, ANTOFAGASTA, CHILE + 5.7 + + -68.165,-21.725,0 + + + + M 5.7 - 2012 Oct 14, KURIL ISLANDS + 5.7 + + 154.428,48.308,0 + + + + M 5.7 - 2012 Oct 29, MOLUCCA SEA + 5.7 + + 125.185,-0.142,0 + + + + M 5.7 - 2012 Nov 1, JAVA, INDONESIA + 5.7 + + 107.529,-6.762,0 + + + + M 5.7 - 2012 Nov 6, MINAHASA, SULAWESI, INDONESIA + 5.7 + + 122.2,1.374,0 + + + + M 5.7 - 2012 Nov 7, OFFSHORE GUATEMALA + 5.7 + + -92.156,13.849,0 + + + + M 5.7 - 2012 Nov 14, NEGROS, PHILIPPINES + 5.7 + + 122.472,9.982,0 + + + + M 5.7 - 2012 Nov 27, SERAM, INDONESIA + 5.7 + + 129.219,-2.952,0 + + + + M 5.7 - 2012 Nov 30, TONGA + 5.7 + + -175.595,-18.824,0 + + + + M 5.7 - 2012 Dec 7, EASTERN NEW GUINEA REG., P.N.G. + 5.7 + + 146.954,-7.661,0 + + + + M 5.7 - 2012 Dec 17, CENTRAL EAST PACIFIC RISE + 5.7 + + -104.177,-4.028,0 + + + + M 5.7 - 2012 Dec 23, BLACK SEA, OFFSHORE GEORGIA + 5.7 + + 41.075,42.42,0 + + + + M 5.7 - 2012 Dec 29, BISMARCK SEA + 5.7 + + 148.899,-3.563,0 + + + + M 5.6 - 2012 Jan 5, TONGA + 5.6 + + -173.543,-17.691,0 + + + + M 5.6 - 2012 Jan 13, SOUTH SANDWICH ISLANDS REGION + 5.6 + + -27.073,-60.548,0 + + + + M 5.6 - 2012 Jan 16, SOUTH SHETLAND ISLANDS + 5.6 + + -56.095,-60.752,0 + + + + M 5.6 - 2012 Jan 17, COQUIMBO, CHILE + 5.6 + + -71.499,-31.655,0 + + + + M 5.6 - 2012 Jan 28, NEAR EAST COAST OF HONSHU, JAPAN + 5.6 + + 142.211,40.177,0 + + + + M 5.6 - 2012 Jan 28, SOUTHERN EAST PACIFIC RISE + 5.6 + + -110.517,-36.793,0 + + + + M 5.6 - 2012 Feb 2, NEW BRITAIN REGION, P.N.G. + 5.6 + + 149.774,-6.563,0 + + + + M 5.6 - 2012 Feb 2, NEW BRITAIN REGION, P.N.G. + 5.6 + + 149.718,-6.586,0 + + + + M 5.6 - 2012 Feb 4, SAMAR, PHILIPPINES + 5.6 + + 125.754,11.872,0 + + + + M 5.6 - 2012 Feb 4, VANCOUVER ISLAND, CANADA REGION + 5.6 + + -127.906,48.887,0 + + + + M 5.6 - 2012 Feb 6, NEGROS- CEBU REG, PHILIPPINES + 5.6 + + 123.227,10.092,0 + + + + M 5.6 - 2012 Feb 11, OFFSHORE BIO-BIO, CHILE + 5.6 + + -73.884,-37.456,0 + + + + M 5.6 - 2012 Feb 13, NORTHERN CALIFORNIA + 5.6 + + -123.79,41.143,0 + + + + M 5.6 - 2012 Feb 20, OFFSHORE CHIAPAS, MEXICO + 5.6 + + -92.779,14.276,0 + + + + M 5.6 - 2012 Feb 26, SOUTH OF KERMADEC ISLANDS + 5.6 + + -177.73,-32.495,0 + + + + M 5.6 - 2012 Feb 28, BONIN ISLANDS, JAPAN REGION + 5.6 + + 139.391,28.2,0 + + + + M 5.6 - 2012 Feb 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.6 + + 141.001,35.2,0 + + + + M 5.6 - 2012 Mar 5, MASBATE REGION, PHILIPPINES + 5.6 + + 123.7,12.354,0 + + + + M 5.6 - 2012 Mar 7, PAPUA, INDONESIA + 5.6 + + 138.888,-2.814,0 + + + + M 5.6 - 2012 Mar 12, NORTHWESTERN KASHMIR + 5.6 + + 73.152,36.741,0 + + + + M 5.6 - 2012 Mar 14, OFF EAST COAST OF HONSHU, JAPAN + 5.6 + + 144.806,40.755,0 + + + + M 5.6 - 2012 Mar 26, SOUTHWEST INDIAN RIDGE + 5.6 + + 60.653,-30.04,0 + + + + M 5.6 - 2012 Apr 14, KURIL ISLANDS + 5.6 + + 155.651,49.38,0 + + + + M 5.6 - 2012 Apr 17, KERMADEC ISLANDS REGION + 5.6 + + -177.236,-31.894,0 + + + + M 5.6 - 2012 Apr 22, WEST OF MACQUARIE ISLAND + 5.6 + + 140.29,-52.867,0 + + + + M 5.6 - 2012 Apr 23, KURIL ISLANDS + 5.6 + + 154.739,48.397,0 + + + + M 5.6 - 2012 Apr 24, CARLSBERG RIDGE + 5.6 + + 61.511,5.649,0 + + + + M 5.6 - 2012 Apr 24, SOUTH OF TONGA + 5.6 + + -175.95,-24.228,0 + + + + M 5.6 - 2012 Apr 26, OFF W COAST OF NORTHERN SUMATRA + 5.6 + + 94.459,2.696,0 + + + + M 5.6 - 2012 Apr 28, NEW BRITAIN REGION, P.N.G. + 5.6 + + 152.11,-5.328,0 + + + + M 5.6 - 2012 Apr 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.6 + + 142.037,39.745,0 + + + + M 5.6 - 2012 Apr 30, OFFSHORE COQUIMBO, CHILE + 5.6 + + -71.46,-29.868,0 + + + + M 5.6 - 2012 May 6, CENTRAL PERU + 5.6 + + -75.801,-13.82,0 + + + + M 5.6 - 2012 May 7, AZERBAIJAN + 5.6 + + 46.789,41.549,0 + + + + M 5.6 - 2012 May 20, OFF EAST COAST OF HONSHU, JAPAN + 5.6 + + 143.248,39.548,0 + + + + M 5.6 - 2012 May 22, BULGARIA + 5.6 + + 22.968,42.645,0 + + + + M 5.6 - 2012 May 29, KOMANDORSKIYE OSTROVA REGION + 5.6 + + 168.925,54.368,0 + + + + M 5.6 - 2012 May 31, NEAR N COAST OF PAPUA, INDONESIA + 5.6 + + 133.181,-0.902,0 + + + + M 5.6 - 2012 Jun 19, NEAR ISLANDS, ALEUTIAN ISLANDS + 5.6 + + 171.701,53.351,0 + + + + M 5.6 - 2012 Jul 1, MYANMAR-INDIA BORDER REGION + 5.6 + + 94.696,25.592,0 + + + + M 5.6 - 2012 Jul 9, EASTERN MEDITERRANEAN SEA + 5.6 + + 28.919,35.604,0 + + + + M 5.6 - 2012 Jul 9, RYUKYU ISLANDS, JAPAN + 5.6 + + 130.099,29.381,0 + + + + M 5.6 - 2012 Jul 16, NEAR N COAST OF PAPUA, INDONESIA + 5.6 + + 137.053,-1.296,0 + + + + M 5.6 - 2012 Jul 19, HINDU KUSH REGION, AFGHANISTAN + 5.6 + + 71.375,37.248,0 + + + + M 5.6 - 2012 Jul 20, FIJI REGION + 5.6 + + -179.287,-21.222,0 + + + + M 5.6 - 2012 Jul 21, EAST OF NORTH ISLAND, N.Z. + 5.6 + + -179.968,-37.713,0 + + + + M 5.6 - 2012 Jul 22, BISMARCK SEA + 5.6 + + 149.532,-4.872,0 + + + + M 5.6 - 2012 Jul 26, SOUTHEAST OF LOYALTY ISLANDS + 5.6 + + 169.509,-21.103,0 + + + + M 5.6 - 2012 Jul 29, PRIMOR'YE, RUSSIA + 5.6 + + 139.073,47.379,0 + + + + M 5.6 - 2012 Aug 9, REVILLA GIGEDO ISLANDS REGION + 5.6 + + -109.332,19.946,0 + + + + M 5.6 - 2012 Aug 16, CENTRAL MID-ATLANTIC RIDGE + 5.6 + + -36.768,7.335,0 + + + + M 5.6 - 2012 Aug 19, OFF COAST OF WASHINGTON + 5.6 + + -128.619,47.789,0 + + + + M 5.6 - 2012 Aug 21, SOUTHWEST OF SUMATRA, INDONESIA + 5.6 + + 92.056,-0.172,0 + + + + M 5.6 - 2012 Aug 24, SOUTH OF KERMADEC ISLANDS + 5.6 + + -179.533,-33.435,0 + + + + M 5.6 - 2012 Aug 26, PACIFIC-ANTARCTIC RIDGE + 5.6 + + -179.778,-65.478,0 + + + + M 5.6 - 2012 Aug 30, WESTERN INDIAN-ANTARCTIC RIDGE + 5.6 + + 114.08,-50.143,0 + + + + M 5.6 - 2012 Aug 31, PHILIPPINE ISLANDS REGION + 5.6 + + 126.719,10.388,0 + + + + M 5.6 - 2012 Sep 6, PAPUA, INDONESIA + 5.6 + + 140.252,-3.661,0 + + + + M 5.6 - 2012 Sep 11, KURIL ISLANDS + 5.6 + + 151.111,45.335,0 + + + + M 5.6 - 2012 Sep 25, TONGA + 5.6 + + -173.901,-15.517,0 + + + + M 5.6 - 2012 Oct 7, LUZON, PHILIPPINES + 5.6 + + 120.939,18.543,0 + + + + M 5.6 - 2012 Oct 9, NEAR N COAST OF PAPUA, INDONESIA + 5.6 + + 139.224,-2.72,0 + + + + M 5.6 - 2012 Oct 15, OFF EAST COAST OF KAMCHATKA + 5.6 + + 159.379,51.9,0 + + + + M 5.6 - 2012 Oct 16, KURIL ISLANDS + 5.6 + + 156.438,49.618,0 + + + + M 5.6 - 2012 Oct 16, NORTH ISLAND OF NEW ZEALAND + 5.6 + + 176.167,-38.639,0 + + + + M 5.6 - 2012 Oct 19, MID-INDIAN RIDGE + 5.6 + + 67.057,-9.289,0 + + + + M 5.6 - 2012 Oct 23, WEST OF MACQUARIE ISLAND + 5.6 + + 148.206,-57.512,0 + + + + M 5.6 - 2012 Oct 25, NEAR EAST COAST OF HONSHU, JAPAN + 5.6 + + 141.699,38.306,0 + + + + M 5.6 - 2012 Nov 3, CENTRAL MID-ATLANTIC RIDGE + 5.6 + + -34.073,7.048,0 + + + + M 5.6 - 2012 Nov 5, OFF EAST COAST OF HONSHU, JAPAN + 5.6 + + 143.61,37.791,0 + + + + M 5.6 - 2012 Nov 6, MINAHASA, SULAWESI, INDONESIA + 5.6 + + 122.167,1.357,0 + + + + M 5.6 - 2012 Nov 6, CARLSBERG RIDGE + 5.6 + + 57.203,9.963,0 + + + + M 5.6 - 2012 Nov 7, EASTERN NEW GUINEA REG., P.N.G. + 5.6 + + 148.034,-8.652,0 + + + + M 5.6 - 2012 Nov 13, TONGA + 5.6 + + -175.934,-21.043,0 + + + + M 5.6 - 2012 Nov 14, NEW BRITAIN REGION, P.N.G. + 5.6 + + 151.341,-5.86,0 + + + + M 5.6 - 2012 Nov 16, PACIFIC-ANTARCTIC RIDGE + 5.6 + + -134.758,-53.955,0 + + + + M 5.6 - 2012 Nov 17, VANUATU + 5.6 + + 167.46,-14.99,0 + + + + M 5.6 - 2012 Nov 28, NORTHERN PERU + 5.6 + + -76.101,-4.522,0 + + + + M 5.6 - 2012 Nov 28, BANDA SEA + 5.6 + + 131.134,-5.398,0 + + + + M 5.6 - 2012 Dec 3, PACIFIC-ANTARCTIC RIDGE + 5.6 + + -136.244,-54.672,0 + + + + M 5.6 - 2012 Dec 8, NEAR S COAST OF NEW GUINEA, PNG. + 5.6 + + 143.973,-7.211,0 + + + + M 5.6 - 2012 Dec 9, MINDANAO, PHILIPPINES + 5.6 + + 126.166,6.703,0 + + + + M 5.6 - 2012 Dec 17, KURIL ISLANDS + 5.6 + + 155.837,49.785,0 + + + + M 5.5 - 2012 Jan 5, DOMINICAN REPUBLIC + 5.5 + + -70.361,18.325,0 + + + + M 5.5 - 2012 Jan 6, CENTRAL EAST PACIFIC RISE + 5.5 + + -107.312,-6.341,0 + + + + M 5.5 - 2012 Jan 12, NEAR EAST COAST OF HONSHU, JAPAN + 5.5 + + 141.071,36.994,0 + + + + M 5.5 - 2012 Jan 12, SOUTH OF AFRICA + 5.5 + + 28.152,-52.113,0 + + + + M 5.5 - 2012 Jan 22, SOUTH SANDWICH ISLANDS REGION + 5.5 + + -24.899,-56.655,0 + + + + M 5.5 - 2012 Jan 24, SOUTH SANDWICH ISLANDS REGION + 5.5 + + -27.723,-56.336,0 + + + + M 5.5 - 2012 Feb 2, VANUATU + 5.5 + + 167.179,-17.954,0 + + + + M 5.5 - 2012 Feb 4, OWEN FRACTURE ZONE REGION + 5.5 + + 57.561,13.046,0 + + + + M 5.5 - 2012 Feb 9, SOUTH SANDWICH ISLANDS REGION + 5.5 + + -25.816,-56.383,0 + + + + M 5.5 - 2012 Feb 11, MOLUCCA SEA + 5.5 + + 126.853,-0.978,0 + + + + M 5.5 - 2012 Feb 14, NEAR EAST COAST OF HONSHU, JAPAN + 5.5 + + 141.402,36.193,0 + + + + M 5.5 - 2012 Feb 23, SOUTHERN MID-ATLANTIC RIDGE + 5.5 + + -13.193,-17.699,0 + + + + M 5.5 - 2012 Feb 26, SOUTH OF FIJI ISLANDS + 5.5 + + -177.5,-24.477,0 + + + + M 5.5 - 2012 Mar 4, OFF COAST OF CENTRAL AMERICA + 5.5 + + -84.34,2.687,0 + + + + M 5.5 - 2012 Mar 10, ALASKA PENINSULA + 5.5 + + -157.567,55.146,0 + + + + M 5.5 - 2012 Mar 12, KURIL ISLANDS + 5.5 + + 147.609,45.239,0 + + + + M 5.5 - 2012 Mar 13, OFFSHORE CHIAPAS, MEXICO + 5.5 + + -93.026,14.959,0 + + + + M 5.5 - 2012 Mar 15, NEAR S. COAST OF HONSHU, JAPAN + 5.5 + + 139.279,35.802,0 + + + + M 5.5 - 2012 Mar 17, CARLSBERG RIDGE + 5.5 + + 63.404,3.823,0 + + + + M 5.5 - 2012 Mar 24, PACIFIC-ANTARCTIC RIDGE + 5.5 + + -136.157,-54.367,0 + + + + M 5.5 - 2012 Mar 26, NORTHERN EAST PACIFIC RISE + 5.5 + + -104.228,9.995,0 + + + + M 5.5 - 2012 Mar 28, PACIFIC-ANTARCTIC RIDGE + 5.5 + + -140.014,-57.331,0 + + + + M 5.5 - 2012 Apr 6, KEP. MENTAWAI REGION, INDONESIA + 5.5 + + 100.426,-3.345,0 + + + + M 5.5 - 2012 Apr 11, ANDREANOF ISLANDS, ALEUTIAN IS. + 5.5 + + -176.097,51.364,0 + + + + M 5.5 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.5 + + 90.854,1.495,0 + + + + M 5.5 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.5 + + 92.092,1.19,0 + + + + M 5.5 - 2012 Apr 12, NEAR EAST COAST OF HONSHU, JAPAN + 5.5 + + 141.468,37.513,0 + + + + M 5.5 - 2012 Apr 18, BONIN ISLANDS, JAPAN REGION + 5.5 + + 138.772,28.689,0 + + + + M 5.5 - 2012 Apr 24, NICOBAR ISLANDS, INDIA REGION + 5.5 + + 93.949,8.868,0 + + + + M 5.5 - 2012 Apr 24, NEAR EAST COAST OF HONSHU, JAPAN + 5.5 + + 140.472,35.622,0 + + + + M 5.5 - 2012 Apr 30, BANDA SEA + 5.5 + + 128.511,-5.689,0 + + + + M 5.5 - 2012 May 1, OFF COAST OF BAJA CALIFORNIA SUR + 5.5 + + -108.44,21.951,0 + + + + M 5.5 - 2012 May 2, SOUTHEAST OF EASTER ISLAND + 5.5 + + -102.728,-35.883,0 + + + + M 5.5 - 2012 May 9, PHILIPPINE ISLANDS REGION + 5.5 + + 127.45,6.232,0 + + + + M 5.5 - 2012 May 9, NORTH OF ASCENSION ISLAND + 5.5 + + -13.6,-0.966,0 + + + + M 5.5 - 2012 May 29, NORTHERN ITALY + 5.5 + + 11.008,44.888,0 + + + + M 5.5 - 2012 Jun 1, ANTARCTICA + 5.5 + + -148.864,-77.08,0 + + + + M 5.5 - 2012 Jun 3, MID-INDIAN RIDGE + 5.5 + + 67.21,-16.235,0 + + + + M 5.5 - 2012 Jun 6, TAIWAN REGION + 5.5 + + 121.428,22.357,0 + + + + M 5.5 - 2012 Jun 12, SUNDA STRAIT, INDONESIA + 5.5 + + 105.494,-5.677,0 + + + + M 5.5 - 2012 Jun 13, SOUTH SANDWICH ISLANDS REGION + 5.5 + + -28.394,-55.796,0 + + + + M 5.5 - 2012 Jun 14, MOLUCCA SEA + 5.5 + + 126.828,1.293,0 + + + + M 5.5 - 2012 Jun 21, FIJI REGION + 5.5 + + -178.186,-17.963,0 + + + + M 5.5 - 2012 Jun 22, SOUTH OF KERMADEC ISLANDS + 5.5 + + -178.65,-32.935,0 + + + + M 5.5 - 2012 Jun 23, OFF W COAST OF NORTHERN SUMATRA + 5.5 + + 90.509,2.628,0 + + + + M 5.5 - 2012 Jun 24, SICHUAN-YUNNAN BORDER REG, CHINA + 5.5 + + 100.781,27.767,0 + + + + M 5.5 - 2012 Jun 27, TONGA + 5.5 + + -173.268,-15.222,0 + + + + M 5.5 - 2012 Jun 30, SOUTHEAST OF LOYALTY ISLANDS + 5.5 + + 170.992,-22.088,0 + + + + M 5.5 - 2012 Jul 3, SOLOMON ISLANDS + 5.5 + + 163.331,-10.82,0 + + + + M 5.5 - 2012 Jul 12, SERAM, INDONESIA + 5.5 + + 129.321,-2.885,0 + + + + M 5.5 - 2012 Jul 16, NEAR EAST COAST OF KAMCHATKA + 5.5 + + 161.234,55.777,0 + + + + M 5.5 - 2012 Jul 26, TONGA + 5.5 + + -174.491,-21.015,0 + + + + M 5.5 - 2012 Aug 2, KEP. TANIMBAR REGION, INDONESIA + 5.5 + + 131.121,-6.944,0 + + + + M 5.5 - 2012 Aug 3, FIJI REGION + 5.5 + + -176.916,-16.919,0 + + + + M 5.5 - 2012 Aug 12, PACIFIC-ANTARCTIC RIDGE + 5.5 + + -157.718,-63.004,0 + + + + M 5.5 - 2012 Aug 15, OFFSHORE EL SALVADOR + 5.5 + + -89.215,13.148,0 + + + + M 5.5 - 2012 Aug 17, NORTHERN EAST PACIFIC RISE + 5.5 + + -103.003,8.348,0 + + + + M 5.5 - 2012 Aug 24, BALLENY ISLANDS REGION + 5.5 + + 171.324,-63.581,0 + + + + M 5.5 - 2012 Aug 26, SOUTHERN CALIFORNIA + 5.5 + + -115.549,33.024,0 + + + + M 5.5 - 2012 Aug 27, OFFSHORE EL SALVADOR + 5.5 + + -88.612,12.297,0 + + + + M 5.5 - 2012 Aug 28, OFFSHORE EL SALVADOR + 5.5 + + -88.654,12.458,0 + + + + M 5.5 - 2012 Aug 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.5 + + 141.814,38.425,0 + + + + M 5.5 - 2012 Sep 1, CHIAPAS, MEXICO + 5.5 + + -92.773,16.229,0 + + + + M 5.5 - 2012 Sep 7, SICHUAN-YUNNAN-GUIZHOU RG, CHINA + 5.5 + + 103.983,27.575,0 + + + + M 5.5 - 2012 Sep 9, RAT ISLANDS, ALEUTIAN ISLANDS + 5.5 + + 175.01,52.78,0 + + + + M 5.5 - 2012 Sep 12, CRETE, GREECE + 5.5 + + 24.11,34.783,0 + + + + M 5.5 - 2012 Sep 13, FIJI REGION + 5.5 + + 175.845,-18.627,0 + + + + M 5.5 - 2012 Sep 14, SOUTHERN MID-ATLANTIC RIDGE + 5.5 + + -16.01,-39.676,0 + + + + M 5.5 - 2012 Sep 17, NEW BRITAIN REGION, P.N.G. + 5.5 + + 150.119,-5.687,0 + + + + M 5.5 - 2012 Sep 22, TONGA + 5.5 + + -174.194,-20.896,0 + + + + M 5.5 - 2012 Sep 24, TONGA + 5.5 + + -174.292,-21.212,0 + + + + M 5.5 - 2012 Sep 29, OAXACA, MEXICO + 5.5 + + -98.393,16.304,0 + + + + M 5.5 - 2012 Oct 2, BALLENY ISLANDS REGION + 5.5 + + 177.83,-64.969,0 + + + + M 5.5 - 2012 Oct 5, OFF THE COAST OF GUATEMALA + 5.5 + + -91.504,13.028,0 + + + + M 5.5 - 2012 Oct 5, GULF OF CALIFORNIA + 5.5 + + -108.512,23.582,0 + + + + M 5.5 - 2012 Oct 11, VALPARAISO, CHILE + 5.5 + + -70.31,-32.865,0 + + + + M 5.5 - 2012 Oct 14, AZERBAIJAN + 5.5 + + 46.405,41.825,0 + + + + M 5.5 - 2012 Oct 14, CHIAPAS, MEXICO + 5.5 + + -92.289,14.684,0 + + + + M 5.5 - 2012 Oct 15, GUATEMALA + 5.5 + + -91.01,14.062,0 + + + + M 5.5 - 2012 Oct 19, KERMADEC ISLANDS REGION + 5.5 + + -176.8,-30.809,0 + + + + M 5.5 - 2012 Oct 21, ICELAND REGION + 5.5 + + -18.666,66.309,0 + + + + M 5.5 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5.5 + + -132.082,52.294,0 + + + + M 5.5 - 2012 Oct 29, FLORES REGION, INDONESIA + 5.5 + + 123.465,-8.185,0 + + + + M 5.5 - 2012 Nov 2, NEAR EAST COAST OF KAMCHATKA + 5.5 + + 162.799,55.887,0 + + + + M 5.5 - 2012 Nov 6, SOUTHEAST OF EASTER ISLAND + 5.5 + + -104.8,-35.465,0 + + + + M 5.5 - 2012 Nov 11, MYANMAR + 5.5 + + 95.866,23.132,0 + + + + M 5.5 - 2012 Nov 15, NEAR ISLANDS, ALEUTIAN ISLANDS + 5.5 + + 173.351,52.496,0 + + + + M 5.5 - 2012 Nov 29, NEAR COAST OF NORTHERN PERU + 5.5 + + -81.07,-6.588,0 + + + + M 5.5 - 2012 Nov 29, OFFSHORE GUATEMALA + 5.5 + + -92.113,13.757,0 + + + + M 5.5 - 2012 Dec 6, PHILIPPINE ISLANDS REGION + 5.5 + + 126.638,10.974,0 + + + + M 5.5 - 2012 Dec 7, OFF EAST COAST OF HONSHU, JAPAN + 5.5 + + 143.607,37.828,0 + + + + M 5.5 - 2012 Dec 13, EAST OF SEVERNAYA ZEMLYA + 5.5 + + 121.383,80.804,0 + + + + M 5.5 - 2012 Dec 22, MYANMAR + 5.5 + + 94.782,22.443,0 + + + + M 5.5 - 2012 Dec 26, PACIFIC-ANTARCTIC RIDGE + 5.5 + + -144.483,-56.186,0 + + + + M 5.5 - 2012 Dec 28, SULAWESI, INDONESIA + 5.5 + + 122.918,-0.145,0 + + + + M 5.5 - 2012 Dec 29, HINDU KUSH REGION, AFGHANISTAN + 5.5 + + 70.599,35.711,0 + + + + M 5.4 - 2012 Jan 7, HALMAHERA, INDONESIA + 5.4 + + 127.475,1.705,0 + + + + M 5.4 - 2012 Jan 7, EASTERN NEW GUINEA REG., P.N.G. + 5.4 + + 145.214,-5.081,0 + + + + M 5.4 - 2012 Jan 17, CENTRAL EAST PACIFIC RISE + 5.4 + + -104.146,-4.045,0 + + + + M 5.4 - 2012 Jan 20, KEPULAUAN SANGIHE, INDONESIA + 5.4 + + 125.307,4.795,0 + + + + M 5.4 - 2012 Jan 26, SCOTIA SEA + 5.4 + + -51.411,-60.582,0 + + + + M 5.4 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5.4 + + -177.172,-29.519,0 + + + + M 5.4 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5.4 + + -177.259,-29.574,0 + + + + M 5.4 - 2012 Feb 1, SOUTHERN SUMATRA, INDONESIA + 5.4 + + 102.203,-3.676,0 + + + + M 5.4 - 2012 Feb 3, VANUATU + 5.4 + + 167.232,-17.386,0 + + + + M 5.4 - 2012 Feb 4, CENTRAL MONGOLIA + 5.4 + + 105.61,42.291,0 + + + + M 5.4 - 2012 Feb 4, SAMAR, PHILIPPINES + 5.4 + + 125.719,11.937,0 + + + + M 5.4 - 2012 Feb 8, NEAR WEST COAST OF HONSHU, JAPAN + 5.4 + + 137.999,37.858,0 + + + + M 5.4 - 2012 Feb 9, BOUGAINVILLE REGION, P.N.G. + 5.4 + + 155.72,-6.987,0 + + + + M 5.4 - 2012 Feb 18, TONGA + 5.4 + + -173.521,-20.957,0 + + + + M 5.4 - 2012 Feb 22, KEPULAUAN KAI, INDONESIA + 5.4 + + 133.565,-5.173,0 + + + + M 5.4 - 2012 Feb 26, TARAPACA, CHILE + 5.4 + + -69.29,-18.811,0 + + + + M 5.4 - 2012 Feb 27, KURIL ISLANDS + 5.4 + + 152.74,46.922,0 + + + + M 5.4 - 2012 Feb 27, RYUKYU ISLANDS, JAPAN + 5.4 + + 127.096,25.557,0 + + + + M 5.4 - 2012 Feb 28, OFF EAST COAST OF HONSHU, JAPAN + 5.4 + + 144.137,37.203,0 + + + + M 5.4 - 2012 Feb 29, VANUATU + 5.4 + + 168.038,-17.647,0 + + + + M 5.4 - 2012 Feb 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.4 + + 140.448,36.427,0 + + + + M 5.4 - 2012 Mar 2, EASTERN NEW GUINEA REG., P.N.G. + 5.4 + + 146.265,-8.048,0 + + + + M 5.4 - 2012 Mar 5, HALMAHERA, INDONESIA + 5.4 + + 128.626,1.937,0 + + + + M 5.4 - 2012 Mar 6, NICOBAR ISLANDS, INDIA REGION + 5.4 + + 93.691,8.571,0 + + + + M 5.4 - 2012 Mar 7, SOUTH SANDWICH ISLANDS REGION + 5.4 + + -25.306,-57.941,0 + + + + M 5.4 - 2012 Mar 9, NEAR EAST COAST OF HONSHU, JAPAN + 5.4 + + 140.392,36.719,0 + + + + M 5.4 - 2012 Mar 14, OFF EAST COAST OF HONSHU, JAPAN + 5.4 + + 144.848,40.905,0 + + + + M 5.4 - 2012 Mar 19, MOLUCCA SEA + 5.4 + + 125.075,0.353,0 + + + + M 5.4 - 2012 Mar 30, OFFSHORE CHIAPAS, MEXICO + 5.4 + + -93.063,14.381,0 + + + + M 5.4 - 2012 Apr 1, TRISTAN DA CUNHA REGION + 5.4 + + -14.877,-35.191,0 + + + + M 5.4 - 2012 Apr 2, TONGA + 5.4 + + -173.514,-16.935,0 + + + + M 5.4 - 2012 Apr 3, NEAR COAST OF NORTHERN PERU + 5.4 + + -80.583,-5.18,0 + + + + M 5.4 - 2012 Apr 3, KEPULAUAN KAI, INDONESIA + 5.4 + + 133.876,-5.654,0 + + + + M 5.4 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.4 + + 91.87,1.167,0 + + + + M 5.4 - 2012 Apr 11, SOUTH SANDWICH ISLANDS REGION + 5.4 + + -27.979,-56.871,0 + + + + M 5.4 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.4 + + 92.855,0.734,0 + + + + M 5.4 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.4 + + 92.694,2.475,0 + + + + M 5.4 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.4 + + 89.556,2.865,0 + + + + M 5.4 - 2012 Apr 14, OFF W COAST OF NORTHERN SUMATRA + 5.4 + + 92.141,0.244,0 + + + + M 5.4 - 2012 Apr 21, CENTRAL PERU + 5.4 + + -71.481,-14.82,0 + + + + M 5.4 - 2012 Apr 22, WEST OF MACQUARIE ISLAND + 5.4 + + 140.329,-52.753,0 + + + + M 5.4 - 2012 May 1, VOLCANO ISLANDS, JAPAN REGION + 5.4 + + 141.207,25.404,0 + + + + M 5.4 - 2012 May 3, OFF COAST OF BAJA CALIFORNIA SUR + 5.4 + + -108.779,21.21,0 + + + + M 5.4 - 2012 May 11, ASSAM, INDIA + 5.4 + + 92.889,26.175,0 + + + + M 5.4 - 2012 May 11, CYPRUS REGION + 5.4 + + 34.142,34.304,0 + + + + M 5.4 - 2012 May 24, NEUQUEN, ARGENTINA + 5.4 + + -70.467,-36.912,0 + + + + M 5.4 - 2012 May 30, EASTERN KAZAKHSTAN + 5.4 + + 78.745,43.384,0 + + + + M 5.4 - 2012 Jun 9, KURIL ISLANDS + 5.4 + + 154.852,48.851,0 + + + + M 5.4 - 2012 Jun 11, HINDU KUSH REGION, AFGHANISTAN + 5.4 + + 69.401,36.039,0 + + + + M 5.4 - 2012 Jun 15, BISMARCK SEA + 5.4 + + 146.309,-3.381,0 + + + + M 5.4 - 2012 Jun 20, MINAHASA, SULAWESI, INDONESIA + 5.4 + + 123.426,0.102,0 + + + + M 5.4 - 2012 Jun 20, SOLOMON ISLANDS + 5.4 + + 156.998,-8.7,0 + + + + M 5.4 - 2012 Jun 24, JUJUY, ARGENTINA + 5.4 + + -66.702,-22.445,0 + + + + M 5.4 - 2012 Jun 26, GUATEMALA + 5.4 + + -92.049,15.378,0 + + + + M 5.4 - 2012 Jul 1, ATACAMA, CHILE + 5.4 + + -70.878,-28.561,0 + + + + M 5.4 - 2012 Jul 2, SOUTH OF KERMADEC ISLANDS + 5.4 + + -179.342,-33.385,0 + + + + M 5.4 - 2012 Jul 7, SOUTH SANDWICH ISLANDS REGION + 5.4 + + -27.414,-56.203,0 + + + + M 5.4 - 2012 Jul 11, TONGA + 5.4 + + -174.678,-16.103,0 + + + + M 5.4 - 2012 Jul 11, NEAR COAST OF CENTRAL PERU + 5.4 + + -75.288,-15.276,0 + + + + M 5.4 - 2012 Jul 14, KURIL ISLANDS + 5.4 + + 151.316,45.516,0 + + + + M 5.4 - 2012 Jul 14, WESTERN INDIAN-ANTARCTIC RIDGE + 5.4 + + 124.64,-49.044,0 + + + + M 5.4 - 2012 Jul 19, SOUTH SANDWICH ISLANDS REGION + 5.4 + + -27.809,-56.038,0 + + + + M 5.4 - 2012 Jul 20, FLORES REGION, INDONESIA + 5.4 + + 123.682,-8.006,0 + + + + M 5.4 - 2012 Jul 22, NEW IRELAND REGION, P.N.G. + 5.4 + + 153.375,-4.169,0 + + + + M 5.4 - 2012 Jul 27, MARIANA ISLANDS REGION + 5.4 + + 142.985,21.671,0 + + + + M 5.4 - 2012 Jul 28, CENTRAL MID-ATLANTIC RIDGE + 5.4 + + -32.667,4.548,0 + + + + M 5.4 - 2012 Aug 1, NEAR N COAST OF NEW GUINEA, PNG. + 5.4 + + 144.639,-4.39,0 + + + + M 5.4 - 2012 Aug 3, BOUGAINVILLE REGION, P.N.G. + 5.4 + + 155.718,-6.939,0 + + + + M 5.4 - 2012 Aug 3, SANTA CRUZ ISLANDS + 5.4 + + 165.038,-11.478,0 + + + + M 5.4 - 2012 Aug 6, HALMAHERA, INDONESIA + 5.4 + + 128.429,2.702,0 + + + + M 5.4 - 2012 Aug 8, NORTHEAST OF TAIWAN + 5.4 + + 124.921,25.873,0 + + + + M 5.4 - 2012 Aug 9, SOUTH SANDWICH ISLANDS REGION + 5.4 + + -27.988,-59.762,0 + + + + M 5.4 - 2012 Aug 13, PAKISTAN + 5.4 + + 73.663,34.849,0 + + + + M 5.4 - 2012 Aug 26, SOUTHERN CALIFORNIA + 5.4 + + -115.546,33.019,0 + + + + M 5.4 - 2012 Aug 30, WESTERN INDIAN-ANTARCTIC RIDGE + 5.4 + + 114.106,-50.211,0 + + + + M 5.4 - 2012 Aug 31, PHILIPPINE ISLANDS REGION + 5.4 + + 126.887,10.485,0 + + + + M 5.4 - 2012 Sep 1, PHILIPPINE ISLANDS REGION + 5.4 + + 126.683,10.449,0 + + + + M 5.4 - 2012 Sep 1, PHILIPPINE ISLANDS REGION + 5.4 + + 126.812,10.528,0 + + + + M 5.4 - 2012 Sep 2, PHILIPPINE ISLANDS REGION + 5.4 + + 126.652,11.308,0 + + + + M 5.4 - 2012 Sep 4, PHILIPPINE ISLANDS REGION + 5.4 + + 126.77,10.46,0 + + + + M 5.4 - 2012 Sep 7, SOUTH OF JAVA, INDONESIA + 5.4 + + 113.833,-10.73,0 + + + + M 5.4 - 2012 Sep 12, NEW BRITAIN REGION, P.N.G. + 5.4 + + 152.098,-5.022,0 + + + + M 5.4 - 2012 Sep 12, SOUTH INDIAN OCEAN + 5.4 + + 82.926,-23.996,0 + + + + M 5.4 - 2012 Sep 13, PHILIPPINE ISLANDS REGION + 5.4 + + 126.938,10.238,0 + + + + M 5.4 - 2012 Sep 13, SOUTH OF JAVA, INDONESIA + 5.4 + + 113.755,-10.768,0 + + + + M 5.4 - 2012 Sep 21, TARAPACA, CHILE + 5.4 + + -68.961,-19.569,0 + + + + M 5.4 - 2012 Sep 22, OAXACA, MEXICO + 5.4 + + -98.281,16.262,0 + + + + M 5.4 - 2012 Sep 25, TONGA + 5.4 + + -174.313,-21.192,0 + + + + M 5.4 - 2012 Sep 30, EAST OF THE VOLCANO ISLANDS + 5.4 + + 146.043,23,0 + + + + M 5.4 - 2012 Oct 3, MINDANAO, PHILIPPINES + 5.4 + + 126.95,5.858,0 + + + + M 5.4 - 2012 Oct 4, NORTHERN MID-ATLANTIC RIDGE + 5.4 + + -46.498,17.443,0 + + + + M 5.4 - 2012 Oct 5, NORTHERN MID-ATLANTIC RIDGE + 5.4 + + -46.453,17.501,0 + + + + M 5.4 - 2012 Oct 7, AZERBAIJAN + 5.4 + + 48.437,40.747,0 + + + + M 5.4 - 2012 Oct 10, SOUTH SANDWICH ISLANDS REGION + 5.4 + + -26.573,-60.326,0 + + + + M 5.4 - 2012 Oct 14, OFF EAST COAST OF HONSHU, JAPAN + 5.4 + + 144.333,38.215,0 + + + + M 5.4 - 2012 Oct 16, IZU ISLANDS, JAPAN REGION + 5.4 + + 140.222,31.277,0 + + + + M 5.4 - 2012 Oct 17, TONGA + 5.4 + + -174.187,-19.042,0 + + + + M 5.4 - 2012 Oct 21, CENTRAL CALIFORNIA + 5.4 + + -120.856,36.311,0 + + + + M 5.4 - 2012 Oct 21, OFFSHORE EL SALVADOR + 5.4 + + -88.337,12.562,0 + + + + M 5.4 - 2012 Oct 24, CAYMAN ISLANDS REGION + 5.4 + + -81.692,17.785,0 + + + + M 5.4 - 2012 Oct 25, NORTHERN PERU + 5.4 + + -76.074,-5.919,0 + + + + M 5.4 - 2012 Oct 27, NEW BRITAIN REGION, P.N.G. + 5.4 + + 151.532,-6.141,0 + + + + M 5.4 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5.4 + + -132.667,52.834,0 + + + + M 5.4 - 2012 Oct 29, NIAS REGION, INDONESIA + 5.4 + + 98.381,0.88,0 + + + + M 5.4 - 2012 Nov 1, MINAHASA, SULAWESI, INDONESIA + 5.4 + + 122.105,1.229,0 + + + + M 5.4 - 2012 Nov 4, SOUTHERN PERU + 5.4 + + -71.878,-15.874,0 + + + + M 5.4 - 2012 Nov 7, NORTHWESTERN IRAN + 5.4 + + 46.62,38.418,0 + + + + M 5.4 - 2012 Nov 17, SOUTHEAST OF EASTER ISLAND + 5.4 + + -95.075,-37.209,0 + + + + M 5.4 - 2012 Nov 17, SOUTHEAST OF EASTER ISLAND + 5.4 + + -95.142,-37.182,0 + + + + M 5.4 - 2012 Nov 20, OFFSHORE O'HIGGINS, CHILE + 5.4 + + -72.254,-33.921,0 + + + + M 5.4 - 2012 Nov 21, SOUTH OF SUMBAWA, INDONESIA + 5.4 + + 117.931,-11.359,0 + + + + M 5.4 - 2012 Nov 26, CENTRAL EAST PACIFIC RISE + 5.4 + + -108.329,-9.098,0 + + + + M 5.4 - 2012 Nov 27, ALAMAGAN REG, N. MARIANA ISLANDS + 5.4 + + 145.763,17.684,0 + + + + M 5.4 - 2012 Dec 3, OFFSHORE GUATEMALA + 5.4 + + -92.372,14.16,0 + + + + M 5.4 - 2012 Dec 12, FIJI REGION + 5.4 + + -176.278,-19.556,0 + + + + M 5.4 - 2012 Dec 20, MOLUCCA SEA + 5.4 + + 126.217,0.562,0 + + + + M 5.4 - 2012 Dec 25, MOLUCCA SEA + 5.4 + + 125.464,1.109,0 + + + + M 5.4 - 2012 Dec 27, TONGA + 5.4 + + -173.562,-18.302,0 + + + + M 5.4 - 2012 Dec 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.4 + + 142.024,38.738,0 + + + + M 5.3 - 2012 Jan 1, SANTA CRUZ ISLANDS + 5.3 + + 166.218,-11.366,0 + + + + M 5.3 - 2012 Jan 5, OFF COAST OF AISEN, CHILE + 5.3 + + -76.472,-45.992,0 + + + + M 5.3 - 2012 Jan 8, VANUATU + 5.3 + + 167.887,-17.425,0 + + + + M 5.3 - 2012 Jan 12, SOUTH OF AFRICA + 5.3 + + 28.196,-52.042,0 + + + + M 5.3 - 2012 Jan 12, TONGA + 5.3 + + -173.59,-16.753,0 + + + + M 5.3 - 2012 Jan 16, MOLUCCA SEA + 5.3 + + 125.475,-0.228,0 + + + + M 5.3 - 2012 Jan 17, OFFSHORE COQUIMBO, CHILE + 5.3 + + -71.615,-31.728,0 + + + + M 5.3 - 2012 Jan 18, SANTA CRUZ ISLANDS + 5.3 + + 165.536,-11.018,0 + + + + M 5.3 - 2012 Jan 18, SANTA CRUZ ISLANDS + 5.3 + + 165.464,-10.999,0 + + + + M 5.3 - 2012 Jan 26, MARIANA ISLANDS REGION + 5.3 + + 142.852,21.645,0 + + + + M 5.3 - 2012 Jan 27, DODECANESE ISLANDS, GREECE + 5.3 + + 25.064,36.044,0 + + + + M 5.3 - 2012 Jan 28, CATANDUANES, PHILIPPINES + 5.3 + + 124.586,13.386,0 + + + + M 5.3 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5.3 + + -177.139,-29.59,0 + + + + M 5.3 - 2012 Jan 28, PAPUA, INDONESIA + 5.3 + + 140.788,-4.081,0 + + + + M 5.3 - 2012 Jan 29, NORTHERN MID-ATLANTIC RIDGE + 5.3 + + -46.529,16.488,0 + + + + M 5.3 - 2012 Feb 1, SANTA CRUZ ISLANDS + 5.3 + + 165.901,-10.802,0 + + + + M 5.3 - 2012 Feb 1, SAMAR, PHILIPPINES + 5.3 + + 125.557,11.6,0 + + + + M 5.3 - 2012 Feb 1, EASTER ISLAND REGION + 5.3 + + -111.525,-31.585,0 + + + + M 5.3 - 2012 Feb 2, VANUATU + 5.3 + + 167.176,-17.455,0 + + + + M 5.3 - 2012 Feb 6, NEGROS- CEBU REG, PHILIPPINES + 5.3 + + 123.108,9.85,0 + + + + M 5.3 - 2012 Feb 7, NEGROS- CEBU REG, PHILIPPINES + 5.3 + + 123.42,10.194,0 + + + + M 5.3 - 2012 Feb 8, NEGROS- CEBU REG, PHILIPPINES + 5.3 + + 123.43,10.249,0 + + + + M 5.3 - 2012 Feb 8, KERMADEC ISLANDS, NEW ZEALAND + 5.3 + + -177.409,-29.455,0 + + + + M 5.3 - 2012 Feb 14, CENTRAL MID-ATLANTIC RIDGE + 5.3 + + -29.228,0.859,0 + + + + M 5.3 - 2012 Feb 17, SOUTHEAST INDIAN RIDGE + 5.3 + + 84.932,-42.024,0 + + + + M 5.3 - 2012 Feb 21, BERING STRAIT + 5.3 + + -167.057,67.744,0 + + + + M 5.3 - 2012 Feb 22, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 94.4,4.99,0 + + + + M 5.3 - 2012 Feb 24, NORTHERN COLOMBIA + 5.3 + + -72.952,6.702,0 + + + + M 5.3 - 2012 Feb 24, MOLUCCA SEA + 5.3 + + 126.34,1.516,0 + + + + M 5.3 - 2012 Mar 2, NEAR EAST COAST OF HONSHU, JAPAN + 5.3 + + 141.043,35.16,0 + + + + M 5.3 - 2012 Mar 3, COQUIMBO, CHILE + 5.3 + + -71.129,-30.348,0 + + + + M 5.3 - 2012 Mar 6, STATE OF YAP, MICRONESIA + 5.3 + + 140.306,10.527,0 + + + + M 5.3 - 2012 Mar 8, MINDORO, PHILIPPINES + 5.3 + + 120.519,13.57,0 + + + + M 5.3 - 2012 Mar 10, TARAPACA, CHILE + 5.3 + + -69.25,-19.738,0 + + + + M 5.3 - 2012 Mar 11, CARLSBERG RIDGE + 5.3 + + 65.125,3.077,0 + + + + M 5.3 - 2012 Mar 11, SOUTHERN MID-ATLANTIC RIDGE + 5.3 + + -16.696,-41.153,0 + + + + M 5.3 - 2012 Mar 17, CARLSBERG RIDGE + 5.3 + + 63.465,3.758,0 + + + + M 5.3 - 2012 Mar 19, NEW GUINEA, PAPUA NEW GUINEA + 5.3 + + 143.888,-4.36,0 + + + + M 5.3 - 2012 Mar 20, OAXACA, MEXICO + 5.3 + + -98.172,16.289,0 + + + + M 5.3 - 2012 Mar 23, SOUTH AUSTRALIA + 5.3 + + 131.955,-26.163,0 + + + + M 5.3 - 2012 Mar 26, CHUKOTKA, RUSSIA + 5.3 + + -174.648,66.363,0 + + + + M 5.3 - 2012 Mar 26, EAST OF NORTH ISLAND, N.Z. + 5.3 + + -179.075,-35.689,0 + + + + M 5.3 - 2012 Mar 29, SOUTHWEST INDIAN RIDGE + 5.3 + + 44.605,-40.957,0 + + + + M 5.3 - 2012 Apr 1, GUERRERO, MEXICO + 5.3 + + -98.54,16.46,0 + + + + M 5.3 - 2012 Apr 3, NEW IRELAND REGION, P.N.G. + 5.3 + + 153.442,-4.397,0 + + + + M 5.3 - 2012 Apr 4, NEW IRELAND REGION, P.N.G. + 5.3 + + 152.173,-3.824,0 + + + + M 5.3 - 2012 Apr 7, NEW BRITAIN REGION, P.N.G. + 5.3 + + 149.555,-6.746,0 + + + + M 5.3 - 2012 Apr 8, TAIWAN REGION + 5.3 + + 122.35,24,0 + + + + M 5.3 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.3 + + 91.785,1.636,0 + + + + M 5.3 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 90.299,2.521,0 + + + + M 5.3 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 90.351,2.483,0 + + + + M 5.3 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 92.482,2.822,0 + + + + M 5.3 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.3 + + 91.958,1.084,0 + + + + M 5.3 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 93.584,2.164,0 + + + + M 5.3 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.3 + + 90.833,1.477,0 + + + + M 5.3 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.3 + + 91.9,1.276,0 + + + + M 5.3 - 2012 Apr 12, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 92.746,3.753,0 + + + + M 5.3 - 2012 Apr 14, SUNDA STRAIT, INDONESIA + 5.3 + + 105.444,-6.777,0 + + + + M 5.3 - 2012 Apr 14, SOUTH SANDWICH ISLANDS REGION + 5.3 + + -25.209,-56.845,0 + + + + M 5.3 - 2012 Apr 16, GULF OF CALIFORNIA + 5.3 + + -108.793,23.952,0 + + + + M 5.3 - 2012 Apr 16, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 92.417,0.798,0 + + + + M 5.3 - 2012 Apr 16, SULAWESI, INDONESIA + 5.3 + + 121.939,-2.58,0 + + + + M 5.3 - 2012 Apr 18, NEAR N COAST OF PAPUA, INDONESIA + 5.3 + + 131.909,-0.501,0 + + + + M 5.3 - 2012 Apr 19, MOLUCCA SEA + 5.3 + + 126.434,1.199,0 + + + + M 5.3 - 2012 Apr 25, NICOBAR ISLANDS, INDIA REGION + 5.3 + + 93.906,8.945,0 + + + + M 5.3 - 2012 Apr 28, KEP. MENTAWAI REGION, INDONESIA + 5.3 + + 100.439,-3.338,0 + + + + M 5.3 - 2012 May 3, NEW BRITAIN REGION, P.N.G. + 5.3 + + 152.085,-5.466,0 + + + + M 5.3 - 2012 May 7, AZERBAIJAN + 5.3 + + 46.719,41.553,0 + + + + M 5.3 - 2012 May 12, MOLUCCA SEA + 5.3 + + 126.108,2.241,0 + + + + M 5.3 - 2012 May 13, SOUTH INDIAN OCEAN + 5.3 + + 89.416,-3.347,0 + + + + M 5.3 - 2012 May 13, SULAWESI, INDONESIA + 5.3 + + 122.996,-0.115,0 + + + + M 5.3 - 2012 May 20, OFF EAST COAST OF HONSHU, JAPAN + 5.3 + + 143.175,39.619,0 + + + + M 5.3 - 2012 May 23, KURIL ISLANDS + 5.3 + + 152.557,46.66,0 + + + + M 5.3 - 2012 Jun 1, SOUTHERN XINJIANG, CHINA + 5.3 + + 75.194,39.803,0 + + + + M 5.3 - 2012 Jun 3, SOUTH SANDWICH ISLANDS REGION + 5.3 + + -25.57,-60.562,0 + + + + M 5.3 - 2012 Jun 5, NORTHERN SUMATRA, INDONESIA + 5.3 + + 94.672,5.482,0 + + + + M 5.3 - 2012 Jun 14, TURKEY-SYRIA-IRAQ BORDER REGION + 5.3 + + 42.325,37.294,0 + + + + M 5.3 - 2012 Jun 17, TONGA + 5.3 + + -174.311,-20.588,0 + + + + M 5.3 - 2012 Jun 18, MENDOZA, ARGENTINA + 5.3 + + -68.496,-33.009,0 + + + + M 5.3 - 2012 Jun 20, NEAR N COAST OF PAPUA, INDONESIA + 5.3 + + 133.281,-0.727,0 + + + + M 5.3 - 2012 Jun 28, VANUATU + 5.3 + + 166.625,-13.504,0 + + + + M 5.3 - 2012 Jul 3, NEAR S. COAST OF HONSHU, JAPAN + 5.3 + + 139.744,34.934,0 + + + + M 5.3 - 2012 Jul 5, MINDANAO, PHILIPPINES + 5.3 + + 126.554,5.126,0 + + + + M 5.3 - 2012 Jul 7, NORTH ISLAND OF NEW ZEALAND + 5.3 + + 175.807,-39.068,0 + + + + M 5.3 - 2012 Jul 9, SULAWESI, INDONESIA + 5.3 + + 122.791,-0.171,0 + + + + M 5.3 - 2012 Jul 11, SOLOMON ISLANDS + 5.3 + + 156.275,-8.442,0 + + + + M 5.3 - 2012 Jul 18, SOUTHERN SUMATRA, INDONESIA + 5.3 + + 102.794,-4.381,0 + + + + M 5.3 - 2012 Jul 18, PHILIPPINE ISLANDS REGION + 5.3 + + 126.073,11.281,0 + + + + M 5.3 - 2012 Jul 20, KURIL ISLANDS + 5.3 + + 155.599,49.506,0 + + + + M 5.3 - 2012 Jul 21, BANDA SEA + 5.3 + + 129.266,-5.387,0 + + + + M 5.3 - 2012 Jul 22, TONGA + 5.3 + + -175.029,-21.804,0 + + + + M 5.3 - 2012 Jul 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.3 + + 142.323,39.075,0 + + + + M 5.3 - 2012 Aug 4, NORTHERN SUMATRA, INDONESIA + 5.3 + + 96.296,4.857,0 + + + + M 5.3 - 2012 Aug 6, RYUKYU ISLANDS, JAPAN + 5.3 + + 130.603,29.487,0 + + + + M 5.3 - 2012 Aug 9, LOMBOK REGION, INDONESIA + 5.3 + + 116.363,-8.718,0 + + + + M 5.3 - 2012 Aug 14, BONIN ISLANDS, JAPAN REGION + 5.3 + + 142.53,28.718,0 + + + + M 5.3 - 2012 Aug 15, NORTHWESTERN IRAN + 5.3 + + 46.672,38.41,0 + + + + M 5.3 - 2012 Aug 22, EASTERN NEW GUINEA REG., P.N.G. + 5.3 + + 147.25,-6.047,0 + + + + M 5.3 - 2012 Aug 27, KEPULAUAN TALAUD, INDONESIA + 5.3 + + 126.698,3.622,0 + + + + M 5.3 - 2012 Aug 28, OFF COAST OF CENTRAL AMERICA + 5.3 + + -88.706,11.978,0 + + + + M 5.3 - 2012 Aug 28, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 92.986,4.409,0 + + + + M 5.3 - 2012 Aug 31, CENTRAL MID-ATLANTIC RIDGE + 5.3 + + -32.155,3.807,0 + + + + M 5.3 - 2012 Aug 31, PHILIPPINE ISLANDS REGION + 5.3 + + 126.926,10.562,0 + + + + M 5.3 - 2012 Aug 31, GULF OF ADEN + 5.3 + + 50.47,13.239,0 + + + + M 5.3 - 2012 Sep 1, PHILIPPINE ISLANDS REGION + 5.3 + + 126.45,10.229,0 + + + + M 5.3 - 2012 Sep 4, PHILIPPINE ISLANDS REGION + 5.3 + + 126.888,10.423,0 + + + + M 5.3 - 2012 Sep 4, PHILIPPINE ISLANDS REGION + 5.3 + + 126.778,10.666,0 + + + + M 5.3 - 2012 Sep 4, PHILIPPINE ISLANDS REGION + 5.3 + + 126.827,10.634,0 + + + + M 5.3 - 2012 Sep 4, PHILIPPINE ISLANDS REGION + 5.3 + + 126.896,10.501,0 + + + + M 5.3 - 2012 Sep 5, PHILIPPINE ISLANDS REGION + 5.3 + + 126.711,11.596,0 + + + + M 5.3 - 2012 Sep 6, KEPULAUAN TALAUD, INDONESIA + 5.3 + + 126.879,4.499,0 + + + + M 5.3 - 2012 Sep 7, SICHUAN-YUNNAN-GUIZHOU RG, CHINA + 5.3 + + 104.007,27.572,0 + + + + M 5.3 - 2012 Sep 7, HALMAHERA, INDONESIA + 5.3 + + 128.238,2.461,0 + + + + M 5.3 - 2012 Sep 11, SOUTH OF JAVA, INDONESIA + 5.3 + + 113.832,-10.705,0 + + + + M 5.3 - 2012 Sep 15, SAMAR, PHILIPPINES + 5.3 + + 125.468,12.556,0 + + + + M 5.3 - 2012 Sep 15, SOUTH OF JAVA, INDONESIA + 5.3 + + 113.883,-10.738,0 + + + + M 5.3 - 2012 Sep 16, PHILIPPINE ISLANDS REGION + 5.3 + + 126.723,10.624,0 + + + + M 5.3 - 2012 Sep 20, KEPULAUAN BATU, INDONESIA + 5.3 + + 98.817,-0.065,0 + + + + M 5.3 - 2012 Sep 20, MINDANAO, PHILIPPINES + 5.3 + + 126.381,5.998,0 + + + + M 5.3 - 2012 Sep 23, FIJI REGION + 5.3 + + 175.174,-16.93,0 + + + + M 5.3 - 2012 Sep 23, SOUTH OF MARIANA ISLANDS + 5.3 + + 143.25,11.705,0 + + + + M 5.3 - 2012 Sep 26, ANTOFAGASTA, CHILE + 5.3 + + -68.441,-22.262,0 + + + + M 5.3 - 2012 Sep 29, NICOBAR ISLANDS, INDIA REGION + 5.3 + + 92.78,6.107,0 + + + + M 5.3 - 2012 Oct 2, MINDANAO, PHILIPPINES + 5.3 + + 123.287,8.297,0 + + + + M 5.3 - 2012 Oct 2, SOUTHERN SUMATRA, INDONESIA + 5.3 + + 101.919,-2.917,0 + + + + M 5.3 - 2012 Oct 3, NEW BRITAIN REGION, P.N.G. + 5.3 + + 152.718,-6.299,0 + + + + M 5.3 - 2012 Oct 7, NEW BRITAIN REGION, P.N.G. + 5.3 + + 151.794,-5.53,0 + + + + M 5.3 - 2012 Oct 10, COSTA RICA + 5.3 + + -85.476,10.1,0 + + + + M 5.3 - 2012 Oct 11, OFF W COAST OF NORTHERN SUMATRA + 5.3 + + 92.585,1.471,0 + + + + M 5.3 - 2012 Oct 13, NEAR N COAST OF NEW GUINEA, PNG. + 5.3 + + 142.326,-2.538,0 + + + + M 5.3 - 2012 Oct 15, VANUATU + 5.3 + + 165.506,-13.114,0 + + + + M 5.3 - 2012 Oct 16, KYUSHU, JAPAN + 5.3 + + 130.199,31.216,0 + + + + M 5.3 - 2012 Oct 21, ICELAND REGION + 5.3 + + -18.569,66.37,0 + + + + M 5.3 - 2012 Oct 25, FIJI REGION + 5.3 + + -178.259,-19.857,0 + + + + M 5.3 - 2012 Oct 25, SOUTHERN ITALY + 5.3 + + 16.01,39.88,0 + + + + M 5.3 - 2012 Oct 28, PHILIPPINE ISLANDS REGION + 5.3 + + 126.635,10.431,0 + + + + M 5.3 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5.3 + + -132.374,52.472,0 + + + + M 5.3 - 2012 Nov 2, FLORES SEA + 5.3 + + 121.64,-7.788,0 + + + + M 5.3 - 2012 Nov 3, PHILIPPINE ISLANDS REGION + 5.3 + + 126.93,10.515,0 + + + + M 5.3 - 2012 Nov 4, KEPULAUAN SANGIHE, INDONESIA + 5.3 + + 125.076,4.6,0 + + + + M 5.3 - 2012 Nov 6, BISMARCK SEA + 5.3 + + 148.846,-3.836,0 + + + + M 5.3 - 2012 Nov 9, SOUTH OF AUSTRALIA + 5.3 + + 124.723,-42.732,0 + + + + M 5.3 - 2012 Nov 9, BALI SEA + 5.3 + + 117.614,-7.947,0 + + + + M 5.3 - 2012 Nov 11, NEW BRITAIN REGION, P.N.G. + 5.3 + + 151.688,-5.45,0 + + + + M 5.3 - 2012 Nov 16, NEAR EAST COAST OF HONSHU, JAPAN + 5.3 + + 140.988,35.217,0 + + + + M 5.3 - 2012 Nov 19, NEW BRITAIN REGION, P.N.G. + 5.3 + + 151.655,-5.785,0 + + + + M 5.3 - 2012 Nov 19, PAKISTAN + 5.3 + + 67.584,30.538,0 + + + + M 5.3 - 2012 Nov 22, KOMANDORSKIYE OSTROVA REGION + 5.3 + + 168.316,54.099,0 + + + + M 5.3 - 2012 Nov 23, NEAR EAST COAST OF HONSHU, JAPAN + 5.3 + + 141.694,38.212,0 + + + + M 5.3 - 2012 Nov 29, FIJI REGION + 5.3 + + -177.157,-20.721,0 + + + + M 5.3 - 2012 Dec 1, ALASKA PENINSULA + 5.3 + + -154.121,58.422,0 + + + + M 5.3 - 2012 Dec 6, BOUVET ISLAND REGION + 5.3 + + -1.917,-54.179,0 + + + + M 5.3 - 2012 Dec 7, SOUTHERN XINJIANG, CHINA + 5.3 + + 88.098,38.745,0 + + + + M 5.3 - 2012 Dec 13, KERMADEC ISLANDS, NEW ZEALAND + 5.3 + + -178.39,-30.911,0 + + + + M 5.3 - 2012 Dec 13, OFFSHORE EL SALVADOR + 5.3 + + -89.967,13.071,0 + + + + M 5.3 - 2012 Dec 24, NEAR EAST COAST OF KAMCHATKA + 5.3 + + 162.034,54.907,0 + + + + M 5.3 - 2012 Dec 26, ASCENSION ISLAND REGION + 5.3 + + -13.132,-10.411,0 + + + + M 5.3 - 2012 Dec 27, BARBADOS REGION, WINDWARD ISL. + 5.3 + + -58.002,13.006,0 + + + + M 5.3 - 2012 Dec 30, OFFSHORE CHIAPAS, MEXICO + 5.3 + + -92.991,14.446,0 + + + + M 5.2 - 2012 Jan 1, SOUTH ISLAND OF NEW ZEALAND + 5.2 + + 172.881,-43.476,0 + + + + M 5.2 - 2012 Jan 1, NORTHERN SUMATRA, INDONESIA + 5.2 + + 96.419,4.547,0 + + + + M 5.2 - 2012 Jan 3, GUAM REGION + 5.2 + + 143.737,12.689,0 + + + + M 5.2 - 2012 Jan 4, KEPULAUAN BARAT DAYA, INDONESIA + 5.2 + + 128.737,-7.354,0 + + + + M 5.2 - 2012 Jan 4, SANTA CRUZ ISLANDS + 5.2 + + 166.375,-10.67,0 + + + + M 5.2 - 2012 Jan 5, PACIFIC-ANTARCTIC RIDGE + 5.2 + + -143.95,-56.146,0 + + + + M 5.2 - 2012 Jan 8, FIJI REGION + 5.2 + + -178.541,-17.897,0 + + + + M 5.2 - 2012 Jan 9, SOUTHERN IRAN + 5.2 + + 55.726,27.034,0 + + + + M 5.2 - 2012 Jan 9, OFFSHORE VALPARAISO, CHILE + 5.2 + + -71.594,-32.573,0 + + + + M 5.2 - 2012 Jan 10, VANUATU REGION + 5.2 + + 171.404,-16.993,0 + + + + M 5.2 - 2012 Jan 10, TONGA REGION + 5.2 + + -172.779,-17.414,0 + + + + M 5.2 - 2012 Jan 11, BANDA SEA + 5.2 + + 123.462,-6.885,0 + + + + M 5.2 - 2012 Jan 12, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 142.461,38.336,0 + + + + M 5.2 - 2012 Jan 13, QUEEN CHARLOTTE ISLANDS REGION + 5.2 + + -130.72,51.076,0 + + + + M 5.2 - 2012 Jan 15, OFF E. COAST OF N. ISLAND, N.Z. + 5.2 + + 177.217,-36.573,0 + + + + M 5.2 - 2012 Jan 16, MINAHASA, SULAWESI, INDONESIA + 5.2 + + 123.09,0.002,0 + + + + M 5.2 - 2012 Jan 18, MOLUCCA SEA + 5.2 + + 126.898,-0.951,0 + + + + M 5.2 - 2012 Jan 19, OFF W. COAST OF S. ISLAND, N.Z. + 5.2 + + 165.604,-46.763,0 + + + + M 5.2 - 2012 Jan 20, OFF EAST COAST OF HONSHU, JAPAN + 5.2 + + 143.311,37.75,0 + + + + M 5.2 - 2012 Jan 22, LAKE RUDOLF REGION, KENYA + 5.2 + + 36.091,3.678,0 + + + + M 5.2 - 2012 Jan 23, EASTERN HONSHU, JAPAN + 5.2 + + 140.965,37.108,0 + + + + M 5.2 - 2012 Jan 25, SOUTH PACIFIC OCEAN + 5.2 + + -122.202,-6.672,0 + + + + M 5.2 - 2012 Jan 25, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.573,38.19,0 + + + + M 5.2 - 2012 Jan 26, DODECANESE ISLANDS, GREECE + 5.2 + + 25.07,36.06,0 + + + + M 5.2 - 2012 Jan 26, ROTA REGION, N. MARIANA ISLANDS + 5.2 + + 145.189,14.338,0 + + + + M 5.2 - 2012 Jan 27, EASTERN HONSHU, JAPAN + 5.2 + + 138.888,35.474,0 + + + + M 5.2 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5.2 + + -177.267,-29.452,0 + + + + M 5.2 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5.2 + + -177.175,-29.69,0 + + + + M 5.2 - 2012 Jan 29, MINDANAO, PHILIPPINES + 5.2 + + 124.727,5.936,0 + + + + M 5.2 - 2012 Jan 30, SIMEULUE, INDONESIA + 5.2 + + 96.647,2.072,0 + + + + M 5.2 - 2012 Feb 2, VANUATU + 5.2 + + 167.304,-17.597,0 + + + + M 5.2 - 2012 Feb 4, VANUATU + 5.2 + + 167.81,-17.086,0 + + + + M 5.2 - 2012 Feb 5, KEPULAUAN KAI, INDONESIA + 5.2 + + 133.949,-5.489,0 + + + + M 5.2 - 2012 Feb 5, KYRGYZSTAN + 5.2 + + 74.784,41.437,0 + + + + M 5.2 - 2012 Feb 7, SVALBARD REGION + 5.2 + + 7.323,76.848,0 + + + + M 5.2 - 2012 Feb 8, NEAR COAST OF ECUADOR + 5.2 + + -79.258,0.658,0 + + + + M 5.2 - 2012 Feb 10, NEAR N COAST OF PAPUA, INDONESIA + 5.2 + + 132.794,-0.266,0 + + + + M 5.2 - 2012 Feb 12, OFF EAST COAST OF HONSHU, JAPAN + 5.2 + + 144.252,38.529,0 + + + + M 5.2 - 2012 Feb 13, TONGA REGION + 5.2 + + -172.415,-18.175,0 + + + + M 5.2 - 2012 Feb 14, AEGEAN SEA + 5.2 + + 24.09,40.13,0 + + + + M 5.2 - 2012 Feb 15, FIJI REGION + 5.2 + + -177.378,-19.321,0 + + + + M 5.2 - 2012 Feb 15, EASTERN NEW GUINEA REG., P.N.G. + 5.2 + + 146.958,-7.501,0 + + + + M 5.2 - 2012 Feb 17, WESTERN XIZANG + 5.2 + + 82.787,32.388,0 + + + + M 5.2 - 2012 Feb 19, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 140.313,36.761,0 + + + + M 5.2 - 2012 Feb 20, NORTHERN SUMATRA, INDONESIA + 5.2 + + 99.562,1.846,0 + + + + M 5.2 - 2012 Feb 25, KURIL ISLANDS + 5.2 + + 155.941,49.186,0 + + + + M 5.2 - 2012 Feb 25, KURIL ISLANDS + 5.2 + + 155.982,49.23,0 + + + + M 5.2 - 2012 Feb 26, SOUTHWESTERN SIBERIA, RUSSIA + 5.2 + + 95.981,51.687,0 + + + + M 5.2 - 2012 Feb 26, SOUTH OF FIJI ISLANDS + 5.2 + + -176.946,-25.159,0 + + + + M 5.2 - 2012 Feb 27, SOUTHWESTERN RYUKYU ISL., JAPAN + 5.2 + + 123.355,23.873,0 + + + + M 5.2 - 2012 Feb 27, CENTRAL IRAN + 5.2 + + 56.778,31.428,0 + + + + M 5.2 - 2012 Feb 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.513,37.305,0 + + + + M 5.2 - 2012 Mar 4, FIJI REGION + 5.2 + + -178.593,-17.835,0 + + + + M 5.2 - 2012 Mar 4, AEGEAN SEA + 5.2 + + 24.059,40.134,0 + + + + M 5.2 - 2012 Mar 6, SOUTHERN SUMATRA, INDONESIA + 5.2 + + 100.16,-0.836,0 + + + + M 5.2 - 2012 Mar 7, RYUKYU ISLANDS, JAPAN + 5.2 + + 127.13,25.609,0 + + + + M 5.2 - 2012 Mar 8, VANUATU + 5.2 + + 167.152,-17.895,0 + + + + M 5.2 - 2012 Mar 14, SOUTH OF FIJI ISLANDS + 5.2 + + -176.331,-24.412,0 + + + + M 5.2 - 2012 Mar 14, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.612,35.502,0 + + + + M 5.2 - 2012 Mar 16, KURIL ISLANDS + 5.2 + + 156.074,49.274,0 + + + + M 5.2 - 2012 Mar 17, CARLSBERG RIDGE + 5.2 + + 63.41,3.705,0 + + + + M 5.2 - 2012 Mar 20, OFFSHORE OAXACA, MEXICO + 5.2 + + -98.715,15.899,0 + + + + M 5.2 - 2012 Mar 25, SOUTH SANDWICH ISLANDS REGION + 5.2 + + -23.863,-60.835,0 + + + + M 5.2 - 2012 Mar 25, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.603,37.692,0 + + + + M 5.2 - 2012 Mar 26, NORTHERN EAST PACIFIC RISE + 5.2 + + -104.373,9.581,0 + + + + M 5.2 - 2012 Mar 28, SOUTHERN SUMATRA, INDONESIA + 5.2 + + 101.235,-4.403,0 + + + + M 5.2 - 2012 Mar 30, BOUGAINVILLE REGION, P.N.G. + 5.2 + + 154.659,-6.583,0 + + + + M 5.2 - 2012 Mar 30, NORTHERN SUMATRA, INDONESIA + 5.2 + + 95.115,4.616,0 + + + + M 5.2 - 2012 Mar 31, SOUTH OF FIJI ISLANDS + 5.2 + + 179.299,-23.63,0 + + + + M 5.2 - 2012 Apr 3, TARAPACA, CHILE + 5.2 + + -69.093,-19.638,0 + + + + M 5.2 - 2012 Apr 7, BANDA SEA + 5.2 + + 130.684,-6.057,0 + + + + M 5.2 - 2012 Apr 11, SOUTHERN MID-ATLANTIC RIDGE + 5.2 + + -14.397,-16.856,0 + + + + M 5.2 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.2 + + 91.802,1.252,0 + + + + M 5.2 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.2 + + 92.11,1.107,0 + + + + M 5.2 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.2 + + 92.2,2.945,0 + + + + M 5.2 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.2 + + 91.662,0.306,0 + + + + M 5.2 - 2012 Apr 12, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.032,36.865,0 + + + + M 5.2 - 2012 Apr 12, OFF W COAST OF NORTHERN SUMATRA + 5.2 + + 93.401,2.396,0 + + + + M 5.2 - 2012 Apr 13, OAXACA, MEXICO + 5.2 + + -98.138,16.236,0 + + + + M 5.2 - 2012 Apr 16, OFF W COAST OF NORTHERN SUMATRA + 5.2 + + 92.235,0.176,0 + + + + M 5.2 - 2012 Apr 19, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.181,36.976,0 + + + + M 5.2 - 2012 Apr 20, OFF W COAST OF NORTHERN SUMATRA + 5.2 + + 93.824,3.249,0 + + + + M 5.2 - 2012 Apr 21, OFF W COAST OF NORTHERN SUMATRA + 5.2 + + 93.723,3.268,0 + + + + M 5.2 - 2012 Apr 21, SOUTHEAST OF LOYALTY ISLANDS + 5.2 + + 170.183,-21.825,0 + + + + M 5.2 - 2012 Apr 22, SOLOMON ISLANDS + 5.2 + + 158.583,-9.192,0 + + + + M 5.2 - 2012 Apr 23, GUATEMALA + 5.2 + + -89.211,15.766,0 + + + + M 5.2 - 2012 Apr 23, KEPULAUAN BABAR, INDONESIA + 5.2 + + 129.226,-7.22,0 + + + + M 5.2 - 2012 Apr 25, SOUTHERN MID-ATLANTIC RIDGE + 5.2 + + -14.631,-12.771,0 + + + + M 5.2 - 2012 Apr 29, PAPUA, INDONESIA + 5.2 + + 136.109,-3.059,0 + + + + M 5.2 - 2012 Apr 30, ANDAMAN ISLANDS, INDIA REGION + 5.2 + + 93.327,14.405,0 + + + + M 5.2 - 2012 May 3, IRAN-IRAQ BORDER REGION + 5.2 + + 47.726,32.747,0 + + + + M 5.2 - 2012 May 3, GANSU-NEI MONGOL BDR REG, CHINA + 5.2 + + 98.525,40.513,0 + + + + M 5.2 - 2012 May 3, WESTERN TURKEY + 5.2 + + 29.092,39.175,0 + + + + M 5.2 - 2012 May 10, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 142.171,39.772,0 + + + + M 5.2 - 2012 May 10, MOLUCCA SEA + 5.2 + + 126.293,1.38,0 + + + + M 5.2 - 2012 May 15, SOUTH OF TONGA + 5.2 + + -175.967,-24.568,0 + + + + M 5.2 - 2012 May 16, SOUTH OF TONGA + 5.2 + + -175.965,-24.566,0 + + + + M 5.2 - 2012 May 21, RYUKYU ISLANDS, JAPAN + 5.2 + + 127.284,27.197,0 + + + + M 5.2 - 2012 May 21, OFF EAST COAST OF HONSHU, JAPAN + 5.2 + + 143.47,39.364,0 + + + + M 5.2 - 2012 May 23, CENTRAL MID-ATLANTIC RIDGE + 5.2 + + -27.607,0.849,0 + + + + M 5.2 - 2012 May 27, KEP. MENTAWAI REGION, INDONESIA + 5.2 + + 100.155,-2.82,0 + + + + M 5.2 - 2012 May 29, OFF EAST COAST OF HONSHU, JAPAN + 5.2 + + 144.645,39.099,0 + + + + M 5.2 - 2012 May 30, NEAR EAST COAST OF KAMCHATKA + 5.2 + + 161.392,54.739,0 + + + + M 5.2 - 2012 Jun 5, VANUATU + 5.2 + + 168.324,-18.114,0 + + + + M 5.2 - 2012 Jun 14, TAIWAN + 5.2 + + 121.584,23.699,0 + + + + M 5.2 - 2012 Jun 14, NORTHERN XINJIANG, CHINA + 5.2 + + 84.279,42.166,0 + + + + M 5.2 - 2012 Jun 19, NEAR S.E. COAST OF AUSTRALIA + 5.2 + + 146.2,-38.304,0 + + + + M 5.2 - 2012 Jun 19, OFF COAST OF OREGON + 5.2 + + -127.273,43.443,0 + + + + M 5.2 - 2012 Jun 20, SOUTHERN SUMATRA, INDONESIA + 5.2 + + 103.194,-4.928,0 + + + + M 5.2 - 2012 Jun 21, OFF EAST COAST OF HONSHU, JAPAN + 5.2 + + 143.364,39.38,0 + + + + M 5.2 - 2012 Jun 21, SOUTH OF KERMADEC ISLANDS + 5.2 + + -178.622,-32.829,0 + + + + M 5.2 - 2012 Jun 26, KAMCHATKA PENINSULA, RUSSIA + 5.2 + + 160.519,56.157,0 + + + + M 5.2 - 2012 Jun 27, FLORES REGION, INDONESIA + 5.2 + + 119.938,-8.304,0 + + + + M 5.2 - 2012 Jun 27, TONGA + 5.2 + + -173.341,-15.138,0 + + + + M 5.2 - 2012 Jun 28, EASTERN HONSHU, JAPAN + 5.2 + + 140.934,37.165,0 + + + + M 5.2 - 2012 Jun 29, OFFSHORE CHIAPAS, MEXICO + 5.2 + + -93.062,14.939,0 + + + + M 5.2 - 2012 Jun 30, BONIN ISLANDS, JAPAN REGION + 5.2 + + 143.386,28.134,0 + + + + M 5.2 - 2012 Jul 8, SOUTH SANDWICH ISLANDS REGION + 5.2 + + -24.188,-56.456,0 + + + + M 5.2 - 2012 Jul 10, NEAR N COAST OF PAPUA, INDONESIA + 5.2 + + 134.248,-1.692,0 + + + + M 5.2 - 2012 Jul 12, GUATEMALA + 5.2 + + -90.938,14.75,0 + + + + M 5.2 - 2012 Jul 12, SANTA CRUZ ISLANDS + 5.2 + + 165.977,-10.752,0 + + + + M 5.2 - 2012 Jul 14, KURIL ISLANDS + 5.2 + + 151.329,45.54,0 + + + + M 5.2 - 2012 Jul 14, MYANMAR-INDIA BORDER REGION + 5.2 + + 94.48,25.424,0 + + + + M 5.2 - 2012 Jul 14, TONGA + 5.2 + + -173.13,-17.787,0 + + + + M 5.2 - 2012 Jul 15, KURIL ISLANDS + 5.2 + + 146.41,43.244,0 + + + + M 5.2 - 2012 Jul 17, KERMADEC ISLANDS REGION + 5.2 + + -178.991,-31.431,0 + + + + M 5.2 - 2012 Jul 21, OFFSHORE NORTHERN CALIFORNIA + 5.2 + + -125.331,40.412,0 + + + + M 5.2 - 2012 Jul 23, NEAR N COAST OF PAPUA, INDONESIA + 5.2 + + 135.414,-2.537,0 + + + + M 5.2 - 2012 Jul 24, OAXACA, MEXICO + 5.2 + + -98.307,16.266,0 + + + + M 5.2 - 2012 Jul 24, WESTERN IRAN + 5.2 + + 50.961,31.705,0 + + + + M 5.2 - 2012 Jul 26, TAJIKISTAN + 5.2 + + 74.008,38.313,0 + + + + M 5.2 - 2012 Jul 26, SOUTH OF FIJI ISLANDS + 5.2 + + -178.61,-26.442,0 + + + + M 5.2 - 2012 Jul 29, SOUTHERN SUMATRA, INDONESIA + 5.2 + + 104.418,-5.997,0 + + + + M 5.2 - 2012 Jul 31, SOUTHERN SUMATRA, INDONESIA + 5.2 + + 103.086,-4.769,0 + + + + M 5.2 - 2012 Aug 2, BOUGAINVILLE REGION, P.N.G. + 5.2 + + 154.833,-6.319,0 + + + + M 5.2 - 2012 Aug 2, EAST OF NORTH ISLAND, N.Z. + 5.2 + + -179.786,-35.56,0 + + + + M 5.2 - 2012 Aug 7, ATACAMA, CHILE + 5.2 + + -70.803,-27.801,0 + + + + M 5.2 - 2012 Aug 8, ALASKA PENINSULA + 5.2 + + -161.214,54.881,0 + + + + M 5.2 - 2012 Aug 8, SOUTH SANDWICH ISLANDS REGION + 5.2 + + -26.056,-55.769,0 + + + + M 5.2 - 2012 Aug 9, SOUTHERN MID-ATLANTIC RIDGE + 5.2 + + -15.876,-33.145,0 + + + + M 5.2 - 2012 Aug 10, WEST CHILE RISE + 5.2 + + -83.235,-42.814,0 + + + + M 5.2 - 2012 Aug 11, NORTHERN MID-ATLANTIC RIDGE + 5.2 + + -31.541,52.149,0 + + + + M 5.2 - 2012 Aug 14, SOUTH SANDWICH ISLANDS REGION + 5.2 + + -26.108,-59.203,0 + + + + M 5.2 - 2012 Aug 15, REYKJANES RIDGE + 5.2 + + -32.646,57.886,0 + + + + M 5.2 - 2012 Aug 17, CENTRAL MID-ATLANTIC RIDGE + 5.2 + + -18.707,-0.353,0 + + + + M 5.2 - 2012 Aug 19, NORTHERN SUMATRA, INDONESIA + 5.2 + + 94.753,5.063,0 + + + + M 5.2 - 2012 Aug 21, SOUTHERN SUMATRA, INDONESIA + 5.2 + + 102.995,-4.749,0 + + + + M 5.2 - 2012 Aug 22, SOUTH OF FIJI ISLANDS + 5.2 + + 179.107,-24.085,0 + + + + M 5.2 - 2012 Aug 23, SOUTH SANDWICH ISLANDS REGION + 5.2 + + -25.452,-58.895,0 + + + + M 5.2 - 2012 Aug 25, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 140.969,36.962,0 + + + + M 5.2 - 2012 Aug 27, GULF OF CALIFORNIA + 5.2 + + -113.89,30.551,0 + + + + M 5.2 - 2012 Aug 27, NORTHERN SUMATRA, INDONESIA + 5.2 + + 99.031,2.376,0 + + + + M 5.2 - 2012 Aug 27, ANDAMAN ISLANDS, INDIA REGION + 5.2 + + 92.802,10.21,0 + + + + M 5.2 - 2012 Aug 27, GULF OF CALIFORNIA + 5.2 + + -113.909,30.545,0 + + + + M 5.2 - 2012 Aug 30, CERAM SEA, INDONESIA + 5.2 + + 131.002,-3.432,0 + + + + M 5.2 - 2012 Aug 30, JAN MAYEN ISLAND REGION + 5.2 + + -7.936,70.94,0 + + + + M 5.2 - 2012 Aug 31, PHILIPPINE ISLANDS REGION + 5.2 + + 126.777,10.372,0 + + + + M 5.2 - 2012 Aug 31, PHILIPPINE ISLANDS REGION + 5.2 + + 126.916,10.456,0 + + + + M 5.2 - 2012 Aug 31, NEW BRITAIN REGION, P.N.G. + 5.2 + + 151.891,-4.95,0 + + + + M 5.2 - 2012 Aug 31, PHILIPPINE ISLANDS REGION + 5.2 + + 126.73,10.727,0 + + + + M 5.2 - 2012 Sep 1, TONGA + 5.2 + + -174.552,-21.623,0 + + + + M 5.2 - 2012 Sep 2, SVALBARD REGION + 5.2 + + 6.764,78.43,0 + + + + M 5.2 - 2012 Sep 4, PHILIPPINE ISLANDS REGION + 5.2 + + 126.701,10.535,0 + + + + M 5.2 - 2012 Sep 4, SOUTH OF JAVA, INDONESIA + 5.2 + + 113.822,-10.771,0 + + + + M 5.2 - 2012 Sep 4, SOUTH OF JAVA, INDONESIA + 5.2 + + 113.911,-10.652,0 + + + + M 5.2 - 2012 Sep 4, PHILIPPINE ISLANDS REGION + 5.2 + + 126.712,10.611,0 + + + + M 5.2 - 2012 Sep 6, SOUTHERN IRAN + 5.2 + + 53.879,26.942,0 + + + + M 5.2 - 2012 Sep 7, CHAGOS ARCHIPELAGO REGION + 5.2 + + 72.179,-6.877,0 + + + + M 5.2 - 2012 Sep 8, SOLOMON ISLANDS + 5.2 + + 160.404,-9.849,0 + + + + M 5.2 - 2012 Sep 9, KURIL ISLANDS + 5.2 + + 155.517,49.427,0 + + + + M 5.2 - 2012 Sep 10, ANDAMAN ISLANDS, INDIA REGION + 5.2 + + 93.616,10.459,0 + + + + M 5.2 - 2012 Sep 11, PHILIPPINE ISLANDS REGION + 5.2 + + 126.758,10.709,0 + + + + M 5.2 - 2012 Sep 12, SOLOMON ISLANDS + 5.2 + + 161.016,-10.11,0 + + + + M 5.2 - 2012 Sep 13, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 140.388,35.752,0 + + + + M 5.2 - 2012 Sep 16, COSTA RICA + 5.2 + + -85.459,10.168,0 + + + + M 5.2 - 2012 Sep 18, MOLUCCA SEA + 5.2 + + 125.849,1.336,0 + + + + M 5.2 - 2012 Sep 18, SOUTHWEST OF SUMATRA, INDONESIA + 5.2 + + 103.739,-6.169,0 + + + + M 5.2 - 2012 Sep 25, SOUTH OF AFRICA + 5.2 + + 25.583,-53.21,0 + + + + M 5.2 - 2012 Sep 25, SOUTH OF FIJI ISLANDS + 5.2 + + 178.327,-25.555,0 + + + + M 5.2 - 2012 Sep 25, HINDU KUSH REGION, AFGHANISTAN + 5.2 + + 69.211,36.277,0 + + + + M 5.2 - 2012 Sep 25, SOLOMON ISLANDS + 5.2 + + 159.746,-9.748,0 + + + + M 5.2 - 2012 Sep 28, SOLOMON ISLANDS + 5.2 + + 157.425,-8.93,0 + + + + M 5.2 - 2012 Oct 1, OFF COAST OF JALISCO, MEXICO + 5.2 + + -107.164,18.607,0 + + + + M 5.2 - 2012 Oct 1, OFF EAST COAST OF HONSHU, JAPAN + 5.2 + + 143.189,39.74,0 + + + + M 5.2 - 2012 Oct 2, ASSAM, INDIA + 5.2 + + 92.818,26.879,0 + + + + M 5.2 - 2012 Oct 10, SOUTHERN IRAN + 5.2 + + 52.49,29.33,0 + + + + M 5.2 - 2012 Oct 12, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 140.346,35.764,0 + + + + M 5.2 - 2012 Oct 15, FIJI REGION + 5.2 + + -178.251,-20.446,0 + + + + M 5.2 - 2012 Oct 22, SOUTH SANDWICH ISLANDS REGION + 5.2 + + -25.59,-56.301,0 + + + + M 5.2 - 2012 Oct 27, CARLSBERG RIDGE + 5.2 + + 57.091,9.82,0 + + + + M 5.2 - 2012 Oct 27, PHILIPPINE ISLANDS REGION + 5.2 + + 126.812,10.415,0 + + + + M 5.2 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5.2 + + -132.49,52.624,0 + + + + M 5.2 - 2012 Nov 1, KURIL ISLANDS + 5.2 + + 155.489,49.399,0 + + + + M 5.2 - 2012 Nov 5, SOUTHWEST INDIAN RIDGE + 5.2 + + 61.983,-28.775,0 + + + + M 5.2 - 2012 Nov 5, MOLUCCA SEA + 5.2 + + 125.236,-0.144,0 + + + + M 5.2 - 2012 Nov 8, WESTERN INDIAN-ANTARCTIC RIDGE + 5.2 + + 117.354,-49.699,0 + + + + M 5.2 - 2012 Nov 9, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.246,36.838,0 + + + + M 5.2 - 2012 Nov 9, SOUTH SANDWICH ISLANDS REGION + 5.2 + + -27.344,-56.391,0 + + + + M 5.2 - 2012 Nov 9, NIAS REGION, INDONESIA + 5.2 + + 97.464,0.886,0 + + + + M 5.2 - 2012 Nov 11, SANTA CRUZ ISLANDS REGION + 5.2 + + 164.828,-10.755,0 + + + + M 5.2 - 2012 Nov 12, SOUTH OF FIJI ISLANDS + 5.2 + + 178.919,-24.277,0 + + + + M 5.2 - 2012 Nov 14, TONGA + 5.2 + + -174.079,-20.739,0 + + + + M 5.2 - 2012 Nov 14, FIJI REGION + 5.2 + + 173.738,-14.484,0 + + + + M 5.2 - 2012 Nov 20, TAIWAN REGION + 5.2 + + 121.454,22.339,0 + + + + M 5.2 - 2012 Nov 21, OFFSHORE O'HIGGINS, CHILE + 5.2 + + -71.994,-33.916,0 + + + + M 5.2 - 2012 Nov 22, SOUTHERN SUMATRA, INDONESIA + 5.2 + + 102.826,-4.535,0 + + + + M 5.2 - 2012 Nov 27, PAPUA, INDONESIA + 5.2 + + 138.75,-2.712,0 + + + + M 5.2 - 2012 Dec 7, OFF EAST COAST OF HONSHU, JAPAN + 5.2 + + 143.93,37.325,0 + + + + M 5.2 - 2012 Dec 7, OFF EAST COAST OF HONSHU, JAPAN + 5.2 + + 143.762,37.739,0 + + + + M 5.2 - 2012 Dec 9, TONGA + 5.2 + + -174.22,-16.236,0 + + + + M 5.2 - 2012 Dec 10, BANDA SEA + 5.2 + + 129.904,-6.511,0 + + + + M 5.2 - 2012 Dec 11, VANUATU + 5.2 + + 167.669,-18.974,0 + + + + M 5.2 - 2012 Dec 14, OFFSHORE GUATEMALA + 5.2 + + -91.679,13.926,0 + + + + M 5.2 - 2012 Dec 15, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.205,37.311,0 + + + + M 5.2 - 2012 Dec 16, GUATEMALA + 5.2 + + -91.457,14.675,0 + + + + M 5.2 - 2012 Dec 16, ROTA REGION, N. MARIANA ISLANDS + 5.2 + + 146.733,14.185,0 + + + + M 5.2 - 2012 Dec 23, VANUATU + 5.2 + + 167.11,-13.086,0 + + + + M 5.2 - 2012 Dec 23, TURKEY-IRAN BORDER REGION + 5.2 + + 44.868,38.458,0 + + + + M 5.2 - 2012 Dec 23, KEPULAUAN TALAUD, INDONESIA + 5.2 + + 126.584,4.19,0 + + + + M 5.2 - 2012 Dec 25, BLACK SEA, OFFSHORE GEORGIA + 5.2 + + 40.974,42.436,0 + + + + M 5.2 - 2012 Dec 26, BIO-BIO, CHILE + 5.2 + + -73.267,-37.274,0 + + + + M 5.2 - 2012 Dec 27, SOUTHERN MID-ATLANTIC RIDGE + 5.2 + + -14.876,-12.396,0 + + + + M 5.2 - 2012 Dec 29, NEAR EAST COAST OF HONSHU, JAPAN + 5.2 + + 141.168,37.018,0 + + + + M 5.2 - 2012 Dec 30, SCOTIA SEA + 5.2 + + -36.887,-60.906,0 + + + + M 5.2 - 2012 Dec 30, MOLUCCA SEA + 5.2 + + 126.587,1.569,0 + + + + M 5.2 - 2012 Dec 30, CENTRAL PERU + 5.2 + + -70.938,-12.861,0 + + + + M 5.2 - 2012 Dec 31, BALLENY ISLANDS REGION + 5.2 + + 154.301,-61.623,0 + + + + M 5.1 - 2012 Jan 1, GUAM REGION + 5.1 + + 143.487,12.008,0 + + + + M 5.1 - 2012 Jan 1, SOUTH ISLAND OF NEW ZEALAND + 5.1 + + 172.852,-43.47,0 + + + + M 5.1 - 2012 Jan 1, GUAM REGION + 5.1 + + 143.607,12.018,0 + + + + M 5.1 - 2012 Jan 1, HALMAHERA, INDONESIA + 5.1 + + 128.368,2.205,0 + + + + M 5.1 - 2012 Jan 1, VANUATU + 5.1 + + 166.921,-14.381,0 + + + + M 5.1 - 2012 Jan 4, VANUATU + 5.1 + + 167.44,-14.748,0 + + + + M 5.1 - 2012 Jan 5, SOUTHERN SUMATRA, INDONESIA + 5.1 + + 99.069,-0.935,0 + + + + M 5.1 - 2012 Jan 6, SOUTHERN MID-ATLANTIC RIDGE + 5.1 + + -14.263,-14.092,0 + + + + M 5.1 - 2012 Jan 7, PACIFIC-ANTARCTIC RIDGE + 5.1 + + -166.854,-63.697,0 + + + + M 5.1 - 2012 Jan 7, TONGA + 5.1 + + -173.318,-17.549,0 + + + + M 5.1 - 2012 Jan 9, TONGA + 5.1 + + -174.142,-15.063,0 + + + + M 5.1 - 2012 Jan 10, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.937,2.386,0 + + + + M 5.1 - 2012 Jan 11, NORTHERN IRAN + 5.1 + + 52.775,36.328,0 + + + + M 5.1 - 2012 Jan 13, SOUTH OF KERMADEC ISLANDS + 5.1 + + -178.566,-32.809,0 + + + + M 5.1 - 2012 Jan 13, SIMEULUE, INDONESIA + 5.1 + + 96.273,2.405,0 + + + + M 5.1 - 2012 Jan 13, SOUTH OF KERMADEC ISLANDS + 5.1 + + -178.476,-32.882,0 + + + + M 5.1 - 2012 Jan 14, SOUTH ISLAND OF NEW ZEALAND + 5.1 + + 172.765,-43.538,0 + + + + M 5.1 - 2012 Jan 15, SOUTH SHETLAND ISLANDS + 5.1 + + -53.571,-61.33,0 + + + + M 5.1 - 2012 Jan 15, SOUTHERN MID-ATLANTIC RIDGE + 5.1 + + -12.912,-15.675,0 + + + + M 5.1 - 2012 Jan 16, SOUTH SANDWICH ISLANDS REGION + 5.1 + + -25.045,-56.718,0 + + + + M 5.1 - 2012 Jan 16, SOUTH OF KERMADEC ISLANDS + 5.1 + + -178.424,-33.33,0 + + + + M 5.1 - 2012 Jan 18, MOLUCCA SEA + 5.1 + + 126.806,-0.906,0 + + + + M 5.1 - 2012 Jan 18, SANTA CRUZ ISLANDS + 5.1 + + 165.478,-11.023,0 + + + + M 5.1 - 2012 Jan 19, SANTA CRUZ ISLANDS + 5.1 + + 165.477,-10.979,0 + + + + M 5.1 - 2012 Jan 19, NORTHEASTERN IRAN + 5.1 + + 58.835,36.288,0 + + + + M 5.1 - 2012 Jan 23, DOMINICAN REPUBLIC + 5.1 + + -70.077,19.542,0 + + + + M 5.1 - 2012 Jan 24, MINDANAO, PHILIPPINES + 5.1 + + 126.102,8.584,0 + + + + M 5.1 - 2012 Jan 25, FOX ISLANDS, ALEUTIAN ISLANDS + 5.1 + + -167.049,52.654,0 + + + + M 5.1 - 2012 Jan 25, OFF W. COAST OF S. ISLAND, N.Z. + 5.1 + + 165.714,-46.68,0 + + + + M 5.1 - 2012 Jan 25, NEW BRITAIN REGION, P.N.G. + 5.1 + + 152.136,-5.209,0 + + + + M 5.1 - 2012 Jan 27, NEAR N COAST OF PAPUA, INDONESIA + 5.1 + + 138.259,-1.452,0 + + + + M 5.1 - 2012 Jan 27, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 93.018,2.732,0 + + + + M 5.1 - 2012 Jan 27, SOUTH OF LOMBOK, INDONESIA + 5.1 + + 116.013,-10.369,0 + + + + M 5.1 - 2012 Jan 28, BABUYAN ISL REGION, PHILIPPINES + 5.1 + + 121.205,19.251,0 + + + + M 5.1 - 2012 Jan 28, POTOSI, BOLIVIA + 5.1 + + -66.436,-21.464,0 + + + + M 5.1 - 2012 Jan 28, SIMEULUE, INDONESIA + 5.1 + + 96.678,2.07,0 + + + + M 5.1 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5.1 + + -177.166,-29.428,0 + + + + M 5.1 - 2012 Jan 29, KYUSHU, JAPAN + 5.1 + + 131.806,32.588,0 + + + + M 5.1 - 2012 Jan 31, VANUATU + 5.1 + + 167.18,-14.255,0 + + + + M 5.1 - 2012 Feb 2, WESTERN INDIAN-ANTARCTIC RIDGE + 5.1 + + 126.049,-49.649,0 + + + + M 5.1 - 2012 Feb 2, VANUATU + 5.1 + + 167.53,-17.754,0 + + + + M 5.1 - 2012 Feb 2, VANUATU + 5.1 + + 167.32,-17.686,0 + + + + M 5.1 - 2012 Feb 2, VANUATU + 5.1 + + 167.429,-17.717,0 + + + + M 5.1 - 2012 Feb 2, VANUATU + 5.1 + + 167.287,-17.395,0 + + + + M 5.1 - 2012 Feb 2, VANUATU + 5.1 + + 167.209,-17.43,0 + + + + M 5.1 - 2012 Feb 2, VANUATU + 5.1 + + 167.327,-17.534,0 + + + + M 5.1 - 2012 Feb 4, TAIWAN REGION + 5.1 + + 122.602,24.699,0 + + + + M 5.1 - 2012 Feb 4, CENTRAL MID-ATLANTIC RIDGE + 5.1 + + -26.746,0.922,0 + + + + M 5.1 - 2012 Feb 5, FIJI REGION + 5.1 + + -177.987,-20.423,0 + + + + M 5.1 - 2012 Feb 8, MINAHASA, SULAWESI, INDONESIA + 5.1 + + 119.951,-0.462,0 + + + + M 5.1 - 2012 Feb 8, OFF COAST OF CHIAPAS, MEXICO + 5.1 + + -94.427,14.682,0 + + + + M 5.1 - 2012 Feb 9, SERAM, INDONESIA + 5.1 + + 130.789,-3.252,0 + + + + M 5.1 - 2012 Feb 9, SERAM, INDONESIA + 5.1 + + 130.694,-3.339,0 + + + + M 5.1 - 2012 Feb 9, CROZET ISLANDS REGION + 5.1 + + 44.526,-41.065,0 + + + + M 5.1 - 2012 Feb 9, PAPUA REGION, INDONESIA + 5.1 + + 140.72,-1.755,0 + + + + M 5.1 - 2012 Feb 9, NORTHERN XINJIANG, CHINA + 5.1 + + 92.985,44.742,0 + + + + M 5.1 - 2012 Feb 9, UTTARANCHAL, INDIA + 5.1 + + 78.282,30.986,0 + + + + M 5.1 - 2012 Feb 9, MACQUARIE ISLAND REGION + 5.1 + + 158.057,-58.307,0 + + + + M 5.1 - 2012 Feb 11, FIJI REGION + 5.1 + + -176.113,-20.991,0 + + + + M 5.1 - 2012 Feb 11, SOLOMON ISLANDS + 5.1 + + 160.274,-9.954,0 + + + + M 5.1 - 2012 Feb 13, SOUTH OF KERMADEC ISLANDS + 5.1 + + -178.851,-32.554,0 + + + + M 5.1 - 2012 Feb 14, SOUTHERN EAST PACIFIC RISE + 5.1 + + -116.529,-49.723,0 + + + + M 5.1 - 2012 Feb 14, NEAR EAST COAST OF HONSHU, JAPAN + 5.1 + + 141.642,36.16,0 + + + + M 5.1 - 2012 Feb 15, ANDREANOF ISLANDS, ALEUTIAN IS. + 5.1 + + -177.97,51.763,0 + + + + M 5.1 - 2012 Feb 17, VANUATU + 5.1 + + 168.847,-19.367,0 + + + + M 5.1 - 2012 Feb 18, NEW BRITAIN REGION, P.N.G. + 5.1 + + 151.415,-5.285,0 + + + + M 5.1 - 2012 Feb 20, TONGA REGION + 5.1 + + -172.96,-17.678,0 + + + + M 5.1 - 2012 Feb 22, VANUATU + 5.1 + + 167.051,-17.868,0 + + + + M 5.1 - 2012 Feb 23, NEW BRITAIN REGION, P.N.G. + 5.1 + + 151.926,-5.197,0 + + + + M 5.1 - 2012 Feb 23, OFF COAST OF CHIAPAS, MEXICO + 5.1 + + -93.37,14.16,0 + + + + M 5.1 - 2012 Feb 23, KERMADEC ISLANDS REGION + 5.1 + + -176.185,-29.231,0 + + + + M 5.1 - 2012 Feb 25, MAUG ISLANDS REG, N. MARIANA IS. + 5.1 + + 145.747,19.122,0 + + + + M 5.1 - 2012 Feb 25, SOUTH OF FIJI ISLANDS + 5.1 + + 179.534,-25.686,0 + + + + M 5.1 - 2012 Feb 25, SAMAR, PHILIPPINES + 5.1 + + 125.782,11.774,0 + + + + M 5.1 - 2012 Feb 26, SOUTHWESTERN SIBERIA, RUSSIA + 5.1 + + 96.084,51.693,0 + + + + M 5.1 - 2012 Feb 26, SOUTH OF FIJI ISLANDS + 5.1 + + -177.222,-24.869,0 + + + + M 5.1 - 2012 Feb 26, SOUTH OF FIJI ISLANDS + 5.1 + + -177.205,-24.672,0 + + + + M 5.1 - 2012 Feb 26, SOUTH OF FIJI ISLANDS + 5.1 + + -177.305,-24.849,0 + + + + M 5.1 - 2012 Feb 27, SOUTH OF FIJI ISLANDS + 5.1 + + -177.123,-24.757,0 + + + + M 5.1 - 2012 Feb 27, SOUTH OF FIJI ISLANDS + 5.1 + + -177.229,-24.688,0 + + + + M 5.1 - 2012 Feb 28, KURIL ISLANDS + 5.1 + + 156.1,49.262,0 + + + + M 5.1 - 2012 Feb 29, SANTA CRUZ ISLANDS + 5.1 + + 166.487,-12.543,0 + + + + M 5.1 - 2012 Feb 29, KURIL ISLANDS + 5.1 + + 156.103,49.259,0 + + + + M 5.1 - 2012 Mar 1, VANUATU + 5.1 + + 167.45,-17.893,0 + + + + M 5.1 - 2012 Mar 2, RAT ISLANDS, ALEUTIAN ISLANDS + 5.1 + + 178.588,52.228,0 + + + + M 5.1 - 2012 Mar 3, SOUTHEAST OF LOYALTY ISLANDS + 5.1 + + 170.307,-21.994,0 + + + + M 5.1 - 2012 Mar 4, TONGA REGION + 5.1 + + -174.798,-22.309,0 + + + + M 5.1 - 2012 Mar 4, SOUTHERN SUMATRA, INDONESIA + 5.1 + + 102.706,-4.323,0 + + + + M 5.1 - 2012 Mar 5, SOUTHEAST OF LOYALTY ISLANDS + 5.1 + + 170.343,-21.591,0 + + + + M 5.1 - 2012 Mar 5, NORTHERN SUMATRA, INDONESIA + 5.1 + + 97.062,4.197,0 + + + + M 5.1 - 2012 Mar 5, HARYANA - DELHI REGION, INDIA + 5.1 + + 76.649,28.809,0 + + + + M 5.1 - 2012 Mar 5, KEPULAUAN BABAR, INDONESIA + 5.1 + + 129.212,-7.076,0 + + + + M 5.1 - 2012 Mar 7, VANUATU + 5.1 + + 168.194,-19.571,0 + + + + M 5.1 - 2012 Mar 8, MINDORO, PHILIPPINES + 5.1 + + 120.556,13.592,0 + + + + M 5.1 - 2012 Mar 8, IRAN-IRAQ BORDER REGION + 5.1 + + 46.957,32.874,0 + + + + M 5.1 - 2012 Mar 13, VANUATU + 5.1 + + 166.983,-17.599,0 + + + + M 5.1 - 2012 Mar 19, MINAHASA, SULAWESI, INDONESIA + 5.1 + + 119.927,-0.882,0 + + + + M 5.1 - 2012 Mar 19, KAMCHATKA PENINSULA, RUSSIA + 5.1 + + 164.724,58.864,0 + + + + M 5.1 - 2012 Mar 20, OAXACA, MEXICO + 5.1 + + -98.22,16.228,0 + + + + M 5.1 - 2012 Mar 20, OAXACA, MEXICO + 5.1 + + -97.987,16.478,0 + + + + M 5.1 - 2012 Mar 20, TONGA REGION + 5.1 + + -175.753,-23.882,0 + + + + M 5.1 - 2012 Mar 22, KEPULAUAN SANGIHE, INDONESIA + 5.1 + + 125.859,3.513,0 + + + + M 5.1 - 2012 Mar 22, OAXACA, MEXICO + 5.1 + + -98.343,16.334,0 + + + + M 5.1 - 2012 Mar 25, FIJI REGION + 5.1 + + -178.774,-18.638,0 + + + + M 5.1 - 2012 Mar 30, NEAR EAST COAST OF HONSHU, JAPAN + 5.1 + + 141.244,37.539,0 + + + + M 5.1 - 2012 Mar 30, OFF EAST COAST OF HONSHU, JAPAN + 5.1 + + 144.807,40.764,0 + + + + M 5.1 - 2012 Mar 31, TONGA + 5.1 + + -175.234,-20.326,0 + + + + M 5.1 - 2012 Apr 6, KEP. MENTAWAI REGION, INDONESIA + 5.1 + + 100.452,-3.346,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 90.062,2.594,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.482,0.604,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.493,2.235,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.631,1.347,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.797,3.163,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.626,2.583,0 + + + + M 5.1 - 2012 Apr 11, NORTH INDIAN OCEAN + 5.1 + + 89.933,2.833,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 90.164,2.674,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.863,3.368,0 + + + + M 5.1 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.496,0.619,0 + + + + M 5.1 - 2012 Apr 12, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 92.158,0.252,0 + + + + M 5.1 - 2012 Apr 13, NEAR EAST COAST OF HONSHU, JAPAN + 5.1 + + 141.151,37.022,0 + + + + M 5.1 - 2012 Apr 14, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 90.347,2.589,0 + + + + M 5.1 - 2012 Apr 17, NORTHERN SUMATRA, INDONESIA + 5.1 + + 94.621,5.373,0 + + + + M 5.1 - 2012 Apr 18, SOUTHEASTERN IRAN + 5.1 + + 58.063,27.941,0 + + + + M 5.1 - 2012 Apr 18, NEAR N COAST OF PAPUA, INDONESIA + 5.1 + + 131.893,-0.545,0 + + + + M 5.1 - 2012 Apr 18, IRAN-IRAQ BORDER REGION + 5.1 + + 47.004,32.506,0 + + + + M 5.1 - 2012 Apr 20, IRAN-IRAQ BORDER REGION + 5.1 + + 47.023,32.511,0 + + + + M 5.1 - 2012 Apr 22, NORTH INDIAN OCEAN + 5.1 + + 91.745,1.379,0 + + + + M 5.1 - 2012 Apr 23, SOUTH OF TONGA + 5.1 + + -175.993,-24.008,0 + + + + M 5.1 - 2012 Apr 24, NORTH INDIAN OCEAN + 5.1 + + 91.724,1.154,0 + + + + M 5.1 - 2012 Apr 25, NICOBAR ISLANDS, INDIA REGION + 5.1 + + 93.882,8.826,0 + + + + M 5.1 - 2012 Apr 26, HOKKAIDO, JAPAN REGION + 5.1 + + 141.818,41.485,0 + + + + M 5.1 - 2012 Apr 27, SULAWESI, INDONESIA + 5.1 + + 121.913,-2.662,0 + + + + M 5.1 - 2012 May 1, SULAWESI, INDONESIA + 5.1 + + 121.906,-2.613,0 + + + + M 5.1 - 2012 May 1, KERMADEC ISLANDS REGION + 5.1 + + -175.874,-30.267,0 + + + + M 5.1 - 2012 May 2, SOUTH OF FIJI ISLANDS + 5.1 + + -176.175,-24.331,0 + + + + M 5.1 - 2012 May 4, NORTH INDIAN OCEAN + 5.1 + + 89.719,2.001,0 + + + + M 5.1 - 2012 May 5, NEAR EAST COAST OF HONSHU, JAPAN + 5.1 + + 141.628,38.182,0 + + + + M 5.1 - 2012 May 11, IZU ISLANDS, JAPAN REGION + 5.1 + + 138.61,30.669,0 + + + + M 5.1 - 2012 May 14, SOUTHERN IRAN + 5.1 + + 57.722,27.955,0 + + + + M 5.1 - 2012 May 15, NORTH INDIAN OCEAN + 5.1 + + 89.561,2.71,0 + + + + M 5.1 - 2012 May 17, SOUTHERN IRAN + 5.1 + + 53.851,26.942,0 + + + + M 5.1 - 2012 May 18, AZERBAIJAN + 5.1 + + 46.789,41.439,0 + + + + M 5.1 - 2012 May 20, MARIANA ISLANDS REGION + 5.1 + + 147.257,17.017,0 + + + + M 5.1 - 2012 May 20, EAST OF KURIL ISLANDS + 5.1 + + 151.761,44.688,0 + + + + M 5.1 - 2012 May 20, OFF EAST COAST OF HONSHU, JAPAN + 5.1 + + 143.197,39.577,0 + + + + M 5.1 - 2012 May 20, NEAR N COAST OF NEW GUINEA, PNG. + 5.1 + + 143.917,-3.188,0 + + + + M 5.1 - 2012 May 20, OFF EAST COAST OF HONSHU, JAPAN + 5.1 + + 143.619,39.556,0 + + + + M 5.1 - 2012 May 22, MOLUCCA SEA + 5.1 + + 126.619,2.41,0 + + + + M 5.1 - 2012 May 23, ROTA REGION, N. MARIANA ISLANDS + 5.1 + + 145.413,14.065,0 + + + + M 5.1 - 2012 May 26, LOYALTY ISLANDS + 5.1 + + 168.626,-20.796,0 + + + + M 5.1 - 2012 May 26, NORTH OF SVALBARD + 5.1 + + 32.186,85.939,0 + + + + M 5.1 - 2012 May 28, NEAR S. COAST OF HONSHU, JAPAN + 5.1 + + 139.95,35.707,0 + + + + M 5.1 - 2012 May 29, NORTHERN ITALY + 5.1 + + 10.955,44.873,0 + + + + M 5.1 - 2012 Jun 1, NEAR S. COAST OF HONSHU, JAPAN + 5.1 + + 139.642,35.98,0 + + + + M 5.1 - 2012 Jun 3, NORTHERN ITALY + 5.1 + + 10.94,44.9,0 + + + + M 5.1 - 2012 Jun 5, NORTHERN MID-ATLANTIC RIDGE + 5.1 + + -44.854,13.501,0 + + + + M 5.1 - 2012 Jun 6, SOUTHWESTERN SIBERIA, RUSSIA + 5.1 + + 96.037,51.706,0 + + + + M 5.1 - 2012 Jun 7, MOLUCCA SEA + 5.1 + + 126.477,1.602,0 + + + + M 5.1 - 2012 Jun 9, CERAM SEA, INDONESIA + 5.1 + + 127.671,-2.987,0 + + + + M 5.1 - 2012 Jun 9, SOUTH SANDWICH ISLANDS REGION + 5.1 + + -26.424,-60.577,0 + + + + M 5.1 - 2012 Jun 10, SOUTH SANDWICH ISLANDS REGION + 5.1 + + -27.674,-55.981,0 + + + + M 5.1 - 2012 Jun 12, KERMADEC ISLANDS REGION + 5.1 + + -178.657,-31.696,0 + + + + M 5.1 - 2012 Jun 14, SOUTH OF FIJI ISLANDS + 5.1 + + 179.633,-22.25,0 + + + + M 5.1 - 2012 Jun 16, MAUG ISLANDS REG, N. MARIANA IS. + 5.1 + + 145.401,20.632,0 + + + + M 5.1 - 2012 Jun 17, SOUTH SANDWICH ISLANDS REGION + 5.1 + + -26.603,-57.124,0 + + + + M 5.1 - 2012 Jun 18, HALMAHERA, INDONESIA + 5.1 + + 129.203,2.035,0 + + + + M 5.1 - 2012 Jun 19, KEP. MENTAWAI REGION, INDONESIA + 5.1 + + 100.99,-2.921,0 + + + + M 5.1 - 2012 Jun 22, SOUTH OF KERMADEC ISLANDS + 5.1 + + -178.33,-32.979,0 + + + + M 5.1 - 2012 Jun 24, SOUTH SANDWICH ISLANDS REGION + 5.1 + + -27.611,-60.228,0 + + + + M 5.1 - 2012 Jun 25, SOUTH OF KERMADEC ISLANDS + 5.1 + + -178.051,-32.627,0 + + + + M 5.1 - 2012 Jun 27, VOLCANO ISLANDS, JAPAN REGION + 5.1 + + 143.482,23.126,0 + + + + M 5.1 - 2012 Jul 1, NORTHEASTERN IRAN + 5.1 + + 59.927,34.481,0 + + + + M 5.1 - 2012 Jul 3, NORTHERN PERU + 5.1 + + -76.15,-4.035,0 + + + + M 5.1 - 2012 Jul 4, KERMADEC ISLANDS, NEW ZEALAND + 5.1 + + -178.169,-30.749,0 + + + + M 5.1 - 2012 Jul 7, KURIL ISLANDS + 5.1 + + 151.232,45.465,0 + + + + M 5.1 - 2012 Jul 7, DOMINICAN REPUBLIC + 5.1 + + -71.136,18.243,0 + + + + M 5.1 - 2012 Jul 9, MYANMAR + 5.1 + + 96.529,25.347,0 + + + + M 5.1 - 2012 Jul 10, SOUTH OF FIJI ISLANDS + 5.1 + + -176.408,-25.142,0 + + + + M 5.1 - 2012 Jul 11, KURIL ISLANDS + 5.1 + + 151.435,45.377,0 + + + + M 5.1 - 2012 Jul 11, GALAPAGOS ISLANDS REGION + 5.1 + + -90.855,1.582,0 + + + + M 5.1 - 2012 Jul 13, FIJI REGION + 5.1 + + -178.551,-18.273,0 + + + + M 5.1 - 2012 Jul 13, SOUTHERN PERU + 5.1 + + -73.172,-15.232,0 + + + + M 5.1 - 2012 Jul 17, SOUTHERN EAST PACIFIC RISE + 5.1 + + -115.177,-23.496,0 + + + + M 5.1 - 2012 Jul 18, OFFSHORE TARAPACA, CHILE + 5.1 + + -70.365,-20.693,0 + + + + M 5.1 - 2012 Jul 20, KODIAK ISLAND REGION, ALASKA + 5.1 + + -153.542,56.595,0 + + + + M 5.1 - 2012 Jul 21, OFFSHORE NORTHERN CALIFORNIA + 5.1 + + -125.528,40.385,0 + + + + M 5.1 - 2012 Jul 22, MYANMAR + 5.1 + + 96.427,24.998,0 + + + + M 5.1 - 2012 Jul 22, HOKKAIDO, JAPAN REGION + 5.1 + + 142.848,42.552,0 + + + + M 5.1 - 2012 Jul 24, SANTA CRUZ ISLANDS + 5.1 + + 166.416,-12.042,0 + + + + M 5.1 - 2012 Aug 1, EAST OF NORTH ISLAND, N.Z. + 5.1 + + -179.679,-35.663,0 + + + + M 5.1 - 2012 Aug 2, EAST OF NORTH ISLAND, N.Z. + 5.1 + + -179.6,-37.584,0 + + + + M 5.1 - 2012 Aug 2, MYANMAR + 5.1 + + 96.324,26.103,0 + + + + M 5.1 - 2012 Aug 3, ROSS SEA + 5.1 + + 164.067,-76.313,0 + + + + M 5.1 - 2012 Aug 3, SOUTHERN MID-ATLANTIC RIDGE + 5.1 + + -13.831,-25.807,0 + + + + M 5.1 - 2012 Aug 4, SOUTHERN SUMATRA, INDONESIA + 5.1 + + 100.471,-1.758,0 + + + + M 5.1 - 2012 Aug 4, EAST OF NORTH ISLAND, N.Z. + 5.1 + + -179.752,-35.779,0 + + + + M 5.1 - 2012 Aug 6, SOUTHWEST OF AFRICA + 5.1 + + 13.771,-52.261,0 + + + + M 5.1 - 2012 Aug 10, NIAS REGION, INDONESIA + 5.1 + + 96.965,1.901,0 + + + + M 5.1 - 2012 Aug 11, SOUTHERN XINJIANG, CHINA + 5.1 + + 78.154,39.963,0 + + + + M 5.1 - 2012 Aug 11, NORTHWESTERN IRAN + 5.1 + + 46.759,38.482,0 + + + + M 5.1 - 2012 Aug 14, NORTHWESTERN IRAN + 5.1 + + 46.79,38.45,0 + + + + M 5.1 - 2012 Aug 16, CENTRAL MID-ATLANTIC RIDGE + 5.1 + + -18.759,-0.269,0 + + + + M 5.1 - 2012 Aug 20, NEAR EAST COAST OF HONSHU, JAPAN + 5.1 + + 141.323,36.927,0 + + + + M 5.1 - 2012 Aug 21, SOUTHWEST OF SUMATRA, INDONESIA + 5.1 + + 92.008,-0.177,0 + + + + M 5.1 - 2012 Aug 22, TONGA + 5.1 + + -173.661,-20.038,0 + + + + M 5.1 - 2012 Aug 27, OFFSHORE EL SALVADOR + 5.1 + + -88.399,12.76,0 + + + + M 5.1 - 2012 Aug 27, NEAR COAST OF NICARAGUA + 5.1 + + -88.282,12.172,0 + + + + M 5.1 - 2012 Aug 29, VANUATU + 5.1 + + 168.334,-17.61,0 + + + + M 5.1 - 2012 Aug 30, KEPULAUAN BARAT DAYA, INDONESIA + 5.1 + + 128.647,-7.806,0 + + + + M 5.1 - 2012 Aug 31, PHILIPPINE ISLANDS REGION + 5.1 + + 126.705,11.026,0 + + + + M 5.1 - 2012 Aug 31, SOUTH SANDWICH ISLANDS REGION + 5.1 + + -27.493,-55.804,0 + + + + M 5.1 - 2012 Aug 31, PHILIPPINE ISLANDS REGION + 5.1 + + 126.867,10.977,0 + + + + M 5.1 - 2012 Sep 1, NORTHERN COLOMBIA + 5.1 + + -72.919,6.719,0 + + + + M 5.1 - 2012 Sep 2, EASTERN IRAN + 5.1 + + 59.897,33.474,0 + + + + M 5.1 - 2012 Sep 3, PHILIPPINE ISLANDS REGION + 5.1 + + 126.393,10.338,0 + + + + M 5.1 - 2012 Sep 5, TAIWAN REGION + 5.1 + + 122.341,24.026,0 + + + + M 5.1 - 2012 Sep 5, GULF OF ADEN + 5.1 + + 46.238,12.084,0 + + + + M 5.1 - 2012 Sep 8, MOLUCCA SEA + 5.1 + + 126.691,2.387,0 + + + + M 5.1 - 2012 Sep 9, KURIL ISLANDS + 5.1 + + 151.322,45.291,0 + + + + M 5.1 - 2012 Sep 10, KEPULAUAN TALAUD, INDONESIA + 5.1 + + 126.132,3.999,0 + + + + M 5.1 - 2012 Sep 11, SAN JUAN, ARGENTINA + 5.1 + + -68.35,-31.875,0 + + + + M 5.1 - 2012 Sep 12, HINDU KUSH REGION, AFGHANISTAN + 5.1 + + 71.442,36.697,0 + + + + M 5.1 - 2012 Sep 13, SOUTH OF JAVA, INDONESIA + 5.1 + + 113.98,-10.901,0 + + + + M 5.1 - 2012 Sep 13, NORTH OF SEVERNAYA ZEMLYA + 5.1 + + 116.863,82.899,0 + + + + M 5.1 - 2012 Sep 14, SOUTHERN MID-ATLANTIC RIDGE + 5.1 + + -16.021,-39.644,0 + + + + M 5.1 - 2012 Sep 15, SAMAR, PHILIPPINES + 5.1 + + 125.524,12.532,0 + + + + M 5.1 - 2012 Sep 18, KODIAK ISLAND REGION, ALASKA + 5.1 + + -154.142,56.937,0 + + + + M 5.1 - 2012 Sep 20, NEW BRITAIN REGION, P.N.G. + 5.1 + + 149.845,-5.691,0 + + + + M 5.1 - 2012 Sep 20, OFF EAST COAST OF HONSHU, JAPAN + 5.1 + + 143.344,39.607,0 + + + + M 5.1 - 2012 Sep 22, SAKHALIN, RUSSIA + 5.1 + + 141.915,46.078,0 + + + + M 5.1 - 2012 Sep 24, MINDANAO, PHILIPPINES + 5.1 + + 126.54,5.629,0 + + + + M 5.1 - 2012 Sep 26, TONGA + 5.1 + + -174.328,-21.205,0 + + + + M 5.1 - 2012 Sep 29, LA PAZ, BOLIVIA + 5.1 + + -69.405,-17.182,0 + + + + M 5.1 - 2012 Oct 1, NEAR EAST COAST OF HONSHU, JAPAN + 5.1 + + 141.028,36.916,0 + + + + M 5.1 - 2012 Oct 2, TONGA + 5.1 + + -174.407,-21.155,0 + + + + M 5.1 - 2012 Oct 4, MINDORO, PHILIPPINES + 5.1 + + 120.664,13.249,0 + + + + M 5.1 - 2012 Oct 9, NEAR N COAST OF PAPUA, INDONESIA + 5.1 + + 139.107,-2.706,0 + + + + M 5.1 - 2012 Oct 11, SOUTH SANDWICH ISLANDS REGION + 5.1 + + -25.71,-56.316,0 + + + + M 5.1 - 2012 Oct 13, SOLOMON ISLANDS + 5.1 + + 162.831,-11.106,0 + + + + M 5.1 - 2012 Oct 13, TONGA + 5.1 + + -173.991,-19.963,0 + + + + M 5.1 - 2012 Oct 13, TONGA + 5.1 + + -174.479,-16.886,0 + + + + M 5.1 - 2012 Oct 14, KURIL ISLANDS + 5.1 + + 154.429,48.345,0 + + + + M 5.1 - 2012 Oct 14, HINDU KUSH REGION, AFGHANISTAN + 5.1 + + 69.216,36.167,0 + + + + M 5.1 - 2012 Oct 14, SOLOMON ISLANDS + 5.1 + + 161.415,-10.271,0 + + + + M 5.1 - 2012 Oct 15, OFF EAST COAST OF KAMCHATKA + 5.1 + + 159.519,51.81,0 + + + + M 5.1 - 2012 Oct 18, FLORES REGION, INDONESIA + 5.1 + + 123.671,-8.059,0 + + + + M 5.1 - 2012 Oct 19, EASTERN MEDITERRANEAN SEA + 5.1 + + 30.978,32.552,0 + + + + M 5.1 - 2012 Oct 19, SOUTH OF FIJI ISLANDS + 5.1 + + 176.649,-21.039,0 + + + + M 5.1 - 2012 Oct 21, OFFSHORE EL SALVADOR + 5.1 + + -88.332,12.59,0 + + + + M 5.1 - 2012 Oct 22, FED. STATES OF MICRONESIA REGION + 5.1 + + 147.678,2.893,0 + + + + M 5.1 - 2012 Oct 23, ANTOFAGASTA, CHILE + 5.1 + + -70.55,-25.767,0 + + + + M 5.1 - 2012 Oct 23, EASTERN NEW GUINEA REG., P.N.G. + 5.1 + + 147.873,-6.579,0 + + + + M 5.1 - 2012 Oct 26, SANTA CRUZ ISLANDS + 5.1 + + 165.484,-11.58,0 + + + + M 5.1 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5.1 + + -132.395,52.735,0 + + + + M 5.1 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5.1 + + -132.01,52.243,0 + + + + M 5.1 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5.1 + + -132.478,52.647,0 + + + + M 5.1 - 2012 Oct 29, NEAR N COAST OF PAPUA, INDONESIA + 5.1 + + 132.789,-0.457,0 + + + + M 5.1 - 2012 Oct 30, NEW BRITAIN REGION, P.N.G. + 5.1 + + 151.873,-4.563,0 + + + + M 5.1 - 2012 Oct 30, TONGA + 5.1 + + -174.714,-18.275,0 + + + + M 5.1 - 2012 Nov 1, ANDREANOF ISLANDS, ALEUTIAN IS. + 5.1 + + -179.699,51.011,0 + + + + M 5.1 - 2012 Nov 3, TONGA + 5.1 + + -173.617,-16.662,0 + + + + M 5.1 - 2012 Nov 5, KEPULAUAN SANGIHE, INDONESIA + 5.1 + + 125.144,4.684,0 + + + + M 5.1 - 2012 Nov 7, CENTRAL EAST PACIFIC RISE + 5.1 + + -108.73,-8.962,0 + + + + M 5.1 - 2012 Nov 7, OFFSHORE GUATEMALA + 5.1 + + -92.193,13.967,0 + + + + M 5.1 - 2012 Nov 8, SOUTH INDIAN OCEAN + 5.1 + + 53.497,-36.132,0 + + + + M 5.1 - 2012 Nov 8, VANUATU + 5.1 + + 167.194,-14.663,0 + + + + M 5.1 - 2012 Nov 8, TONGA + 5.1 + + -173.33,-18.807,0 + + + + M 5.1 - 2012 Nov 10, JAVA, INDONESIA + 5.1 + + 106.666,-7.373,0 + + + + M 5.1 - 2012 Nov 10, OFFSHORE GUATEMALA + 5.1 + + -92.224,13.815,0 + + + + M 5.1 - 2012 Nov 11, KURIL ISLANDS + 5.1 + + 155.213,49.357,0 + + + + M 5.1 - 2012 Nov 12, TONGA + 5.1 + + -173.09,-17.631,0 + + + + M 5.1 - 2012 Nov 13, OFF COAST OF ECUADOR + 5.1 + + -81.577,-1.736,0 + + + + M 5.1 - 2012 Nov 13, QUEEN CHARLOTTE ISLANDS REGION + 5.1 + + -132.033,52.705,0 + + + + M 5.1 - 2012 Nov 17, SOUTHEAST OF LOYALTY ISLANDS + 5.1 + + 171.578,-22.278,0 + + + + M 5.1 - 2012 Nov 18, MINDANAO, PHILIPPINES + 5.1 + + 125.809,5.979,0 + + + + M 5.1 - 2012 Nov 19, EAST OF SOUTH SANDWICH ISLANDS + 5.1 + + -18.067,-59.391,0 + + + + M 5.1 - 2012 Nov 19, NEW BRITAIN REGION, P.N.G. + 5.1 + + 151.625,-5.793,0 + + + + M 5.1 - 2012 Nov 19, OFFSHORE O'HIGGINS, CHILE + 5.1 + + -72.17,-33.928,0 + + + + M 5.1 - 2012 Nov 21, OFFSHORE O'HIGGINS, CHILE + 5.1 + + -72.1,-33.931,0 + + + + M 5.1 - 2012 Nov 23, LUZON, PHILIPPINES + 5.1 + + 120.708,14.069,0 + + + + M 5.1 - 2012 Nov 24, NEAR EAST COAST OF HONSHU, JAPAN + 5.1 + + 141.702,38.23,0 + + + + M 5.1 - 2012 Nov 26, PHILIPPINE ISLANDS REGION + 5.1 + + 126.702,10.438,0 + + + + M 5.1 - 2012 Nov 26, ANDAMAN ISLANDS, INDIA REGION + 5.1 + + 93.637,13.85,0 + + + + M 5.1 - 2012 Nov 27, KURIL ISLANDS + 5.1 + + 154.943,48.17,0 + + + + M 5.1 - 2012 Nov 27, SOUTH SANDWICH ISLANDS REGION + 5.1 + + -27.281,-56.082,0 + + + + M 5.1 - 2012 Nov 28, BONIN ISLANDS, JAPAN REGION + 5.1 + + 143.194,27.243,0 + + + + M 5.1 - 2012 Nov 29, FIJI REGION + 5.1 + + -178.772,-21.106,0 + + + + M 5.1 - 2012 Dec 2, OFF COAST OF CENTRAL AMERICA + 5.1 + + -88.988,11.852,0 + + + + M 5.1 - 2012 Dec 2, TONGA + 5.1 + + -174.214,-20.69,0 + + + + M 5.1 - 2012 Dec 5, FIJI REGION + 5.1 + + -178.95,-20.781,0 + + + + M 5.1 - 2012 Dec 6, OFF W COAST OF NORTHERN SUMATRA + 5.1 + + 90.434,2.421,0 + + + + M 5.1 - 2012 Dec 7, OFF EAST COAST OF HONSHU, JAPAN + 5.1 + + 143.633,37.813,0 + + + + M 5.1 - 2012 Dec 7, OFF EAST COAST OF HONSHU, JAPAN + 5.1 + + 143.771,37.654,0 + + + + M 5.1 - 2012 Dec 8, NEAR S COAST OF NEW GUINEA, PNG. + 5.1 + + 144.006,-7.235,0 + + + + M 5.1 - 2012 Dec 8, TAIWAN REGION + 5.1 + + 122.35,25.748,0 + + + + M 5.1 - 2012 Dec 9, OFF EAST COAST OF HONSHU, JAPAN + 5.1 + + 143.617,37.744,0 + + + + M 5.1 - 2012 Dec 11, OFF EAST COAST OF HONSHU, JAPAN + 5.1 + + 143.833,37.633,0 + + + + M 5.1 - 2012 Dec 14, OFFSHORE GUATEMALA + 5.1 + + -91.725,13.824,0 + + + + M 5.1 - 2012 Dec 14, NEW IRELAND REGION, P.N.G. + 5.1 + + 153.404,-5.272,0 + + + + M 5.1 - 2012 Dec 15, NEW IRELAND REGION, P.N.G. + 5.1 + + 153.405,-4.893,0 + + + + M 5.1 - 2012 Dec 18, OFFSHORE EL SALVADOR + 5.1 + + -89.978,13.054,0 + + + + M 5.1 - 2012 Dec 18, NEAR EAST COAST OF HONSHU, JAPAN + 5.1 + + 141.917,36.664,0 + + + + M 5.1 - 2012 Dec 22, NORTHERN SUMATRA, INDONESIA + 5.1 + + 94.221,5.169,0 + + + + M 5.1 - 2012 Dec 22, KURIL ISLANDS + 5.1 + + 155.103,49.818,0 + + + + M 5.1 - 2012 Dec 22, BABUYAN ISL REGION, PHILIPPINES + 5.1 + + 121.194,19.061,0 + + + + M 5.1 - 2012 Dec 24, OFFSHORE ATACAMA, CHILE + 5.1 + + -71.494,-29.037,0 + + + + M 5.1 - 2012 Dec 24, KEPULAUAN TALAUD, INDONESIA + 5.1 + + 126.679,4.149,0 + + + + M 5.1 - 2012 Dec 25, SOUTHWEST OF SUMATRA, INDONESIA + 5.1 + + 101.25,-7.893,0 + + + + M 5.1 - 2012 Dec 26, EASTERN NEW GUINEA REG., P.N.G. + 5.1 + + 147.287,-5.914,0 + + + + M 5.1 - 2012 Dec 28, KERMADEC ISLANDS REGION + 5.1 + + -176.245,-29.596,0 + + + + M 5.1 - 2012 Dec 28, KOMANDORSKIYE OSTROVA REGION + 5.1 + + 164.724,55.707,0 + + + + M 5.1 - 2012 Dec 29, BISMARCK SEA + 5.1 + + 148.757,-3.315,0 + + + + M 5.1 - 2012 Dec 31, GUATEMALA + 5.1 + + -92.037,15.031,0 + + + + M 5 - 2012 Jan 1, PACIFIC-ANTARCTIC RIDGE + 5 + + -149.214,-58.259,0 + + + + M 5 - 2012 Jan 1, BOUGAINVILLE REGION, P.N.G. + 5 + + 154.209,-5.413,0 + + + + M 5 - 2012 Jan 4, RYUKYU ISLANDS, JAPAN + 5 + + 130.221,27.917,0 + + + + M 5 - 2012 Jan 4, TONGA + 5 + + -174.671,-15.552,0 + + + + M 5 - 2012 Jan 4, TONGA + 5 + + -174.663,-15.14,0 + + + + M 5 - 2012 Jan 5, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 142.197,38.714,0 + + + + M 5 - 2012 Jan 6, OFF COAST OF ARAUCANIA, CHILE + 5 + + -75.091,-38.024,0 + + + + M 5 - 2012 Jan 6, BONIN ISLANDS, JAPAN REGION + 5 + + 143.559,26.944,0 + + + + M 5 - 2012 Jan 6, SOUTHERN ALASKA + 5 + + -153.232,59.852,0 + + + + M 5 - 2012 Jan 7, PAPUA, INDONESIA + 5 + + 138.055,-3.752,0 + + + + M 5 - 2012 Jan 7, NEW BRITAIN REGION, P.N.G. + 5 + + 152.594,-4.329,0 + + + + M 5 - 2012 Jan 7, BABUYAN ISL REGION, PHILIPPINES + 5 + + 121.191,19.254,0 + + + + M 5 - 2012 Jan 7, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 142.073,36.063,0 + + + + M 5 - 2012 Jan 8, NORTHERN XINJIANG, CHINA + 5 + + 87.474,42.203,0 + + + + M 5 - 2012 Jan 8, SOUTH OF FIJI ISLANDS + 5 + + -179.895,-23.337,0 + + + + M 5 - 2012 Jan 9, KERMADEC ISLANDS REGION + 5 + + -176.09,-29.512,0 + + + + M 5 - 2012 Jan 9, SANTA CRUZ ISLANDS + 5 + + 165.105,-10.516,0 + + + + M 5 - 2012 Jan 9, NEAR N COAST OF PAPUA, INDONESIA + 5 + + 133.064,-0.814,0 + + + + M 5 - 2012 Jan 10, NEAR COAST OF ECUADOR + 5 + + -80.28,-0.74,0 + + + + M 5 - 2012 Jan 12, MINDANAO, PHILIPPINES + 5 + + 125.918,8.432,0 + + + + M 5 - 2012 Jan 12, SOUTH OF AFRICA + 5 + + 23.53,-53.252,0 + + + + M 5 - 2012 Jan 12, SOUTH OF AFRICA + 5 + + 23.746,-53.209,0 + + + + M 5 - 2012 Jan 12, TONGA REGION + 5 + + -172.393,-17.989,0 + + + + M 5 - 2012 Jan 12, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 141.895,36.672,0 + + + + M 5 - 2012 Jan 12, TONGA REGION + 5 + + -172.531,-17.822,0 + + + + M 5 - 2012 Jan 13, SANTA CRUZ ISLANDS + 5 + + 165.262,-10.52,0 + + + + M 5 - 2012 Jan 13, SOUTH SANDWICH ISLANDS REGION + 5 + + -27.208,-60.597,0 + + + + M 5 - 2012 Jan 13, HINDU KUSH REGION, AFGHANISTAN + 5 + + 70.512,36.009,0 + + + + M 5 - 2012 Jan 14, SOUTH SANDWICH ISLANDS REGION + 5 + + -26.086,-60.695,0 + + + + M 5 - 2012 Jan 16, SOUTH SANDWICH ISLANDS REGION + 5 + + -24.981,-56.754,0 + + + + M 5 - 2012 Jan 16, NORTH OF ASCENSION ISLAND + 5 + + -12.601,-2.114,0 + + + + M 5 - 2012 Jan 16, TONGA REGION + 5 + + -172.909,-19.289,0 + + + + M 5 - 2012 Jan 17, MINDANAO, PHILIPPINES + 5 + + 125.972,6.516,0 + + + + M 5 - 2012 Jan 18, SAN JUAN, ARGENTINA + 5 + + -68.084,-31.767,0 + + + + M 5 - 2012 Jan 19, DOMINICAN REPUBLIC REGION + 5 + + -68.755,18.058,0 + + + + M 5 - 2012 Jan 19, TONGA REGION + 5 + + -172.416,-17.898,0 + + + + M 5 - 2012 Jan 21, BALLENY ISLANDS REGION + 5 + + 177.584,-65.042,0 + + + + M 5 - 2012 Jan 21, MARIANA ISLANDS REGION + 5 + + 147.034,19.727,0 + + + + M 5 - 2012 Jan 22, ATACAMA, CHILE + 5 + + -71.03,-28.682,0 + + + + M 5 - 2012 Jan 23, OFFSHORE BIO-BIO, CHILE + 5 + + -73.486,-36.424,0 + + + + M 5 - 2012 Jan 23, OFFSHORE BIO-BIO, CHILE + 5 + + -73.031,-36.338,0 + + + + M 5 - 2012 Jan 25, NEAR WEST COAST OF COLOMBIA + 5 + + -77.505,5.519,0 + + + + M 5 - 2012 Jan 25, NEW BRITAIN REGION, P.N.G. + 5 + + 153.487,-6.802,0 + + + + M 5 - 2012 Jan 26, KEPULAUAN BABAR, INDONESIA + 5 + + 129.935,-7.1,0 + + + + M 5 - 2012 Jan 27, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.891,37.904,0 + + + + M 5 - 2012 Jan 27, NORTHERN ITALY + 5 + + 10.03,44.48,0 + + + + M 5 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5 + + -177.077,-29.52,0 + + + + M 5 - 2012 Jan 28, KERMADEC ISLANDS REGION + 5 + + -176.893,-29.505,0 + + + + M 5 - 2012 Jan 28, KERMADEC ISLANDS, NEW ZEALAND + 5 + + -177.036,-29.554,0 + + + + M 5 - 2012 Jan 29, NORTHERN MID-ATLANTIC RIDGE + 5 + + -46.467,16.624,0 + + + + M 5 - 2012 Jan 31, KERMADEC ISLANDS, NEW ZEALAND + 5 + + -177.843,-30.699,0 + + + + M 5 - 2012 Feb 1, SAMAR, PHILIPPINES + 5 + + 125.615,11.61,0 + + + + M 5 - 2012 Feb 2, WEST OF MACQUARIE ISLAND + 5 + + 153.349,-60.843,0 + + + + M 5 - 2012 Feb 2, NEW IRELAND REGION, P.N.G. + 5 + + 153.638,-5.341,0 + + + + M 5 - 2012 Feb 2, VANUATU + 5 + + 167.248,-17.783,0 + + + + M 5 - 2012 Feb 2, VANUATU + 5 + + 167.126,-17.933,0 + + + + M 5 - 2012 Feb 2, VANUATU + 5 + + 167.413,-17.858,0 + + + + M 5 - 2012 Feb 2, VANUATU + 5 + + 167.108,-17.433,0 + + + + M 5 - 2012 Feb 2, VANUATU + 5 + + 167.198,-17.899,0 + + + + M 5 - 2012 Feb 2, VANUATU + 5 + + 167.648,-18.2,0 + + + + M 5 - 2012 Feb 2, VANUATU + 5 + + 167.327,-17.529,0 + + + + M 5 - 2012 Feb 2, VANUATU + 5 + + 167.791,-18.011,0 + + + + M 5 - 2012 Feb 3, NEW BRITAIN REGION, P.N.G. + 5 + + 149.939,-6.644,0 + + + + M 5 - 2012 Feb 3, TONGA + 5 + + -174.83,-19.49,0 + + + + M 5 - 2012 Feb 4, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 141.869,37.343,0 + + + + M 5 - 2012 Feb 4, VANUATU + 5 + + 167.423,-18.026,0 + + + + M 5 - 2012 Feb 5, SOUTHERN IRAN + 5 + + 51.488,28.59,0 + + + + M 5 - 2012 Feb 6, NEGROS- CEBU REG, PHILIPPINES + 5 + + 123.356,10.019,0 + + + + M 5 - 2012 Feb 7, NEGROS- CEBU REG, PHILIPPINES + 5 + + 123.595,10.108,0 + + + + M 5 - 2012 Feb 7, HOKKAIDO, JAPAN REGION + 5 + + 142.219,45.559,0 + + + + M 5 - 2012 Feb 7, BABUYAN ISL REGION, PHILIPPINES + 5 + + 121.5,19.684,0 + + + + M 5 - 2012 Feb 8, NEGROS- CEBU REG, PHILIPPINES + 5 + + 123.183,9.839,0 + + + + M 5 - 2012 Feb 9, VANUATU + 5 + + 167.545,-15.325,0 + + + + M 5 - 2012 Feb 11, NEGROS- CEBU REG, PHILIPPINES + 5 + + 123.264,10.071,0 + + + + M 5 - 2012 Feb 12, NEAR COAST OF SOUTHERN PERU + 5 + + -74.157,-15.64,0 + + + + M 5 - 2012 Feb 12, ASCENSION ISLAND REGION + 5 + + -13.051,-7.074,0 + + + + M 5 - 2012 Feb 13, MOZAMBIQUE + 5 + + 40.891,-13.928,0 + + + + M 5 - 2012 Feb 13, VANUATU + 5 + + 167.233,-17.552,0 + + + + M 5 - 2012 Feb 13, SOUTH OF KERMADEC ISLANDS + 5 + + -178.703,-33.982,0 + + + + M 5 - 2012 Feb 14, CENTRAL MID-ATLANTIC RIDGE + 5 + + -25.357,0.599,0 + + + + M 5 - 2012 Feb 14, VANUATU + 5 + + 167.153,-18.038,0 + + + + M 5 - 2012 Feb 15, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 141.475,37.803,0 + + + + M 5 - 2012 Feb 15, NICOBAR ISLANDS, INDIA REGION + 5 + + 92.9,6.306,0 + + + + M 5 - 2012 Feb 16, NEW BRITAIN REGION, P.N.G. + 5 + + 152.193,-5.697,0 + + + + M 5 - 2012 Feb 17, VANUATU + 5 + + 166.829,-14.824,0 + + + + M 5 - 2012 Feb 18, OFFSHORE OAXACA, MEXICO + 5 + + -95.67,15.264,0 + + + + M 5 - 2012 Feb 18, MOLUCCA SEA + 5 + + 126.909,2.446,0 + + + + M 5 - 2012 Feb 19, NORTH ISLAND OF NEW ZEALAND + 5 + + 174.124,-39.382,0 + + + + M 5 - 2012 Feb 19, CROZET ISLANDS REGION + 5 + + 44.553,-41.015,0 + + + + M 5 - 2012 Feb 19, FIJI REGION + 5 + + -178.639,-17.861,0 + + + + M 5 - 2012 Feb 20, KASHMIR-XINJIANG BORDER REGION + 5 + + 79.717,35.723,0 + + + + M 5 - 2012 Feb 20, KASHMIR-XINJIANG BORDER REGION + 5 + + 79.835,35.84,0 + + + + M 5 - 2012 Feb 20, NEW BRITAIN REGION, P.N.G. + 5 + + 151.4,-4.792,0 + + + + M 5 - 2012 Feb 22, TONGA + 5 + + -173.294,-17.463,0 + + + + M 5 - 2012 Feb 23, FIJI REGION + 5 + + -178.761,-20.57,0 + + + + M 5 - 2012 Feb 24, TONGA + 5 + + -174.264,-15.206,0 + + + + M 5 - 2012 Feb 24, MINDANAO, PHILIPPINES + 5 + + 125.955,9.958,0 + + + + M 5 - 2012 Feb 24, SOUTHERN SUMATRA, INDONESIA + 5 + + 103.103,-4.695,0 + + + + M 5 - 2012 Feb 26, SOUTH OF FIJI ISLANDS + 5 + + -177.234,-24.739,0 + + + + M 5 - 2012 Feb 26, SOUTH OF FIJI ISLANDS + 5 + + -177.459,-24.796,0 + + + + M 5 - 2012 Feb 26, FIJI REGION + 5 + + -178.48,-18.036,0 + + + + M 5 - 2012 Feb 27, BOUGAINVILLE REGION, P.N.G. + 5 + + 154.871,-6.535,0 + + + + M 5 - 2012 Feb 27, SOUTH OF FIJI ISLANDS + 5 + + -177.122,-24.734,0 + + + + M 5 - 2012 Feb 27, KURIL ISLANDS + 5 + + 155.843,49.272,0 + + + + M 5 - 2012 Feb 27, RYUKYU ISLANDS, JAPAN + 5 + + 127.182,25.511,0 + + + + M 5 - 2012 Feb 28, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 141.023,36.373,0 + + + + M 5 - 2012 Feb 28, KURIL ISLANDS + 5 + + 156.127,49.115,0 + + + + M 5 - 2012 Feb 28, TONGA REGION + 5 + + -175.419,-22.084,0 + + + + M 5 - 2012 Feb 29, KURIL ISLANDS + 5 + + 156.2,49.282,0 + + + + M 5 - 2012 Feb 29, VANUATU + 5 + + 167.399,-17.794,0 + + + + M 5 - 2012 Mar 1, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 144.154,37.21,0 + + + + M 5 - 2012 Mar 2, EASTERN NEW GUINEA REG., P.N.G. + 5 + + 146.483,-7.956,0 + + + + M 5 - 2012 Mar 2, BALLENY ISLANDS REGION + 5 + + 176.623,-64.822,0 + + + + M 5 - 2012 Mar 2, SOUTHERN XINJIANG, CHINA + 5 + + 74.38,39.75,0 + + + + M 5 - 2012 Mar 2, HALMAHERA, INDONESIA + 5 + + 127.077,1.809,0 + + + + M 5 - 2012 Mar 3, SOUTHEAST OF LOYALTY ISLANDS + 5 + + 170.341,-22.089,0 + + + + M 5 - 2012 Mar 3, SOUTH OF FIJI ISLANDS + 5 + + -177.066,-23.934,0 + + + + M 5 - 2012 Mar 3, OFFSHORE MAULE, CHILE + 5 + + -72.8,-35.749,0 + + + + M 5 - 2012 Mar 4, ANTOFAGASTA, CHILE + 5 + + -69.848,-21.554,0 + + + + M 5 - 2012 Mar 5, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 142.389,40.167,0 + + + + M 5 - 2012 Mar 6, NICOBAR ISLANDS, INDIA REGION + 5 + + 93.873,8.559,0 + + + + M 5 - 2012 Mar 9, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 142.033,35.642,0 + + + + M 5 - 2012 Mar 11, SOUTH OF FIJI ISLANDS + 5 + + -176.949,-24.921,0 + + + + M 5 - 2012 Mar 11, VOLCANO ISLANDS, JAPAN REGION + 5 + + 143.579,23.718,0 + + + + M 5 - 2012 Mar 13, COMOROS REGION + 5 + + 43.286,-10.923,0 + + + + M 5 - 2012 Mar 13, SOUTH OF FIJI ISLANDS + 5 + + 179.981,-23.734,0 + + + + M 5 - 2012 Mar 14, ANDAMAN ISLANDS, INDIA REGION + 5 + + 93.854,10.535,0 + + + + M 5 - 2012 Mar 16, SOUTHEAST OF LOYALTY ISLANDS + 5 + + 171.119,-22.507,0 + + + + M 5 - 2012 Mar 19, NEW BRITAIN REGION, P.N.G. + 5 + + 152.963,-4.585,0 + + + + M 5 - 2012 Mar 20, VANUATU + 5 + + 169.33,-19.684,0 + + + + M 5 - 2012 Mar 20, OFFSHORE GUERRERO, MEXICO + 5 + + -98.694,16.273,0 + + + + M 5 - 2012 Mar 21, GUERRERO, MEXICO + 5 + + -98.504,16.511,0 + + + + M 5 - 2012 Mar 22, VANUATU + 5 + + 167.526,-15.188,0 + + + + M 5 - 2012 Mar 22, TONGA + 5 + + -174.449,-21.355,0 + + + + M 5 - 2012 Mar 23, TONGA + 5 + + -174.263,-16.261,0 + + + + M 5 - 2012 Mar 24, VALPARAISO, CHILE + 5 + + -71.063,-33.052,0 + + + + M 5 - 2012 Mar 25, VANUATU + 5 + + 168.75,-19.108,0 + + + + M 5 - 2012 Mar 26, EASTERN TURKEY + 5 + + 42.33,39.171,0 + + + + M 5 - 2012 Mar 26, NORTHERN EAST PACIFIC RISE + 5 + + -104.337,10.001,0 + + + + M 5 - 2012 Mar 27, NEPAL-INDIA BORDER REGION + 5 + + 87.777,26.087,0 + + + + M 5 - 2012 Mar 30, SOUTHEAST OF EASTER ISLAND + 5 + + -101.463,-35.843,0 + + + + M 5 - 2012 Mar 30, FIJI REGION + 5 + + -178.97,-21.177,0 + + + + M 5 - 2012 Apr 2, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 142.813,37.937,0 + + + + M 5 - 2012 Apr 2, OFFSHORE GUERRERO, MEXICO + 5 + + -98.572,16.281,0 + + + + M 5 - 2012 Apr 3, OFFSHORE O'HIGGINS, CHILE + 5 + + -72.757,-33.847,0 + + + + M 5 - 2012 Apr 3, KEPULAUAN BARAT DAYA, INDONESIA + 5 + + 125.367,-7.035,0 + + + + M 5 - 2012 Apr 6, TONGA + 5 + + -174.414,-21.281,0 + + + + M 5 - 2012 Apr 7, CENTRAL MID-ATLANTIC RIDGE + 5 + + -28.091,1.053,0 + + + + M 5 - 2012 Apr 11, BANDA SEA + 5 + + 130.261,-6.236,0 + + + + M 5 - 2012 Apr 11, NORTH INDIAN OCEAN + 5 + + 91.923,0.916,0 + + + + M 5 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.726,2.668,0 + + + + M 5 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5 + + 90.78,4.601,0 + + + + M 5 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.287,2.539,0 + + + + M 5 - 2012 Apr 11, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.311,1.269,0 + + + + M 5 - 2012 Apr 12, NORTH INDIAN OCEAN + 5 + + 91.754,1.301,0 + + + + M 5 - 2012 Apr 12, NORTH INDIAN OCEAN + 5 + + 91.717,1.172,0 + + + + M 5 - 2012 Apr 12, OFF W COAST OF NORTHERN SUMATRA + 5 + + 93.9,1.983,0 + + + + M 5 - 2012 Apr 12, OFF W COAST OF NORTHERN SUMATRA + 5 + + 93.746,3.279,0 + + + + M 5 - 2012 Apr 13, VANUATU + 5 + + 168.086,-18.25,0 + + + + M 5 - 2012 Apr 13, NORTH INDIAN OCEAN + 5 + + 89.705,2.653,0 + + + + M 5 - 2012 Apr 13, OFFSHORE OAXACA, MEXICO + 5 + + -98.145,16.207,0 + + + + M 5 - 2012 Apr 14, OFF W COAST OF NORTHERN SUMATRA + 5 + + 94.079,2.835,0 + + + + M 5 - 2012 Apr 14, WEST CHILE RISE + 5 + + -97.183,-36.3,0 + + + + M 5 - 2012 Apr 16, NORTH ISLAND OF NEW ZEALAND + 5 + + 175.805,-38.556,0 + + + + M 5 - 2012 Apr 16, MID-INDIAN RIDGE + 5 + + 78.876,-36.534,0 + + + + M 5 - 2012 Apr 17, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.61,2.584,0 + + + + M 5 - 2012 Apr 18, VANUATU + 5 + + 167.052,-13.288,0 + + + + M 5 - 2012 Apr 18, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.541,3.329,0 + + + + M 5 - 2012 Apr 18, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.766,3.586,0 + + + + M 5 - 2012 Apr 19, TAIWAN + 5 + + 121.67,24.13,0 + + + + M 5 - 2012 Apr 19, NEAR N COAST OF PAPUA, INDONESIA + 5 + + 134.492,-1.677,0 + + + + M 5 - 2012 Apr 20, IRAN-IRAQ BORDER REGION + 5 + + 46.99,32.453,0 + + + + M 5 - 2012 Apr 20, OFF W COAST OF NORTHERN SUMATRA + 5 + + 91.901,2.564,0 + + + + M 5 - 2012 Apr 20, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.334,2.025,0 + + + + M 5 - 2012 Apr 20, VOLCANO ISLANDS, JAPAN REGION + 5 + + 142.688,25.447,0 + + + + M 5 - 2012 Apr 20, TONGA + 5 + + -173.594,-17.617,0 + + + + M 5 - 2012 Apr 21, IRAN-IRAQ BORDER REGION + 5 + + 47.049,32.407,0 + + + + M 5 - 2012 Apr 23, SOUTH SANDWICH ISLANDS REGION + 5 + + -27.674,-55.517,0 + + + + M 5 - 2012 Apr 23, TONGA + 5 + + -175.17,-17.966,0 + + + + M 5 - 2012 Apr 23, SOUTH OF TONGA + 5 + + -175.934,-24.007,0 + + + + M 5 - 2012 Apr 24, TONGA REGION + 5 + + -175.999,-23.785,0 + + + + M 5 - 2012 Apr 25, NEW BRITAIN REGION, P.N.G. + 5 + + 151.694,-4.114,0 + + + + M 5 - 2012 Apr 26, FIJI REGION + 5 + + -177.879,-18.802,0 + + + + M 5 - 2012 Apr 28, SOUTHWEST INDIAN RIDGE + 5 + + 43.501,-40.999,0 + + + + M 5 - 2012 Apr 30, SOUTH OF JAVA, INDONESIA + 5 + + 105.422,-8.354,0 + + + + M 5 - 2012 Apr 30, KEPULAUAN TALAUD, INDONESIA + 5 + + 127.507,3.712,0 + + + + M 5 - 2012 Apr 30, KERMADEC ISLANDS REGION + 5 + + -176.231,-30.038,0 + + + + M 5 - 2012 Apr 30, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.962,3.314,0 + + + + M 5 - 2012 May 2, NORTHERN MID-ATLANTIC RIDGE + 5 + + -44.95,23.352,0 + + + + M 5 - 2012 May 2, TONGA REGION + 5 + + -175.668,-23.551,0 + + + + M 5 - 2012 May 3, KURIL ISLANDS + 5 + + 150.557,46.903,0 + + + + M 5 - 2012 May 4, VANCOUVER ISLAND, CANADA REGION + 5 + + -130.241,50.648,0 + + + + M 5 - 2012 May 7, TONGA + 5 + + -173.659,-15.169,0 + + + + M 5 - 2012 May 8, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 144.644,37.364,0 + + + + M 5 - 2012 May 11, GANSU-QINGHAI BORDER REG, CHINA + 5 + + 102.048,37.735,0 + + + + M 5 - 2012 May 14, ANDREANOF ISLANDS, ALEUTIAN IS. + 5 + + -174.832,51.445,0 + + + + M 5 - 2012 May 14, MOLUCCA SEA + 5 + + 126.338,1.29,0 + + + + M 5 - 2012 May 17, SANTA CRUZ ISLANDS + 5 + + 166.185,-12.596,0 + + + + M 5 - 2012 May 18, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.178,39.646,0 + + + + M 5 - 2012 May 19, NORTH OF HALMAHERA, INDONESIA + 5 + + 128.118,3.304,0 + + + + M 5 - 2012 May 19, FOX ISLANDS, ALEUTIAN ISLANDS + 5 + + -171.728,52.068,0 + + + + M 5 - 2012 May 20, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.116,39.543,0 + + + + M 5 - 2012 May 20, NORTHERN ITALY + 5 + + 11.49,44.831,0 + + + + M 5 - 2012 May 24, EASTERN NEW GUINEA REG., P.N.G. + 5 + + 147.114,-7.33,0 + + + + M 5 - 2012 May 25, NORWEGIAN SEA + 5 + + 5.518,72.939,0 + + + + M 5 - 2012 May 25, SOUTH ISLAND OF NEW ZEALAND + 5 + + 172.81,-43.473,0 + + + + M 5 - 2012 May 25, SOUTH OF KERMADEC ISLANDS + 5 + + -178.46,-33.075,0 + + + + M 5 - 2012 May 25, TONGA + 5 + + -173.763,-19.184,0 + + + + M 5 - 2012 May 26, SOUTHERN SUMATRA, INDONESIA + 5 + + 103.03,-4.9,0 + + + + M 5 - 2012 May 26, KERMADEC ISLANDS, NEW ZEALAND + 5 + + -177.991,-30.825,0 + + + + M 5 - 2012 May 29, FIJI REGION + 5 + + 173.796,-15.524,0 + + + + M 5 - 2012 May 30, BANDA SEA + 5 + + 130.318,-6.199,0 + + + + M 5 - 2012 May 30, STATE OF YAP, MICRONESIA + 5 + + 139.559,11.271,0 + + + + M 5 - 2012 May 31, TONGA + 5 + + -174.314,-17.683,0 + + + + M 5 - 2012 Jun 3, POTOSI, BOLIVIA + 5 + + -68.026,-21.338,0 + + + + M 5 - 2012 Jun 4, SOUTHEAST OF LOYALTY ISLANDS + 5 + + 169.134,-21.941,0 + + + + M 5 - 2012 Jun 4, HALMAHERA, INDONESIA + 5 + + 127.699,-0.677,0 + + + + M 5 - 2012 Jun 6, MOLUCCA SEA + 5 + + 126.905,-0.953,0 + + + + M 5 - 2012 Jun 6, KERMADEC ISLANDS REGION + 5 + + -177.441,-27.034,0 + + + + M 5 - 2012 Jun 7, TONGA REGION + 5 + + -174.717,-22.91,0 + + + + M 5 - 2012 Jun 7, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.295,39.875,0 + + + + M 5 - 2012 Jun 7, MAULE, CHILE + 5 + + -71.075,-36.036,0 + + + + M 5 - 2012 Jun 8, SOUTHERN IRAN + 5 + + 50.705,29.784,0 + + + + M 5 - 2012 Jun 9, OFF EAST COAST OF KAMCHATKA + 5 + + 159.206,51.698,0 + + + + M 5 - 2012 Jun 9, SOUTH SANDWICH ISLANDS REGION + 5 + + -23.239,-60.883,0 + + + + M 5 - 2012 Jun 10, PAGAN REG., N. MARIANA ISLANDS + 5 + + 145.616,18.689,0 + + + + M 5 - 2012 Jun 14, TONGA + 5 + + -174.161,-17.111,0 + + + + M 5 - 2012 Jun 17, TAIWAN + 5 + + 121.574,23.647,0 + + + + M 5 - 2012 Jun 18, AZORES ISLANDS REGION + 5 + + -29.151,41.84,0 + + + + M 5 - 2012 Jun 18, NORTH OF FRANZ JOSEF LAND + 5 + + 41.025,86.386,0 + + + + M 5 - 2012 Jun 19, FIJI REGION + 5 + + -178.624,-20.552,0 + + + + M 5 - 2012 Jun 19, GUJARAT, INDIA + 5 + + 70.252,23.647,0 + + + + M 5 - 2012 Jun 21, HALMAHERA, INDONESIA + 5 + + 128.278,2.7,0 + + + + M 5 - 2012 Jun 22, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.492,39.369,0 + + + + M 5 - 2012 Jun 23, ANDREANOF ISLANDS, ALEUTIAN IS. + 5 + + -177.666,51.242,0 + + + + M 5 - 2012 Jun 25, KERMADEC ISLANDS REGION + 5 + + -177.878,-27.424,0 + + + + M 5 - 2012 Jun 25, DODECANESE ISLANDS, GREECE + 5 + + 28.941,36.439,0 + + + + M 5 - 2012 Jun 26, FIJI REGION + 5 + + -176.697,-21.926,0 + + + + M 5 - 2012 Jun 27, TONGA + 5 + + -173.408,-15.132,0 + + + + M 5 - 2012 Jun 29, NEW BRITAIN REGION, P.N.G. + 5 + + 152.342,-4.937,0 + + + + M 5 - 2012 Jul 1, CENTRAL IRAN + 5 + + 51.02,31.841,0 + + + + M 5 - 2012 Jul 4, ST. MARTIN REGION, LEEWARD ISL. + 5 + + -62.983,18.12,0 + + + + M 5 - 2012 Jul 5, IZU ISLANDS, JAPAN REGION + 5 + + 141.64,32.284,0 + + + + M 5 - 2012 Jul 6, ISLA CHILOE, LOS LAGOS, CHILE + 5 + + -74.015,-42.646,0 + + + + M 5 - 2012 Jul 7, KEP. MENTAWAI REGION, INDONESIA + 5 + + 100.591,-3.638,0 + + + + M 5 - 2012 Jul 7, PACIFIC-ANTARCTIC RIDGE + 5 + + -150.669,-59.52,0 + + + + M 5 - 2012 Jul 7, MAURITIUS - REUNION REGION + 5 + + 66.882,-17.083,0 + + + + M 5 - 2012 Jul 9, ALAMAGAN REG, N. MARIANA ISLANDS + 5 + + 146.017,17.141,0 + + + + M 5 - 2012 Jul 11, CERAM SEA, INDONESIA + 5 + + 127.378,-2.02,0 + + + + M 5 - 2012 Jul 13, KURIL ISLANDS + 5 + + 151.829,45.255,0 + + + + M 5 - 2012 Jul 14, KURIL ISLANDS + 5 + + 151.878,45.378,0 + + + + M 5 - 2012 Jul 15, CENTRAL PERU + 5 + + -73.796,-13.58,0 + + + + M 5 - 2012 Jul 17, KERMADEC ISLANDS REGION + 5 + + -179.093,-31.283,0 + + + + M 5 - 2012 Jul 20, KEPULAUAN SANGIHE, INDONESIA + 5 + + 125.808,3.395,0 + + + + M 5 - 2012 Jul 21, TONGA + 5 + + -173.39,-15.197,0 + + + + M 5 - 2012 Jul 22, CENTRAL TURKEY + 5 + + 36.384,37.546,0 + + + + M 5 - 2012 Jul 22, NEAR COAST OF NICARAGUA + 5 + + -87.028,11.639,0 + + + + M 5 - 2012 Jul 23, NEAR ISLANDS, ALEUTIAN ISLANDS + 5 + + 172.869,52.016,0 + + + + M 5 - 2012 Jul 23, KERMADEC ISLANDS, NEW ZEALAND + 5 + + -177.465,-30.83,0 + + + + M 5 - 2012 Jul 24, KURIL ISLANDS + 5 + + 151.631,45.464,0 + + + + M 5 - 2012 Jul 24, OFF E. COAST OF N. ISLAND, N.Z. + 5 + + 179.91,-37.776,0 + + + + M 5 - 2012 Jul 25, KYUSHU, JAPAN + 5 + + 130.348,30.981,0 + + + + M 5 - 2012 Jul 25, VANUATU REGION + 5 + + 167.728,-19.297,0 + + + + M 5 - 2012 Jul 25, SOLOMON ISLANDS + 5 + + 159.699,-9.725,0 + + + + M 5 - 2012 Jul 28, NORTH OF SVALBARD + 5 + + -3.97,81.294,0 + + + + M 5 - 2012 Aug 1, SOUTHERN XINJIANG, CHINA + 5 + + 75.556,39.774,0 + + + + M 5 - 2012 Aug 2, SOUTH SHETLAND ISLANDS + 5 + + -58.258,-61.401,0 + + + + M 5 - 2012 Aug 4, SAN JUAN, ARGENTINA + 5 + + -69.358,-31.928,0 + + + + M 5 - 2012 Aug 5, EASTERN XIZANG + 5 + + 94.849,30.352,0 + + + + M 5 - 2012 Aug 5, TURKEY-SYRIA-IRAQ BORDER REGION + 5 + + 42.965,37.421,0 + + + + M 5 - 2012 Aug 6, SOUTHEAST OF LOYALTY ISLANDS + 5 + + 170.39,-21.406,0 + + + + M 5 - 2012 Aug 6, RYUKYU ISLANDS, JAPAN + 5 + + 130.521,29.495,0 + + + + M 5 - 2012 Aug 6, SOUTHWEST OF AFRICA + 5 + + 13.628,-52.29,0 + + + + M 5 - 2012 Aug 10, NEAR COAST OF NICARAGUA + 5 + + -88.17,12.075,0 + + + + M 5 - 2012 Aug 11, NORTHWESTERN IRAN + 5 + + 46.78,38.44,0 + + + + M 5 - 2012 Aug 11, NORTHWESTERN IRAN + 5 + + 46.735,38.436,0 + + + + M 5 - 2012 Aug 16, FIJI REGION + 5 + + -177.856,-18.46,0 + + + + M 5 - 2012 Aug 17, BOUGAINVILLE REGION, P.N.G. + 5 + + 154.53,-6.747,0 + + + + M 5 - 2012 Aug 17, BOUGAINVILLE REGION, P.N.G. + 5 + + 154.525,-6.792,0 + + + + M 5 - 2012 Aug 20, OFF W COAST OF NORTHERN SUMATRA + 5 + + 92.889,3.318,0 + + + + M 5 - 2012 Aug 22, HOKKAIDO, JAPAN REGION + 5 + + 142.86,42.404,0 + + + + M 5 - 2012 Aug 23, NEPAL + 5 + + 82.69,28.47,0 + + + + M 5 - 2012 Aug 26, HALMAHERA, INDONESIA + 5 + + 128.801,2.626,0 + + + + M 5 - 2012 Aug 27, ANTOFAGASTA, CHILE + 5 + + -69.414,-23.739,0 + + + + M 5 - 2012 Aug 27, MOLUCCA SEA + 5 + + 126.835,2.154,0 + + + + M 5 - 2012 Aug 29, VIRGIN ISLANDS REGION + 5 + + -64.324,19.652,0 + + + + M 5 - 2012 Aug 30, OFFSHORE BIO-BIO, CHILE + 5 + + -73.397,-37.199,0 + + + + M 5 - 2012 Aug 31, SOUTH SANDWICH ISLANDS REGION + 5 + + -27.525,-55.789,0 + + + + M 5 - 2012 Aug 31, GALAPAGOS ISLANDS REGION + 5 + + -95.26,2.526,0 + + + + M 5 - 2012 Sep 1, PHILIPPINE ISLANDS REGION + 5 + + 126.845,10.351,0 + + + + M 5 - 2012 Sep 1, PHILIPPINE ISLANDS REGION + 5 + + 126.881,10.356,0 + + + + M 5 - 2012 Sep 1, OFFSHORE ATACAMA, CHILE + 5 + + -71.114,-27.24,0 + + + + M 5 - 2012 Sep 1, NEW GUINEA, PAPUA NEW GUINEA + 5 + + 143.643,-6.531,0 + + + + M 5 - 2012 Sep 3, MORO GULF, MINDANAO, PHILIPPINES + 5 + + 123.861,6.561,0 + + + + M 5 - 2012 Sep 3, ANDREANOF ISLANDS, ALEUTIAN IS. + 5 + + -177.052,51.224,0 + + + + M 5 - 2012 Sep 4, TONGA + 5 + + -175.067,-21.956,0 + + + + M 5 - 2012 Sep 4, SOUTH OF FIJI ISLANDS + 5 + + -179.958,-22.003,0 + + + + M 5 - 2012 Sep 4, SOUTH OF JAVA, INDONESIA + 5 + + 113.962,-10.839,0 + + + + M 5 - 2012 Sep 4, PHILIPPINE ISLANDS REGION + 5 + + 126.772,10.666,0 + + + + M 5 - 2012 Sep 4, TAIWAN REGION + 5 + + 121.135,22.174,0 + + + + M 5 - 2012 Sep 6, SOUTHERN IRAN + 5 + + 53.97,26.96,0 + + + + M 5 - 2012 Sep 6, PHILIPPINE ISLANDS REGION + 5 + + 126.613,10.946,0 + + + + M 5 - 2012 Sep 7, ANTOFAGASTA, CHILE + 5 + + -68.191,-22.351,0 + + + + M 5 - 2012 Sep 7, PHILIPPINE ISLANDS REGION + 5 + + 126.73,10.55,0 + + + + M 5 - 2012 Sep 7, MARIANA ISLANDS REGION + 5 + + 143.322,21.606,0 + + + + M 5 - 2012 Sep 8, SOUTH OF KERMADEC ISLANDS + 5 + + -178.875,-33.129,0 + + + + M 5 - 2012 Sep 9, KERMADEC ISLANDS REGION + 5 + + -176.539,-28.091,0 + + + + M 5 - 2012 Sep 9, KERMADEC ISLANDS, NEW ZEALAND + 5 + + -177.935,-30.404,0 + + + + M 5 - 2012 Sep 11, YUNNAN, CHINA + 5 + + 99.267,24.647,0 + + + + M 5 - 2012 Sep 11, SOUTH OF MARIANA ISLANDS + 5 + + 143.353,11.828,0 + + + + M 5 - 2012 Sep 12, SOUTHWEST INDIAN RIDGE + 5 + + 46.07,-39.962,0 + + + + M 5 - 2012 Sep 14, NORTHERN XINJIANG, CHINA + 5 + + 82.425,43.637,0 + + + + M 5 - 2012 Sep 16, TONGA + 5 + + -174.657,-18.447,0 + + + + M 5 - 2012 Sep 17, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 142.052,39.832,0 + + + + M 5 - 2012 Sep 17, VANUATU + 5 + + 167.397,-14.867,0 + + + + M 5 - 2012 Sep 18, KEPULAUAN TALAUD, INDONESIA + 5 + + 126.438,4.488,0 + + + + M 5 - 2012 Sep 20, LOYALTY ISLANDS + 5 + + 168.242,-20.296,0 + + + + M 5 - 2012 Sep 20, MOLUCCA SEA + 5 + + 126.872,2.185,0 + + + + M 5 - 2012 Sep 21, CENTRAL MEDITERRANEAN SEA + 5 + + 22.63,35.3,0 + + + + M 5 - 2012 Sep 21, SOLOMON ISLANDS + 5 + + 158.013,-9.069,0 + + + + M 5 - 2012 Sep 22, GREECE + 5 + + 22.77,38.1,0 + + + + M 5 - 2012 Sep 25, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 142.319,36.114,0 + + + + M 5 - 2012 Sep 26, TONGA + 5 + + -175.399,-18.853,0 + + + + M 5 - 2012 Sep 26, SOUTH OF FIJI ISLANDS + 5 + + -177.416,-26.04,0 + + + + M 5 - 2012 Sep 29, MINDORO, PHILIPPINES + 5 + + 120.723,13.847,0 + + + + M 5 - 2012 Oct 1, SOUTH OF FIJI ISLANDS + 5 + + -179.427,-24.745,0 + + + + M 5 - 2012 Oct 2, TONGA + 5 + + -174.903,-18.839,0 + + + + M 5 - 2012 Oct 2, TONGA + 5 + + -174.157,-20.728,0 + + + + M 5 - 2012 Oct 3, NEW BRITAIN REGION, P.N.G. + 5 + + 151.197,-5.727,0 + + + + M 5 - 2012 Oct 5, NORTHEAST OF TAIWAN + 5 + + 125.078,26.271,0 + + + + M 5 - 2012 Oct 5, BANDA SEA + 5 + + 129.547,-6.661,0 + + + + M 5 - 2012 Oct 8, BANDA SEA + 5 + + 129.191,-4.478,0 + + + + M 5 - 2012 Oct 8, BANDA SEA + 5 + + 129.292,-4.511,0 + + + + M 5 - 2012 Oct 12, COSTA RICA + 5 + + -84.268,9.598,0 + + + + M 5 - 2012 Oct 14, KURIL ISLANDS + 5 + + 154.453,48.38,0 + + + + M 5 - 2012 Oct 15, OFFSHORE COQUIMBO, CHILE + 5 + + -71.787,-31.814,0 + + + + M 5 - 2012 Oct 15, HINDU KUSH REGION, AFGHANISTAN + 5 + + 69.683,35.949,0 + + + + M 5 - 2012 Oct 17, TONGA + 5 + + -173.573,-15.036,0 + + + + M 5 - 2012 Oct 17, NIAS REGION, INDONESIA + 5 + + 97.229,1.265,0 + + + + M 5 - 2012 Oct 18, MADHYA PRADESH, INDIA + 5 + + 81.314,23.769,0 + + + + M 5 - 2012 Oct 25, MINAHASA, SULAWESI, INDONESIA + 5 + + 124.55,0.69,0 + + + + M 5 - 2012 Oct 25, TAIWAN + 5 + + 120.558,22.417,0 + + + + M 5 - 2012 Oct 25, PAPUA, INDONESIA + 5 + + 140.348,-3.907,0 + + + + M 5 - 2012 Oct 27, SOUTHEAST OF LOYALTY ISLANDS + 5 + + 169.829,-21.494,0 + + + + M 5 - 2012 Oct 28, ANDAMAN ISLANDS, INDIA REGION + 5 + + 92.575,10.345,0 + + + + M 5 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5 + + -131.36,52.335,0 + + + + M 5 - 2012 Oct 28, QUEEN CHARLOTTE ISLANDS REGION + 5 + + -131.561,52.319,0 + + + + M 5 - 2012 Oct 29, FLORES REGION, INDONESIA + 5 + + 123.571,-8.284,0 + + + + M 5 - 2012 Oct 29, FLORES REGION, INDONESIA + 5 + + 123.561,-8.041,0 + + + + M 5 - 2012 Oct 29, QUEEN CHARLOTTE ISLANDS REGION + 5 + + -131.182,51.952,0 + + + + M 5 - 2012 Oct 30, QUEEN CHARLOTTE ISLANDS REGION + 5 + + -132.117,52.222,0 + + + + M 5 - 2012 Nov 1, QUEEN CHARLOTTE ISLANDS REGION + 5 + + -132.024,52.55,0 + + + + M 5 - 2012 Nov 1, BANDA SEA + 5 + + 129.137,-5.612,0 + + + + M 5 - 2012 Nov 1, FIJI REGION + 5 + + -177.638,-20.284,0 + + + + M 5 - 2012 Nov 1, EASTERN NEW GUINEA REG., P.N.G. + 5 + + 145.559,-5.28,0 + + + + M 5 - 2012 Nov 4, SOUTHEAST OF LOYALTY ISLANDS + 5 + + 171.388,-22.265,0 + + + + M 5 - 2012 Nov 6, MINAHASA, SULAWESI, INDONESIA + 5 + + 122.088,1.281,0 + + + + M 5 - 2012 Nov 9, SOLOMON ISLANDS + 5 + + 161.13,-10.121,0 + + + + M 5 - 2012 Nov 10, FLORES REGION, INDONESIA + 5 + + 120.676,-8.887,0 + + + + M 5 - 2012 Nov 11, OFFSHORE GUATEMALA + 5 + + -92.299,13.897,0 + + + + M 5 - 2012 Nov 12, IZU ISLANDS, JAPAN REGION + 5 + + 137.994,29.691,0 + + + + M 5 - 2012 Nov 13, MYANMAR + 5 + + 95.943,22.895,0 + + + + M 5 - 2012 Nov 15, OFFSHORE CHIAPAS, MEXICO + 5 + + -92.727,13.843,0 + + + + M 5 - 2012 Nov 15, SOUTH OF MARIANA ISLANDS + 5 + + 142.554,11.668,0 + + + + M 5 - 2012 Nov 19, PACIFIC-ANTARCTIC RIDGE + 5 + + -147.523,-57.349,0 + + + + M 5 - 2012 Nov 21, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 141.648,38.479,0 + + + + M 5 - 2012 Nov 22, BALI REGION, INDONESIA + 5 + + 115.124,-8.918,0 + + + + M 5 - 2012 Nov 22, SOUTHEAST OF LOYALTY ISLANDS + 5 + + 173.923,-22.354,0 + + + + M 5 - 2012 Nov 23, MOLUCCA SEA + 5 + + 125.824,1.619,0 + + + + M 5 - 2012 Nov 23, SOLOMON ISLANDS + 5 + + 162.74,-10.789,0 + + + + M 5 - 2012 Nov 26, SOUTHERN XINJIANG, CHINA + 5 + + 90.355,40.411,0 + + + + M 5 - 2012 Nov 26, DODECANESE ISLANDS, GREECE + 5 + + 27.993,36.655,0 + + + + M 5 - 2012 Nov 28, NORTHERN ALGERIA + 5 + + 5.312,36.941,0 + + + + M 5 - 2012 Nov 29, MENDOZA, ARGENTINA + 5 + + -69.106,-32.91,0 + + + + M 5 - 2012 Nov 29, NORTHEAST OF TAIWAN + 5 + + 125.191,26.112,0 + + + + M 5 - 2012 Nov 29, NEAR ISLANDS, ALEUTIAN ISLANDS + 5 + + 172.416,52.635,0 + + + + M 5 - 2012 Dec 1, TONGA + 5 + + -174.38,-20.688,0 + + + + M 5 - 2012 Dec 2, TAIWAN + 5 + + 121.631,23.91,0 + + + + M 5 - 2012 Dec 2, KURIL ISLANDS + 5 + + 151.47,45.701,0 + + + + M 5 - 2012 Dec 5, SAMOA ISLANDS REGION + 5 + + -173.266,-14.936,0 + + + + M 5 - 2012 Dec 5, KERMADEC ISLANDS REGION + 5 + + -177.523,-31.103,0 + + + + M 5 - 2012 Dec 7, NEW BRITAIN REGION, P.N.G. + 5 + + 151.429,-5.293,0 + + + + M 5 - 2012 Dec 7, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.627,37.835,0 + + + + M 5 - 2012 Dec 7, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.781,37.869,0 + + + + M 5 - 2012 Dec 8, NEAR S COAST OF NEW GUINEA, PNG. + 5 + + 144.044,-7.167,0 + + + + M 5 - 2012 Dec 8, NEAR S COAST OF NEW GUINEA, PNG. + 5 + + 144.041,-7.258,0 + + + + M 5 - 2012 Dec 9, NEW GUINEA, PAPUA NEW GUINEA + 5 + + 141.117,-3.563,0 + + + + M 5 - 2012 Dec 9, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.811,37.519,0 + + + + M 5 - 2012 Dec 10, KEPULAUAN TALAUD, INDONESIA + 5 + + 126.869,3.655,0 + + + + M 5 - 2012 Dec 11, VANUATU + 5 + + 167.736,-18.987,0 + + + + M 5 - 2012 Dec 13, COSTA RICA + 5 + + -84.015,9.062,0 + + + + M 5 - 2012 Dec 14, NEW BRITAIN REGION, P.N.G. + 5 + + 152.959,-5.015,0 + + + + M 5 - 2012 Dec 15, OFF THE COAST OF EL SALVADOR + 5 + + -88.605,12.247,0 + + + + M 5 - 2012 Dec 17, OFF EAST COAST OF HONSHU, JAPAN + 5 + + 143.568,37.728,0 + + + + M 5 - 2012 Dec 19, TONGA + 5 + + -174.283,-20.508,0 + + + + M 5 - 2012 Dec 20, TONGA + 5 + + -174.074,-20.765,0 + + + + M 5 - 2012 Dec 21, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 141.71,38.633,0 + + + + M 5 - 2012 Dec 21, IZU ISLANDS, JAPAN REGION + 5 + + 142.212,29.779,0 + + + + M 5 - 2012 Dec 24, WEST OF MACQUARIE ISLAND + 5 + + 146.898,-55.683,0 + + + + M 5 - 2012 Dec 25, PAKISTAN + 5 + + 66.465,28.464,0 + + + + M 5 - 2012 Dec 26, TAIWAN REGION + 5 + + 122.55,24.043,0 + + + + M 5 - 2012 Dec 26, FIJI REGION + 5 + + -178.619,-20.69,0 + + + + M 5 - 2012 Dec 29, NEAR EAST COAST OF HONSHU, JAPAN + 5 + + 141.025,37.064,0 + + + + M 5 - 2012 Dec 29, BISMARCK SEA + 5 + + 148.752,-3.371,0 + + + + M 5 - 2012 Dec 30, SUNDA STRAIT, INDONESIA + 5 + + 105.283,-6.96,0 + + + + + \ No newline at end of file diff --git a/rendering/data/7-64-55.geojson b/test/rendering/data/7-64-55.geojson similarity index 100% rename from rendering/data/7-64-55.geojson rename to test/rendering/data/7-64-55.geojson diff --git a/rendering/data/7-64-55.mvt b/test/rendering/data/7-64-55.mvt similarity index 100% rename from rendering/data/7-64-55.mvt rename to test/rendering/data/7-64-55.mvt diff --git a/rendering/data/countries.json b/test/rendering/data/countries.json similarity index 100% rename from rendering/data/countries.json rename to test/rendering/data/countries.json diff --git a/rendering/data/cross.svg b/test/rendering/data/cross.svg similarity index 100% rename from rendering/data/cross.svg rename to test/rendering/data/cross.svg diff --git a/rendering/data/fish.png b/test/rendering/data/fish.png similarity index 100% rename from rendering/data/fish.png rename to test/rendering/data/fish.png diff --git a/rendering/data/fonts/ubuntu-bold-italic-webfont.eot b/test/rendering/data/fonts/ubuntu-bold-italic-webfont.eot similarity index 100% rename from rendering/data/fonts/ubuntu-bold-italic-webfont.eot rename to test/rendering/data/fonts/ubuntu-bold-italic-webfont.eot diff --git a/rendering/data/fonts/ubuntu-bold-italic-webfont.svg b/test/rendering/data/fonts/ubuntu-bold-italic-webfont.svg similarity index 100% rename from rendering/data/fonts/ubuntu-bold-italic-webfont.svg rename to test/rendering/data/fonts/ubuntu-bold-italic-webfont.svg diff --git a/rendering/data/fonts/ubuntu-bold-italic-webfont.ttf b/test/rendering/data/fonts/ubuntu-bold-italic-webfont.ttf similarity index 100% rename from rendering/data/fonts/ubuntu-bold-italic-webfont.ttf rename to test/rendering/data/fonts/ubuntu-bold-italic-webfont.ttf diff --git a/rendering/data/fonts/ubuntu-bold-italic-webfont.woff b/test/rendering/data/fonts/ubuntu-bold-italic-webfont.woff similarity index 100% rename from rendering/data/fonts/ubuntu-bold-italic-webfont.woff rename to test/rendering/data/fonts/ubuntu-bold-italic-webfont.woff diff --git a/rendering/data/fonts/ubuntu-bold-italic-webfont.woff2 b/test/rendering/data/fonts/ubuntu-bold-italic-webfont.woff2 similarity index 100% rename from rendering/data/fonts/ubuntu-bold-italic-webfont.woff2 rename to test/rendering/data/fonts/ubuntu-bold-italic-webfont.woff2 diff --git a/rendering/data/fonts/ubuntu-regular-webfont.eot b/test/rendering/data/fonts/ubuntu-regular-webfont.eot similarity index 100% rename from rendering/data/fonts/ubuntu-regular-webfont.eot rename to test/rendering/data/fonts/ubuntu-regular-webfont.eot diff --git a/rendering/data/fonts/ubuntu-regular-webfont.svg b/test/rendering/data/fonts/ubuntu-regular-webfont.svg similarity index 100% rename from rendering/data/fonts/ubuntu-regular-webfont.svg rename to test/rendering/data/fonts/ubuntu-regular-webfont.svg diff --git a/rendering/data/fonts/ubuntu-regular-webfont.ttf b/test/rendering/data/fonts/ubuntu-regular-webfont.ttf similarity index 100% rename from rendering/data/fonts/ubuntu-regular-webfont.ttf rename to test/rendering/data/fonts/ubuntu-regular-webfont.ttf diff --git a/rendering/data/fonts/ubuntu-regular-webfont.woff b/test/rendering/data/fonts/ubuntu-regular-webfont.woff similarity index 100% rename from rendering/data/fonts/ubuntu-regular-webfont.woff rename to test/rendering/data/fonts/ubuntu-regular-webfont.woff diff --git a/rendering/data/fonts/ubuntu-regular-webfont.woff2 b/test/rendering/data/fonts/ubuntu-regular-webfont.woff2 similarity index 100% rename from rendering/data/fonts/ubuntu-regular-webfont.woff2 rename to test/rendering/data/fonts/ubuntu-regular-webfont.woff2 diff --git a/rendering/data/icon.png b/test/rendering/data/icon.png similarity index 100% rename from rendering/data/icon.png rename to test/rendering/data/icon.png diff --git a/rendering/data/me0.svg b/test/rendering/data/me0.svg similarity index 100% rename from rendering/data/me0.svg rename to test/rendering/data/me0.svg diff --git a/rendering/data/sprites/bright-v9/sprite.json b/test/rendering/data/sprites/bright-v9/sprite.json similarity index 100% rename from rendering/data/sprites/bright-v9/sprite.json rename to test/rendering/data/sprites/bright-v9/sprite.json diff --git a/rendering/data/sprites/bright-v9/sprite.png b/test/rendering/data/sprites/bright-v9/sprite.png similarity index 100% rename from rendering/data/sprites/bright-v9/sprite.png rename to test/rendering/data/sprites/bright-v9/sprite.png diff --git a/rendering/data/sprites/bright-v9/sprite@2x.json b/test/rendering/data/sprites/bright-v9/sprite@2x.json similarity index 100% rename from rendering/data/sprites/bright-v9/sprite@2x.json rename to test/rendering/data/sprites/bright-v9/sprite@2x.json diff --git a/rendering/data/sprites/bright-v9/sprite@2x.png b/test/rendering/data/sprites/bright-v9/sprite@2x.png similarity index 100% rename from rendering/data/sprites/bright-v9/sprite@2x.png rename to test/rendering/data/sprites/bright-v9/sprite@2x.png diff --git a/rendering/data/styles/bright-v9.json b/test/rendering/data/styles/bright-v9.json similarity index 100% rename from rendering/data/styles/bright-v9.json rename to test/rendering/data/styles/bright-v9.json diff --git a/rendering/data/styles/bright-v9/mapbox-streets-v7/15/17874/11362.vector.pbf b/test/rendering/data/styles/bright-v9/mapbox-streets-v7/15/17874/11362.vector.pbf similarity index 100% rename from rendering/data/styles/bright-v9/mapbox-streets-v7/15/17874/11362.vector.pbf rename to test/rendering/data/styles/bright-v9/mapbox-streets-v7/15/17874/11362.vector.pbf diff --git a/rendering/data/styles/bright-v9/sprite.json b/test/rendering/data/styles/bright-v9/sprite.json similarity index 100% rename from rendering/data/styles/bright-v9/sprite.json rename to test/rendering/data/styles/bright-v9/sprite.json diff --git a/rendering/data/styles/bright-v9/sprite.png b/test/rendering/data/styles/bright-v9/sprite.png similarity index 100% rename from rendering/data/styles/bright-v9/sprite.png rename to test/rendering/data/styles/bright-v9/sprite.png diff --git a/rendering/data/styles/bright-v9/sprite@2x.json b/test/rendering/data/styles/bright-v9/sprite@2x.json similarity index 100% rename from rendering/data/styles/bright-v9/sprite@2x.json rename to test/rendering/data/styles/bright-v9/sprite@2x.json diff --git a/rendering/data/styles/bright-v9/sprite@2x.png b/test/rendering/data/styles/bright-v9/sprite@2x.png similarity index 100% rename from rendering/data/styles/bright-v9/sprite@2x.png rename to test/rendering/data/styles/bright-v9/sprite@2x.png diff --git a/rendering/data/styles/bright-v9/style.json b/test/rendering/data/styles/bright-v9/style.json similarity index 100% rename from rendering/data/styles/bright-v9/style.json rename to test/rendering/data/styles/bright-v9/style.json diff --git a/rendering/data/tiles/4326/0/0/0.png b/test/rendering/data/tiles/4326/0/0/0.png similarity index 100% rename from rendering/data/tiles/4326/0/0/0.png rename to test/rendering/data/tiles/4326/0/0/0.png diff --git a/rendering/data/tiles/512x256/5/3/12.png b/test/rendering/data/tiles/512x256/5/3/12.png similarity index 100% rename from rendering/data/tiles/512x256/5/3/12.png rename to test/rendering/data/tiles/512x256/5/3/12.png diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8937/5679.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8937/5679.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8937/5679.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8937/5679.vector.pbf diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8937/5680.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8937/5680.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8937/5680.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8937/5680.vector.pbf diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8937/5681.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8937/5681.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8937/5681.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8937/5681.vector.pbf diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8938/5679.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8938/5679.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8938/5679.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8938/5679.vector.pbf diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8938/5680.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8938/5680.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8938/5680.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8938/5680.vector.pbf diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8938/5681.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8938/5681.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8938/5681.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8938/5681.vector.pbf diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8939/5679.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8939/5679.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8939/5679.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8939/5679.vector.pbf diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8939/5680.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8939/5680.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8939/5680.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8939/5680.vector.pbf diff --git a/rendering/data/tiles/mapbox-streets-v6/14/8939/5681.vector.pbf b/test/rendering/data/tiles/mapbox-streets-v6/14/8939/5681.vector.pbf similarity index 100% rename from rendering/data/tiles/mapbox-streets-v6/14/8939/5681.vector.pbf rename to test/rendering/data/tiles/mapbox-streets-v6/14/8939/5681.vector.pbf diff --git a/rendering/data/tiles/osm/0/0/0.png b/test/rendering/data/tiles/osm/0/0/0.png similarity index 100% rename from rendering/data/tiles/osm/0/0/0.png rename to test/rendering/data/tiles/osm/0/0/0.png diff --git a/rendering/data/tiles/osm/5/4/12.png b/test/rendering/data/tiles/osm/5/4/12.png similarity index 100% rename from rendering/data/tiles/osm/5/4/12.png rename to test/rendering/data/tiles/osm/5/4/12.png diff --git a/rendering/data/tiles/osm/5/5/12.png b/test/rendering/data/tiles/osm/5/5/12.png similarity index 100% rename from rendering/data/tiles/osm/5/5/12.png rename to test/rendering/data/tiles/osm/5/5/12.png diff --git a/rendering/data/tiles/osm/5/5/13.png b/test/rendering/data/tiles/osm/5/5/13.png similarity index 100% rename from rendering/data/tiles/osm/5/5/13.png rename to test/rendering/data/tiles/osm/5/5/13.png diff --git a/rendering/data/tiles/osm/5/6/12.png b/test/rendering/data/tiles/osm/5/6/12.png similarity index 100% rename from rendering/data/tiles/osm/5/6/12.png rename to test/rendering/data/tiles/osm/5/6/12.png diff --git a/rendering/data/tiles/osm/5/6/13.png b/test/rendering/data/tiles/osm/5/6/13.png similarity index 100% rename from rendering/data/tiles/osm/5/6/13.png rename to test/rendering/data/tiles/osm/5/6/13.png diff --git a/rendering/data/tiles/satellite/0/0/0.jpg b/test/rendering/data/tiles/satellite/0/0/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/0/0/0.jpg rename to test/rendering/data/tiles/satellite/0/0/0.jpg diff --git a/rendering/data/tiles/satellite/1/0/0.jpg b/test/rendering/data/tiles/satellite/1/0/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/1/0/0.jpg rename to test/rendering/data/tiles/satellite/1/0/0.jpg diff --git a/rendering/data/tiles/satellite/1/0/1.jpg b/test/rendering/data/tiles/satellite/1/0/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/1/0/1.jpg rename to test/rendering/data/tiles/satellite/1/0/1.jpg diff --git a/rendering/data/tiles/satellite/1/1/0.jpg b/test/rendering/data/tiles/satellite/1/1/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/1/1/0.jpg rename to test/rendering/data/tiles/satellite/1/1/0.jpg diff --git a/rendering/data/tiles/satellite/1/1/1.jpg b/test/rendering/data/tiles/satellite/1/1/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/1/1/1.jpg rename to test/rendering/data/tiles/satellite/1/1/1.jpg diff --git a/rendering/data/tiles/satellite/2/0/0.jpg b/test/rendering/data/tiles/satellite/2/0/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/0/0.jpg rename to test/rendering/data/tiles/satellite/2/0/0.jpg diff --git a/rendering/data/tiles/satellite/2/0/1.jpg b/test/rendering/data/tiles/satellite/2/0/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/0/1.jpg rename to test/rendering/data/tiles/satellite/2/0/1.jpg diff --git a/rendering/data/tiles/satellite/2/0/2.jpg b/test/rendering/data/tiles/satellite/2/0/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/0/2.jpg rename to test/rendering/data/tiles/satellite/2/0/2.jpg diff --git a/rendering/data/tiles/satellite/2/0/3.jpg b/test/rendering/data/tiles/satellite/2/0/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/0/3.jpg rename to test/rendering/data/tiles/satellite/2/0/3.jpg diff --git a/rendering/data/tiles/satellite/2/1/0.jpg b/test/rendering/data/tiles/satellite/2/1/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/1/0.jpg rename to test/rendering/data/tiles/satellite/2/1/0.jpg diff --git a/rendering/data/tiles/satellite/2/1/1.jpg b/test/rendering/data/tiles/satellite/2/1/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/1/1.jpg rename to test/rendering/data/tiles/satellite/2/1/1.jpg diff --git a/rendering/data/tiles/satellite/2/1/2.jpg b/test/rendering/data/tiles/satellite/2/1/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/1/2.jpg rename to test/rendering/data/tiles/satellite/2/1/2.jpg diff --git a/rendering/data/tiles/satellite/2/1/3.jpg b/test/rendering/data/tiles/satellite/2/1/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/1/3.jpg rename to test/rendering/data/tiles/satellite/2/1/3.jpg diff --git a/rendering/data/tiles/satellite/2/2/0.jpg b/test/rendering/data/tiles/satellite/2/2/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/2/0.jpg rename to test/rendering/data/tiles/satellite/2/2/0.jpg diff --git a/rendering/data/tiles/satellite/2/2/1.jpg b/test/rendering/data/tiles/satellite/2/2/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/2/1.jpg rename to test/rendering/data/tiles/satellite/2/2/1.jpg diff --git a/rendering/data/tiles/satellite/2/2/2.jpg b/test/rendering/data/tiles/satellite/2/2/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/2/2.jpg rename to test/rendering/data/tiles/satellite/2/2/2.jpg diff --git a/rendering/data/tiles/satellite/2/2/3.jpg b/test/rendering/data/tiles/satellite/2/2/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/2/3.jpg rename to test/rendering/data/tiles/satellite/2/2/3.jpg diff --git a/rendering/data/tiles/satellite/2/3/0.jpg b/test/rendering/data/tiles/satellite/2/3/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/3/0.jpg rename to test/rendering/data/tiles/satellite/2/3/0.jpg diff --git a/rendering/data/tiles/satellite/2/3/1.jpg b/test/rendering/data/tiles/satellite/2/3/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/3/1.jpg rename to test/rendering/data/tiles/satellite/2/3/1.jpg diff --git a/rendering/data/tiles/satellite/2/3/2.jpg b/test/rendering/data/tiles/satellite/2/3/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/3/2.jpg rename to test/rendering/data/tiles/satellite/2/3/2.jpg diff --git a/rendering/data/tiles/satellite/2/3/3.jpg b/test/rendering/data/tiles/satellite/2/3/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/2/3/3.jpg rename to test/rendering/data/tiles/satellite/2/3/3.jpg diff --git a/rendering/data/tiles/satellite/3/0/0.jpg b/test/rendering/data/tiles/satellite/3/0/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/0/0.jpg rename to test/rendering/data/tiles/satellite/3/0/0.jpg diff --git a/rendering/data/tiles/satellite/3/0/1.jpg b/test/rendering/data/tiles/satellite/3/0/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/0/1.jpg rename to test/rendering/data/tiles/satellite/3/0/1.jpg diff --git a/rendering/data/tiles/satellite/3/0/2.jpg b/test/rendering/data/tiles/satellite/3/0/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/0/2.jpg rename to test/rendering/data/tiles/satellite/3/0/2.jpg diff --git a/rendering/data/tiles/satellite/3/0/3.jpg b/test/rendering/data/tiles/satellite/3/0/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/0/3.jpg rename to test/rendering/data/tiles/satellite/3/0/3.jpg diff --git a/rendering/data/tiles/satellite/3/0/4.jpg b/test/rendering/data/tiles/satellite/3/0/4.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/0/4.jpg rename to test/rendering/data/tiles/satellite/3/0/4.jpg diff --git a/rendering/data/tiles/satellite/3/0/5.jpg b/test/rendering/data/tiles/satellite/3/0/5.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/0/5.jpg rename to test/rendering/data/tiles/satellite/3/0/5.jpg diff --git a/rendering/data/tiles/satellite/3/0/6.jpg b/test/rendering/data/tiles/satellite/3/0/6.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/0/6.jpg rename to test/rendering/data/tiles/satellite/3/0/6.jpg diff --git a/rendering/data/tiles/satellite/3/0/7.jpg b/test/rendering/data/tiles/satellite/3/0/7.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/0/7.jpg rename to test/rendering/data/tiles/satellite/3/0/7.jpg diff --git a/rendering/data/tiles/satellite/3/1/0.jpg b/test/rendering/data/tiles/satellite/3/1/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/1/0.jpg rename to test/rendering/data/tiles/satellite/3/1/0.jpg diff --git a/rendering/data/tiles/satellite/3/1/1.jpg b/test/rendering/data/tiles/satellite/3/1/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/1/1.jpg rename to test/rendering/data/tiles/satellite/3/1/1.jpg diff --git a/rendering/data/tiles/satellite/3/1/2.jpg b/test/rendering/data/tiles/satellite/3/1/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/1/2.jpg rename to test/rendering/data/tiles/satellite/3/1/2.jpg diff --git a/rendering/data/tiles/satellite/3/1/3.jpg b/test/rendering/data/tiles/satellite/3/1/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/1/3.jpg rename to test/rendering/data/tiles/satellite/3/1/3.jpg diff --git a/rendering/data/tiles/satellite/3/1/4.jpg b/test/rendering/data/tiles/satellite/3/1/4.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/1/4.jpg rename to test/rendering/data/tiles/satellite/3/1/4.jpg diff --git a/rendering/data/tiles/satellite/3/1/5.jpg b/test/rendering/data/tiles/satellite/3/1/5.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/1/5.jpg rename to test/rendering/data/tiles/satellite/3/1/5.jpg diff --git a/rendering/data/tiles/satellite/3/1/6.jpg b/test/rendering/data/tiles/satellite/3/1/6.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/1/6.jpg rename to test/rendering/data/tiles/satellite/3/1/6.jpg diff --git a/rendering/data/tiles/satellite/3/1/7.jpg b/test/rendering/data/tiles/satellite/3/1/7.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/1/7.jpg rename to test/rendering/data/tiles/satellite/3/1/7.jpg diff --git a/rendering/data/tiles/satellite/3/2/0.jpg b/test/rendering/data/tiles/satellite/3/2/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/2/0.jpg rename to test/rendering/data/tiles/satellite/3/2/0.jpg diff --git a/rendering/data/tiles/satellite/3/2/1.jpg b/test/rendering/data/tiles/satellite/3/2/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/2/1.jpg rename to test/rendering/data/tiles/satellite/3/2/1.jpg diff --git a/rendering/data/tiles/satellite/3/2/2.jpg b/test/rendering/data/tiles/satellite/3/2/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/2/2.jpg rename to test/rendering/data/tiles/satellite/3/2/2.jpg diff --git a/rendering/data/tiles/satellite/3/2/3.jpg b/test/rendering/data/tiles/satellite/3/2/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/2/3.jpg rename to test/rendering/data/tiles/satellite/3/2/3.jpg diff --git a/rendering/data/tiles/satellite/3/2/4.jpg b/test/rendering/data/tiles/satellite/3/2/4.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/2/4.jpg rename to test/rendering/data/tiles/satellite/3/2/4.jpg diff --git a/rendering/data/tiles/satellite/3/2/5.jpg b/test/rendering/data/tiles/satellite/3/2/5.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/2/5.jpg rename to test/rendering/data/tiles/satellite/3/2/5.jpg diff --git a/rendering/data/tiles/satellite/3/2/6.jpg b/test/rendering/data/tiles/satellite/3/2/6.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/2/6.jpg rename to test/rendering/data/tiles/satellite/3/2/6.jpg diff --git a/rendering/data/tiles/satellite/3/2/7.jpg b/test/rendering/data/tiles/satellite/3/2/7.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/2/7.jpg rename to test/rendering/data/tiles/satellite/3/2/7.jpg diff --git a/rendering/data/tiles/satellite/3/3/0.jpg b/test/rendering/data/tiles/satellite/3/3/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/3/0.jpg rename to test/rendering/data/tiles/satellite/3/3/0.jpg diff --git a/rendering/data/tiles/satellite/3/3/1.jpg b/test/rendering/data/tiles/satellite/3/3/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/3/1.jpg rename to test/rendering/data/tiles/satellite/3/3/1.jpg diff --git a/rendering/data/tiles/satellite/3/3/2.jpg b/test/rendering/data/tiles/satellite/3/3/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/3/2.jpg rename to test/rendering/data/tiles/satellite/3/3/2.jpg diff --git a/rendering/data/tiles/satellite/3/3/3.jpg b/test/rendering/data/tiles/satellite/3/3/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/3/3.jpg rename to test/rendering/data/tiles/satellite/3/3/3.jpg diff --git a/rendering/data/tiles/satellite/3/3/4.jpg b/test/rendering/data/tiles/satellite/3/3/4.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/3/4.jpg rename to test/rendering/data/tiles/satellite/3/3/4.jpg diff --git a/rendering/data/tiles/satellite/3/3/5.jpg b/test/rendering/data/tiles/satellite/3/3/5.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/3/5.jpg rename to test/rendering/data/tiles/satellite/3/3/5.jpg diff --git a/rendering/data/tiles/satellite/3/3/6.jpg b/test/rendering/data/tiles/satellite/3/3/6.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/3/6.jpg rename to test/rendering/data/tiles/satellite/3/3/6.jpg diff --git a/rendering/data/tiles/satellite/3/3/7.jpg b/test/rendering/data/tiles/satellite/3/3/7.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/3/7.jpg rename to test/rendering/data/tiles/satellite/3/3/7.jpg diff --git a/rendering/data/tiles/satellite/3/4/0.jpg b/test/rendering/data/tiles/satellite/3/4/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/4/0.jpg rename to test/rendering/data/tiles/satellite/3/4/0.jpg diff --git a/rendering/data/tiles/satellite/3/4/1.jpg b/test/rendering/data/tiles/satellite/3/4/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/4/1.jpg rename to test/rendering/data/tiles/satellite/3/4/1.jpg diff --git a/rendering/data/tiles/satellite/3/4/2.jpg b/test/rendering/data/tiles/satellite/3/4/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/4/2.jpg rename to test/rendering/data/tiles/satellite/3/4/2.jpg diff --git a/rendering/data/tiles/satellite/3/4/3.jpg b/test/rendering/data/tiles/satellite/3/4/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/4/3.jpg rename to test/rendering/data/tiles/satellite/3/4/3.jpg diff --git a/rendering/data/tiles/satellite/3/4/4.jpg b/test/rendering/data/tiles/satellite/3/4/4.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/4/4.jpg rename to test/rendering/data/tiles/satellite/3/4/4.jpg diff --git a/rendering/data/tiles/satellite/3/4/5.jpg b/test/rendering/data/tiles/satellite/3/4/5.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/4/5.jpg rename to test/rendering/data/tiles/satellite/3/4/5.jpg diff --git a/rendering/data/tiles/satellite/3/4/6.jpg b/test/rendering/data/tiles/satellite/3/4/6.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/4/6.jpg rename to test/rendering/data/tiles/satellite/3/4/6.jpg diff --git a/rendering/data/tiles/satellite/3/4/7.jpg b/test/rendering/data/tiles/satellite/3/4/7.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/4/7.jpg rename to test/rendering/data/tiles/satellite/3/4/7.jpg diff --git a/rendering/data/tiles/satellite/3/5/0.jpg b/test/rendering/data/tiles/satellite/3/5/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/5/0.jpg rename to test/rendering/data/tiles/satellite/3/5/0.jpg diff --git a/rendering/data/tiles/satellite/3/5/1.jpg b/test/rendering/data/tiles/satellite/3/5/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/5/1.jpg rename to test/rendering/data/tiles/satellite/3/5/1.jpg diff --git a/rendering/data/tiles/satellite/3/5/2.jpg b/test/rendering/data/tiles/satellite/3/5/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/5/2.jpg rename to test/rendering/data/tiles/satellite/3/5/2.jpg diff --git a/rendering/data/tiles/satellite/3/5/3.jpg b/test/rendering/data/tiles/satellite/3/5/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/5/3.jpg rename to test/rendering/data/tiles/satellite/3/5/3.jpg diff --git a/rendering/data/tiles/satellite/3/5/4.jpg b/test/rendering/data/tiles/satellite/3/5/4.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/5/4.jpg rename to test/rendering/data/tiles/satellite/3/5/4.jpg diff --git a/rendering/data/tiles/satellite/3/5/5.jpg b/test/rendering/data/tiles/satellite/3/5/5.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/5/5.jpg rename to test/rendering/data/tiles/satellite/3/5/5.jpg diff --git a/rendering/data/tiles/satellite/3/5/6.jpg b/test/rendering/data/tiles/satellite/3/5/6.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/5/6.jpg rename to test/rendering/data/tiles/satellite/3/5/6.jpg diff --git a/rendering/data/tiles/satellite/3/5/7.jpg b/test/rendering/data/tiles/satellite/3/5/7.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/5/7.jpg rename to test/rendering/data/tiles/satellite/3/5/7.jpg diff --git a/rendering/data/tiles/satellite/3/6/0.jpg b/test/rendering/data/tiles/satellite/3/6/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/6/0.jpg rename to test/rendering/data/tiles/satellite/3/6/0.jpg diff --git a/rendering/data/tiles/satellite/3/6/1.jpg b/test/rendering/data/tiles/satellite/3/6/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/6/1.jpg rename to test/rendering/data/tiles/satellite/3/6/1.jpg diff --git a/rendering/data/tiles/satellite/3/6/2.jpg b/test/rendering/data/tiles/satellite/3/6/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/6/2.jpg rename to test/rendering/data/tiles/satellite/3/6/2.jpg diff --git a/rendering/data/tiles/satellite/3/6/3.jpg b/test/rendering/data/tiles/satellite/3/6/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/6/3.jpg rename to test/rendering/data/tiles/satellite/3/6/3.jpg diff --git a/rendering/data/tiles/satellite/3/6/4.jpg b/test/rendering/data/tiles/satellite/3/6/4.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/6/4.jpg rename to test/rendering/data/tiles/satellite/3/6/4.jpg diff --git a/rendering/data/tiles/satellite/3/6/5.jpg b/test/rendering/data/tiles/satellite/3/6/5.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/6/5.jpg rename to test/rendering/data/tiles/satellite/3/6/5.jpg diff --git a/rendering/data/tiles/satellite/3/6/6.jpg b/test/rendering/data/tiles/satellite/3/6/6.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/6/6.jpg rename to test/rendering/data/tiles/satellite/3/6/6.jpg diff --git a/rendering/data/tiles/satellite/3/6/7.jpg b/test/rendering/data/tiles/satellite/3/6/7.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/6/7.jpg rename to test/rendering/data/tiles/satellite/3/6/7.jpg diff --git a/rendering/data/tiles/satellite/3/7/0.jpg b/test/rendering/data/tiles/satellite/3/7/0.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/7/0.jpg rename to test/rendering/data/tiles/satellite/3/7/0.jpg diff --git a/rendering/data/tiles/satellite/3/7/1.jpg b/test/rendering/data/tiles/satellite/3/7/1.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/7/1.jpg rename to test/rendering/data/tiles/satellite/3/7/1.jpg diff --git a/rendering/data/tiles/satellite/3/7/2.jpg b/test/rendering/data/tiles/satellite/3/7/2.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/7/2.jpg rename to test/rendering/data/tiles/satellite/3/7/2.jpg diff --git a/rendering/data/tiles/satellite/3/7/3.jpg b/test/rendering/data/tiles/satellite/3/7/3.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/7/3.jpg rename to test/rendering/data/tiles/satellite/3/7/3.jpg diff --git a/rendering/data/tiles/satellite/3/7/4.jpg b/test/rendering/data/tiles/satellite/3/7/4.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/7/4.jpg rename to test/rendering/data/tiles/satellite/3/7/4.jpg diff --git a/rendering/data/tiles/satellite/3/7/5.jpg b/test/rendering/data/tiles/satellite/3/7/5.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/7/5.jpg rename to test/rendering/data/tiles/satellite/3/7/5.jpg diff --git a/rendering/data/tiles/satellite/3/7/6.jpg b/test/rendering/data/tiles/satellite/3/7/6.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/7/6.jpg rename to test/rendering/data/tiles/satellite/3/7/6.jpg diff --git a/rendering/data/tiles/satellite/3/7/7.jpg b/test/rendering/data/tiles/satellite/3/7/7.jpg similarity index 100% rename from rendering/data/tiles/satellite/3/7/7.jpg rename to test/rendering/data/tiles/satellite/3/7/7.jpg diff --git a/rendering/data/tiles/stamen-labels/3/4/2.png b/test/rendering/data/tiles/stamen-labels/3/4/2.png similarity index 100% rename from rendering/data/tiles/stamen-labels/3/4/2.png rename to test/rendering/data/tiles/stamen-labels/3/4/2.png diff --git a/rendering/data/tiles/stamen-labels/3/4/3.png b/test/rendering/data/tiles/stamen-labels/3/4/3.png similarity index 100% rename from rendering/data/tiles/stamen-labels/3/4/3.png rename to test/rendering/data/tiles/stamen-labels/3/4/3.png diff --git a/rendering/data/tiles/stamen-labels/4/7/5.png b/test/rendering/data/tiles/stamen-labels/4/7/5.png similarity index 100% rename from rendering/data/tiles/stamen-labels/4/7/5.png rename to test/rendering/data/tiles/stamen-labels/4/7/5.png diff --git a/rendering/data/tiles/stamen-labels/4/8/4.png b/test/rendering/data/tiles/stamen-labels/4/8/4.png similarity index 100% rename from rendering/data/tiles/stamen-labels/4/8/4.png rename to test/rendering/data/tiles/stamen-labels/4/8/4.png diff --git a/rendering/data/tiles/stamen-labels/4/8/5.png b/test/rendering/data/tiles/stamen-labels/4/8/5.png similarity index 100% rename from rendering/data/tiles/stamen-labels/4/8/5.png rename to test/rendering/data/tiles/stamen-labels/4/8/5.png diff --git a/rendering/data/tiles/stamen-labels/5/16/11.png b/test/rendering/data/tiles/stamen-labels/5/16/11.png similarity index 100% rename from rendering/data/tiles/stamen-labels/5/16/11.png rename to test/rendering/data/tiles/stamen-labels/5/16/11.png diff --git a/rendering/data/tiles/stamen-labels/5/5/12.png b/test/rendering/data/tiles/stamen-labels/5/5/12.png similarity index 100% rename from rendering/data/tiles/stamen-labels/5/5/12.png rename to test/rendering/data/tiles/stamen-labels/5/5/12.png diff --git a/rendering/data/tiles/wms/wms0.png b/test/rendering/data/tiles/wms/wms0.png similarity index 100% rename from rendering/data/tiles/wms/wms0.png rename to test/rendering/data/tiles/wms/wms0.png diff --git a/rendering/data/tiles/wms/wms20.png b/test/rendering/data/tiles/wms/wms20.png similarity index 100% rename from rendering/data/tiles/wms/wms20.png rename to test/rendering/data/tiles/wms/wms20.png diff --git a/rendering/data/tiles/zoomify/TileGroup0/0-0-0.jpg b/test/rendering/data/tiles/zoomify/TileGroup0/0-0-0.jpg similarity index 100% rename from rendering/data/tiles/zoomify/TileGroup0/0-0-0.jpg rename to test/rendering/data/tiles/zoomify/TileGroup0/0-0-0.jpg diff --git a/rendering/data/tiles/zoomify/TileGroup0/1-0-0.jpg b/test/rendering/data/tiles/zoomify/TileGroup0/1-0-0.jpg similarity index 100% rename from rendering/data/tiles/zoomify/TileGroup0/1-0-0.jpg rename to test/rendering/data/tiles/zoomify/TileGroup0/1-0-0.jpg diff --git a/rendering/data/tiles/zoomify/TileGroup0/1-0-1.jpg b/test/rendering/data/tiles/zoomify/TileGroup0/1-0-1.jpg similarity index 100% rename from rendering/data/tiles/zoomify/TileGroup0/1-0-1.jpg rename to test/rendering/data/tiles/zoomify/TileGroup0/1-0-1.jpg diff --git a/rendering/data/tiles/zoomify/TileGroup0/1-1-0.jpg b/test/rendering/data/tiles/zoomify/TileGroup0/1-1-0.jpg similarity index 100% rename from rendering/data/tiles/zoomify/TileGroup0/1-1-0.jpg rename to test/rendering/data/tiles/zoomify/TileGroup0/1-1-0.jpg diff --git a/rendering/data/tiles/zoomify/TileGroup0/1-1-1.jpg b/test/rendering/data/tiles/zoomify/TileGroup0/1-1-1.jpg similarity index 100% rename from rendering/data/tiles/zoomify/TileGroup0/1-1-1.jpg rename to test/rendering/data/tiles/zoomify/TileGroup0/1-1-1.jpg diff --git a/rendering/default/index.html b/test/rendering/default/index.html similarity index 100% rename from rendering/default/index.html rename to test/rendering/default/index.html diff --git a/rendering/readme.md b/test/rendering/readme.md similarity index 87% rename from rendering/readme.md rename to test/rendering/readme.md index 0bfed29bd5..23f9587eac 100644 --- a/rendering/readme.md +++ b/test/rendering/readme.md @@ -12,19 +12,19 @@ The rendering tests use [Puppeteer](https://github.com/GoogleChrome/puppeteer) t To run all the rendering tests: ```bash -node rendering/test.js +node test/rendering/test.js ``` To run a single rendering test case: ```bash -node rendering/test.js --match your-test-case-name +node test/rendering/test.js --match your-test-case-name ``` If you want to leave the test server running (and the test browser open) after running a test, use the `--interactive` option. ```bash -node rendering/test.js --match your-test-case-name --interactive +node test/rendering/test.js --match your-test-case-name --interactive ``` ## Creating a new test @@ -32,7 +32,7 @@ node rendering/test.js --match your-test-case-name --interactive To create a new test case, add a directory under `cases` and add a `main.js` to it (copied from one of the other cases). Then to generate the `expected.png` screenshot, run the test script with the `--fix` flag: ```bash -node rendering/test.js --match your-test-case-name --fix +node test/rendering/test.js --match your-test-case-name --fix ``` Note that your `main.js` needs to call the magic `render()` function after setting up the map. This triggers a snapshot. The `render()` function can be called with an options object that includes a `tolerance` property. The tolerance is related to the ratio of mismatched pixels to the total number of pixels in the actual screenshot. diff --git a/rendering/test.js b/test/rendering/test.js similarity index 99% rename from rendering/test.js rename to test/rendering/test.js index 5f5c9b53a1..2eba5909b7 100755 --- a/rendering/test.js +++ b/test/rendering/test.js @@ -24,7 +24,7 @@ const staticHandler = serveStatic(__dirname); const defaultHandler = serveStatic(path.join(__dirname, 'default')); -const srcHandler = serveStatic(path.join(__dirname, '..', 'src')); +const srcHandler = serveStatic(path.join(__dirname, '..', '..', 'src')); function indexHandler(req, res) { const items = []; diff --git a/rendering/webpack.config.js b/test/rendering/webpack.config.js similarity index 67% rename from rendering/webpack.config.js rename to test/rendering/webpack.config.js index 0bf16a16c5..c9109bccb4 100644 --- a/rendering/webpack.config.js +++ b/test/rendering/webpack.config.js @@ -29,16 +29,13 @@ module.exports = { { test: /\.js$/, use: { - loader: path.join(__dirname, '../examples/webpack/worker-loader.js'), + loader: path.join( + __dirname, + '../../examples/webpack/worker-loader.js' + ), }, - include: [path.join(__dirname, '../src/ol/worker')], + include: [path.join(__dirname, '../../src/ol/worker')], }, ], }, - resolve: { - alias: { - // allow imports from 'ol/module' instead of specifiying the source path - ol: path.join(__dirname, '..', 'src', 'ol'), - }, - }, };