MKCooperativeRegionForMapRect 在单点触摸中不可用?
我正在将一个示例从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MonoTouch(目前)缺少此功能的 pinvoke。根据文档 [1],正确的 pinvoke 应该如下所示:
将其添加到您的代码中(在类型内并使用正确的“使用”命名空间),它应该可以正常工作:-)
[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:
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+)