首页 > 移动平台 > 详细

first application

时间:2015-04-09 23:30:38      阅读:158      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
<head>
  <title>Create a Map</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no">
  <link rel="stylesheet" href="http://js.arcgis.com/3.13/dijit/themes/claro/claro.css">
  <link rel="stylesheet" href="http://js.arcgis.com/3.13/esri/css/esri.css">
  <style>
    html, body, #mapDiv{
      padding: 0;
      margin: 0;
      height: 100%;
    }
  </style>
  
  <script src="http://js.arcgis.com/3.13/"></script>
  <script>
    var map;
    require(["esri/map", "dojo/domReady!"], function(Map) {
      map = new Map("mapDiv", {
        center: [-56.049, 38.485],
        zoom: 3,
        basemap: "streets"
      });
    });
    //basemap:"satellite", "hybrid", "topo", "gray", "oceans", "osm", "national-geographic"
  </script>

</head>
<body class="claro">
  <div id="mapDiv"></div>
</body>
</html>

https://developers.arcgis.com/javascript/jshelp/intro_firstmap_amd.html

 

first application

原文:http://www.cnblogs.com/tiandi/p/4412623.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!