]> git.openstreetmap.org Git - rails.git/commitdiff
More tweaking.
authorTom Hughes <tom@compton.nu>
Wed, 11 Nov 2009 14:40:39 +0000 (14:40 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 11 Nov 2009 14:40:39 +0000 (14:40 +0000)
app/controllers/geocoder_controller.rb

index 16d427cfa58cb67f22687002ca832afe90c9cdf3..eed63c7a44fd5de3ab2ba1c9340ff6b0549bc921 100644 (file)
@@ -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)