Click or drag to resize

AddressNumber Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Number on street, -1 if no number.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public int Number { get; set; }

Property Value

Type: Int32
Remarks
In some instances the GeoCoder may not be able to return a street number for the location. In this instance, the Number property will be set to -1.
Examples
C#
// Set a location (Burbank Boulevard, Los Angeles)
LatLon Location = new LatLon(34.172167, -118.408671);
int FoundAddressNumber = GeoCoder.ReverseGeoCode(Location).Number;
Console.WriteLine("The number of this street address is {0}", FoundAddressNumber);
// 'The number of this street address is 12649'
See Also