@longline/aqua-ui 1.0.57 → 1.0.59
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.
- package/map/Map/Map.js +1 -1
- package/package.json +1 -1
package/map/Map/Map.js
CHANGED
|
@@ -148,7 +148,7 @@ var MapBase = function (props) {
|
|
|
148
148
|
// Pixels with no elevation (i.e. water) will be transparent:
|
|
149
149
|
// < 1: some of sober island's water clipped
|
|
150
150
|
// < 0: nothing is transparent
|
|
151
|
-
if (elevation <
|
|
151
|
+
if (elevation < 0.5) {
|
|
152
152
|
satImageData.data[p] = 0;
|
|
153
153
|
satImageData.data[p + 1] = 0;
|
|
154
154
|
satImageData.data[p + 2] = 0;
|