gpt4 book ai didi

kml - 获取地标的纬度和经度值 - Google 地球

转载 作者:行者123 更新时间:2023-12-04 05:50:17 27 4
gpt4 key购买 nike

我正在使用 Google Earth API,而且我是新手。我使用 kml 标记了一个地标,并为此添加了一个点击事件。我想获得这个地标的纬度和经度值。虽然我正在使用 getLatitude() getLongitude() 功能,但数值不准确。我想要与 kml 中定义的值完全相同的值。我得到的值因点数而异。

有没有办法做到这一点?

谢谢

舒布拉

最佳答案

我为您准备了以下示例。它获取 kml 文件并将点击事件附加到地标。警报的纬度和经度值与 kml 文件完全相同。希望能帮助到你。

<html>
<head>
<title>sample.html</title>
<script src="http://www.google.com/jsapi?key=ABQIAAAAwbkbZLyhsmTCWXbTcjbgbRSzHs7K5SvaUdm8ua-Xxy_-2dYwMxQMhnagaawTo7L1FE1-amhuQxIlXw"></script>
<script type="text/javascript">
var ge;
google.load('earth', '1');

function init() {
google.earth.createInstance('map3d', initCB, failureCB);
}

function initCB(instance) {
ge = instance;
ge.getWindow().setVisibility(true);

var href = 'http://code.google.com/'
+ 'apis/earth/documentation/samples/kml_example.kml';

google.earth.fetchKml(ge, href, function(kmlObject) {
if (kmlObject)
{
ge.getFeatures().appendChild(kmlObject);
google.earth.addEventListener(kmlObject, 'click', function(event) {
var placemark = event.getTarget();
alert('Latitude :' + placemark.getGeometry().getLatitude()
+' Longitude :' + placemark.getGeometry().getLongitude());
});
}
if (kmlObject.getAbstractView() !== null)
ge.getView().setAbstractView(kmlObject.getAbstractView());
});
}

function failureCB(errorCode) {
}
google.setOnLoadCallback(init);
</script>

</head>
<body>
<div id="map3d" style="border: 1px solid silver; height: 400px; width: 600px;"> </div>
</body>
</html>

关于kml - 获取地标的纬度和经度值 - Google 地球,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10137786/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com