mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
27 lines
810 B
HTML
27 lines
810 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>iD</title>
|
|
<link rel='stylesheet' href='css/reset.css'>
|
|
<link rel='stylesheet' href='css/map.css'>
|
|
<link rel='stylesheet' href='css/app.css'>
|
|
<link rel='stylesheet' href='css/preset-icons.css'>
|
|
|
|
<!-- mobile devices -->
|
|
<meta name='viewport' content='initial-scale=1.0 maximum-scale=1.0'>
|
|
<meta name='apple-mobile-web-app-capable' content='yes' />
|
|
<meta name='apple-mobile-web-app-status-bar-style' content='black-translucent' />
|
|
|
|
<script src='iD.min.js'></script>
|
|
</head>
|
|
<body>
|
|
<div id='iD'></div>
|
|
<script>
|
|
var id = iD();
|
|
d3.select('#iD')
|
|
.call(id.ui());
|
|
</script>
|
|
</body>
|
|
</html>
|