Google Android Maps Api v2 is the next generation of Google Maps SDK available for Android developers.
0
votes
0answers
3 views
Issue with Google Maps version 2 - not buid why I could build it before[Monondroid]
I download the latest monodroid sample for Google Android Maps version 2 from this link:
https://github.com/xamarin/monodroid-samples/tree/master/MapsAndLocationDemo_v2
I copy ...
1
vote
0answers
18 views
Influence the Tile size in Android Maps TileProvider?
I have been playing around with the TileOverlay in Android Maps v2 and I have built a custom TileProvider very very similar to this one
But there is something that strikes me as odd. No matter which ...
2
votes
1answer
25 views
How to translate Canvas Points to Map Coordinates
I am drawing a shape on the map. Actually, I am using a View on a map to draw a shape.
I brought this View to front on some button click. So, map is residing back to this View.
I am able to ...
0
votes
1answer
26 views
How do I let the user choose a location in Google Maps and return the chosen point to my App Inventor application?
I am developing an app using App Inventor.
It includes the need for a user to press a button - to save a location when they are at the location.
But every time this is not practical. So I want to ...
0
votes
1answer
44 views
Setting up Google Maps v2 Error
When trying to set up Google Maps v2, I keep getting
Unable to resolve superclass of Lcom/alpha/dealtap/Map; (40)
java.lang.RuntimeException: Unable to instantiate activity
...
0
votes
2answers
39 views
Customize marker of myLocation Google Maps v2 Android
I'm developing an android application that uses google maps v2. But i have a problem. I want to customize blue dot point(marker) of myLocation that google map gives us. Somebody can tell me how to ...
0
votes
1answer
19 views
Maps V2 Marker pressed states
In Maps V2, how can I set a pressed state to a Marker?
The setIcon() method takes a BitmapDescriptor; I can't see a way to pass an XML selector which would give a pressed and selected state.
Is the ...
1
vote
1answer
49 views
Adding custom property to marker (Google Map Android API V2)
When using Google Map API V3 I can add custom property in the following way:
var marker = new google.maps.Marker({
position: userLocation,
map: myGoogleMap,
animation: ...
0
votes
0answers
21 views
MapFragment Stuck Under a SurfaceView
I have an activity that has a fullscreen SurfaceView, some ToggleButtons, and a few fragments that pop in and out. This is working well for a fragment that displays arrow buttons. My problem is that ...
0
votes
2answers
43 views
How to show a specific location on map in android using Google Map Android API v2?
I have this problem.
I want to show a specific location on maps in android. Like if user has entered India in Edit text, then how can i show INDIA on Map. I basically want to know how to get the ...
-4
votes
1answer
33 views
How can I develop the Google map offline on android? [closed]
the Google maps support offline ,but how can I develop the map offline on my app?
3
votes
1answer
91 views
Google Maps API v2 SupportMapFragment inside ScrollView - users cannot scroll the map vertically
I am trying to put a Google map inside a scroll view, so that the user can scroll down other contents to see the map. The problem is that this scroll view is eating up all the vertical touching ...
0
votes
0answers
20 views
How to Show important places route between two locations
I am developing an app that displays some important points in a map between two locations specific single route. like as following example.if any one know about these related works please let me know.
...
0
votes
0answers
43 views
Google Maps Android API v2 - APIs related to my location deprecated. Why?
Since the Google I/O 2013 we can read in several places of the documentation of Google Maps Android API v2 that
This method / interface is deprecated.
use ...
0
votes
1answer
17 views
Overrinding draw() in customized MapView in Google Maps Android API v2
Very simple question : since MapView inherits from View, is it possible to override draw() to draw whatever you want on the map ?