Package

com.kodekutters.czml

czmlCustom

Permalink

package czmlCustom

This package implements CustomProperty and its support elements for the CZML custom properties

see: https://github.com/AnalyticalGraphicsInc/cesium/issues/3162

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

Type Members

  1. case class CustomBasic[T](value: T) extends CustomProperty with Product with Serializable

    Permalink

    a custom property for a basic/primitive value or array of such (recursively)

  2. case class CustomInterval(interval: TimeValue, value: Any) extends CustomProperty with Product with Serializable

    Permalink

    a custom property for a time interval and associated value

    a custom property for a time interval and associated value

    interval

    the time interval either a string or a double

    value

    the simple value

  3. case class CustomList(value: List[Any]) extends CustomProperty with Product with Serializable

    Permalink

    a custom property for a List with a value field, e.g.

    a custom property for a List with a value field, e.g. "a-name": { "value": [1,2,3] }

    value

    the List of values

  4. case class CustomMap(value: Map[String, Any]) extends CustomProperty with Product with Serializable

    Permalink

    a custom property map with key=the field name, and value=any object

  5. sealed trait CustomProperty extends AnyRef

    Permalink

Value Members

  1. object CustomBasic extends Serializable

    Permalink
  2. object CustomInterval extends Serializable

    Permalink
  3. object CustomList extends Serializable

    Permalink
  4. object CustomMap extends Serializable

    Permalink
  5. object CustomProperty

    Permalink

    the generic custom property object provides for reading and writing json format

    the generic custom property object provides for reading and writing json format

    Currently there are 4 types of CustomProperty implemented:

    - CustomBasic for String,Int,Double...Array of such recursively - CustomList for a List/Array with a "value" field - CustomInterval for value and time interval - CustomMap for map of (key,value)

Inherited from AnyRef

Inherited from Any

Ungrouped