Creat New Map

来源:互联网 发布:cntv网络电视台 编辑:程序博客网 时间:2024/06/06 12:30
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"><title>MapView 2D map</title>    <link href="css/map.css" rel="stylesheet" type="text/css" />    <link rel="stylesheet" href="https://js.arcgis.com/4.2/esri/css/main.css">    <script src="https://js.arcgis.com/4.2/"></script><script>    require([      "esri/Map",//创建地图所需要的类      "esri/views/MapView",      "dojo/domReady!"//加载dojo框架    ], function (Map, MapView) {        var myMap = new Map({            basemap: "topo",ground:"world-elevation"        });        var view = new MapView({            container: "viewDiv",  // Reference to the scene div created in step 5            map: myMap,  // Reference to the map object created before the scene            zoom: 5,  // Sets the zoom level based on level of detail (LOD)            center: [105,35]  // Sets the center point of view in lon/lat        });    });</script></head><body>  <div id="viewDiv" style="height:640px; width:1349px"></div></body></html>

0 0
原创粉丝点击