Changeset 18189 in josm for trunk/test
- Timestamp:
- 2021-09-01T22:31:33+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/layer/imagery/MVTLayerTest.java
r18187 r18189 88 88 // Needed to initialize mapView 89 89 MainApplication.getLayerManager().addLayer(this.testLayer); 90 final BBox tileBBox = new MVTTile(this.testLayer.getTileSource(), 32 51, 6258, 14).getBBox();90 final BBox tileBBox = new MVTTile(this.testLayer.getTileSource(), 3248, 6258, 14).getBBox(); 91 91 MainApplication.getMap().mapView.zoomTo(new Bounds(tileBBox.getMinLat(), tileBBox.getMinLon(), 92 92 tileBBox.getMaxLat(), tileBBox.getMaxLon())); … … 129 129 @Test 130 130 void finishedLoading() throws ReflectiveOperationException { 131 final MVTTile mvtTile = (MVTTile) this.testLayer.createTile(this.testLayer.getTileSource(), 32 51, 6258, 14);131 final MVTTile mvtTile = (MVTTile) this.testLayer.createTile(this.testLayer.getTileSource(), 3248, 6258, 14); 132 132 final FinishedLoading finishedLoading = new FinishedLoading(); 133 133 mvtTile.addTileLoaderFinisher(finishedLoading);
Note:
See TracChangeset
for help on using the changeset viewer.