Skip to content

Commit

Permalink
#527 Bugfix: Vector layers with headings/bearings do not toggle on/of…
Browse files Browse the repository at this point in the history
…f based on zoom cutoffs
  • Loading branch information
tariqksoliman committed Apr 10, 2024
1 parent 4075618 commit 8548875
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/essence/Basics/Layers_/Layers_.js
Original file line number Diff line number Diff line change
Expand Up @@ -1219,9 +1219,11 @@ const L_ = {
) {
if (l._path) l._path.style.display = 'inherit'
if (l._container) l._container.style.display = 'inherit'
if (l._icon) l._icon.style.display = 'inherit'
} else {
if (l._path) l._path.style.display = 'none'
if (l._container) l._container.style.display = 'none'
if (l._icon) l._icon.style.display = 'none'
}
},
addArrowToMap: function (
Expand Down

0 comments on commit 8548875

Please sign in to comment.