summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add change log entryupstream/mikhail_source_min_tile_update_intervalMikhail Pozdnyakov2020-04-201-0/+10
|
* Add Map.SourceMinimumUpdateIntervalOverride unit testMikhail Pozdnyakov2020-04-201-0/+57
|
* Add Source.SourceMinimumUpdateInterval unit testMikhail Pozdnyakov2020-04-201-0/+49
|
* [core] Tile pyramid passes minimum update interval to tilesMikhail Pozdnyakov2020-04-201-7/+6
|
* [core] TilePyramid::update accepts source implMikhail Pozdnyakov2020-04-209-79/+62
|
* [core] Introduce Source::setMinimumTileUpdateInterval APIMikhail Pozdnyakov2020-04-204-7/+36
| | | | | | The `Source::setMinimumTileUpdateInterval()` method sets the minimum tile update interval, which is used to throttle the tile update network requests. Default value is `Duration::zero()`.
* [core] Introduce Tile::setMinimumUpdateInterval()Mikhail Pozdnyakov2020-04-209-13/+51
|
* Add OnlineFileSource.RespectMinimumUpdateInterval unit testMikhail Pozdnyakov2020-04-201-0/+19
|
* [core] Introduce `Resource::minimumUpdateInterval`Mikhail Pozdnyakov2020-04-203-28/+34
| | | | | | Introduce `Resource::minimumUpdateInterval` and consider it in the online file source. The `minimumUpdateInterval` is used to throttle the requests, which were initiated due to resource expiration.
* [core] Add platform abstractions for utils::now()Thiago Marcos P. Santos2020-04-209-2/+34
| | | | | Some platforms might require special permissions or custom APIs to access the current time of the day.
* Update changelog for the maps-1.6.0-rc.1 releasemaps-v1.6.0-rc.1Gali Nelle2020-04-201-12/+16
|
* Add change log entryGali Nelle2020-04-201-0/+4
|
* [core] Fix -Werror={pessimizing,redundant}-move from GCC 9Bruno de Oliveira Abinader2020-04-2010-13/+10
|
* Add a name to CustomLayer LayerTypeInfoGali Nelle2020-04-201-1/+1
| | | | | | This to prevent confusion and enable proper error logging when registering layers with missing name in LayerTypeInfo where the name should instead be present.
* Add missing cast for unsigned long to int conversionGali Nelle2020-04-201-2/+2
|
* [build] Enable clang-analyzer checksThiago Marcos P. Santos2020-04-171-0/+8
|
* [core] Fix clang-analyzer-optin.cplusplus.VirtualCallThiago Marcos P. Santos2020-04-171-4/+6
| | | | Detected by clang-tidy-8.
* [core] Fix android-cloexec-fopen warningThiago Marcos P. Santos2020-04-171-1/+1
| | | | Detected by clang-tidy-8.
* Introduce a mean to add render features in layers with no sourcesGali Nelle2020-04-1714-12/+346
| | | | | | This change also uses the support in the LocationIndicator layer, to return a point feature when queried in correspondence of the location indicator.
* [build] Remove glfw submoduleThiago Marcos P. Santos2020-04-173-33/+0
| | | | We use it from the system.
* [render-test] Fix loggingThiago Marcos P. Santos2020-04-171-0/+2
| | | | Was broken after logging got moved to its own thread.
* [metrics] Ignore location indicator on iOS until we move to gfx::Thiago Marcos P. Santos2020-04-171-0/+1
| | | | After that, it will be more portable.
* Use unique_ptr for RenderLocationIndicatorImplGali Nelle2020-04-172-2/+2
|
* Better structure fix.Luke Seelenbinder2020-04-171-4/+4
|
* Fix segfault resulting from an invalid geometry.Luke Seelenbinder2020-04-171-2/+5
|
* [glfw] Fix clang-10 buildThiago Marcos P. Santos2020-04-171-3/+3
| | | | Implicit conversion from int to float.
* [node] Fix clang-tidy errors on the Node bindings headersThiago Marcos P. Santos2020-04-177-35/+24
| | | | As reported by clang-tidy-8.
* [core] Fix performance-no-automatic-move (bonus)Thiago Marcos P. Santos2020-04-176-9/+10
| | | | | | As reported by clang-tidy-10. We don't run clang-tidy-10 yet. We should probably consider moving the bots at some point so errors like this won't return.
* [core] Fix performance-noexcept-move-constructor in header filesThiago Marcos P. Santos2020-04-177-17/+16
| | | | As reported by clang-tidy-8.
* [core] Fix performance-unnecessary-value-param errors in header filesThiago Marcos P. Santos2020-04-1711-13/+18
| | | | As reported by clang-tidy-8.
* [core] Fix modernize-use-equals-default errors in header filesThiago Marcos P. Santos2020-04-176-7/+7
| | | | As reported by clang-tidy-8.
* [core] Fix google-default-arguments errors in header filesThiago Marcos P. Santos2020-04-179-21/+22
| | | | As reported by clang-tidy-8.
* [core] Fix misc-unconventional-assign-operator errors in header filesThiago Marcos P. Santos2020-04-172-2/+6
| | | | As reported by clang-tidy-8.
* [core] Fix google-build-namespaces errors in header filesThiago Marcos P. Santos2020-04-173-12/+2
| | | | As reported by clang-tidy-8.
* [core] Fix modernize-use-override errors in header filesThiago Marcos P. Santos2020-04-1717-17/+17
| | | | As reported by clang-tidy-8.
* [core] Fix readability-container-size-empty errors in header filesThiago Marcos P. Santos2020-04-171-1/+1
| | | | As reported by clang-tidy-8.
* [core] Fix readability-redundant-smartptr-get errors in header filesThiago Marcos P. Santos2020-04-172-4/+2
| | | | As reported by clang-tidy-8.
* [core] Fix performance-type-promotion-in-math-fn errors in header filesThiago Marcos P. Santos2020-04-173-10/+15
| | | | As reported by clang-tidy-8.
* [core] Fix readability-redundant-declaration errors in header filesThiago Marcos P. Santos2020-04-171-0/+4
| | | | As reported by clang-tidy-8.
* [core] Fix readability-const-return-type errors in header filesThiago Marcos P. Santos2020-04-171-6/+2
| | | | As reported by clang-tidy-8.
* [core] Fix modernize-return-braced-init-list errors in header filesThiago Marcos P. Santos2020-04-176-18/+11
| | | | As reported by clang-tidy-8.
* [core] Fix performance-unnecessary-value-param errors in header filesThiago Marcos P. Santos2020-04-1711-59/+37
| | | | As reported by clang-tidy-8.
* [core] Fix performance-move-const-arg errors in header filesThiago Marcos P. Santos2020-04-172-3/+3
| | | | As reported by clang-tidy-8.
* [core] Fix bugprone-forwarding-reference-overload errors in header filesThiago Marcos P. Santos2020-04-171-0/+1
| | | | | | This was a false positive. As reported by clang-tidy-8.
* [core] Fix modernize-pass-by-value errors in header filesThiago Marcos P. Santos2020-04-173-11/+12
| | | | As reported by clang-tidy-8.
* [core] Fix bugprone-forward-declaration-namespace errors in header filesThiago Marcos P. Santos2020-04-172-5/+0
| | | | As reported by clang-tidy-8.
* [core] Fix performance-unnecessary-copy-initialization errors in header filesThiago Marcos P. Santos2020-04-171-2/+2
| | | | As reported by clang-tidy-8.
* [core] Fix performance-inefficient-vector-operation errors in header filesThiago Marcos P. Santos2020-04-171-0/+1
| | | | As reported by clang-tidy-8.
* [core] Fix readability-redundant-member-init errors in header filesThiago Marcos P. Santos2020-04-1721-23/+24
| | | | As reported by clang-tidy-8.
* [core] Fix readability-avoid-const-params-in-decls errors in header filesThiago Marcos P. Santos2020-04-1749-217/+260
| | | | As reported by clang-tidy-8.