72 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ##                          ##
 | |
| ##         BlueMap          ##
 | |
| ##      Webapp-Config       ##
 | |
| ##                          ##
 | |
| 
 | |
| # With this setting you can disable the creation and updating of all web-app related files
 | |
| # Default is true
 | |
| enabled: true
 | |
| 
 | |
| # The webroot where the web-application files will be created.
 | |
| # Usually this should be set to the same directory like in the webserver.conf!
 | |
| # Default is "bluemap/web"
 | |
| webroot: "bluemap/web"
 | |
| 
 | |
| # Whether the settings.json of the webapp should be updated/synchronized with the current bluemap settings.
 | |
| # If this is set to "false", bluemap will only add maps to the settings.json but never remove unknown ones or update other settings.
 | |
| # Disabling this is for example useful if you are running multiple bluemap instances on the same webroot and don't want them to overwrite each others maps.
 | |
| # Default is true
 | |
| update-settings-file: true
 | |
| 
 | |
| # If the web-application should use cookies to save the configurations of a user.
 | |
| # Default is true
 | |
| use-cookies: true
 | |
| 
 | |
| # If the free-flight-mode in the web-application is enabled or not.
 | |
| # Default is true
 | |
| enable-free-flight: true
 | |
| 
 | |
| # If the webapp will default to flat-view instead of perspective-view.
 | |
| # Default is false
 | |
| default-to-flat-view: false
 | |
| 
 | |
| # The default map and camera-location where a user will start after opening the webapp.
 | |
| # This is in form of the url-anchor: Open your map in a browser and look at the url, everything after the '#' is the value for this setting.
 | |
| # Default is "no anchor" -> The camera will start with the topmost map and at that map's starting point.
 | |
| #start-location: "world:0:16:-32:390:0.1:0.19:0:0:perspective"
 | |
| 
 | |
| # The minimum (closest) and maximum (furthest) distance (in blocks) that the camera can be from the ground
 | |
| min-zoom-distance: 5
 | |
| max-zoom-distance: 100000
 | |
| 
 | |
| # The default value of the resolution (settings-menu)
 | |
| # Possible values are: 0.5, 1, 2
 | |
| # Default is 1
 | |
| resolution-default: 1
 | |
| 
 | |
| # The min, max and default values of the hires render-distance slider (settings-menu)
 | |
| # The values are in blocks.
 | |
| # Default is max:500 default:100 and min:0
 | |
| hires-slider-max: 500
 | |
| hires-slider-default: 100
 | |
| hires-slider-min: 0
 | |
| 
 | |
| # The min, max and default values of the lowres render-distance slider (settings-menu)
 | |
| # The values are in blocks.
 | |
| # Default is max:7000 default:2000 and min:500
 | |
| lowres-slider-max: 7000
 | |
| lowres-slider-default: 2000
 | |
| lowres-slider-min: 500
 | |
| 
 | |
| # Here you can add URLs to custom scripts (js) so they will be loaded by the webapp
 | |
| # You can place them somewhere in bluemap's webroot and add the (relative) link here
 | |
| scripts: [
 | |
|     #"js/my-custom-script.js"
 | |
| ]
 | |
| 
 | |
| # Here you can add URLs to custom styles (css) so they will be loaded by the webapp
 | |
| # You can place them somewhere in bluemap's webroot and add the (relative) link here
 | |
| styles: [
 | |
|     #"css/my-custom-style.css"
 | |
| ]
 |