On Apr 5, 12:16 pm, christian <[email protected]> wrote: > Hi, > > I've made a little iPhone-App and I want to start the map-App to > navigate to a specific target. The code in my App contains: > > http://maps.google.com/maps?saddr=current+Location&daddr=Poststrasse, > +Radolfzell,+Germany"
You're not actually using the API if you are getting a map with a URL which starts "maps.google", so you probably ought to ask at http://www.google.com/support/forum/p/maps?hl=en Having said that, the "current location" option is phone-specific. When you *choose* "current location" the app works out where that is and uses the location. It doesn't pass "current location" to Google. Your url does though; and Google won't know where it is. You need to use the iPhone geolocation API to work out where you currently are, and insert that into the URL. (This is definitely not the forum to ask how to use the iPhone geolocation API, and I don't know how to) -- 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.
