Packages

object GeoJson

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GeoJson
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type LineStringCoordinates = Seq[Position]
  2. type PolygonCoordinates = Seq[LineStringCoordinates]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. implicit val formats: Formats
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def makeFeature(geometry: Geometry, properties: (String, Any)*): Feature

    Creates a new GeoJSON Feature.

    Creates a new GeoJSON Feature.

    geometry

    The feature Geometry.

    properties

    Arbitrary properties. For more information about how you can use these properties to customize the look and feel of the feature, see the Data Inspector Library documentation.

    returns

    a new Feature.

  14. def makeLineString(points: Seq[Point]): LineString

    Creates a GeoJSON LineString.

    Creates a GeoJSON LineString.

    points

    The sequence of Points in the LineString.

    returns

    a new LineString.

  15. def makeMultiLineString(lineStrings: Seq[LineString]): MultiLineString

    Creates a GeoJSON MultiLineString.

    Creates a GeoJSON MultiLineString.

    lineStrings

    The sequence of LineStrings in the MultiLineString.

    returns

    a new MultiLineString.

  16. def makeMultiPoint(points: Seq[Point]): MultiPoint

    Creates a GeoJSON MultiPoint.

    Creates a GeoJSON MultiPoint.

    points

    The sequence of Points in the MultiPoint.

    returns

    a new MultiPoint.

  17. def makeMultiPolygon(polygons: Seq[Polygon]): MultiPolygon

    Creates a GeoJSON MultiPolygon.

    Creates a GeoJSON MultiPolygon.

    polygons

    The sequence of Polygons in the MultiPolygon.

    returns

    a new MultiPolygon.

  18. def makePoint(longitude: Double, latitude: Double): Point

    Creates a GeoJSON Point.

    Creates a GeoJSON Point.

    longitude

    Longitude in degrees.

    latitude

    Latitude in degrees.

    returns

    a new Point.

  19. def makePolygon(exteriorRing: LineString, interiorRings: Seq[LineString]): Polygon

    Creates a GeoJSON Polygon

    Creates a GeoJSON Polygon

    exteriorRing

    The exterior ring LineString.

    interiorRings

    The interior ring LineStrings.

    returns

    a new Polygon.

  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped