API for handling of the geocode
This PHP package is automatically generated by the Swagger Codegen project:
- API version: 1.0.5
- Build package: io.swagger.codegen.languages.PhpClientCodegen
PHP 5.5 and later
To install the bindings via Composer, add the following to composer.json:
{
"repositories": [
{
"type": "git",
"url": "https://github.com/google/googleapi-client.git"
}
],
"require": {
"google/googleapi-client": "*@dev"
}
}
Then run composer install
Download the files and include autoload.php:
require_once('/path/to/SwaggerClient-php/vendor/autoload.php');To run the unit tests:
composer install
./vendor/bin/phpunit
Please follow the installation procedure and then run the following:
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new GoogleApi\Client\Api\GeocodeApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$address = "address_example"; // string | Address to convert into the latlng
$latlng = "latlng_example"; // string | LatLng to convert into the address
$language = "language_example"; // string | Language to return the results in
$key = "key_example"; // string | Security key to use for authorization
try {
$result = $apiInstance->getInformation($address, $latlng, $language, $key);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GeocodeApi->getInformation: ', $e->getMessage(), PHP_EOL;
}
?>All URIs are relative to https://maps.googleapis.com/maps/api
| Class | Method | HTTP request | Description |
|---|---|---|---|
| GeocodeApi | getInformation | GET /geocode/json | Gets Geo-Information about the specified place |
All endpoints do not require authorization.