Skip To Content

Configure a disconnected deployment for the JavaScript Viewer 3.19

Mit der Workflow Manager-Lizenz verfügbar.

When deploying the JavaScript Viewer in a disconnected environment when there is no Internet connection available, or Internet access is prohibited by your organization, referenced sources need to be replaced with sources available locally.

Deployment in disconnected environments

The following need to point to local resources:

  • ArcGIS JavaScript API
  • ArcGIS Services
    • Maps
    • Geometry Service
    • Locator Services
  • Third-party software
Tipp:

For more information on how to configure the resources and services in a disconnected portal, see Configure a disconnected deployment.

ArcGIS JavaScript API

The following steps allow you to determine, download, and modify the version of ArcGIS JavaScript API to be used:

  1. Determine the version of ArcGIS JavaScript API in use by the application from the index.html file.
  2. Download the appropriate version of ArcGIS JavaScript API and deploy it to your web server.
  3. Hinweis:

    If deploying the JavaScript Viewer to Portal for ArcGIS, ArcGIS JavaScript API comes preinstalled at /portal/jsapi/jsapi/. If the version of the JavaScript API is not compatible with the version used in the application's index.html file, then you may need to download and install the appropriate version.

  4. Modify the deployed index.html file and replace the references shown below with locally installed versions.

    Replace the following:

    <link rel="stylesheet" href="//js.arcgis.com/[version]/esri/css/esri.css"> 
    <script type="text/javascript" src="//js.arcgis.com//[version]/"></script>

    With:

    <link rel="stylesheet" href="//[your-server].[domain]/jsapi/esri/css/esri.css"> 
    <script type="text/javascript" src="//[your-server].[domain]/jsapi/"></script>

    Or:

    <link rel="stylesheet" href="//[your-server].[domain]/portal/jsapi/jsapi/esri/css/esri.css"> 
    <script type="text/javascript" src="//[your-server].[domain]/portal/jsapi/jsapi/"></script>

ArcGIS services

Modify the deployed js/app/WorkflowManager/config/AppConfig.js file to reference local services.

Map services

Specifies the properties for the basemap gallery widget for use with your offline maps. The widget only supports tiled map services. The following information allows you to update the map section with your offline maps :

Basemap galleryDescription
map.basemapGallery

Specifies the properties for the basemap gallery widget for use with your offline maps. The widget only supports tiled map services.

For more information on supported types that include tiled base maps, see BasemapLayer class.

  • isEnabled—Specifics whether or not to enable a map gallery for selecting basemaps.
  • showArcGISBasemaps—Set to false since ArcGIS Online basemaps are not available offline.
  • defaultBasemap—Update your custom basemap name.
  • customBasemaps—Update to your local basemap services. Remove streets, hybrid, and topo basemaps that are references to ArcGIS Online services. The following is an example:

    customBasemaps : [
      {
        id: “localbasemap",
        title: "localbasemap",
        layers: [{
          url: "https://[hostname].[domain]/arcgis/rest/services/[localbasemap]/MapServer"
        }],
        thumbnailUrl: "js/widget/gis/BasemapGallery/images/localbasemap.jpg"
      }
    ]

Custom basemapDescription
map.customBasemap

Specifies the properties for a non-tiled map service to be used as the application’s basemap. This configuration is used when the basemap gallery option is unavailable.

  • type—Specifies the type of the non-tiled map service. Supported types include mapimage and imagery.
  • url—Specifies the REST URL of the map service.
  • options.id—Specifies the id of the map service.
  • options.opacity—Specifies the opacity of the map service.
Hinweis:

Other property configurations are available. Refer to the appropriate map service layer configuration for options.

Geometry service

Use geometryServiceURL to update to a local geometry service installed with ArcGIS Server. For example, http://[hostname].[domain]/arcgis/rest/services/Utilities/Geometry/GeometryServer.

Locator services

The default locator service is configured to use ArcGIS Online and is not available for disconnected deployments. You will need to provide your own locator services in a disconnected deployment.

DescriptionLocator service
locatorSources

[your customized locator services]

For more information, see Search widget's sources property.

Third-party software

The JavaScript Viewer uses the online Font Awesome font and css toolkit. You need to download the toolkit and deploy it locally for disconnected environments.

  1. Download Font Awesome version 3.2.1.
  2. Unzip and copy the folder to the deployment directory of your web application, for example, C:\Inetpub\wwwroot\wmviewer\font-awesome\ArcGIS\Portal\apps\workflow\font-awesome.
  3. Modify the deployed index.html file.
  4. Replace the online Font Awesome reference with any of these locations:
    • Replace this:
      <link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css">
    • With:
      <link rel="stylesheet" type="text/css" href="//[hostname].[domain]/wmviewer/workflow/font-awesome/css/font-awesome.css">
    • Or:
      <link rel="stylesheet" type="text/css" href="//[hostname].[domain]/portal/apps/workflow/font-awesome/css/font-awesome.css">