Is this on purpose or would a PR to convert location fields' human_address in to hashes be accepted?
Right now, we are looping through all returned records to convert the location into a hash like so:
@results = @results.map do |result|
result.location_1.human_address = JSON.parse(result.location_1.human_address)
result
end