Search code examples
apigoogle-mapsgoogle-maps-api-3bing-mapsbing-api

Google maps or Bing maps API?


I'm trying to figure out what to use for my web application. I"m currently using Google maps api, however I have started looking at Bing maps api more. This application among other things, gives directions to where you have to go. The reason I'm thinking about going to Bing is that Google has gotten some addresses wrong (probably about 10%) and Bing has gotten 0 wrong so far. Does anyone know if one is more accurate than the other (other than me just performing my non scientific test on both). Also, I want to do other things in the future, like cluster pins. I know google maps can do that, but I'm not sure Bing can. So which one is more robust with more features? Finally, it looks like the aerial pictography of bing is much better than Google... Any thoughts on the two / any personal experience of using both?


Solution

  • As I pointed out in my comment, my experiences were different. I worked on a web app where a user enters a zip and the application shows interesting locations within a distance of X kilometers.

    Although the results from google were not that good, I really liked their maps API and I already had a reliable PHP library for displaying a map with markers for google maps. What I did: use YAHOOs webservice for geocoding (turning a zip in a latitude/longitude position) and use google maps in order to display a map with markers.

    What I want to say is: use the parts that fit you best.