]> git.openstreetmap.org Git - rails.git/blob - app/views/site/id.html.erb
6000b7da06dfd437518402740f6dfe6bcab9292c
[rails.git] / app / views / site / id.html.erb
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta charset='utf-8'>
5   <%= stylesheet_link_tag 'iD' %>
6   <!--[if !IE || gte IE 9]><!-->
7   <%= javascript_include_tag 'iD' %>
8   <!-- <![endif]-->
9 </head>
10 <body>
11 <div id='id-container'></div>
12 <script>
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';
18   } else {
19     <% locale = select_locale(ID::LOCALES).to_s %>
20
21     var id = iD()
22       .embed(true)
23       .assetPath("/assets/iD/") <%# Can't use asset_path('iD/') in production. %>
24       .locale("<%= locale %>", "<%= asset_path("iD/locales/#{locale}.json") %>")
25       .preauth({
26         <% token = @user.access_token(ID_KEY) %>
27         url: "<%= request.protocol + request.host_with_port %>",
28         oauth_consumer_key: "<%= token.client_application.key %>",
29         oauth_secret: "<%= token.client_application.secret %>",
30         oauth_token: "<%= token.token %>",
31         oauth_token_secret: "<%= token.secret %>"
32       });
33
34     id.map().on('move.embed', parent.$.throttle(250, function() {
35       var extent = id.map().extent(),
36           zoom = ~~id.map().zoom(),
37           center = id.map().center();
38
39       parent.updatelinks({
40           lon: center[0],
41           lat: center[1]
42         },
43         zoom,
44         null,
45         [[extent[0][1],
46         extent[0][0]],
47         [extent[1][1],
48         extent[1][0]]]);
49
50       // Manually resolve URL to avoid iframe JS context weirdness.
51       // http://bl.ocks.org/jfirebaugh/5439412
52       var hash = parent.OSM.formatHash({ lon: center[0], lat: center[1], zoom: zoom });
53       if (hash !== parent.location.hash) {
54         parent.location.replace(parent.location.href.replace(/(#.*|$)/, hash));
55       }
56     }));
57
58     parent.$("body").on("click", "a.set_position", function (e) {
59       e.preventDefault();
60       var data = parent.$(this).data();
61
62       // 0ms timeout to avoid iframe JS context weirdness.
63       // http://bl.ocks.org/jfirebaugh/5439412
64       setTimeout(function() {
65         id.map().centerZoom(
66           [data.lon, data.lat],
67           Math.max(data.zoom || 15, 13));
68       }, 0);
69     });
70
71     d3.select('#id-container')
72       .call(id.ui());
73   }
74 </script>
75 </body>
76 </html>