gpt4 book ai didi

css - 没有 styleUrl 的 KML 样式

转载 作者:行者123 更新时间:2023-11-28 17:11:19 25 4
gpt4 key购买 nike

有没有办法给例如着色。不使用 styleUrl 的地标?我想要做的是直接在地标内设置地标样式,而不是必须声明样式 ID 并在地标中引用该 ID。

我想象的是这样的:

<Folder>
<name>Paths</name>
<Placemark>
<name>Extruded</name>
<visibility>1</visibility>
<LineString color="7f00ffff" width="2">
<extrude>1</extrude>
<tessellate>0</tessellate>
<altitudeMode>absolute</altitudeMode>
<coordinates>
-112.2656634181359,36.09445214722695,2630
-112.2652238941097,36.09520916122063,2630
-112.2645079986395,36.09580763864907,2830
</coordinates>
</LineString>
</Placemark>
</Folder>

最佳答案

我自己想通了。您只需将样式标签添加到地标内,但对象之外。我在提问之前犯了一个错误,将样式标签放在线串中。

满足我需求的代码:

<Folder>
<name>Paths</name>
<Placemark>
<Style>
<LineStyle>
<color>7f00ffff</color>
<width>2</width>
</LineStyle>
</Style>
<name>Extruded</name>
<visibility>1</visibility>
<LineString>
<extrude>1</extrude>
<tessellate>0</tessellate>
<altitudeMode>absolute</altitudeMode>
<coordinates>
-112.2656634181359,36.09445214722695,2630
-112.2652238941097,36.09520916122063,2630
-112.2645079986395,36.09580763864907,2830
</coordinates>
</LineString>
</Placemark>
</Folder>

关于css - 没有 styleUrl 的 KML 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45585199/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com