응답: PHP에서 Google Maps Direction API에서 폴리선을 디코딩하는 방법 응답: PHP에서 Google Maps Direction API에서 폴리선을 디코딩하는 방법

1225 단어

답변: 어떻게 PHP에서 구글 맵 방향 API에서 다단선을 디코딩합니까


2014년 7월 10일
3
<?php
# Do steps 1-11 given here 
# https://developers.google.com/maps/documentation/utilities/polylinealgorithm
# in reverse order and inverted (i.e. left shift -> right shift, add -> subtract)

$string = "udgiEctkwIldeRe}|x@cfmXq|flA`nrvApihC";
# Step 11) unpack the string as unsigned char 'C'
$byte_array = array_merge(unpack('C*', $string));
$results = array();

$index = 0; # tracks which

Open Full Answer

좋은 웹페이지 즐겨찾기