1 <% if defined? ID_KEY %>
2 <iframe frameBorder="0" id="id-embed" class="id-embed"></iframe>
5 <% if @lat && @lon && @zoom -%>
6 coord.lat = <%= @lat %>;
7 coord.lon = <%= @lon %>;
8 coord.zoom = <%= @zoom %>;
10 coord = OSM.mapParams();
14 if (coord.object && coord.object.type !== 'relation') {
15 hash = '#id=' + coord.object.type[0] + coord.object.id;
17 hash = '#map=' + (coord.zoom || 17) + '/' + coord.lon + '/' + coord.lat
20 $('#id-embed').attr('src', 'id_iframe' + hash);
23 <script type="text/javascript">alert("<%= t 'site.edit.id_not_configured' %>")</script>