Reduced the bounding box when resolving share link

This commit is contained in:
Francesco Mangiacrapa 2022-12-15 15:54:54 +01:00
parent b53fe20a6f
commit 143e79388d
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public class OLMapManager {
geoWidth = (bboxWidth / w) * (16 / 2);
} else {
// data point selection for coordinate loaded from the centroid
geoWidth = (bboxWidth / w) / 20;
geoWidth = (bboxWidth / w) / 60;
GWT.log("geo width: "+geoWidth);
}