I have an app hosted on Google App Engine at http://6.latest.ridehome-eitb.appspot.com
When a user enters an address on the search form at http://6.latest.ridehome-eitb.appspot.com/rides/search_rides/?direction=toairport we do a geo code lookup with the following url: http://maps.google.com/maps/geo?q=pike+and+10th%2C+seattle+wa&output=kml&key=OURAPIKEY We get the following XML back: <?xml version="1.0" encoding="UTF-8" ?> <kml xmlns="http://earth.google.com/kml/2.0"><Response> <name></name> <Status> <code>620</code> <request>geocode</request> </Status> </Response></kml> Our goal is to geocode the users address and then on the next page display a static map with that address and cache that for other uses of the lat/lon. This is the map we show on the next page using the latlong from the Geocoding API call: http://maps.google.com/maps/api/staticmap?center=47.6140897,-122.3194425&zoom=15&size=400x256&maptype=roadmap%20%20&markers=color:red|color:red|label:A|47.6140897,-122.3194425&sensor=false Our app is not making a constant string of requests, or anything like that. Also, our test server running locally works fine, it only breaks when running up on App Engine. Any ideas? Thanks! Ben -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
