map.html 1.02 KB
<!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>