polyline for the subview in Googlemaps

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

GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude: 32.915134 
longitude: -117.140269 zoom: 17];

GMSMapView *mapView = [GMSMapView mapWithFrame:self.googleMapView.bounds
camera:camera];
mapView.myLocationEnabled = YES;

self.googleMapView = mapView;

GMSMarker *marker = [ [GMSMarker alloc] init];
marker.position = CLLocationCoordinate2DMake(32.915134, -117.140269);
marker.title = @"Tet Festival 2015";
marker.snippet = @"VAYA Tet";
marker.map = mapView;
}



Previous
Next Post »