vote up 1 vote down star

Is there a way to access the Bing Maps API via REST to obtain geocoding information from an address? This is something that's trivial to do with Google and Yahoo; what I'm looking for is functionality like this, from Yahoo:

http://developer.yahoo.com/maps/rest/V1/geocode.html

(Specifically, see the sample request URL on that page, but also imagine that URL with a simple "location" parameter rather than separate street, city, state, and zip parameters.)

I've found examples of using other parts of the Bing API via REST, but nothing that accesses the Maps API, or specifically, the geocoding functionality.

flag

2 Answers

vote up -1 vote down

Use the Bing Maps Geocode Service: http://msdn.microsoft.com/en-us/library/cc966793.aspx

link|flag
Um, nope, Shawn -- that's a SOAP web service, not REST. As I explained in the question, I'm looking for REST. – delfuego Nov 17 at 15:17
Yeah, was thinking you could wrap the SOAP web service with a REST API – Shawn Miller Nov 20 at 17:27
(No offense meant, really, but I'm not sure how I could have intuited that intention from your response...) – delfuego Nov 23 at 16:46
vote up -1 vote down

In short, no.

The Google API Terms Of Service states that...

the geocoding service may only be used in conjunction with displaying results on a Google map; geocoding results without displaying them on a map is prohibited. For complete details on allowed usage, consult the Maps API Terms of Service License Restrictions.

So Google tries to restrict as much as possible the use of the the Geocoding services outside of their API (their JavaScript objects). Recently a lot of posts were written about JSONP being suddenly broken with their service: http://code.google.com/p/gmaps-api-issues/issues/detail?id=1872#c7

I think the real reason behind it is to prevent the use of the service with 3rd parties libraries and widgets.

Hope this helps

link|flag
Mike, that's not what I asked -- Google HAS a REST interface to its mapping data, a well-documented one at that. I'm looking for a Bing mapping data REST interface. – delfuego Dec 4 at 14:34
Oh I'm really sorry I misread your question... I thought you were asking for Google's! But can you provide a link for the documentation about REST Google API Services? I'm still not sure there's an official way with Google to access the Geocoding service outside the API. – Mike Gleason jr Couturier Dec 4 at 16:44
Mike, sure: code.google.com/apis/maps/… is the reference. – delfuego 19 hours ago

Your Answer

Get an OpenID
or

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