RouteRangeOptions Constructors

Definition

Overloads

RouteRangeOptions()

Initializes a new RouteRangeOptions instance for mocking.

RouteRangeOptions(GeoPosition)

RouteRangeOptions constructor.

RouteRangeOptions(Double, Double)

RouteRangeOptions constructor.

RouteRangeOptions()

Source:
RouteRangeOptions.cs

Initializes a new RouteRangeOptions instance for mocking.

protected RouteRangeOptions ();
Protected Sub New ()

Applies to

RouteRangeOptions(GeoPosition)

Source:
RouteRangeOptions.cs

RouteRangeOptions constructor.

public RouteRangeOptions (Azure.Core.GeoJson.GeoPosition routeRangePoint);
new Azure.Maps.Routing.RouteRangeOptions : Azure.Core.GeoJson.GeoPosition -> Azure.Maps.Routing.RouteRangeOptions
Public Sub New (routeRangePoint As GeoPosition)

Parameters

routeRangePoint
GeoPosition

A coordinate (GeoPosition) for the route range query.

Exceptions

routeRangePoint is null.

Applies to

RouteRangeOptions(Double, Double)

Source:
RouteRangeOptions.cs

RouteRangeOptions constructor.

public RouteRangeOptions (double longitude, double latitude);
new Azure.Maps.Routing.RouteRangeOptions : double * double -> Azure.Maps.Routing.RouteRangeOptions
Public Sub New (longitude As Double, latitude As Double)

Parameters

longitude
Double

The longitude for route range query coordinate.

latitude
Double

The latitude for route range query coordinate.

Applies to