When you have KML like the KML below Google Earth resolves the style
by blending the styleUrl and the inline Style element, but
CreateResolvedStyle only pulls the inline style, disregarding the
shared style. Is this expected, or should CreateResolvedStyle work
like GE?
<kml>
<Document>
<Style id="airplane">
<IconStyle>
<Icon>
<href>
http://osm-kml.appspot.com/static/airplane.png</href>
</Icon>
</IconStyle>
</Style>
<Placemark>
<styleUrl>airplane</styleUrl>
<Style>
<IconStyle>
<scale>2.75</scale>
<heading>333</heading>
</IconStyle>
</Style>
<Point>...
... move kml follows ...
--
http://www.falconview.org/