Android Maps Extensions is a library extending Google Maps Android API v2
Questions tagged [android-maps-extensions]
38 questions
0
votes
1 answer
Marker Click intent not working
I have implemented OnMarkerClickListener, and amended the code from Is there an API for Google Maps navigation in Android? to see if it would work, but when you click on a marker the map just zooms into it? What am I missing? - EDIT: I have edited…

Android-converter
- 256
- 3
- 13
0
votes
0 answers
Issue after updating android-maps-extensions to a newer version
I had been using an older version of the said library in a project of mine. However, today when I updated to the latest version, I realized that its package names etc had changed (major version switch from 1.x.x to 2.x.x).
From…

Asim
- 6,962
- 8
- 38
- 61
0
votes
0 answers
Imported android-map-extensions version 2.0 now my R.java file is missing
Ok, so I wanted to add the clustering feature to my app. I imported the android-map-extensions to Eclipse and made reference to it in my apps properties and removed reference to the google-play-services, but when I imported android-map-entensions…

Android-converter
- 256
- 3
- 13
0
votes
0 answers
Where to store description data for markers to avoid outofmemory errors?
I have 1700 markers with strings holding a description for each marker on the map. I am getting the out of memory error since I am holding so many strings for each markers "click for more info" next screen activity. How can I better hold this data…

jasonflaherty
- 1,924
- 7
- 40
- 82
0
votes
2 answers
Not getting data on Marker infowindow click GoogleMap v2 android
I am using Google Maps Extension Library. I have this:
int nsize = visibleMarkers.size();
for (int i = 0; i < nsize; i++) {
String title = visibleMarkers.valueAt(i).getTitle();
String desc =…

jasonflaherty
- 1,924
- 7
- 40
- 82
0
votes
1 answer
Using single Cursor for multiple ListViews
This is a continuation of a research spawned by the answer to my older, broader question.
Is it correct to use a single Cursor (obtained via CursorLoader) to feed two distinct views, namely:
ListView via…

esteewhy
- 1,300
- 13
- 23
0
votes
2 answers
Google maps extension
I want to use this google maps extension:
https://code.google.com/p/android-maps-extensions/
however I didn't understand how do I combine it to my project?
I downloaded the zip in this website and I read the explanations on the website, however i…

Adir Rahamim
- 453
- 1
- 12
- 31
-1
votes
1 answer
Cannot use setData()
For the life of me, I am unable to figure out how to use setData() for a Marker.
My code:
MarkerOptions markerOptions = new MarkerOptions().position(position).title(title).snippet(snippet);
Marker marker =…

Mr Pablo
- 4,109
- 8
- 51
- 104