大家好我对绘制Google地图路线(步行,驾车,公交)有疑问。

因此:我称一个网址为ex:
字符串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”。
我在女巫引发异常的行上评论:

公共静态列表解码Poly(字符串编码){

    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 @”

有人可以告诉我我在做什么错吗?提前致谢!

最佳答案

我成功解决了这个问题。我们应该取消在“字符串”多边形行中找到的所有Java文字的义。可以使用StringEscapeUtils.unescapeJava(polyLine)完成

上面可以改成

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

关于android - Android Google Maps Api V2 PolyLine解码索引超出范围异常,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20493405/

10-10 09:36