Uses of Class
com.cercalia.sdk.model.snaptoroad.SnapToRoadPoint
Packages that use SnapToRoadPoint
Package
Description
Snap to Road data models.
Core services for interacting with Cercalia APIs.
-
Uses of SnapToRoadPoint in com.cercalia.sdk.model.snaptoroad
Methods in com.cercalia.sdk.model.snaptoroad that return SnapToRoadPointModifier and TypeMethodDescription@NotNull SnapToRoadPointSnapToRoadPoint.Builder.build()Builds the SnapToRoadPoint.static @NotNull SnapToRoadPointSnapToRoadPoint.of(double lat, double lng) Creates a simple point with only coordinates.static @NotNull SnapToRoadPointSnapToRoadPoint.of(double lat, double lng, int speed) Creates a point with coordinates and speed. -
Uses of SnapToRoadPoint in com.cercalia.sdk.services
Method parameters in com.cercalia.sdk.services with type arguments of type SnapToRoadPointModifier and TypeMethodDescription@NotNull SnapToRoadResultSnapToRoadService.match(@NotNull List<SnapToRoadPoint> points, @NotNull SnapToRoadOptions options) Match GPS track points to the road network.@NotNull CompletableFuture<SnapToRoadResult>SnapToRoadService.matchAsync(@NotNull List<SnapToRoadPoint> points, @NotNull SnapToRoadOptions options) Match GPS track points to the road network asynchronously.@NotNull SnapToRoadResultSnapToRoadService.matchSimplified(@NotNull List<SnapToRoadPoint> points, int tolerance) Get a simplified/generalized track matching.@NotNull CompletableFuture<SnapToRoadResult>SnapToRoadService.matchSimplifiedAsync(@NotNull List<SnapToRoadPoint> points, int tolerance) Get a simplified/generalized track matching asynchronously.@NotNull SnapToRoadResultSnapToRoadService.matchWithSpeedingDetection(@NotNull List<SnapToRoadPoint> points, int toleranceKmh) Match GPS track with speed data for violation detection.@NotNull CompletableFuture<SnapToRoadResult>SnapToRoadService.matchWithSpeedingDetectionAsync(@NotNull List<SnapToRoadPoint> points, int toleranceKmh) Match GPS track with speed data for violation detection asynchronously.