我的情景:
我正在使用Artem.GoogleMap.dll
GoogleMarker oMarker = new GoogleMarker(42.1229, 24.7879);
GoogleMap1.Markers.Add(oMarker);
我需要找到特定纬度和经度的位置[地址]如何使用googlemap执行此操作?不想在gmap中显示那个得到了locaiton的名字
抱歉我的英语很差答案 0 :(得分:0)
看看文档,看起来很简单:
http://googlemap.codeplex.com/wikipage?title=Google%20Geocoder&referringTitle=Documentation
你需要创建一个GeoRequest对象并传入构造函数中的lat / lng,这里是文档中的示例代码:
GeoRequest request = new GeoRequest(42.1438409, 24.7495615);
GeoResponse response = request.GetResponse();
string address = response.Results[0].FormattedAddress;
// TODO use address values