Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:latitude
  2. longitude:longitude
  3. zoom:17];
  4. mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera];
  5. mapView_.myLocationEnabled = YES;
  6.  
  7.  
  8. self.view = mapView_;
  9.  
  10. // Creates a marker in the center of the map.
  11. GMSMarker *marker = [[GMSMarker alloc] init];
  12. marker.position = CLLocationCoordinate2DMake(latitude, longitude);
  13. marker.title = nomeCliente;
  14. marker.snippet = @"Detalhes";
  15. marker.map = mapView_;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement