Skip to content

Commit da3f9fd

Browse files
Robin BuschmannRobin Buschmann
authored andcommitted
cluster epsilon further adjustment
1 parent 9be7ac2 commit da3f9fd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

services/GeoService.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ export class GeoService {
3434
getEpsilonByZoom(zoom: number) {
3535

3636
if(zoom > 16){
37-
return 0.0007;
37+
return 0.0003;
3838
}
3939

4040
switch (zoom) {
4141
case 16:
42-
return 0.0008;
42+
return 0.0005;
4343
case 15:
44-
return 0.001;
44+
return 0.0008;
4545
case 14:
46-
return 0.0025;
46+
return 0.001;
4747
case 13:
48-
return 0.005;
48+
return 0.0025;
4949
case 12:
5050
return 0.008;
5151
case 11:

0 commit comments

Comments
 (0)