如何在 iOS 4 中使用谷歌地球?
现在我通过Xcode 4制作iPhone应用程序(iOS4)。 我知道 MKMap Kit 用于使用 googleMap 制作 iOS 应用程序。 但我想使用iPhone应用程序上的谷歌地球,因为动作真的很流畅,而且图片也很赏心悦目。
我想知道如何在 iOS 4 应用程序中使用谷歌地球的框架。
我是 iPhone 编码的初学者。
now I make iPhone Application (iOS4) by Xcode 4.
I know MKMap Kit for using googleMap to making iOS Apps.
But I wanna use google earth on iPhone App, because the motion is really smooth and pics are nice to enjoy to see.
I want to know how, what framework to use google earth in iOS 4 app.
I am a beginner of iPhone coding.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。没有可供使用的 Google Earth 框架。有一个第三方框架,尽管它模仿 smartcoding.com 的 3D 地球行为: http:// www.clevercoding.com/iPhone3Dglobe.php
You can't. There is no Google Earth framework available to use. There is a third-party framework, though that mimics a 3D-globe behaviour by clevercoding.com: http://www.clevercoding.com/iPhone3Dglobe.php
iOS 上没有内置的 google 地球 API,但您可以通过界面生成器或以编程方式将地图类型更改为“混合”。
从界面生成器中
或者以编程方式,您可以通过以下方式完成:
在您的地图上创建 IBOutlet。
IBOutlet MKMapView *userMap;
接下来,在你的 viewDidLoad 方法中执行此操作
,这至少会给你一个像谷歌地球这样的视图..
There is no inbuilt api on iOS for google earth but what you can do is that you can change the map type to "Hybrid" from either the interface builder or programmatically .
From Interface builder
or programmatically you can do it by:
Make an IBOutlet to your map.
IBOutlet MKMapView *userMap;
Next, in your viewDidLoad method do this
and this will at the very least give you a view like google earth ..