我正在尝试创建随机经度和纬度。我需要在两者之间创建数字 -180.000和+180.000。所以,我可能得到101.325或-3.546或-179.561。
你能告诉我一个快速的公式吗?
感谢大家的帮助。我结合了几个例子来满足我的需求。是的,我可以缩短代码,但这确实有助于了解正在发生的事情。
// LONGITUDE -180 to + 180
function generateRandomLong() {
var num = (Math.random()*180).toFixed(3);
var posorneg = Math.floor(Math.random());
if (posorneg == 0) {
num = num * -1;
}
return num;
}
// LATITUDE -90 to +90
function generateRandomLat() {
var num = (Math.random()*90).toFixed(3);
var posorneg = Math.floor(Math.random());
if (posorneg == 0) {
num = num * -1;
}
return num;
}
答案 0 :(得分:59)
function getRandomInRange(from, to, fixed) {
return (Math.random() * (to - from) + from).toFixed(fixed) * 1;
// .toFixed() returns string, so ' * 1' is a trick to convert to number
}
在您的情况下:getRandomInRange(-180, 180, 3)
:
12.693
-164.602
-7.076
-37.286
52.347
-160.839
答案 1 :(得分:5)
Math.random()*360 - 180
将获得-180到180
的范围如果你真的只想要3个小数位
Math.round((Math.random()*360 - 180) * 1000)/1000
答案 2 :(得分:2)
function generateRandomLatLng()
{
var num = Math.random()*180;
var posorneg = Math.floor(Math.random());
if (posorneg == 0)
{
num = num * -1;
}
return num;
}
答案 3 :(得分:0)
这应该有效
Math.random() * 360 - 180
答案 4 :(得分:0)
这是我做的一个功能:
function Rand(x, y){
//Returns a random number between 0 and X if Y is undefined
//Returns a random number between X and Y if Y is defined
return x+(Math.random()*(y-x)) || Math.random()*x;
}
这适用于整数和浮点数。
答案 5 :(得分:0)
您可以尝试http://www.geomidpoint.com/random/
功能: