trait TileLoader[+T] extends DataLoader[TileId, T]
Loads tile data.
- T
The tile data type
- Annotations
- @deprecated
- Deprecated
(Since version SDK 2.54) Use methods based on OptimizedMapLayers instead.
- Alphabetic
- By Inheritance
- TileLoader
- DataLoader
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def catalogHrn: HRN
- Definition Classes
- DataLoader
- abstract def catalogVersion: Long
- Definition Classes
- DataLoader
- abstract def get(tileId: TileId): Option[T]
Gets data for a single
tileId.Gets data for a single
tileId.- tileId
The tile ID to retrieve the data for
- returns
The data of the successfully loaded tile, or None
- Definition Classes
- TileLoader → DataLoader
- abstract def getAll(tileIds: Iterable[TileId]): Iterable[(TileId, Option[T])]
Gets data for
tileIds.Gets data for
tileIds.- tileIds
The tile IDs to retrieve the data for
- returns
The data associated with the successfully loaded tiles, or None
- Definition Classes
- TileLoader → DataLoader
- abstract def layerName: String
- Definition Classes
- DataLoader
- abstract def partitionIds: Iterator[TileId]
Gets the tile IDs available from this loader.
Gets the tile IDs available from this loader.
This will only return tile IDs for which the com.here.platform.location.dataloader.core.TileLoader#get method will return a non-empty value.
Whereas the com.here.platform.location.inmemory.geospatial.TileResolver can be used to determine all of the tile IDs that cover a certain area of the earth (or even the whole earth), it does not know which tiles actually have data. This method allows you to discover tiles that actually contain data.
E.g. a data loader for a layer containing information related to the road network will probably have data for tiles covering large cities, but not for tiles in the middle of the ocean.
- Definition Classes
- TileLoader → DataLoader
- abstract def partitioning: LayerPartitioning
- Definition Classes
- DataLoader
- abstract def resolver: TileResolver
A resolver for com.here.platform.location.inmemory.geospatial.TileIds that can be used with this com.here.platform.location.dataloader.core.TileLoader.
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)