Skip to content

Fix #10739 Changing correctly resolutions limits when switching map CRS#10746

Merged
tdipisa merged 3 commits intogeosolutions-it:masterfrom
MV88:10739_visibility
May 20, 2025
Merged

Fix #10739 Changing correctly resolutions limits when switching map CRS#10746
tdipisa merged 3 commits intogeosolutions-it:masterfrom
MV88:10739_visibility

Conversation

@MV88
Copy link
Copy Markdown
Contributor

@MV88 MV88 commented Jan 13, 2025

Description

We are changing resolutions also in the view because these were not aligned to the layers especially when switching to 4326. ol map view was having a different list causing a misalignment between current resolution and zoom level

Please check if the PR fulfills these requirements

What kind of change does this PR introduce? (check one with "x", remove the others)

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Other... Please describe:

Issue

What is the current behavior?

Fix #10739

What is the new behavior?

Breaking change

Does this PR introduce a breaking change? (check one with "x", remove the other)

  • Yes, and I documented them in migration notes
  • No

Other useful information

@MV88 MV88 added this to the 2025.01.00 milestone Jan 13, 2025
@MV88 MV88 requested a review from dsuren1 January 13, 2025 13:27
@MV88 MV88 self-assigned this Jan 13, 2025
Copy link
Copy Markdown
Contributor

@dsuren1 dsuren1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MV88
I noticed the following behaviors during testing. Kindly take a look. Thanks!

  • When the visibility limits are set on projection other than the default ones (4326, 3857), switching back to 4326 causes the visibility limits to default to the maximum value for both the min and max fields. This results in the layer being perpetually hidden. This issue occurs exclusively with 4326.

    Tested with 25832, 2154

    "projectionDefs":[{"code":"EPSG:25832","def":"+proj=utm +zone=32 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs","extent":[229521.4465,0,923521.4465,9329005.182],"worldExtent":[6.0,53.0,15.0,60.0]},{"code":"EPSG:2154","def":"+proj=lcc +lat_1=49 +lat_2=44 +lat_0=46.5 +lon_0=3 +x_0=700000 +y_0=6600000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs","extent":[-378305.81,6093283.21,1212610.74,7186901.68],"worldExtent":[-9.86,41.15,10.38,51.56]}]
    crs_to_4326.mp4
  • When setting visibility limits on EPSG:4326 and previewing the print map, the layer is hidden in the print preview when the CRS is EPSG:3857. However, it works correctly when the CRS is EPSG:4326 in the print tool

    print-crs-4326.mp4

@MV88
Copy link
Copy Markdown
Contributor Author

MV88 commented Jan 17, 2025

When the visibility limits are set on projection other than the default ones (4326, 3857), switching back to 4326 causes the visibility limits to default to the maximum value for both the min and max fields. This results in the layer being perpetually hidden. This issue occurs exclusively with 4326.

pushed an update to avoid this scenario

When setting visibility limits on EPSG:4326 and previewing the print map, the layer is hidden in the print preview when the CRS is EPSG:3857. However, it works correctly when the CRS is EPSG:4326 in the print tool

in my case is coherent with what happens when you switch map crs.

@tdipisa
Copy link
Copy Markdown
Member

tdipisa commented Jan 17, 2025

@dsuren1 I think this is ready then for a new review

@tdipisa tdipisa requested a review from dsuren1 January 17, 2025 16:15
@tdipisa tdipisa added the bug label Jan 17, 2025
Copy link
Copy Markdown
Contributor

@dsuren1 dsuren1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MV88

When setting visibility limits on EPSG:4326 and previewing the print map, the layer is hidden in the print preview when the CRS is EPSG:3857. However, it works correctly when the CRS is EPSG:4326 in the print tool

