forked from organicmaps/organicmaps
[new downloader] Adding storage_helpers.
This commit is contained in:
parent
f6b302a7b2
commit
b45d339674
2 changed files with 33 additions and 0 deletions
16
storage/storage_helpers.cpp
Normal file
16
storage/storage_helpers.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#include "storage/storage_helpers.hpp"
|
||||
|
||||
#include "storage/country_info_getter.hpp"
|
||||
#include "storage/storage.hpp"
|
||||
|
||||
namespace storage
|
||||
{
|
||||
|
||||
bool IsPointCoveredByDownloadedMaps(m2::PointD const & position,
|
||||
Storage const & storage,
|
||||
CountryInfoGetter const & countryInfoGetter)
|
||||
{
|
||||
return storage.IsNodeDownloaded(countryInfoGetter.GetRegionCountryId(position));
|
||||
}
|
||||
|
||||
} // namespace storage
|
17
storage/storage_helpers.hpp
Normal file
17
storage/storage_helpers.hpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
#include "geometry/point2d.hpp"
|
||||
|
||||
namespace storage
|
||||
{
|
||||
class CountryInfoGetter;
|
||||
class Storage;
|
||||
|
||||
/// \returns true if |position| is covered by a downloaded mwms and false otherwise.
|
||||
/// \note |position| has coordinates in mercator.
|
||||
/// \note This method takes into acount only maps enumerated in countries.txt.
|
||||
bool IsPointCoveredByDownloadedMaps(m2::PointD const & position,
|
||||
Storage const & storage,
|
||||
CountryInfoGetter const & countryInfoGetter);
|
||||
|
||||
} // namespace storage
|
Loading…
Add table
Reference in a new issue