001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.imagery.vectortile.mapbox.style;
003
004/**
005 * The scheme used for tiles
006 */
007public enum Scheme {
008    /** Standard slippy map scheme */
009    XYZ,
010    /** OSGeo specification scheme */
011    TMS
012}