KML:有一个带图标或图钉的多边形?

时间:2013-06-28 13:34:52

标签: icons kml polygon pushpin

我需要使用矩形多边形在地球上显示区域。然而,由于其中一些很小,当地球缩小时,它们几乎不可能看到。作为一个潜在的解决方案,我想在它的中心放置一个图标,因为图标在放大和缩小时总是保持相同的大小。

当我点击多边形时,我也会在气球中弹出信息,我也希望将其移到点击图标上。我有一切工作使用两个单独的地标对象(一个是多边形,另一个是带有图标的点),但这需要制作气球文本的两个副本。由于气球中会显示大量区域和大量信息,因此在文件中出现两次会使文件过大。

有没有办法将这些组合成一个对象与多边形中心的图标?

<?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>

1 个答案:

答案 0 :(得分:3)

使用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>