Search results for

“Apple Maps Guides”

159,835 results found

Post

Replies

Boosts

Views

Activity

"Safe Area" layout guide
I use AutoLayout, but I prefer not to use storyboards. Instead, I generally create independent view controllers with their own XIB files.Also, I don't like using UITableViewController and UICollectionViewController. Instead, I prefer to add table views and collection views manually to my XIB files.Will the new Safe Area layout guide be available to me using these techniques? Or will I need to write my own code to adjust things for the iPhone X?Thanks,Frank
3
0
3.5k
Sep ’17
Google maps with beta 18
Having multiple issues with google maps via wireless apply car play. 1.: maps freezing 2.:The direction I’m heading seems to be off and searching some times 3.: The most annoying, the audio doesn’t work when I’m using google maps for a trip.
1
0
392
Dec ’24
Map region on Universal application
Hello.I have an application with two storyboards (one for iPad and one for iPhone). I use the following to set the map area: -(void) viewWillAppear:(BOOL)animated { ... [self.mapView removeAnnotations:self.mapView.annotations]; self.mapLocations = [[NSMutableArray alloc]init]; self.showMapRect = MKMapRectNull; [self addAnnotation]; [self.mapView setVisibleMapRect:self.showMapRect edgePadding:UIEdgeInsetsMake(30, 30, 30, 30) animated:YES]; } -(void) addAnnotation { CLLocationCoordinate2D mapLocation; IGAMapAnnotation *mapAnnotation; // If a set of coordinates is empty, it will have an empty object @. // This object must be removed from the array, otherwise it will be an error. // In order not to change the original array, we create a copy NSMutableArray *coordinatesTempArray = [[NSMutableArray alloc]initWithArray:self.coordinatesArray copyItems:YES]; [coordinatesTempArray removeObject:@]; // Calculate how many points are included in the final flightplan NSInteger numberOfPoints = [coordinatesTempArray
5
0
469
Aug ’15
Bluetooth MAP Behavior with iPhone.
I am reaching out to you to seek a few clarifications on iPhone behavior w.r.t BR/EDR MAP implementation. We have our MAP MCE implementation and trying to connect with iPhone for MAP Service. Following are the observations: After pairing one should enable 'Notification' tab corresponding to the paired device in iPhone setting. If we don’t enable the Notification, the iPhone will disconnect immediately (This behavior seems specific to iPhone). Example: iPhone Setting -> Go to paired device menu -> Enable Notification. Once the 'Notifications' is enabled and after MAP connection, following are the observation: By default, iPhone will always send following 'message_list_count' as a response for 'GetMessageListing' procedure. message_list_count = 10 from 'inbox' message_list_count = 0 from 'sent' message_list_count = 0 from 'outbox' message_list_count = 0 from 'deleted' Now, with Active MAP connection between iPhone(MAP MSE) & DUT(MAP MCE).
1
0
1.3k
Jun ’23
Multi Stop Map Optimisation
I am adding Apple Maps using the API to my Apple IOS to show address to be visited. another feature we require is to have the addresses showing in the best order to be able to visit each one in the fastest time. I am wondering if apple allow to upload multiple addresses via a API and the addresses will be optimised and returned back to my app in the fastest order Is there a SDK that will allow this function?
0
0
652
Nov ’23
Create bike path maps
Good evening, everyone, I hope I'm in the right place. I wanted to ask about the bike maps how you want to score? Google map I know you have an application to work together recording the signal while we're going. It's possible to work with your maps division. I'm asking for a passionate cyclist to work with. Thanks
0
0
291
Jun ’20
Channel Mapping with AUHAL
Hi, our Mac app uses AUHAL for audio output. The data we’re playing has channels laid out in the WAVE default ordering (this is the same order as Core Audio’s AudioChannelBitmap). Playing this data usually results in the correct channel playing through the correct speaker, but there are cases where it does not: Outputting audio over HDMI usually results in the Center and LFE channels being swapped Or “Configure Speakers” in Audio MIDI Setup.app can be used to change the speaker<->channel mapping (i.e. even swapping L/R on a 2ch stereo setup), but this does not affect our app’s audio I’ve found that getting kAudioUnitProperty_AudioChannelLayout on an output unit returns the speaker<->channel mapping as set up in Audio MIDI Setup (i.e. it shows that Center/LFE swap, or if L/R are swapped). My question: is it possible to have Core Audio do the channel remapping between the WAVE default ordering, and the speaker<->channel mapping as returned by kAudioUnitProperty_Audio
6
0
391
3w
Reply to RealityKit PyshicallyBaseMaterial Displacement
Glad to hear you are using our new APIs! Unfortunately, displacement mapping is not supported within RealityKit. However, I did find a feature request for this in our internal issue tracking system, so the team is aware of the request. The good news is that you might be able to implement displacement mapping yourself using the CustomMaterial APIs. Additionally, I would encourage you to file a feature request on Feedback Assistant for this feature, and provide a bit of info about your use case. This helps us determine demand for particular features and help guide our feature planning for future OS releases.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Oct ’21
Google maps in Action Extension
Hello fellas.Im having trouble using Google maps in an action extension on IOS. Im currently writing it in swift 2.2 and i have it working in the Containing app without problems.All possible issues with the API key is checked and this shouldnt be the problem.I load the map just as i do in the containing app, but instead of showing a dot on a map at my location, it shows me this:https://i.stack.imgur.com/6G5ao.pngSo my question is - Is it at all possilbe to use google maps in an Action extension? If so, does anyone have experience whith this issue?I have a question on SO regarding this, you can find it here - http://stackoverflow.com/questions/40997418/where-do-i-set-google-maps-api-key-in-an-action-extension-ios-swiftThanks in advance
0
0
372
Dec ’16
Is there an IPA notation guide for AVSpeechSynthesizer?
I am utilizing macOS and would like to know how to create accurate or alternate pronunciations using AVSpeechSynthesizer. Is there a guide or document that indicates the unicode symbols that are used or accepted for the IPA notation? The only method that I've found is to create or obtain pronunciations is through an iPhone. References: AVSpeechSynthesisIPANotationAttribute https://developer.apple.com/videos/play/wwdc2018/236/?time=424 https://a11y-guidelines.orange.com/en/mobile/ios/wwdc/2018/236/ https://developer.apple.com/documentation/avfaudio/avspeechsynthesisipanotationattribute
0
0
892
Jul ’21
How to know map provider is TomTom or AutoNavi?
Hi ALL,The MKMapView used AutoNavi map in China, others country used TomTom.My question is how to detect the MKMapView provider? It looks like Apple detect IP address and then auto switch the map to AutoNavi or TomTom, but Apple didn't provide any API to know the status.The AutoNavi used GCJ-02 and TomTom used WGS-84.I know both of the two formats can convert to each other, but the problem is I don't know the map now is AutoNavi or TomTom.Thanks.
1
0
1k
Nov ’17
"Safe Area" layout guide
I use AutoLayout, but I prefer not to use storyboards. Instead, I generally create independent view controllers with their own XIB files.Also, I don't like using UITableViewController and UICollectionViewController. Instead, I prefer to add table views and collection views manually to my XIB files.Will the new Safe Area layout guide be available to me using these techniques? Or will I need to write my own code to adjust things for the iPhone X?Thanks,Frank
Replies
3
Boosts
0
Views
3.5k
Activity
Sep ’17
Google maps with beta 18
Having multiple issues with google maps via wireless apply car play. 1.: maps freezing 2.:The direction I’m heading seems to be off and searching some times 3.: The most annoying, the audio doesn’t work when I’m using google maps for a trip.
Replies
1
Boosts
0
Views
392
Activity
Dec ’24
example of map extensions
Hi,I might have misunderstood but I thought it is possible to create extensions to the native map application in ios 10.Did I misunderstand?If not, can anybody send me a link to an example?Thanks so much,yasmin
Replies
0
Boosts
0
Views
339
Activity
Jul ’16
Map region on Universal application
Hello.I have an application with two storyboards (one for iPad and one for iPhone). I use the following to set the map area: -(void) viewWillAppear:(BOOL)animated { ... [self.mapView removeAnnotations:self.mapView.annotations]; self.mapLocations = [[NSMutableArray alloc]init]; self.showMapRect = MKMapRectNull; [self addAnnotation]; [self.mapView setVisibleMapRect:self.showMapRect edgePadding:UIEdgeInsetsMake(30, 30, 30, 30) animated:YES]; } -(void) addAnnotation { CLLocationCoordinate2D mapLocation; IGAMapAnnotation *mapAnnotation; // If a set of coordinates is empty, it will have an empty object @. // This object must be removed from the array, otherwise it will be an error. // In order not to change the original array, we create a copy NSMutableArray *coordinatesTempArray = [[NSMutableArray alloc]initWithArray:self.coordinatesArray copyItems:YES]; [coordinatesTempArray removeObject:@]; // Calculate how many points are included in the final flightplan NSInteger numberOfPoints = [coordinatesTempArray
Replies
5
Boosts
0
Views
469
Activity
Aug ’15
Bluetooth MAP Behavior with iPhone.
I am reaching out to you to seek a few clarifications on iPhone behavior w.r.t BR/EDR MAP implementation. We have our MAP MCE implementation and trying to connect with iPhone for MAP Service. Following are the observations: After pairing one should enable 'Notification' tab corresponding to the paired device in iPhone setting. If we don’t enable the Notification, the iPhone will disconnect immediately (This behavior seems specific to iPhone). Example: iPhone Setting -> Go to paired device menu -> Enable Notification. Once the 'Notifications' is enabled and after MAP connection, following are the observation: By default, iPhone will always send following 'message_list_count' as a response for 'GetMessageListing' procedure. message_list_count = 10 from 'inbox' message_list_count = 0 from 'sent' message_list_count = 0 from 'outbox' message_list_count = 0 from 'deleted' Now, with Active MAP connection between iPhone(MAP MSE) & DUT(MAP MCE).
Replies
1
Boosts
0
Views
1.3k
Activity
Jun ’23
Multi Stop Map Optimisation
I am adding Apple Maps using the API to my Apple IOS to show address to be visited. another feature we require is to have the addresses showing in the best order to be able to visit each one in the fastest time. I am wondering if apple allow to upload multiple addresses via a API and the addresses will be optimised and returned back to my app in the fastest order Is there a SDK that will allow this function?
Replies
0
Boosts
0
Views
652
Activity
Nov ’23
Map not responding after adding UISheetPresentationController
Hi everyone, I'm basically trying to copy Apple Maps for learning purposes. I've added the map but with Mapbox. I've also created UISheetPresentationController on top of this map but the map is not responding my touches. What variables do I need to override or activate to be able to interact with map and buttons on it?
Replies
0
Boosts
0
Views
681
Activity
May ’23
Create bike path maps
Good evening, everyone, I hope I'm in the right place. I wanted to ask about the bike maps how you want to score? Google map I know you have an application to work together recording the signal while we're going. It's possible to work with your maps division. I'm asking for a passionate cyclist to work with. Thanks
Replies
0
Boosts
0
Views
291
Activity
Jun ’20
Channel Mapping with AUHAL
Hi, our Mac app uses AUHAL for audio output. The data we’re playing has channels laid out in the WAVE default ordering (this is the same order as Core Audio’s AudioChannelBitmap). Playing this data usually results in the correct channel playing through the correct speaker, but there are cases where it does not: Outputting audio over HDMI usually results in the Center and LFE channels being swapped Or “Configure Speakers” in Audio MIDI Setup.app can be used to change the speaker<->channel mapping (i.e. even swapping L/R on a 2ch stereo setup), but this does not affect our app’s audio I’ve found that getting kAudioUnitProperty_AudioChannelLayout on an output unit returns the speaker<->channel mapping as set up in Audio MIDI Setup (i.e. it shows that Center/LFE swap, or if L/R are swapped). My question: is it possible to have Core Audio do the channel remapping between the WAVE default ordering, and the speaker<->channel mapping as returned by kAudioUnitProperty_Audio
Replies
6
Boosts
0
Views
391
Activity
3w
Reply to RealityKit PyshicallyBaseMaterial Displacement
Glad to hear you are using our new APIs! Unfortunately, displacement mapping is not supported within RealityKit. However, I did find a feature request for this in our internal issue tracking system, so the team is aware of the request. The good news is that you might be able to implement displacement mapping yourself using the CustomMaterial APIs. Additionally, I would encourage you to file a feature request on Feedback Assistant for this feature, and provide a bit of info about your use case. This helps us determine demand for particular features and help guide our feature planning for future OS releases.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Replies
Boosts
Views
Activity
Oct ’21
Display the real 3D map through model3d
In the apple map of some areas, there will be a very realistic real-life 3D map. And now I want to call it through 3d in visionOS (like model3d). How can I call it? Note: What I ask for is not to have an effect similar to 3d on a flat screen like in iOS, but to display the USDZ model in visionOS.
Replies
1
Boosts
0
Views
871
Activity
Jul ’24
Google maps in Action Extension
Hello fellas.Im having trouble using Google maps in an action extension on IOS. Im currently writing it in swift 2.2 and i have it working in the Containing app without problems.All possible issues with the API key is checked and this shouldnt be the problem.I load the map just as i do in the containing app, but instead of showing a dot on a map at my location, it shows me this:https://i.stack.imgur.com/6G5ao.pngSo my question is - Is it at all possilbe to use google maps in an Action extension? If so, does anyone have experience whith this issue?I have a question on SO regarding this, you can find it here - http://stackoverflow.com/questions/40997418/where-do-i-set-google-maps-api-key-in-an-action-extension-ios-swiftThanks in advance
Replies
0
Boosts
0
Views
372
Activity
Dec ’16
Is there an IPA notation guide for AVSpeechSynthesizer?
I am utilizing macOS and would like to know how to create accurate or alternate pronunciations using AVSpeechSynthesizer. Is there a guide or document that indicates the unicode symbols that are used or accepted for the IPA notation? The only method that I've found is to create or obtain pronunciations is through an iPhone. References: AVSpeechSynthesisIPANotationAttribute https://developer.apple.com/videos/play/wwdc2018/236/?time=424 https://a11y-guidelines.orange.com/en/mobile/ios/wwdc/2018/236/ https://developer.apple.com/documentation/avfaudio/avspeechsynthesisipanotationattribute
Replies
0
Boosts
0
Views
892
Activity
Jul ’21
Testing With Xcode Guide - Major Typo?
My Objective-C is getting rusty, but in the Testing with Xcode Guide, how can the shared application's delegate be typecast to be a ViewController? Based on the Xcode templates, wouldn't you expect the delegate be an AppDelegate instance?
Replies
1
Boosts
0
Views
586
Activity
Dec ’17
How to know map provider is TomTom or AutoNavi?
Hi ALL,The MKMapView used AutoNavi map in China, others country used TomTom.My question is how to detect the MKMapView provider? It looks like Apple detect IP address and then auto switch the map to AutoNavi or TomTom, but Apple didn't provide any API to know the status.The AutoNavi used GCJ-02 and TomTom used WGS-84.I know both of the two formats can convert to each other, but the problem is I don't know the map now is AutoNavi or TomTom.Thanks.
Replies
1
Boosts
0
Views
1k
Activity
Nov ’17