Package net.lucidviews.geoserver.limb.request

Examples of net.lucidviews.geoserver.limb.request.GetFeatureBoundsRequest


public class GetFeatureBoundsKvpReader
{
 
    public GetFeatureBoundsRequest readRequest( Map<String,String> kvp ) throws ParameterValueException
    {
      return read( new GetFeatureBoundsRequest(), kvp );
    }
View Full Code Here


  {
    try
    {
      Map<String,String> kvps = this.requestReader.readKvps( request );
     
      GetFeatureBoundsRequest getFeatureBoundsRequest = this.kvpReader.readRequest( kvps );
     
      Envelope bounds = this.limbService.getFeatureBounds( getFeatureBoundsRequest );
     
      // If an error occurs the servlet engine will use the output stream to write the error message.
      // The message can't be sent back to the browser if the getWriter method has already been called.
View Full Code Here

TOP

Related Classes of net.lucidviews.geoserver.limb.request.GetFeatureBoundsRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.