views:

284

answers:

1

I want to pass cordinates to default blue blob of mapkit.but it gives error? how do i show blue blob at my desired location?

+1  A: 

The blue "blob" marker is the users current location marker and is provided by the MapKit framework. It is not possible to set the location of this marker in your code.

See this documentation:

http://developer.apple.com/iphone/library/documentation/MapKit/Reference/MKUserLocation%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/TP40008424-CH1-SW3

ordord00