318 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Tooling
1
vote
2
replies
62
views
Which Maps API (Ideally JS) offers the best street detail (Like Apple Maps mobile)
Apple maps on mobile has amazing street detail right down to bus stops and road lines, plus accurate street and pavement widths:
Interestingly though when using the Web API for Apple Maps I can't see ...
3
votes
1
answer
170
views
How to create a MapKit JS token for localhost?
Recently, it seems that Apple MapKit JS has started forcing people to restrict tokens to domains. Unrestricted tokens now are automatically expired after 7 days.
The instructions for creating a MapKit ...
0
votes
0
answers
41
views
Opening Apple Maps from a Flutter app on iOS?
Until very recently we could launch the Apple Maps app from our Flutter app by launching a URL like http://maps.apple.com/?daddr=56.123%2C14.123&dirflg=d.
This seems to have stopped working, ...
1
vote
0
answers
321
views
How to disable labels in react native maps (IOS)
I'm using react native maps for my react native mobile application. On android, the map renders as apple maps. I don't want any of the labels like New York, etc. I just want a blank map. Is there a ...
0
votes
1
answer
867
views
How do you make floating buttons like the ones in Apple Maps?
I want to know how to make floating action buttons like the ones in Apple Maps using UIKit. I'm specifically stuck on recreating the behavior where the buttons' offset changes dynamically as the ...
0
votes
1
answer
2k
views
How to use the Apple Business Connect API?
I like to keep the data of some locations that I administrate in sync. Currently I have to edit the entries in Google Maps, Bing Maps and Apple Maps each on its own. I know that Google Maps and Apple ...
2
votes
0
answers
56
views
App store alert to download Apple maps appears twice
I have a code that redirects the user to Google Maps or Apple Maps by pressing the map
, when Apple Maps is uninstalled, an alert appears asking the user to download Apple Maps and redirects the user ...
0
votes
1
answer
224
views
Opening Apple Maps with Custom Pin Image Using Swift
I have a requirement where I need to open Apple's Maps application from my app with coordinates and a custom pin image. I am able to open the Maps application with coordinates but not with the custom ...
0
votes
0
answers
204
views
showsMyLocationButton doesn't work on Apple Maps
To display the map, I'm using react-native-maps. I want to display the button to see my location, however, it only works in Google Maps; when I switched to Apple Maps, it didn't work. Also, the ...
0
votes
1
answer
217
views
react-native-maps pin switches to another pin in close proximity on apple maps
I am running into an odd problem with apple maps in react-native-maps. Whenever a pin is clicked, it switches to another pin when they are in close proximity to each other, please see the gifs below ...
1
vote
1
answer
579
views
MKLocalPointsOfInterestRequest does not return the same results than MKLocalSearch.Request or MKLocalSearchCompleter
My app uses Core Location to request for Points Of Interest near the user. I used the different APIs provided by Apple: MKLocalPointsOfInterestRequest, MKLocalSearch.Request and MKLocalSearchCompleter....
0
votes
1
answer
219
views
How to get LatLng from ScreenCoordinate's in Flutter while using apple_maps_flutter?
GoogleMapsController provides this method called, _googleMapController.getLatLng(_screenCoordinates) ScreenCoordinate's as parameters and returns respective lat-long of the coordinate points.
But to ...
0
votes
1
answer
723
views
SwiftUI custom street color in native Map
I need to change streets colors in a native Apple Map?
It's possible? Any solution?
Thanks.
1
vote
1
answer
465
views
Is there a way to retrieve auid of location for apple map venues?
I want to open apple map for specific location/venue and to do so I'm doing
if let url = URL(string: "maps://?address=Railway%20Station%20Area,%20Surat,%20395003,%20Gujarat,%20India&auid=...
0
votes
0
answers
54
views
Showing annotation items in a MapView in SwiftUI [duplicate]
I have a map view in SwiftUI showing some annotations items. Here is an example.
import SwiftUI
import MapKit
struct MapItem: Identifiable {
var id = UUID()
var location: ...