001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.data.imagery; 003 004/** 005 * WMTS default layer. 006 * @since 11257 007 */ 008public class WMTSDefaultLayer extends DefaultLayer { 009 private final String tileMatrixSet; 010 011 /** 012 * Constructs a new {@code WMTSDefaultLayer}. 013 * @param layerName layer name 014 * @param tileMatrixSet tile matrix set 015 */ 016 public WMTSDefaultLayer(String layerName, String tileMatrixSet) { 017 super(layerName); 018 this.tileMatrixSet = tileMatrixSet; 019 } 020 021 /** 022 * Returns the tile matrix set. 023 * @return the tile matrix set 024 */ 025 public String getTileMatrixSet() { 026 return tileMatrixSet; 027 } 028}