我正在使用Here Maps开发iOS应用。目前的SDK版本是3.1,但我还检查了3.3。
该应用有一个用于搜索地址的文本字段。必须为最近的部分搜索字符串的用户建议地址,例如自动提示。
目前,我正在使用地理编码器请求:
NMAGeocodeRequest *request = [[NMAGeocoder sharedGeocoder]
createGeocodeRequestWithQuery:searchText searchRadius:10000
searchCenter:[currentPosition coordinates]];
使用iPhone的当前位置(选中)并且半径为10km。
但结果我收到了来自世界各地的结果。
使用Here Maps有更好的方法吗?
答案 0 :(得分:1)
您可以使用NMAAutoSuggestionRequest
来处理此用例。