Address.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPForms\Vendor; |
| 4 | |
| 5 | class Address |
| 6 | { |
| 7 | public $street; |
| 8 | public $city; |
| 9 | public function getGeoCoords() |
| 10 | { |
| 11 | $data = \file_get_contents('http://nominatim.openstreetmap.org/search?q=' . \urlencode($this->street) . ',' . \urlencode($this->city) . '&format=json&addressdetails=1'); |
| 12 | $json = \json_decode($data); |
| 13 | return array('lat' => $json[0]->lat, 'lon' => $json[0]->lon); |
| 14 | } |
| 15 | } |
| 16 |