ArcGIS API for JavaScript开发的首要步骤就是引入ArcGIS想关的样式文件及开发包,对于此样式文件及开发包的引用有两种形式:在线引用和离线加载。对于一般的示例程序编写,我们只需简单的引入在线的开发包即可,但是在自己开发过程中可能会有引入离线开发包的需求,所以本教程将介绍如何本地部署API文件,具体操作如下:
1 打开“https://developers.arcgis.com/downloads/”网址下载相应版本的API,如下图所示:
2 解压下载好的API文件,然后将相应版本号的文件夹移动到服务器中(IIS或tomcat),本例是将3.24文件移动到IIS,如图:
3 分别将文件夹中的“init.js”及“dojo/dojo.js”文件中的“[HOSTNAME_AND_PATH_TO_JSAPI]”修改为在本地的部署路径“localhost/3.24”,如下图所示:
4 在浏览器分别输入“localhost/3.24/init.js”和“localhost/3.24/esri/css/esri.css”来验证是否配置成功,有如下信息就说明成功:
5 此时文件本地部署成功后,我们就可以引用离线文件来创建地图了,具体的代码如下:
<!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>Simple Map</title>
<link rel="stylesheet" href="http://localhost/3.25/esri/css/esri.css">
<style>
html, body, #map {
height: 100%;
margin: 0;
padding: 0;
}
</style>
<script src="http://localhost/3.25/init.js"></script>
<script>
var map;
require(["esri/map", "dojo/domReady!"], function(Map) {
map = new Map("map", {
basemap: "topo", //For full list of pre-defined basemaps, navigate to http://arcg.is/1JVo6Wd
center: [-122.45, 37.75], // longitude, latitude
zoom: 13
});
});
</script>
</head>
<body>
<div id="map"></div>
</body>
</html>
6 结果如图: