Questions tagged [android-maps-utils]

Handy extensions to the Google Maps Android API.

This open-source library contains classes that are useful for a wide range of applications using the Google Maps Android API.

91 questions
1
vote
1 answer

(Google Maps Android Marker Clustering Utility) Cluster items not being removed when Fragment is paused

I'm trying to implement the Google Maps Android Marker Clustering Utility. The problem I was having was overlapping ClusterItems at max zoom. My solution to this was to: Create a custom Renderer by extending DefaultClusterRenderer. Then prevent…
Boo
  • 377
  • 6
  • 18
1
vote
1 answer

Control zoom level when using Google Maps Android Marker Clustering Utility

I am using Google Maps Android Marker Clustering Utility to enable clustering for my markers. In order to use this library, i need to set the map's cameraChangeListener to be object of type ClusterManager. The problem is that i want to control the…
1
vote
1 answer

Track an user with location based App

I'm working on a Location based App. Here my requirement is I want to track a user location from my device like uber or Ly ft App. Example: If a pizza guy(User B) wants to deliver pizza to me(User A) then he can share his user id, so using that id,…
1
vote
1 answer

Android Studio - Cannot compile project with android-maps-utils

The rest of my team is using Eclipse and recently the maps were added back into our project. The error I'm getting is that there is a duplicate of the android.gms library, I'm guessing because the google play services and the map-utils-library both…
Daniel Wilson
  • 18,838
  • 12
  • 85
  • 135
0
votes
0 answers

Custom Clustering for Multiple Types of Markers using Google Maps

I'm building a Jetpack Compose app that displays a map with various points of interest. I'd also like to cluster them based on their category (f.ex. restaurants, shops, tourist attractions). The "general" clustering of the points of interest works…
0
votes
0 answers

Android Google Map clustering not working with data from api

I have to implement in my app clustering functionality for data loaded from server. I have successfully showed the data in the map using retrofit library, but I tried to do clustering and it is not working. I followed the android docs and some…
0
votes
0 answers

GoogleMap Utils quadTree - what is a usecase?

I seen google has a quad tree implemenation that can be used to search if a given point is close to another point efficiently. but i do not understand how to use . take a look here . i also found this info very valuable: By definition, a quadtree…
j2emanue
  • 60,549
  • 65
  • 286
  • 456
0
votes
1 answer

How to call ShowInfoWindow() of Marker whenever data is updated Googlemap Clustering

In my project I am using Google Map V2 and Map Utils for clustering map from this library: https://github.com/googlemaps/android-maps-utils . I have use STOMP on my project and whenever I receive new data I need to update the marker, and I have done…
0
votes
0 answers

Android - Adding Scale animation to cluster marker?

I have implemented google map clusters and i want scale animation in the marker clusters, please see the video, i want the same animation which is present in the video. I have tried the animation but it is not playing the same. I am posting my code.…
0
votes
2 answers

Google maps in android should be zoomable but not scrollable

I have implemented a MapView in android. I need to achieve following things in maps Maps should not be scrollable (Achieved using setClickable() to false) Maps should not be scrollable (as setClickable is false, Map is not zoomable)
0
votes
1 answer

How to show phone orientation on google maps?

I have a GoogleMap object. Map is visible, all OK. On the map we can see a standart blue marker - current position of user. Sometimes this marker shows us an arrow - phone orientation (were we are looking now). Question: what me must do to ALWAYS…
0
votes
1 answer

Marker current location android google map?

How I can use from bellow marker for my map ? I don't need to use mMap.setMyLocationEnabled(true);.I just need to this icon.
user4813855
0
votes
1 answer

how to use xml layout as cluster marker Android

I have a question, Is it possible to set a layout with multi imageviews and textviews as a cluster marker on the google map by android map utils? and how? if somebody provide an good example it would be great this an example of what i want to…
0
votes
2 answers

Remove the last polyline line from Google Map Android?

I created a class that select latitudes and longitude from sqlite then mark on map then draw polyLine. Problem : Every time I select my records 100 to 100, when I saw first 100 then I clear map then I get second 100 but when I start animate it show…
user4813855
0
votes
1 answer

Android - Could not find class ClusterManager?

I added compile 'com.google.maps.android:android-maps-utils:0.4+' in may project : apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "24.0.1" defaultConfig { applicationId…
user4813855