-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
bugSomething isn't workingSomething isn't working
Description
cb below is never called:
Lines 113 to 131 in 6edffea
| P.prototype._onviewbox = function (bbox, zoom, cb) { | |
| var self = this | |
| var boxes = self._plan.update(bbox) | |
| for (var i = 0; i < boxes.length; i++) { | |
| self._plan.add(boxes[i]) | |
| } | |
| self._zoom = zoom | |
| self._getDb(function (db) { | |
| boxes.forEach(bbox => { | |
| db.query(bbox, { trace }) | |
| .then(q => self._loadQuery(bbox, q)) | |
| .catch(e => self._error(e)) | |
| function trace(tr) { | |
| self._trace[tr.file] = tr | |
| } | |
| }) | |
| self._scheduleRecalc() | |
| }) | |
| } |
which results in the following code in mixmaps not being called
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working