summaryrefslogtreecommitdiff
path: root/platform/darwin/src
Commit message (Collapse)AuthorAgeFilesLines
* [ios, macos] Added circle geometryupstream/1ec5-circle-2167Minh Nguyễn2019-05-079-5/+338
| | | | Added an MGLCircle class that generates a many-sided polygon under the hood.
* [ios, macos] Removed MGLStyleValue references from documentation (#14552)Minh Nguyễn2019-05-071-7/+7
|
* [ios] Static analysis fix tweaks - part 2 (#14572)Julian Rex2019-05-023-10/+17
|
* [ios, macos] Fixes for static analyzer warnings (#14453)Julian Rex2019-04-305-11/+20
|
* [ios] Remove events=true from new SKU requestsJason Wray2019-04-291-9/+6
|
* [ios] Enable/Disable sku token handling (#14467)Julian Rex2019-04-243-13/+48
|
* [ios] Make MGLLocationManager protocol swift friendly. (#14477)Fabian Guerra Soto2019-04-241-3/+23
| | | | | | | | Improved MGLLocationManager protocol bridging to swift. * [ios] Make MGLLocationManager protocol swift friendly. * [ios] Update changelog.
* [ios] Add SKU tokens to all Mapbox requests (#14421)Jason Wray2019-04-173-14/+63
|
* [darwin] Generate style code for symbol-sort-keyAlexander Shalamov2019-04-172-2/+45
|
* [ios, macos] Fix MGLSymbolStyleLayer.text localization issue. (#14405)Fabian Guerra Soto2019-04-152-0/+7
| | | | | | | | | | Fixed an MGLSymbolStyleLayer.text localization bug caused by the introduction of MGLAttributedExpression object. The localization parsing was ignoring the latter. * [ios, macos] Fix a localization issue. * [ios, macos] Add formating expressions localization test. * [ios, macos] Update MGLSymbolStyleLayer.text documentation.
* [ios] Deactivate MGLMapView IBDesignable (#14379)Fabian Guerra Soto2019-04-103-21/+5
| | | | | | | | | | | | Removed MGLMapView's IBDesignable attribute. The map's view render attributes uses GL, making changes through the inspectables were not reflected in the storyboard and were causing IB crashes. * [ios] Deactivate MGLMapView IBDesignable. * [ios] Remove IBDesignable agent code. * [ios, macos] Remove NSProcessInfo category from iOS.
* [ios, macos] Add Mapbox Maps SDK metrics manager. (#13997)Fabian Guerra Soto2019-04-096-5/+287
| | | | | | | | | | | | | | | | | | | | | | | | | | Added MGLSDKMetricsManager to keep track of SDK related events such as tile download times. * [ios, macos] Add tile download performance event. * [ios, macos] Modify the performance event format. * [ios, macos] Add Mapbox Maps SDK events manager. * [ios, macos] Remove events delegate. * [ios, macos] Remove deprecated macro. * [ios, macos] Rename MGLEventsManager to MGLMetricsManager. * [ios, macos] Make MGLMetricsDelegate follow delegate convention. * [ios, macos] Remove mbgl-filesource target dependency on MGLMetricsManager. * [ios, macos] Update metrics manager documentation. * [ios, macos] Add device metadata. * [ios, macos] Rename MGLMetricsManager to MGLSDKMetricsManager.
* [core] move GLContextMode to RendererBackendKonstantin Käfer2019-04-052-8/+0
|
* [core] refactor RendererBackendKonstantin Käfer2019-04-053-3/+7
|
* [core] move BackendScope to gfx namespaceKonstantin Käfer2019-04-051-2/+2
|
* add onStyleImageMissing to allow dynamically loaded or generated images (#14253)Ansis Brammanis2019-04-021-1/+6
| | | Also make `Style#updateImage(...)` much faster when the image doesn't change size. This can be useful for asynchronously generating images.
* [Darwin] Improve documentation for enum array propertiesupstream/az-accountsMikhail Pozdnyakov2019-03-291-1/+16
|
* [darwin] Support for variable text placement APIMikhail Pozdnyakov2019-03-293-26/+95
|
* [ios, core] Updates project for iOS SDK 12.2 / Always use vendored optional ↵Julian Rex2019-03-271-1/+6
| | | | (#14241)
* [ios, macos, build] Remove DEBUG from logging configuration. (#13933)Fabian Guerra Soto2019-03-251-1/+1
| | | | | | * [ios, macos] Change the debug flag usage to NDEBUG. * [ios, macos] Add NDEBUG preprocessor macro to ios/macos project conf.
* [core] Fix signature of fluent interface settersBruno de Oliveira Abinader2019-03-232-5/+6
|
* [ios, macos] Support expressions in formatting parameters. (#14198)Fabian Guerra Soto2019-03-223-44/+37
| | | | | Modified MGLAttributedExpression object to support NSExpressions as formatting attributes only. This aligns with GL and Android implementation and specification. Modified the documentation accordingly, and changed MGLFontSizeAttribute to MGLFontScaleAttribute to clarify the true function of the formatting parameter.
* [ios, macos] Fix conditional expression parsing error. (#14181)Fabian Guerra Soto2019-03-211-20/+3
| | | | Fixed an error that caused conditional expressions to crash when a conditional parameter was also a conditional expression.
* [core] Remove file source from public Map ctorBruno de Oliveira Abinader2019-03-205-14/+32
|
* [darwin] [MGLOfflineStorage mbglFileSource] is now a shared_ptrBruno de Oliveira Abinader2019-03-206-30/+22
|
* [ios, macos] Fix format expression parsing. (#14168)Fabian Guerra Soto2019-03-201-13/+5
| | | Fixed a parsing issue when a non-constant expression was passed to MGLAttributedExpression.expression property.
* [ios, macos] Add text-color support to format expressions. (#14146)Fabian Guerra Soto2019-03-193-6/+75
| | | | | | | | Added the possibility of overriding paint properties inside the format expression. Added an example of how to create an MGLAttributedExpression object and documented the attributes keys and value types. Fixed a bug that ignored the font names.
* [ios] Deleted unused NSData categoryMinh Nguyễn2019-03-183-37/+0
|
* [ios, macos] Add format expression convenience methods support. (#14094)Fabian Guerra Soto2019-03-154-1/+180
| | | | | | | | | | | Added the ios/macos format expression bindings. The equivalent is mgl_attributed: or mgl_attributed({}) when making an expression using the expressionForFormat selector. A new constructor called mgl_expressionForAttributedExpressions:(NSArray<NSExpression*>*)attributedExpressions was added to NSExpression+MGLAdditions category. Updated the symbol style layer text test to use the bindings. Updated the Predicates and Expressions.md and For Style Authors.md.ejs template with the bindings.
* [ios, macos] Fix a bug with multiple format expressions. (#14064)Fabian Guerra Soto2019-03-071-1/+13
| | | | Fixed a bug where `format` expressions using the generic `MGL_FUNCTION` binding ignored multiple formatting parameters.
* [ios] Mute warnings about OpenGL deprecation. (#14019)Julian Rex2019-03-051-0/+3
|
* [core] Transform{State}: s/angle/bearing/Bruno de Oliveira Abinader2019-03-041-1/+1
|
* [ios] Make PingFang as the default local font family for GCJ glyphs(#13988)Lloyd Sheng2019-02-272-4/+5
| | | | | | * Make PingFang as the default local font family * Add a changelog
* [ios, macos] Expose MGLMapView OpenGL context to OpenGL style layersMinh Nguyễn2019-02-252-0/+16
| | | | Added a property to MGLOpenGLStyleLayer that contains the map view’s underlying OpenGL rendering context.
* [ios] Mock MGLOfflineStorage in MGLDocumentationExampleTestsJason Wray2019-02-191-6/+6
| | | | Otherwise we risk kicking-off long-running offline pack downloads that could interfere with other tests.
* [ios, macos] Expose the url session configuration object. (#13886)Fabian Guerra Soto2019-02-183-23/+68
| | | | The `MGLNetworkConfiguration` class was make public, and added `sessionConfiguration` property to let developers customize the `NSURLSessionConfiguration` object that is used to make HTTP requests in the SDK.
* [ios, macos] Move `apiBaseURL` to `MGLAccountManager`` (#13754)Jordan Kiley2019-02-135-29/+27
| | | [ios, macos] Move `apiBaseURL` to `MGLAccountManager`
* [android,linux,darwin,qt] Load OpenGL for the platformThiago Marcos P. Santos2019-02-121-0/+180
| | | | | | | | These loaders will provide pointers to the platform implementation of OpenGL. On Android, Linux and Darwin, we simply link with the OpenGL implementation that is expected to exist on the platform. Qt has its own GL loader, so we just connect the dots.
* [ios, macos] Update unit test bundle identifier. (#13875)Fabian Guerra Soto2019-02-051-1/+1
|
* [ios][documenation] add additional code snippets to API docsJosh Erb2019-01-305-1/+49
|
* [darwin, docs] Improve method/property linking in jazzyJason Wray2019-01-292-24/+24
|
* [ios] Fix typo in MGLComputedShapeSource error messageJesse Crocker2019-01-251-1/+1
|
* [ios] Update more URLs to docs.mapbox.com/iosJason Wray2019-01-2517-40/+40
|
* [android, darwin] Fix core-only layer creationMikhail Pozdnyakov2019-01-251-10/+10
| | | | | In the layer manager implementations `addLayerTypeCoreOnly()` should be called with core-only modules.
* [ios] Fix links in documentationNadia Barbosa2019-01-2312-40/+37
| | | | | | [ios] Update to docs.mapbox.com Update links
* [ios, macos] MGLMapView logging improvements. (#13776)Fabian Guerra Soto2019-01-221-0/+6
| | | | | Added NSEdgeInsets to NSString function to improve the debugging on macOS. Added debug logs to MGLMapView.
* [core,ios,android] Update feedback URL in code and tests (#13710)Antonio Zugaldia2019-01-171-1/+1
| | | | | | * [core,ios] rename all occurrence of www.mapbox.com/map-feedback to apps.mapbox.com/feedback * [ios,android] rename all occurrence of www.mapbox.com/feedback to apps.mapbox.com/feedback
* Ability to disable any layer using pre-processing flags.Michael Muesch2019-01-171-0/+44
|
* [ios, macos] Support getLeaves (and related) clustering methods (#12952) ↵Julian Rex2019-01-148-3/+298
| | | | following feature extension API (#13382)
* [macos] - update links to new API doc format (#13693)Heather Stenson2019-01-102-15/+15
|