@artstesh/maps 9.1.1 → 9.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1843,7 +1843,7 @@ class OsmTileLayerComponent extends DestructibleComponent {
1843
1843
  this.initLayer();
1844
1844
  }
1845
1845
  set opacity(value) {
1846
- if (!value || this._opacity === value)
1846
+ if (value == null || this._opacity === value)
1847
1847
  return;
1848
1848
  this._opacity = value;
1849
1849
  this.initLayer();