@aibee/crc-bmap 0.0.77 → 0.0.78
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/lib/bmap.cjs.min.js +1 -1
- package/lib/bmap.cjs.min.js.map +2 -2
- package/lib/bmap.esm.js +1 -6
- package/lib/bmap.esm.js.map +2 -2
- package/lib/bmap.esm.min.js +1 -1
- package/lib/bmap.esm.min.js.map +2 -2
- package/lib/bmap.min.js +1 -1
- package/lib/bmap.min.js.map +2 -2
- package/package.json +1 -1
package/lib/bmap.esm.js
CHANGED
|
@@ -1316,12 +1316,7 @@ var PoiLayer = class extends Layer {
|
|
|
1316
1316
|
return;
|
|
1317
1317
|
}
|
|
1318
1318
|
const valid = range.some((box) => {
|
|
1319
|
-
|
|
1320
|
-
if (xIntersect) {
|
|
1321
|
-
const yIntersect = bottom <= box.bottom && bottom > box.top || top >= box.top && top < box.bottom;
|
|
1322
|
-
return yIntersect;
|
|
1323
|
-
}
|
|
1324
|
-
return false;
|
|
1319
|
+
return box.left < right && box.right > left && box.top < bottom && box.bottom > top;
|
|
1325
1320
|
});
|
|
1326
1321
|
item.parentSetVisible(!valid);
|
|
1327
1322
|
if (!valid) {
|