Adding and updating test map for metadata

This commit is contained in:
GRL 2021-05-26 17:18:38 +02:00
parent 17261dfab6
commit e1f0192e61
10 changed files with 87 additions and 608 deletions

View file

@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<script src="http://play.workadventure.localhost/iframe_api.js"></script>
</head>
<body>
<script>
WA.getCurrentRoom().then((room) => {
console.log('id : ', room.id);
console.log('map : ', room.map);
console.log('mapUrl : ', room.mapUrl);
console.log('startLayer : ', room.startLayer);
})
</script>
</body>
</html>