是否可以在弹出的 Google 地球地标中放置 ActiveX 控件?
我有一个专有的第三方 activex 控件,可以嵌入 HTML。这适用于 Google 地球吗?
是否可以在弹出的 Google 地球地标中放置 ActiveX 控件?
我有一个专有的第三方 activex 控件,可以嵌入 HTML。这适用于 Google 地球吗?
您应该尝试将您的 activex 控件的 html 标记放入一个简单的 Kml 文件中以对其进行测试。
将代码示例另存为“test.kml”,并在指示的位置插入嵌入代码。然后只需在 Google 地球中打开“test.kml”文件。控件应位于“simple activex test”地标气球内。
我知道以这种方式嵌入 Flash 是有效的——但在不知道您使用的是什么控件的情况下,很难说在这种情况下它是否适合您。
<?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>