http://yqy9527.tyblog.com/index.shtml
 
博 客 公 告
登 录 后 台
时 间 记 忆
<<  < 2016 - 11 >  >>
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
最 新 相 片
最 新 日 志
最 新 回 复
留 言 信 息
我 的 好 友

我 的 圈 子

友 情 链 接




博 客 信 息
 
arggis鹰眼
[ 2016-11-14 13:57:00 | By: 指尖上的世界 ]
 
 
<!DOCTYPE html>  
<html>  
  <head>  
    < http-equiv="Content-Type" content="text/html; charset=utf-8">  
    < http-equiv="X-UA-Compatible" content="IE=7,IE=9">  
    <!--The viewport tag is used to improve the presentation and behavior of the samples on iOS devices-->  
    < name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no">  
    <title>Overview Map</title>  
    <link rel="stylesheet" href="http://serverapi.arcgisonline.com/jsapi/arcgis/3.3/js/dojo/dijit/themes/claro/claro.css">  
    <link rel="stylesheet" href="http://serverapi.arcgisonline.com/jsapi/arcgis/3.3/js/esri/css/esri.css">  
    <style>  
      html, body { height: 100%; width: 100%; margin: 0; padding: 0; }  
    </style>  
  
    <***>  
        var dojoConfig = {   
            parse: true   
        };  
       
    </***>  
    <*** src="http://serverapi.arcgisonline.com/jsapi/arcgis/3.3/"></***>  
    <***>  
        // 导入必要包  
      dojo.require("dijit.layout.BorderContainer");  
      dojo.require("dijit.layout.ContentPane");  
      dojo.require("esri.map");  
      dojo.require("esri.dijit.OverviewMap");  
      var map;  
  
      init() {  
        map = new esri.Map("map", {  
          basemap: "topo", // 指定的地图底图.有效选项:"streets","satellite","hybrid","topo","gray","oceans","national-geographic","osm".  
          center: [-122.445, 37.752],   // 居中的经纬度  
          zoom: 14  // 缩放深度级别  
        });  
        dojo.connect(map, "", (theMap) {  
          // 添加概览地图  
          var overviewMapDijit = new esri.dijit.OverviewMap({  
            map: map,   // 必要的  
            visible: true,  // 初始化可见,默认为false  
            attachTo: "bottom-right",   // 默认右上角  
            width: 200, // 默认值是地图高度的 1/4th  
            height: 200, // 默认值是地图高度的 1/4th   
            opacity: .40,    // 透明度 默认0.5  
            maximizeButton: true,   // 最大化,最小化按钮,默认false  
            expandFactor: 3,    //概览地图和总览图上显示的程度矩形的大小之间的比例。默认值是2,这意味着概览地图将至少是两倍的大小的程度矩形。  
            color: "red"    // 默认颜色为#000000  
          });  
          overviewMapDijit.startup();   // 开启  
        }); 
        
      }  
  
      dojo.ready(init);  
    </***>  
  </head>  
    
  <body class="claro">  
    <div data-dojo-type="dijit.layout.BorderContainer"   
         data-dojo-props="design:'headline', gutters:false"   
         style="width: 100%; height: 100%; margin:0;">  
  
      <div id="map"   
           data-dojo-type="dijit.layout.ContentPane"   
           data-dojo-props="region:'center'"   
           style="padding:0">  
      </div>  
    </div>  
  </body>  
</html
 
  • 标签:鹰眼代码实例 
    发表评论:
    Powered By 天涯博客 CopyRight 2007-2008, www.tyblog.com
    天涯博客欢迎您!