Matt Blair

Results 97 comments of Matt Blair

Success! I got the exe to launch after updating my PATH to include my mingw64 bin folder and my "cmake install" bin folder. Might be worth noting that in the...

I've been sadly neglecting this PR for a long time. I had been attempting to create a "native" port that doesn't require MinGW, but it's clear that having a port...

So the idea is to group features with identical (used) properties and then cache and reuse the JS function result for them? That could be a compelling advantage, depending on...

Hi @jinyuttt, can you be more specific about what you are looking for?

Yes, there is a PR for a MinGW port that I have neglected to follow up on: https://github.com/tangrams/tangram-es/pull/2035 I have made other attempts at a "native" Windows port using MSVC...

Aha, thanks for sharing your use case! So this data source is a set of local archives that can be used offline. This does seem like a reasonable scenario for...

@rwrx I've been thinking about that as well - specifically whether we should have a different way of configuring these kinds of "offline archive" data sources, since they need to...

Hi! Thanks for the report. This amount of RAM usage sounds like a bug. Do you have a scene file that demonstrates this problem that you can share?

I'm not sure if I can reproduce the exact issue you're reporting without having access to the tile data that you are using, but I am investigating what I can....

For comparison, the Mapbox iOS SDK provides a very general delegate function to solve this: ```objective-c - (BOOL)mapView:(nonnull MGLMapView *)mapView shouldChangeFromCamera:(nonnull MGLMapCamera *)oldCamera toCamera:(nonnull MGLMapCamera *)newCamera; ``` https://docs.mapbox.com/ios/api/maps/4.8.0/Protocols/MGLMapViewDelegate.html#/c:objc(pl)MGLMapViewDelegate(im)mapView:shouldChangeFromCamera:toCamera: Whereas the...