When I load a point layer arcgis server into a feature layer in arcgis js sdk, it does the following request sequence:
- .../query?f=json
- .../query?resultRecordCount=true
- .../query?limit=2000&offset=0
{pages through till count from step two is hit}
When I load a polyline layer from arcgis server into a feature layer in arcgis js sdk, it does the following request sequence:
- .../query?f=json
- .../query?f=geometry={'xmin': xyz, 'ymin': xyz etc}
{pages through each tile in the map view and updates as panning around}
I am trying to figure out why points feature services do a big count and then paginate with limit/offset and polylines paginate by tile? Can I force the JS sdk to use one or the other?