Class GeofenceOptions
java.lang.Object
com.cercalia.sdk.model.geofencing.GeofenceOptions
Options for geofencing operations.
Example usage:
GeofenceOptions options = GeofenceOptions.builder()
.shapeSrs("EPSG:4326")
.pointSrs("EPSG:4326")
.build();
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull GeofenceOptions.Builderbuilder()static @NotNull GeofenceOptionsdefaults()@Nullable String@Nullable String
-
Method Details
-
getShapeSrs
- Returns:
- the coordinate system for shape geometries (e.g., "EPSG:4326"), or
nullfor default.
-
getPointSrs
- Returns:
- the coordinate system for point coordinates (e.g., "EPSG:4326"), or
nullfor default.
-
builder
- Returns:
- a new builder for
GeofenceOptions.
-
defaults
- Returns:
- Default
GeofenceOptionswith default coordinate systems.
-