MKCooperativeRegionForMapRect 在单点触摸中不可用?

发布于 2024-11-28 17:25:25 字数 101 浏览 2 评论 0原文

我正在将一个示例从 Objective-C 转换为 c#,它使用了 MKCooperativeRegionForMapRect。我无法在 MonoTouch 中找到等效项。有人可以帮忙吗?

I am converting an example from Objective-C to c# and it used MKCoordinateRegionForMapRect. I am not able to find the equivilent in MonoTouch. Can someone help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分分钟 2024-12-05 17:25:25

MonoTouch(目前)缺少此功能的 pinvoke。根据文档 [1],正确的 pinvoke 应该如下所示:

[DllImport (Constants.MapKitLibrary, EntryPoint="MKCoordinateRegionForMapRect")]
extern static public MKCoordinateRegion FromMapRect (MKMapRect rect);

将其添加到您的代码中(在类型内并使用正确的“使用”命名空间),它应该可以正常工作:-)

[1] http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MapKitFunctionsReference/Reference/reference.html

更新: 较新的 MonoTouch 版本有这个新方法(MonoTouch 4.2.x+)

The pinvoke for this function is (presently) missing from MonoTouch. Based on the documentation [1] the right pinvoke should look like:

[DllImport (Constants.MapKitLibrary, EntryPoint="MKCoordinateRegionForMapRect")]
extern static public MKCoordinateRegion FromMapRect (MKMapRect rect);

Add this into your code (inside a type and with the right 'using' namespaces) and it should work fine :-)

[1] http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MapKitFunctionsReference/Reference/reference.html

UPDATE: Newer MonoTouch releases have this new method (MonoTouch 4.2.x+)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文