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
9
votes
12 answers

file not found Google Maps SDK for iOS

Yesterday I recived an email from google saying that I could acces to the map api for ios, I generated my key from the app console and I follow the steps of https://developers.google.com/maps/documentation/ios/start but xcode throw this…
ƒernando Valle
  • 3,634
  • 6
  • 36
  • 58
8
votes
1 answer

Google Maps Mapview not centering on marker

I am using google maps in ios with swift 4, i have to show a mapview in the screen, with a marker, the problem is that whenever i show the mapview i got this result: and the result i want to get is this: here is the code i am using: func…
Shijo
  • 115
  • 2
  • 7
8
votes
2 answers

Blinking Custom Markers In Google maps iOS

I have placed 6 custom markers with the same coordinates in google maps iOS SDK. Those markers are continuously blinking/Toggling. I don't want blinking animation at all. Please help me. Here is my Source…
8
votes
1 answer

How to filter autocomplete country in Google maps ios sdk?

Currently , it queries in every country, but I want it to only query in Singapore I found a stackoverflow solution How to get country specific result with Google autocomplete place api ios sdk?, but couldn't figure out where do i put the…
airsoftFreak
  • 1,450
  • 5
  • 34
  • 64
8
votes
0 answers

iOS Google Maps SDK new icon View animations

According to the documentation regarding the GMSMarker new property iconView: The view behaves as if clipsToBounds is set to YES, regardless of its actual value So there is no way of changing that clipsToBounds to NO? How are animations supposed…
apinho
  • 2,235
  • 3
  • 25
  • 39
8
votes
2 answers

iOS app freezes when loading custom info window for marker on Google Maps

I am trying to implement a custom info window on my Google Maps Marker on an iOS app. (As is done here and here for example.) I have created a xib and a UIView class for it. It is called CustomInfoWindow.xib and the class is…
Stanley
  • 5,261
  • 9
  • 38
  • 55
8
votes
1 answer

Class _NSZombie_xxxxxxx is implemented in both ?? and?

We just started seeing these messages appearing in the debug area (console) of Xcode when we navigate to the view controller where the GMSMapView gets created. Everything seems to be working fine, we just don't like messages like this in the logs. …
8
votes
2 answers

GMSMapView animateToCameraPosition zoom in - zoom out animation

I am using Google maps services in iOS (Swift) and Android. In android, the map view has a method called animatreCamera that has an animation in which the movement has a "zoom out - zoom in" effect (if both cameras have the same zoom, the map view…
Oscar Vasquez
  • 465
  • 2
  • 6
  • 14
8
votes
5 answers

ios Google SDK Map cannot create dotted polylines

I have called the below method to draw the dotted polylines between the markers. When it comes to the execution, it shows that only solid lines are drawn. Would you please tell me how to draw dotted lines on to Google Map ? - (void)…
Jeff Bootsholz
  • 2,971
  • 15
  • 70
  • 141
8
votes
3 answers

Cannot access Google Map Framework in Swift AppDelegate file

I'm studying Swift and am struggling to figure out how to integrate the Google Map SDK frameworks. I created a new project in Xcode 6, imported the frameworks required as per Google Map SDK instructions for iOS. However when I import the Google Maps…
Cathal
  • 153
  • 1
  • 8
8
votes
1 answer

How to implement GMSMarker drag drop on GMSMapView?

I set the marker on google map but when i drag it's all of map are drag. I want drag marker when click and drag on it's and drag map when click and drag outside marker. this is my code self.camera = [GMSCameraPosition cameraWithLatitude:-33.86…
user2955394
  • 1,063
  • 4
  • 17
  • 34
8
votes
1 answer

how to show an arrow on mapview showing the driving direction

I want to show an arrow image on GMSMapView(i am using google maps sdk). Now if i am driving(arrow is showing my current location) and i have to take left turn then i have to change bearing of mapView. But i have no idea how to do this. I am…
Virat Naithani
  • 783
  • 12
  • 31
8
votes
5 answers

How set Custom Annotation markers ( animated rings around a point) on GMSMapView

Using Google maps iOS SDK I have implemented a mapView in that i have created markers as follows // Creates a marker in the center of the map. GMSMarker *marker = [[GMSMarker alloc] init]; marker.position = CLLocationCoordinate2DMake(-33.86,…
user2732294
  • 641
  • 2
  • 10
  • 21
8
votes
2 answers

how to draw a path one place to another place in google map sdk iOS?

i need to find path in google map view one place to another place. how to draw a direction map using google map sdk iOS. can any of give source code. and then explain how to achieve this. Below i attached image also, i need to achieve this in iPhone…
iSaravanan
  • 125
  • 1
  • 4
  • 10
8
votes
7 answers

How to calculate GMSCamera zoom

I am developing iOS application including GoogleMaps. And implementation process of GoogleMaps SDK for iOS was completed yet. But I want to know how to calculate GMSCamera zoom for showing whole route on Map. In Apple Map, we use span, maybe. But…