mapbox-gl-native
mapbox-gl-native copied to clipboard
Interactive, thoroughly customizable maps in native Android, iOS, macOS, Node.js, and Qt applications, powered by vector tiles and OpenGL
**Platform:** Android **Mapbox SDK version:** 9.7.1 ### Steps to trigger behavior 1. View a section of the map (or mark for offline). 2. Emulate a "bad" network connection on an...
## Launch Checklist - [x] briefly describe the changes in this PR - [x] include before/after visuals or gifs if this PR includes visual changes - [ ] write tests...
Hello, this feature request is inspired by **tobrun** whose efforts are going towards the flutter mapbox gl plugin, however he made an issue there https://github.com/tobrun/flutter-mapbox-gl/issues/140 regarding exposing the native functionality...
This is my code ` if (tap.state == UIGestureRecognizerStateEnded) { CGPoint touchpoint = [tap locationInView:self]; CGRect fishRect = CGRectMake(Tp.x-1, Tp.y-1, 2, 2); NSSet *fishSet = [NSSet setWithObject:self.fishLay.identifier]; NSArray * fishFeatures...
**Platform:** **Mapbox SDK version:** ### Steps to trigger behavior while i change the line render in file `src\mbgl\programs\gl\line.cpp`, such as line.vertex.glsl or line.fragment.glsl. ### Expected behavior i hope while i...
I have created [custom map style](https://api.mapbox.com/styles/v1/tantrido/ckyuch3ub001q16ofjwsxnlz6.html?title=view&access_token=pk.eyJ1IjoidGFudHJpZG8iLCJhIjoiY2tlYnB0YWo0MGFpczJzcnZubHRlNTAwbiJ9.6QG-4BeuCpUjaawDiyyfVg&zoomwheel=true&fresh=true#9.76/33.8664/-118.3239/0/75) in Mapbox Studio with 3D terrain and it looks fine in the Studio:  However in QML application there is no 3D terrain, map...
Until now I had used `mapbox://styles/mapbox/navigation-preview-night-v2` style, which was working fine. But when I changed my style to "Navigation"(which is default template from Mapbox Studio), I got following warnings: ```...
Hello, Is it possible to use 3D features in Mapbox-native-GL in anyway? Regards Leiser **Platform:** **Mapbox SDK version:** ### Steps to trigger behavior 1. 2. 3. ### Expected behavior ###...
See discussion here: https://github.com/react-native-mapbox-gl/maps/pull/1222 TL;DR: - Mapbox v10 is great - Mapbox [stopped supporting](https://github.com/nitaliano/react-native-mapbox-gl/issues/1238#issuecomment-461585880) react-native in 2019 - Upgrading react-native-mapbox-gl to Mapbox v10 takes effort: estimated at 150 hours -...
### I want to draw circle with `latitude` , `longitude` and `radius` i used this [issue](https://github.com/mapbox/mapbox-gl-native/issues/13125) and implement these codes : ``` Feature singleFeature = Feature.fromGeometry(Point.fromLngLat(drawCircleCommand.latitude,drawCircleCommand.longitude)); FeatureCollection featureCollection2 = FeatureCollection.fromFeatures(Arrays.asList(singleFeature));...