Important facts about commercial licenses

  • Licenses are perpetual. They do not expire and do not need to be renewed.
  • Licenses can be upgraded. You can upgrade to a more expensive license later paying only the difference in cost.
  • Pay attention to the distribution type - Hosted (sites / servers), binary (applications) or source (includes all the others). Choose according to your needs (more below).
  • All licenses allow commercial use unless otherwise indicated.
  • Read the full license by clicking on the icon.
  • Read more about licenses in our handy license guide.
$12

Personal License

1 application Binary restricted distribution
You need to log-in or create an account
  • Create an account
  • Log-in
  • Please use your real name.
  • Account activation link will be sent to this address.
  • Minimum 8 characters

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

  • Released: May 2, 2011
    Last Update: May 2, 2011
  • Language: Objective-C
    Platform(s): iPhone

Google Maps for iPhone and iPad

Google Maps for iPhone and iPad
Developed by Noah Hamann, Released May 2, 2011

Map view for the iPad and iPhone that is incredibly easy to implement.

Objective-C

Tags: google maps , ios , ipad , iphone

About

Use this component to add Google maps to your application. Once implemented, the view can be customized to your liking. Multiple pins can be added within a single map.

Whats Included

  • .h and .m files needed to create the map view
  • Example project with the map view installed and detailing 3 locations
  • Instructions on how to install
Back to top

Documentation

1) Add the MapKit.framework to your project.

2) Add the following files to your project:

  • mapAnnotation.h

  • mapAnnotation.m

  • googleMapViewController.h

  • googleMapViewController.m

3) Edit CLLocationCoordinate2D latitude and longitude in googleMapViewController.m to change pin positions

4) Edit mapAnnotation title and subtitle in googleMapViewController.m to change pin title and description

5) Include googleMapViewController.h into the view controller you want the video to display.

6) Initiate and add the googleMapViewController view to the stage.

Below is an example how to include the map in your app. Also see example project for help.

#import "example_ios_projectViewController.h"
#import "googleMapViewController.h"
@implementation example_ios_projectViewController


- (void)viewDidLoad {
    [super viewDidLoad];
    googleMapViewController *newView = [[googleMapViewController alloc] init];
    newView.view.frame = CGRectMake(0, 0, 320, 460);
    [self.view addSubview:newView.view];
}

@end

User Reviews

No reviews have been submitted yet.
Read all 2 comments »

Questions & Comments


Or enter your name and Email
  • pilot34 1 year ago
    What are differences between this and standard MKMapView? :)
  • Chase Acton 1 year ago
    Can this be used to search for locations such as cities, restaurants, etc.?
You must be logged-in to vote. Log-in to your account or register now.