Questions tagged [google-maps-sdk-ios]

The new Google Maps SDK for iOS allows users to view and interact with a Google map in your iOS app.

The new Google Maps SDK for iOS allows users to view and interact with a Google map in your iOS app. With rotation, tilt, 3D buildings and many other features, you can create highly interactive apps for your users.

Google Maps SDK for iOS Documentation

1363 questions
7
votes
0 answers

GMSReverseGeocodeResponse returns all results with missing addresses

For the last 48 hours, the GMSReverseGeocoder on Google maps iOS SDK (latest version 2.7) returns results with missing addresses in areas with latitude and longitude that used to work properly. One example is: GMSAddress { coordinate: (37.915000,…
Nikos M.
  • 13,685
  • 4
  • 47
  • 61
7
votes
1 answer

Google Maps iOS SDK heatmap not rendering

I am following the heat map code here and here for the Google Maps iOS SDK, but the heat map is not rendering on my map. The Google Maps API has been added through Cocoapods, and the Google Maps iOS Utils framework has been added manually with this…
IHaveAQuestion
  • 789
  • 8
  • 26
7
votes
2 answers

How to enable Google Maps zoom controls using Swift

I was reading the documentation of Google maps for swift , but compared with Android, I didn't find a way to set the 'Zoom Controls' on my map and by default are disabled. Exist a way with the Google Maps iOS SDK to display the controls?
Benjamin RD
  • 11,516
  • 14
  • 87
  • 157
7
votes
2 answers

Custom marker InfoWindow in google maps iOS swift?

I'm using google map iOS in my app , i want to show custom marker info window.How can i create it? I'm using storyboards and swift as the language.
7
votes
3 answers

How to disable animation for changing GMSMarker position in iOS?

According to documentation you can change marker position with animation: Marker position. Animated. Do you know how to disable this animation?
Roman Barzyczak
  • 3,785
  • 1
  • 30
  • 44
7
votes
6 answers

Google Maps ambiguous use of a GMSMapViewType

I just upgraded to Xcode 7.1. When I try to set the mapType of a GMSMapView I get the error Ambiguous use of 'kGMSTypeNormal', Ambiguous use of 'kGMSTypeTerrain', and Ambiguous use of 'kGMSTypeHybrid'. @IBOutlet weak var mapView: GMSMapView! func…
wxcoder
  • 665
  • 1
  • 13
  • 32
7
votes
3 answers

EXC_BAD_ACCESS Using gmaps sdk 1.9.0, Xcode 6.4, running on 8.3 device

I have 2 projects working with google maps sdk, they are currently in the Appstore. Things to have in mind: Gmaps sdk version 1.9.0 installed via cocoapods Xcode version 6.4 Deployment target 7.1 Device: iPhone 4s with 8.3.0 Today I've opened…
Fantini
  • 2,067
  • 21
  • 32
7
votes
2 answers

How Can I Draw A Radius Around A Map Marker Using Google Maps SDK (Swift/iOS)?

There are two ways a user can place a marker on the map within the app- via the UISearchBar above the map (not completed yet), and by long pressing on the map where they'd like the marker to appear. I am using a global variable for the marker,…
Jared
  • 81
  • 1
  • 2
  • 6
7
votes
1 answer

Is there a Google Maps equivalent to mkmapsnapshotter?

I have a UITableView which may potentially contain a large number of cells, and in some cells I want a UIImageView showing a map of a location, the coordinates of which are known only at runtime. I want the table view to scroll smoothly and I want…
7
votes
5 answers

Remove GMSPolyline from GMSMapView

I am using GoogleMap-IOS-1.8.1 SDK for displaying a map. I have to draw a GMSPolyline on the map. After a particular event I have to remove all GMSPolyline paths except for markers. I'm not sure of the best way to do that. The GoogleMaps…
Gaurav Pandey
  • 1,953
  • 3
  • 23
  • 37
7
votes
6 answers

Google maps iOS sdk get tapped overlay coordinates

i'm working with Google maps iOS sdk. i want to get the coordinates of the touched point when user taps an overlay. there is this delegate method: - (void)mapView:(GMSMapView *)mapView didTapAtCoordinate:(CLLocationCoordinate2D)coordinate but…
7
votes
1 answer

didChangeCameraPosition get bounding box/ rectangle of available coordinates

How can I retrieve the GMSCoordinateBounds from a GMSCameraPosition? I want to know the visible coordinates on the map (at least Northeast/Southwest points) everytime the user moves the camera as in: (void)mapView:(GMSMapView *)mapView…
apinho
  • 2,235
  • 3
  • 25
  • 39
7
votes
2 answers

Google Maps iOS Remove Polylines

Is it possible to remove all Polylines without removing other objects? [mapView clear]; removes everything including markers I also tried the following but it didn't work either.. for (GMSPolyline __strong *polyline in self.mapView.subviews) { …
Tim Tuffley
  • 605
  • 1
  • 6
  • 20
7
votes
1 answer

Google MAP iOS Satellite view is too cloudy now

I have been working on one application since last one year which which make use of Google MAP iOS SDK. Application provide user with flexibility to switch between Satellite view and Normal view. Everything was working fine till 2 days before,…
ACP
  • 233
  • 1
  • 2
  • 7
7
votes
1 answer

GMSMapView methods deprecated in version 1.6

I updated my app to use version 1.6 of Google Maps API for iOS. It now shows me that three important methods of GMSMapView are deprecated: 'markers' is deprecated 'polylines' is deprecated 'groundOverlays' is deprecated At first I thought it might…
gabriellanata
  • 3,946
  • 2
  • 21
  • 27