Langston Smith
Langston Smith
Cool suggestion, @nyko05 . Thanks.
I've started on this with the ` ls-3D-hexbin-extrusion` branch and will continue working on this example...
@cammace , a good amount more I'm afraid. I haven't touched this in a while. Feel free if you'd like. Below's what I've got so far.  I would...
@tobrun , I'm not exactly sure how/where we'd set this up, but I did some research and found some links that I think are pretty helpful. They're all related to...
Awesome idea @mateusgrb . Thanks!
@mateusgrb , is the app's [SupportMapFragmentActivity](https://github.com/mapbox/mapbox-android-demo/blob/master/MapboxAndroidDemo/src/main/java/com/mapbox/mapboxandroiddemo/examples/basics/SupportMapFragmentActivity.java) example satisfactory? [XML layout is here](https://github.com/mapbox/mapbox-android-demo/blob/master/MapboxAndroidDemo/src/main/res/layout/activity_basic_support_map_frag.xml) [`SupportMapFragment` is in GL-Native](https://github.com/mapbox/mapbox-gl-native/blob/master/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/SupportMapFragment.java) Or are you looking for something else?
Got it. Step-by-step fragment swipe flow could be a cool example. Regarding `onDestroy()`, have you tried calling it in each fragment's `onDestroyView()`? https://www.mapbox.com/android-docs/maps/overview/#5-lifecycle-methods
You can if you'd like. I don't think it'll make any difference. `clear()` is about removing annotations and other visuals from the map: ```java /** * Removes all markers, polylines,...
Oh, ok 👍
Based on https://github.com/Turfjs/turf/blob/master/packages/turf-buffer/index.js#L1, I believe we'll also need to port [`center()`](https://github.com/Turfjs/turf/blob/master/packages/turf-center/index.ts) before we can add the buffer method. `buffer()` could also unlock cool visuals like 👇 (Off the top of...