Questions tagged [gmsmapview]

This is the main class of the Google Maps SDK for iOS and is the entry point for all methods related to the map.

This is the main class of the Google Maps SDK for iOS and is the entry point for all methods related to the map.

Click Here for class reference.

332 questions
0
votes
1 answer

GoogleAPI Marker not allowing on Ocean or See

I want to put a marker on a GMSMapView. But i don´t want that the marker will be displayed on ocean or see, only earth. I searched but i don´t find an attribute or method to detect if the surface on GMSMapView is see, ocean or earth. If there is…
Fahem Issameddine
  • 293
  • 1
  • 2
  • 10
0
votes
1 answer

Google Maps SDK crash on ItunesConnect test not Xcode

Google Maps SDK makes my app crash, I don't know what I'm doing wrong... I put my GMSMapView in a UIView in interface builder. Here is my code : Contact.h : #import #import #import…
Vjardel
  • 1,065
  • 1
  • 13
  • 28
0
votes
1 answer

Can't receive touch events from markerInfoWindow UIView in GMSMapView

I have created a custom UIView with XIB and I display this when a user taps on a marker by implementing markerInfoWindow - (UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker { TESTInfoWindow *view = [[[NSBundle…
Peter Todd
  • 8,561
  • 3
  • 32
  • 38
0
votes
1 answer

Random Crash using Google Maps with Markers updation

I am using xcode version 6.1 for development. My application is getting crashed on iPhones (iOS 7 & iOS 8) but not on iPods (iOS 8). The application uses Google Maps to show Markers of different users which gets updated dynamically. When the…
Shubham Narang
  • 514
  • 2
  • 14
0
votes
1 answer

iOS GMSSyncTileLayer doesn't work

I'm using GMSMapView for an iPad app. I want to display custom tiles in the map but I couldn't. I've created custom TileLayer.h #import @interface TileLayer : GMSSyncTileLayer @end and TileLayer.m #import…
Ufuk Ugur
  • 186
  • 1
  • 17
0
votes
1 answer

GMSMapView GroundOverlay Cover Entire MapView Bounds

I have setup a UIView to display a specific region of a Map using Google Maps. I now want to add an image overlay on top of this selected region but I dont know how to calculate the correct coordinates for this. I have set the map with a center…
0
votes
2 answers

GMSMapView wont initialize

I have a GMSMapView on my storyboard @property (strong, nonatomic) IBOutlet GMSMapView *gmsMapViewUI; Using the instructions I am unable to get my this mapView to update to the new coordinates. This had been working for me in the past but I…
Whelandrew
  • 195
  • 10
0
votes
1 answer

Using didSelectRowAtIndexPath with UISplitViewController and Google Maps

I am using a UITableViewController inside of a UINavigationController for my Master and I'm using a UIViewController implementing the GMSMapViewDelegate inside of a UINavigationController for my detail side to display a google map. Currently the…
0
votes
1 answer

Remove and add markers with zoom in and out

In one of my project (IOS) I need to add functionality that when user zoom out the google maps it adds marks within that coordinates. Right now I am zooming the map on user current location and the nearest location. So when user zoom out it will add…
0
votes
2 answers

Google Maps iOS MapView

I am trying to make my google maps map view only half of the screen. I have resized the map view to be half the screen and also changed my code so it's only the bounds of the map view which is half the screen but it still goes full screen. Anyone…
Curtis Boylan
  • 827
  • 1
  • 7
  • 23
0
votes
1 answer

iOS - Nearby Places on Google Maps

I am working on a feature of my app that lets the user search for nearby pharmacies. I am trying to keep things simple and i would like to display the standard places icons and labels which are shown on google maps app. I searched extensively but i…
Macaret
  • 797
  • 9
  • 33
0
votes
1 answer

Plotting 100 or more pins on Google maps

In a Google map i want to plot 100 or more pins at a time, Now i am plotting all pins manually using for loop & it is taking more time. Is it possible to plot all pins at once for (KZObject *flt in arrayList){ GMSMarker *marker = [[GMSMarker…
Anand
  • 2,086
  • 2
  • 26
  • 44
0
votes
1 answer

how to show markers only in gmscircle region otherwise hide in ios

how to show markers only in GMSCirle region otherwise hide in iOS , I have created GMSCirle using google maps, now I wanna display markers only on the region of GMSCirle otherwise hide markers. here is my code : GMSMarker *centerPoint=[GMSMarker…
0
votes
1 answer

UIView doesn't show my map, only shows the standard map

This is my view controller that I implemented in the UIView. The line that the compiler highlights in yellow is this: self.vermapa_.delegate=self; So is something wrong with self? (.h) #import @interface appiOSViewController :…
0
votes
1 answer

how to show different markerInfoWindow?

i'm using GMS for ios. and i'm facing problem that i can't detect which marker did tapped!(Custom markerInfoWindow) you can see my code for custom markerInfoWindow : here i'm creating the markers : -(void)CreateMarks{ for (int l=0 ;…
AsimNet
  • 61
  • 1
  • 9