001/*
002 * cilla - Blog Management System
003 *
004 * Copyright (C) 2012 Richard "Shred" Körber
005 *   http://cilla.shredzone.org
006 *
007 * This program is free software: you can redistribute it and/or modify
008 * it under the terms of the GNU Affero General Public License as published
009 * by the Free Software Foundation, either version 3 of the License, or
010 * (at your option) any later version.
011 *
012 * This program is distributed in the hope that it will be useful,
013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
015 * GNU General Public License for more details.
016 *
017 * You should have received a copy of the GNU Affero General Public License
018 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
019 */
020package org.shredzone.cilla.web.map;
021
022/**
023 * Enumeration of available map types.
024 * <p>
025 * Note that some {@link MapService} implementations may not support all types. If a type
026 * is not supported by the implementation, it should fall back to a supported type that is
027 * as close as possible to the desired result.
028 *
029 * @author Richard "Shred" Körber
030 */
031public enum MapType {
032
033    /**
034     * Plain roadmap. Should be supported by all {@link MapService} implementation.
035     */
036    ROADMAP,
037
038    /**
039     * Satellite view.
040     */
041    SATELLITE;
042
043}