active questions tagged mapview - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T15:53:06Zhttp://stackoverflow.com/feeds/tag/mapviewhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809507/android-hello-mapview-tutorial-map-tiles-do-not-load0Android "Hello, MapView" Tutorial - Map Tiles Do Not LoadOnyx2009-11-27T15:59:28Z2009-11-27T17:09:31Z
<p>I am new to Android software development and new to this site. I am hoping someone might have some experience with the problem I am having.</p>
<p>I've been following the <a href="http://developer.android.com/guide/tutorials/views/hello-mapview.html" rel="nofollow">Hello, MapView tutorial</a> in order to not only learn the Android framework, but also the Google Maps library. I've tried my best to implement things exactly as the tutorial has instructed. My problem is that the application does load in my emulator (or even on my phone for that matter), but the map tiles do not load.</p>
<p>Searching Google I found a post by someone else on another site having the same issue, but his/her problem was that the important elements added to the AndroidManifest.xml file were not in the right order. I double-checked this in mine, but everything seems to be right.</p>
<p>So, I am not sure what the issue is and was hoping others have seen this before. I can provide any snippets of code, if that would help.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1350050/custom-mkannotationview-callout1Custom MKAnnotationView CalloutAyal2009-08-29T00:44:48Z2009-11-23T13:44:22Z
<p>Does anyone know, or have code that shows, how to create a custom MKAnnotationView Callout? I mean the actual text bubble and not the pin. Thanks in advance.</p>
http://stackoverflow.com/questions/1565828/customize-callout-bubble-for-annotationview1customize callout bubble for annotationview?Zach2009-10-14T12:02:27Z2009-11-20T11:22:24Z
<p>I'm currently working with the mapkit and am stuck.</p>
<p>I have a custom annotation view I am using, and I want to use the image property to display the point on the map with my own icon. I have this working fine. But what I would also like to do is to override the default callout view (the bubble that shows up with the title/subtitle when the annotation icon is touched). I want to be able to control the callout itself: the mapkit only provides access to the left and right ancillary callout views, but no way to provide a custom view for the callout bubble, or to give it zero size, or anything else.</p>
<p>My idea was to override selectAnnotation/deselectAnnotation in my MKMapViewDelegate, and then draw my own custom view by making a call to my custom annotation view. This works, but only when canShowCallout is set to YES in my custom annotation view class. These methods are NOT called if I have this set to NO (which is what I want, so that the default callout bubble is not drawn). So I have no way of knowing if the user touched on my point on the map (selected it) or touched a point that is not part of my annotation views (delected it) without having the default callout bubble view show up.</p>
<p>I tried going down a different path and just handling all touch events myself in the map, and I can't seem to get this working. I read other posts related to catching touch events in the map view, but they aren't exactly what I want. Is there a way to dig into the map view to remove the callout bubble before drawing? I'm at a loss.</p>
<p>Any suggestions? Am I missing something obvious?</p>
<p>Thanks in advance. </p>
http://stackoverflow.com/questions/1722820/get-info-on-a-mapview-selected-annotation0Get info on a mapview selected annotationrson2009-11-12T15:02:08Z2009-11-19T11:44:23Z
<p>I have annotations on a mapview and a callout with a button on each. What I need to do is grab properties from this callout, ie. the title, but logging this line:</p>
<pre><code>NSLog(@"%@", mapView.selectedAnnotations);
</code></pre>
<p>returns <code><AddressAnnotation: 0x1bdc60></code> which obviously gives me no useful info...</p>
<p>My question is, how can I access the properties of a selected annotation callout?</p>
http://stackoverflow.com/questions/1723846/how-do-you-draw-text-with-a-border-on-a-mapview-in-android1How do you draw text with a border on a MapView in Android?Daniel Lew2009-11-12T17:13:19Z2009-11-17T22:46:45Z
<p>I'm trying to draw some text onto an MapView on Android. The drawing of the text goes fine, but it's very hard to read the text because it's white with no black border (like the rest of the text that appears naturally on MapViews to denote cities, states, and countries). I can't seem to figure how to draw the text with a black border. Anyone know how to do this?</p>
<p>This is the sort of code I'm using right now (this is just example code, found in one of my overlays):</p>
<pre><code>@Override
public void draw(Canvas canvas, MapView mapView, boolean shadow) {
Paint textPaint = new Paint();
textPaint.setARGB(255, 255, 255, 255);
textPaint.setTextAlign(Paint.Align.CENTER);
textPaint.setTextSize(16);
textPaint.setTypeface(Typeface.DEFAULT_BOLD);
canvas.drawText("Some Text", 100, 100, textPaint);
super.draw(canvas, mapView, shadow);
}
</code></pre>
http://stackoverflow.com/questions/1615826/iphone-drawing-over-mkmapview0iphone: Drawing over MKMapView?Alex19872009-10-23T20:53:00Z2009-11-10T16:40:01Z
<p>Hi guys</p>
<p>I'm attempting to draw polygons on a mapView. What I did was to add a transparent view on the main view, that matches the bounds of the mapView, and I draw over it. When I move the table it's ok, but when I zoom in and out the polygones 'bounce' on the Y axis (latitude) but the x axis is ok. What do you think? </p>
<p>BTW I tried to add the transparent view as a subview to the mapView but then it screwed up the user interactions.</p>
<p>How can this be done? Help would be appreciated.</p>
http://stackoverflow.com/questions/1678493/android-maps-how-to-long-click-a-map0android maps: How to Long Click a Map?bd2009-11-05T05:15:56Z2009-11-05T15:00:52Z
<p>Hi.
How do I long click on a mapview so that a place marker appears at that point on the map? </p>
<p>I tried a couple ways without success: </p>
<p>1) Using <code>setOnLongClickListener</code> on the <code>MapvView</code> which never detected the longclicks.</p>
<p>2) My other idea was to extend <code>MapView</code> to override <code>dispatchTouchEvent</code> .. Create a GestureDetector to respond to longpress callback. But I was stuck midway here as I could not get a handle to my subclassed Mapview. i.e.</p>
<pre><code>MyMapview mymapview; //MyMapView extends MapView
mymapView = (MyMapView) findViewById(R.id.map); //results in a classcast exception
</code></pre>
<p>3) The only other way I know how to try this is:
Detect a <code>MotionEvent.ACTION_DOWN</code> and post a delayed runnable to a handler and detect longpress if the two other events: acton_move or an action_up, have not happened.</p>
<p>Can someone provide thoughts on any of these methods to detect long presses? </p>
<p>Thanks in advance.
Bd</p>
http://stackoverflow.com/questions/1663979/more-efficient-map-overlays-in-android0More efficient map overlays in AndroidfiXedd2009-11-02T21:56:30Z2009-11-03T01:29:22Z
<p>In my app I am drawing bus routes on top of a <a href="http://code.google.com/android/add-ons/google-apis/reference/com/google/android/maps/MapView.html" rel="nofollow">MapView</a>. The routes have anywhere between a dozen and a few hundred GPS coordinates that describe the route that the bus takes.</p>
<p><img src="http://imgur.com/GC2T1.png" alt="Hosted by imgur.com" /></p>
<p>The problem I'm having is that once I draw out all these lines panning/zooming the <code>MapView</code> is incredibly slow (even clicking the 'Back' button takes a minute to happen). </p>
<p>I'm not sure how relevant it is, but I put in some debug code then checked the logcat output and the <code>MapView</code> is repeatedly calling the <code>draw()</code> method of the <a href="http://code.google.com/android/add-ons/google-apis/reference/com/google/android/maps/Overlay.html" rel="nofollow">Overlay</a> whether anything has changed or not. This is happening several times a second and is causing a massive amount of garbage collection to happen (2-3 MB every second).</p>
<p>Does anyone have any ideas/suggestions for a method to try and speed this up?</p>
http://stackoverflow.com/questions/502788/mapview-with-itemizedoverlay-and-map-scrolling0MapView with ItemizedOverlay and map scrolling.srakyi2009-02-02T10:35:09Z2009-10-30T09:00:02Z
<p>I have a problem with custom ItemizedOverlay on the MapView in Android.</p>
<p><strong>What I've done:</strong> Very simple offspring of ItemizedOverlay class that only wraps my own type of items and uses ItemizedOverlay for all the hard work.</p>
<p><strong>What works:</strong> Nearly everything - items are drawn properly, I can tap them etc.</p>
<p><strong>The problem:</strong> If I drag the map in the view by the map itself, I can scroll it without a problems. But if I try to start moving the map over one of items from my overlay (eg. "dragging map by item"), it doesn't move.</p>
<p>This is really problem, because if I have "a bit more" items, there is no way to drag the map (without un-zooming and grabbing map outside items).</p>
<p>This problem occurs even if I don't handle any events generated by ItemizedOverlay (eg. with onTap() commented out in my overlay).</p>
<p>Any advice would be appreciated.</p>
http://stackoverflow.com/questions/1612533/android-drivingdirections-removed-since-api-1-0-how-to-do-it-in-1-5-1-60Android: DrivingDirections removed since API 1.0 - how to do it in 1.5/1.6?Stefan Klumpp2009-10-23T10:16:31Z2009-10-23T15:14:52Z
<p>It seems that <code>DrivingDirections</code> have been removed since Android API 1.0</p>
<p>What's the way now to display a map with two points (one of them might be the current location, but can also be any other location) and the direction from one to another in Android 1.6?</p>
http://stackoverflow.com/questions/1303728/load-additional-objects-from-core-data-when-a-user-scrolls-an-mkmapview0Load additional objects from Core Data when a user scrolls an MKMapViewKevin Elliott2009-08-20T03:03:36Z2009-10-14T10:12:26Z
<p>With MapKit in the iPhone 3.0 SDK, you create objects that conform to the MKAnnotation protocol. Loading these onto the MKMapView is very easy. However, when a user scrolls the MKMapView, it's time to load new annotations. A likely place to request the new objects would be in <strong>mapView:regionDidChangeAnimated:</strong> which is called when the map's region is changed, and then add/replace the annotations with the new ones.</p>
<p>Specifically, I'd like to query Core Data to retrieve all objects that exist within the current <strong>MKCoordinateRegion</strong> (mapView.region) so that I'm loading only the objects that will be shown on the screen. The objects in Core Data have latitude and longitude attributes (and a CLLocation attribute is defined in the class' .m/.h which I can populate manually from that) and use this for a NSPredicate for finding nearby objects.</p>
<p>Due to the nature of how many objects exist in the Core Data database, we can not preload ALL objects as annotations or else we'll run out of memory (and it would be excruciatingly slow).</p>
<p><strong>How can I retrieve only the objects that have locations in the current mapview bounds?</strong></p>
http://stackoverflow.com/questions/1190270/mkmapview-refresh-after-pin-moves1MKMapView refresh after pin movesslatvick2009-07-27T19:52:18Z2009-10-10T13:56:37Z
<p>A custom AnnotationView is updated with new coordinates. But the problem is that it visually updates only after some manipulations with MKMapView, e.g. zooming or moving.
What should I do to manually update visual position on a map?</p>
<p>PS. I've tried to change region to current map's region. But it does change zoom. It's strange.</p>
<pre><code>[mapView setRegion:[mapView region] animated:YES];
</code></pre>
http://stackoverflow.com/questions/1095508/mkmapview-and-setregionanimated-not-updating-the-map-visuals1MKMapView and setRegion:animated: not updating the map visualsjdandrea2009-07-08T00:14:11Z2009-10-07T22:50:43Z
<p>Greetings! I'm attempting to use <strong>MKMapView</strong> without any Apple code samples, though there are a few others out there of varying clarity. (I know, "Read the friendly manual." I've done that but it's not 100% clear, so please bear with me on this one.)</p>
<p>Here's the situation. I have a <strong>MKMapView</strong> object, wherein I have added a set of about ten <strong>MKPinAnnotation</strong> objects. So far, so good. Everything is alloced/released sanely and there doesn't appear to be any complaints from Instruments.</p>
<p>Upon initial display, I set up a <strong>MKCoordinateRegion</strong> object with the centerpoint at our first pin location, and a (arbitrary) span of 0.2 x 0.2. I then call:</p>
<pre><code>[mapView setRegion:region animated:YES];
[mapView regionThatFits:region];
</code></pre>
<p>Wow! That worked well. </p>
<p>Meanwhile ... I also have a segmented control to allow for movement to each pin location. So as I tap through the list, the map animates to each new pin location with a new pair of calls to <strong>setRegion:animated:</strong> and <strong>regionThatFits:</strong> ... or at least that's the idea.</p>
<p>While the map does "travel" to the new pin location, the map itself doesn't update underneath. Instead, I see my pin on a gray/blank-map background ... <em>until</em> I nudge the map in any direction, however slightly. Then the map shows through! (If I'm only moving within a short distance of the previous pin location, I'll usually see whatever part of the map was already loaded.)</p>
<p>I suspect I'm doing something dumb here, but I haven't been able to figure out what, at least not from the MapKit docs. Perhaps I'm using the wrong calls? (Well, I do need to set the region at least once, yes? Moving that around doesn't seem to help though.) I have also tried using <strong>setCenterCoordinate:animated:</strong> - same problem.</p>
<p>I'm assuming nothing at this point (no pun intended). Just trying to find my way.</p>
<p>Clues welcome/appreciated!</p>
<p>UPDATE: Calling <strong>setRegion:animated:</strong> and <strong>regionThatFits:</strong> the first time, followed by <strong>setCenterCoordinate:animated:</strong> while traversing the list, has no effect. Interesting finding though: If I change animated to NO in both cases, the map updates!!! Only when it's set to YES. (Wha happen?! Is animated: broken? That can't be ... ???)</p>
http://stackoverflow.com/questions/1097594/how-to-show-a-map-in-an-android-mapactivity0How to show a map in an Android mapactivityChiwai Chan2009-07-08T11:52:04Z2009-10-07T22:24:08Z
<p>I have attached a mapview to my layout and have a it showing a compass and my current location, the problem I have is that there is no street map shown in the view, so basically I just see the compass and my current location over a blank grid.</p>
http://stackoverflow.com/questions/1153920/android-appwidget-maps-activity-problem0Android AppWidget maps activity problemAndy Armstrong2009-07-20T14:24:51Z2009-10-06T08:00:02Z
<p>Right.</p>
<p>So I have an app widget.</p>
<p>It has 4 buttons, one one of the buttons I want it to show me the current location of the user on the map.</p>
<p>So - I make a new activity as below:</p>
<pre><code>package com.android.driverwidget;
import java.util.List;
import android.os.Bundle;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import com.google.android.maps.MyLocationOverlay;
import com.google.android.maps.Overlay;
public class MyLocation extends MapActivity{
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
MapView myMapView = (MapView)findViewById(R.id.mapview);
MapController mapController = myMapView.getController();
List<Overlay> overlays = myMapView.getOverlays();
MyLocationOverlay myLocationOverlay = new MyLocationOverlay(this, myMapView);
overlays.add(myLocationOverlay);
myLocationOverlay.enableMyLocation();
}
protected boolean isRouteDisplayed() {
return false;
}
}
</code></pre>
<p>And then I added the appropriate uses library line to the manifest</p>
<pre><code><activity android:name=".MyLocation"
android:label="myLocation">
</activity>
<uses-library android:name="com.google.android.maps" />
</code></pre>
<p>Ok yet - when I run the app the following errors occur, looks like it cannot find the MapActivity class, im running it on the GoogleApps 1.5 instead of normal android 1.5 as well.</p>
<p><a href="http://pastebin.com/m3ee8dba2" rel="nofollow">http://pastebin.com/m3ee8dba2</a></p>
<p>Somebody plz help me - i am now dying.</p>
http://stackoverflow.com/questions/1116331/mkmapview-linker-error0MKMapView linker erroriPhoneDevlpmnt2009-07-12T16:14:29Z2009-09-29T14:00:03Z
<p>Hi,</p>
<p>I have upgraded my iphone sdk from 2.2.1 to 3.0. I downloaded a sample code for MapKit and was able to run it successfully. But when I tried to write my own program I faced linker errors.</p>
<p>The error is not thrown when I import MapKit/MapKit.h or when I declare a variable as MKMapView *mapView; I get the error when I say [[MKMapView alloc]initWithFrame:frame]; </p>
<p>I have added Mapkit framework in my project. I am able to see it under Frameworks. When I expand it I am able to see the header files as well. I added it from /Developer/Platforms/iphone.OS.Platform/Developer/SDKs/iphoneOS3.0.sdk/System/Library/Framework/Mapkit.framework.
I also observed that the other frameworks that are present under Frameworks have some small lock sort of icon. But the MapKit.framework doesn't have it.</p>
<p>Can someone tell me if I have added the Mapkit.framework from the wrong place? If so from which path should I add it?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1424306/how-to-add-a-custom-iphone-ui-element-that-is-not-an-ib-component1How to add a custom iPhone UI element that is not an IB component?DevDevDev2009-09-14T23:00:12Z2009-09-15T15:44:05Z
<p>I'm trying to create an application that uses the iPhone MapView (under Google Code). I can't figure out how to integrate this thing into my application without handwriting the entire UI, ie not using the IB at all.</p>
<p>How can I use the Interface builder to create all of my menus and such but add the MapView in? Do I need to edit the MapView to make it an IB component?</p>
<p>Thanks!</p>
<p>EDIT:</p>
<p>@pgb</p>
<p>Here is my code, it still just displays a blank UIView, I have connected everything up on the IB side.</p>
<pre><code>//
// NewTestViewController.h
// NewTest
//
#import <UIKit/UIKit.h>
@interface NewTestViewController : UIViewController {
UIView* mapPlaceholder;
}
@property (nonatomic, retain) IBOutlet UIView* mapPlaceholder;
@end
//
// NewTestViewController.m
// NewTest
//
#import "NewTestViewController.h"
#import "MapView.h"
@implementation NewTestViewController
@synthesize mapPlaceholder;
// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
MapView *mapView = [[[MapView alloc] initWithFrame:
[[UIScreen mainScreen] applicationFrame]] autorelease];
[mapPlaceholder addSubview:mapView];
}
return self;
}
/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/
/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
}
*/
/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)dealloc {
[mapPlaceholder.subviews release];
[super dealloc];
}
@end
</code></pre>
<p>NEVERMIND FIGURED IT OUT THANGS PBG</p>
http://stackoverflow.com/questions/1193547/issue-with-receiving-touches-for-a-uiview-subview-of-a-mkmapview-using-mapkit0Issue with receiving touches for a UIView subview of a MKMapView using MapKitsaimhann20022009-07-28T11:39:44Z2009-09-07T18:11:04Z
<p>I have added a subclass of UIView as a subview to an MKMapView when a button is pressed. The UIView has its background colour set to be clear. This UIView is not getting messaged with any of the touchesBegan, etc. messages. The MKMapView seems to be receiving all the messages still as zooming still occurs on a double click, etc.</p>
<p>How can I ensure that the subview is receiving the messages and is there a way to debug the responder chain, to see where the message is being sent.</p>
<p>Thanks.</p>
<p>If you need anymore information just say.</p>
http://stackoverflow.com/questions/1371138/refreshing-mkannotation-properties-and-refreshing-the-annotation1refreshing mkannotation properties and refreshing the annotation.Zap2009-09-03T02:24:18Z2009-09-03T02:52:38Z
<p>Hi,</p>
<p>I have a mkannotation located on a mapview which has a mkannotationview as well as a calloutview which when clicked goes to a child uiviewcontroller. I am updating some properties from the callout's uiviewcontroller, but after I'm finished I want to move the annotation's position on the map and change the annotation title and subtitle. How can I easily do this from the callout's uiviewcontoller? What's the most elegant way to handle this? A code sample would be great if anyone has any.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1251952/any-recommendation-to-customize-an-iphone-mapview0Any recommendation to customize an iPhone MapView ?Nicolas Hognon2009-08-09T18:38:38Z2009-08-10T07:56:49Z
<p>I want to you iPhone LocationManager and display the position using a custom map, different from the one used by MapView. Is there any way to customize the MapView or should I rebuild my own MapView from scratch ?</p>
<ul>
<li><p>Do you think MapView will be open to achieve this kind of customization in a future release of the SDK ?</p></li>
<li><p>Do you have any recommendation to rebuild a MapView from scratch. I will have to divided my map in level and each level in tiles. But should I associate a tile with an UIImage or should I build/manage dynamically an UIImage composed of tiles currently displayed ? </p></li>
</ul>
http://stackoverflow.com/questions/920741/always-show-zoom-controls-on-a-mapview0Always show zoom controls on a MapViewAshtonBRSC2009-05-28T13:08:33Z2009-06-05T12:49:21Z
<p>Is there a way to always show the zoom controls on a MapView? I have added the zoom controls using</p>
<pre><code>map=(MapView)findViewById(R.id.map);
map.setBuiltInZoomControls(true);
</code></pre>
<p>but the zoom controls fade in and out. I want them to always be visible.</p>
http://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview2Placing Zoom Controls in a MapViewjasonhudgins2008-11-04T21:30:22Z2009-02-27T11:45:14Z
<p>I'm trying to get the zoom controls to show up in a mapview, the following code almost works, but the zoom controls appear in the top left of the mapview, not the bottom center like I'm specifiying via setGravity(). Can someone enlighten me as to what I'm missing?</p>
<p>zoomView = (LinearLayout) mapView.getZoomControls();</p>
<p>zoomView.setLayoutParams(new ViewGroup.LayoutParams
(ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT)); </p>
<p>zoomView.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL);
mapView.addView(zoomView);</p>
<p>These views/layouts are all constructed programatically, there is no layout file to tweak.</p>
http://stackoverflow.com/questions/26362/using-itemizedoverlay-and-overlayitem-in-android-beta-0-91Using ItemizedOverlay and OverlayItem In Android Beta 0.9Reto Meier2008-08-25T16:39:42Z2008-10-18T16:39:37Z
<p>Has anyone managed to use ItemizedOverlays in Android Beta 0.9? I can't get it to work, but I'm not sure if I've done something wrong or if this functionality isn't yet available. </p>
<p>I've been trying to use the ItemizedOverlay and OverlayItem classes. Their intended purpose is to simulate map markers (as seen in Google Maps Mashups) but I've had problems getting them to appear on the map.</p>
<p>I can add my own custom overlays using a similar technique, it's just the ItemizedOverlays that don't work.</p>
<p>Once I've implemented my own ItemizedOverlay (and overriden createItem), creating a new instance of my class seems to work (I can extract OverlayItems from it) but adding it to a map's Overlay list doesn't make it appear as it should.</p>
<p>This is the code I use to add the ItemizedOverlay class as an Overlay on to my Map View.</p>
<pre><code>// Add the ItemizedOverlay to the Map
private void addItemizedOverlay() {
Resources r = getResources();
MapView mapView = (MapView)findViewById(R.id.mymapview);
List<Overlay> overlays = mapView.getOverlays();
MyItemizedOverlay markers = new MyItemizedOverlay(r.getDrawable(R.drawable.icon));
overlays.add(markers);
OverlayItem oi = markers.getItem(0);
markers.setFocus(oi);
mapView.postInvalidate();
}
</code></pre>
<p>Where MyItemizedOverlay is defined as:</p>
<pre><code>public class MyItemizedOverlay extends ItemizedOverlay<OverlayItem> {
public MyItemizedOverlay(Drawable defaultMarker) {
super(defaultMarker);
populate();
}
@Override
protected OverlayItem createItem(int index) {
Double lat = (index+37.422006)*1E6;
Double lng = -122.084095*1E6;
GeoPoint point = new GeoPoint(lat.intValue(), lng.intValue());
OverlayItem oi = new OverlayItem(point, "Marker", "Marker Text");
return oi;
}
@Override
public int size() {
return 5;
}
}
</code></pre>