Exemplo n.º 1
0
void ServicesDbReader::setConfiguration(const Settings& conf)
{
  ConfigOptions configOptions(conf);
  setMaxElementsPerMap(configOptions.getMaxElementsPerPartialMap());
  setUserEmail(configOptions.getServicesDbReaderEmail());
  setBoundingBox(configOptions.getConvertBoundingBox());
}
Exemplo n.º 2
0
void ServicesDbReader::setConfiguration(const Settings& conf)
{
  setMaxElementsPerMap(ConfigOptions(conf).getMaxElementsPerPartialMap());
  setUserEmail(conf.getString(emailKey(), ""));
}
Exemplo n.º 3
0
PartialOsmMapReader::PartialOsmMapReader()
{
  setMaxElementsPerMap(ConfigOptions().getMaxElementsPerPartialMap());
  _elementsRead = 0;
}