Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I code something which'll calculate the driving distance between 2 zip codes within the USA in PHP. An API or web service that has SOAP or REST will also do.

But I understand GoogleMaps API can't be used because it violates the TOS.. So I need a way without using Google Maps, because I have no intention of using their maps, just calculate the distance.

share|improve this question
1  
a quick google search shows many sites violating that TOS... – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè Aug 2 '11 at 19:28
Indeed, but my company will not be doing that! :) – Indranil Aug 3 '11 at 17:32

2 Answers

up vote 2 down vote accepted

There isn't a whole lot out there that's free, other than Google Maps. The MapQuest API may give you what you need. Here's their guide to the service - it addresses getting driving distances/times between a set of points. Their terms of service don't appear to require that you display a map, but take a look and see if that meets your needs.

share|improve this answer
I ended up using mapquest's API with a ZIP code to lat&long conversion DB, and got to say, works quite well. – Indranil Nov 3 '11 at 1:12

Google Maps Distance API has this exact Functionality. You can get a return as either xml or json.

Here is the documentation

https://developers.google.com/maps/documentation/distancematrix/

Here is a sample of the request url : http://maps.googleapis.com/maps/api/distancematrix/json?origins=Vancouver+BC|Seattle&destinations=San+Francisco|Victoria+BC&mode=bicycling&language=fr-FR&sensor=false

One nice thing is you dont have to calculate the long/lat first

share|improve this answer
1  
developers.google.com/maps/documentation/business ... I dont see any TOS issues but maybe I'm missing something – Adam Zeffer May 11 '12 at 13:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.