kartograph / kartograph.org

website for kartograph mapping library
http://kartograph.org
282 stars 207 forks source link

worldmap showcase #70

Closed wiesson closed 8 years ago

wiesson commented 8 years ago

The worldmap showcase seems not to be finished. Is there a working worldmap showcase?

I tried something like this, but it does not work:

<div id="map"></div>

<script>
    var map = kartograph.map($('#map'));
    map.loadMap('lib/world.svg', function() {
    });
</script> 
wiesson commented 8 years ago

fixed it by myself by adding the countries layer:

    map.loadMap('lib/world.svg', function() {
        map.addLayer('countries');
    });