MapRenderMode (API Reference)
Package com.here.sdk.mapview
Enum Class MapRenderMode
- All Implemented Interfaces:
Serializable,Comparable<MapRenderMode>,Constable
Mode of rendering the map by a MapView. Specified by setting MapViewOptions.renderMode
and passing the options object to MapView on creation time.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic MapRenderModeReturns the enum constant of this class with the specified name.static MapRenderMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SURFACE
Map rendering will use
SurfaceView. This offers best performance but can cause graphical glitches in apps with complex, dynamic UI and/or multipleMapViewinstances. -
TEXTURE
Map rendering will use
TextureView. This method has a performance penalty, but makesMapViewbehave like a regular view, supporting view transformations and alpha and avoiding graphical glitches thatSurfaceViewcan suffer from in certain scenarios.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-