駅すぱあとロゴの位置を変更するサンプルです。このサンプルでは本来の位置より100px上に表示しています。

右下以外(例えば左下)に変更したい場合は、$('.leaflet-control-attribution').parent().removeClass('leaflet-right').addClass('leaflet-left')のように親要素のスタイルも変更する必要があります。

var rosen;

function init() {
  rosen = new Rosen("map", {
    apiKey: "2jr5nchcswemrfjj67jvjaqu", // アクセスキーはサンプル用です。実際にご利用されるときは書き換えてください。
    consoleViewControl: true
  });
}

window.addEventListener('load', init);
.leaflet-control-attribution {
  bottom: 100px !important;
}