aboutsummaryrefslogtreecommitdiffhomepage
path: root/web/bookmarklet/add-map
blob: 4a4251a6b7f3a59ec4c21d328481682a7459f77d (plain)
1
2
3
4
5
6
7
8
9
javascript: (function() {
  mapDiv = document.createElement("div");
  mapDiv.setAttribute("class", 'map');
  document.body.append(mapDiv);
  script = document.createElement("script");
  script.src = 'https://unpkg.com/mapclay@0.1.3/js/mapclay.js';
  script.type = 'module';
  document.body.append(script);
})();