surprise
2024-01-15 87e98d5b5efeb7a9cf6330ae03e6dd53699b7ef1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport"
        content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
    <title>通视分析</title>
    <link href="../SmartEarthSDK/Workers/layui/css/layui.css" rel="stylesheet" />
    <style>
        html,
        body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
 
        .bnt-box {
            width: 90%;
            margin: auto;
            height: 58px;
            text-align: center;
        }
 
        .bnt-box button {
            margin-top: 10px;
            width: 88px;
        }
    </style>
</head>
 
<body>
    <div class="bnt-box">
        <button type="button" class="layui-btn  layui-btn-normal" onclick="parent.CreateLineOfSight()">绘制</button>
        <button type="button" class="layui-btn  layui-btn-normal" onclick="parent.ClearLineOfSight()">清除</button>
    </div>
    <script>
        // var layer=parent.layer;
        // layer.msg('此功能暂不支持绘制凹多边形!');
    </script>
</body>
 
</html>