When attempting to construct an array of features in a pagination loop, I'm encountering perhaps related problems with the pageSize and pagination params for the getFeatures method.
- Using an explicit
pageSize param always throws a postMessage console error: Error fetching features: could not convert string to float: ''
- Without an explicit
pageSize param, the method returns the first 20 features as the expected default, but passing the response's nextPage key to subsequent calls always returns the same / first 20 features instead of the next page.
When attempting to construct an array of features in a pagination loop, I'm encountering perhaps related problems with the
pageSizeandpaginationparams for thegetFeaturesmethod.pageSizeparam always throws apostMessageconsole error: Error fetching features: could not convert string to float: ''pageSizeparam, the method returns the first 20 features as the expected default, but passing the response'snextPagekey to subsequent calls always returns the same / first 20 features instead of the next page.