Created
February 8, 2017 11:51
-
-
Save iraycd/be7c8c9925bf0da8e22af39dd17d18a1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function decodePolyline(encoded) { | |
if (!encoded) { | |
return []; | |
} | |
var poly = []; | |
var index = 0, len = encoded.length; | |
var lat = 0, lng = 0; | |
while (index < len) { | |
var b, shift = 0, result = 0; | |
do { | |
b = encoded.charCodeAt(index++) - 63; | |
result = result | ((b & 0x1f) << shift); | |
shift += 5; | |
} while (b >= 0x20); | |
var dlat = (result & 1) != 0 ? ~(result >> 1) : (result >> 1); | |
lat += dlat; | |
shift = 0; | |
result = 0; | |
do { | |
b = encoded.charCodeAt(index++) - 63; | |
result = result | ((b & 0x1f) << shift); | |
shift += 5; | |
} while (b >= 0x20); | |
var dlng = (result & 1) != 0 ? ~(result >> 1) : (result >> 1); | |
lng += dlng; | |
var p = { | |
latitude: lat / 1e5, | |
longitude: lng / 1e5, | |
}; | |
poly.push(p); | |
} | |
return poly; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment