Search results for

Apple Maps Guides

149,443 results found

Post

Replies

Boosts

Views

Activity

Apple Pay on the Web Debugging Guide
This content has moved to TN3103 https://developer.apple.com/documentation/dts-technotes/tn3103-apple-pay-on-the-web-troubleshooting-guide This document is intended to be used as a general guide to debugging common problems with Apple Pay on the Web. Note that this document does not cover 3rd party tooling or integrations. If you are experiencing issues with 3rd party code, libraries, or server side configurations, it’s best that you talk to these vendors directly. This document assumes that you are building Apple Pay on the Web from your own website and then integrating with a 3rd party Payment Service Provider. Creating your Merchant Assets This section is primarily focused on Merchants who have their own Developer Account. If you are working with a Payment Service Provider who can give you access to Apple Pay without needing your own Apple Developer account, this process will be different and you should contact the the Payment Service Provider
0
0
7.7k
Sep ’21
Apple Maps Server API Unauthorized Error
I'm trying to use the new Apple Maps Server API. As far as I can tell I have set up the token correctly, but my web request is still returning 401 unauthorized. The following is my code in TypeScript: import * as jwt from 'jsonwebtoken'; const JWT_SECRET = -----BEGIN PRIVATE KEY-----n + MIGTAgEAMBMGBy..............................n + ..............................................................n + ..............................................................n + -----END PRIVATE KEY-----; const header = { alg: ES256, kid: 26DYPK65ZK, typ: jwt } // Example payload data const payload = { iss: 7F3PBYWYMS, iat: Date.now(), exp: Date.now() + (1000 * 30 * 60), }; export async function getRestaurants() { let token = jwt.sign(payload, JWT_SECRET, { algorithm: 'ES256', header: header}); const response = await fetch('https://maps-api.apple.com/v1/token (https://maps-api.apple.com/v1/token)', { method: 'GET', headers: { 'Authorization': Bearer + token }, }); console.log(response); }
7
0
829
Oct ’24
Links to Apple Maps from a Website – clear previous link
I have the following problem: one of my clients has 3 offices (Berlin, Basel and Zurich). All three locations are registered in Apple Maps.From the contact page of his website I want to link to theses locations on Apple maps. This works fine when I open the page on my iPhone (iOS 10) and tab on one address. Apple Maps opens and displays the location, let's say Basel. I close the Apple Maps app after that.But when I tab the next location, let's say Berlin Apple Maps opens the Basel address again, not the Berlin location.Here is how I link it:href=http://maps.apple.com/?q=stefan+bercx+basel href=http://maps.apple.com/?q=bercx+finance+berlin href=http://maps.apple.com/?q=bercx+finance+zürichHere is the web-page, CMS is WordPress:http://bercx.com/de >> under the Kontakt tab.Any idea how I can clear the search after the first link etc.?Thank you! Arne
0
0
601
Jan ’17
Open Apple Maps app with specific MKRoute information
I am trying to display all possible routes between points A and B in my app (iOS 8+ target). I allow the user to select any one of the possible routes in my app. Next, I would like the user to be able to navigate the selected route (MKRoute) in Apple Maps app. Opening up the Maps app works fine, but I'm unable to figure out how to pass the specific selected MKRoute information so that the user doesn't have to re-select from all possible routes in Apple maps app.I'm not sure if this is even possible, so any pointers would really help. Thanks!
0
0
275
Jan ’16
How do I include my data in Apple maps for all Users?
I have an IoT application that provides real-time and predictive train crossing information. We will be widely deployed across North America in the very near future, but already have our flagship site equipped to provide data. We are working with Waze to get the data to their users; this will be operational in February 2017. How do I do the same with Apple Maps?
3
0
249
Dec ’16
Apple Maps vs MapKit Satellite Image Quality
I've noticed a big difference in quality between Apple Maps and MapKit Satellite image quality. Apple Maps images are so much clearer and you can zoom in further. In the area near me it really fuzzy and if you zoom in all the way you end up with no tiles at all. Is it possible I'm missing a setting that would enable better images? Or is apple just saving the best images for their own app?Here is an example of the images side by side:http://i.imgur.com/w4s388p.jpg
7
0
3.1k
Feb ’16