The visibility limits on the layer set on main map are not in sync with print preview tool, as the print tool allows user to select a different projection and the values on the layer (min and max resolution) are not modified accordingly, resulting in the layer being filtered out (i.e not visible on the print tool). As we discussed the values needs to converted in a way that the limits are recalculated based on the projection selected in print tool to be viewable on the print as well.
NOTE: This seems to be an existing issue

@MV88
Copy link
Copy Markdown
Contributor Author

MV88 commented Jan 20, 2025

@MV88

When setting visibility limits on EPSG:4326 and previewing the print map, the layer is hidden in the print preview when the CRS is EPSG:3857. However, it works correctly when the CRS is EPSG:4326 in the print tool

The visibility limits on the layer set on main map are not in sync with print preview tool, as the print tool allows user to select a different projection and the values on the layer (min and max resolution) are not modified accordingly, resulting in the layer being filtered out (i.e not visible on the print tool). As we discussed the values needs to converted in a way that the limits are recalculated based on the projection selected in print tool to be viewable on the print as well. NOTE: This seems to be an existing issue

@tdipisa let's discuss a bit for this sine there are some problems in how resolutions and visibility limits are handled in print preview map:

i did a quick investigation:

  • getPreviewResolution is using scales based on map component not printMap ones that can have a different crs and therefore different resolutions
  • Another issue is that you cannot use visibility limits calculated in the "map" for the printMap since they can have different crs there fore different values of resolutions visibility limits
  • current resolution value is not matching the one in the list i calculate
  • as a result the value of resolution calculated in getPreviewResolution will not fit in the isInsideResolutionsLimits

I guess a dedicated issue must be created since this problem was preexisting

@tdipisa tdipisa added the BackportNeeded Commits provided for an issue need to be backported to the milestone's stable branch label Mar 10, 2025
@tdipisa tdipisa modified the milestones: 2025.01.00, 2025.01.01 Apr 4, 2025
@offtherailz
Copy link
Copy Markdown
Member

Basically this is the issue mentioned by @dsuren1 , as far as I understood (videos are not reachable anymore).

Video.del.2025-05-12.18-25-33.mp4

Basically the calculation of visibility limits is not done in case of printing tool change of projection.

Good catch @dsuren1 .

This is not explicitly mentioned in the original issue, so it is not strictly part of the issue to solve.
This is effectively a bug related to the issue, or at least an inconsistency that had to be taken in consideration. I think this should be evaluated and, depending on the effort, evaluate to include it in this PR or creating a separate issue.

note: I updated to master to have the map preview more powerful, I'd suggest to update the PR too.

@tdipisa tdipisa requested a review from dsuren1 May 19, 2025 14:25
@tdipisa
Copy link
Copy Markdown
Member

tdipisa commented May 19, 2025

Thank you @offtherailz as we have discussed this issue concerning the printing functionality can be a separated one. @MV88 can you please open it? Saying that @dsuren1, is that PR approvable now?

@tdipisa tdipisa modified the milestones: 2025.01.01, 2025.01.00 May 19, 2025
Copy link
Copy Markdown
Contributor

@dsuren1 dsuren1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. Approved now

@tdipisa tdipisa merged commit a127923 into geosolutions-it:master May 20, 2025
@tdipisa
Copy link
Copy Markdown
Member

tdipisa commented May 20, 2025

@ElenaGallo please test in DEV and let us know if we can backport.

@ElenaGallo
Copy link
Copy Markdown
Contributor

Test passed @MV88 please backport to 2025.01.xx. Thanks

