Hallo @ all
ich habs jetzt mit PHP gelöst:
function getDistance($start_adresse,$ziel_adresse)
{
$url = 'http://maps.google.com/maps/api/directions/json?callback&origin='.$start_adresse.'&destination='.$ziel_adresse.'&sensor=false';
$data = @file_get_contents($url);
$result = json_decode($data);
$distance = $result->routes['0']->{'legs'}['0']->{'distance'};
echo '<br>Die Entferung beträgt:' . $distance->text;
$duration = $result->routes['0']->{'legs'}['0']->{'duration'};
$duration_wert = explode($duration->text , ' ');
echo '<br>Die Fahrdauer beträgt:' . $duration->text;
}