27 mar 2008

Sposób na wyświetlenie właściwości obiektu overlay

GEvent.addListener(map, "singlerightclick", function (pixel, title, overlay) {
  obiekt_property = '';

  for (i in overlay)
    obiekt_property += i + ' ' + overlay[i] + "";
  alert(obiekt_property);
});