Merge pull request #11395 from mike-000/patch-9

Correct inchesPerMeter and add tests for ScaleBar text
This commit is contained in:
Andreas Hocevar
2020-08-08 14:10:40 +02:00
committed by GitHub
2 changed files with 46 additions and 1 deletions

View File

@@ -468,7 +468,7 @@ class ScaleLine extends Control {
);
const dpi = this.dpi_ || DEFAULT_DPI;
const mpu = this.viewState_.projection.getMetersPerUnit();
const inchesPerMeter = 39.37;
const inchesPerMeter = 1000 / 25.4;
return parseFloat(resolution.toString()) * mpu * inchesPerMeter * dpi;
}