Click or drag to resize

RouteFlagSPEED_UNITS Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The units that the speed limit is presented in.

Namespace:  Telogis.GeoBase.Routing
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public SpeedUnit SPEED_UNITS { get; }

Property Value

Type: SpeedUnit
Examples
C#
LatLon myLatLon = new LatLon(33.584594, -117.731847);
SpeedUnit linkSpeedUnits = GeoCoder.ReverseGeoCodeFull(myLatLon).StreetLink.Flags.SPEED_UNITS;
Console.WriteLine("The speed unit used for this link is {0}.", linkSpeedUnits);
//    The speed unit used for this link is MilesPerHour.
See Also