MongoDB C++ Driver
legacy-1.1.2
|
Public Member Functions | |
LineString (const BSONObj &bson) | |
LineString constructor. More... | |
LineString (const std::vector< Point< TCoordinates > > &points) | |
LineString constructor. More... | |
virtual BSONObj | toBSON () const |
Obtain a BSON representation of the line string. More... | |
virtual BoundingBox< TCoordinates > | getBoundingBox () const |
Obtain the bounding box surrounding this line string. More... | |
virtual GeoObjType | getType () const |
Get the geometry type of this object. More... | |
std::vector< Point< TCoordinates > > | getPoints () const |
Obtain the points that make up this LineString. More... | |
Additional Inherited Members | |
Static Protected Member Functions inherited from mongo::geo::Geometry< TCoordinates > | |
static BoundingBox< TCoordinates > * | computeBoundingBox (const std::vector< Point< TCoordinates > > &points) |
Compute the bounding box around the given points. More... | |
static BoundingBox< TCoordinates > * | computeBoundingBox (const std::vector< BoundingBox< TCoordinates > > &bboxes) |
Compute the smallest bounding box that contains the given bounding boxes. More... | |
static BoundingBox< TCoordinates > * | parseBoundingBox (const BSONObj &bson) |
Parses the bounding box defined by the given geometry shape, represented in BSON. More... | |
|
explicit |
LineString constructor.
bson | A BSON representation of the line string. |
|
explicit |
LineString constructor.
points | The points that make up the line string. |
|
virtual |
Obtain the bounding box surrounding this line string.
Implements mongo::geo::GeoObj< TCoordinates >.
|
inline |
Obtain the points that make up this LineString.
|
inlinevirtual |
Get the geometry type of this object.
Implements mongo::geo::GeoObj< TCoordinates >.
|
inlinevirtual |
Obtain a BSON representation of the line string.
Implements mongo::geo::GeoObj< TCoordinates >.