Revision 9709 trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/wfs/WFSProtocolHandler.java

View differences:

WFSProtocolHandler.java
55 55
 *
56 56
 * $Id$
57 57
 * $Log$
58
 * Revision 1.8  2006-10-10 12:52:28  jorpiell
58
 * Revision 1.9  2007-01-12 13:09:42  jorpiell
59
 * added searches by area
60
 *
61
 * Revision 1.8  2006/10/10 12:52:28  jorpiell
59 62
 * Soporte para features complejas.
60 63
 *
61 64
 * Revision 1.7  2006/06/21 12:53:03  jorpiell
......
276 279
		if (status.getFilterQuery() != null){
277 280
			req.append("FILTER=" + status.getFilterQuery() + "&");
278 281
		}
282
		if (status.getBBox() != null){
283
			req.append("BBOX=");
284
			req.append(status.getBBox().getMinX() + ",");
285
			req.append(status.getBBox().getMinY() + ",");
286
			req.append(status.getBBox().getMaxX() + ",");
287
			req.append(status.getBBox().getMaxY() + "&");
288
		}
279 289
		req.append("VERSION=").append(getVersion()).append("&EXCEPTIONS=XML");
280 290
		req.append("&MAXFEATURES=").append(status.getBuffer());
281 291
		return req.toString();

Also available in: Unified diff