Handle an empty type value in a nominatim result
This commit is contained in:
parent
b180b5490b
commit
82e4970766
1 changed files with 5 additions and 1 deletions
|
@ -160,7 +160,11 @@ class GeocoderController < ApplicationController
|
|||
type = place.attributes["type"].to_s
|
||||
name = place.attributes["display_name"].to_s
|
||||
min_lat,max_lat,min_lon,max_lon = place.attributes["boundingbox"].to_s.split(",")
|
||||
prefix_name = t "geocoder.search_osm_nominatim.prefix.#{klass}.#{type}", :default => type.gsub("_", " ").capitalize
|
||||
if type.empty?
|
||||
prefix_name = ""
|
||||
else
|
||||
prefix_name = t "geocoder.search_osm_nominatim.prefix.#{klass}.#{type}", :default => type.gsub("_", " ").capitalize
|
||||
end
|
||||
if klass == 'boundary' and type == 'administrative'
|
||||
rank = (place.attributes["place_rank"].to_i + 1) / 2
|
||||
prefix_name = t "geocoder.search_osm_nominatim.admin_levels.level#{rank}", :default => prefix_name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue