Sander

Results 15 comments of Sander

You can force the map view to upscale the 256px tiles to double, by using the `mapView.adjustTilesForRetinaDisplay = YES` property. From the documentation: > If set to `YES`, the map...

It seems some of the tiles you are trying to download failed. Try to use the `backgroundCacheDelegate` method `- (void)tileCache:(RMTileCache *)tileCache didReceiveError:(NSError *)error whenCachingTile:(RMTile)tile` and monitor that/set a breakpoint.

I think retrying tiles is not supported in this library, you probably need to handle the errors yourselves. Maybe make a list of the erroneous tiles from that delegate method...

I had the same problem. The way I fixed it is by re-initializing the mapView in code with the bounds of the storyboard view.

Maybe you could get some inspiration from [Komoot planning](https://www.komoot.de/plan). They handle draggable reordering of waypoints (and using GPS location in waypoint box) pretty neatly in my opinion.

Try a higher version of Starscream, like `4.0.4`. It seems to be fixed with this PR: https://github.com/daltoniam/Starscream/pull/808/

@daltoniam Is this something you can elaborate on?

Somehow, adding `.id(UUID()` to the `QGrid` view worked for me 🤔. Don't know why, because the empty scrollview would be the logical explanation for my case too, as I also...

If I take the example from the first post here: ``` struct ContentView: View { @ObservedObject var viewModel = ContentViewModel() var body: some View { VStack { Button("Get all values")...

PR is open to add support: https://github.com/evermeer/AttributedTextView/pull/39