More tweaking.
This commit is contained in:
parent
64e0c0794b
commit
a6c9fed920
1 changed files with 2 additions and 2 deletions
|
@ -239,8 +239,8 @@ class GeocoderController < ApplicationController
|
||||||
lat = place.attributes["lat"].to_s
|
lat = place.attributes["lat"].to_s
|
||||||
lon = place.attributes["lon"].to_s
|
lon = place.attributes["lon"].to_s
|
||||||
klass = place.attributes["class"].to_s
|
klass = place.attributes["class"].to_s
|
||||||
type = place.attributes["type"].to_s
|
type = place.attributes["type"].to_s.gsub("_", " ")
|
||||||
name = place.attributes["display_name"].to_s.gsub("_", " ")
|
name = place.attributes["display_name"].to_s
|
||||||
min_lat,max_lat,min_lon,max_lon = place.attributes["boundingbox"].to_s.split(",")
|
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)
|
if klass == "highway" and ["trunk","primary","secondary","tertiary","unclassified","residential"].include?(type)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue