Rob Labs

Results 44 comments of Rob Labs

@ZiZasaurus — thank you for the tip on handling status via `pack.state`. I tried your suggestion, but I am still seeing the complete state report being reported more than once....

If you run into the deprecation warning in the Offline swift example or in your own project... > 'archivedData(withRootObject:)' was deprecated in iOS 12.0: Use +archivedDataWithRootObject:requiringSecureCoding:error: instead --- 1. The...

This may force iOS developers to Xcode 14, which is not a bad thing, but their workflows may not allow it. Over in the README.md for [maplibre/maplibre-gl-native-distribution, Line #3](https://github.com/maplibre/maplibre-gl-native-distribution/blob/main/README.md?plain=1#L3), I...

Results from an Instruments profile from an iPhone SE using the *Game Performance Profile*. *An Average Frame Time duration of 16.67 ms is one 60 fps frame*. ![image](https://user-images.githubusercontent.com/118112/115411876-b64cdb80-a1a8-11eb-85f6-9c2a1a8ddb76.png)

Enabling the *Frame Capture* option in the Run Scheme also allows for more insight. And if nothing else some "eye candy" on how a map is drawn. --- *GPU Trace...

As a test, I have adding some logging to the MapLibre Objective-C event handlers which allows us to measure the time difference between events (`mapViewDidFinishLoadingStyle`, `mapViewDidFinishLoadingMap`, `mapViewDidBecomeIdle`). We are seeing...

@birkskyum — the expression `MGL_FUNCTION` is curious and still needs attention. While I was researching the source for #331 & PR #411, I found documentation for the expression in ["Predicates...

Amazon Location does make use of the Offline storage delegate to perform its signing. See the iOS project [aws-samples/amazon-location-samples:MapView.swift#L21,L25](https://github.com/aws-samples/amazon-location-samples/blob/main/maplibre-native-ios/Amazon%20Location%20Service%20Demo/MapView.swift#L21,L25). Amazon Location specific signing is implemented in [AWSSignatureV4Delegate](https://github.com/aws-samples/amazon-location-samples/blob/main/maplibre-native-ios/Amazon%20Location%20Service%20Demo/AWSSignatureV4Delegate.swift), and is using...

@birkskyum — I found the expression for `keyName` another one of the curious expressions. I found that Swift code was easier to understand and see where the original authors were...

Another comment on how the Unit Tests for Expressions are structured. I found a single Unit Test to have *many* tests within it. Ideally, a unit test should have a...