public class

VDARNearbyGPSManager

extends Object
implements VDARLocalizationManagerEventReceiver
java.lang.Object
   ↳ com.vidinoti.android.vdarsdk.VDARNearbyGPSManager

Summary

Constants
String TAG
Public Constructors
VDARNearbyGPSManager()
Public Methods
void onLocalizationUpdate(float longitude, float latitude, float searchDistance)
Is called when a localization update has occurred within VDARSDK.
void registerEventReceiver(VDARNearbyGPSManagerEventReceiver receiver)
void startNearbyGPSDetection(long minGPSIntervalMS, float minGPSDistance, int detectionInterval, float maxDetectionRadius)
void startNearbyGPSDetection()
void stopNearbyGPSDetection()
void unregisterEventReceiver(VDARNearbyGPSManagerEventReceiver receiver)
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.vidinoti.android.vdarsdk.VDARLocalizationManagerEventReceiver

Constants

public static final String TAG

Constant Value: "VDARNearbyGPSManager"

Public Constructors

public VDARNearbyGPSManager ()

Public Methods

public void onLocalizationUpdate (float longitude, float latitude, float searchDistance)

Is called when a localization update has occurred within VDARSDK.

It can be either a localization update based on GPS or based on surrounding networks (e.g. wireless).

Parameters
longitude The longitude of the position on earth in WGS84 format, in degree.
latitude The latitude of the position on earth in WGS84 format, in degree.
searchDistance Search radius for the AR Models in meters.

public void registerEventReceiver (VDARNearbyGPSManagerEventReceiver receiver)

public void startNearbyGPSDetection (long minGPSIntervalMS, float minGPSDistance, int detectionInterval, float maxDetectionRadius)

public void startNearbyGPSDetection ()

public void stopNearbyGPSDetection ()

public void unregisterEventReceiver (VDARNearbyGPSManagerEventReceiver receiver)