summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [ios] Disable implicit animation of user dot boundsMinh Nguyễn2016-03-102-0/+11
| | | | ref #1125
* [androd] #4269 - polyline activity crash fixTobrun2016-03-101-11/+13
|
* [android] #4263 - fix null pointer on MapboxMapEventManagerTobrun2016-03-102-23/+25
|
* [ios] Add description strings to constituent classesJason Wray2016-03-105-2/+29
|
* [android] #4263 - have the ability to define multiple callbacks for OnMapReadyTobrun2016-03-101-5/+13
|
* [android] Route exceptions in HTTPRequest constructor to onFailureJohn Firebaugh2016-03-101-9/+18
|
* [core] Fix screen coordinates when crossing the antimeridianBruno de Oliveira Abinader2016-03-103-1/+38
| | | | | | | | | If the center and point coordinates are not in the same side of the antimeridian, we need to unwrap the point longitude to make sure it can still be seen from the visible side of the antimeridian that is opposite to the center side. Fixes #4155.
* [core] Extra checks in TransformBruno de Oliveira Abinader2016-03-101-1/+5
|
* [core] Check for NaNs in EdgeInsetsBruno de Oliveira Abinader2016-03-104-19/+53
|
* [core] Added Transform::getScreenCoordinateBruno de Oliveira Abinader2016-03-102-13/+19
|
* [core] Remove _validPoint from Transform codeBruno de Oliveira Abinader2016-03-102-11/+28
| | | | vec2<T>::operator bool() checks for NaNs already.
* [core] Fixes point annotations misplaced on maximum scaleBruno de Oliveira Abinader2016-03-101-2/+2
|
* [core] Coordinate wrapping fixesBruno de Oliveira Abinader2016-03-1010-61/+87
| | | | | | | | | | | | | | | - Make returning LatLngs unwrapped by default. - PointAnnotation and ShapeAnnotation are always wrapped so they can be selected via intersection from the visible tile boundaries. - Fixes LatLng::wrap() calculation. - Fixes LatLng::unwrapForShortestPath() calculation. The new unwrapForShortestPath algorithm unwraps the start coordinate either forwards or backwards depending on the end coordinate value, so we can always cross the antimeridian when needed and still obtain a wrapped end coordinate in the end. Fixes #4214.
* [android] #4076 - MapboxMapOptions fixTobrun2016-03-0914-172/+468
|
* [core] Deactivate OfflineDownload when the tile count limit is hitJohn Firebaugh2016-03-092-1/+14
| | | | This is a better behavior than sending hundreds or thousands of tileCountLimitExceeded notifications.
* [android] #4253 - remove MapboxMapActivityTobrun2016-03-097-160/+0
|
* [android] #4076 - MapboxMapOptions initial versionTobrun2016-03-0934-180/+579
|
* [android] #4183 - Moving QuickZoom event recording to single finger, double ↵Brad Leege2016-03-081-1/+1
| | | | tap, and drag processing
* [ios] Non-embedded static frameworkMinh Nguyễn2016-03-0810-26/+72
| | | | | | Added a new ifabric Make target for packaging up a static framework similar to the one released as 3.0.1. Place artwork and certificate assets inside Mapbox.bundle inside Mapbox.framework. Link SystemConfiguration in the umbrella header. Distinguish between the framework bundle and the resources bundle. For the dynamic frameworks and embedded static frameworks, the two are the same; for the non-embedded static framework, the latter resides inside the former.
* [core] Fix offline status reporting regressionsJohn Firebaugh2016-03-083-41/+76
| | | | | | The core of the change is ensuring that ensureResource doesn't release Zalgo: it should be consistently async, rather than async in the case that the resource doesn't exist in the database, but sync if it does. This ensures that status is reported in a more consistent sequence, regardless of the database state.
* [core] Fix RunLoop::run() behavior when called a second timeJohn Firebaugh2016-03-082-0/+22
|
* [tests] Add utest for NetworkStatus::Online/OfflineThiago Marcos P. Santos2016-03-081-0/+33
|
* [core] Make OnlineFileSource respect the NetworkStatusThiago Marcos P. Santos2016-03-082-7/+13
| | | | | The user can now force the Offline mode and set it back to Online, triggering the requests waiting for network connection.
* [core] Remove goOffline() from DefaultFileSourceThiago Marcos P. Santos2016-03-084-14/+8
| | | | Use the newly added NetworkStatus::Set().
* [core] Add client defined network statusThiago Marcos P. Santos2016-03-082-0/+32
| | | | | | | | This API will let the client force a network status. If set to Offline, we won't make network requests. When set make to Online, it will trigger the pending requests and try to fetch tiles from the network.
* [android] #4240 - add flag to resize only when needed.Tobrun2016-03-082-5/+7
|
* [core] cancel TileID::overscaling()Konstantin Käfer2016-03-0811-17/+21
|
* [bin] Add explicit ^C handling to bin/offline, to test deactivationJohn Firebaugh2016-03-071-6/+28
|
* [core] Ensure OfflineRegionStatus::downloadState is accurately reportedJohn Firebaugh2016-03-072-0/+35
|
* Update TooManyIconsException.javaDan Swick2016-03-071-1/+1
|
* Update IconBitmapChangedException.javaDan Swick2016-03-071-2/+2
|
* [android] #4078 - improved instructions of exception messageTobrun2016-03-072-3/+9
|
* [android] #4078 Gave help directly in logcat instead of refering to install.mdCameron Mace2016-03-072-2/+2
|
* [android] #3631 - resize fix issueTobrun2016-03-071-1/+4
|
* [android] #2996 - test workaround for device not sharing contextTobrun2016-03-071-0/+5
|
* [android] #4220 - Removing WAKE_LOCK from TestApp. Lowering log level to ↵Brad Leege2016-03-073-6/+7
| | | | debug for Telemetry Location and Send to Server log lines.
* [android] Do not reach native if the HTTPContext was invalidatedThiago Marcos P. Santos2016-03-072-17/+29
| | | | | | | | | | | | | | | | Native will get destroyed before the Java HTTPRequest and asynchronous requests might still get answered. If the request gets canceled, we now clear the reference to the native code and it will never reach it. Lock is needed because OkHTTP replies on its own thread, so we need to guard the access to the variable we use for checking if the Request was canceled. In the future we could remove the lock and use Runnable when we move Android main loop to Looper instead of libuv. Like the other implementations of HTTPRequest on Mapbox GL Native, the request is destroyed synchronously on ::cancel().
* [android] #4217 - fix build warning casting a varargsTobrun2016-03-071-4/+1
|
* [android] Reporting is no longer an issueAntonio Zugaldia2016-03-071-1/+1
| | | | Part of #4200
* [android] Remove GSON From Offline Example TestAppAntonio Zugaldia2016-03-072-66/+18
| | | | Fixes #4172
* [android] Don't crash if someone tries to use OfflineRegion after deleteJohn Firebaugh2016-03-071-8/+13
|
* [android] Remove redundant arguments from offline native methodsJohn Firebaugh2016-03-072-21/+17
| | | | `this` is automatically provided as the first argument to a native method.
* [android] destroyOfflineRegion must not delete an already-deleted peerJohn Firebaugh2016-03-072-3/+8
|
* [android] Don't call util::toString() on a null exception_ptrJohn Firebaugh2016-03-071-1/+0
|
* [android] #4206 - property animation exampleTobrun2016-03-067-7/+193
|
* [android] #4211 - avoid crashes when NativeMapView is being destroyedTobrun2016-03-061-26/+161
|
* [ios] Cleaned up NSLocalizedString usageMinh Nguyễn2016-03-051-16/+16
| | | The format string would be localized, not the string resulting from expanding its placeholders. Also unindented a wildly indented block of code.
* [ios] Use MGLErrorDomain for errorsMinh Nguyễn2016-03-051-2/+1
|
* [android] Don't leak global references to OfflineRegionObserversJohn Firebaugh2016-03-041-13/+30
|
* [core] explicitly initialize a few fields to nullKonstantin Käfer2016-03-046-12/+12
|