zoukankan      html  css  js  c++  java
  • 本地部署ArcGIS-JS-API

    网上有很多的本地部署ArcGIS API for JavaScript教程。

    我翻译并简单修改了官网的部署教程(API解压后的install.html),整理如下。

    准备工作

    官网下载压缩包,然后解压后放置到要部署的web服务器上,可能是IIS、Tomcat或Nginx。

    修改代码

    1. 打开文件/var/www/html/arcgis_js_api/library/arcgis_js_api/library/4.15/dojo/dojo.js 并检索 [HOSTNAME_AND_PATH_TO_JSAPI], 然后用www.example.com/arcgis_js_api/library/4.15/替换.
    2. 打开文件/var/www/html/arcgis_js_api/library/arcgis_js_api/library/4.15/init.js 并检索 [HOSTNAME_AND_PATH_TO_JSAPI], 然后用www.example.com/arcgis_js_api/library/4.15/替换.

    测试

    现在应该能够从你的web服务器使用以下URL访问ArcGIS API for JavaScript:

    1
    <script src="https://www.example.com/arcgis_js_api/library/4.15/dojo/dojo.js"></script>

    为了测试是否部署成功,可以使用下面的测试页面。

    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
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    <!DOCTYPE html>
    <html>
    <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>Test Map</title>
    <link rel="stylesheet" href="https://www.example.com/arcgis_js_api/library/4.15/dijit/themes/claro/claro.css" />
    <link rel="stylesheet" href="https://www.example.com/arcgis_js_api/library/4.15/esri/themes/light/main.css" />
    <style>
    html,
    body,
    #viewDiv {
    margin: 0;
    padding: 0;
    100%;
    height: 100%;
    }
    </style>
    <script src="https://www.example.com/arcgis_js_api/library/4.15/dojo/dojo.js"></script>
    <script>
    var myMap, view;
    require([
    "esri/Basemap",
    "esri/layers/TileLayer",
    "esri/Map",
    "esri/views/MapView"
    ], function (Basemap, TileLayer, Map, MapView){
    // --------------------------------------------------------------------
    // If you do not have public internet access then use the Basemap class
    // and point this URL to your own locally accessible cached service.
    //
    // Otherwise you can just use one of the named hosted ArcGIS services.
    // https://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer
    // --------------------------------------------------------------------
    var layer = new TileLayer({
    url: "https://www.example.com/arcgis/rest/services/Folder/Custom_Base_Map/MapServer"
    });
    var customBasemap = new Basemap({
    baseLayers: [layer],
    title: "Custom Basemap",
    id: "myBasemap"
    });
    myMap = new Map({
    basemap: customBasemap
    });
    view = new MapView({
    center: [-111.87, 40.57], // long, lat
    container: "viewDiv",
    map: myMap,
    zoom: 6
    });
    });
    </script>
    </head>
    <body class="claro">
    <div id="viewDiv"></div>
    </body>
    </html>

    注意:1. 修改页面中的链接;2. 使用http或https协议,请勿使用file协议访问页面。

    使用HTTP

    如果你希望使用http来使用API,那么在修改代码步骤中,用http代替https,如,

    修改前: baseUrl:"https://www.example.com/arcgis_js_api/library/4.15/dojo"

    修改后: baseUrl:"http://www.example.com/arcgis_js_api/library/4.15/dojo"

    字体跨域

    在开发模式下,可能会出现字体跨域,导致微件上的图标无法显示。下面列举在不同服务器上通过允许跨域来处理。

    IIS

    1. 打开IIS管理器

    2. 选中部署API的网站,找到HTTP响应标头MIME类型

    3. 配置MIME类型
      有下列的类型需要注册:

      extensionMIME/typeDescription
      .ttf application/octet-stream True Type Fonts
      .wasm application/wasm WebAssembly
      .woff application/font-woff Web Open Font Format
      .woff2 application/font-woff2 WOFF File Format 2.0
      .wsv application/octet-stream Supports SceneView‘s stars visualization

      点击MIME类型,右键选择打开功能,然后右键选择添加

    4. 配置HTTP响应标头
      点击HTTP响应标头,右键选择打开功能,然后右键选择添加
      添加名称:Access-Control-Allow-Origin ,值:*

    Tomcat

    修改Tomcat配置文件,安装目录下的conf/web.xml

    按照官网说明<!-- ================== Built In Filter Definitions ===================== -->之后增加一段配置。

    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
    31
    32
    <filter>
    <filter-name>CorsFilter</filter-name>
    <filter-class>org.apache.catalina.filters.CorsFilter</filter-class>
    <init-param>
    <param-name>cors.allowed.origins</param-name>
    <param-value>*</param-value>
    </init-param>
    <init-param>
    <param-name>cors.allowed.methods</param-name>
    <param-value>GET,POST,HEAD,OPTIONS,PUT</param-value>
    </init-param>
    <init-param>
    <param-name>cors.allowed.headers</param-name>
    <param-value>Content-Type,X-Requested-With,accept,Origin,Access-Control-Request-Method,Access-Control-Request-Headers</param-value>
    </init-param>
    <init-param>
    <param-name>cors.exposed.headers</param-name>
    <param-value>Access-Control-Allow-Origin,Access-Control-Allow-Credentials</param-value>
    </init-param>
    <init-param>
    <param-name>cors.support.credentials</param-name>
    <param-value>false</param-value>
    </init-param>
    <init-param>
    <param-name>cors.preflight.maxage</param-name>
    <param-value>10</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>CorsFilter</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>

    注意:当cors.allowed.origins设置为*时,cors.support.credentials不能设置为true。

    Nginx

    修改Nginx配置文件,

    增加一行add_header Access-Control-Allow-Origin *;如,

    1
    2
    3
    4
    5
    location /arcgis/api {
    add_header Access-Control-Allow-Origin *;
    alias C:/Resource/arcgis/api;
    index dojo/dojo.js;
    }
  • 相关阅读:
    快速得到栈、队列的最大值
    原型与原型链
    人家跟你谈生意,你连份明码标价的菜单都拿不出来,有什么资格好撒气的?
    一个坑:java.sql.ResultSet.getInt==》the column value; if the value is SQL NULL, the value returned is 0
    static在实例Extends、Overload中理解
    JVM-ClassLoader(转)
    关于eclipse和javac编译结果不一致的问题的分析与解决 (转)
    蜗牛—JSP学习之JavaBean初识
    ibatis 开发中的经验 (一)ibatis 和hibernate 在开发中的理解
    关于64位Linux配置android开发环境出现 No such file or directory
  • 原文地址:https://www.cnblogs.com/lihaijia/p/14555835.html
Copyright © 2011-2022 走看看