blob: eaa2772c7455810605cab8eae263efda4ea804ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version = '1.0' encoding = 'utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function doTest() {
var defaultZoom = {}, allowZoom = {}, minZoom = {}, maxZoom ={}, width = {}, height = {}, autoSize = {};
var windowUtils = window.windowUtils;
windowUtils.getViewportInfo(1, 1, defaultZoom, allowZoom, minZoom, maxZoom, width, height, autoSize);
document.getElementById("minZoom").innerHTML = minZoom.value.toPrecision(10);
document.getElementById("maxZoom").innerHTML = maxZoom.value.toPrecision(10);
}
</script>
</head>
<body onload="doTest();">
MinZoom: <span id="minZoom"></span><br />
MaxZoom: <span id="maxZoom"></span>
</body>
</html>
|