Android谷歌地图Api V2 PolyLine解码索引超出限制异常

时间:2013-12-10 11:34:23

标签: android google-maps

总而言之。我有一个关于绘制谷歌地图路线(步行,驾车,过境)的问题..

所以:我打电话给网址: 字符串urlToCall =“http://maps.googleapis.com/maps/api/directions/json”                 +“?origin =”+ getMyLat()+“,”+ getMyLong()                 +“& destination =”+ Double.parseDouble(eventLocationLat)+“,”+ Double.parseDouble(eventLocationLong)                 +“& sensor = true”                 +“& language =”+ Locale.getDefault()。getLanguage()                 +“& departure_time =”+ System.currentTimeMillis()/ 1000                 +“& mode =”+ getMovingMode();

这一切都很好,并返回一个JSON。从这里开始,我的下一步是绘制一条上线,显示整个路线,所以:

private void drawRouteOnMap(String httpResult) {

    JSONObject routeObject = null;
    try {
        routeObject = new JSONObject(httpResult).optJSONArray("routes").optJSONObject(0);
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    String polyLine = null;
    try {
        polyLine = routeObject.optJSONObject("overview_polyline").getString("points");
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    if(polyLine != null){
        //  Log.e("polyLine", polyLine);
        setDecodedPoly( GoogleMapsCustomHelpers.decodePoly( polyLine ) );
    }

    setUpMapIfNeeded();
} 

直到这里都很好,但它在“decodePoly”方法中给出了“IndexOutOfBoundsexception”。 我评论了女巫抛出异常的行:

public static List decodePoly(String encoded){

    List<LatLng> poly = new ArrayList<LatLng>();
    int index = 0, len = encoded.length();
    int lat = 0, lng = 0;

    while (index < len) {
        int b, shift = 0, result = 0;
        do {
            b = encoded.charAt(index++) - 63;
            result |= (b & 0x1f) << shift;
            shift += 5;
        } while (b >= 0x20);
        int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
        lat += dlat;

        shift = 0;
        result = 0;
        do {
            b = encoded.charAt(index++) - 63;  // ERROR: INDEX OUT OF BOUND
            result |= (b & 0x1f) << shift;
            shift += 5;
        } while (b >= 0x20);
        int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
        lng += dlng;

        LatLng p = new LatLng((((double) lat / 1E5)),
                    (((double) lng / 1E5)));
        poly.add(p);
    }

    return poly;
}

所以,我的问题:出了什么问题?我没有找到任何来自谷歌地图的类来处理PolyLine解码,没什么..我不知道什么是错的。使用在线解码器进行测试(基于V3我认为,所有折线都在地图上绘制好,但在我的代码中它们会崩溃..)

我发现的唯一区别是我的代码中有: // efovGyqkrCvBxDu @ jAmAzAhAnBPEPBTTf @ f @ rCvCeAtBo @ fB @ NdCbClDeFfCqD @q@w@mAk@oA[yA?g@BOJYl@w@n@q@WD?JAn@dAP @ ^ e @

它崩溃,但是当我在“https://developers.google.com/maps/documentation/utilities/polylineutility”中测试时,它被绘制正确,并且它在编码的polyLine中添加了一个“@”。在其他情况下,它添加了“s @”

有谁能告诉我我做错了什么?提前谢谢!

1 个答案:

答案 0 :(得分:1)

我成功地解决了这个问题。我们应该忽略在String poly line中找到的任何Java文字。可以使用StringEscapeUtils.unescapeJava(polyLine)

完成

以上内容可以改为

if(polyLine != null){
                //  Log.e("polyLine", polyLine);
                polyLine  = StringEscapeUtils.unescapeJava(polyLine);
                setDecodedPoly( GoogleMapsCustomHelpers.decodePoly( polyLine ) );
            }