map.html
1.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>简单地图</title>
<script src="../../../../js/jquery-1.8.3.js"></script>
<script src="../../../../common/js/config.js"></script>
<script src="../../../../js/arcgis_js_api/init.js"></script>
<script src="js/widget.js"></script>
<style type="text/css">
html, body {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
#map .esri-ui {
display: none;
}
.esri-view .esri-display-object, .esri-view .esri-bitmap {
position: absolute;
border: none;
margin: 0;
padding: 0;
-webkit-user-drag: none;
-webkit-user-select: none;
}
</style>
</head>
<body>
<div style=" position: absolute; right: 5px; top: 5px; z-index: 99;">
<img id="trigger" src="" style=" width: 50px; ">
</div>
<div id="map" style="height: 250px; max-height: 250px">
</div>
</body>
</html>