zoukankan      html  css  js  c++  java
  • ArcGIS API for javascript Bookmarks(书签)示例2

    1、运行效果图

    说明:这篇博文介绍的书签位于地图之上

              有关博文中引用的API文件 怎么iis上部署,请参考我前面的博文 

    2、HTML代码

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
    <title>Bookmark Widget (Editable)</title>
    <link rel="stylesheet" type="text/css" href="http://localhost/arcgis_js_api/library/3.3/jsapi/js/dojo/dijit/themes/nihilo/nihilo.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost/arcgis_js_api/library/3.3/jsapi/js/esri/css/esri.css" />
         <style>
          html, body, #map {
            height: 100%;
            margin: 0;
            padding: 0;
          }
          .bookmark-container {
            position: absolute;
            top: 100px;
            left: 15px;
            padding: 1rem;
            background: #ffffff;
            border-radius: 4px;
            border: 1px solid #eeeeee;
          }
        </style>
           <script>
               var dojoConfig = {
                   parseOnLoad: true     // 解析
               };
        </script>
           <script type="text/Javascript" src="http://localhost/arcgis_js_api/library/3.3/jsapi/init.js"></script>
          <script>
              // 导入包
              dojo.require("dijit.layout.BorderContainer");
              dojo.require("dijit.layout.ContentPane");
              dojo.require("dijit.form.DropDownButton");
              dojo.require("esri.map");
              dojo.require("esri.dijit.Bookmarks");
              var map, bookmarks;
              function init() {
               
                  map = new esri.Map("map", { center: [-100, 40], zoom: 4 });
                  MyTiledMapServiceLayer = new esri.layers.ArcGISTiledMapServiceLayer
                  ("http://localhost/arcgis/rest/services/DZDT2012/MapServer");
                  map.addLayer(MyTiledMapServiceLayer);
    
                  // 书签可以被指定为一个数组对象结构:
                  // { extent: <esri.geometry.Extent>, name: <some string> }
                  var bookmarks_list = [
                     ];
                  // 创建书签组件
                  bookmarks = new esri.dijit.Bookmarks({
                      map: map,
                      editable: true,    // 可允许编辑。默认false则只读模式
                      bookmarks: bookmarks_list        // Array / JSON
                  }, dojo.byId('bookmarks'));
    
          
                  // Add bookmarks to the widget
                  Object.keys(bookmarks_list).forEach(function (bookmark) {
                      bookmarks.addBookmark(bookmarkJSON[bookmark]);    
                  });
                  // 绑定移除标签事件
                  dojo.connect(bookmarks, "onRemove", function () {
                      alert('删除成功');
                  });
              }
              // 加载时显示
              dojo.ready(init);
        </script>
    </head>
      <body class="nihilo">
        <div id="map"></div>
        <div class="bookmark-container">
          <div id="bookmarks"></div>
        </div>
      </body>
    </html>

    其中的代码

     map = new esri.Map("map", { center: [-100, 40], zoom: 4 });
                  MyTiledMapServiceLayer = new esri.layers.ArcGISTiledMapServiceLayer
                  ("http://localhost/arcgis/rest/services/DZDT2012/MapServer");
                  map.addLayer(MyTiledMapServiceLayer);

    还可以替换为下面的形式:

    map = new esri.Map("map", {
    basemap: "topo",
    center: [-100, 40],
    zoom: 4
    });

  • 相关阅读:
    pat 1044 Shopping in Mars
    PAT1017 Queueing at Bank
    PAT1023 Have Fun with Numbers
    PAT1020
    谈谈软件测试职业规划
    测试工程师的一些思考
    浅谈性能测试
    软件测试价值提升之路- 第三章"拦截缺陷 "读书笔记
    软件测试价值提升之路- 第二章"价值实现的起点"读书笔记
    UI 自动化框架设想
  • 原文地址:https://www.cnblogs.com/net064/p/10308864.html
Copyright © 2011-2022 走看看