我需要使用矩形多边形显示地球仪上的区域。然而,由于它们中的一些很小,当地球缩小时,它们几乎看不见。作为一个潜在的解决方案,我想把一个图标放在它的中心,因为图标在放大和缩小时总是保持相同的大小。
当我点击多边形时,我也会在气球中弹出信息,我想把这些信息也带到点击图标上。我使用两个独立的占位符对象(一个是多边形,另一个是带有图标的点)来处理所有内容,但这需要制作两个气球文本的副本。由于气球中会显示大量区域和大量信息,因此在文件中出现两次会使文件过大。
有没有什么方法可以将这些组合成一个对象,并将图标放在多边形的中心?
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2">
<Document>
<name>Area Box</name>
<open>1</open>
<Placemark>
<name>Area</name>
<Style>
<LineStyle>
<color>fff5f5f5</color>
<width>3</width>
</LineStyle>
<PolyStyle>
<color>aa00ffff</color>
</PolyStyle>
<BalloonStyle>
<text>
<![CDATA[Information Here]]>
</text>
</BalloonStyle>
</Style>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
-105,40,0 -104.8,40,0 -104.8,39.8,0 -105,39.8,0 -105,40,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>Icon</name>
<Style>
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal5/icon11.png</href>
</Icon>
</IconStyle>
<BalloonStyle>
<text>
<![CDATA[Information Here]]>
</text>
</BalloonStyle>
</Style>
<Point>
<coordinates>
-104.9,39.9,0
</coordinates>
</Point>
</Placemark>
</Document>
使用MultiGeometry
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2">
<Document>
<name>Area Box</name>
<open>1</open>
<Placemark>
<name>Area</name>
<Style>
<LineStyle>
<color>fff5f5f5</color>
<width>3</width>
</LineStyle>
<PolyStyle>
<color>aa00ffff</color>
</PolyStyle>
<BalloonStyle>
<text>
<![CDATA[Information Here]]>
</text>
</BalloonStyle>
</Style>
<MultiGeometry>
<Point>
<coordinates>
-104.9,39.9,0
</coordinates>
</Point>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
-105,40,0 -104.8,40,0 -104.8,39.8,0 -105,39.8,0 -105,40,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
</Placemark>