0
This repository has been archived on 2025-04-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Minecraft-Overviewer/web_assets/overviewerConfig.js
2011-04-23 20:21:59 -04:00

47 lines
1.3 KiB
JavaScript

var overviewerConfig = {
//These will probably never change
'CONST': {
'tileSize': 384,
'image': {
'defaultMarker': 'signpost.png',
'signMarker': 'signpost_icon.png',
'compass': 'compass.png',
'spawnMarker': 'http://google-maps-icons.googlecode.com/files/home.png',
'queryMarker': 'http://google-maps-icons.googlecode.com/files/regroup.png'
},
'mapDivId': 'mcmap',
'regionStrokeWeight': 2
},
'map': {
'controls': {
'navigation': true
},
'defaultZoom': 0,
'minZoom': {minzoom},
'maxZoom': {maxzoom},
'center': {spawn_coords},
'cacheMinutes': 0,
'debug': false,
},
'objectGroups': {
'signs': [
{
'label': 'All',
'match': function(sign) {
return true;
}
}
],
'regions': [
{
'label': 'All',
'clickable':true,
'match': function(region) {
return true;
}
}
]
},
'mapTypes': {maptypedata}
};