Don't think it's that. I went down the API, all of them are in line so I don't think it is that. I also made sure to go pluck the Geo 45 off the Wiki page, so I do have it as part of my rolltable. Like I mentioned before, if you want to come into my campaign, I can bump you to go Co GM and you could maybe take a look at it yourself. The API also has the   placeTile = function(name, l, t, spin) {
    obj = _.find(geomorphicTilesArray, function(obj) {
        return obj.tileName == name;
    });
    var left = l * 840 + 420;
    var top = t * 840 + 420;
    var url = obj.tileURL;
    var r = spin;
    marker = createObj("graphic", {
        _type: "graphic",
        _subtype: "token",
        _pageid: geomorphicMapId,
        layer: "map",
        width: 840,
        height: 840,
        left: left,
        top: top,
        imgsrc: url,
        rotation: r,
        sides: sideString,
        currentSide: obj.side
    });
    marker = fixNewObject(marker);
};
//--Utility Functionvar 
fixNewObject = fixNewObject || function(obj) {
    var p = obj.changed._fbpath;
    var new_p = p.replace(/([^\/]*\/){4}/, "/");
    obj.fbpath = new_p;
    return obj;
};
 That you posted on the third page, still not getting anything to work proper.