Opened 13 years ago
Closed 13 years ago
#117 closed defect (fixed)
GeoMOOSE bookmark not usable by the Catalog
Reported by: | sheppard | Owned by: | theduckylittle |
---|---|---|---|
Priority: | major | Milestone: | 2.6.1 |
Component: | GeoMOOSE/JS | Version: | 2.6 |
Keywords: | Cc: |
Description ¶
Steps to recreate:
- Turn on/off some layers.
- Trigger GeoMOOSE.bookmark()
Expected result:
The map should stay at the same extent, with the same layers visible.
Actual result:
The map stays at the same extent, but the layers are reset to the mapbook default.
Apparent Cause:
The function renderGroup() in the new GeoMOOSE.Tab.Catalog class checks for the parameters 'on' and 'off' from the URL to determine which layers to change from their defaults. However, the new GeoMOOSE.getBookmarkUrl() function assigns layer information to a single parameter 'layers' that lists all visible layers (regardless of mapbook defaults).
It looks like there was a function called getLayerDifferences() in the old catalog.js that would create the expected 'on' and 'off' parameters for use in the URL.
Proposed Solution:
I'm assuming either Catalog.renderGroup() or GeoMOOSE.getBookmarkUrl() will need to be changed to match the format used by the other, however I am not sure which one.
Change History (7)
comment:1 by , 13 years ago
Milestone: | 2.6 → 2.6.1 |
---|
comment:2 by , 13 years ago
comment:3 by , 13 years ago
Owner: | set to |
---|---|
Status: | new → assigned |
comment:4 by , 13 years ago
I have this basically working on my local dev box but found a bug with setting Google layers as the default map. Fixing that, then releasing code.
comment:5 by , 13 years ago
Fixed the google layers issue, no resizing/redrawing until *after* it's been added to the map: r901.
comment:6 by , 13 years ago
Status: | assigned → testing |
---|
And now the real functionality is brought into the new build: r902
It looks like the 'on' and 'off' parameters read by GeoMOOSE.Tab.Catalog do not actually change anything. It is not possible in 2.6.0 to change the initial layers via the URL.