TODO: Share common formatting code for search results and place page.
| 308 | |
| 309 | // TODO: Share common formatting code for search results and place page. |
| 310 | string FormatFullAddress(ReverseGeocoder::Address const & addr, string const & region) |
| 311 | { |
| 312 | /// @todo Print "near" for not exact addresses. |
| 313 | /// Add some threshold for addr:interpolation or refactor ReverseGeocoder? |
| 314 | if (addr.GetDistance() != 0) |
| 315 | return region; |
| 316 | |
| 317 | return FormatStreetAndHouse(addr) + (region.empty() ? "" : ", ") + region; |
| 318 | } |
| 319 | |
| 320 | } // namespace |
| 321 |
no test coverage detected