Google map on mobile

In my application, I used a map like http://maps.google.com/maps?q=

The problem is that Android has a “A” label, but the iPhone has an address. when I click the Pin shortcut to “get directions” on the iPhone, the page does contain the actual street address, but Android doesn’t.

As far as I know, iPhone has its own map display application, but Android is displayed in the browser.

Is there a way to manage my Android card?

+5
source share
1 answer

I think Android has another way of hotlinking links:

Use the following code:

<html>
  <body>
  <H1>
   <a href="geo:42,2?z=8">Click here for maps</a>
 </h1>
   <BR><BR>
   <a href="geo:53,-9?saddr=(53,-9)&daddr=(42,4)">Click here for route maps</a>
 </body>
</html>

via fooobar.com/questions/186407 / ...

+1
source

All Articles