本文整理汇总了C++中Projection::Wrap方法的典型用法代码示例。如果您正苦于以下问题:C++ Projection::Wrap方法的具体用法?C++ Projection::Wrap怎么用?C++ Projection::Wrap使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Projection
的用法示例。
在下文中一共展示了Projection::Wrap方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ThrowException
Handle<Value> Projection::New(const Arguments& args)
{
HandleScope scope;
if (!args.IsConstructCall())
return ThrowException(String::New("Cannot call constructor as function, you need to use 'new' keyword"));
if (!args.Length() > 0 || !args[0]->IsString()) {
return ThrowException(Exception::TypeError(
String::New("please provide a proj4 intialization string")));
}
try
{
Projection* p = new Projection(TOSTR(args[0]));
p->Wrap(args.This());
return args.This();
}
catch (const mapnik::proj_init_error & ex )
{
return ThrowException(Exception::Error(
String::New(ex.what())));
}
}
示例2: ThrowException
Handle<Value> Projection::New(const Arguments& args)
{
Projection *proj;
HandleScope scope;
if (args.Length() == 1 && args[0]->IsString()) {
String::Utf8Value init(args[0]->ToString());
proj = new Projection(*init);
if (!proj->IsValid()) {
int *errno = pj_get_errno_ref();
char *description = pj_strerrno(*errno);
return ThrowException(String::New(description));
}
}
else {
return ThrowException(String::New("No valid arguments passed for projection initialization string."));
}
proj->Wrap(args.This());
return args.This();
}