【发布时间】:2015-08-11 14:41:46
【问题描述】:
所以我有一个将地址(字符串)转换为坐标的函数。
这就是它在 iOS 中的样子:
func setCoords(buildet: BuildingDetail) {
let geoCoder = CLGeocoder()
geoCoder.geocodeAddressString(buildet.address, completionHandler:
{(placemarks: [AnyObject]!, error: NSError!) in
if error != nil {
println("Geocode failed with error: \(error.localizedDescription)")
} else if placemarks.count > 0 {
let placemark = placemarks[0] as! CLPlacemark
let location = placemark.location
buildet.lat = location.coordinate.latitude
buildet.lon = location.coordinate.longitude
}
self.setupMarker(buildet)
})
}
这就是它在 Android 中的样子:
public static double[] getLatLongPositions(String address) throws Exception
{
int responseCode = 0;
String api = "http://maps.googleapis.com/maps/api/geocode/xml?address=" + URLEncoder.encode(address, "UTF-8") + "&sensor=true";
System.out.println("URL : "+api);
URL url = new URL(api);
HttpURLConnection httpConnection = (HttpURLConnection)url.openConnection();
httpConnection.connect();
responseCode = httpConnection.getResponseCode();
if(responseCode == 200)
{
DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();;
Document document = builder.parse(httpConnection.getInputStream());
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/GeocodeResponse/status");
String status = (String)expr.evaluate(document, XPathConstants.STRING);
if(status.equals("OK"))
{
expr = xpath.compile("//geometry/location/lat");
String latitude = (String)expr.evaluate(document, XPathConstants.STRING);
expr = xpath.compile("//geometry/location/lng");
String longitude = (String)expr.evaluate(document, XPathConstants.STRING);
return new double[] {Double.parseDouble(latitude), Double.parseDouble(longitude)};
}
}
return new double[]{0,0};
}
现在,上面的iOS函数只是运行setupMarker函数,Android方法返回坐标,没什么大不了的!
我遇到的问题是,我为这两个函数提供了完全相同的地址参数。
iOS 完美返回所有坐标。
然而,Android 只能正确返回大约 30%。
是否有与上面的 iOS 等效的 Android 功能,或者只有一个可以正确地理编码的功能。
您可以在此处看到 Android 调用 API:
http://maps.googleapis.com/maps/api/geocode/xml?address=
而且我已经对此进行了测试,它并没有给出好的结果,至少不如 iOS。
我该怎么办?
编辑 - 一些示例(均适用于 iOS)
- EBS, 2 Burlington Road, Dublin 2
- 爱尔兰都柏林 4 区鲍尔斯布里奇梅林路 AIB 银行中心
- AIB, Unit 33, Sandyford Business Centre, Sandyford, Dublin 18
【问题讨论】:
-
你能举几个在 Android 上失败的地址的例子吗?
标签: java android ios google-maps geocoding