Click or drag to resize

LatLon Constructor (LatLon)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Create a copy of a LatLon.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public LatLon(
	LatLon other
)

Parameters

other
Type: Telogis.GeoBaseLatLon
The LatLon to be copied.
Examples
C#
LatLon originalLatLon = new LatLon(33.584444, -117.731874);
LatLon copyLatLon = new LatLon(originalLatLon);
if (originalLatLon.Equals(copyLatLon)) {
    Console.WriteLine("The LatLon objects are the same");
}
See Also