问题标签 [getdistance]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
233 浏览

ajax - 谷歌地图在 For Loop 内调用不返回距离

我在我的javascript中的for循环中调用谷歌地图,因为我有多个需要根据距离单独计算成本的路线。

除了仅返回其中一条路线的距离外,一切都很好。

我有一种感觉,这与我在 ajax 调用地图中声明项目的方式有关。任何想法可能是下面代码中的问题?

0 投票
2 回答
15696 浏览

mongodb - MongoDB绑定查询:如何将英里转换为弧度?

我在位置属性上有一组带有地理空间索引的商店。

我想要做的是给定用户的纬度、纬度和搜索半径 (mi),我想返回这些参数内的商店列表。

我在 MongoDB 文档 ( http://www.mongodb.org/display/DOCS/Geospatial+Indexing )上看到了以下示例,但看起来距离是以弧度为单位的。

那么,将英里转换为弧度的公式是什么?

解决方案 mongodb-user 很棒的人帮我找到了答案。基本上,我真正想要的是一种限制距离的方法。

根据更新的文档,$near 查询有第三个参数:您也可以使用 $near 和最大距离

$maxDistance 的值以弧度为单位;所以,我必须以英里为单位,除以 69。

谢谢!

0 投票
3 回答
9024 浏览

c# - Windows 8 Metro 风格应用中 .NET GeoCoordinate.GetDistanceTo 的等价物

Metro 风格的 Windows 8 应用程序中 System.Device.Location.GeoCoordinate.GetDistanceTo 方法的等价物是什么。

Metro 应用程序具有 Geocoordinate 类(使用小写“C”),但没有 GetDistanceTo 方法。

其次,Metro Geocoordinate 类没有构造函数。我怎样才能创建它的一个实例。

0 投票
4 回答
2156 浏览

javascript - 如何在我的 javascript 中获得以 KM 为单位的总距离

如何在我的 javascript 中获得以 KM 为单位的总距离。它已经显示在面板顶部,但我的 javascript 中也需要这个值。我的javascript如下:

该功能正在运行,但我也想提醒总距离。这可以在面板顶部看到。该面板将来将不可见,因此 getelementbyID 函数是不够的。

有人可以帮我弄这个吗?

谢谢你!

塞尔吉奥

0 投票
2 回答
2727 浏览

android - 计算两个位置之间的距离 Android Studio

我正在构建一个跟踪我的跑步和行走的应用程序,但我在计算总距离时遇到了一些麻烦。

这是我的代码的一部分,我在其中获取纬度和经度的值以及计算距离的地方。

在此处输入图像描述

如果我不移动,总距离总是在增加,大约 10(不知道它是否以米为单位),并且我得到的值看起来不正确。

0 投票
1 回答
59 浏览

c++14 - 有效计算二维 int 数组中的距离

我正在制作一个轰炸机类型的游戏。我想计算两点之间的距离;玩家可以向四个方向移动。如果我在 (0,0) 并且想去 (5,5),我可以使用出租车距离公式 ((5-0) + (5-0)) 计算距离,因为我只能水平移动和垂直的。

但是现在我想在游戏中实现玩家无法移动的墙。

我目前仅使用出租车公式的距离实现。

考虑到中间的不可移动的盒子/墙壁,我如何找到两点 (x1,y1) 和 (x2,y2) 之间的距离?

0 投票
0 回答
316 浏览

javascript - 如何使用 Nativescript 获取两个位置之间的距离

当我有两个位置时,我想获得距离。

首先:我从geoLocation.

this.currentGeoLocation.longitudethis.currentGeoLocation.latitude获取坐标。

第二:

从这个功能:

我得到这个带有其他坐标的 JSON:

我在这里看到如何计算距离

错误:无法在数字“61.126601199999996”上创建属性“android”

0 投票
1 回答
97 浏览

excel - 以下代码在 Excel VBA 中没有找到两个单元格之间的距离,使用 Google API 来查找距离

google api无法在Excel VBA中查找源和目标之间的距离

我尝试更改 API,但它不是 API,而是代码。

0 投票
2 回答
2662 浏览

dictionary - Flutter - 如何在我的未来构建器文本小部件中获得价值回报

我试图在成功的未来构建中获取距离二坐标,但我正在寻找如何在我的代码的 body: 中的 Text() 小部件中获取返回的值“kmDis”。在下面查看我的完整代码。

0 投票
0 回答
34 浏览

python-3.x - Calculating the average atomic distance between atoms in a trajectory file

I am unable to calculate the average values of atomic distances using NumPy with Python. I used get_distances to get the distance values of the atoms in the trajectory file and I want to calculate the average of these distances.

I have tried to solve this on my own by reading other StackOverflow questions with similar problems and the ASE website(https://wiki.fysik.dtu.dk/ase/ase/atoms.html#ase.Atoms.get_all_distances) to figure out how to get the average distance values.

The current error I have now is The truth value of an array with more than one element is ambiguous. Use a.any() or a.all() To my understanding, NumPy is reading the 'mic=True, vector=True' from the line below as an unclear message because it could relate to various ways the elements could be True, however, I do not know how to specify if all of the elements are True or if there is maybe an error earlier in my script.

Here is the code I have so far with the output error. I am wondering how to incorporate a.any() or a.all() into my code or if I should use np.array as I saw that helped others with this issue. Any help would be greatly appreciated since I am new to writing codes in python and I am struggling to understand my errors.

Input:

Output: