places2be / position
Handling addresses and coordinates
1.4.0
2020-12-23 07:34 UTC
Requires
- php: >=7.2
Requires (Dev)
- phpstan/phpstan: ^0.12
- phpunit/phpunit: ^8.0 || ^9.0
README
Places2Be Position
Handling addresses and coordinates.
Installation
This library is made for the use with Composer. Add it to your project by running $ composer require places2be/position
.
Usage
Set up an address like that:
<?php
use Places2Be\Position\Address;
$address = new Address(
'Überkinger Straße',
'4',
'70372',
'Stuttgart',
'Deutschland'
);
Set up coordinates like:
<?php
use Places2Be\Position\Coordinates;
$coordinates = new Coordinates(48.806032, 9.213567);
Help
If you have any questions feel free to contact us under hello@bitandblack.com
.