@Klagio, @xt16johnny
I’ve spent some time looking into the address issue and I’ve found the culprit. But the news is not good.
So what happens is we send the address to waze. They then send a list of GPS locations with a few attributes back. Waze has 3 servers, United States/North America, Isreal, and Rest of World. So when everyone sets their region as US, NA, IL, EU, or AU, it corresponds to these servers. There are 2 types of servers for each region, one that translates addresses into gps locations, and one that gets a route between gps locations. So on to the problem. The server for the EU is not returning the correct gps location for some parts of the EU. If you were to switch to the US region, it would work for translating the address to GPS. But it’s not that easy. If you do that, the calculations between routes will return the wonderful ‘empty response’ bug. It’s a catch-22.
Just see for yourself:
Address: via del cenacolo rome italy
EU server responses (4th choice is close, but not correct location)
https://www.waze.com/row-SearchServer/mozi?q=via+del+cenacolo+rome+italy&lang=eng&origin=livemap&lat=47.498&lon=19.04
4th choice
{
"bounds":null,
"businessName":null,
"city":"Roma",
"location":{
"lat":42.000160217285156,
"lon":12.385350227355957
},
"name":"Via del Cenacolo, Roma, Lazio",
"number":null,
"provider":"waze",
"segmentId":-1,
"state":"Lazio",
"street":"Via del Cenacolo",
"streetId":0
}
US server responses (first choice is correct location)
https://www.waze.com/SearchServer/mozi?q=via+del+cenacolo+rome+italy&lang=eng&origin=livemap&lat=47.498&lon=19.04
1st and correct choice
{
"bounds":{
"bottom":42.0027630302915,
"left":12.3821763,
"right":12.3855891,
"top":42.0000650697085
},
"businessName":null,
"city":"Roma",
"location":{
"lat":42.001529693603516,
"lon":12.384178161621094
},
"name":"Via del Cenacolo, 00123 Roma RM",
"number":null,
"provider":"waze",
"segmentId":-1,
"state":"Lazio",
"street":"Via del Cenacolo",
"streetId":0
}
IL server responses (no response)
https://www.waze.com/il-SearchServer/mozi?q=via+del+cenacolo+rome+italy&lang=eng&origin=livemap&lat=47.498&lon=19.04