Skip to content

Latest commit

 

History

History
108 lines (73 loc) · 2.62 KB

File metadata and controls

108 lines (73 loc) · 2.62 KB

SwaggerClient-php

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

Requirements

PHP 5.5 and later

Installation & Usage

Composer

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

Manual Installation

Download the files and include autoload.php:

    require_once('/path/to/SwaggerClient-php/vendor/autoload.php');

Tests

To run the unit tests:

composer install
./vendor/bin/phpunit

Getting Started

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;
}

?>

Documentation for API Endpoints

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

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author