View Single Post

  #2 (permalink)  
Old 01-18-2008
Wilfried Wilfried is offline
Senior Member
Black Belt
 
Join Date: Nov 2004
Posts: 2,112
Re: How to get address from Lat/Long?

Hi,

Something like this:
Code:
Location loc = map.GetLocation(lat, lon, 1);
loc.GoTo();
FindResults streetResults = map.ObjectsFromPoint(map.LocationToX(loc), map.LocationToY(loc));
foreach (object o in streetResults) {
  ...
Reply With Quote