Please let me know is it possible to use additional map channel? (here is a screenshot from 3ds max: https://i.imgur.com/UJXkkwa.png )For example, if I'd like to apply all basic textures to 1st map channel and transparency/opacity map to the 2nd map channel.And is USD file support animated UVs?Thank you!
Search results for
Apple Maps Guides
149,563 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I am switchingt to the new WWDC 2023 SwiftUI map with user location and a few map annotations. I find if I use .mapStyle(.imagery(elevation: .flat)) as the map style, the map will be loaded with a reasonably zoomed area. However, if I use .mapStyle(.imagery(elevation: .realistic)) on the same map, the simulator will give me a view of the entire planet. I have to manually zoom in everytime to find the user location and annotations, which is not very convenient. This is the only map style configuration that does this. I am not very sure if this is a feature or a inconsistency bug. If this is a feature, I cannot see the purpose of it.
How does one get the same map are to be viewed regardless of screen resolution? I have a full-screen MapView on iPad. Here is how I set the view:#define zoomSize 50MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance([self myLocation], zoomSize, zoomSize);MKCoordinateRegion fittedRegion = [mapView regionThatFits:region];[mapView setRegion:fittedRegion animated:YES];Whether displayed on iPad 2 (1024 x 768) or iPad 3/4/Air/Air2 (2048 x 768), I get a visibleMapRect of 645 x 471. However, the actual area visible for the iPad 3/4/Air/Air2 is twice the area of the iPad2. I'd like them to be the same.
I’d like to determine if the system thinks the car is parked, and if so, the location of the Parked Car icon on the map. Is there an API that would help?
Seen Apple's Energy Efficiency Guide for iOS Apps?Try a quick search on that page for: spritekit ..for starters.By the way, which versions iOS does your app support?Reference: Apple's energy diagnostics via Intruments User Guide
Topic:
Graphics & Games
SubTopic:
SpriteKit
Tags:
Is there any possibility were I can remove Always Allow option from location Map Prompt that appear in screen in iOS 13
Hello everyone!!I wonder if there are any guide or tutorial about Core Bluetooth (low energy) and swift language.Best regards
We are seeing many purchase attempts coming our way where in InAppPurchase has transacion id in Microsoft GUID fromat (e.g. 'EE46F2D9-3F51-4043-A1AE-7199E91EEE26')So this is example of purchase user tried to buy (some fields has been slightly modified for privacy reasons){ quantity: 1, product_id: mega_coin_pack_2, transaction_id: EE46F2D9-3F51-4043-A1AE-7199E91EEE26, original_transaction_id: 110000548814335, purchase_date: 2019-04-23 20:43:26 Etc/GMT, purchase_date_ms: 1556052202000, purchase_date_pst: 2019-04-23 13:43:26 America/Los_Angeles, original_purchase_date: 2019-04-23 20:43:26 Etc/GMT, original_purchase_date_ms: 1556052206000, original_purchase_date_pst: 2019-04-23 13:43:26 America/Los_Angeles, is_trial_period: false }Is this format new to transaction id in Apple, or is this an attempt of cheet?If cheet, does anyone know of a system user could have been using? User claims Apple has refused to help and had asked us to deal with this case.
Hello, I have used CPPointOfInterestTemplate for displaying data and as user scrolls using the up/down arrow, I do not see any change in the map. Is there a way to highlight the POIs as the user scrolls through the list? I need to use the map controls and zoom to check the markers on the map. Is it possible to set the zoom level of the map in CarPlay? Pls suggest on the above queries
I want to know what's the map(build in) is used in the IOS system? for example, In China the build-in map is amap, so what's the map used in the other countires(eg. the U.S? Japan? India or Europe?) in the world?Thanks.
Hello all,I'm developing Printing Dialog Extension plugin for mac and encountered an issue where my PDE does not get loaded in print dialog opened from Safari 11.1.2 (macOS High Sierra).Error from Console is:kernel (ApplicationMobileFileIntegrity)Library Validation failed: Rejecting '/Library/Printers/Test/PDEs/SamplePDE.plugin/Contents/MacOS/SamplePDE' (Team ID: XXXXXXXXXX, platform: no) for process 'Safari(24532)' (Team ID: none, platform: yes), reason: mapping process is a platform binary, but mapped file is not.This issue does not happen with Safari 11.0 and earlier, and any other Apple and 3rd party apps.Please let me know if you've encountered similar issue and know a fix or workaround to this problem.Thank you in advance.
Hi, is possible to extend maps app through app extensions to add some road marks or something like that when user uses navigation? I want to show some checkmarks on apple maps app when user uses apple maps. Or maybe just to notify users when approaching to some section? If anything from this things is possible than which API to use? I have searched and did not find anything useful expect SiriKit but I think with that API its not possible to achieve this. Thanks Regards
When saying you should start the iPhone Maps app, mean the one from Apple, not 'your maps app'. This somehow triggers the Apple Watch Simulator map to render properly.If you are having connectivity issues, suggest looking at the Potloc sample code.https://developer.apple.com/library/prerelease/watchos/samplecode/PotLoc/Introduction/Intro.html
Topic:
App & System Services
SubTopic:
General
Tags:
Hi All,I am developing an App which shows the routes between two location in Mapview and I have an option to navigate from Apple Maps app to my app via Transport apps link.In IOS 8, Maps app show App segment to list out the 3rd party navigation apps but in IOS 9, Maps app changed App to Transport and it show the 3rd party apps only in Share (Top right button) --> Transport Apps button click.Will apple remove the transport apps list in IOS 10 or next version?
When selecting a pointOfInterest is it possible to center the map on the location of the point of interest? I looked at the CPPointOfInterestTemplate but it doesn't seem to provide access to the underlying map instance. In our parking app we have cases where 3 or more pointsOfInterest are shown on the map, but the list pane is either overlapping the pins on the map or the pins are outside the screen.