Skip to content

Commit

Permalink
장소 검색 결과가 없는 경우에는 위치 정보 없이 재검색하기 (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeniuus authored Mar 8, 2024
1 parent 247c46d commit e681009
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,19 @@ class PlaceSearchService(
)
}
),
)
).let {
if (it.isEmpty() && currentLocation != null) {
// Kakao 지도 API의 경우, 최대 검색 반경이 25km밖에 되지 않는다.
// 그래서 서울에서 제주 스타벅스를 검색하는 경우 검색 결과가 안 뜨는 등의 이슈가 있다.
// 이러한 문제를 우회하기 위해, 검색 결과가 없는 경우에는 currentLocation을 빼고 검색을 다시 시도해본다.
placeService.findAllByKeyword(
keyword = searchText,
option = MapsService.SearchByKeywordOption(),
)
} else {
it
}
}
return places.map { it.toSearchPlacesResult(currentLocation) }
}

Expand Down

0 comments on commit e681009

Please sign in to comment.