Apple は ios 6.0 バージョンから Google マップを取り出しました。緯度と経度を使用して...GoogleMapOverlayの例で緯度と経度の位置を指定すると、その特定の位置だけが背面の長方形のオーバーレイで取得されます。mkmapviewを見ることができます...誰かこれを解決するために私を案内してください..ありがとうございました
質問する
111 次
2 に答える
1
>= ios6のGoogleマップSDKを使用できます
https://developers.google.com/maps/documentation/ios/
here is sample code from google sdk ios
#import "YourViewController.h"
#import <GoogleMaps/GoogleMaps.h>
@implementation YourViewController {
GMSMapView *mapView_;
}
// You don't need to modify the default initWithNibName:bundle: method.
- (void)loadView {
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:24.451794 longitude:54.391412 zoom:12];
mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera];
mapView_.myLocationEnabled = YES;
self.view = mapView_;
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position=CLLocationCoordinate2DMake(24.451794,54.391412);
marker.snippet = @"Abu Dhabi";
marker.title = @"Al Jazira Sports and Cultural Club";
marker.map = mapView_;
}
@end
output:
于 2013-08-26T06:16:31.523 に答える
1
を追加し、その上にマップを追加することで、iOS 6 で Google マップを使用できますUIWebView
。
于 2013-08-26T06:11:43.243 に答える