63 lines
1.8 KiB
HTML
63 lines
1.8 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<!--强制HTTPS请求-->
|
|
<!--<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">-->
|
|
<meta name="viewport" content="
|
|
width=device-width,
|
|
initial-scale=1.0,
|
|
minimum-scale=1.0,
|
|
maximum-scale=1.0,
|
|
viewport-fit=cover,
|
|
user-scalable=no">
|
|
<link rel="icon" href="./favicon.ico">
|
|
<link rel='stylesheet' href='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-draw/v1.0.9/mapbox-gl-draw.css'
|
|
type='text/css' />
|
|
<script type="text/javascript" src="./lib/Cesium/Cesium.js"></script>
|
|
<script type="text/javascript" src="./lib/mars3d/mars3d.js"></script>
|
|
<link rel='stylesheet' type='text/css' href="./lib/mars3d/mars3d.css" />
|
|
<link rel='stylesheet' type='text/css' href="./lib/Cesium/Widgets/widgets.css" />
|
|
<title>沂水县森林防灭火数据管理系统</title>
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="js/shp.min.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<noscript>
|
|
<strong>ERROR</strong>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<style>
|
|
body {
|
|
transform-origin: left top;
|
|
}
|
|
</style>
|
|
</body>
|
|
|
|
<script>
|
|
fnResize();
|
|
|
|
function fnResize() {
|
|
let wW = document.body.clientWidth;
|
|
let rem = wW / 1920;
|
|
document.body.style.transform = "scale(" + rem + ")";
|
|
}
|
|
|
|
function checkFull() {
|
|
var fullScreen = parent.document.webkitIsFullScreen || parent.document.fullscreen || parent.document.mozFullScreen || parent.document.msFullscreenElement;
|
|
if (fullScreen === undefined) {
|
|
fullScreen = false;
|
|
}
|
|
return fullScreen;
|
|
}
|
|
window.onresize = function () {
|
|
fnResize();
|
|
}
|
|
|
|
</script>
|
|
|
|
</html> |