承接 rentloop/google-geo-code 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rentloop/google-geo-code

Composer 安装命令:

composer require rentloop/google-geo-code

包简介

A Google Geo location API wrapper

README 文档

README

A small package to use google's geocode look up of an address.

Installation

This package has been tested on Laravel 5.4 and up.

You can install the package via composer:

composer require tjefford/google-geo-code

In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider and facade in config/app.php file:

'providers' => [
    // ...
    Tjefford\GoogleGeoCode\GoogleGeoCodeServiceProvider::class,
];

'aliases' => [
    // ...
    'Lookup' => Tjefford\GoogleGeoCode\Facades\Lookup::class,
];

Environment

This package uses an environment key to pull a secret API token from your .env file. You will need to get a API key from Google Geocode API and put that key in your environment file as:

GOOGLE_GEOCODE_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Usage

Using the lookup is very simple. All you need to provide is the address, city and state (for better accuracy). You will then be returned an array of data about that location from google.

Include the Lookup class in your file.

use Tjefford\GoogleGeoCode\Lookup;

Initiate the class and then call the locate method.

$lookup = new Lookup;
$lookup->locate('1901 W Madison St', 'Chicago', 'IL');

Your response should look similar to this

[
  "formatted_address" => "1901 W Madison St, Chicago, IL 60612, USA"
  "place_id" => "ChIJTeP2tz4tDogRADDUGhbXDB8"
  "neighborhood" => "Near West Side"
  "address" => "1901 West Madison Street"
  "city" => "Chicago"
  "state" => "Illinois"
  "postal_code" => "60612"
  "county" => "Cook County"
  "country" => "United States"
  "lat" => 41.8806285
  "lng" => -87.6740482
]

Methods

There is just 1 method that you can use, which is locate. It accepts 3 parameters, the first being the only required parameter.

Parameter Required Description
address true The address of the location you want to gather data on. It can be anything and Google will attempt to find it.
city false For better accuracy, you can add a city to the address by adding it here.
state false For better accuracy, you can add a state to the address by adding it here.

统计信息

  • 总下载量: 351
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-07-10

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固