Anyone have any idea on how to get rid of the buttons (like the compass button when rotating the map) presented on the image when clicking a marker. It is linked to Google map application. And i want to get rid of it. thanks
Here is the link for the sample image http://i.stack.imgur.com/8gw5b.png
Related
I'm creating an App with a Mapview and custom Mapmarkers, which works fine. What I would like to do is to add an image into the callout when the user taps one of the markers.
![enter image description here][1]
I made the same thing for iOS, where it has been pretty straightforward:
The mapview-balloons library has support for this, but it's only for Google Maps V1.
I would need to show a different image for each callout, which will be hosted on a web server, so I will also have to download that image asynchronously somehow before showing it. Is there any good solution for that?
Thanks in advance.
you can create a custom InfoWindowAdapter, see the API guide for details
I am using augmented reality in my application. So i have to implement an application, after running my application, device camera will open and when i will move this camera i will get Google map places like hotel,dominoes, on that place any pin will show, after clicked on that pin details of hotel, dominoes will be display. If any one know about please tell me or if any one have code related give me.
Firstly i have did how to get the Google place on map right now i have to open camera in my application and i want to show pin of places in my camera
Try out this demo code. Click here!.. It will help you.
You can get source code from this link. I have implemented the same using this code. It works.
I have edited link.. from this link, you can download the zip file.
I am trying to make an app that could identify nearby bus stations. Google map has a specific icon to denote them. I some how wish to place my own icon above google map's default icon using overlay or something else.
How I can do this ?
Thanks in advance.
This tutorial will teach you all you need to know about how to add your own custom icon.
https://developers.google.com/maps/documentation/android/hello-mapview
It teaches you every part that you need to know from how to add the icon to how to have it relate to your map view.
I am new android developer working on google map.
i have no idea to display marker on map on click event and also automatically to current location.
oooook well
Here is a tutorial to show a marker on double tap. You can do this for single tap easily, but that may be annoying for the user.
and this is a tutorial to get your current location.
See ? everything was one google search away. hint hint
I'm new to android development and I am stuck with a problem.
I am trying to develop an android application that shows the user the location of atms, hotels etc on a google map. I haven't started working on the gps yet. As of now the app works something like this, first of all a map loads on which I intend to show the users current location. On clicking on the menu button there are 3 options:
services
about us
quit
On selecting services option the following options are available.
atm
hospital
hotel
etc
on selecting the atm option we will be shown a screen displaying some text.
on using the menu for this screen we get the following menu items.
sbi
canara
hdfc
icici
etc
my intention is that when the user selects the sbi option a map should load showing the various places where there are sbi atms near where the user is currently.
I started out with the google map api but I had to quit because when I select one of the menu options, such as "sbi", the map does not load, instead I am getting the error "application failed to load". Basically I was trying to load a map activity from my first map activity. After googling a bit without any results I tried another approach. I tried to download and view the static map of the location I wanted. It worked, but when I tried to download the static map when I select an option like before I get the same error. "application failed to load". then I tried downloading 2 images from inside onCreate that worked. I cannot do the same thing outside the onCreate. for eg.inside the function for the selected option.
I have given the link to my code below.
If someone can please look into this it would be of great help to me. I have been sitting with this problem for days now. And its urgent too. I have done the project in eclipse.
httpDownload.java --- http://dpaste.com/195981/
I looked at your code.
I think the problem is that you didn't do setContentView before loading the map outside OnCreate.