I'd like to draw route overview polyline, using google directions api, and PolylineDecoder class, which I found here: Map View draw directions using google Directions API - decoding polylines The problem is, I can not find any level string in google response.

EDIT:

I didn't figure out how to find zoom levels string, but I modified sample code to work with out that:

public static List <GeoPoint> decodePoints(String encoded_points){
    int index = 0;
    int lat = 0;
    int lng = 0;
    List <GeoPoint> out = new ArrayList<GeoPoint>();

    try {
        int shift;
        int result;
        while (index < encoded_points.length()) {
            shift = 0;
            result = 0;
            while (true) {
                int b = encoded_points.charAt(index++) - '?';
                result |= ((b & 31) << shift);
                shift += 5;
                if (b < 32)
                    break;
            }
            lat += ((result & 1) != 0 ? ~(result >> 1) : result >> 1);

            shift = 0;
            result = 0;
            while (true) {
                int b = encoded_points.charAt(index++) - '?';
                result |= ((b & 31) << shift);
                shift += 5;
                if (b < 32)
                    break;
            }
            lng += ((result & 1) != 0 ? ~(result >> 1) : result >> 1);
            /* Add the new Lat/Lng to the Array. */
            out.add(new GeoPoint((lat*10),(lng*10)));
        }
        return out;
    }catch(Exception e) {
        e.printStackTrace();
    }
    return out;
}

Remember that original code wasn't mine.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.