2

在用于 Google Earth 消费的 KML 文件中,我使用了 Google Charts 动态图标,其 URL 包含百分比编码字符,例如this one。通过拦截网络调用可以看出,%E2%80%A2(子弹字符)被谷歌地球修改为%C3%A2%C2%80%C2%A2,导致图标检索失败。问题是 KML 规范非常模糊:对于 IconStyle Icon href 元素,它只会说它是“用于加载图标的 HTTP 地址 [...]”。那么,任何 Google 员工都可以阐明 Google 地球的期望以及如何使 KML 文件中带有百分比编码字符的图标 URL 正常工作吗?

请不要让我为上面的 URL 有什么不正确而感到悲伤:它在浏览器中运行良好(在替换为 & 号之后),并且在动态图标开发人员参考的中途有一个类似的示例。

一个实际的 KML 示例文件如下:

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
  <Folder>
    <Placemark>
      <Style>
        <IconStyle>
          <scale>1.6</scale>
          <Icon>
            <!-- doesn't work -->
            <href>http://chart.apis.google.com/chart?chst=d_map_pin_letter_withshadow&#x26;chld=%E2%80%A2|cccccc|000000</href>
          </Icon>
        </IconStyle>
      </Style>
      <Point>
        <coordinates>-3.67,40.51</coordinates>
      </Point>
    </Placemark>
    <Placemark>
      <Style>
        <IconStyle>
          <scale>1.6</scale>
          <Icon>
            <!-- works -->
            <href>http://chart.apis.google.com/chart?chst=d_map_pin_letter_withshadow&#x26;chld=O|cccccc|000000</href>
          </Icon>
        </IconStyle>
      </Style>
      <Point>
        <coordinates>-3.68,40.52</coordinates>
      </Point>
    </Placemark>
  </Folder>
</Document>
</kml>
4

1 回答 1

1

经过长时间的平静后,我回到了这个问题并找到了答案。即使您正在插入一个 URL,因此 URL 编码准则应该适用 KML 期望特殊实体是 Unicode 编码,而不是 URL 编码,即使在 URL 中也是如此!换句话说,你需要这个:

<href>http://chart.apis.google.com/chart?chst=d_map_pin_letter_withshadow&#x26;chld=&#x2022;|cccccc|000000</href>

回想起来,它需要“” 因为&符号应该让我走上正轨,但事后诸葛亮总是 20/20 ......

于 2013-06-02T06:28:58.453 回答