PHP code example of flexydigital / google-location
1. Go to this page and download the library: Download flexydigital/google-location 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/ */
flexydigital / google-location example snippets
$coordinates = (new \GSoares\Google\Location\CoordinatesLocator())
->setStreet('Marechal Rondon')
->setNumber('998')
->setDistrict('Barreiros')
->setCity('Sao Jose')
->setState('Santa Catarina')
->setPostcode('88117030')
->setCountry('Brasil')
->locate();
//OR using single parameters...
$coordinates = (new \GSoares\Google\Location\CoordinatesLocator())
->setPostcode('88117030')
->locate();
/*
RETURNS:
object(GSoares\Google\Location\Address\Coordinates)#6 (2) {
["latitude"]=>
string(11) "-27.5818202"
["longitude"]=>
string(11) "-48.6039563"
}
*/