Galigeo API
    Preparing search index...

    Galigeo API

    This API provides a set of functions to embed Galigeo Maps into a web page.

    1. Download the JS API from https://api.galigeo.com/showcase/assets/js/galigeo-api.js
    2. Add it to your web page <script type="text/javascript" src="js/galigeo-api.js"></script>
    3. Add a div to the web page that will contain the map <div id="ggoMapId"></div>
    4. Init the map with Javascript:
    var ggoMap = new Galigeo.Map('ggoMapId',
    {
    mapId: 'MyMap',
    name: 'Map label',
    apiKey: 'Your API key',
    url: 'https://location/Galigeo'
    });
    ggoMap.load().then(()=>{
    // work with the map
    });

    Check our API samples

    Main product documentation.