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
{{ message }}
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
In the case where a source has no visible layers and the visibility of one of the layers is set to VISIBLE, the source tiles are not reloaded because the source is disabled when Style::relayout() is called:
if (source && source->baseImpl->enabled) {
source->baseImpl->reloadTiles();
}
The source is only thereafter enabled in Style::recalculate(). This was added to prevent reloading sources that aren't used: 9127299
This results in layers not appearing visibility is set #7225.
The text was updated successfully, but these errors were encountered:
In the case where a source has no visible layers and the visibility of one of the layers is set to
VISIBLE
, the source tiles are not reloaded because the source is disabled when Style::relayout() is called:The source is only thereafter enabled in Style::recalculate(). This was added to prevent reloading sources that aren't used: 9127299
This results in layers not appearing visibility is set #7225.
The text was updated successfully, but these errors were encountered: