oont-contents/plugins/woocommerce-square/vendor/apimatic/jsonmapper/example/Address.php
2025-02-08 15:10:23 +01:00

22 lines
486 B
PHP

<?php
class Address
{
public $street;
public $city;
public function getGeoCoords()
{
$data = file_get_contents(
'http://nominatim.openstreetmap.org/search?q='
. urlencode($this->street)
. ',' . urlencode($this->city)
. '&format=json&addressdetails=1'
);
$json = json_decode($data);
return array(
'lat' => $json[0]->lat,
'lon' => $json[0]->lon
);
}
}
?>