PHP code example of aram-zahedi / google-distance-matrix
1. Go to this page and download the library: Download aram-zahedi/google-distance-matrix library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
aram-zahedi / google-distance-matrix example snippets
$distanceMatrix = new GoogleDistanceMatrix('YOUR API KEY');
$distance = $distanceMatrix->setLanguage('cs')
->addOrigin('49.950096, 14.668544')
->addOrigin('49.950096, 15.668544')
->addDestination('50.031817, 14.490880')
->addDestination('51.031817, 14.490880')
->sendRequest();
$distanceMatrix = new GoogleDistanceMatrix('YOUR API KEY');
$distance = $distanceMatrix
->setOrigin('K Habrovci 447, 251 63 Strančice, Česká republika')
->setDestination('Roztylská 2321/19, Chodov, 148 00 Praha-Praha 11, Česká republika')
->setMode(GoogleDistanceMatrix::MODE_WALKING)
->setLanguage('en-US')
->setUnits(GoogleDistanceMatrix::UNITS_IMPERIAL)
->setAvoid(GoogleDistanceMatrix::AVOID_HIGHWAYS)
->sendRequest();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.