-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathshared.html
26 lines (24 loc) · 997 Bytes
/
shared.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
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="stylesheet" href="../dist/lib/leaflet.css" />
<script src="../dist/lib/leaflet.js"></script>
<script src="../src/MapBBCode.js"></script>
<script src="../src/MapBBCodeUI.js"></script>
<script src="../src/MapBBCodeUI.Share.js"></script>
<script src="../src/images/EditorSprites.js"></script>
<script src="../src/controls/FunctionButton.js"></script>
<script src="../src/controls/LetterIcon.js"></script>
<script src="../src/controls/ExportButton.js"></script>
<script src="../src/handlers/Handler.Text.js"></script>
<script src="../src/handlers/Handler.Color.js"></script>
<script src="../src/strings/English.js"></script>
<p>This example test shared layers, present and missing, and default options.</p>
<div id="test"></div>
<div id="test2" style="margin-top: 1em;"></div>
<script>
L.DomEvent.on(window, 'load', function() {
var mapBB = new MapBBCode();
mapBB.showExternal('test', 'gkdi');
mapBB.showExternal('test2', 'nonesuch');
});
</script>