UIView не показывает мою карту, показывает только стандартную карту

#ios #objective-c #google-maps-sdk-ios #gmsmapview

#iOS #objective-c #google-maps-sdk-ios #gmsmapview

Вопрос:

Это мой контроллер представления, который я реализовал в UIView.

Строка, которую компилятор выделяет желтым цветом, выглядит следующим образом:

 self.vermapa_.delegate=self;
 

Так что-то не так self ?

(.h)

 #import <UIKit/UIKit.h>

@interface appiOSViewController : UIViewController

@end
 

и (.m)

 #import "appiOSViewController.h"
#import <GoogleMaps/GoogleMaps.h>
@interface appiOSViewController ()
@property (weak,nonatomic) IBOutlet GMSMapView *vermapa_;
@end

@implementation appiOSViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    **self.vermapa_.delegate=self;**

    GMSCameraPosition *pos = [GMSCameraPosition cameraWithLatitude:7.114797
                                                         longitude:-73.104932
                                                              zoom:15.3];

    self.vermapa_ = [GMSMapView mapWithFrame:CGRectZero camera:pos];
    self.vermapa_.myLocationEnabled = YES;
    self.vermapa_.settings.compassButton = YES;
    self.vermapa_.settings.myLocationButton = YES;
    self.vermapa_.settings.zoomGestures = YES;


    GMSMarker *marker = [[GMSMarker alloc] init];
    marker.position = CLLocationCoordinate2DMake(7.116309,-73.105713);
    marker.title = @"Parada frente al edificio L";
    marker.snippet = @"UNAB - Jardín";
    marker.map = self.vermapa_;

    GMSMarker *marker1 = [[GMSMarker alloc] init];
    marker1.position = CLLocationCoordinate2DMake(7.112412,-73.105134);
    marker1.title = @"CSU";
    marker1.snippet = @"UNAB - Terrazas";
    marker1.map = self.vermapa_;

    GMSMarker *marker2 = [[GMSMarker alloc] init];
    marker2.position = CLLocationCoordinate2DMake(7.110863,-73.106075);
    marker2.title = @"Parada de Bus - Terrazas";
    marker2.snippet = @"Terrazas";
    marker2.map = self.vermapa_;

    GMSMarker *marker3 = [[GMSMarker alloc] init];
    marker3.position = CLLocationCoordinate2DMake(7.117738,-73.105651);
    marker3.title = @"Parqueadero UNAB";
    marker3.snippet = @"UNAB - Jardín";
    marker3.map = self.vermapa_;


    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
 

Комментарии:

1. Я решил свою проблему с выделенной строкой следующим образом: vermapa_.delegate=(id<GMSMapViewDelegate>)self; Но продолжение UIView показывает стандартную карту, пожалуйста, мне нужна ваша помощь от кого-нибудь

Ответ №1:

Вы должны это сделать:

 @interface appiOSViewController () <GMSMapViewDelegate>
 

Если вы будете делегатом для какого-либо объекта, вы должны сообщить классу, что вы будете реализовывать методы делегирования.