Created
June 16, 2016 04:19
-
-
Save trinnguyen/e5a96a7d474c6674277b3abe7477634a to your computer and use it in GitHub Desktop.
Google Maps Distance Matrix APIs JSON response
This file contains hidden or 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
{ | |
"destination_addresses": [ | |
"76 Lê Lai, Phạm Ngũ Lão, Quận 1, Hồ Chí Minh, Vietnam" | |
], | |
"origin_addresses": [ | |
"557A/C6 Nguyễn Tri Phương Tổ 12 KP 3, phường 14, Quận 10, Hồ Chí Minh, Vietnam" | |
], | |
"rows": [ | |
{ | |
"elements": [ | |
{ | |
"distance": { | |
"text": "3.9 km", | |
"value": 3930 | |
}, | |
"duration": { | |
"text": "49 mins", | |
"value": 2925 | |
}, | |
"status": "OK" | |
} | |
] | |
} | |
], | |
"status": "OK" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment