Questions tagged [android-maps-extensions]

Android Maps Extensions is a library extending Google Maps Android API v2

38 questions
15
votes
6 answers

No such property: sonatypeUserName for class: org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer

I'm trying to use this blibioteca android-maps-extensions because I need to fix more than 1000 markers on my map . Added the project dependencies in my project : compile project (':android-maps-extensions') But when I update build.gradle get the…
jucajl
  • 1,195
  • 3
  • 12
  • 29
7
votes
2 answers

Android: Build Polygonal Shape Geofence

According to the API documentation, only Circular shape Geofences allowed: https://developers.google.com/android/reference/com/google/android/gms/location/Geofence.Builder And it's looks for example:…
4
votes
0 answers

How to cluster polylines?

I have been trying this great library for a month now. It allows me to have more than 5000 markers on the map so far. The problem is that I have to draw polylines betweens these locations. Please does anyone has an example on how to cluster…
Maxime Claude
  • 965
  • 12
  • 27
4
votes
1 answer

How to reuse SupportMapFragment inside other Fragment

I just switched to the newest version of android-maps-extensions (2.2.0) together with newest Play Services (6.5.87) and support library (21.0.3). And now I can't reuse my MapFragment. I have MainActivity with NavigationDrawer. One of the fragments…
Stas Parshin
  • 7,973
  • 3
  • 24
  • 43
4
votes
2 answers

Android Maps V2 with Android-Maps-Extensions add lots of markers very slow

I am using android maps api v2 with the android-maps-extensions to cluster, and adding almost 1000 marker to the map. In the app's first run, I download the data from the webservice using a background thread and save in the SQLite, after this add…
4
votes
1 answer

Google Maps - Clustering by type markers

Question about GoogleMap from Google Maps API Android v2. I use clustering library android-maps-ekstensions. The map markers are of different types. The problem that the markers of different types are clustered together. Is it possible to cluster…
3
votes
1 answer

Android-Maps-Extensions load marker images asynchronously

I'm trying to show images (downloaded from a server) as map markers on a Google Map. I'm using Android-Maps-Extensions because i wasn't happy with Google Map-Utils performance. Now i'm wondering how to load map marker images aynchronously with AME.…
3
votes
1 answer

ActionBar progress spinner while Adding 1000's Markers to android Googlemap

I have an Android application that can add 1000's of markers to an Extended GoogleMap using Android Maps Extensions. However i would like to use requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); while the markers are being added to…
Hector
  • 4,016
  • 21
  • 112
  • 211
3
votes
2 answers

Android - Google Maps Extensions - IllegalArgumentException

I'm getting an IllegalArgumentException when I call this createMarker() method: private void createMarker(GoogleMap map, MarkerOptions options, OnMarkerCreateListener listener) { Log.e("LazyMarker", "Options var val: "+options); …
2
votes
1 answer

Android Maps Extensions : return map as null

I am working on Android application which makes use of Android maps extensions library.When Try to get map from mapFragment I get map as null. I verified my mapFragment is not null. Following is my Fragment. public class ClusterMarkersFragment…
Akshay
  • 833
  • 2
  • 16
  • 34
2
votes
2 answers

Add a circle around the marker, when marker becomes visible

Currently I am using Google Maps Android API Utility for clustering, but I didn't find the way to add a circle around the marker when it becomes visible/rendered from the cluster. I want each marker to have a circle around it. IS there any way in…
Akshay
  • 833
  • 2
  • 16
  • 34
2
votes
1 answer

Load only markers surrounding my location Google Map v2 Android

I have a lot of markers (1700 or more) loading on a Google Map v2 in Android. I would like to cut down on the amount of memory being used creating this map as it seems to be FC my 2.3 Droid. I would like to add points only if they are within the…
1
vote
0 answers

Google maps extensions does not find fragment R.id.map

I use google maps extensions library in my app, when I update android version to 5.0 I get NullPointerException at line: mMap = ((SupportMapFragment)…
1
vote
1 answer

How to zoom enough to unfold a cluster with Android Maps Extensions?

Sometimes when markers are really close to each other, it requires many clicks to zoom enough so that the cluster unfolds and shows all the markers individually. How can I make it so that one click on a cluster always zooms in and unfolds it…
Gerstmann
  • 5,368
  • 6
  • 37
  • 57
1
vote
1 answer

Android Maps Extensions gone awry

Ok so I've searched and searched, I'm on the final hurdle of getting this example project working, but now it keeps failing to launch on my phone (Galaxy S4) when I try to implement android-maps-extensions 2.0 (I have loads to markers to add to the…
1
2 3