Well, while I cant help you with exactly what you are asking for, I can show you how to "talk" to Google Maps (in a most simple fashion). What you want to do may require an SDK to get a little deeper into Google Maps.
Showing a Google Map from an Address
eg,
HomeAddress.Text = something like
125 Main Road
Your Suburb
Your Country
Zip 1234568979
NOTE: I am talking to Google Maps AU (Australia)
Code:
Private Sub cmdMap1_Click()
Dim SearchTerm As String
Dim URL As String
SearchTerm = Replace(HomeAddress.Text, vbCrLf, " ")
URL = ("http://maps.google.com.au/maps?q=" & SearchTerm) 'URLEncode(SearchTerm))
ShellExecute Me.hwnd, "Open", URL, vbNullString, "C:\", 1
End Sub
Bookmarks