Package com.indooratlas.android.sdk
Class IAWayfindingRequest.Builder
- java.lang.Object
-
- com.indooratlas.android.sdk.IAWayfindingRequest.Builder
-
- Enclosing class:
- IAWayfindingRequest
public static class IAWayfindingRequest.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IAWayfindingRequest
build()
Create aIAWayfindingRequest
from thisIAWayfindingRequest.Builder
.IAWayfindingRequest.Builder
withFloor(int floor)
Adds destination floor level for theIAWayfindingRequest
.IAWayfindingRequest.Builder
withLatitude(double latitude)
Adds destination latitude for theIAWayfindingRequest
.IAWayfindingRequest.Builder
withLongitude(double longitude)
Adds destination longitude for theIAWayfindingRequest
.
-
-
-
Method Detail
-
withLatitude
public IAWayfindingRequest.Builder withLatitude(double latitude)
Adds destination latitude for theIAWayfindingRequest
. If latitude has been added before, calling this method overrides the previous value.- Parameters:
latitude
- Destination's latitude
-
withLongitude
public IAWayfindingRequest.Builder withLongitude(double longitude)
Adds destination longitude for theIAWayfindingRequest
. If longitude has been added before, calling this method overrides the previous value.- Parameters:
longitude
- Destination's longitude
-
withFloor
public IAWayfindingRequest.Builder withFloor(int floor)
Adds destination floor level for theIAWayfindingRequest
. If floor level has been added before, calling this method overrides the previous value.- Parameters:
floor
- Destination floor level
-
build
public IAWayfindingRequest build()
Create aIAWayfindingRequest
from thisIAWayfindingRequest.Builder
.- See Also:
IAGeofenceRequest
-
-