summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [macos] Update visible coordinates documentation to reflect antimeridian usage.upstream/fabian-antimeridian-docFabian Guerra2017-12-211-0/+12
|
* [ios] Update changelog. Podspec bump to v3.7.2ios-v3.7.2Fabian Guerra2017-12-214-4/+12
|
* [ios] Re-add i386 slice to framework; strip from dSYMJason Wray2017-12-213-3/+8
|
* [ios] Update visible coordinates documentation to reflect antimeridian usage.Fabian Guerra2017-12-211-0/+12
|
* [ios, macos] Updated MGLImageSource exampleMinh Nguyễn2017-12-211-4/+1
| | | | Ran make darwin-update-examples to ensure that headers reflect the tested example code.
* [ios, macos] Fixed MGLMapSnapshotter test crashMinh Nguyễn2017-12-212-10/+33
| | | | Fixed a crash in MGLDocumentationExampleTests caused by an asynchronous snapshot call that the test wasn’t waiting on, compounded by the use of a style that requires an access token (as opposed to the one-liner style that uses no remote resources. Employed some Swiftisms to fulfill expectations without making the example code look weird.
* [ios] Fix ornament constrains on iOS 10Fabian Guerra2017-12-211-2/+3
|
* [ios, build] Stop packaging i386 simulator archJason Wray2017-12-206-8/+12
| | | | Only builds and packages x86_64 architecture in our frameworks and dSYM. Removes support for 32-bit simulators, such as the iPhone 5 and iPad 2. This does not affect device support — 32-bit devices are still supported via the arm7 architecture.
* Fix CustomLayer context retain count (#10765)Asheem Mamoowala2017-12-205-16/+16
| | | | | | * [core] RenderCustomLayer should de-initialize old context * [iOS, macOS] Use toll-free bridging to retain/release MGLOpenGLStyleLayer instead of a separate array.
* [ios, macos] Remove duplicated variables between MGLMapSnapshotOptions and ↵Fabian Guerra2017-12-202-142/+35
| | | | MGLMapSnapshotter
* Update iOS, macOS SDK translations (#10738)Minh Nguyễn2017-12-2025-28/+174
| | | | | | | | * [ios, macos] Updated Bulgarian, Spanish, Vietnamese localizations * [ios, macos] Added Arabic localization * [ios, macos] Updated localizations
* [android] - update changelog for 5.3.0android-v5.3.0Tobrun2017-12-201-3/+15
|
* [android] added map touch listeners api based on listspaczos2017-12-204-36/+372
|
* [android] Tweak TinySDF docs to better describe font-family behavior.Chris Loer2017-12-194-5/+8
|
* Saving/restoring MyLocationViewSettings (#10746) (#10748)Tobrun2017-12-197-43/+134
| | | [android] saving/restoring MyLocationViewSettings, updated BitmapUtils
* [android] Updated Spanish, Vietnamese translationsMinh Nguyễn2017-12-192-4/+6
|
* Android SDK renaming (#10609)Langston Smith2017-12-195-7/+7
| | | | | | | | * changes in various markdown files * more tweaks * Updated attribution title
* [android] - use default icon when compass icon fails to decode (#10694)Tobrun2017-12-191-0/+6
|
* [android] - remove startup flash from fragment, rework OnMapReady callback ↵Tobrun2017-12-192-16/+44
| | | | for multiple listeners (#10717)
* [android] Add Configuration hook for local ideograph font family and demo ↵Chris Loer2017-12-1814-38/+196
| | | | activity
* [android] Android implementation of local CJK glyph renderingChris Loer2017-12-185-1/+209
| | | | | - Draws bold version of glyph if font stack contains string "bold" - Not hooked up to global configuration yet
* [core] Hook LocalGlyphRasterizer "font family" configuration up to RendererChris Loer2017-12-189-8/+33
|
* [core] Enable local glyph generation using TinySDF.Chris Loer2017-12-1810-6/+86
| | | | | | | - Platform-specific LocalGlyphRasterizer is responsible for deciding which glyphs to rasterize locally and for implementing the rasterization. - Default platform implementation doesn't locally generate any glyphs -> no behavior change - Unit test uses StubLocalGlyphRasterizer, which returns a single fixed bitmap for all CJK glyphs - Rename glyph_loader.test to glyph_manager.test
* [core] C++ port of TinySDFChris Loer2017-12-183-0/+127
|
* [ios, macos] Cleaned up base localization filesMinh Nguyễn2017-12-184-2/+8
| | | | Localizable strings in Darwin classes need to specify “Foundation” as the table so that NSBundle consults the right .strings files. Reran make genstrings to add some missing strings to the base localizations and undo some manual edits to the base localizations that contained errors.
* [android] - update instrumented make target, move code style validation ↵Tobrun2017-12-182-21/+8
| | | | before building C++ code, replace code style checks with the wrapper code style check. (#10724)
* [android] - activate filesource when creating an offline region (#10718)Tobrun2017-12-181-0/+3
|
* [ios] update constraints when updating content insetFredrik Karlsson2017-12-141-1/+1
|
* [ios] Fix an Interface Builder crash for IBInspectable properties.Fabian Guerra2017-12-142-2/+4
|
* [ios] Fix the content insets for the scale and compass view.Fabian Guerra2017-12-141-4/+8
|
* Post camera listener invocations (#10690)Tobrun2017-12-142-133/+81
| | | | | | * [android] - post camera listener invocations * remove jvm unit test
* [android] - update documentation on update metadataTobrun2017-12-131-3/+0
|
* [android] - scale factor value of 1 should zoom outTobrun2017-12-131-1/+1
|
* [android] - allow configurable http loggingTobrun2017-12-123-14/+46
|
* [android] - post animation callback invocationTobrun2017-12-122-28/+36
|
* [ios] Update changelog and bump podspec to 3.7.1 (#10651)ios-v3.7.1Fabian Guerra Soto2017-12-064-5/+9
|
* [android] - update changelog for 5.2.1 releaseandroid-v5.2.1Tobrun2017-12-061-0/+14
|
* [ios, macos] Rename the iOS and macOS SDKs (#10610)Jordan Kiley2017-12-0636-112/+119
|
* [core, ios, qt, android] Close race condition in RunLoop (issue #9620)Chris Loer2017-12-064-8/+16
| | | | | Because a message we queue from the foreground may cause the background to complete, exit, and tear down the AsyncTask, we have to block queue processing until we've finished our call to AsyncTask::send(). Broadening the scope of a mutex is scary, but I audited the code of our four implementations of AsyncTask and I don't see any way this could cause a deadlock.
* [android] - add FileSource activation/deactivation to MapSnapshotter, handle ↵Tobrun2017-12-065-33/+49
| | | | multiple deactivate scenario in FileSource (#10556)
* [android] - handle destroying activity programmatically as part of theme ↵Tobrun2017-12-061-2/+6
| | | | switching (#10589)
* [android] - use concurrent lists for camera change listeners (#10542)Tobrun2017-12-061-26/+25
|
* [android] - harden MarkerView integration by checking for null bitmap (#10532)Tobrun2017-12-061-1/+1
|
* [android] - activate filesource to list offline regions (#10531)Tobrun2017-12-061-2/+5
|
* [android] Enable map rendering when app is pausedIvo van Dongen2017-12-064-4/+21
|
* [ios, macos] Snapshot classes added to jazzyJulio Cesar Fausto2017-12-052-0/+6
|
* [android] remove unnecessary jar generation from gradle-publish.gradle (#10625)Pablo Guardiola2017-12-053-47/+36
|
* [ios, macos] Refactor snapshot attribution.Fabian Guerra2017-12-043-86/+143
|
* [macos] Fixed logo view distortion on macOS High SierraMinh Nguyễn2017-11-302-1/+2
| | | | Only the logo view’s baseline is aligned to the attribution view’s baseline; the X-height doesn’t need to be aligned. Previously, macOS ignored the X-height constraint inferred from the alignment rect, but now it honors it in addition to the baseline.
* [ios, macos] Update changelogs.Fabian Guerra2017-11-302-1/+11
|