Skip to content

2.0.0-beta.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@JLyne JLyne released this 29 Jul 22:12
· 969 commits to master since this release

LiveAtlas 2.0 is bringing support for Pl3xmap maps, allowing browsing of Pl3xmap and Dynmap maps within the same UI. Pl3xmap support required significant internal changes to decouple LiveAtlas from Dynmap, so this is an initial beta release to help iron out any bugs that have crept in as a result.

Feedback on this release is appreciated.

Pl3xmap Support

  • Added initial support for Pl3xmap maps.
  • Pl3xmap maps can be added to LiveAtlas by adding an entry to the servers config in index.html, like the following:
    window.liveAtlasConfig = {
        servers: {
            pl3xmap: { //ID used in the URL
                label: 'Pl3xmap', //Label used in the server list
                pl3xmap: '<url to your Pl3xmap installation>'
            },
            // ... Other servers
        }
    // ... Rest of LiveAtlas configuration
  • Map/marker viewing, popups, tooltips and players should all be supported.
  • Marker and tile updates are not implemented at this time, and likely won't be at all until Pl3xmap implements a way to do these incrementally.
  • World icons and player facing direction are also not supported right now.
  • Please report any additional issues you encounter.

Added

  • Players button title now shows current/max players.

Fixed

  • Fixed zoom level in URLs being ignored on initial load (#59).
  • Fixed players layer duplicating in the layer list in certain situations.

Misc

  • Marker labels are now created lazily when showLabels is false for the containing marker set.
    • This should improve performance for showLabels: false marker sets containing many markers.
  • Small performance improvements to shape layers.