0

マップキットを表示しようとしていますが、次のことを行っています: MapViewController.h

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <QuartzCore/QuartzCore.h>
@interface SiteViewController : UIViewController <MKMapViewDelegate>

@property (assign, nonatomic)       MKCoordinateRegion  region;
@property (strong, nonatomic)       IBOutlet MKMapView  *googleMap;

@end

MapViewController.m

- (void)viewDidLoad
{
    [super viewDidLoad];

    // Set propertiesfor the mapView
    self.region.center.latitude         =   43.62862 ; // expression is not assigned
    self.region.center.longitude        =   -79.331245;// expression is not assigned
    self.region.span.longitudeDelta     =   0.01f;     // expression is not assigned
    self.region.span.longitudeDelta     =   0.01f;     // expression is not assigned
    [self.googleMap setMapType:MKMapTypeStandard];
    [self.googleMap setZoomEnabled:YES];
    [self.googleMap setScrollEnabled:YES];
    [self.googleMap setRegion:self.region animated:YES];


    MKPointAnnotation *pin = [[MKPointAnnotation alloc] init];
    pin.coordinate  = region.center;
    [self.googleMap addAnnotation:pin];
}

私は得ています

式が割り当てられていません

理解できません。誰か説明して、私をこの問題から解放してくれませんか。

4

1 に答える 1

0

region プロパティまたは method を使用して、マップビュー リージョンを設定する必要があります- (void)setRegion:(MKCoordinateRegion)region animated:(BOOL)animated;

これを試して:

CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(43.62862, -79.331245);

[self.mapView setRegion:MKCoordinateRegionMake(coordinate, MKCoordinateSpanMake(0.01f, 0.01f))];
于 2013-01-18T21:03:22.383 に答える