searchQuery.setBounds(bounds);
searchQuery.setMaxCount(5);
searchQuery.setType(EQueryType.BOUNDS_OR_CLOSEST);
searchQuery.setQuery(_code);
StopsBean stopsResult = _transitDataService.getStops(searchQuery);
_stops = stopsResult.getStops();
if (_stops.size() == 0) {
return "noStopsFound";
} else if (_stops.size() > 1) {
return "multipleStopsFound";