Hi
What would be the best way to achieve clustering on MapKit within SwiftUI?
We're building a decentralized commerce auction platform that is currently live in Switzerland with 3'500 live auctions that can be discovered on a map.
We're now running into the issue that the map gets cluttered, when zooming out and haven't been able to find a way to cluster
We moved back to UIKit, where clustering works, but UIKit has other drawdowns. So ideally there is a way to handle it within SwiftUI without having to wrap UIKit or move back entirely to UIKit.
Thanks for any help or suggestions!
Developer Documentation https://developer.apple.com/documentation/mapkit/mapkit-for-swiftui
Julius Ilg
AuctionShack
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi Community
Unfortunately, my app has been stuck in review since October 8th (17 days), and I’m unsure if there’s anything else I can do besides waiting.
It's a new app called AuctionShack (https://www.auctionshack.io/home-en.html) and so far, I’ve tried the following:
Contacting via email – I was told 7 days ago that they expedited the review, confirmed they have everything they need, and advised me to wait.
Requesting a 1-on-1 session via web call – I was told 3 days ago that they would check in with the team again, confirmed they have everything they need, and advised me to wait.
Is there any other avenue I can take besides waiting?
I feel like, I did a mistake along the way, but am not sure what it is :(
Thanks and best regards
Julius
Is there a way to to add a key for imageURL below that shows as image preview on the right side of a push notification or do i need to create a Notification Content Extension to make it work?
`const message = {
apns: {
payload: {
aps: {
'mutable-content': 1,
alert: {
title: title,
body: body,
image: imageURL,
},
},
},
fcm_options: {
image: imageURL,
},
},
data: {
articleId: articleId,
'media-url': imageURL,
},
tokens: tokens,
};`
I'm getting the image through, but just if the user long presses on the push notification and then it appears below, but i want it to look like in the screenshot:
Thanks