LocationIssueListener (API Reference)
Package com.here.sdk.location
Interface LocationIssueListener
public interface LocationIssueListener
interface receiving notifications when the set of currently active location issues changes.
Location issues represent unexpected or degraded conditions affecting positioning quality, availability, or functionality. The LocationEngine monitors various positioning subsystems and aggregates detected issues into a unified snapshot delivered via this interface.
- Each callback delivers the complete current set of active issues.
- An empty list indicates all previously reported issues have cleared.
- Issues are transient by design and automatically removed once underlying conditions improve. No explicit clear/dismiss API is provided.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonLocationIssueChanged(List<LocationIssueType> issues) Called when the snapshot of currently active location issues changes.
-
Method Details
-
onLocationIssueChanged
Called when the snapshot of currently active location issues changes.
Invoked whenever the LocationEngine detects a change in the set of active issues, including when all issues clear (empty list). Replace any previously stored issue list with this snapshot.
- Parameters:
issues-Current snapshot of active location issues. Empty list indicates no active issues.
-