Packages

case class FeatureCollection extends Product with Serializable

The FeatureCollection is the entry point to create GeoJSON representations.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FeatureCollection
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++(that: FeatureCollection): FeatureCollection
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def arrow[LS](lineString: LS, properties: Properties = Properties.empty, arrowWidthMeters: Double = Feature.DefaultArrowWidth)(implicit arg0: LineStringOperations[LS]): FeatureCollection

    Returns a new feature collection with an arrow added at the end.

    Returns a new feature collection with an arrow added at the end. The arrow is added along the given line string, close to the middle point, in the direction of the provided linestring.

    lineString

    the line to use as a base (e.g the geometry of a vertex)

    properties

    the properties to use for the arrow

    arrowWidthMeters

    the width of the resulting arrow

  6. def arrowRanges[LS, T](lineString: LS, ranges: Seq[RangeBasedProperty[T]], arrowWidthMeters: Double = Feature.DefaultArrowWidth)(properties: (RangeBasedProperty[T]) ⇒ Properties)(implicit arg0: LineStringOperations[LS]): FeatureCollection

    Returns a new feature collection with arrows along the given line string ranges.

    Returns a new feature collection with arrows along the given line string ranges.

    lineString

    the line to use as a base (e.g the geometry of a vertex)

    ranges

    the range based property for which to draw an arrow on the lineString (the arrow will be drawn in the middle of the range)

    arrowWidthMeters

    the width of the resulting arrow,

    properties

    a function to convert each range based attribute into the properties to apply to the corresponding range on the line-string

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def boundingBox[BB](boundingBox: BB, properties: Properties = Properties.empty)(implicit arg0: BoundingBoxOperations[BB]): FeatureCollection

    Returns a new feature collection with the given bounding box and properties added at the end.

    Returns a new feature collection with the given bounding box and properties added at the end.

    boundingBox

    A bounding box type for which com.here.platform.location.core.geospatial.BoundingBoxOperations are defined.

    properties

    Display Properties to use for the line-string

  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def lineString[LS](lineString: LS, properties: Properties = Properties.empty)(implicit arg0: LineStringOperations[LS]): FeatureCollection

    Returns a new feature collection with the given line string and properties added at the end.

    Returns a new feature collection with the given line string and properties added at the end.

    lineString

    A line-string type for which com.here.platform.location.core.geospatial.LineStringOperations are defined.

    properties

    Display Properties to use for the line-string

  15. def lineStringPoints[LS, T](lineString: LS, points: Seq[PointBasedProperty[T]])(properties: (PointBasedProperty[T]) ⇒ Properties)(implicit arg0: LineStringOperations[LS]): FeatureCollection

    Returns a new feature collection with the given points a line string and properties added at the end.

    Returns a new feature collection with the given points a line string and properties added at the end.

    lineString

    the line to use as a base (e.g the geometry of a vertex)

    points

    the point based property to draw on the lineString

    properties

    a function to convert each point based attribute into the properties to apply to the corresponding marker on the line-string

  16. def lineStringRanges[LS, T](lineString: LS, ranges: Seq[RangeBasedProperty[T]])(properties: (RangeBasedProperty[T]) ⇒ Properties)(implicit arg0: LineStringOperations[LS]): FeatureCollection

    Returns a new feature collection with the given ranges on the line string added at the end.

    Returns a new feature collection with the given ranges on the line string added at the end.

    lineString

    the line to use as a base (e.g the geometry of a vertex)

    ranges

    the range based property to draw on the lineString

    properties

    a function to convert each range based attribute into the properties to apply to the corresponding range on the line-string

  17. def markerSymbolImages(markerSymbolImages: MarkerSymbolImages): FeatureCollection

    Returns a new feature collection with a name-map of images appended to the existing ones.

  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def point[GC](coordinate: GC, properties: Properties = Properties.empty)(implicit arg0: GeoCoordinateOperations[GC]): FeatureCollection

    Returns a new feature collection with the given point and properties added at the end.

    Returns a new feature collection with the given point and properties added at the end.

    coordinate

    A coordinate type for which com.here.platform.location.core.geospatial.GeoCoordinateOperations are defined.

    properties

    Display Properties to use for the point marker

  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toJson: String

    Returns the GeoJSON Feature Collection as a String

  24. def toPrettyJson: String

    Returns the GeoJSON Feature Collection as a pretty String

  25. def union(that: FeatureCollection): FeatureCollection
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  29. def write(out: OutputStream): FeatureCollection

    Writes GeoJSON to the given output stream in UTF-8.

  30. def writePretty(out: OutputStream): FeatureCollection

    Writes pretty printed GeoJSON to the given output stream in UTF-8.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped