这是我获取当前位置的方式
NSString* lat = [[NSString alloc]initWithFormat:@"%f",locationManager.location.coordinate.latitude];
NSString* lon = [[NSString alloc]initWithFormat:@"%f",locationManager.location.coordinate.longitude];
NSString *URL = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@,%@&output=csv&sensor=false",lat,lon];
NSURLRequest *rq = [NSURLRequest requestWithURL:[NSURL URLWithString:URL]];
con = [[NSURLConnection alloc] initWithRequest:rq delegate:self];
webData = [[NSMutableData data] retain];
在连接委托方法中,我得到了当前的位置名称。200,9,“IITI 计算机教育,瓦达拉,孟买,马哈拉施特拉邦 400067,印度” 在模拟器中。
现在我的问题是我们如何使用我之前获得的字符串地名在地图中的同一位置设置注释。
提前致谢