add Logo in kml file

872 Views Asked by At

I want to add my company logo in kml file using c#.

I have tried a lot of things but nothing works.

Please help me out thanks in advance.

1

There are 1 best solutions below

7
On

To add your logo to the KML you can add a ScreenOverlay to the KML.

The screen overlay defines an image that always appears at a fixed position on the screen that does not change when you change location or zoom in/out. The imagery overlay, on the other hand, is fixed to a location on the map that moves as the view changes.

To make a logo appear in the lower-left of the map add this to your KML:

 <ScreenOverlay>
    <name>Logo</name>   
    <description>Screen overlay Example</description>
    <Icon>
      <href>http://www.google.com/intl/en_ALL/images/logo.gif</href>
    </Icon> 
    <!-- put image at the left-corner of the image -->
    <overlayXY x="0" y="0" xunits="fraction" yunits="fraction" />
    <screenXY x="5" y="5" xunits="pixels" yunits="pixels" />    
  </ScreenOverlay>

The <overlayXY> element defines an point in the image and the <screenXY> defines an anchor point on the map that the overlay image is anchored to. The points in the overlay can be defined in either pixel coordinate system or a fractional-coordinate system.

First get the KML to the way you want it to appear in Google Earth then make the changes to your C# code to generate it.

For a real-world example of a logo in KML see the USGS Earthquake KML
http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_month_age_link.kml