package scaladsl
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class Color(value: String) extends Product with Serializable
A color to be used in properties.
A color to be used in properties.
- value
a color in web format (#RRGGBB)
- sealed trait Geometry extends Product with Serializable
- case class GeometryCollection(geometries: Seq[Geometry]) extends Geometry with Product with Serializable
- case class LineString(coordinates: Seq[Seq[Double]]) extends Geometry with Product with Serializable
- case class MultiLineString(coordinates: Seq[Seq[Seq[Double]]]) extends Geometry with Product with Serializable
- case class MultiPoint(coordinates: Seq[Seq[Double]]) extends Geometry with Product with Serializable
- case class MultiPolygon(coordinates: Seq[Seq[Seq[Seq[Double]]]]) extends Geometry with Product with Serializable
- case class Point(coordinates: Seq[Double]) extends Geometry with Product with Serializable
- case class Polygon(coordinates: Seq[Seq[Seq[Double]]]) extends Geometry with Product with Serializable
Value Members
- object Color extends Serializable
- object LineString extends Serializable
- object Point extends Serializable