MV88 added a commit to MV88/MapStore2 that referenced this pull request May 21, 2025
…switching map CRS (geosolutions-it#10746)

* Fix geosolutions-it#10739 Changing correctly resolutions limits when switching map CRS

* fix lint

* Fix same visibility limit
tdipisa pushed a commit that referenced this pull request May 21, 2025
…RS (#10746) (#11123)

* Fix #10739 Changing correctly resolutions limits when switching map CRS

* fix lint

* Fix same visibility limit
@tdipisa tdipisa removed the BackportNeeded Commits provided for an issue need to be backported to the milestone's stable branch label May 21, 2025
rmelarab-ngs added a commit to ngsllc/MapStore2 that referenced this pull request Aug 26, 2025
* Fix geosolutions-it#10819 Manager menu is merged into Login/user menu and Manager menu is now deprecated  (geosolutions-it#10963)

* Small update to LDAP doc (geosolutions-it#10972)

* Fixing http-proxy version to 1.5.0 (geosolutions-it#10905)

* Streetsmart openid master (geosolutions-it#10875) (geosolutions-it#10994)

* geosolutions-it#10983: handle add new X twitter icon instead of old icon in Share-->Social (geosolutions-it#10988) (geosolutions-it#10995)

Description:
- add new x icon of x.com [twitter] in share panel

* geosolutions-it#10986: Remove experimentalInteractiveLegend flag (geosolutions-it#10993) (geosolutions-it#11000)

* Fix geosolutions-it#10898 Removed dependency BrandNavbar from both ResourceDetails and Language while creating map context (geosolutions-it#10978) (geosolutions-it#11001)

* Fix geosolutions-it#10819 Changed migration guide  and jsdoc for rules manager. (geosolutions-it#10984) (geosolutions-it#11002)

* Fix geosolutions-it#10944 Remove primary color and shadow from panels headers (geosolutions-it#10956) (geosolutions-it#11006)

---------

Co-authored-by: allyoucanmap <stefano.bovio@geosolutionsgroup.com>

* geosolutions-it#10831: FIX- Improve how printing map preview is managed (geosolutions-it#10957) (geosolutions-it#11020)

* geosolutions-it#10970: Add configuration support to open resource in target from homepage (geosolutions-it#10977) (geosolutions-it#11019)

(cherry picked from commit b735d26)

* [Backport 2025.01.xx] geosolutions-it#10820 Refactored Admin Ui section like HomePage using ResourceGrid Plugin (geosolutions-it#10973) (geosolutions-it#11023)

* fix: merge conflict in index:ResourceCatalog

* fix: conflict : removed ResourcesSearch

* Fix:geosolutions-it#10820  double close icon in add new group dialog (geosolutions-it#11018) (geosolutions-it#11025)

* [Backport 2025.01.xx] Fix geosolutions-it#10774 Review position of the filter button and search field in the homepage (geosolutions-it#11031)

* Fix geosolutions-it#10774 Review position of the filter button and search field in the homepage (geosolutions-it#11005)

* Fix geosolutions-it#10774 Clear all filters inside the resource search bar (geosolutions-it#11013)

* Fix geosolutions-it#11010 Vertical scrollbar on map viewer (geosolutions-it#11015) (geosolutions-it#11032)

* Fix geosolutions-it#11011 Map templates infinite scroll request all the pages (geosolutions-it#11014) (geosolutions-it#11033)

* Fix geosolutions-it#10958 Clean up old packages and deps (geosolutions-it#10959) (geosolutions-it#11068)

* geosolutions-it#11021: Implement an option to have static WMS legends (geosolutions-it#11034) (geosolutions-it#11074)

(cherry picked from commit d28bf70)

* [Backport to 2025.01.xx][FIXES geosolutions-it#11057] Latest MS binary of 2025.01 series does not start (geosolutions-it#11072) (geosolutions-it#11078)

* Fix geosolutions-it#11064. Restored arguments for login event (geosolutions-it#11066) (geosolutions-it#11079)

* Fix geosolutions-it#11058 .prettierignore improvements (geosolutions-it#11059) (geosolutions-it#11080)

This changes include updates and documentation of `.prettierignore` file
and json files
in order to:
- Prevent geosolutions-it#11058 error and any error due to target dirs
- Include files that must be checked (fixing the missing ones)
- Properly organize and document exclusion for future work

* [Backport 2025.01.xx] Fix geosolutions-it#10990 Review resources catalog code to make it usable by GeoStore and GeoNode geosolutions-it#10991 (geosolutions-it#11089)


---------

Co-authored-by: stefano bovio <stefano.bovio@geosolutionsgroup.com>

* Fix prod config (geosolutions-it#11091)

* Revert bump of mapstore-services to 1.9-SNAPSHOT (geosolutions-it#11094)

* Fix prod config

* Revert "Bump versions on master for release-branch (geosolutions-it#10904)"

This reverts commit 3ceca0a.

* update deps on stable branch 2025.01.xx for standard template web/pom.xml (geosolutions-it#11096)

* Fix geosolutions-it#11086 IFC position controller no longer working (geosolutions-it#11090) (geosolutions-it#11101)

* [Backport 2025.01.xx]: Fix geosolutions-it#11081 Minor home page issues to fix (geosolutions-it#11095) (geosolutions-it#11102)

* Minor home page issues to fix geosolutions-it#11081 (geosolutions-it#11095)

* fix: use update_resource and remove favouriteChanged action (geosolutions-it#11100)

* Adding missing translation property geosolutions-it#11106

* Fix geosolutions-it#11099 Align the behavior of contexts management on the front end to the backend model (geosolutions-it#11108) (geosolutions-it#11122)

* Fix geosolutions-it#10739 Changing correctly resolutions limits when switching map CRS (geosolutions-it#10746) (geosolutions-it#11123)

* Fix geosolutions-it#10739 Changing correctly resolutions limits when switching map CRS

* fix lint

* Fix same visibility limit

* Fix geosolutions-it#11097 Confirmation modal should not appear if no changes are made (geosolutions-it#11125) (geosolutions-it#11134)

* Fix geosolutions-it#10947 Updated dockerfile to static files for standard templates (geosolutions-it#10950) (geosolutions-it#11135)

* [Backport 2025.01.xx] upgrade spring framework to version 5.3.39 (geosolutions-it#11035) (geosolutions-it#11128)

* upgrade spring framework to version 5.3.39 (geosolutions-it#11035)

* Fixed geostore version

* Update pom.xml

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* [2025.01.xx] upgrade spring framework to version 5.3.39 (geosolutions-it#11035) (geosolutions-it#11145)

* Update pom.xml

---------

Co-authored-by: Alessio Fabiani <alessio.fabiani@geosolutionsgroup.com>
Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* [Backport to 2025.01.xx] Keep commons-lang 2 for back compatibility with old catalina versions (geosolutions-it#11161)

* [Backport 2025.01.xx] Fix geosolutions-it#10982 Side panels should be smaller (geosolutions-it#11172)

* Fix geosolutions-it#10982 Side panels should be smaller (geosolutions-it#11009)

* #geosolutions-it#10982 Side panels should be smaller

* fix failing tests

* requested changes

* Fix geosolutions-it#10982 Review style of longitudinal profile chart (geosolutions-it#11151)

* [Backport 2025.01.xx] Fix geosolutions-it#11147 Problems with save resource workflow (geosolutions-it#11170)

* Fix geosolutions-it#11147 Problems with save resource workflow (geosolutions-it#11149)

* Fix geosolutions-it#11147 Ensure thumbnail is persisted in UI while editing (geosolutions-it#11166)

* Fix geosolutions-it#11146 Edit permission to everyone should not be set (geosolutions-it#11150) (geosolutions-it#11171)

* Improve GeoServer user integration doc (geosolutions-it#11030) (geosolutions-it#11169)

* Improve GeoServer user integration doc

* Update docs/developer-guide/integrations/geoserver.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* backport 2025.01.xx - Fix geosolutions-it#11176 adding version template and updated pom versions (geosolutions-it#11178) (geosolutions-it#11180)

* Fix geosolutions-it#11176 adding version template and updated pom versions (geosolutions-it#11178)

* fix geostore-webapp.version

* Update User Guide - User Session plugin (geosolutions-it#11115) (geosolutions-it#11185)

* update_10934

* Update docs/user-guide/user-session.md

* Update docs/user-guide/user-session.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* Update User Guide - Upload image on Text Widget (geosolutions-it#11024) (geosolutions-it#11186)

* updateguide_10752

* Update docs/user-guide/widgets.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* 11073_update (geosolutions-it#11107) (geosolutions-it#11187)

* Update User Guide - Configure the light on Cesium map (geosolutions-it#11126) (geosolutions-it#11184)

* update_10844

* Update docs/user-guide/mapstore-toolbars.md

* Update docs/user-guide/mapstore-toolbars.md

* Update docs/user-guide/mapstore-toolbars.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* review_10929 (geosolutions-it#11188)

* Update User Guide - Legend filtering for WMS layers (geosolutions-it#11026) (geosolutions-it#11189)

* updateguide_10740

* review_10740

* Update docs/user-guide/toc.md



---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* User Guide - Add User Session plugin section geosolutions-it#11190 (geosolutions-it#11191)

* Set versions of main dependencies (geostore, mapfish, http-proxy) (geosolutions-it#11193)

Co-authored-by: github-actions <github-actions@github.com>

* Fix style parser import of font-awsome (geosolutions-it#11195) (geosolutions-it#11196)

* Version Release 2025.01.00

* Restore java packages to 1.9-SNAPSHOT and update package.json

* geosolutions-it#11153: Persist Swipe Layer state after map refresh (geosolutions-it#11158) (geosolutions-it#11202)

* geosolutions-it#11153: Persist Swipe Layer state after map refresh
- handle save swipe data into mapsave
- handle setting the swipe saved data into swipe state after map config load
- handle detect swipe change for save map
- add unit tests

* resolve review comments include:
- use registerCustomSaveHandler  instead of using basicMapOptionsToSaveSelector to save swipe state

* Update web/client/selectors/swipe.js

---------

Co-authored-by: Suren <dsuren1@gmail.com>

* Revert "geosolutions-it#11153: Persist Swipe Layer state after map refresh (geosolutions-it#11158) (geosolutions-it#11202)" (geosolutions-it#11204)

This reverts commit 644bb7b.

* [Backport to 2025.01.xx][geosolutions-it#11205] MapStore war stand-alone not starting (geosolutions-it#11208)

* [geosolutions-it#11205] MapStore war stand-alone not starting

* Build fix

(cherry picked from commit c2852fd)

* Get rid of duplicate httpclient httpcore 4.4.15 deps

* Fixing failing tests due to timeout (geosolutions-it#11216) (geosolutions-it#11217)

* Removed changelog

* Version Release 2025.01.00

* Submodule sync v2025.01.00 (#46)

* Update db properties and backend port (#37)

* Adding Vulnerability Fixes (#38)

* Updated pom.xml files to fix vulnerabilities

* Updated spring.security.version

* Bump versions for tomcat and cxf-core (#39)

* pom updates

* removing duplicate ip

* fixed port for embedded tomcat

---------

Co-authored-by: Anup Dahal <adahal39@gmail.com>
Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>
Co-authored-by: Lorenzo Natali <lorenzo.natali@geosolutionsgroup.com>
Co-authored-by: mahmoud adel <58145645+mahmoudadel54@users.noreply.github.com>
Co-authored-by: allyoucanmap <stefano.bovio@geosolutionsgroup.com>
Co-authored-by: Suren <dsuren1@gmail.com>
Co-authored-by: Matteo V. <matteo.velludini@geosolutionsgroup.com>
Co-authored-by: Alessio Fabiani <alessio.fabiani@geosolutionsgroup.com>
Co-authored-by: RowHeat <40065760+rowheat02@users.noreply.github.com>
Co-authored-by: ElenaGallo <56537133+ElenaGallo@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Raul Melara Beckman <101594967+rmelarab-ngs@users.noreply.github.com>
rmelarab-ngs added a commit to ngsllc/MapStore2 that referenced this pull request Aug 26, 2025
* Fix geosolutions-it#10819 Manager menu is merged into Login/user menu and Manager menu is now deprecated  (geosolutions-it#10963)

* Small update to LDAP doc (geosolutions-it#10972)

* Fixing http-proxy version to 1.5.0 (geosolutions-it#10905)

* Streetsmart openid master (geosolutions-it#10875) (geosolutions-it#10994)

* geosolutions-it#10983: handle add new X twitter icon instead of old icon in Share-->Social (geosolutions-it#10988) (geosolutions-it#10995)

Description:
- add new x icon of x.com [twitter] in share panel

* geosolutions-it#10986: Remove experimentalInteractiveLegend flag (geosolutions-it#10993) (geosolutions-it#11000)

* Fix geosolutions-it#10898 Removed dependency BrandNavbar from both ResourceDetails and Language while creating map context (geosolutions-it#10978) (geosolutions-it#11001)

* Fix geosolutions-it#10819 Changed migration guide  and jsdoc for rules manager. (geosolutions-it#10984) (geosolutions-it#11002)

* Fix geosolutions-it#10944 Remove primary color and shadow from panels headers (geosolutions-it#10956) (geosolutions-it#11006)

---------

Co-authored-by: allyoucanmap <stefano.bovio@geosolutionsgroup.com>

* geosolutions-it#10831: FIX- Improve how printing map preview is managed (geosolutions-it#10957) (geosolutions-it#11020)

* geosolutions-it#10970: Add configuration support to open resource in target from homepage (geosolutions-it#10977) (geosolutions-it#11019)

(cherry picked from commit b735d26)

* [Backport 2025.01.xx] geosolutions-it#10820 Refactored Admin Ui section like HomePage using ResourceGrid Plugin (geosolutions-it#10973) (geosolutions-it#11023)

* fix: merge conflict in index:ResourceCatalog

* fix: conflict : removed ResourcesSearch

* Fix:geosolutions-it#10820  double close icon in add new group dialog (geosolutions-it#11018) (geosolutions-it#11025)

* [Backport 2025.01.xx] Fix geosolutions-it#10774 Review position of the filter button and search field in the homepage (geosolutions-it#11031)

* Fix geosolutions-it#10774 Review position of the filter button and search field in the homepage (geosolutions-it#11005)

* Fix geosolutions-it#10774 Clear all filters inside the resource search bar (geosolutions-it#11013)

* Fix geosolutions-it#11010 Vertical scrollbar on map viewer (geosolutions-it#11015) (geosolutions-it#11032)

* Fix geosolutions-it#11011 Map templates infinite scroll request all the pages (geosolutions-it#11014) (geosolutions-it#11033)

* Fix geosolutions-it#10958 Clean up old packages and deps (geosolutions-it#10959) (geosolutions-it#11068)

* geosolutions-it#11021: Implement an option to have static WMS legends (geosolutions-it#11034) (geosolutions-it#11074)

(cherry picked from commit d28bf70)

* [Backport to 2025.01.xx][FIXES geosolutions-it#11057] Latest MS binary of 2025.01 series does not start (geosolutions-it#11072) (geosolutions-it#11078)

* Fix geosolutions-it#11064. Restored arguments for login event (geosolutions-it#11066) (geosolutions-it#11079)

* Fix geosolutions-it#11058 .prettierignore improvements (geosolutions-it#11059) (geosolutions-it#11080)

This changes include updates and documentation of `.prettierignore` file
and json files
in order to:
- Prevent geosolutions-it#11058 error and any error due to target dirs
- Include files that must be checked (fixing the missing ones)
- Properly organize and document exclusion for future work

* [Backport 2025.01.xx] Fix geosolutions-it#10990 Review resources catalog code to make it usable by GeoStore and GeoNode geosolutions-it#10991 (geosolutions-it#11089)

---------

Co-authored-by: stefano bovio <stefano.bovio@geosolutionsgroup.com>

* Fix prod config (geosolutions-it#11091)

* Revert bump of mapstore-services to 1.9-SNAPSHOT (geosolutions-it#11094)

* Fix prod config

* Revert "Bump versions on master for release-branch (geosolutions-it#10904)"

This reverts commit 3ceca0a.

* update deps on stable branch 2025.01.xx for standard template web/pom.xml (geosolutions-it#11096)

* Fix geosolutions-it#11086 IFC position controller no longer working (geosolutions-it#11090) (geosolutions-it#11101)

* [Backport 2025.01.xx]: Fix geosolutions-it#11081 Minor home page issues to fix (geosolutions-it#11095) (geosolutions-it#11102)

* Minor home page issues to fix geosolutions-it#11081 (geosolutions-it#11095)

* fix: use update_resource and remove favouriteChanged action (geosolutions-it#11100)

* Adding missing translation property geosolutions-it#11106

* Fix geosolutions-it#11099 Align the behavior of contexts management on the front end to the backend model (geosolutions-it#11108) (geosolutions-it#11122)

* Fix geosolutions-it#10739 Changing correctly resolutions limits when switching map CRS (geosolutions-it#10746) (geosolutions-it#11123)

* Fix geosolutions-it#10739 Changing correctly resolutions limits when switching map CRS

* fix lint

* Fix same visibility limit

* Fix geosolutions-it#11097 Confirmation modal should not appear if no changes are made (geosolutions-it#11125) (geosolutions-it#11134)

* Fix geosolutions-it#10947 Updated dockerfile to static files for standard templates (geosolutions-it#10950) (geosolutions-it#11135)

* [Backport 2025.01.xx] upgrade spring framework to version 5.3.39 (geosolutions-it#11035) (geosolutions-it#11128)

* upgrade spring framework to version 5.3.39 (geosolutions-it#11035)

* Fixed geostore version

* Update pom.xml

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* [2025.01.xx] upgrade spring framework to version 5.3.39 (geosolutions-it#11035) (geosolutions-it#11145)

* Update pom.xml

---------

Co-authored-by: Alessio Fabiani <alessio.fabiani@geosolutionsgroup.com>
Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* [Backport to 2025.01.xx] Keep commons-lang 2 for back compatibility with old catalina versions (geosolutions-it#11161)

* [Backport 2025.01.xx] Fix geosolutions-it#10982 Side panels should be smaller (geosolutions-it#11172)

* Fix geosolutions-it#10982 Side panels should be smaller (geosolutions-it#11009)

* #geosolutions-it#10982 Side panels should be smaller

* fix failing tests

* requested changes

* Fix geosolutions-it#10982 Review style of longitudinal profile chart (geosolutions-it#11151)

* [Backport 2025.01.xx] Fix geosolutions-it#11147 Problems with save resource workflow (geosolutions-it#11170)

* Fix geosolutions-it#11147 Problems with save resource workflow (geosolutions-it#11149)

* Fix geosolutions-it#11147 Ensure thumbnail is persisted in UI while editing (geosolutions-it#11166)

* Fix geosolutions-it#11146 Edit permission to everyone should not be set (geosolutions-it#11150) (geosolutions-it#11171)

* Improve GeoServer user integration doc (geosolutions-it#11030) (geosolutions-it#11169)

* Improve GeoServer user integration doc

* Update docs/developer-guide/integrations/geoserver.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* backport 2025.01.xx - Fix geosolutions-it#11176 adding version template and updated pom versions (geosolutions-it#11178) (geosolutions-it#11180)

* Fix geosolutions-it#11176 adding version template and updated pom versions (geosolutions-it#11178)

* fix geostore-webapp.version

* Update User Guide - User Session plugin (geosolutions-it#11115) (geosolutions-it#11185)

* update_10934

* Update docs/user-guide/user-session.md

* Update docs/user-guide/user-session.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* Update User Guide - Upload image on Text Widget (geosolutions-it#11024) (geosolutions-it#11186)

* updateguide_10752

* Update docs/user-guide/widgets.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* 11073_update (geosolutions-it#11107) (geosolutions-it#11187)

* Update User Guide - Configure the light on Cesium map (geosolutions-it#11126) (geosolutions-it#11184)

* update_10844

* Update docs/user-guide/mapstore-toolbars.md

* Update docs/user-guide/mapstore-toolbars.md

* Update docs/user-guide/mapstore-toolbars.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* review_10929 (geosolutions-it#11188)

* Update User Guide - Legend filtering for WMS layers (geosolutions-it#11026) (geosolutions-it#11189)

* updateguide_10740

* review_10740

* Update docs/user-guide/toc.md

---------

Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>

* User Guide - Add User Session plugin section geosolutions-it#11190 (geosolutions-it#11191)

* Set versions of main dependencies (geostore, mapfish, http-proxy) (geosolutions-it#11193)

Co-authored-by: github-actions <github-actions@github.com>

* Fix style parser import of font-awsome (geosolutions-it#11195) (geosolutions-it#11196)

* Version Release 2025.01.00

* Restore java packages to 1.9-SNAPSHOT and update package.json

* geosolutions-it#11153: Persist Swipe Layer state after map refresh (geosolutions-it#11158) (geosolutions-it#11202)

* geosolutions-it#11153: Persist Swipe Layer state after map refresh
- handle save swipe data into mapsave
- handle setting the swipe saved data into swipe state after map config load
- handle detect swipe change for save map
- add unit tests

* resolve review comments include:
- use registerCustomSaveHandler  instead of using basicMapOptionsToSaveSelector to save swipe state

* Update web/client/selectors/swipe.js

---------

Co-authored-by: Suren <dsuren1@gmail.com>

* Revert "geosolutions-it#11153: Persist Swipe Layer state after map refresh (geosolutions-it#11158) (geosolutions-it#11202)" (geosolutions-it#11204)

This reverts commit 644bb7b.

* [Backport to 2025.01.xx][geosolutions-it#11205] MapStore war stand-alone not starting (geosolutions-it#11208)

* [geosolutions-it#11205] MapStore war stand-alone not starting

* Build fix

(cherry picked from commit c2852fd)

* Get rid of duplicate httpclient httpcore 4.4.15 deps

* Fixing failing tests due to timeout (geosolutions-it#11216) (geosolutions-it#11217)

* Removed changelog

* Version Release 2025.01.00

* Submodule sync v2025.01.00 (#46)

* Update db properties and backend port (#37)

* Adding Vulnerability Fixes (#38)

* Updated pom.xml files to fix vulnerabilities

* Updated spring.security.version

* Bump versions for tomcat and cxf-core (#39)

* pom updates

* removing duplicate ip

* fixed port for embedded tomcat

---------

Co-authored-by: Anup Dahal <adahal39@gmail.com>
Co-authored-by: Tobia Di Pisa <tobia.dipisa@geosolutionsgroup.com>
Co-authored-by: Lorenzo Natali <lorenzo.natali@geosolutionsgroup.com>
Co-authored-by: mahmoud adel <58145645+mahmoudadel54@users.noreply.github.com>
Co-authored-by: allyoucanmap <stefano.bovio@geosolutionsgroup.com>
Co-authored-by: Suren <dsuren1@gmail.com>
Co-authored-by: Matteo V. <matteo.velludini@geosolutionsgroup.com>
Co-authored-by: Alessio Fabiani <alessio.fabiani@geosolutionsgroup.com>
Co-authored-by: RowHeat <40065760+rowheat02@users.noreply.github.com>
Co-authored-by: ElenaGallo <56537133+ElenaGallo@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Raul Melara Beckman <101594967+rmelarab-ngs@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Visibility limits on layer are not consistent when switching CRS

5 participants