You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can't hardly be called an issue, as it's really minor cosmetic thing, but since I've mentioned it already, here goes...
When having settings.gis.legend = "float" and larger resolutions (mine is 2560 x 1440), the floating legend behaves weirdly when the map is on fullscreen. With developers console enabled (=reduced viewport height, up until window.innerHeight <= 1190) it floats near to the right border, but it's way too far so it cannot be hidden using the » icon, as it just slides slightly to the right but doesn't hide behind the border like it does on small resolutions. But when the window.innerHeight > 1190 the legend jumps to the right out of the window boundary.
I have been able to reproduce the same behavior on both Chrome 64 and Firefox 48 (haven't tried any other)
The text was updated successfully, but these errors were encountered:
trendspotter
changed the title
Floating menu doesn't hide or hides too well on big displays
Floating map legend doesn't hide or hides too well on big displays
Feb 15, 2018
This can't hardly be called an issue, as it's really minor cosmetic thing, but since I've mentioned it already, here goes...
When having
settings.gis.legend = "float"
and larger resolutions (mine is 2560 x 1440), the floating legend behaves weirdly when the map is on fullscreen. With developers console enabled (=reduced viewport height, up untilwindow.innerHeight <= 1190
) it floats near to the right border, but it's way too far so it cannot be hidden using the » icon, as it just slides slightly to the right but doesn't hide behind the border like it does on small resolutions. But when thewindow.innerHeight > 1190
the legend jumps to the right out of the window boundary.I have been able to reproduce the same behavior on both Chrome 64 and Firefox 48 (haven't tried any other)
window.innerHeight == 1190
and$('.map_legend_div').offset() == { top: 454, left: 2345 }
window.innerHeight == 1191
and$('.map_legend_div').offset() == { top: 803, left: 2735 }
The text was updated successfully, but these errors were encountered: