-
- All Implemented Interfaces:
public final class ViewOptions
ViewOptions
is a data class that holds configuration options related to the rendering engine for an individual map view.
-
-
Field Summary
Fields Modifier and Type Field Description private final Float
maxDeclination
-
Constructor Summary
Constructors Constructor Description ViewOptions(Float maxDeclination)
ViewOptions()
-
Method Summary
Modifier and Type Method Description final Float
getMaxDeclination()
The maximum allowed camera declination angle, in degrees. -
-
Constructor Detail
-
ViewOptions
ViewOptions(Float maxDeclination)
-
ViewOptions
ViewOptions()
-
-
Method Detail
-
getMaxDeclination
final Float getMaxDeclination()
The maximum allowed camera declination angle, in degrees. Declination defines the vertical tilt of the camera. A value of 0f represents a top-down view(aka 2D), while values closer to 70f represent a more angled, ground-level perspective. Valid range: 0f, 70f. Defaults to 51f.
-
-
-
-