Skip to content
bizarre07 edited this page May 16, 2012 · 4 revisions
var cities = [{ name: 'Magdeburg', lat: 52, lon: 11 }];

map = kartograph.Map('mymap');
map.loadMap('germany.svg', function() {
   map.addLayer('countries');
   map.addSymbols({
      type: kartograph.Icon,
      data: cities,
      location: function(city) { return [city.lon, city.lat] },
      icon: 'foo.png',
      click: function(city) {
         console.log(city.name);
      }
   });
});
Clone this wiki locally