5 document.addEventListener("DOMContentLoaded", function () {
 
   6   var container = document.getElementById("id-container");
 
   8   if (typeof iD === "undefined" || !iD.utilDetect().support) {
 
   9     container.innerHTML = "This editor is supported " +
 
  10       "in Firefox, Chrome, Safari, Opera and Edge. " +
 
  11       "Please upgrade your browser or use JOSM to edit the map.";
 
  12     container.className = "unsupported";
 
  14     var idContext = iD.coreContext();
 
  15     idContext.connection().apiConnections([]);
 
  16     var url = location.protocol + "//" + location.host;
 
  19       apiUrl: url === "https://www.openstreetmap.org" ? "https://api.openstreetmap.org" : url,
 
  20       access_token: container.dataset.token
 
  26       .assetMap(JSON.parse(container.dataset.assetMap))
 
  27       .locale(container.dataset.locale)
 
  28       .containerNode(container)
 
  31     id.map().on("move.embed", parent.$.throttle(250, function () {
 
  32       if (id.inIntro()) return;
 
  33       var zoom = ~~id.map().zoom(),
 
  34           center = id.map().center(),
 
  35           llz = { lon: center[0], lat: center[1], zoom: zoom };
 
  37       parent.updateLinks(llz, zoom);
 
  39       // Manually resolve URL to avoid iframe JS context weirdness.
 
  40       // http://bl.ocks.org/jfirebaugh/5439412
 
  41       var hash = parent.OSM.formatHash(llz);
 
  42       if (hash !== parent.location.hash) {
 
  43         parent.location.replace(parent.location.href.replace(/(#.*|$)/, hash));
 
  47     parent.$("body").on("click", "a.set_position", function (e) {
 
  49       var data = parent.$(this).data();
 
  51       // 0ms timeout to avoid iframe JS context weirdness.
 
  52       // http://bl.ocks.org/jfirebaugh/5439412
 
  53       setTimeout(function () {
 
  56           Math.max(data.zoom || 15, 13));