Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use OpenGL and Boost for the linux app | Konstantin Käfer | 2015-08-04 | 1 | -0/+1 |
| | |||||
* | include $CFLAGS into build | Konstantin Käfer | 2015-08-04 | 1 | -0/+2 |
| | |||||
* | don't require PNG_ALPHA_PREMULTIPLIED to support older versions of libpng | Konstantin Käfer | 2015-08-04 | 1 | -0/+5 |
| | |||||
* | support cURL versions older than 7.21.6 | Konstantin Käfer | 2015-08-04 | 1 | -0/+4 |
| | | | | prior to cURL 7.21.6, CURLOPT_ACCEPT_ENCODING was called CURLOPT_ENCODING | ||||
* | respect fullscreen flag in Linux app | Konstantin Käfer | 2015-08-04 | 1 | -4/+4 |
| | |||||
* | add MBGL_USE_GLES2 define | Konstantin Käfer | 2015-08-04 | 3 | -11/+14 |
| | |||||
* | don't use certain STL functions | Konstantin Käfer | 2015-08-04 | 34 | -50/+68 |
| | | | | some functions defined in <cmath>, as well as std::to_string aren't available on GNU's STL for some platforms, e.g. Android | ||||
* | First pass at tidying up Android annotation code | Leith Bade | 2015-08-04 | 5 | -415/+434 |
| | |||||
* | Merge pull request #1976 from mapbox/region-delegate-dox | Justin R. Miller | 2015-08-03 | 1 | -3/+14 |
|\ | | | | | Document iOS region change delegate methods | ||||
| * | Add more mapView! | Jason Wray | 2015-07-31 | 1 | -0/+2 |
| | | |||||
| * | Document iOS region change delegate methods | Jason Wray | 2015-07-31 | 1 | -3/+12 |
| | | | | | | | | With #1026 the region delegate methods work reliably and as expected. This commit adds `mapView:regionWillChangeAnimated:`, `mapViewRegionIsChanging:`, and `mapView:regionDidChangeAnimated:` to the official documentation. | ||||
* | | #1982 - Updating wrapper .jar and .properties | Brad Leege | 2015-08-03 | 2 | -1/+1 |
| | | |||||
* | | #1982 - Updating to 2.5 | Brad Leege | 2015-08-03 | 3 | -3/+3 |
|/ | |||||
* | Merge pull request #1974 from mapbox/android-fix-gps-conversion | Leith Bade | 2015-07-31 | 1 | -6/+8 |
|\ | | | | | Fix GPS marker as conversion functions now compensate for screen density | ||||
| * | Fix GPS marker as conversion functions now compensate for screen density | Leith Bade | 2015-07-31 | 1 | -6/+8 |
|/ | |||||
* | Merge pull request #1973 from mapbox/add-android-marker-test | Justin R. Miller | 2015-07-30 | 1 | -0/+25 |
|\ | | | | | add Android long-press marker test | ||||
| * | add Android long-press marker test | Justin R. Miller | 2015-07-30 | 1 | -0/+25 |
|/ | |||||
* | Merge pull request #1971 from mapbox/fix-screen-conversion | Justin R. Miller | 2015-07-30 | 1 | -2/+3 |
|\ | | | | | compensate for Android screen ratio in conversion routines | ||||
| * | compensate for Android screen ratio in conversion routines | Justin R. Miller | 2015-07-30 | 1 | -2/+3 |
|/ | |||||
* | [publish ios-v0.5.4] | Justin R. Miller | 2015-07-30 | 0 | -0/+0 |
| | |||||
* | bump podspec for 0.5.4v0.5.4 | Justin R. Miller | 2015-07-30 | 1 | -1/+1 |
| | |||||
* | #1965 - Updating dependency versions | Brad Leege | 2015-07-29 | 2 | -4/+4 |
| | |||||
* | Replace size() with empty() whenever possible | Bruno de Oliveira Abinader | 2015-07-29 | 17 | -35/+33 |
| | | | | | | Before C++11, std::list's implementation of size was O(n). It should be all O(1) now, but it is probably still a good idea to use empty() to emphasize the intend. | ||||
* | Ignore redundant initial reachability notification on iOS 9 | Minh Nguyễn | 2015-07-28 | 1 | -1/+8 |
| | | | | Fixes #1911. | ||||
* | First pass at updating JNI bindings | Leith Bade | 2015-07-29 | 6 | -66/+180 |
| | | | | | | | | | Hook up collisionDebug, isFullyLoaded, onLowMemory in Android Rename class to styleClass in Java to match iOS Fixed some formatting Fixes #1905 Fixes #1946 Fixes #1263 | ||||
* | Merge pull request #1926 from trappsnl/master | Justin R. Miller | 2015-07-28 | 1 | -2/+2 |
|\ | | | | | fix latLngForPixel on Android | ||||
| * | Merge branch 'master' of https://github.com/mapbox/mapbox-gl-native | Koen Schmeets | 2015-07-24 | 12 | -48/+243 |
| |\ | |||||
| * | | Fix latLngForPixel bindings for Android | Koen Schmeets | 2015-07-24 | 1 | -2/+2 |
| | | | |||||
* | | | s/AssetContext/AssetContextBase/ | Bruno de Oliveira Abinader | 2015-07-28 | 5 | -17/+17 |
| | | | |||||
* | | | s/HTTPContext/HTTPContextBase/ | Bruno de Oliveira Abinader | 2015-07-28 | 6 | -26/+26 |
| | | | |||||
* | | | Replaced 'override' with 'final' for non-public interfaces | Bruno de Oliveira Abinader | 2015-07-28 | 4 | -6/+6 |
| | | | |||||
* | | | Created HTTPRequestBase as base for HTTP requests | Bruno de Oliveira Abinader | 2015-07-28 | 6 | -57/+74 |
| | | | | | | | | | | | | | | | | | | | | | | | | - Added HTTPRequestBase (inherits from RequestBase) - retry() is now a pure virtual in HTTPRequestBase - Moved cancelled bool to HTTPRequestBase - HTTPContext now handles only HTTPRequestBase* - Renamed HTTPNSURLRequest, HTTPCURLRequest | ||||
* | | | Moved ResponseStatus to its own header | Bruno de Oliveira Abinader | 2015-07-28 | 3 | -50/+38 |
| | | | |||||
* | | | Include app-info.plist in demo app project | Jason Wray | 2015-07-28 | 1 | -1/+2 |
| | | | | | | | | | | | | [skip ci] | ||||
* | | | Update to Android support lib 22.2.1. | Leith Bade | 2015-07-28 | 10 | -898/+8 |
| | | | | | | | | | | | | Remove duplicate multitouch classes. | ||||
* | | | Exempt Metrics staging server from PFS requirement | Minh Nguyễn | 2015-07-27 | 1 | -2/+13 |
| | | | | | | | | | | | | | | | This server should not used in actual production code anyways. Fixes #1937. | ||||
* | | | Update the user dot when the user moves | Minh Nguyễn | 2015-07-27 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | Rolled back part of ed04e6d9f712437bc29502e134250cd979c74b64 for #1852. Fixes #1933. | ||||
* | | | Avoid nudging transitions if a gesture is in progress #2 | Bruno de Oliveira Abinader | 2015-07-27 | 3 | -2/+11 |
| | | | | | | | | | | | | | | | | | | Following the same steps from #1548 and #1912 for GLFW and iOS ports. Also removed a redundant check if transform state is changing since we're already dealing with that. | ||||
* | | | Add curly-braces to if-statements | jakepruitt | 2015-07-27 | 1 | -2/+5 |
| | | | |||||
* | | | Adding special case for non-fontstack "glyph" resource URLs | jakepruitt | 2015-07-27 | 2 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | - does not prepend /v4/ to api endpoints like /fonts/v1/ - only prepends it to things starting with /fontstack - solves the problem in #1918 - refs mapbox/mapbox-gl-style-spec#309 | ||||
* | | | Ignore invalid location updates | Minh Nguyễn | 2015-07-24 | 2 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | Avoid passing invalid locations along to the map view delegate or user location annotation. Also, If the user wants to visit the Prime Meridian or Equator, that’s their prerogative. Mapbox GL should show them where they’re at. Null Island is a different story. Fixes #1912. | ||||
* | | | #1929 - Adding token.txt reading for programmatic setting of access token in ↵ | Brad Leege | 2015-07-24 | 2 | -1/+15 |
| | | | | | | | | | | | | activity | ||||
* | | | #1929 - Wiring up MapView to Activity's lifecycle methods | Brad Leege | 2015-07-24 | 1 | -0/+19 |
| | | | |||||
* | | | #1929 - Converted to use Activity instead of Fragment | Brad Leege | 2015-07-24 | 2 | -35/+53 |
| | | | |||||
* | | | #1929 - Added validateAccessToken to MapView.onStart() | Brad Leege | 2015-07-24 | 1 | -1/+1 |
| | | | |||||
* | | | #1929 - accessToken added as XML attribute option. Removed call to raw.txt ↵ | Brad Leege | 2015-07-24 | 4 | -21/+19 |
| | | | | | | | | | | | | for access token from MapFragment to test. | ||||
* | | | #1929 - Removed validateAccessToken() call from MapView.onCreate() | Brad Leege | 2015-07-24 | 1 | -2/+0 |
| | | | |||||
* | | | #1915 - Adding NonNull annotations to accessToken for development warnings ↵ | Brad Leege | 2015-07-24 | 1 | -7/+4 |
| | | | | | | | | | | | | and isEmpty() checks for more accurate runtime errors | ||||
* | | | Avoid nudging transitions if a gesture is in progress | Bruno de Oliveira Abinader | 2015-07-23 | 5 | -10/+14 |
| |/ |/| | | | | | | | | | | | | | We're now using nudgeTransitions() to tell the Map view that we want to update it. However, if we're on a gesture movement, the update() call can get called too fast and causing general slowdown. This check ensures we only call for nudgeTransitions() after all gesture events are finished. Fixes the issue pointed out by #1548 on Android. | ||||
* | | [publish ios-v0.5.3] | Justin R. Miller | 2015-07-22 | 0 | -0/+0 |
| | |