From: Tom Hughes Date: Wed, 11 Nov 2009 14:40:39 +0000 (+0000) Subject: More tweaking. X-Git-Tag: live~6567 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/a6c9fed92045a92dd471d2c661a1680c2176430c?hp=64e0c0794b80634697855beaecbf959a8d02363a More tweaking. --- diff --git a/app/controllers/geocoder_controller.rb b/app/controllers/geocoder_controller.rb index 16d427cfa..eed63c7a4 100644 --- a/app/controllers/geocoder_controller.rb +++ b/app/controllers/geocoder_controller.rb @@ -239,8 +239,8 @@ class GeocoderController < ApplicationController lat = place.attributes["lat"].to_s lon = place.attributes["lon"].to_s klass = place.attributes["class"].to_s - type = place.attributes["type"].to_s - name = place.attributes["display_name"].to_s.gsub("_", " ") + type = place.attributes["type"].to_s.gsub("_", " ") + name = place.attributes["display_name"].to_s min_lat,max_lat,min_lon,max_lon = place.attributes["boundingbox"].to_s.split(",") if klass == "highway" and ["trunk","primary","secondary","tertiary","unclassified","residential"].include?(type)