openstreetmap-website/app/views/site/_id.html.erb
2023-11-13 10:46:17 +03:00

10 lines
478 B
Text

<%= javascript_include_tag "edit/id" %>
<div id="map" class="h-100 overflow-hidden">
<% data = { :configured => Settings.key?(:id_application) }
data[:lat] = @lat if @lat
data[:lon] = @lon if @lon
data[:gpx] = trace_data_url(params[:gpx], :format => :xml) if params[:gpx]
data[:url] = id_url(:locale => params[:locale]) %>
<%= tag.iframe "", :frameBorder => 0, :id => "id-embed", :class => "w-100 h-100", :allowfullscreen => "", :data => data %>
</div>