1
こんにちは、私はopenlayersで2つのマーカーの間の距離を見つける方法を知りたいです。オープンレイヤーの2つのマーカー間の距離を見つける方法は?
var distance = distanceBetweenMarkers(latLon1, latLon2){
//code to find the distance between latLon1, latLon2
}
pleae
こんにちは、私はopenlayersで2つのマーカーの間の距離を見つける方法を知りたいです。オープンレイヤーの2つのマーカー間の距離を見つける方法は?
var distance = distanceBetweenMarkers(latLon1, latLon2){
//code to find the distance between latLon1, latLon2
}
pleae
があなたのLonLat
からポイントを作成して、[1] Geometry.Point
からdistanceTo
メソッドを呼び出して...私を助けて。
p1 = new OpenLayers.Geometry.Point(latLon1.lon,latLon1.lat);
p2 = new OpenLayers.Geometry.Point(latLon2.lon,latLon2.lat);
len = p1.distanceTo(p2);