spatie/google-time-zone
Composer 安装命令:
composer require spatie/google-time-zone
包简介
Get time zones for coordinates
README 文档
README
This package can convert GPS coordinates to time zones using Google's Time Zone service. Here's a quick example:
GoogleTimeZone::getTimeZoneForCoordinates('51.2194475', '4.4024643'); // Will return this array [ "dstOffset" => 0 "rawOffset" => 3600 "timeZoneId" => "Europe/Brussels" "timeZoneName" => "Central European Standard Time" ]
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install this package through composer.
composer require spatie/google-time-zone
Laravel installation
Though the package works fine in non-Laravel projects we've included some niceties for our fellow Artisans.
In Laravel will autoregister the package itself, but you should still publish the config file yourself.
php artisan vendor:publish --provider="Spatie\GoogleTimeZone\GoogleTimeZoneServiceProvider" --tag="config"
This is the content of the config file:
return [ /* * The api key used when sending timezone requests to Google. */ 'key' => env('GOOGLE_MAPS_TIMEZONE_API_KEY', ''), /* * The language param used to set response translations for textual data. * * More info: https://developers.google.com/maps/faq#languagesupport */ 'language' => '', ];
Usage
Here's how you can get the time zone for a given set of coordinates.
$googleTimeZone = new GoogleTimeZone(); $googleTimeZone->setApiKey(config('google-time-zone.key')); $googleTimeZone->getTimeZoneForCoordinates('51.2194475', '4.4024643'); /* // Will return this array [ "dstOffset" => 0 "rawOffset" => 3600 "timeZoneId" => "Europe/Brussels" "timeZoneName" => "Central European Standard Time" ] */
You can get the result back in a specific language.
$googleTimeZone ->setLanguage('nl') ->getTimeZoneForCoordinates('51.2194475', '4.4024643'); /* // Will return this array [ "dstOffset" => 0 "rawOffset" => 3600 "timeZoneId" => "Europe/Brussels" "timeZoneName" => "Midden-Europese standaardtijd" ] */
It is possible to specify a timestamp for the location so that daylight savings can be taken into account. We will set this timestamp to the current time by default.
$googleTimeZone ->setTimestamp(new DateTime('13 august 2018')) ->getTimeZoneForCoordinates('51.2194475', '4.4024643'); /* // Will return this array [ "dstOffset" => 3600 "rawOffset" => 3600 "timeZoneId" => "Europe/Brussels" "timeZoneName" => "Central European Summer Time" ] */
If you are using the package with Laravel, you can simply call getTimeZoneForCoordinates.
GoogleTimeZone::getTimeZoneForCoordinates('51.2194475', '4.4024643'); /* // Will return this array [ "dstOffset" => 0 "rawOffset" => 3600 "timeZoneId" => "Europe/Brussels" "timeZoneName" => "Central European Standard Time" ] */
When no time zone was found null will be returned.
Postcardware
You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Spatie, Kruikstraat 22, 2018 Antwerp, Belgium.
We publish all received postcards on our company website.
Credits
License
The MIT License (MIT). Please see License File for more information.
spatie/google-time-zone 适用场景与选型建议
spatie/google-time-zone 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 729.95k 次下载、GitHub Stars 达 109, 最近一次更新时间为 2019 年 04 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「map」 「laravel」 「location」 「coordinate」 「time zone」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 spatie/google-time-zone 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 spatie/google-time-zone 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 spatie/google-time-zone 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Maps in minutes. Powered by the Google Maps API.
Yii2 map input widget. Allows you to select geographcal coordinates via a human-friendly inteface.
The official PHP library for apiip.net that allowing customers to automate IP address validation and geolocation lookup in websites, applications and back-office system. Visit our API docs at https://apiip.net/documentation
A Symfony2 Bundle to handle geographic location of your entities
A modern, feature-rich Laravel package for managing addresses with geocoding, validation, caching, and spatial operations. Perfect for e-commerce, CRM systems, and any application requiring robust address management.
The enumeration type for PHP
统计信息
- 总下载量: 729.95k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 111
- 点击次数: 33
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-26