如何在 iOS 4 中使用谷歌地球?

发布于 2024-12-04 19:24:57 字数 205 浏览 2 评论 0原文

现在我通过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 技术交流群。

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

发布评论

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

评论(2

痴情换悲伤 2024-12-11 19:24:57

你不能。没有可供使用的 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

浅语花开 2024-12-11 19:24:57

iOS 上没有内置的 google 地球 API,但您可以通过界面生成器或以编程方式将地图类型更改为“混合”。

从界面生成器中

  • 选择您的 MapView -->>转到属性检查器并将其类型更改为混合。

或者以编程方式,您可以通过以下方式完成:

在您的地图上创建 IBOutlet。
IBOutlet MKMapView *userMap;

接下来,在你的 viewDidLoad 方法中执行此操作

- (void) viewDidLoad  
{  
     [super viewDidLoad];  
     userMap.mapType = MKMapTypeHybrid;  
}  

,这至少会给你一个像谷歌地球这样的视图..

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

  • Select ur MapView -->> go to attribute inspector and change its type to Hybrid.

or programmatically you can do it by:

Make an IBOutlet to your map.
IBOutlet MKMapView *userMap;

Next, in your viewDidLoad method do this

- (void) viewDidLoad  
{  
     [super viewDidLoad];  
     userMap.mapType = MKMapTypeHybrid;  
}  

and this will at the very least give you a view like google earth ..

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