Adding maps for test metadata

Documentation of metadata functions/methods
This commit is contained in:
GRL 2021-05-20 08:58:05 +02:00
parent ce0a72c6ce
commit 96545c618a
16 changed files with 1571 additions and 59 deletions

View file

@ -0,0 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<script src="http://play.workadventure.localhost/iframe_api.js"></script>
</head>
<body>
<div>
<label for="show/hideLayer">Crysal Layer : </label><input type="checkbox" id="show/hideLayer" name="visible" value="show" checked>
</div>
<script>
document.getElementById('show/hideLayer').onclick = () => {
if (document.getElementById('show/hideLayer').checked) {
WA.showLayer('crystal');
}
else {
WA.hideLayer('crystal');
}
}
</script>
</body>
</html>