- html_options = {}
- #html_options[:title] = strip_tags(result[:description]) if result[:description]
- html_options[:href] = "?mlat=#{result[:lat]}&mlon=#{result[:lon]}&zoom=#{result[:zoom]}"
+ html_options = { :class => "set_position", :data => {} }
+
+ url = if result[:type] && result[:id]
+ url_for(:controller => :browse, :action => result[:type], :id => result[:id])
+ elsif result[:min_lon] && result[:min_lat] && result[:max_lon] && result[:max_lat]
+ "/?bbox=#{result[:min_lon]},#{result[:min_lat]},#{result[:max_lon]},#{result[:max_lat]}"
+ else
+ "/#map=#{result[:zoom]}/#{result[:lat]}/#{result[:lon]}"
+ end
+
+ result.each do |key, value|
+ html_options[:data][key.to_s.tr("_", "-")] = value
+ end
+