最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How can get the distances between 2 points via Google Maps Javascript API3? - Stack Overflow

programmeradmin1浏览0评论

I am developing an application via the Google Maps API (Version 3).

I have 2 google.maps.LatLng objects named loc1 and loc2.

How do I calculate the distance between them in say meters?

I have tried using various tricks from this question to convert latitude/longitude measures into meters. However, I question the reliability of my implementation.

I have also tried implementing a distance matrix, but I think that a distance matrix is a lot of work just to calculate the distance between 2 points.

Thank you!

I am developing an application via the Google Maps API (Version 3).

I have 2 google.maps.LatLng objects named loc1 and loc2.

How do I calculate the distance between them in say meters?

I have tried using various tricks from this question to convert latitude/longitude measures into meters. However, I question the reliability of my implementation.

I have also tried implementing a distance matrix, but I think that a distance matrix is a lot of work just to calculate the distance between 2 points.

Thank you!

Share Improve this question edited May 23, 2017 at 11:47 CommunityBot 11 silver badge asked Mar 18, 2012 at 18:48 dangerChihuahua007dangerChihuahua007 21k38 gold badges128 silver badges211 bronze badges 1
  • Does this help? stackoverflow./questions/1502590/… – vascop Commented Mar 18, 2012 at 19:06
Add a ment  | 

4 Answers 4

Reset to default 9

Sounds simple, I remend the geometry library,

https://developers.google./maps/documentation/javascript/reference#spherical

puteDistanceBetween(from:LatLng, to:LatLng, radius?:number)

From my experience the result is in meters. Remember to add the optional geometry library in your tag

<script type="text/javascript" 
src="http://maps.googleapis./maps/api/js?libraries=geometry&sensor=false">
</script>

Calculating distances between two points basically boils down to pythagoras (sum of the squares etc). However, this doesn't really work with Lat & Lon (which are coordinates on a sphere). What I do is convert the Lat & Lon values to the local map grid which is flat. Then I can use pythagoras to calculate the distance between those points. I've already posted on this in Stack Overflow here. This will have all the code you would need.

Your question is a bit ambiguous.

I mean - when you say the distance, do mean

  • distance in a straight line
  • or driving distance,
  • or bicycle distance,
  • or walking distance. The answer to this question will determine your implementation.

If it is a straight line distance you need, then it is best to use the haversine implementation. Otherwise, you will need to request directions from the google directions service, specifying the mode of "transport".

When you've finished you can test the distance between two points on a straight line using the provided map. It will give you a visual as well as the distance.

发布评论

评论列表(0)

  1. 暂无评论