{ /* Whether to remember last open browsing position and zoom level for each dimension in every atlas. If disabled, all dimensions and all atlases will be "synchronized" at the same coordinates and zoom level, and map will "follow" player by default. */ "doSaveBrowsingPos": true, // Whether to add local marker for the spot where the player died. "autoDeathMarker": true, // Whether to add global markers for NPC villages. "autoVillageMarkers": false, // Whether to add global markers for Nether Portals. "autoNetherPortalMarkers": true, "doScaleMarkers": false, // Default zoom level. The number corresponds to the size of a block on the map relative to the size of a GUI pixel. Preferrably a power of 2. "defaultScale": 0.5, // Minimum zoom level. The number corresponds to the size of a block on the map relative to the size of a GUI pixel. Preferrably a power of 2. Smaller values may decrease performance! "minScale": 0.03125, // Maximum zoom level. The number corresponds to the size of a block on the map relative to the size of a GUI pixel. Preferrably a power of 2. "maxScale": 4.0, /* If false (by default), then mousewheel up is zoom in, mousewheel down is zoom out. If true, then the direction is reversed. */ "doReverseWheelZoom": false, /* The radius of the area around the player which is scanned by the Atlas at regular intervals. Note that this will not force faraway chunks to load, unless force_chunk_loading is enabled. Lower value gives better performance. */ "scanRadius": 11, /* Force loading of chunks within scan radius even if it exceeds regular chunk loading distance. Enabling this may SEVERELY decrease performance! */ "forceChunkLoading": false, /* Time in seconds between two scans of the area. Higher value gives better performance. */ "newScanInterval": 1.0, /* Whether to rescan chunks in the area that have been previously mapped. This is useful in case of changes in coastline (including small ponds of water and lava), or if land disappears completely (for sky worlds). Disable for better performance. */ "doRescan": true, /* The number of area scans between full rescans. Higher value gives better performance. */ "rescanRate": 4, // The maximum number of markers a particular atlas can hold. "markerLimit": 1024, /* Whether to perform additional scanning to locate small ponds of water or lava. Disable for better performance. */ "doScanPonds": true, /* Whether to perform additional scanning to locate ravines. Disable for better performance. */ "doScanRavines": true, // If true, map render time will be output. "debugRender": false, // If true, all resource pack loading information will be logged during start and reload. "resourcePackLogging": true, /* The size (in GUI pixels) of a map's tile. Note that this will change with Minecraft's GUI scale configuration. When using a small gui scale, the map may look better with a TILE_SIZE of 16 or more. */ "tileSize": 8, /* The size (in GUI pixels) of a marker on the map. Note that this will change with Minecraft's GUI scale configuration. */ "markerSize": 16, // The width (in GUI pixels) of the player's icon. "playerIconWidth": 14, // The height (in GUI pixels) of the player's icon. "playerIconHeight": 16 }