source: josm/trunk/src/org/openstreetmap/josm/data/imagery/WMTSDefaultLayer.java@ 12659

Last change on this file since 12659 was 11277, checked in by Don-vip, 7 years ago

sonar - fix recently added warnings

File size: 719 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.imagery;
3
4/**
5 * WMTS default layer.
6 * @since 11257
7 */
8public class WMTSDefaultLayer extends DefaultLayer {
9 private final String tileMatrixSet;
10
11 /**
12 * Constructs a new {@code WMTSDefaultLayer}.
13 * @param layerName layer name
14 * @param tileMatrixSet tile matrix set
15 */
16 public WMTSDefaultLayer(String layerName, String tileMatrixSet) {
17 super(layerName);
18 this.tileMatrixSet = tileMatrixSet;
19 }
20
21 /**
22 * Returns the tile matrix set.
23 * @return the tile matrix set
24 */
25 public String getTileMatrixSet() {
26 return tileMatrixSet;
27 }
28}
Note: See TracBrowser for help on using the repository browser.