We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e2c251 commit 135300fCopy full SHA for 135300f
v180/ex2/tester.js
@@ -1,4 +1,4 @@
1
-// Source: D:\vscode\grid_clusterer\v180\js\ex2\tester.js
+// Source: D:\vscode\grid_clusterer\v190\js\ex2\tester.js
2
class tester {
3
/*
4
---------------------------------------------------------------------
@@ -321,6 +321,13 @@ class tester {
321
this.clusterer.redraw();
322
}
323
324
+ do_test() {
325
+ let zoom_cur;
326
+ let zoom_rnd;
327
+ zoom_cur = this.map.getZoom();
328
+ zoom_rnd = Math.floor(Math.random() * (22 - 0 + 1) + 0);
329
+ this.map.setZoom(zoom_rnd);
330
+ }
331
332
333
Creates a set number of random data points, and creates a new
0 commit comments