android-maps-v2 Questions

2

I'm adding markers to my map from a url using the Picasso library As a marker isn't an ImageView I tried to use a Target instead for(int x =0; x < mapIcon_url.length; x++){ Picasso.with(getA...
Cletuscleve asked 31/8, 2013 at 13:9

1

I am working in an android application and I have two Geo points. I want the user to redirect to the google map android application from my application to show the directions in the map. How can I ...
Abet asked 23/9, 2014 at 5:27

3

Solved

I'm trying to applicate drawernavigation (my first fragment is a map & the others are just some fragments with simple layouts).So it runs fine & I can navigate between my fragments but when...

2

I am trying to get google maps v2 to work in android using android studio. I got all my keys and manifest setup. When I try and create xml for the actual activity that the map will show up on I get...

1

Solved

I have a map in a gallery, together with other pages. When I am sliding the gallery pages with touch gestures everything works fine. But when I move the map away using a button on a dialog, and the...
Dickey asked 2/2, 2014 at 20:46

2

I am drawing a plain color PolyLine on my map the following way, and it works great: PolylineOptions polyLine = new PolylineOptions(); polyLine.width(5); polyLine.color(Color.RED); polyLine.geo...
Magnitogorsk asked 6/3, 2014 at 20:28

6

I'm trying to explore using the MapView class for GoogleMap display, with no luck, as most codes examples are using MapFragment which I do not want. I am using Google Maps Android API v2. At firs...
Gagliardi asked 25/1, 2013 at 8:28

2

We've been getting reports of crashes on some devices when a user opens an Activity that calls the location manager's getLastKnownLocation method. We've requested all the required permissions in ou...
Deathblow asked 23/4, 2013 at 18:43

1

Solved

Is there any way to disable the highlight effect that comes when user clicks on a InfoWindow in the new Mapsv2 Api for Android? This is an issue with both the getIfoContent() and the getInfoWindow...
Oversubtle asked 8/2, 2013 at 12:33

1

Solved

I'm updating my app to the new Android Maps API V2 and ran into a problem when trying to get a bitmap image of the currently shown map. In API V1 I did this like so: Bitmap mBitmap; MapViwe mMapVi...
Weeks asked 18/1, 2013 at 10:9

2

Solved

Background: Developing a native Android App that uses Android Google Map v2, uses android.support.v4.app.FragmentActivity. Runs on Android v2.2. Objective: Retain Markers/Polylines "drawn" on...
Gavrielle asked 3/6, 2013 at 17:34

6

Recently, I was working with Android Maps V2. I came across debug.keystore and release.keystore. What is the difference between them? Why do we have to use both?
Leash asked 19/2, 2014 at 12:11

1

How to attach a flexible marker on map something like Uber and Lyft ? am using Google maps v2. Basically, i want to display a marker on map while the position of the marker is changed upon moving ...

3

I want to resize my map dynamically in run-time by clicking on an arrow key. My layout is: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas...
Booma asked 11/2, 2014 at 4:41

1

Solved

This is mycode: LatLngBounds.Builder builder = new LatLngBounds.Builder(); for(int x = firstVisibleItem; x < lastVisibleItem; x++){ builder.include(temp.getPosition()); } However this line t...
Mcripley asked 10/2, 2014 at 1:12

4

Solved

Consider this as a wiki question. While I setup my project to support Map V2, There has been a step to add MAPS_RECEIVE permission. <permission android:name="com.example.mapdemo.permission.MA...
Semiliquid asked 12/2, 2013 at 12:45

1

I am using latest Google Maps API. My problem goes like this: I want to remove the MyLocation button (The blue dot/arrow) WITHOUT disabling MyLocation layer. if I use this code: googleMap....
Poppo asked 28/12, 2013 at 12:19

1

Solved

In MapsV2, I would like to programmatically perform a click of the myLocation button that appears on the top right of the map. In previous versions of MapsV2, I could get a handle on the button by...
Squalene asked 16/12, 2013 at 18:0

1

Solved

I'm also try to draw arc (I'm referencing on this and this questions). I'll get from web service following: Lat and Lng Radius (in meters) Start angle (end angle is startA + 60 degrees) Now I e...
Kofu asked 5/12, 2013 at 17:59

3

I'm trying to write a simple Android Service that runs in background and receives location updates from LocationClient (Google Map API Android V2). The problem is that when the screen go off, my Se...
Petrography asked 17/7, 2013 at 15:25

0

I want to display markers like these below on my android map application. I Know I have to use custom marker for this I also have the angle calculated but I don't know how to display the arrow on t...
Encyclopedia asked 30/10, 2013 at 21:17

2

Solved

I want to add a button in map that center the map on user current position, but it should be activated only if the user navigate in map and his current position is no longer displayed on map. to de...
Tasset asked 22/10, 2013 at 23:13

1

I'm trying to put an instance of the new MapView in a ListView. New mapview being: com.google.android.gms.maps.MapView I'm turning all interactions off, and setting a fixed height for the view: ...
Evalynevan asked 8/1, 2013 at 15:15

3

I’m porting an iOS app to Android, and using Google Maps Android API v2. The application needs to draw a heatmap overlay onto the map. So far, it looks like the best option is to use a TileOverlay...

0

I'm using the new snapshot() method on the GoogleMap object, and in my SnapshotReadyCallback I'm swapping out the MapView in my layout for an ImageView with the Bitmap passed to me from the callbac...
Newmown asked 25/9, 2013 at 21:29

© 2022 - 2024 — McMap. All rights reserved.