Class BoundedByWriter
java.lang.Object
org.gvsig.gpe.prov.gml.writer.v2.geometries.BoundedByWriter
It writes a gml:BoundingShapeType object. Example:
<gml:boundedBy>
<gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
<gml:coord><gml:X>0</gml:X><gml:Y>0</gml:Y></gml:coord>
<gml:coord><gml:X>50</gml:X><gml:Y>50</gml:Y></gml:coord>
</gml:Box>
</gml:boundedBy>
- Author:
- Jorge Piera LLodrĂ¡ (jorge.piera@iver.es)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidend(org.gvsig.xmlpull.lib.api.stream.IXmlStreamWriter writer, GPEGmlWriterHandlerImplementor handler) It writes a gml:BoundedBy end tagvoidstart(org.gvsig.xmlpull.lib.api.stream.IXmlStreamWriter writer, GPEGmlWriterHandlerImplementor handler, String id, ICoordinateSequence coords, String srs) It writes a gml:BoundedBy init tag
-
Constructor Details
-
BoundedByWriter
public BoundedByWriter()
-
-
Method Details
-
start
public void start(org.gvsig.xmlpull.lib.api.stream.IXmlStreamWriter writer, GPEGmlWriterHandlerImplementor handler, String id, ICoordinateSequence coords, String srs) throws IOException It writes a gml:BoundedBy init tag- Parameters:
writer- Writer to write the labelshandler- The writer handler implementor Geometry IDcoords- A coordinates sequencesrs- Spatial reference system- Throws:
IOException
-
end
public void end(org.gvsig.xmlpull.lib.api.stream.IXmlStreamWriter writer, GPEGmlWriterHandlerImplementor handler) throws IOException It writes a gml:BoundedBy end tag- Parameters:
writer- Writer to write the labelshandler- The writer handler implementor- Throws:
IOException
-