wmtconstants.java

来自「OpenMap是一个基于JavaBeansTM的开发工具包。利用OpenMap你」· Java 代码 · 共 154 行

JAVA
154
字号
// **********************************************************************// // <copyright>// //  BBN Technologies//  10 Moulton Street//  Cambridge, MA 02138//  (617) 873-8000// //  Copyright (C) BBNT Solutions LLC. All rights reserved.// // </copyright>// **********************************************************************// // $Source: /cvs/distapps/openmap/src/openmap/com/bbn/openmap/image/WMTConstants.java,v $// $RCSfile: WMTConstants.java,v $// $Revision: 1.1.1.1.2.3 $// $Date: 2007/08/13 16:48:47 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.image;/** * This file contains all the String constants that are defined in the * OpenGIS WMT specification. We are trying to get to a point where we * use all of them. */public interface WMTConstants {    /**     * After WMS version 1.0, use this parameter to identify the     * version     */    public final static String VERSION = "VERSION";    /**     * After WMS version 1.0, use this parameter to identify the service     */    public final static String SERVICE = "SERVICE";    /**     * After WMS version 1.0, use this parameter to identify the feature info     * request     */    public final static String GETMAP = "GetMap";    /**     * After WMS version 1.0, use this parameter to identify the capabilities     * request     */    public final static String GETCAPABILITIES = "GetCapabilities";    /**     * After WMS version 1.0, use this parameter to identify the feature info     * request     */    public final static String GETFEATUREINFO = "GetFeatureInfo";    /**     * WMT Version (WMTVER), floating point industry. Required for WMT     * requests.     */    public final static String WMTVER = "WMTVER";    /** Request (REQUEST) type. Required for WMT requests. */    public final static String REQUEST = "REQUEST";    /**     * Layer list (LAYERS), comma separated layer names. Required for     * WMT requests.     */    public final static String LAYERS = "LAYERS";        /**     * Query Layer list (QUERY_LAYERS), comma separated layer names. Required for     * WMS GetFeatureInfo requests.     */    public final static String QUERY_LAYERS = "QUERY_LAYERS";        /**     * (STYLES) Comma separated list for one rendering style per     * requested layer. Required for WMT requests.     */    public final static String STYLES = "STYLES";    /**     * Spatial Reference System identifier (SRS). Required for WMT     * requests.     */    public final static String SRS = "SRS";    /**     * Coordinate Reference System identifier (CRS). Required for WMS     * GetMap requests.     */    public final static String CRS = "CRS";    /**     * Bounding Box (BBOX) consisting of xmin, ymin, xmax, ymax list,     * in SRS units. Required for WMT requests.     */    public final static String BBOX = "BBOX";    /**     * Pixel height of requested image (HEIGHT). Required for WMT     * requests.     */    public final static String HEIGHT = "HEIGHT";    /**     * Pixel width of requested image (WIDTH). Required for WMT     * requests.     */    public final static String WIDTH = "WIDTH";    /**     * Output format for image (FORMAT). Required for WMT requests.     */    public final static String FORMAT = "FORMAT";        /**     * Output format for GetFeatureInfo request (INFO_FORMAT). Required for WMS     * GetFeatureInfo requests.     */    public final static String INFO_FORMAT = "INFO_FORMAT";        /**     * (TRANSPARENT) true if the background color should be rendered     * as transparent, if the image format supports transparency, or     * false otherwise. Optional for WMT requests.     */    public final static String TRANSPARENT = "TRANSPARENT";    /**     * (BGCOLOR) The hexidecimal RGB value to use for the background     * color, if transparency is not desired or not supported by the     * format type. Default is BGCOLOR=0xFFFFFF. Optional for WMT     * requests.     */    public final static String BGCOLOR = "BGCOLOR";    /**     * (EXCEPTIONS) The format where exceptions are to be reported     * from the map server. Default is EXCEPTIONS=INIMAGE. Optional     * for WMT requests.     */    public final static String EXCEPTIONS = "EXCEPTIONS";    /**     * Keyword (map) for a Map request.     */    public final static String MAP = "map";    /**     * Keyword (capabilites) for a map server capabilities request.     */    public final static String CAPABILITIES = "capabilities";    public final static String IMAGEFORMAT_JPEG = "JPEG";    public final static String IMAGEFORMAT_GIF = "GIF";    public final static String IMAGEFORMAT_PNG = "PNG";    public final static String IMAGEFORMAT_TIFF = "TIFF";    public final static String IMAGEFORMAT_GEOTIFF = "GeoTIFF";    public final static String IMAGEFORMAT_PPM = "PPM";    public final static String IMAGEFORMAT_WBMP = "WBMP";    public final static String IMAGEFORMAT_SVG = "SVG";}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?