Location object
The Location object holds the location information about hosts, networks, and subnets. Use the Location property to access the Location object. This RFC 1876 defines the format of a new Resource Record (RR) for the Domain Name System (DNS), and reserves a corresponding DNS type mnemonic (LOC) and numerical code (29). 

The following sample displays location information of the host:

Dim n As New LookupNS
With n.Query("yahoo.com").Location
    Debug.Print "Latitude " & .Latitude
    Debug.Print "Longitude " & .Longitude
    Debug.Print "Altitude " & .Altitude
End With

The Location object supports the following properties and methods:

NameDescription
AltitudeRetrieves the altitude of the center of the sphere described by the Size property, in centimeters.
HorizontalPrecisionSpecifies the horizontal precision of the data, in centimeters.
LatitudeSpecifies the latitude of the center of the sphere described by the Size property, in thousandths of a second of arc.
LongitudeRetrieves the longitude of the center of the sphere described by the Size property, in thousandths of a second of arc, rounded away from the prime meridian.
SizeThe diameter of a sphere enclosing the described entity, in centimeters.
VersionRetrieves the Version number of the representation.
VerticalPrecisionSpecifies the vertical precision of the data, in centimeters.