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
0
votes
0 answers

How to show ListViews with the Items in the Cluster Google Maps Utils

I want to add the items from Clusters and onClusterClick I want to show them in ListView. How can I add those items to the listView and show when in an overlay listview within the same Activity. @Override public boolean…
Savita
  • 747
  • 1
  • 7
  • 16
0
votes
2 answers

How to set SquareTextView TypeFace

I'm trying to set custom typeface for map markers' cluster icon using SquareTextView, what is a class of android-maps-utils-amap library extending TextView. In DefaultClusterRenderer I'm using this code to set custom typeface but no effect. So…
0
votes
2 answers

Failed to resolve - android maps utils

i'm creating module with GPS tracking. I've got there only track implementation. What i need is PolyUtil so i set in gradle: dependencies { compile 'com.google.maps.android:android-maps-utils:0.4' } After gradle sync i've got error: Failed to…
Marcin Bortel
  • 1,190
  • 2
  • 14
  • 28
0
votes
1 answer

How to determine what cluster item is clicked?

I am using Android Maps Utils. I am reading a list of coordinates from online and plotting them as cluster items as well as saving them in a hash map which associates a "Room" a class I have created to the cluster item: private HashMap roomHashMap =…
0
votes
1 answer

Differentiate two markers at same place in android

Here in the code am displaying markers but if many markers have same latitude and logitude then the icons generated must have different colors or it must be moved a little bit so that we must be able to find that its in that location. Is it possible…
Munchoo
  • 313
  • 1
  • 7
  • 22
0
votes
2 answers

Google Maps Android Heatmap Utility showing white tiles

I'm using the Google Maps Android Heatmap Utility (https://developers.google.com/maps/documentation/android/utility/heatmap) with the Google Maps API v2. This utility is basically just one class, implementing a TileProvider that can be added to a…
vind
  • 287
  • 1
  • 3
  • 7
0
votes
0 answers

how to refesh the marker after changing its position using android map utility library

When i change the position of marker it doesn't get changed until i zoom in and zoom out in android, Also the cluster flicker markers whose position get change also get clustered with cluster at other positions how to solve this issue. And code i…
0
votes
2 answers

How to set up Google Maps Utility Api in Android Studio?

I don't know why couldn't i figure it out. I am trying to add the android_maps-utils library in the android studio.I have seen this link which was suggested by google developers blog.But i couldn't understand the way they suggested. Can anyone give…
0
votes
1 answer

how to group clusters based on restaurants,hospitals,etc in Android?

I am a newbie to Android programming. I have started with integrating Google Maps into my application. I have also used clustering of the map markers. I have used maps-utils library for the clustering. I am using the grid based algorithm for the…
0
votes
2 answers

How can I encode a circle in android maps?

I know that we can encode a polygon in android like this: encoded_string = polyutil.encode(polygon.getPoints()); But how can we get a encoded string for a circle?
iamlegend
  • 169
  • 3
  • 15
0
votes
2 answers

NoClassDefFoundError: com.google.maps.android.utils.demo.CustomMarkerClusteringDemoActivity

I downloaded the library from https://github.com/googlemaps/android-maps-utils and followed the steps https://developers.google.com/maps/documentation/android/utility/setup but I get java.lang.NoClassDefFoundError:…
Rikki Tikki Tavi
  • 3,089
  • 5
  • 43
  • 81
0
votes
1 answer

Adding items to cluster manager & call to cluster() have no effect until AsyncTask finishes

My situation: I use an AsyncTask to prepare data for a google map. Because this task takes some time, I'd like to display the objects as they are ready (and not all at once when finished). So I use publishProgress&onProgressUpdate to update the…
-1
votes
1 answer

Android Google Map update geofence area/radius on drag

Hoping that you are aware with android map's Geofencing feature where we can draw/highlight particular area (radius of circle in meter) on Google map as displayed below. My requirement is that I need to change this area by dragging circle border.…
-2
votes
2 answers

Show map markers within Circle radius hide markers outside of radius iterator issue

I'm needing to show markers within my circle radius. I'm using Kotlin. I have the circle radius updating with every onCameraIdleListener. The issue I'm having is that I don't understand how to use the for method correctly. My end goal is to have the…