Sim
Sim

Reputation: 87

Call to GPS app via html

I am developping a website intended to mobile phones and I've got a contact section with a mailto: tel: for the mail and telephone, is there any similar function that would make a call to the default gps app of the phone and preload it with GPS coordinates ?

Upvotes: 3

Views: 8843

Answers (1)

AtanuCSE
AtanuCSE

Reputation: 8940

For android:

<a href="geo:37.786971,-122.399677;u=35">open map</a>

See here & here for details.

For iphone:

<a href="http://maps.apple.com/?q=cupertino">Cupertino</a>

If you want to use coordinates instead of location name, see here for details

(Found them on net, not tested.)

Upvotes: 4

Related Questions