Fix zoom padding
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
parent
0a384a9196
commit
d661e5f3f9
@ -25,10 +25,10 @@ export class ZoomToExtentComponent implements OnChanges {
|
|||||||
let threshold = 40 * rem;
|
let threshold = 40 * rem;
|
||||||
var left = 1 * rem;
|
var left = 1 * rem;
|
||||||
var right = 1 * rem;
|
var right = 1 * rem;
|
||||||
var bottom = Math.round(size[1] / 2);
|
var bottom = Math.round((size[1] / 2) + (4*rem));
|
||||||
var top = 1 * rem;
|
var top = 1 * rem;
|
||||||
if (size[0] > threshold) {
|
if (size[0] > threshold) {
|
||||||
bottom = 3 * rem;
|
bottom = 5 * rem;
|
||||||
left = 23 * rem;
|
left = 23 * rem;
|
||||||
}
|
}
|
||||||
options.padding = [top, right, bottom, left];
|
options.padding = [top, right, bottom, left];
|
||||||
|
Loading…
Reference in New Issue
Block a user