summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLUserLocation.h
Commit message (Collapse)AuthorAgeFilesLines
* [ios] Update MGLUserLocation.heading for showsUserHeadingIndicatorupstream/fb-heading-docJason Wray2017-10-111-1/+2
|
* [ios] Set location to nil until the user's location is determinedIan Wagner2017-08-281-2/+1
| | | | | | 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.
* [build] enable -fvisibility=hidden for iOSKonstantin Käfer2017-07-131-0/+2
|
* [ios, macos] Revised descriptions for abstract classes (#9095)Jordan Kiley2017-06-141-1/+1
| | | Addresses https://github.com/mapbox/mapbox-gl-native/issues/8635
* [core] remove trailing whitespace, add trailing newlines, add space after //Konstantin Käfer2017-01-271-3/+3
|
* [ios, macos] features and annotations now conforms to NSSecureCodingFredrik Karlsson2016-12-221-1/+1
|
* [ios, macos] Make Xcode 7.3 the minimum required versionJason Wray2016-08-181-2/+0
| | | | | | | | | - Removes nullability shims for Xcode 6. - Removes MGLTypes.h from files where it was only being used for nullability support. - Accepts that `NS_SWIFT_NAME` is not fully supported by Xcode 7.2 and lower. - Adds documentation about Xcode 7.3 requirement.
* [ios] Reformat inline documentation with ticks, smart quotes, breaks (#5752)Jason Wray2016-07-221-4/+14
| | | | | - Makes the use of apostrophes in the iOS SDK documentation consistent by converting “dumb” `'` into smart `’`. - Adds ticks around class/property names/values. - Breaks lines at 80 characters.
* [ios, osx] Eliminated platform/{ios,osx}/includeMinh Nguyễn2016-04-231-0/+42
Also updated various project references to be group-relative, so Xcode chooses the right directory by default when adding a new file. Fixes #4770.