Google Earth Popup Video (ActiveX)

Is it possible to place an ActiveX control on a Google Earth method?

I have my own 3rd party ActiveX control that can be embedded in HTML. Will this work for Google Earth?

0


source to share


1 answer


You should try and put the html markup for your activex control in a simple Kml file to test it.

Save the sample code as "test.kml" and paste your embed code at the point indicated. Then just open the test.kml file in Google Earth. The control must be inside the "simple activex test" ball.



I know embedding flash in this way works, but without knowing which control you are using it is difficult to say whether or not it will work for you in this case.

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Document>
    <Placemark>
      <name>simple activex test</name>
      <description>
        <![CDATA[
          <!-- code to embed activex control code here -->
        ]]>
      </description>
      <Point>
        <coordinates>52,-1</coordinates>
      </Point>
    </Placemark>
  </Document>
</kml>

      

+1


source







All Articles