|
I am using google earth toolbox for matlab I can display some data in balloon for a specific placemark (lat and long),
iconStr1 = 'http://maps.google.com/mapfiles/kml/paddle/grn-blank.png';
kmlStr01 = ge_point(pos1_lon,pos1_lat,0,...
'iconURL',iconStr1,...
'pointDataCell',myData1,...
'name', 'Position 1');
but i would like to show a image of plot in balloon in google earth, and also a hyperlink to a audio file in the computer. How do i go about doing this? I cannot do this manually since i have to create a 1000 kmz files.
|