Fix new rubocop warnings
This commit is contained in:
parent
59f15a9bc0
commit
473aff084d
4 changed files with 7 additions and 6 deletions
|
@ -101,8 +101,9 @@ class GeocoderController < ApplicationController
|
|||
if klass == "boundary" && type == "administrative"
|
||||
rank = (place.attributes["address_rank"].to_i + 1) / 2
|
||||
prefix_name = t "geocoder.search_osm_nominatim.admin_levels.level#{rank}", :default => prefix_name
|
||||
place_tags = %w[linked_place place]
|
||||
place.elements["extratags"].elements.each("tag") do |extratag|
|
||||
prefix_name = t "geocoder.search_osm_nominatim.prefix.place.#{extratag.attributes['value']}", :default => prefix_name if extratag.attributes["key"] == "linked_place" || extratag.attributes["key"] == "place"
|
||||
prefix_name = t "geocoder.search_osm_nominatim.prefix.place.#{extratag.attributes['value']}", :default => prefix_name if place_tags.include?(extratag.attributes["key"])
|
||||
end
|
||||
end
|
||||
prefix = t ".prefix_format", :name => prefix_name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue