views:

18

answers:

1

I built a ListActivity and now I want to add Map Previews as the List Icons. I dont want to extend MapView because: 1st I just need a little static preview and 2nd I already extended to ListView.

I already looked into using the static map api, however that also doesnt look quite good in that small dimensions:

alt text

http://maps.google.com/maps/api/staticmap?center=40.714728,-73.998672&zoom=12&size=65x65&maptype=roadmap&sensor=true

+1  A: 

There is nothing in Android that generates map previews, sorry. You will need to use some Web service for this.

CommonsWare
I'm also happy with a webservice, but not with a picture filling copyright message. Can somebody suggest me a preview with a smaller copyright message?
OneWorld
I was using dp-dimensions and forgot that they only count for 320x480 screen devices. But if I download a bigger map image, the copyright data isnt picture filling anymore and still matches 800x480 screen devices. That satisfies me for the moment. Ok, its gonna be downscaled at smaller screens, but thats ok. Maybe I will later decide depending on the screensize which map size I download
OneWorld