KML(钥匙孔标记语言)使用基于XML标准的基于标签的结构。Google的开发人员页面上有一些关于如何设置KML文件的非常好的信息。
这是“开发者”页面的链接:https :
//developers.google.com/kml/documentation/kml_tut
您可以在记事本编辑器中编辑KML文件,例如Notepad ++或Sublime Text。这可以让您重新排列文件夹,以及更改图层顺序。
文件夹使用XML标记“文件夹”,并且文件夹内的项目可以是“地标”,“文档”,“ GroundOverlay”等。
通过在文本编辑器中编辑文件,可以更改每个单独功能的属性。
这是一个示例KML布局:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>Paths</name>
<description>Examples of paths. Note that the tessellate tag is by default
set to 0. If you want to create tessellated lines, they must be authored
(or edited) directly in KML.</description>
<Style id="yellowLineGreenPoly">
<LineStyle>
<color>7f00ffff</color>
<width>4</width>
</LineStyle>
<PolyStyle>
<color>7f00ff00</color>
</PolyStyle>
</Style>
<Folder>
<Placemark>
<name>Absolute Extruded</name>
<description>Transparent green wall with yellow outlines</description>
<styleUrl>#yellowLineGreenPoly</styleUrl>
<LineString>
<extrude>1</extrude>
<tessellate>1</tessellate>
<altitudeMode>absolute</altitudeMode>
<coordinates> -112.2550785337791,36.07954952145647,2357
-112.2549277039738,36.08117083492122,2357
-112.2552505069063,36.08260761307279,2357
-112.2564540158376,36.08395660588506,2357
</coordinates>
</LineString>
</Placemark>
</Folder>
</Document>
</kml>