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