无法显示 KML 中的特定经纬度

Specific lat lng in KML can't be shown

我试图在 kml 中显示以下坐标,但无法使用 Google 地图正确显示:

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
  <Placemark>
    <name>Invercargill Rocks!</name>
    <description>Go there and see!</description>
    <Point>
      <coordinates>43.006687,144.391647</coordinates>
    </Point>
  </Placemark>
</kml>

我使用以下站点检查 kml 是否有效: http://display-kml.appspot.com/

它适用于以下坐标,但不适用于我的坐标。

有人能告诉我为什么吗?

如 geocodezip 所述,正确的顺序必须是 lng 和 lat。