-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for navigation history in cesium (#1690)
- Fixed infinite nested history, removing it (is not needed at all) - Removed wrong reducers for ZoomIn and ZoomOut buttons - Now the CHANGE_MAP_VIEW action accept a viewerOptions to store specific viewer options in history. It can be used for rotation in OpenLayers, for the future
- Loading branch information
1 parent
e48116f
commit ab81b0e
Showing
5 changed files
with
29 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,5 +37,5 @@ module.exports = { | |
priority: 1 | ||
} | ||
}), | ||
reducers: { zoomIn: require("../reducers/map")} | ||
reducers: {} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,5 +38,5 @@ module.exports = { | |
priority: 1 | ||
} | ||
}), | ||
reducers: {zoomOut: require("../reducers/map")} | ||
reducers: {} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters