AI-generated Key Takeaways
-
Config.StreetscapeGeometryMode describes the behavior of the Geospatial Streetscape Geometry API, which provides polygon meshes of terrain, buildings, and other structures.
-
When enabled, the API may return StreetscapeGeometry objects via Session.getAllTrackables and Frame.getUpdatedTrackables.
-
Enabling Streetscape Geometry requires both StreetscapeGeometry mode and Config.GeospatialMode to be set to ENABLED.
-
The default mode for Streetscape Geometry is DISABLED.
public static final enum
Config.StreetscapeGeometryMode
Describes the behavior of the Geospatial Streetscape Geometry API. The Streetscape Geometry API provides polygon meshes of terrain, buildings, and other structures in a radius surrounding the device. See the Streetscape Geometry Developer Guide for additional information.
When Streetscape Geometry is enabled, Session.getAllTrackables(Class) and Frame.getUpdatedTrackables(Class)} may additionally return StreetscapeGeometry
objects.
The Streetscape Geometry API requires both StreetscapeGeometry to be set to
ENABLED and Config.GeospatialMode to be set to
Config.GeospatialMode.ENABLED.
The default value is DISABLED. Use Config.setStreetscapeGeometryMode(StreetscapeGeometryMode) to set the desired mode.
Inherited Methods
Enum Values
public static final Config.StreetscapeGeometryMode DISABLED
DISABLED
public static final Config.StreetscapeGeometryMode DISABLED
The Streetscape Geometry API is disabled.
This is the default mode.
public static final Config.StreetscapeGeometryMode ENABLED
ENABLED
public static final Config.StreetscapeGeometryMode ENABLED
The Streetscape Geometry API is enabled. Session.getAllTrackables(Class) and Frame.getUpdatedTrackables(Class)} may additionally return StreetscapeGeometry
objects. This mode requires Config.GeospatialMode to be set to Config.GeospatialMode.ENABLED.
Use Config.setStreetscapeGeometryMode(StreetscapeGeometryMode) to set this mode.