@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/lib/poly/topo.ts
CHANGED
|
@@ -184,7 +184,7 @@ function misMatchObject(o1: any, o2: any): boolean
|
|
|
184
184
|
return (o1.type === 'MultiPolygon') ? misMatchMulti(o1.arcs, o2.arcs) : misMatchPoly(o1.arcs, o2.arcs);
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
-
const MAX_TRIES =
|
|
187
|
+
const MAX_TRIES = 30;
|
|
188
188
|
|
|
189
189
|
function bigTimeString(ms: number): string
|
|
190
190
|
{
|
|
@@ -221,7 +221,7 @@ const DefaultSimplifyOptions: SimplifyOptions = { minArea: 500 };
|
|
|
221
221
|
|
|
222
222
|
function log(s: string): void
|
|
223
223
|
{
|
|
224
|
-
|
|
224
|
+
console.log(s);
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
//
|