Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
function target = screenoverlay(this,overlayXY,screenXY,sz,varargin)
%KML.SCREENOVERLAY(overlayXY,screenXY,sz) Places the image file (specified by the pair
% attribute 'file','image.png') as a screen overlay in the kml file.
% Check https://developers.google.com/kml/documentation/kmlreference#screenoverlay for more info.
% To make the overlay transparent, change the alpha portion of the color parameter
% to a different hex value - eg.: 50% transparent, use KML.OVERLAY(...,'color','80FFFFFF')
%
% Copyright 2012 Rafael Fernandes de Oliveira (rafael@rafael.aero)
% $Revision: 2.4 $ $Date: 2012/12/07 08:00:00 $
target = struct('type','','id','');
p = inputParser;
p.addRequired('overlayXY', @(a)isnumeric(a) && ~isempty(a) && numel(a)==2);
p.addRequired('screenXY', @(a)isnumeric(a) && ~isempty(a) && numel(a)==2);
p.addRequired('sz',@(a)isnumeric(a) && ~isempty(a) && numel(a)==2);
p.addParamValue('id',kml.getTempID('kml_overlay'),@ischar);
p.addParamValue('name','kml_overlay',@ischar);
p.addParamValue('description','',@ischar);
p.addParamValue('visibility',true,@islogical);
p.addParamValue('file','',@ischar);
p.addParamValue('viewBoundScale',1,@(a)isnumeric(a) && numel(a)==1);
p.addParamValue('color','FFFFFFFF',@(a)ischar(a) && numel(a)==8);
p.addParamValue('altitude',1,@(a)isnumeric(a) &&~isempty(a) && numel(a)==1);
p.addParamValue('rotation',0,@(a)isnumeric(a) &&~isempty(a) && numel(a)==1);
p.addParamValue('drawOrder',0,@(a)isnumeric(a) &&~isempty(a) && numel(a)==1);
p.addParamValue('altitudeMode','clampToGround',@(a)ismember(a,{'clampToGround','absolute'}));
p.addParamValue('units','fraction',@(a)ismember(a,{'fraction','pixels','insetPixels'}));
p.addParamValue('timeStamp','',@ischar);
p.addParamValue('timeSpanBegin','',@ischar);
p.addParamValue('timeSpanEnd','',@ischar);
p.parse(overlayXY,screenXY,sz,varargin{:});
arg = p.Results;
if isempty(arg.file)
error('Missing file parameter')
end
arg.rotation = this.checkUnit(arg.rotation);
arg.overlayPos = overlayXY;
arg.screenPos = screenXY;
arg.sz = sz;
% <ScreenOverlay id="khScreenOverlay756">
% <name>Simple crosshairs</name>
% <description>This screen overlay uses fractional positioning
% to put the image in the exact center of the screen</description>
% <Icon>
% <href>http://myserver/myimage.jpg</href>
% </Icon>
% <overlayXY x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
% <screenXY x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
% <rotation>39.37878630116985</rotation>
% <size x="0" y="0" xunits="pixels" yunits="pixels"/>
% </ScreenOverlay>
%%
overlay = this.xml.createElement('ScreenOverlay');
overlayXY = this.xml.createElement('overlayXY');
screenXY = this.xml.createElement('screenXY');
size = this.xml.createElement('size');
icon = this.xml.createElement('Icon');
overlay.setAttribute('id',arg.id);
overlay.appendChild(this.textNode('name',arg.name));
overlay.appendChild(this.textNode('open','1'));
overlay.appendChild(this.textNode('visibility',num2str(arg.visibility)));
overlay.appendChild(this.textNode('description',arg.description));
overlay.appendChild(this.textNode('drawOrder',num2str(arg.drawOrder)));
overlay.appendChild(this.textNode('color',arg.color));
if ~isempty(arg.timeStamp)
timeStamp = this.xml.createElement('TimeStamp');
timeStamp.appendChild(this.textNode('when',arg.timeStamp));
overlay.appendChild(timeStamp);
elseif ~isempty(arg.timeSpanBegin) || ~isempty(arg.timeSpanEnd)
timeSpan = this.xml.createElement('TimeSpan');
if ~isempty(arg.timeSpanBegin)
timeSpan.appendChild(this.textNode('begin',arg.timeSpanBegin));
end
if ~isempty(arg.timeSpanEnd)
timeSpan.appendChild(this.textNode('end',arg.timeSpanEnd));
end
overlay.appendChild(timeSpan);
end
overlayXY.setAttribute('x',num2str(arg.overlayPos(1),16))
overlayXY.setAttribute('y',num2str(arg.overlayPos(2),16))
overlayXY.setAttribute('xunits','fraction')
overlayXY.setAttribute('yunits','fraction')
screenXY.setAttribute('x',num2str(arg.screenPos(1),16))
screenXY.setAttribute('y',num2str(arg.screenPos(2),16))
screenXY.setAttribute('xunits','fraction')
screenXY.setAttribute('yunits','fraction')
size.setAttribute('x',num2str(arg.sz(1)))
size.setAttribute('y',num2str(arg.sz(2)))
size.setAttribute('xunits','fraction')
size.setAttribute('yunits','fraction')
overlay.appendChild(this.textNode('rotation', num2str(arg.rotation)));
icon.appendChild(this.textNode('href',arg.file));
overlay.appendChild(overlayXY);
overlay.appendChild(screenXY);
overlay.appendChild(size);
overlay.appendChild(icon);
this.doc.appendChild(overlay);
target.id = arg.id;
target.type = 'ScreenOverlay';
this.addIncludeFile(arg.file);
end