Using servers.json to Configure Immerse Options

This topic describes how to use the servers.json file to define the default connection behavior in MapD Immerse. It describes how to enable default behavior using servers.json, provides basic syntax, and includes examples. You can define the MapD database to connect to, as well as the username and password. You can also configure Immerse to use additional tile sources for geo charts.

Editing mapd.conf to Enable servers.json

To enable default behavior through a servers.json file, you must first edit mapd.conf to include servers.json information:

  1. In your MAPD_STORAGE directory, open mapd.conf. For information about mapd.conf and available options, see Configuration.
  2. In the [web] section of mapd.conf, reference servers.json by adding the following line:
servers-json = "<MAPD_STORAGE>/servers.json"

Replace <MAPD_STORAGE> with the full path to servers.json.

  1. Save mapd.conf.

servers.json File Properties

Property Description
"database": "<database_name>" The name of the database that Immerse connects to by default.
"username": "<username>" Name of the Immerse user.
"password": "<password>" Immerse user password.
"port": "<port_number>" Port used for connecting to the database host.
"host": "<hostname>" Name of the database host.
"protocol": "<protocol>" Connection protocol to use: http or https.
"url": "<URL>" Universal resource locator. Defines the path to the source database. Can be used as an alternative to identifying host and protocol.
"mapboxCustomStyles": "<[options]>" Specify and use basemap styles other than those provided with Immerse. For more information, see Enable Custom Basemap Styles for Geo Charts.
Note: To connect to the database, Immerse currently uses the protocol that is used to load Immerse, regardless of the protocol specified in url or protocol.

Configuring Data Source and User Login Credentials

You can create a servers.json file to control the default configuration when you log in to MapD Immerse. The information in servers.json can identify the database you connect to and credentials to use during automatic login.

  1. If servers.json does not exist yet, create a file by that name in the MAPD_STORAGE directory.
  2. In servers.json, specify the database to connect to, as well as username and password information. You can use host, port, and protocol to specify the path to the data:
[
   {
          "database": "<database_name>",
          “port”: ”<port_number>”,
          “host”: ”<hostname>”,
          “protocol: ”<protocol>”,
          "username": "<username>",
          "password": "<password>"
        }
]

Alternatively, you can define the data source using a URL:

[
   {
          "database": "<database_name>",
          “url”: ”<URL>”,
          "username": "<username>",
          "password": "<password>"
        }
]
  1. Save servers.json.

Note: If you leave the option values blank, the Immerse login form loads with blank fields.

Enable Custom Basemap Styles for Geo Charts

If you work extensively with geospatial data, you might need to use basemap styles that are different than those provided by Immerse. By modifying servers.json, you can use custom map styles created with Mapbox Studio, as well as third-party OGC-compliant raster tile sources.

To use different basemap styles, add the mapboxCustomStyles property, and then define the source.

Note: Entering a source incorrectly can result in unexpected behavior in the geo charts, or cause Immerse to not load. Make sure that mapboxCustomStyles is an array, and that the objects in the array have label and value properties. To avoid errors, consider using a JSON validator like JSON Lint to make sure the code is correctly formatted before starting Immerse.

The following example syntax shows how to add custom base maps using the mapboxCustomStyles property, in the following order:

  • A custom map style created in Mapbox Studio and hosted on mapbox.com.
  • A basemap style hosted on a Mapbox Atlas Server.
  • A third-party OGC-compliant raster tiles source not affiliated with Mapbox. This source must adhere to the Mapbox Style Specification.
[
  {
        "database": "<database>",
        "password": "<password>",
        "url": "<mapdserver>",
        "port": "<port_number>",
        "username": "<username>",
        "mapboxCustomStyles": [
          {
                "label": "custom-mapbox-studio-source",
                "value": "mapbox://styles/mapd/<mapbox-studio-style-id>"
          },
          {
                "label": "mapbox-atlas-source",
                "value": "http://<domain>:<port>/pages/<style_name>/<style_name>.json"
          },
          {
                "label": "3rd-party-raster-source",
                "value": {
                  "version": 8,
                  "sources": {
                          "openstreetmap": {
                                  "type": "raster",
                                  "tiles": [
                                          "http://a.tile.openstreetmap.org/{z}/{x}/{y}.png",
                                          "http://b.tile.openstreetmap.org/{z}/{x}/{y}.png"
                                  ],
                                  "tileSize": 256
                          }
                  },
                  "layers": [{
                          "id": "openstreetmap",
                          "type": "raster",
                          "source": "openstreetmap",
                          "minzoom": 0,
                          "maxzoom": 22
                  }]
                }
          }
        ]
  }
]