Download the PHP package diversen/gps-from-exif without Composer
On this page you can find all versions of the php package diversen/gps-from-exif. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download diversen/gps-from-exif
More information about diversen/gps-from-exif
Files in diversen/gps-from-exif
Download diversen/gps-from-exif
More information about diversen/gps-from-exif
Files in diversen/gps-from-exif
Vendor diversen
Package gps-from-exif
Short Description Get GPS from exif
License MIT
Homepage https://github.com/diversen/gps-from-exif
Package gps-from-exif
Short Description Get GPS from exif
License MIT
Homepage https://github.com/diversen/gps-from-exif
Please rate this library. Is it a good library?
Informations about the package gps-from-exif
gps-from-exif
Get GPS from exif
Install:
composer require diversen/gps-from-exif
Usage example:
~~~.php include_once "vendor/autoload.php";
use \diversen\gps;
// Example file // $file = "vendor/diversen/gps-from-exif/failure.jpg"; $file = "vendor/diversen/gps-from-exif/example.jpg";
$g = new gps();
// Get GPS position $gps = $g->getGpsPosition($file); if (empty($gps)) { die('Could not get GPS position' . PHP_EOL); }
print_r($gps);
// Get a google map echo $gmap = $g->getGmap($gps['latitude'], $gps['longitude'], 600, 350);
All versions of gps-from-exif with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
The package diversen/gps-from-exif contains the following files
Loading the files please wait ....