The instructions below assume that you are installing the ArcGIS JavaScript API library in the following location on an Apache Tomcat Web Server, "http://<myserver>:8080/arcgis_js_api/library/3.10/" where <myserver> is the domain name of your Web site and '8080' is the default Web server port. This port number, of course, can be changed for your instance if you choose to not use this default port. After copying files to your Web server, you will need to edit some files to include the URL to the server and directory that you are planning to install to.
Please go here for instructions on deploying the library on IIS for Windows.
Copy \arcgis_js_api\library and all its contents from the DVD to your Web server. In this example the files are copied to
<apache_tomcat_home>/webapps/arcgis_js_api/library
ArcGIS JSAPI 3.10 contains two builds--a normal build and a compact build. The compact build removes the Dojo Dijit dependancy and minimizes the non-essential ArcGIS JSAPI classes. Please see the documentation for more details.
Your directions may differ depending on your server configuration or Web server, but the process is the same.
Configuration options for normal build:<apache_tomcat_home>\webapps\arcgis_js_api\library\3.10\jsapi\init.js in a text editor and search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]', and replace this text with "<myserver>:8080/arcgis_js_api/library/3.10/jsapi/"<apache_tomcat_home>\webapps\arcgis_js_api\library\3.10\jsapi\dojo\dojo\dojo.js in a text editor and search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]', and replace this text with '<myserver>:8080/arcgis_js_api/library/3.10/jsapi/'<apache_tomcat_home>\webapps\arcgis_js_api\library\3.10\jsapicompact\init.js in a text editor and search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]', and replace this text with "<myserver>:8080/arcgis_js_api/library/3.10/jsapicompact/"<apache_tomcat_home>\webapps\arcgis_js_api\library\3.10\jsapicompact\js\dojo\dojo\dojo.js in a text editor and search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]', and replace this text with '<myserver>:8080/arcgis_js_api/library/3.10/jsapicompact/'Now you should be able to access the ArcGIS JavaScript library from your Web server using the following URL:
http://<myserver>:8080/arcgis_js_api/library/3.10/jsapicompact/
http://<myserver>:8080/arcgis_js_api/library/3.10/jsapi/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Simple Map</title>
<link rel="stylesheet" type="text/css" href="http://<myserver>:8080/arcgis_js_api/library/3.10/jsapi/js/dojo/dijit/themes/tundra/tundra.css">
<link rel="stylesheet" type="text/css" href="http://<myserver>:8080/arcgis_js_api/library/3.10/jsapi/js/esri/css/esri.css" />
<script type="text/javascript" src="http://<myserver>:8080/arcgis_js_api/library/3.10/jsapi/init.js"></script>
<script type="text/javascript">
dojo.require("esri.map");
function init() {
var myMap = new esri.Map("mapDiv");
//note that if you do not have public Internet access then you will need to point this url to your own locally accesible cached service.
var myTiledMapServiceLayer = new esri.layers.ArcGISTiledMapServiceLayer("http://server.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer");
myMap.addLayer(myTiledMapServiceLayer);
}
dojo.addOnLoad(init);
</script>
</head>
<body class="tundra">
<div id="mapDiv" style="width:900px; height:600px; border:1px solid #000;"></div>
</body>
</html>
The Services Directory allows you to view Map and Image services using the JavaScript API. Set the following values in the rest-config.properties file to use the local install:
#JS API URLs jsapi.arcgis=http:///arcgis_js_api/library/3.10/jsapi/ jsapi.arcgis.sdk=http:// /arcgis_js_sdk/sdk/ jsapi.arcgis.css=http:// /arcgis_js_api/library/3.10/jsapi/js/dojo/dijit/themes/tundra/tundra.css
View the Configuring the Rest API help topic for more details.
\arcgis_js_api\sdk and all its contents from the DVD to your Web server. In this example the files are copied to
<apache_tomcat_home>/webapps/arcgis_js_api/sdk