Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/google-maps/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Xml 将KML导入谷歌地图后,该点显示在Antartica中_Xml_Google Maps_Kml - Fatal编程技术网

Xml 将KML导入谷歌地图后,该点显示在Antartica中

Xml 将KML导入谷歌地图后,该点显示在Antartica中,xml,google-maps,kml,Xml,Google Maps,Kml,我在想我做错了什么 以下是我的KML的一个非常简单的版本: <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2"> <Placemark> <name>SUNSHINE CHEVRON</name> <description>HIALEAH</description> <Point>

我在想我做错了什么

以下是我的KML的一个非常简单的版本:

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Placemark>
<name>SUNSHINE CHEVRON</name>
<description>HIALEAH</description>
<Point>
    <coordinates>25.872066,-80.282852,0</coordinates>
</Point>
</Placemark>
</kml>

阳光雪佛龙
海利亚
25.872066,-80.282852,0
当我尝试创建贴图并导入此点时,它会显示在Antartica中

有什么想法吗?我使用验证文件,它返回时没有错误

你能告诉我我做错了什么吗?

看,坐标是经度、纬度、[高度]

由经度、纬度和,
和高度(按顺序)。经度和纬度值以度为单位,
哪里:

经度≥ −这是完全正确的。当我翻动左、长键并保持0时,它起作用了。谢谢
A single tuple consisting of floating point values for longitude, latitude, 
and altitude (in that order). Longitude and latitude values are in degrees, 
where:

   longitude ≥ −180 and <= 180
   latitude ≥ −90 and ≤ 90
   altitude values (optional) are in meters above sea level
<coordinates>-80.282852,25.872066</coordinates>