-
-
Notifications
You must be signed in to change notification settings - Fork 37
Installation
The installation process for LiveAtlas varies depending on where you choose to install it.
LiveAtlas will function as a drop-in replacement for a single Dynmap installation on an internal or external webserver, and with a little extra configuration for a Squaremap, Pl3xmap or Overviewer installation. Using an external webserver is highly recommended as it offers the most flexibility and compatibility.
If you don't know which guide to follow, you probably want the internal webserver guide for your chosen map plugin. Overviewer has no internal webserver, so follow the external webserver guide for that.
LiveAtlas is a drop-in replacement for the default Dynmap UI and should work without additional configuration.
-
Extract into the
plugins/dynmap/web
folder on your Minecraft server.The existing index.html should be overwritten.
-
Prevent Dynmap overwriting LiveAtlas' index.html:
- (Dynmap v3.3.2 or newer) Set
update-webpath-files
tofalse
in Dynmap's configuration.txt - (Older versions) Set index.html as read-only.
- (Dynmap v3.3.2 or newer) Set
-
Clear any CDN caches you may have.
If you don't know what this means then don't worry about it.
-
Done.
LiveAtlas by default expects a Dynmap installation, and requires some extra configuration to work with Squaremap or Pl3xmap.
-
Extract into the
plugins/Squaremap/web
orplugins/Pl3xMap/web
folder on your Minecraft server.The existing index.html should be overwritten.
-
Open Squaremap/Pl3xmap's config.yml and set
auto-update
tofalse
.This will prevent LiveAtlas files from being overwritten.
-
Update
window.liveAtlasConfig
in index.html.Update the
servers
config to the below:servers: { pl3xmap: { pl3xmap: window.location.pathname } },
This will configure LiveAtlas to expect a Squaremap or Pl3xmap installation.
-
Remove the
standalone/config.js
<script>
tag from index.htmlThis file is not required for Squaremap or Pl3xmap, and removing this
<script>
will avoid an unnecessary extra request. -
Clear any CDN caches you may have.
If you don't know what this means then don't worry about it.
-
Done.
LiveAtlas is a drop-in replacement for an existing Dynmap installation on an external webserver. Squaremap, Pl3xmap, Overviewer and multiple server support require additional configuration.
-
Follow the Dynmap or Pl3xmap guides for setting up an external server if required.
-
Extract into your webserver root.
Any existing index.html should be overwritten.
-
Configure as required
-
For a single Dynmap installation no additional configuration should be required
-
For a single Squaremap or Pl3xmap installation, continue from step 4 of the Squaremap/Pl3xmap internal webserver installation
-
For a single Overviewer installation, add the following to
window.liveAtlasConfig
in index.html, then continue from step 5 of the Squaremap/Pl3xmap internal webserver installationservers: { overviewer: { overviewer: window.location.pathname } },
-
For configuring multiple servers, see this page
-
-
Clear any CDN caches you may have.
If you don't know what this means then don't worry about it.
-
Done