Views
Maps Package API Reference Guide
Product Documentation:
Views Documentation Home
List of all members | Public Member Functions
IlvMapMultiPoint Class Reference

This class defines a multipoint, which is a collection of points. More...

#include <ilviews/maps/geometry/geompoint.h>

Inheritance diagram for IlvMapMultiPoint:
IlvMapGeometry

Public Member Functions

 IlvMapMultiPoint ()
 Initializes a new, empty, IlvMapMultiPoint instance.
 
 IlvMapMultiPoint (const IlvMapMultiPoint &source)
 Initializes a new multipoint by copying an existing one. More...
 
void addPoint (const IlvCoordinate &c)
 Adds a coordinate at the end of the multipoint. More...
 
virtual IlvMapGeometrycopy () const
 Returns a copy of the object. More...
 
virtual IlvClassInfogetClassInfo () const
 Returns the IlvClassInfo of the instance. More...
 
const IlvCoordinategetPoint (IlUInt index) const
 Returns the coordinate at a specified index. More...
 
IlUInt getPointCount () const
 Returns the number of points in the multipoint. More...
 
virtual const IlvMapGeometrygetSubElement (IlUInt) const
 Returns a sub element of a collection geometry. More...
 
virtual IlUInt getSubElementCount () const
 Returns the number of elements contained in the geometry if the geometry is a collection. More...
 
virtual IlBoolean isCollection () const
 Checks if this geometry is a collection of other geometries. More...
 
void removeAll ()
 Removes all the coordinates from the multipoint.
 

Additional Inherited Members

- Static Public Member Functions inherited from IlvMapGeometry
static IlvClassInfoClassInfo ()
 Returns the class info. More...
 
- Protected Member Functions inherited from IlvMapGeometry
 IlvMapGeometry ()
 Constructor. More...
 

Detailed Description

This class defines a multipoint, which is a collection of points.

Library: ilvmaps

The instances of this class can be rendered by an IlvDefaultFeatureRenderer.

Constructor & Destructor Documentation

◆ IlvMapMultiPoint()

IlvMapMultiPoint::IlvMapMultiPoint ( const IlvMapMultiPoint source)

Initializes a new multipoint by copying an existing one.

Parameters
sourceThe source multipoint.

Member Function Documentation

◆ addPoint()

void IlvMapMultiPoint::addPoint ( const IlvCoordinate c)

Adds a coordinate at the end of the multipoint.

Parameters
cThe coordinate.

◆ copy()

virtual IlvMapGeometry* IlvMapMultiPoint::copy ( ) const
virtual

Returns a copy of the object.

Returns
An IlvMapGeometry that must be deleted by the user.

Implements IlvMapGeometry.

◆ getClassInfo()

virtual IlvClassInfo* IlvMapMultiPoint::getClassInfo ( ) const
virtual

Returns the IlvClassInfo of the instance.

Returns
An IlvClassInfo that should not be modified nor deleted.

Implements IlvMapGeometry.

◆ getPoint()

const IlvCoordinate& IlvMapMultiPoint::getPoint ( IlUInt  index) const

Returns the coordinate at a specified index.

Parameters
indexThe index.
Returns
The coordinate of the specified index.

◆ getPointCount()

IlUInt IlvMapMultiPoint::getPointCount ( ) const

Returns the number of points in the multipoint.

Returns
The number of points in the multipoint.

◆ getSubElement()

virtual const IlvMapGeometry* IlvMapMultiPoint::getSubElement ( IlUInt  index) const
virtual

Returns a sub element of a collection geometry.

Parameters
indexThe index of the sub-geometry to be retrieved.
Returns
The sub element of index index if the geometry is a collection or 0 if it is not.

Implements IlvMapGeometry.

◆ getSubElementCount()

virtual IlUInt IlvMapMultiPoint::getSubElementCount ( ) const
virtual

Returns the number of elements contained in the geometry if the geometry is a collection.

Returns
The number of elements contained in the geometry if the geometry is a collection. If it is not, this method returns 0.

Implements IlvMapGeometry.

◆ isCollection()

virtual IlBoolean IlvMapMultiPoint::isCollection ( ) const
virtual

Checks if this geometry is a collection of other geometries.

The composite geometries predefined in Rogue Wave Views Maps are: IlvMapGeometryCollection, IlvMapMultiPoint, IlvMapSegmentString and its subclasses, IlvMapMultiCurve and IlvMapMultiArea.

Returns
IlTrue if the geometry is a collection of other geometries.

Implements IlvMapGeometry.