Hi everyone. I want use this code
Start-Process "http://www.overpass-api.de/api/xapi?map?bbox= 5.974899,50.662127,6.218150, 50.857233
but I’dlike toaks user to enter bbox i tried like that but it didnt work well and the result was not ok. Please how can i write it in good way:
$minLon = Read-Host “Pleas enter minLon”
$minLat = Read-Host “Pleas enter minLat”
$maxLon = Read-Host “Pleas enter maxLon”
$maxLat = Read-Host “Pleas enter maxLat”
$bbox = $minLon,$minLat,$maxLon,$maxLat
Start-Process "http://www.overpass-api.de/api/xapi?map?bbox= 5.974899,50.662127,6.218150, 50.857233
Thanks very much.