Skip to content

Commit

Permalink
[BUILD]
Browse files Browse the repository at this point in the history
  • Loading branch information
Viglino committed Jul 2, 2024
1 parent 895ef30 commit 98d5dab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions dist/ol-ext.js
Original file line number Diff line number Diff line change
Expand Up @@ -33930,11 +33930,12 @@ ol.source.Overpass = class olsourceOverpass extends ol.source.Vector {
* @fires overload
* @extends {ol.source.Vector}
* @param {Object} options
* @param {string} [options.version=1.1.0] WFS version to use. Can be either 1.0.0, 1.1.0 or 2.0.0.
* @param {string} options.typeName WFS type name parameter
* @param {number} options.tileZoom zoom to load the tiles
* @param {number} options.maxFeatures maximum features returned in the WFS
* @param {number} options.featureLimit maximum features in the source before refresh, default Infinity
* @param {string} [options.version=1.1.0] WFS version to use. Can be either 1.0.0, 1.1.0 or 2.0.0.
* @param {string} [options.outputFormat=application/json] WFS outputFormat parameter
* @param {number} [options.tileZoom=14] zoom to load the tiles
* @param {number} [options.maxFeatures] maximum features returned in the WFS
* @param {number} [options.featureLimit=Infinity] maximum features in the source before refresh, default Infinity
* @param {boolean} [options.pagination] experimental enable pagination, default no pagination
*/
ol.source.TileWFS = class olsourceTileWFS extends ol.source.Vector {
Expand All @@ -33953,7 +33954,7 @@ ol.source.TileWFS = class olsourceTileWFS extends ol.source.Vector {
+ '&request=GetFeature'
+ '&version=' + (options.version || '1.1.0')
+ '&typename=' + (options.typeName || '')
+ '&outputFormat=application/json'
+ '&outputFormat=' + (options.outputFormat || 'application/json')
if (options.maxFeatures) {
url += '&maxFeatures=' + options.maxFeatures + '&count=' + options.maxFeatures
}
Expand Down
2 changes: 1 addition & 1 deletion dist/ol-ext.min.js

Large diffs are not rendered by default.

0 comments on commit 98d5dab

Please sign in to comment.