Skip to content

Commit

Permalink
fix(getInfo): get info returns the first 10 elements
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbeau committed Sep 7, 2017
1 parent fada4ce commit 20c096b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/datasource/shared/datasources/wms-datasource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ export class WMSDataSource
const url = this.ol.getGetFeatureInfoUrl(
options.coordinates, options.resolution, options.projection, {
'INFO_FORMAT': this.queryInfoFormat,
'QUERY_LAYERS': this.params.layers
'QUERY_LAYERS': this.params.layers,
'FEATURE_COUNT': '10'
});

return url;
Expand Down

0 comments on commit 20c096b

Please sign in to comment.