I have the following code to add a开发者_C百科n Overlay myMapView.getOverlays().add(sites); myMapView.invalidate();
I have a strange problem that I don\'t really know how to attack so I\'m wondering if someone has had a similar problem before.
I am putting several markers on a MapView by subclassing an ItemizedOverlay.The hitch is that the marker I am passing to the ItemizedOverlay is a custom Drawable.That is to say, I\'ve subclassed \"Dra
I want to be able to get some reference to the curent object being drawn @Override public void draw(Canvas canvas, MapView mapView,boolean shadow) {
In the description of how to add a list of options to an AlertDialog the official Android documentation alludes to saving a users preferences with one of the \"data storage techniques.\" The examples
I\'m trying to create a dynamic ItemizedOverylay (please see the code below) on Google Maps (Android 2.1) on a Nexus One.
I am trying to display one png (drawable) on a map in about 300 points. I am retrieving the coordinates from a Sqlite table, dumping them in a cursor. When I try to display them by parsing through the
I am experiencing an unusual error using ItemizedOverlay in Android. I am creating a GPS tracking device that plots a route between waypoints stored in a database.
i want set the visibility to itemized overlay in map view. if the zoom level is less than 10 开发者_开发技巧i want to set visibility of overlay is GONE else VISIBLE. how to do that?and also cant set z
Ever since I found out about auto properties, I try to use them everywhere. Before there would always be a private member for every property I had that I would use inside the class. Now this is replac