提前道歉,我真的觉得我应该能够自己解决这个问题,但是面临压力而没有取得进展。
我看到代码在文本框中显示地址或邮政编码,并使用Googlemaps查找LatLng:
Dim gAPIHttp As New GoogleAPICaller
Dim geofenceResults As New Dictionary(Of Integer, GeocodeResults())
Dim results() As GeocodeResults
results = gAPIHttp.GeocodeAddress(txt.Text.Trim & " UK")
geofenceResults.Add(geofenceResultCount, results)
并且可以看到其中一些被定义为对象浏览器中的结构,但是我的生活无法通过请求来了解实际地理编码的位置,例如:http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true_or_false。
非常欢迎任何关于尝试查找或帮助调试的提示!