Page History
...
The format of the URL is as follows:
https://maps.googleapis.com/maps/api/geocode/json?address={address}&key={key}
Below is the code example:
Define_Com Class(#XPRIM_UriBuilder) Name(#Url)
#Url.SetScheme( 'https' )
#Url.SetHost( 'maps.googleapis.com' )
#Url.SetPath( '/maps/api/geocode/json' )
#Url.AddQueryString( 'address' #Address )
#Url.AddQueryString( 'key' #ApiKey )
Next: Adding Request Headers