hiteshvala/google-map-marker

A Laravel package for Google Map API Collection. You can use all google map features in laravel.

v1.4.0 2023-05-09 06:01 UTC

This package is auto-updated.

Last update: 2024-05-07 08:53:05 UTC


README

Hitesh Logo

Total Downloads Latest Stable Version Code Size

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