forked from aaronlidman/osmly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
34 lines (32 loc) · 892 Bytes
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html>
<head>
<title>osmly</title>
<meta charset='utf-8'>
<link rel="stylesheet" href="dist/osmly.min.css" />
<script src="dist/libs.min.js"></script>
<script src="dist/osmly.min.js"></script>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
/* required settings (see settings_documentation.md):
- title
- instructions
- db
- context
- problems
- usePropertyAsTag
*/
var config = {
title: '',
instructions: '',
db: '',
usePropertyAsTag: [],
context: {},
problems: [],
};
osmly.go(config);
</script>
</body>
</html>