//
// カスタムレイヤー
//
function CustomeTileLayer() {
  // GTileLayerを継承
  GTileLayer.apply(this, arguments);
}

CustomeTileLayer.prototype = new GTileLayer();

// タイル画像のベースURL
CustomeTileLayer.prototype.dir;

// タイル画像の拡張子
CustomeTileLayer.prototype.ext;

// 透明度
CustomeTileLayer.prototype.getOpacity = function(copyrights, minResolution, maxResolution) {
  return 1.0;
}

// PNG画像かどうか
CustomeTileLayer.prototype.isPng = function(copyrights, minResolution, maxResolution) {
  return false;
}

// タイル画像を返す関数
CustomeTileLayer.prototype.getTileUrl = function(tile, zoom) {
    return this.dir + "/" + zoom + "/" + tile.x + "_" + tile.y + "." + this.ext;
}


