承接 alexpechkarev/google-geocoder 相关项目开发

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

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

alexpechkarev/google-geocoder

Composer 安装命令:

composer require alexpechkarev/google-geocoder

包简介

Simple Google Geocoding API v3 wrapper for Laravel 4/5, Slim3 etc

README 文档

README

Build Status

This package provides simple facility to make The Google Geocoding API v3 calls with Laravel 5.

See Collection of Google Maps API Web Services for Laravel that also includes Google Geocoding API v3.

Laravel 5

Dependency

PHP cURL required

Installation

To install edit composer.json and add following line:

"alexpechkarev/google-geocoder": "dev-master"

Run composer update

Configuration

Once installed, register Laravel service provider, in your config/app.php:

'providers' => array(
	...
    'Alexpechkarev\GoogleGeocoder\GoogleGeocoderServiceProvider',
)

Next, create a config/google-geocoder.php, containing:

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Google Geocoder
    |--------------------------------------------------------------------------
    | Geocoding is the process of converting addresses (like "1600 Amphitheatre Parkway, Mountain View, CA")
    | into geographic coordinates (like latitude 37.423021 and longitude -122.083739),
    | which you can use to place markers or position the map.
    |
    */

    /*
    |--------------------------------------------------------------------------
    | Application Key
    |--------------------------------------------------------------------------
    |
    | Your application's API key. This key identifies your application for
    | purposes of quota management. Learn how to get a key from the APIs Console.
    */
    'applicationKey' => 'my-api-key',

    /*
    |--------------------------------------------------------------------------
    | Request URL
    |--------------------------------------------------------------------------
    |
    */
    'requestUrl' => [
        'json' => 'https://maps.googleapis.com/maps/api/geocode/json?',
        'xml'  => 'https://maps.googleapis.com/maps/api/geocode/xml?'
    ],
];

Slim 3

Settings

return [
    'settings' => [
      /* slim settings */
      'displayErrorDetails' => true,

      'determineRouteBeforeAppMiddleware' => true,

        'google' => [
          'geocoder' => [
            'applicationKey' => 'my-api-key',
            'requestUrl' => [
                'json' => 'https://maps.googleapis.com/maps/api/geocode/json?',
                'xml'  => 'https://maps.googleapis.com/maps/api/geocode/xml?'
            ]
          ]
        ]
    ]
];

Container Dependency

use GoogleGeocoder\GoogleGeocoder;

$container['GeoCoder'] = function ($container) {

  return new GoogleGeocoder($container->get('settings')['google']['geocoder']);

};

Using

$gc = $this->container['GeoCoder'];

Usage

Before making calls please ensure you obtain API Key to identify your application and add this key in the configuration file. More information on API Key please refer to The Google Geocoding API.

'applicationKey' => 'your-api-key',

Create an array with key=>value pairs specifying address you would like to geocode:

$param = array("address"=>"76 Buckingham Palace Road London SW1W 9TQ");

Use following command to receive Geocoding response in json format, use xml as first parameter for XML response.

$response = \Geocoder::geocode('json', $param);

To restrict your results to a specific area use component filter Component Filtering by adding it's filters to parameter array.

$param = array(
                "address"=>"76 Buckingham Palace Road London SW1W 9TQ",
                "components"=>"country:GB"
            );

Geocoding API supports translation of map coordinates into human-readable address by reverse geocoding using latitude and longitude parameters. For more details refer to Reverse Geocoding To make reverse geocoding request use following:

$param = array("latlng"=>"40.714224,-73.961452");
$response = \Geocoder::geocode('json', $param);

All requests will return string value. For Response example, Status Codes, Error Messages and Results please refer to [Geocoding Responses] (https://developers.google.com/maps/documentation/geocoding/#GeocodingResponses)

Support

Please open an issue on GitHub

License

Google Geocoder for Laravel 5 is released under the MIT License. See the bundled LICENSE file for details.

alexpechkarev/google-geocoder 适用场景与选型建议

alexpechkarev/google-geocoder 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 310.53k 次下载、GitHub Stars 达 74, 最近一次更新时间为 2014 年 07 月 14 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「geocoding」 「laravel」 「google geocoding api」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 alexpechkarev/google-geocoder 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 alexpechkarev/google-geocoder 我们能提供哪些服务?
定制开发 / 二次开发

基于 alexpechkarev/google-geocoder 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 310.53k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 75
  • 点击次数: 24
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 74
  • Watchers: 5
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-07-14