When replicating from couchDB(with geocouch), is there a way to sync documents within a bbox (bounds) ?
I'm displaying markers on a map, and I'd like to only replicate documents within the bounds of that map.
Thank you.
Yes because the underlying documents are the same. When you query for a bounding box the result set should contain a list of document ids. The replicator api in couchdb can accept a list of document ids that have to be replicated. So all you have got to do is query for the bbox to get a list of _ids and pass that list to the couchdb replicator to replicate them.