Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You can use the <a href="http://en.wikipedia.org/wiki/Geo_URI">GEO URI Scheme</a> "geo:latitude,longitude" specified by <a href="http://tools.ietf.org/html/rfc5870">RFC 5870</a> in a link such as </p> <pre><code>&lt;a href="geo:124.028582,-29.201930" target="_blank"&gt;Click here for map&lt;/a&gt; </code></pre> <p>There's also the <code>comgooglemaps:</code>, which launches the <a href="https://developers.google.com/maps/documentation/ios/urlscheme?utm_source=welovemapsdevelopers&amp;utm_campaign=GM-for-iOS-sdk-1-7">Google Maps app for iOS</a>, for example:</p> <pre><code>comgooglemaps://?center=40.765819,-73.975866&amp;zoom=14&amp;views=traffic </code></pre> <p>Where</p> <ul> <li><code>center</code>: This is the map viewport center point. Formatted as a comma separated string of <code>latitude</code>,<code>longitude</code>.</li> <li><code>mapmode</code>: Sets the kind of map shown. Can be set to: <code>standard</code> or <code>streetview</code>. If not specified, the current application settings will be used.</li> <li><code>views</code>: Turns specific views on/off. Can be set to: <code>satellite</code>, <code>traffic</code>, or <code>transit</code>. Multiple values can be set using a comma-separator. If the parameter is specified with no value, then it will clear all views.</li> <li><code>zoom</code>: Specifies the zoom level of the map.</li> </ul> <p>And as techtheatre said, you can use a regular Apple Maps link to trigger Apple Maps:</p> <pre><code>//maps.apple.com/?q=Raleigh,NC </code></pre> <p>Leaving off the protocol will automatically select the correct one to use, so if you wanted to have a dynamic link you could just create some conditional code that changes the link between <code>google.com</code> and <code>apple.com</code> depending on which system you're on.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload