Метод | Описание | |
---|---|---|
DeserializeGeometry ( Stream stream ) : IGeometry |
Deserializes a geometry from the specified stream.
|
|
DeserializeMultiPoint ( Stream stream ) : MultiPoint |
Deserializes an instance of MapAround.Geometry.MultiPoint from the specified stream.
|
|
DeserializePoint ( Stream stream ) : PointD |
Deserializes an instance of MapAround.Geometry.PointD from the specified stream.
|
|
DeserializePolygon ( Stream stream ) : Polygon |
Deserializes an instance of MapAround.Geometry.Polygon from the specified stream.
|
|
DeserializePolyline ( Stream stream ) : Polyline |
Deserializes an instance of MapAround.Geometry.Polyline from the specified stream.
|
|
SerializeGeometry ( Stream stream, IGeometry geometry ) : void |
Serializes specified geometry into stream.
|
|
SerializeMultiPoint ( Stream stream, MultiPoint multiPoint ) : void |
Serializes an instance of MapAround.Geometry.MultiPoint into stream.
|
|
SerializePoint ( Stream stream, PointD point ) : void |
Serializes an instance of MapAround.Geometry.PointD into stream.
|
|
SerializePolygon ( Stream stream, Polygon polygon ) : void |
Serializes an instance of MapAround.Geometry.Polygon into stream.
|
|
SerializePolyline ( Stream stream, Polyline polyline ) : void |
Serializes an instance of MapAround.Geometry.Polyline into stream.
|
Метод | Описание | |
---|---|---|
readDouble ( Stream stream ) : double | ||
readInt ( Stream stream ) : int | ||
writeDouble ( Stream stream, double value ) : void | ||
writeInt ( Stream stream, int value ) : void |
public static DeserializeGeometry ( Stream stream ) : IGeometry | ||
stream | Stream | A stream containing the geometry |
Результат | IGeometry |
public static DeserializeMultiPoint ( Stream stream ) : MultiPoint | ||
stream | Stream | A stream containing the multipoint geometry |
Результат | MultiPoint |
public static DeserializePoint ( Stream stream ) : PointD | ||
stream | Stream | A stream containing the point geometry |
Результат | PointD |
public static DeserializePolygon ( Stream stream ) : Polygon | ||
stream | Stream | A stream containing the polygon geometry |
Результат | Polygon |
public static DeserializePolyline ( Stream stream ) : Polyline | ||
stream | Stream | A stream containing the polyline geometry |
Результат | Polyline |
public static SerializeGeometry ( Stream stream, IGeometry geometry ) : void | ||
stream | Stream | A stream to write serializing geometry |
geometry | IGeometry | A geometry |
Результат | void |
public static SerializeMultiPoint ( Stream stream, MultiPoint multiPoint ) : void | ||
stream | Stream | A stream to write serializing geometry |
multiPoint | MultiPoint | A multipoint geometry |
Результат | void |
public static SerializePoint ( Stream stream, PointD point ) : void | ||
stream | Stream | A stream to write serializing geometry |
point | PointD | A point geometry |
Результат | void |
public static SerializePolygon ( Stream stream, Polygon polygon ) : void | ||
stream | Stream | A stream to write serializing geometry |
polygon | Polygon | A polygon geometry |
Результат | void |
public static SerializePolyline ( Stream stream, Polyline polyline ) : void | ||
stream | Stream | A stream to write serializing geometry |
polyline | Polyline | A polyline geometry |
Результат | void |