Daniel Eke

Results 9 comments of Daniel Eke

@jmkiley unfortunately I think the linked issue is not the same as this one. For that problem the precondition was to have a pitch value which is larger than zero....

I've investigate this further and I think we're talking about two separate issues here: - Issue one: If the pitch is zero, but rotation is not zero: It is an...

Also just for demonstration, if I modify this example to use the four corner points instead of the CoordinateBounds, it places the rectangle correctly: https://github.com/mapbox/mapbox-maps-ios/issues/605#issuecomment-911927577 ``` let topRight = mapView.mapboxMap.coordinate(for:...

@galinelle would it make sense to add a new constructor to `CoordinateBounds` to allow the creation from the 4 corner coordinates? The bounds would be still axis aligned but when...

Another alternative would be to just define a new bounds class which can be constructed using 4 points, but then it would need to reimplement most of the methods. @akirmse...

@akirmse thanks for the details! From our side modifying the behaviour of `CoordinateBounds` wouldn't be ideal, but we could add another helper class that is created from the four corner...

I can reproduce this on macOS in gl-native, seems like it's a bug in the line rendering. If I have to guess it's probably caused by the calculation of the...

Recently I investigated this issue a bit further, but I didn't get too far with the proposed workaround. First, I noticed that we have issues even with miter joins at...

This feature would be very useful in cases when you need to create a scaled rendering context using the `glfwGetMonitorContentScale` on macOS before the window of the application is created....