GeofencePlace

public protocol GeofencePlace

Protocol for entities that are known by GeofenceManager

  • The same with Place‘s placeId

    Declaration

    Swift

    var placeId: String { get }
  • The same with Place‘s radius

    Declaration

    Swift

    var radius: Double { get }
  • The same with Place‘s latitude and longitude, only combined in a tuple

    Declaration

    Swift

    var coordinates: CLLocationCoordinate2D? { get }
  • Boolean flag that indicates wether the place is supposed to be notified on entry

    Declaration

    Swift

    var notifyOnEntry: Bool { get }
  • Boolean flag that indicates wether the place is supposed to be notified on exit

    Declaration

    Swift

    var notifyOnExit: Bool { get }