MinimapServer is an open-source re-implementation of xaero96's Minimap API for his popular Xaero's Minimap and Xaero's World Map Minecraft mods.
This library / plugin is not cross-compatible with the original Minimap API, but implements most of the same features, and a nearly-identical networking system.
The public-facing aspect of MinimapServer is contained in two core classes:
Waypoint
- For creating in-world waypointsMinimapAPI
- For sending data to clients
Step 1. Add the RetryLife maven server to your build.gradle
file:
repositories {
maven {
name 'retrylife-release'
url 'https://release.maven.retrylife.ca/'
}
}
Step 2. Add this library as a dependency:
dependencies {
implementation 'ca.retrylife.mc.plugins:minimap-server:0.1.1-1.16.3'
implementation 'ca.retrylife.mc.plugins:minimap-server:0.1.1-1.16.3:sources'
implementation 'ca.retrylife.mc.plugins:minimap-server:0.1.1-1.16.3:javadoc'
}