&nbsp; hi to all list member,<br><br>&nbsp; This week-end, I wrote a quick GPX parser for Ka-Map, to display waypoints on a world map, nothing very fancy. Nevertheless, I decided to use graphical icons (KaXmlIcon) for the waypoints on Ka-Map 
1.0, and I realised that contrary to Overlay reference that is on the wiki on Omniverdi, the variables to initialize for the icons are not x,y and img, but icon_x, icon_y and icon_img: am I right, or is there something I did not understand in the way I should use KaXmlIcon (see code below)? Anyway, using variables prefixed by &quot;icon_&quot;, everything works very well!
<br><br>&nbsp;&nbsp; Otherwise, any hint on how best to implement MouseOver or Click callbacks on the icons would be most welcome...<br><br>&nbsp;&nbsp; My code looks like this:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (iconName != &quot;&quot;) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var my_icon = new kaXmlIcon();
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my_icon.icon_src = &quot;/relative_path/&quot; + iconName + &quot;.png&quot;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my_icon.icon_h = my_icon.icon_w =&nbsp; 10;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my_icon.opacity = 1;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my_point.addGraphic(my_icon);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var my_symbol = new kaXmlSymbol();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my_symbol.size = 6;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my_symbol.opacity = 0.7;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my_symbol.color = &#39;#ff0000&#39;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my_point.addGraphic(my_symbol);
<br><br><br>Thanks for your help! Is there a place, apart from this list, where I could post this GPX parser once it&#39;s ready ? One last thing, thanks for this project, Ka-Map is really powerful and easy to use!<br><br>
Regards,<br><br>Ed