@fjnorb
then make a pull request to the developer with your wish to implement a argument to define x and y with of the picture limitation.
take a look at this post:
https://forum.magicmirror.builders/topic/986/mmm-globe/25
ask @SvenSommer , maybe he can help you at firt before the pull request is done.
Hey guys,
I was able to cut the white bar by cutting the last pixels (depending on the image size) from this image with adding the following to MMM-Globe.js
getDom: function () {
var wrapper = document.createElement("div");
if (this.config.style == "europeDiscNat") {
wrapper.style.height = 0.98 * this.config.imageSize - 1 + "px";
wrapper.style.overflow = "hidden";
}
var image = document.createElement("img");
Note from admin: Please use Markdown on code snippets for easier reading!