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.

link|improve this question

75% accept rate
Their XML Response DTD published anywhere? schemas.microsoft.com/search/local/ws/rest/v1 redirects to an error page! – newbee Sep 22 '11 at 15:01
feedback

5 Answers

up vote 8 down vote accepted

Apparently, there now is a Bing Maps REST API: http://msdn.microsoft.com/en-us/library/ff701713.aspx

link|improve this answer
Lookie there -- they finally added one! – delfuego Jun 29 '10 at 11:24
feedback

Here is an example with codes... http://zachsgeospatial.blogspot.com/2011/05/geocoding-via-bing-maps-rest-api.html I hope it will be helpful to you

link|improve this answer
feedback

As far as I know, the SOAP client is the only one provided to access the geocoding service. I was expecting a REST access too because yahoo and google allow that, but I didn't find anything about it. Note however that I didn't find anything mentioning it wasn't possible to access the Bing Maps web services via REST, so there may be one....

link|improve this answer
feedback

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

link|improve this answer
1  
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 '09 at 15:17
Yeah, was thinking you could wrap the SOAP web service with a REST API – Shawn Miller Nov 20 '09 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 '09 at 16:46
feedback

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|improve this answer
1  
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 '09 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 '09 at 16:44
Mike, sure: code.google.com/apis/maps/documentation/geocoding is the reference. – delfuego Dec 11 '09 at 14:45
feedback

Your Answer

 
or
required, but never shown

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