Tags
Creators
Details
5.11-forge
Compatibility
Changes
Highlights / Notes
With Render-Masks it is now possible to limit your map render to all kinds of shapes and perfectly control what you want to be visible on the map, and which regions should remain hidden.
Upgrading from 5.10
- Replace the
bluemap.jar-file with the new one - Delete your
<webroot>/index.htmlto make bluemap update the webapp - You will need to update your map configs!
- Find the section with
min-x,max-x,min-z,max-z,min-yandmax-yin your map config file, e.g.:
and add#min-x: -4000 #max-x: 4000 #min-z: -4000 #max-z: 4000 #min-y: 50 max-y: 90render-mask: [ {before, and] }after the section, e.g. like this:
-> here is a video-examplerender-mask: [ { #min-x: -4000 #max-x: 4000 #min-z: -4000 #max-z: 4000 #min-y: 50 max-y: 90 } ] - Optionally, you can add the new
edge-light-strength: 15property to your map config as well
- Find the section with
Changelog since 5.10
- Added a list of
render-masks to the map-configs, replacing the previousmin-x,max-z, etc.., properties (#81) - Added
edge-light-strengthto the map-configs to control the lighting of map-edges ifrender-edgesis enabled - Custom dimensions are now ordered last by default
- Improved structure and comments of the default map-configs
- Added support for minor pack-versions introduced in Minecraft Snapshot 25w31a
- Fixed lily_pad's having no tint color (#727)
- Fixed error if biomes water-color has alpha (#715)
- Updated bluemap-api to 2.7.5
Full Changelog
https://github.com/BlueMap-Minecraft/BlueMap/releases/tag/v5.11
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:swbUV1cr:MhSuzfg4"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:swbUV1cr:MhSuzfg4"
}

