hiteshvala/google-map-marker
最新稳定版本:v1.4.0
Composer 安装命令:
composer require hiteshvala/google-map-marker
包简介
A Laravel package for Google Map API Collection. You can use all google map features in laravel.
README 文档
README
Install package
composer require hiteshvala/google-map-marker
Once the package is installed, you can use it in your Laravel application by creating a new instance of the GoogleMapMarker class and calling the getLocationDetails method with the latitude and longitude parameters.
use HiteshVala\GoogleMapMarker\GoogleMapMarker; $apiKey = 'YOUR_GOOGLE_MAPS_API_KEY'; $marker = new GoogleMapMarker($apiKey); $location = $marker->getLocationDetails($lat, $lng);
To get address details based on full address of location calling the getAddressDetails method with the address parameters.
$address = $marker->getAddressDetails($address);
To get a timezone based on location calling the getTimezone method with the latitude and longitude parameters, make sure your map key have timezone API access.
$timezone = $marker->getTimezone($lat, $lng);
统计信息
- 总下载量: 10
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-05-05