Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port to OL8 #1097

Merged
merged 1 commit into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog


# v 2.16 - 2023-09-03

* Changes
* Port to OpenLayers 8

# v 2.15.2 - 2023-08-28

* Changes
Expand Down
6 changes: 3 additions & 3 deletions examples/rastersync.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module examples.rastersync
*/
import olSourceTileWMS from 'ol/source/TileWMS.js';
import olSourceStamen from 'ol/source/Stamen.js';
import StadiaMaps from 'ol/source/StadiaMaps.js';
import OLCesium from 'olcs/OLCesium.ts';
import olLayerGroup from 'ol/layer/Group.js';
import olMap from 'ol/Map.js';
Expand Down Expand Up @@ -47,9 +47,9 @@ ol3d.setEnabled(true);

const addStamen = function() { // eslint-disable-line no-unused-vars
ol2d.addLayer(new olLayerTile({
source: new olSourceStamen({
source: new StadiaMaps({
opacity: 0.7,
layer: 'watercolor'
layer: 'stamen_watercolor'
})
}));
};
Expand Down
Loading