Skip to content

Commit

Permalink
Website updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ahocevar committed Oct 1, 2024
1 parent 14b9984 commit 696bac9
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/en/main/examples/common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/en/main/examples/common.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/en/main/examples/offscreen-canvas.worker.worker.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/en/main/ol/dist/ol.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/en/main/ol/dist/ol.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/en/main/ol/source/Vector.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,10 @@ declare class VectorSource<FeatureType extends import("../Feature.js").FeatureLi
* @api
*/
setUrl(url: string | import("../featureloader.js").FeatureUrlFunction): void;
/**
* @param {boolean} overlaps The source can have overlapping geometries.
*/
setOverlaps(overlaps: boolean): void;
}
import RenderFeature from '../render/Feature.js';
import Collection from '../Collection.js';
Expand Down
2 changes: 1 addition & 1 deletion dist/en/main/ol/source/Vector.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions dist/en/main/ol/source/Vector.js
Original file line number Diff line number Diff line change
Expand Up @@ -1184,6 +1184,14 @@ class VectorSource extends Source {
this.url_ = url;
this.setLoader(xhr(url, this.format_));
}

/**
* @param {boolean} overlaps The source can have overlapping geometries.
*/
setOverlaps(overlaps) {
this.overlaps_ = overlaps;
this.changed();
}
}

export default VectorSource;
4 changes: 4 additions & 0 deletions dist/en/main/ol/source/VectorTile.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,10 @@ declare class VectorTile<FeatureType extends import("../Feature.js").FeatureLike
* @override
*/
override getTile(z: number, x: number, y: number, pixelRatio: number, projection: import("../proj/Projection.js").default): VectorRenderTile;
/**
* @param {boolean} overlaps The source has overlapping geometries.
*/
setOverlaps(overlaps: boolean): void;
}
import Tile from '../VectorTile.js';
import TileGrid from '../tilegrid/TileGrid.js';
Expand Down
2 changes: 1 addition & 1 deletion dist/en/main/ol/source/VectorTile.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions dist/en/main/ol/source/VectorTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,14 @@ class VectorTile extends UrlTile {
Math.round(tileSize[1] * pixelRatio),
];
}

/**
* @param {boolean} overlaps The source has overlapping geometries.
*/
setOverlaps(overlaps) {
this.overlaps_ = overlaps;
this.changed();
}
}

export default VectorTile;
Expand Down
2 changes: 1 addition & 1 deletion dist/main.js

Large diffs are not rendered by default.

0 comments on commit 696bac9

Please sign in to comment.