Questions tagged [google-maps-ios-utils]

`google-maps-ios-utils` used for maker clustering with `google-map-sdk` in `iOS`

google-maps-ios-utils open-source library contains classes that are useful for a wide range of applications using the Google Maps SDK for iOS.

Manage marker clusters

The GMUClusterManager helps you manage multiple markers at different zoom levels. This means you can put a large number of markers on a map without making the map hard to read. When a user views the map at a high zoom level, the individual markers show on the map. When the user zooms out to a lower zoom level, the markers gather together into clusters, to make viewing the map easier.

Create a quadtree to track points in a given area

A quadtree is a data structure that's useful for finding points near a single point, by searching inside an area surrounding the point of interest.

google-maps-ios-utils libray overview : Overview of the Utility Library

16 questions
4
votes
0 answers

Error in Google Maps iOS Utils - No known instance method for selector didTapPOIWithPlaceID

I downloaded the Google Maps iOS Utils framework via pod install. Everything was fine and I was able to connect the functions I needed. But now at compilation it produces an error: No known instance method for selector mapView:…
4
votes
1 answer

How to show the exact number of clustered markers on google map?

I am using below code for marker clustering (for generating cluster icon with buckets) using Google map sdk, id iconGenerator = [[GMUDefaultClusterIconGenerator alloc]initWithBuckets:@[@10,@50,@100,@500]…
Ketan Parmar
  • 25,426
  • 9
  • 43
  • 67
3
votes
1 answer

How to Curve a polyline (Google Maps) in IOS?

I want to curve polyline between two points. Android do that with the help of SphericalUtil Class . But in iOS i don't know how to do that. For Android , Here is a reference link: Draw ARC Polyline in Google Map I want same for iOS.
2
votes
0 answers

Correctly handle clustering when markers are placed identically and overlapping

I am using GoogleMaps and the google-maps-ios-utils clustering library. I am in situation where I have couple of markers(annotations) in exact same location. Now I want user to see them all, but they are under each other. Lets say I have 4 markers…
Tarvo Mäesepp
  • 3,850
  • 2
  • 33
  • 71
2
votes
1 answer

cluster google maps markers on ios with swift

I have to develop an app that uses google-maps and it has many markers on the map. one of the requirement is to cluster these markers when the user zooms out. I know this question has been asked before, but those questions are old and with…
Andrei Dobrin
  • 1,035
  • 4
  • 15
  • 31
1
vote
1 answer

Google Maps iOS: Move camera to show all markers present inside a cluster

When didTap cluster function is called, it zooms the camera to one of the markers present inside the cluster but I want to show all the markers that were in that cluster and focus the camera on those markers. I was able to achieve this in android.…
Mr. Dev
  • 137
  • 2
  • 11
1
vote
2 answers

Google Maps iOS is not allowing custom map marker image

I am using the Google Maps SDK for iOS - https://developers.google.com/maps/documentation/ios-sdk/marker#use_the_markers_icon_property Combined with the Maps SDK for iOS Utility Library…
1
vote
2 answers

swift linker command failed with exit code 1 Google Maps iOS Util pod install

My build failed with swift linker command failed with exit code 1. The logs specifically say symbol(s) not found for architecture x86_64 This happened ever since I tried setting up Google-Maps-iOS-Utils. This is my Podfile. There is a pre_install…
Kudo
  • 31
  • 4
1
vote
3 answers

Random KVO block crashes when allocating mapView, happens only when open/close screen several times

App is crashing on a map screen when it open and close several times. (Mostly on 6th attempt) Class that inherits from GMSMapView class AirportMapView: GMSMapView , AirportMapViewProtocol{ weak var airportMapViewModuleDelegate:…
1
vote
1 answer

Google Maps SDK conflict between different frameworks in one app

We are working on an iOS project which is using two different frameworks (AAA Library map)& (our own Reward Framework) and both use Google Maps framework. The issue we are facing is the conflict between these frameworks. What happens is when we load…
1
vote
2 answers

How set minClusterSize in google map?

In Android SDK there is minClusterSize property that when we set it to 1 it show's every elements as cluster not marker. But in iOS SDK doesn't exist minClusterSize and DefaultRenderer by default show's lower than 3 items as items not cluster. There…
0
votes
1 answer

Displaying GeoJSON data received from an API on Google Maps in iOS

Can someone please help me in displaying GeoJSON data received from an api endpoint on google maps iOS sdk ?. I have been trying for almost a week now and have gone nowhere! I have used the GMUGeoJSONParser function but the parameters it accepts are…
0
votes
1 answer

How to handle individual markers in marker cluster in google map

I am implementing marker clustering in google map. I am getting data from api (a list of lat long and other information). using google-map-ios-utils library I am doing clustering but I am unable to attach data individually with each marker in the…
Rj19
  • 195
  • 2
  • 14
0
votes
0 answers

Compile Google-Maps-IOS-Utils into Nativescript

can someone help me please: I'm trying to add Google-Maps-IOS-Utils to my project , but I'm having issues. Basically I just need the following class to be available in my project: "GMSGeometryUtils" If installing from Podfile (by plugin), it will…
0
votes
0 answers

How can I draw a UIBezierPath onto Google Maps using the iOS SDK?

I have created a curved UIBezierPath from a list of points on the Google Map in my iOS application. Is there any way for me to draw this path on the GMSMapView? The only options I have seen so far for GMSOverlays are straight lines (GMSPolyLine,…
haplo1384
  • 1,046
  • 1
  • 10
  • 28
1
2