Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

RETIRIEVE all possible info based lat and long

Status
Not open for further replies.

sal21

Programmer
Apr 26, 2004
411
0
16
IT
I just have a bingmap key.
now based i know a LAT and LONG, with a rest api, i need to reftrieve all possible info...
for example city name, zip, region, ecc...
 
Well, we've previously shown you how to retrieve location data from Bing maps given a latitude and longitude, eg thread222-1817606

So what VB problem are you actually having?
 
tks Strongm!
Not remenber this post, sorry
Resolved!!!!

but only a dubt, when i call the code:

...
With CreateObject("MSXML2.XMLHTTP")

.Open "GET", XMLQUERY, False
.send
...

is require the code to check the reradystate?

if yes, this is my idea

'Do While myXML.ReadyState <> READYSTATE_COMPLETE
'Sleep (100)
'Loop
 
>is require the code to check the reradystate?

Shouldn't need to. That's what the [tt]False[/tt] in

[tt]Open "GET", XMLQUERY, False[/tt]

is for.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top