我正在使用我构建的应用程序构建KML文件。现在我很好地在地图上绘制了一个线串。但是,现在我想在同一个KML文件中添加一些地标。尝试这样做时,它将显示行字符串或地点标记,但不会同时显示两者。
如何在KML文件中执行此操作?
我目前使用的是:
<?xml version="1.0" encoding="UTF-8"?>
<kml xsi:schemaLocation="http://earth.google.com/kml/2.1 http://earth.google.com/kml2.1.xsd" xmlns="http://earth.google.com/kml/2.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Placemark>
<name>My Name</name>
<Style>
<LineStyle>
<color>FF0000FF</color>
<width>3.0</width>
</LineStyle>
</Style>
<LineString>
<extrude>false</extrude>
<tessellate>true</tessellate>
<altitudeMode>clampToGround</altitudeMode>
<coordinates>A Ton of coordinates go here</coordinates>
</LineString>
</Placemark>
</kml>
答案 0 :(得分:1)
我弄清楚我必须将所有地标放入<Folder>
以显示多个地标,然后才有效。