1 2 3 4 5 6 7 |
$calle='Zen Market' $ciudad='Madrid' $urlsi="https://maps.googleapis.com/maps/api/geocode/json?address=" + $calle + "+" + $ciudad $result=(Invoke-WebRequest -Uri $urlsi).Content | ConvertFrom-JSON $posicion=$result.results."geometry".location $metros="703m" Start-Process chrome "https://www.google.es/maps/@$($posicion.lat),$($posicion.lng),$metros/data=!3m1!1e3" |