mapillary-js version: 2.1.0
Steps to Reproduce Behavior
- Create a viewer without specifying the key
- Set one or more filters
- Move to any node
- Clear the filter when the node has been set
- Navigate in the viewer
var viewer = new Mapillary.Viewer(
"<container-id>",
"<cliend_id>",
null);
viewer.setFilter(["==", "fullPano", true]).then(function() { /*noop*/ });
viewer.moveToKey("<any-image-key>").then(
function(n) {
viewer.setFilter(undefined).then(function() { /*noop*/ });
},
function(e) { console.error(e); });*/
Expected Behavior
No filter is applied to the graph after clearing the filter and navigating.
Actual Behavior
The initial filter is reapplied to the graph on each new node request when navigating.
mapillary-js version: 2.1.0
Steps to Reproduce Behavior
Expected Behavior
No filter is applied to the graph after clearing the filter and navigating.
Actual Behavior
The initial filter is reapplied to the graph on each new node request when navigating.