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.