From: Simon Winterberg on
I'm programming with Google earth toolbox.
I just want to insert my own description (with the ge_point function) to the pop up balloon of a point icon in Google earth. Without inserting anything the coordinates appears, so i tried to change this with "'description', desc" but nothing changes. Still the coordinates (like default) appears!
Code:
MtpStr = ge_point (lonKM, latKM, SirHoeh,'altitudeMode', 'clampToGround','iconURL',iconStr,'name',NameStr,...
'iconColor',IconFarbe,'iconScale',1,'description', desc)

The help file says:
'description' A description of objects can be included using this parameter. Its value must be passed as a character array. It will be displayed in the Google Earth Viewer within a pop-up text balloon. When only one point is passed to ge_point(), the default value is a table containing the coordinates; when multiple points are passed at ge_plot(), the default value of parameter 'description' is a null string (description='';).


How do I have to change the code to get the description or desc into the pop up balloon?