I am posting to peoples Facebook walls from my app. I need to show a thumbnail map image that is showing a different location for each post which should be straight forward, you simply pass along an image url when creating the post.
However, passing urls to google static maps does not work well. It shows sometimes but not reliably, many times the image is simply missing.
This problem has been seen by many others and after reading their posts and doing a lot of testing myself it seems that this is a problem at Facebook since they cache the result, most likely relating to usage limitations. It has been like this for some time. Description of the problem by someone else with example: https://groups.google.com/d/msg/google-maps-js-api-v3/52RDwMrzkSE/6zI8JWaTI4cJ It has been suggested that the problem relates to url format but this does not seems to be the case when viewing responses (in line with my test results). Instead it seems to be a problem with Facebook cashing the image as described further down in the same post: https://groups.google.com/d/msg/google-maps-js-api-v3/52RDwMrzkSE/UTe6P4mXgOkJ
I see two possible solutions to get around this problem:
Store the static image on own server. I tested to request the static image myself and upload and store it in my own App Engine server application. I then pass a url to my own application to Facebook when I create the post. The images are not modified in any way. This seems to work really well and reliable.
Create my own wrapper that accepts position info and responds with image that it retrieves from static map service. I have not tested this alternative. It would be created for my use only but I guess others could then use it without permission.
However, neither of these two solutions seems to be allowed when reading the terms:
"https://developers.google.com/maps/faq#tos_staticmaps_reuse" states that I may not store and serve copies from own website. "https://developers.google.com/maps/terms" "10.1.1 (a) No Access to Maps API(s9 except through the Service", "10.1.3 (b) No Pre-Fetching, Caching, or Storage of Content" and "10.2 (a) "No Wrapping" also seems to disallow any of these solutions.
Has anyone else had this problem and solved it? I need to do it in a legit way since this is a commercial application that will be public.
Is it possible to interpret googles terms in any other way making any of the proposed solutions ok?
Is it possible to get written permission from Google to use any of these solutions as exceptions to solve a specific problem?
I would prefer to use Google but if that is not possible does anyone know if either of these solutions would be allowed by Bing, Nokia or MapQuest? (The basic problem with Facebook not displaying the image properly when it comes directly from service seemed to be the same for Bing when I tested as also discussed in the last posts of this discussion "http://social.msdn.microsoft.com/Forums/en-US/bingmapsservices/thread/678320df-06df-4fa5-b3ae-39b614f559d9/" ) (Some people have suggested to use foursquares proxy to Bing maps but this is not a public api "http://sarojsharma.wordpress.com/2011/08/09/displaying-map-in-facebook-feed-in-ios/" )
I have tried to find a solution and understand the terms for these services but I am struggling… Anyone with experience of this problem?