ISAddress.GeoInfo

Description

Some geo information for the address.

Syntax

object.GeoInfo

Part Attribute Type Description
object Required
The object always implements the ISAddress interface
Restriction: This property is readonly.

Return Value

ISGeoInfo

Example

Display the patient's address and its set of latitude and longitude coordinates.

Dim aPatient  
Dim aAddress
Dim aGeoInfo
Dim aMessage   

Set aPatient = Profile.SelectPatient
set aAddress = aPatient.StreetAddress 
aMessage = aMessage & vbNewLine &_
  " Address: " & aAddress.AsLine   
  
set aGeoInfo = aAddress.GeoInfo
if not aGeoInfo is nothing then
  aMessage = aMessage & "; GeoInfo: " &_ 
    aGeoInfo.Latitude & "; " & aGeoInfo.Longitude  
end if
Profile.MsgBox (aMessage)  
Note:

In Profile Client v8 on User Interface Geo Info can be found in Patient > Alter Patient > General > Street Address or Organisation > People&Places > POS > Street Address.

Version information

Added in v7.10.110