All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geoserver.wms.WebMapService Maven / Gradle / Ivy

/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
 * This code is licensed under the GPL 2.0 license, availible at the root
 * application directory.
 */
package org.geoserver.wms;

import org.vfny.geoserver.wms.requests.DescribeLayerRequest;
import org.vfny.geoserver.wms.requests.GetFeatureInfoRequest;
import org.vfny.geoserver.wms.requests.GetLegendGraphicRequest;
import org.vfny.geoserver.wms.requests.GetMapRequest;
import org.vfny.geoserver.wms.requests.WMSCapabilitiesRequest;
import org.vfny.geoserver.wms.responses.DescribeLayerResponse;
import org.vfny.geoserver.wms.responses.GetFeatureInfoResponse;
import org.vfny.geoserver.wms.responses.GetLegendGraphicResponse;
import org.vfny.geoserver.wms.responses.GetMapResponse;
import org.vfny.geoserver.wms.responses.WMSCapabilitiesResponse;


/**
 * Web Map Service implementation.
 * 

* Each of the methods on this class corresponds to an operation as defined * by the Web Map Specification. See {@link http://www.opengeospatial.org/standards/wms} * for more details. *

* @author Justin Deoliveira, The Open Planning Project, [email protected] * */ public interface WebMapService { /** * GetCapabilities operation. */ WMSCapabilitiesResponse getCapabilities(WMSCapabilitiesRequest request); WMSCapabilitiesResponse capabilities(WMSCapabilitiesRequest request); /** * GetMap operation. */ GetMapResponse getMap(GetMapRequest request); GetMapResponse map(GetMapRequest request); /** * DescribeLayer operation. */ DescribeLayerResponse describeLayer(DescribeLayerRequest request); /** * GetFeatureInfo operation. */ GetFeatureInfoResponse getFeatureInfo(GetFeatureInfoRequest request); /** * GetLegendGraphic operation. */ GetLegendGraphicResponse getLegendGraphic(GetLegendGraphicRequest request); /** * GetMap reflector */ GetMapResponse reflect(GetMapRequest request); GetMapResponse getMapReflect(GetMapRequest request); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy