5 <%= stylesheet_link_tag 'iD' %>
6 <!--[if !IE || gte IE 9]><!-->
7 <%= javascript_include_tag 'iD' %>
11 <div id='id-container'></div>
13 if (typeof iD == 'undefined') {
14 document.getElementById('id-container').innerHTML = 'This editor is supported ' +
15 'in Firefox, Chrome, Safari, Opera, and Internet Explorer 9 and above. ' +
16 'Please upgrade your browser or use Potlatch 2 to edit the map.';
17 document.getElementById('id-container').className = 'unsupported';
19 <% locale = select_locale(ID::LOCALES).to_s %>
23 .assetPath("/iD/") <%# Can't use asset_path('iD/') in production. %>
24 .assetMap(<%= assets("iD").to_json.html_safe %>)
25 .locale("<%= locale %>", "<%= asset_path("iD/locales/#{locale}.json") %>")
27 <% token = @user.access_token(ID_KEY) %>
28 url: "<%= request.protocol + request.host_with_port %>",
29 oauth_consumer_key: "<%= token.client_application.key %>",
30 oauth_secret: "<%= token.client_application.secret %>",
31 oauth_token: "<%= token.token %>",
32 oauth_token_secret: "<%= token.secret %>"
35 id.map().on('move.embed', parent.$.throttle(250, function() {
36 var extent = id.map().extent(),
37 zoom = ~~id.map().zoom(),
38 center = id.map().center();
51 // Manually resolve URL to avoid iframe JS context weirdness.
52 // http://bl.ocks.org/jfirebaugh/5439412
53 var hash = parent.OSM.formatHash({ lon: center[0], lat: center[1], zoom: zoom });
54 if (hash !== parent.location.hash) {
55 parent.location.replace(parent.location.href.replace(/(#.*|$)/, hash));
59 parent.$("body").on("click", "a.set_position", function (e) {
61 var data = parent.$(this).data();
63 // 0ms timeout to avoid iframe JS context weirdness.
64 // http://bl.ocks.org/jfirebaugh/5439412
65 setTimeout(function() {
68 Math.max(data.zoom || 15, 13));
72 d3.select('#id-container')