Are there any methods to query several features by id other than one entry by a single url request?
The scenario is I store around 200 point layers in PostgreGIS. Each maintains 100k entries GPS points. My boss wants to let them "move" in the browser. Obviously it's impossible to query all entries at once. So I want to query like 1k entries for one layer in every query. So basically I want to query the features by their id, like "starID<=ID<=endID". But it seems like by WFS url query, it can only query one entry every time by the featureID=ID. I'm also thinking about using the ordinary Postgre other then PostgreGIS, but just in case there might be spatial queries in the future.


