[android-developers] Re: Map view ballons - Updating time

2011-04-20 Thread lbendlin
You gave the answer yourself. Don't use the same ID for all markers. You better have the time zone available for each marker too, else this gets messy. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to a

[android-developers] Re: Map View Error!

2011-01-27 Thread Stephan Wiesner
import com.google.android.maps.MapActivity; On 27 Jan., 10:57, peria abirami wrote: > If I put Classname extends MapActivity, it can't resolve that. > If i put name extends Activiy, it resolve but the application forced to > close.. > > Can any one help me on this issue -- You received this

[android-developers] Re: Map view drag event

2010-03-23 Thread veradis
On Mar 22, 10:04 pm, Mark Murphy wrote: > Just put the markers in an ItemizedOverlay, and the Google Maps add-in > forAndroidwill handle displaying those markers when the user pans and > zooms. > > -- > Mark Murphy (a Commons > Guy)http://commonsware.com|http://twitter.com/commonsguy Thanks

[android-developers] Re: map view not responding today?

2009-11-20 Thread ian
I really feel I experienced a Map View service interruption today. All my apps are running again after ten down hours with no real changes made by me. The only mod I made was to resend my lat/long coordinates from the DDMS perspective, but repeating this was never necessary before. On Nov 20, 3:

[android-developers] Re: map view not responding today?

2009-11-20 Thread ian
Wayne thanks for the feedback. I keep thinking over what I might have done to break them. On Nov 20, 3:28 pm, Wayne Wenthin wrote: > Mine seems to be working. > > > > On Fri, Nov 20, 2009 at 11:10 AM, ian wrote: > > So strange. None of my mapview pages work today even though I haven't > > edited

[android-developers] Re: Map view

2009-09-01 Thread Sasi Kumar
Thanks for ur reply. Can you pls provide the full source of the program. Its very urgent. thanks in advance. On Sep 1, 4:10 pm, Panut Sunyakorn wrote: > You have to set boundaries of your info window or icon overlay. > > private int minX = 0; > private int maxX = 0; > private int minY = 0; > p

[android-developers] Re: Map view

2009-09-01 Thread Sasi Kumar
The requirements i'm expecting is not there in that link On Sep 1, 3:55 pm, Anton Pirker wrote: > Hi Sasi! > > Have a look at the Hello-mapView Sample Code from > Google:http://developer.android.com/guide/tutorials/views/hello-mapview.html > > There is everything you need! > > regards, > Anton

[android-developers] Re: Map view

2009-09-01 Thread Panut Sunyakorn
You have to set boundaries of your info window or icon overlay. private int minX = 0; private int maxX = 0; private int minY = 0; private int maxY = 0; boolean draw(Canvas canvas, MapView mapView, boolean shadow, long when){ ... minX = screenPoint.x; maxX = screenPoint.x + inf

[android-developers] Re: Map view

2009-09-01 Thread Anton Pirker
Hi Sasi! Have a look at the Hello-mapView Sample Code from Google: http://developer.android.com/guide/tutorials/views/hello-mapview.html There is everything you need! regards, Anton Sasi Kumar wrote: > Can any one help to create map view with a marker. > > When we are clicking marker it shoul

[android-developers] Re: Map view not displaying tiles in 1.5 but it's fine in 1.1

2009-05-26 Thread Lex
The built-in map application (and browser) work fine, and as I said before, firewall is fine - at least as much as I can see. I have exactly the same code running on a different machine (Vista) and it works just fine! On May 26, 2:11 am, Mark Murphy wrote: > Lex wrote: > > I just went through th

[android-developers] Re: Map view not displaying tiles in 1.5 but it's fine in 1.1

2009-05-25 Thread Mark Murphy
Lex wrote: > I just went through the MapView Tutorial and I can't get the map > displayed whatsoever. I had SDK 1.5 installed from the beginning. > Internet permission is fine, Firewall is fine. I deleted the > debug.keystore file on my (XP) machine, rebuilt the project under > Google API/Target 3

[android-developers] Re: Map view not displaying tiles in 1.5 but it's fine in 1.1

2009-05-25 Thread Lex
I regenerated the map key (deleted debug.keystore, rebuilt the project under Google API/Target 3), got a different key, but still no map. Internet connection and firewall settings are OK. On Apr 21, 8:40 pm, Xavier Ducrohet wrote: > Wayne, > > You could also have moved your old debug.keystore in

[android-developers] Re: Map view not displaying tiles in 1.5 but it's fine in 1.1

2009-05-25 Thread Lex
I just went through the MapView Tutorial and I can't get the map displayed whatsoever. I had SDK 1.5 installed from the beginning. Internet permission is fine, Firewall is fine. I deleted the debug.keystore file on my (XP) machine, rebuilt the project under Google API/Target 3, generated a new key

[android-developers] Re: Map view not displaying tiles in 1.5 but it's fine in 1.1

2009-04-21 Thread Xavier Ducrohet
Wayne, You could also have moved your old debug.keystore in the new location, instead of generating a new map key. But either way is fine. > 2. Regenerate the key:   I used the html file that comes with the 1.5 > documentation rather than the going to the google website and using > that one vers

[android-developers] Re: Map view not displaying tiles in 1.5 but it's fine in 1.1

2009-04-21 Thread wayne mcfadden- Red Droid
Thanks a bunch Xavier. That worked I now can see the map in the 1.5 toolkit. A few notes on what I did: 1. Regenerate the certificate using the new location for the 1.5 environment. 2. Regenerate the key: I used the html file that comes with the 1.5 documentation rather than the going to the g

[android-developers] Re: Map view not displaying tiles in 1.5 but it's fine in 1.1

2009-04-20 Thread Xavier Ducrohet
On Mon, Apr 20, 2009 at 4:29 PM, Xavier Ducrohet wrote: > 1.5: old: C:\Users\\.android\ Ignore "old" (I blame copy-paste...) Xav --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: Map view not displaying tiles in 1.5 but it's fine in 1.1

2009-04-20 Thread Xavier Ducrohet
Hello, Are you recompiling your application with the 1.5 SDK? And are you running windows? To solve some issue between the java based tools and the emulator, we changed the location of the android files. They used to be in the local settings, but they are now directly under /.android/ So compil

[android-developers] Re: map view problem

2008-11-23 Thread Frank Trollmann
Do you have a valid google maps api key? maybe you also should take a look at this: http://zackola.com/blog/2008/10/26/android-mapview-permissions-and-prerequisites/#comment-227 (hopefully) All prequisites needed for using a map are listed there --~--~-~--~~~---~--~-

[android-developers] Re: map view problem

2008-11-22 Thread android_soft
under the manifest tag --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email

[android-developers] Re: map view problem

2008-11-22 Thread Mark Dodgson
It is normally something to do with permissions especially INTERNET position and COARSE_LOCATION. They also have to be in the correct location above application statemeny I believe On 21 Nov 2008, 5:41 PM, "Boris Malenšek" <[EMAIL PROTECTED]> wrote: I have the same problem but can not solve

[android-developers] Re: map view problem

2008-11-21 Thread Mark Murphy
Boris Malenšek wrote: > I have the same problem but can not solve it. > My background should be Map but it is some kind of white-gray stupid > picture. > In left-bottom corner is Google sign, so it means that shomhow it > works but not well. > I have double-checked my apiKey for registering my app

[android-developers] Re: map view problem

2008-11-21 Thread Boris Malenšek
I have the same problem but can not solve it. My background should be Map but it is some kind of white-gray stupid picture. In left-bottom corner is Google sign, so it means that shomhow it works but not well. I have double-checked my apiKey for registering my application and it is correct. Any1?