We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There has been a couple of changes to the places-service relating to pagination which need updating in the REST JS documentation.
Theses pagination changes are:
maxResultsExceeded
links
pagination
next
previous
nextUrl
previousUrl
links.base
Old format
{ "results": [/*snip*/], "maxResultsExceeded": true, "links": { "base": "https://places-api.arcgis.com", "previous": "/arcgis/rest/services/places-service/v1/places/near-point?x=-3.18718337&y=55.95203695&radius=1000.00000000&searchText=&f=pjson&offset=0&pageSize=10", "next": "/arcgis/rest/services/places-service/v1/places/near-point?x=-3.18718337&y=55.95203695&radius=1000.00000000&searchText=&f=pjson&offset=20&pageSize=10" } }
New format:
{ "results": [/*snip*/], "pagination": { "previousUrl": "https://placesdev-api.arcgis.com/arcgis/rest/services/places-service/v1/places/near-point?x=-3.18718337&y=55.95203695&radius=1000.00000000&searchText=&f=pjson&offset=0&pageSize=10", "nextUrl": "https://placesdev-api.arcgis.com/arcgis/rest/services/places-service/v1/places/near-point?x=-3.18718337&y=55.95203695&radius=1000.00000000&searchText=&f=pjson&offset=20&pageSize=10" } }
These are the pages that still have the old attributes links and maxResultsExceeded and they need to be updated accordingly:
https://developers.arcgis.com/arcgis-rest-js/api-reference/arcgis-rest-places/
The text was updated successfully, but these errors were encountered:
fixed in #1133. thanks @sherylgiovanni!
Sorry, something went wrong.
patrickarlt
gavinr-maps
No branches or pull requests
Description
There has been a couple of changes to the places-service relating to pagination which need updating in the REST JS documentation.
Theses pagination changes are:
maxResultsExceeded
links
object topagination
next
andprevious
tonextUrl
andpreviousUrl
nextUrl
andpreviousUrl
are now full Urls rather than Url fragments -links.base
removedOld format
New format:
Changes needed
These are the pages that still have the old attributes
links
andmaxResultsExceeded
and they need to be updated accordingly:Link to page
https://developers.arcgis.com/arcgis-rest-js/api-reference/arcgis-rest-places/
The text was updated successfully, but these errors were encountered: