Make the search URLs include a marker.
This commit is contained in:
parent
3e6329718b
commit
e583ead8f8
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ module GeocoderHelper
|
||||||
def result_to_html(result)
|
def result_to_html(result)
|
||||||
html_options = {}
|
html_options = {}
|
||||||
#html_options[:title] = strip_tags(result[:description]) if result[:description]
|
#html_options[:title] = strip_tags(result[:description]) if result[:description]
|
||||||
html_options[:href] = "?lat=#{result[:lat]}&lon=#{result[:lon]}&zoom=#{result[:zoom]}"
|
html_options[:href] = "?mlat=#{result[:lat]}&mlon=#{result[:lon]}&zoom=#{result[:zoom]}"
|
||||||
html = ""
|
html = ""
|
||||||
html << result[:prefix] if result[:prefix]
|
html << result[:prefix] if result[:prefix]
|
||||||
html << link_to_function(result[:name],"setPosition(#{result[:lat]}, #{result[:lon]}, #{result[:zoom]})", html_options) if result[:name]
|
html << link_to_function(result[:name],"setPosition(#{result[:lat]}, #{result[:lon]}, #{result[:zoom]})", html_options) if result[:name]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue