Haversine Distance Formula を使用しようとしています (ここにあります: http://www.movable-type.co.uk/scripts/latlong.html ) が、動作させることができません。次のコードを参照してください。
function test() {
var lat2 = 42.741;
var lon2 = -71.3161;
var lat1 = 42.806911;
var lon1 = -71.290611;
var R = 6371; // km
//has a problem with the .toRad() method below.
var dLat = (lat2-lat1).toRad();
var dLon = (lon2-lon1).toRad();
var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.cos(lat1.toRad()) * Math.cos(lat2.toRad()) *
Math.sin(dLon/2) * Math.sin(dLon/2);
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
var d = R * c;
alert(d);
}
エラーは次のとおりです。
Uncaught TypeError: Object -0.06591099999999983 has no method 'toRad'
次のことを行う必要があるため、私はそれを理解している:
Number.prototype.toRad = function() {
return this * Math.PI / 180;
}
しかし、これを関数の下に置くと、同じエラーメッセージが返されます。ヘルパーメソッドを使用するにはどうすればよいですか? または、これを機能させるためにこれをコーディングする別の方法はありますか? ありがとう!