Now getting building coordinates from Google Maps Geocoding

This commit is contained in:
Frank Schubert
2021-07-15 20:26:07 +02:00
parent e77dd8b263
commit 6555272928
5 changed files with 96 additions and 7 deletions

View File

@@ -13,4 +13,17 @@ class DashboardController extends mfBaseController {
protected function indexAction() {
}
protected function testAction() {
$search = [
'street' => "Kastellfeldgasse 20",
'zip' => "8010",
'city' => "Graz",
'country' => "AT"
];
$coords = Gmaps_Geocoding::getCoords($search);
var_dump($coords);
exit;
}
}