Tagged Questions
0
votes
0answers
9 views
Drawing circle around user location
I want to add a circle to around my user point. I know this question is asked a lot but when i implement general approach i can not see my circle in my map. Here is my code:
MyMap.h
#import ...
0
votes
1answer
35 views
Change color of pin on map after pressing button on another screen
I need to find a way to change the pin color when the map is loaded by pushing a button from another screen.
For example, the original pins are all red, but when I go to a page and push the map ...
2
votes
1answer
33 views
How to set a scope to click on Annotation on an iOS map
I'm developing an iOS game with a Mapview, where I want to select an opponent from the multiple annotations on Map then I'll hit him. In the Map first user will select a range where he/she will find ...
0
votes
0answers
49 views
Adding annotation to iPad MKMapView fails in MonoTouch
I try to add an annotation to the my map view by this code:
for( int i = 0; i < GetApp .Delegate .typeOfShow .Content .Properties.Count ; i++){
Property p = GetApp ...
0
votes
0answers
42 views
Set different actions for different annotations in MKMapView
I am trying to find a way to make multiple annotation disclosure buttons open other views.
For example, annotation1 disclosure button needs to open ViewController 1.xib, annotation2 needs to open ...
0
votes
0answers
41 views
How to protect pin callout, so it cannot disappear
I have a little method wich do a very simple cluster/grouping:
-(void)doCluster
{
NSMutableSet * coordSet = [[NSMutableSet alloc] init];
for(id<MKAnnotation> an in mapView.annotations)
...
0
votes
1answer
34 views
Problems with Zooming in on Map on View enter [closed]
I have two map views: mapView and mallMapView. I have the code:
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
MKCoordinateRegion region = ...
0
votes
1answer
43 views
Add type to annotation so I can filter Annotation array in the 3 pin colors
I'm new to xcode - I made a map and added some Annotations using a MutableArray. I would like to divide them in to 3 groups and show them on the map using the 3 different pin colors.
Hope you can help ...
0
votes
3answers
99 views
Detail Disclosure Indicator MKMap to Custom View Controller
EXTRA CODE ADDED
I am new to xcode. I have managed to create annotations on my map in various different colours. What I would like to do is have each annotation lead to somewhere new with a ...
0
votes
1answer
88 views
Clustered annotations overwrite unclustered annotations
I have about 500 annotations on my MKMapView and I clustered them with OCMapView wich replace the normal MKMapView. Anyway my annotation are clustered but not very well that why I need a little bit ...
0
votes
2answers
32 views
iOS mapView animatesDrop
In my mapview, I currently have the bool animatesDrop for the annotations set to NO. This is because when the mapView annotations are plotted during viewWillAppear, I don't when them animated. ...
1
vote
1answer
81 views
MKMap Pin Colour
I am new to Xcode and basically I have an MKMapView and would like to add individual colours to each of my pins. I currently have marked pins with annotations.
LocationAnnotation.h:
@interface ...
0
votes
1answer
25 views
Clustered Annotations
My app displays some locations on the map using annoations. The annotations also have a custom image and some important annotations are really close to each other which makes it hard to click them.
I ...
0
votes
1answer
42 views
MKMapview customannotationview
Iam working in MKMapview customannotationview, and succeeded in customizing the pin drop to my own image using the below code,
-(MKAnnotationView *)mapView:(MKMapView *)mapView ...
0
votes
1answer
118 views
Customize Annotation Pin in MKMapKit
I'm trying to customize pins on my map working on
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation method in ColonnineController class
but it doesn't work, how can ...
1
vote
1answer
92 views
how to Drop multiple pin's on same Location
Hi is that possible to display multiple User Pin's on MKMapView at same location Lat Long. see this Bellow Image:-
in This above image i can there is a Two user location pin but Because of same ...
0
votes
1answer
25 views
Searching for annotations in a map
I wonder if anyone know if it's possible to have a search function in a mapview?
I want to be able to search/filter annotations with a UISearchbar, just like it's done in the tableview UI. The ...
1
vote
3answers
184 views
iOS : Why can't I get mapkit to display a custom annotation pin image?
figured that using my own custom pin image for annotations would be super easy.
But I have never been able to get it to work, and I have no idea why!
I am simply using:
- (MKAnnotationView ...
0
votes
0answers
105 views
Get coordinates at a distance - ObjC [closed]
How can find the coordinates at a specific distance having in mind that I already know the trueHeading? I need to find the coordinates on map to add an annotation which is at a specific distance. I ...
1
vote
1answer
125 views
Check if mapView already contains an annotation
I have a method of adding secondary nearby annotations (ann2) when I tap on another annotation (ann1). But when I deselect and re-select the exact same annotation (ann1) the ann2 re-creates it self ...
0
votes
1answer
191 views
Map Annotations ars displaying with incorrect custom pin images
This is my first question on this site.
My code is implemented in the following function using iOS 6 Mapkit, Objective-C.
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id ...
1
vote
1answer
85 views
Activity indicator as annotation accessory
I have a mapView with annotations which they have a button as right accessory view. If you press the button as soon as the annotation details appear then details appear to be empty because there was ...
0
votes
1answer
49 views
Get the annotation id or reference in ios mapview
I draw some annotations in viewdidload function and I want to press a button and the annotation which I want callout will automatically show out.
The function is
[mapView ...
0
votes
3answers
53 views
How to remove annotations that are created in a for loop
I hope you can help me out. I'm working on some homework for school, and we have to create a project that takes an array of objects and create map annotations from those objects on a map. My objects ...
0
votes
1answer
55 views
How to get the managed object from selected annotation
I have a model: Event, I have loaded the annotation view to the mapview, but how do I get the event managed object from the selected annotation, so I can push a view controller to display event's ...
0
votes
0answers
235 views
How to use overlays or Annotation to adding Images in MKMapView
I found these links
Adding Image with Overlays
Image with overlays in monotouch
and this movie:
developing map applications in monotouch
That specify how to use overlays and annotations to add ...
0
votes
1answer
315 views
Trying to Center Map on Pin (MKMapView)
Struggling to find a way to make map zoom and center on annotation pin. Pin drops, but map loads ocean. Code is below.
- (void) connectionDidFinishLoading:(NSURLConnection *)connection
{
[self ...
1
vote
0answers
100 views
Manage memory allocation issue on Map iOS
In my iPhone app I have a map view. In this I am displaying a number of pin views depends on the data from a web server. Here is the method I used for it.
- (MKAnnotationView *)mapView:(MKMapView ...
-2
votes
1answer
88 views
Showing distance from user location to other mapview annotations, but the calculated distance says 0.0000? [closed]
I'm attempting to display the distance from a user's current location to other mapview annotations (Pulled from my MapViewController) in a label (located on a TableViewController), but for some reason ...
0
votes
1answer
86 views
Bring ios mapview in zoomed in mode during first load
Hello i am doing an iOS6 in-house iPad app. On my ViewController i have a scroll view. On that at the bottom left i have a map view (20,594,360,347).Mapview location on my scroll view. I have a get ...
0
votes
0answers
128 views
How to add multiple annotations (with coordinates from NSMutableArray [closed]
I have a loop in which I tried to add annotations from array. But on map creating only one annotation with coordinates from last object. Here is my code:
for (NSDictionary *d in filtered ) {
...
0
votes
1answer
112 views
Pulling coordinates for MapView annotations from MySQL database, but annotations aren't showing?
I'm trying to pull coordinates for my MapView from a MySQL database, but for some reason my coordinates just aren't showing up on the MapView?
See below my code.
MapViewController.h file
#import ...
-1
votes
1answer
103 views
Set up my MapView; how do I add more than one annotation?
I've created a MapView in my app that zooms into the user's current location, and it works perfectly. See my code below:
.h file
@interface MapViewController : UIViewController ...
0
votes
2answers
160 views
Showing multiple annotation with user location at center
all
I need to show multiple annotations within a mapview and zoom to show all this annotations.
I have the code fore that
MKMapRect zoomRect = MKMapRectNull;
int i = 0;
for (Post *post in ...
1
vote
0answers
111 views
Some times i am getting wrong latitude and longitude when clicking right callout button
Whenever i am clicking on a annotation view throught right callout accesory button i am getting latitude and longitude of that point, working fine but some times its showing another pin latitude and ...
0
votes
1answer
68 views
How can i customize the MKMapview Annotation With Next and Previous Functionality?
HI I have requirement to Implement Next and Previous functionality in the MKMapAnnotationView as shown in the Image.I have got reference from Here for making custom annotation but how can i change ...
0
votes
2answers
171 views
MapView Annotations Not Showing Up
I can't figure out why my annotations aren't showing up on my mapview. The coordinates are correct when I log it, but no "pin" show up on the map. I don't have a MapView delegate, but I don't see ...
0
votes
1answer
329 views
iOS refresh annotations on mapview
I have a mapview where the annotation's coordinates are constantly being updated but when I use setCoordinate, the annotation does not move. How do I refresh the annotations to reflect their ...
0
votes
0answers
53 views
iOS creating a MKAnnotation class similar to UserLocation
I have an application that fetches an array of coordinates from a db every second. The coordinates are constantly changing because they are the location of another device, and every time that device ...
0
votes
3answers
138 views
Not able to remove all Annotation from mapview
I am getting problem while removing annotations from MKMapView. I have already search for same and found so many answers but couldn't find satisfactory ans. Below is my code summary:
I have created ...
1
vote
2answers
515 views
MapView regions zoom level different in IOS 6
I have an app that uses MapKit to layout a map with annotations. I have a method that creates an MKCoordinateRegion that I assign to setRegion to adjust the zoom level of the map appropriately. But ...
2
votes
1answer
265 views
ios: MapView Pin color Annotations keep changing ; why?
Hello and thanks for the help.
I am using the following code to set the pin colors on my MapView annotations ?
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id ...
0
votes
1answer
38 views
UIButton fail to be clicked on the calloutView of the Annotation
The problem I encountered: I click on the button, but it seems that the CalloutView received my clicking instead of the UIButton.
Some explanation first: 1.the "SYSUMyAnnoCalloutView" is a ...
0
votes
2answers
143 views
how to display multiple locations in a single map view in iphone application
i have NSMutableArray that contains multiple places- name,latitude and longitude. those location values are within the range of 5000 meter from current location. i need to display the annotation pins ...
3
votes
1answer
268 views
iOS distinguish between which callout accessory is tapped
In my map annotations, I have a UIButton as each accessory view in the callouts. In the - (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view ...
0
votes
1answer
333 views
map does not center on annotation pin on first attempt
When a user selects a menu option I currently have the location name sent to my map view via "stringToDisplay" and a pin drops on the map as expected, however, it does not center the pin or zoom on ...
0
votes
1answer
39 views
Removing annotation with a button
I have annotations on a mapView, and the callout button on the annotation view pushes another view called PinViewController onto the stack. I have a button on PinViewController that I want to remove ...
0
votes
1answer
343 views
How to remove all annotation pins then add a new one
curious if someone can help with one thing:
I'm just trying to tell Xcode that if both "addAnnotation" and "newAnnotation" pins exist on the map at the same time, then to remove the initial ...
1
vote
1answer
213 views
How to reorder MKMapView annotations array
I'd like to reorder the array of annotations shown on a map in order to create a next/prev button for quickly cycling through all annotations (sorted by date) using a simple iterator.
As far as I see ...
0
votes
1answer
79 views
iOS checking to see if annotation's coordinate is {0,0}
I have a loop statement that displays my annotations on the mapView from an array. How do I check to see if any of the coordinates in the array are 0,0, and if so, remove/dont plot them?
Thanks.
...








