立即注册 登录
气象家园 返回首页

15195775117的个人空间 http://bbs.06climate.com/?43007 [收藏] [复制] [分享] [RSS]

日志

高德地图API之比例尺、缩放条

已有 51 次阅读2019-11-20 11:44 |个人分类:高德地图API

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
    <title>带功能控件的地图</title>
    <link rel="stylesheet" href="https://a.amap.com/jsapi_demos/static/demo-center/css/demo-center.css" />
    <script src="https://cache.amap.com/lbs/static/es5.min.js"></script>
    <script src="https://webapi.amap.com/maps?v=1.4.15&key=您申请的key值&&plugin=AMap.Scale,AMap.OverView,AMap.ToolBar"></script>
    
    <style>
        html, body {
            height: 100%;
        }
        #container {
            height: 100%;
        }
        .input-card {
            width: 150px;
            top: 10px;
            bottom: auto;
        }
    </style>
</head>
<body>
<div id="container">

<script>
    var scale = new AMap.Scale({
        visible: true
    }),
    toolBar = new AMap.ToolBar({
        visible: true
    }),
    overView = new AMap.OverView({
        visible: true
    }),
    map = new AMap.Map("container", {
        resizeEnable: true
    });

    map.addControl(scale);
    map.addControl(toolBar);
    map.addControl(overView);

</script>
</body>
</html>

评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 立即注册

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

返回顶部