本文整理汇总了C++中layer::setMinZoom方法的典型用法代码示例。如果您正苦于以下问题:C++ layer::setMinZoom方法的具体用法?C++ layer::setMinZoom怎么用?C++ layer::setMinZoom使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类layer
的用法示例。
在下文中一共展示了layer::setMinZoom方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setstate
static void
setstate (layer& l, boost::python::tuple state)
{
using namespace boost::python;
if (len(state) != 8)
{
PyErr_SetObject(PyExc_ValueError,
("expected 8-item tuple in call to __setstate__; got %s"
% state).ptr()
);
throw_error_already_set();
}
if (state[0])
{
l.set_abstract(extract<std::string>(state[0]));
}
if (state[1])
{
l.set_title(extract<std::string>(state[1]));
}
if (state[2])
{
l.set_clear_label_cache(extract<bool>(state[2]));
}
if (state[3])
{
l.setMinZoom(extract<double>(state[3]));
}
if (state[4])
{
l.setMaxZoom(extract<double>(state[4]));
}
if (state[5])
{
l.setQueryable(extract<bool>(state[5]));
}
if (state[6])
{
mapnik::parameters params = extract<parameters>(state[6]);
l.set_datasource(datasource_cache::instance()->create(params));
}
boost::python::list s = extract<boost::python::list>(state[7]);
for (int i=0;i<len(s);++i)
{
l.add_style(extract<std::string>(s[i]));
}
}