@dra2020/baseclient 1.0.45 → 1.0.46
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/dist/baseclient.js +2 -2
- package/dist/baseclient.js.map +1 -1
- package/lib/poly/topo.ts +2 -2
- package/package.json +1 -1
package/dist/baseclient.js
CHANGED
|
@@ -8499,7 +8499,7 @@ function misMatchObject(o1, o2) {
|
|
|
8499
8499
|
return true;
|
|
8500
8500
|
return (o1.type === 'MultiPolygon') ? misMatchMulti(o1.arcs, o2.arcs) : misMatchPoly(o1.arcs, o2.arcs);
|
|
8501
8501
|
}
|
|
8502
|
-
const MAX_TRIES =
|
|
8502
|
+
const MAX_TRIES = 30;
|
|
8503
8503
|
function bigTimeString(ms) {
|
|
8504
8504
|
let seconds = Math.trunc(ms / 1000);
|
|
8505
8505
|
let minutes = Math.trunc(seconds / 60);
|
|
@@ -8522,7 +8522,7 @@ function intpt(f) {
|
|
|
8522
8522
|
}
|
|
8523
8523
|
const DefaultSimplifyOptions = { minArea: 500 };
|
|
8524
8524
|
function log(s) {
|
|
8525
|
-
|
|
8525
|
+
console.log(s);
|
|
8526
8526
|
}
|
|
8527
8527
|
//
|
|
8528
8528
|
// topoSimplifyCollection:
|