If defined, the total number of coverages within the paged collection.
If defined, an object with a single method load([options])
that when called returns a Promise
object which succeeds with a CoverageCollection
object corresponding to the next collection page. options
is an optional object with an optional property eagerload: true
.
var coll = ...
if (coll.paging && coll.paging.next) {
coll.paging.next.load().then(function (nextcoll) {
// access coverages of next page
})
)
If defined, an object with a single method load([options])
that when called returns a Promise
object which succeeds with a CoverageCollection
object corresponding to the previous collection page. options
is an optional object with an optional property eagerload: true
.
If defined, an object with a single method load([options])
that when called returns a Promise
object which succeeds with a CoverageCollection
object corresponding to the first collection page. options
is an optional object with an optional property eagerload: true
.
If defined, an object with a single method load([options])
that when called returns a Promise
object which succeeds with a CoverageCollection
object corresponding to the last collection page. options
is an optional object with an optional property eagerload: true
.