我正在使用Java API for KML创建带有多个地标的KML文件,每个地标都有一个描述弹出窗口。在弹出窗口中,我想链接到我在localhost上运行的REST API。
我尝试使用直接调用API的简单href
,但单击后会打开一个新窗口,我不想发生。
然后,我尝试将链接更改为button
,该链接应触发callAPI
JavaScript函数以调用API,而无需打开新窗口。这是我的Java代码:
final Kml kml = new Kml();
Document doc = kml.createAndSetDocument()
.withName("My KML File")
.withOpen(true);
BalloonStyle bstyle = doc.createAndAddStyle()
.withId("balloonstyle")
.createAndSetBalloonStyle()
.withId("ID")
.withText("<font face='Courier' size='3'>$[description]</font><br/>");
Folder folder = doc.createAndAddFolder().withName("Placemark Points").withOpen(true);
Placemark placemark = folder.createAndAddPlacemark()
.withName("My Placemark")
.withVisibility(true)
.withOpen(true)
.withStyleUrl("#balloonstyle");
placemark.createAndSetPoint()
.withExtrude(false)
.withAltitudeMode(AltitudeMode.CLAMP_TO_GROUND)
.addToCoordinates(0.0, 0.0); // Using 0,0 as placeholder
placemark.setDescription(
"<button type=\"button\" onclick=\"callAPI()\"/>Call API</button>" +
"<script type=\"text/javascript\"> " +
"function callAPI() { " +
"var xhttp = new XMLHttpRequest(); " +
"xhttp.open('GET', '" + apiUrl + "', true); " + // apiURL = url to my REST API
"xhttp.send(); }" +
"</script>"
);
旁注:我已经看到了JAK示例,该示例涉及在描述周围包括<![CDATA[...]]>
标记,但这会引起一些格式问题,而且似乎没有必要(当我将生成的KML文件导入Google Earth时,说明中的HTML无需标签即可使用(标签本身似乎会自动出现)。我也尝试将标签放回去,但并没有解决问题。
这是一个示例KML文件,它是通过运行我的代码生成的(我已用伪造的API URL https://jsonplaceholder.typicode.com/todos/1代替了我的URL作为占位符):
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:kml xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:ns2="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:xal="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0">
<ns2:Document>
<ns2:name>My KML File</ns2:name>
<ns2:open>1</ns2:open>
<ns2:Style id="balloonstyle">
<ns2:BalloonStyle id="ID">
<ns2:text><font face='Courier' size='3'>$[description]</font></ns2:text>
</ns2:BalloonStyle>
</ns2:Style>
<ns2:Folder>
<ns2:name>Placemark -- Points</ns2:name>
<ns2:open>1</ns2:open>
<ns2:Placemark>
<ns2:name>My Placemark</ns2:name>
<ns2:visibility>1</ns2:visibility>
<ns2:open>1</ns2:open>
<ns2:description><button type="button" onclick="callAPI()"/>Call API</button><script type="text/javascript"> function callAPI() { var xhttp = new XMLHttpRequest(); xhttp.open('GET', 'https://jsonplaceholder.typicode.com/todos/1', true); xhttp.send(); }</script></ns2:description>
<ns2:styleUrl>#balloonstyle</ns2:styleUrl>
<ns2:Point>
<ns2:extrude>0</ns2:extrude>
<ns2:altitudeMode>clampToGround</ns2:altitudeMode>
<ns2:coordinates>0.0,0.0</ns2:coordinates>
</ns2:Point>
</ns2:Placemark>
</ns2:Folder>
</ns2:Document>
</ns2:kml>
当我尝试将其导入到Chrome上的Google Earth时,单击按钮时出现此错误:
在HTMLButtonElement.onclick中未定义callAPI
在描述的格式中是否存在我做错了什么,因此无法分辨出我已经创建了callAPI
函数?
还是地标说明气球中的JavaScript在Google Earth上不起作用?
答案 0 :(得分:0)
大多数JavaScript应该可以在Google Earth中的气球中使用...在Earth Pro(v7.x,桌面应用程序)和新的Google Earth for web&mobile(v9.x)中都可以使用。将其加载到Google Earth Pro中后,您的KML和气球代码可以正常工作吗?
由于Google Earth for Web在浏览器中运行,因此在加载外部资源(图像文件等)时可能会有更多限制,包括正确设置CORS标头的要求。确保您的本地服务器设置为允许CORS请求。如果这样做没有帮助,可以共享一个示例KML吗?