Get started

1. Add the necessary files and DOM stuff

Add the following files to your html file

<link rel="stylesheet" href="https://api.mazemap.com/js/v1.0.5/mazemap.min.css">
<script type='text/javascript' src='https://api.mazemap.com/js/v1.0.5/mazemap.min.js'></script>

Add a container in the <body>:

<div id='mazemap-container' style="width: 100%; height: 100%;"></div>

And initialize that container using Maze.map() in javascript.

<script>
    var map = Maze.map('mazemap-container', {});
</script>

2. Begin scripting with the map

    map.setView([63,10]);

3. Learn from examples

Study examples on the example page

Go to examples page