summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [ios] Update changelog for MGLMapView.showsUserHeadingIndicatorupstream/fb-permaheadingJason Wray2017-09-071-0/+1
|
* [ios] Disable implicit animation of heading indicatorsJason Wray2017-09-071-3/+8
| | | | | | The update steps for the heading indicator are typically small, so animations tend to pile up and cause performance issues. Disabling actions is a slight regression when it comes to large steps (they're not animated now, where they previously were) and this should eventually be addressed. Also consistently use provided API for disabling CATransaction actions.
* [ios] Implicitly enable showsUserLocation when enabling the heading indicatorJason Wray2017-09-072-3/+9
|
* [ios] Make user heading indicator property IBInspectableJason Wray2017-09-072-0/+16
| | | | Rename it to `showsHeading` to fit in the tiny label column of the utilities panel.
* [ios] Change user location heading filter to 1°Jason Wray2017-09-071-1/+0
| | | | The default is 1.
* [ios] Add setShowsUserHeadingIndicator and validateUserHeadingUpdatingJason Wray2017-09-073-13/+52
|
* [ios] Introduce MGLUserLocationHeadingIndicator protocolJason Wray2017-09-076-19/+54
|
* [ios] Set a heading indicator update thresholdJason Wray2017-09-072-4/+12
|
* [ios] Introduce MGLUserLocationHeadingArrowLayer classJason Wray2017-09-074-2/+79
|
* [ios] Refactor user location heading indicator into its own classJason Wray2017-09-065-119/+147
|
* [ios] Improve iosapp's zoom debug labelJason Wray2017-09-062-24/+46
|
* [ios] Guard against nil user location when setting tracking modeJason Wray2017-08-301-13/+13
|
* [ios, macos] Make minimumZoomLevel and maximumZoomLevel IBInspectable. (#9729)Fabian Guerra Soto2017-08-304-4/+6
| | | | | | * [ios, macos] Make minimumZoomLevel and maximumZoomLevel IBInspectable. * [ios, macos] Update changelogs.
* [tests] Cherry-pick OfflineDatabase::databaseTableColumnsJason Wray2017-08-291-0/+11
| | | | Originally part of the much larger f0a7c45064c3ce3f509b1c2035fcaa07ccc35a99
* [tests] Enforce the schema downgrade behaviorThiago Marcos P. Santos2017-08-292-0/+24
| | | | Which is, delete and recreate the database.
* [core] Remove database on schema downgradeThiago Marcos P. Santos2017-08-291-1/+1
| | | | Previously we were throwing an exception.
* [ios] Set location to nil until the user's location is determinedIan Wagner2017-08-283-4/+3
| | | | | | The documentation for the `location` property states that "This property contains `nil` if the map view is not currently showing the user location or if the user’s location has not yet been determined." The iOS SDK presently returns a garbage value, which has some rather annoying consequences when the value should logically be nullable. This change should rectify the issue. With _location no longer initialized to an invalid coordinate, trying to access `_location.coordinate` when `_location == nil` will return `0, 0`, which is a valid coordinate.
* [ios] Support iOS 11 location usage descriptionsJason Wray2017-08-283-9/+24
|
* [ios] Print Xcode and SDK version during packagingupstream/fb-build-cherry-picksJason Wray2017-08-251-1/+3
|
* [build] Don't fail hard for unknown warning groupsKonstantin Käfer2017-08-251-1/+4
|
* [build] Don't use maybe-uninitialized and misleading-indentation in Clang, ↵Konstantin Käfer2017-08-252-0/+6
| | | | | | since they're not implemented there Cherry-pick of d03fd0dce2efc101021b4cf351945680afaa4349.
* [ios] Fix heading update loopupstream/fb-fewer-heading-updates-thxJason Wray2017-08-242-5/+18
| | | | Updating CLLocationManager.headingOrientation triggers a new heading update, even if there was no actual change in its value.
* [ios] Document annotations-as-features limitations w/feature queryingJason Wray2017-08-211-10/+15
| | | | Also move visibleAnnotations next to visibleAnnotationsInRect:.
* [android] - update config for next reeleaseandroid-v5.1.3Tobrun Van Nuland2017-08-193-3/+3
|
* [android] - update changelog for v5.1.3Tobrun Van Nuland2017-08-191-1/+12
|
* bumped MAS version numberCameron Mace2017-08-191-1/+1
|
* [android] - avoid IndexOutOfBounds when destroying map objectTobrun Van Nuland2017-08-191-28/+18
|
* [android] - enable location change animation of MyLocationView by defaultTobrun Van Nuland2017-08-191-1/+1
|
* [android] - re-add projectedMetersTobrun Van Nuland2017-08-191-0/+15
|
* [android] - create smallest possible LatLngBounds when visible region ↵Tobrun2017-08-193-8/+37
| | | | crosses the dateline
* [android] - provide compability with Samsung devices forcing 3-4 array ↵Tobrun2017-08-191-3/+27
| | | | matrix length
* [android] - keep state of initial overlain views margins (#9391)Tobrun2017-08-191-16/+29
|
* [ios] Update pods spec for iOS v3.6.2 (#9806)ios-v3.6.2Fabian Guerra Soto2017-08-183-3/+3
|
* [ios] Warn about using MGLFeature-conforming annotations w/queryingJason Wray2017-08-182-5/+15
|
* [ios] Add debug descriptions to shapes and featuresJason Wray2017-08-183-0/+69
|
* [core] Use separate attribute component for line normalsJohn Firebaugh2017-08-188-41/+41
| | | | Selective cherry pick of 822df3dd514ec3d05f876e6746cb8ba6348ac89d
* [ios, macos] Fix querying features returning nil when features available. ↵Fabian Guerra Soto2017-08-175-9/+15
| | | | | | | | | | (#9784) * [ios, macos] Fix querying features returning nil when features available. * [ios, macos] Copyedited changelogs Also, macOS SDK v0.5.1 has yet to be released, because none of the changes that went into iOS SDK v3.6.1 were relevant to macOS.
* [ios] Add test for code snippet added to MGLPolyline doc changeNadia Barbosa2017-08-092-3/+14
|
* [ios] Update MGLPolyline docs about antimeridian crossingsNadia Barbosa2017-08-091-2/+13
|
* [ios] Fix user location horizontal accuracy ring inaccuracyupstream/fb-inaccurate-accuracyJason Wray2017-08-072-5/+3
| | | | Accuracy was off by +25%, depending on latitude.
* [ios] Update READMEs to link to help pageJason Wray2017-08-042-2/+2
|
* [ios] expose setCamera with edge paddingFredrik Karlsson2017-08-033-1/+23
|
* [ios] Clean-up iosapp projectJason Wray2017-08-024-107/+114
|
* [ios] Add iosapp Settings.app force touch quick action shortcutJason Wray2017-08-026-14/+30
|
* [ios] remove Secure Transport exception from demo appKonstantin Käfer2017-08-022-15/+1
|
* [android] - release android v5.1.2, update configandroid-v5.1.2Tobrun Van Nuland2017-08-023-4/+4
|
* [ios] adapt Mapbox Streets–sourced layers for user preferred language (#9582)Fabian Guerra Soto2017-08-0110-97/+188
| | | | | | | | | | | | | | | | | | | | * [ios] Update label localization * [ios, macos] Move MGLVectorSource+MBXAdditions.h to darwin. * [ios, macos] Adapt Mapbox Streets to the user preferred language. * [ios, macos] Clarify style localization documentation. * [ios, macos] Update localization examples * [ios, macos] Add style language reset to original. * [ios, macos] Update changelogs. * [ios, macos] Rename Vector Source Additions to MGL standard. * [ios, macos] Add suport for stop localization.
* [android] - update changelog for release v5.1.2Tobrun Van Nuland2017-08-011-1/+15
|
* [android] - bump MAS dependency (#9671)Tobrun2017-08-011-1/+1
|
* [android] - remove preview image integration (#9657)Tobrun2017-08-016-70/+1
|