There 's a wayto modify cfg files to increase the size of the Google Maps window ? Thanks
Hello,
currently there is no way to change google map ("g" key) size or position through cfg file, but you can simply edit
source file of that map. Its easy if you follow next 3 simple steps.
1) Find file "map.html", file should be located in
anteworld_installation_dir / WWW / map.html
2) Open the file with any text editor
3) Go to the end of the file and there should be following javascript code
<script>
(function () {
load();
})();
</script>
Replace it with following code
<script>
(function () {
load();
var width = 800,
height = 600;
window.resizeTo(width, height);
window.moveTo(screen.availWidth - width, screen.availHeight - height);
})();
</script>
This code change will increase map window size to 800 by 600 while maintaining its position in bottom right corner.
You may change width and height variables to change size of the window.
Optionally you may move to other position with window.moveTo.
For example window.moveTo(0, 0) will move window to top left corner of the screen.
Only downside is when you will download newer version I think this file will be restored to the old state so you will have
to repeat the process.
Hope this helps.