0

Google マップを使用してマップの特定の地域を表示するように UIView をセットアップしました。この選択した領域の上に画像オーバーレイを追加したいのですが、正しい座標を計算する方法がわかりません。中心座標でマップを設定しましたが、オーバーレイには北西と南東の座標が必要です。誰か助けてくれませんか?いくつかの道路に競馬場の画像を入れようとしています。

以下はこれまでの私のコードです:

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:14.5809268
                                                       longitude:120.975319
                                                            zoom:16.5
                                                         bearing:90
                                                    viewingAngle:0];

    // Indicating the map frame bounds
    mapView_ = [GMSMapView mapWithFrame:self.mapViewOnScreen.bounds camera: camera];
    mapView_.myLocationEnabled = YES;

    // Add as subview the mapview
    [self.mapViewOnScreen addSubview: mapView_];


    //this is where I need to figure out the coordinates but get stuck...

    CLLocationCoordinate2D southWest = CLLocationCoordinate2DMake(40.712216,-74.22655);
    CLLocationCoordinate2D northEast = CLLocationCoordinate2DMake(40.773941,-74.12544);
    GMSCoordinateBounds *overlayBounds = [[GMSCoordinateBounds alloc] initWithCoordinate:southWest
                                                                          coordinate:northEast];


    //Add track image over the road map to show a race track - roads need to match up

    UIImage *icon = [UIImage imageNamed:@"Track.jpg"];
    GMSGroundOverlay *overlay =
    [GMSGroundOverlay groundOverlayWithBounds:overlayBounds icon:icon];
    overlay.bearing = 0;
    overlay.map = mapView_;

    // Creates a marker in the center of the map.
    GMSMarker *marker = [[GMSMarker alloc] init];
    marker.position = CLLocationCoordinate2DMake(14.5809268, 120.975319);
    marker.title = @"Race Day";
    marker.snippet = @"Manila";
    marker.map = mapView_;

}
4

1 に答える 1