Tagged Questions
0
votes
2answers
81 views
Multiple Annotations ( MKAnnotationView ) in the same location Coordinates
Hi I am trying to implement Annotations grouping and animation if the user touch.
I did look a the different cluster Library solution but this wont work for my because I have multiple Annotations in ...
0
votes
1answer
83 views
iOS Mapkit - Annotations disappear on map scroll/zoom
On initial load, the annotations show just fine. But if I scroll the map, they all disappear and the code is only called for the user location, not the other annotations in the viewForAnnotation ...
1
vote
2answers
63 views
iOS Map Kit Locations read from database
I have been tasked with creating an iPhone application for a client.
I have some coding experience but only in C# so it doesn't really help here but other than that I am a complete novice on iPhone ...
0
votes
1answer
117 views
xcode - viewForAnnotation slow (over 3k Annotations) … normal?
Hy Guys!
I have about 3-4k Annotations in my MySQL, receive them via assynchronous request... only showing the Annotations is ok, but i want that the user can select a highlighted Annotation to go to ...
0
votes
1answer
29 views
Importing NSMutable Array into Map Annotations
Hi all i have a mysql database that consists of 7 columns and i have a script that reads it and extracts the data as JSON which i have pulled into an NSMutableArray, I want to be able to use this ...
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
40 views
Database use in xcode for multiple locations?
I am trying to make annotations on a map in Xcode for every gas station and major grocery store. Does anybody have a clue about how to go about this except for entering them in all by hand? Maybe a ...
0
votes
1answer
38 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
1answer
30 views
Show an alert view when current location is near pin location
I've the user current loaction, and the annotation pin location.
When the user clicks on a button, the app starts to calculate the distance between the user current location and the pin location.
This ...
0
votes
3answers
94 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
2answers
65 views
How can I load a new view when a user clicks the detail disclosure button on map?
I am making an App that shows annotations on a map using the iOS MapKit. When a user taps an annotation the callout window pops up and shows the Tile, Subtitle and a Detail Disclosure Button. I need ...
0
votes
1answer
86 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 ...
1
vote
1answer
30 views
Annotation not dragging
MapPin.h :
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>
@interface MapPin : NSObject<MKAnnotation> {
CLLocationCoordinate2D coordinate;
NSString *title;
NSString ...
0
votes
0answers
58 views
Custom Annotation Show or Hide Zoom Level
I'm working on an application in which I have a Custom Annotation. Depending on the zoom level, it will appear or disappear automatically.
This is the method:
- (void)mapView:(MKMapView *)map ...
1
vote
3answers
175 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
1answer
184 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 ...
0
votes
0answers
69 views
iOS - Annotation DetailDisclosureButton sends variables to next view
I'm very new to Objective C programming. I have this problem, that I can't find a solution to, even though there are a lot of topics regarding this.
I got these annotations, and it all works ...
0
votes
0answers
60 views
Not able to show callout when the map loads by default : iOS 5 MapKit
Here is the code that I have written but it does not show callout by default. It only shows it when the icon of the pin is tapped.
MKAnnotationView *annotationView = [[MKAnnotationView alloc] ...
-1
votes
1answer
102 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 ...
1
vote
0answers
67 views
Click the annotation and change color
I want to change the anntation color when user click it . my code just like that
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation
...
0
votes
2answers
169 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 ...
-1
votes
4answers
82 views
Passing data to a method when a button is tapped
I have a button added to an annotation marker for a map view page in my iphone App
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
[rightButton addTarget:self
...
1
vote
1answer
181 views
objective c mapkit click button in annotation
Hi i have a map view page in my app where i display 200 + markers.
I initiate these at present with
MapViewAnnotation *newAnnotation = [[MapViewAnnotation alloc] ...
0
votes
0answers
49 views
Map Annotations-User Changeable
I am creating a basic maps app in xcode 4.5.2 for ios6 with some customizable features. I have several annotations on the map and I would like to give users the option to change the annotations. The ...
3
votes
1answer
74 views
Having Trouble Making Map Annotations Appear in MapView
I have an application (Xcode 4.5) which downloads images from Flicker. I have a mapview which drops a pin for the location of each photo. Clicking the pin reveals an annotation which shows the name of ...
0
votes
1answer
90 views
How to Set an Image for an Annotation View off the Main Thread
I have an application (Xcode 4.5) which downloads images from Flicker. I have a mapview which drops a pin for the location of each photo. Clicking the pin reveals an annotation which shows the name of ...
1
vote
0answers
66 views
How can I create my own route using CoreLocation and mapKit?
I know that CoreLocation already has a method that does the difference between two dots that have(Latitude and Longitude), but this route is the closets route between the dots. What I want is to draw ...
0
votes
2answers
429 views
MapKit Xcode 4.5.2
I am new to app development and I am trying to create a relatively simple app. The first thing I need to create is a map with some customizable features. I can get the map framework loaded fine and I ...
1
vote
1answer
75 views
Hide or remove map annotations based on colour
I have a map loaded with pins of the 3 standard colours. These pins get coloured based on a value in an xml that is parsed and stored into an array.
I would like to add a segmented control with 2 ...
0
votes
1answer
54 views
Getting the bounds of annotation having custom view
I have a number of pins on my map and I want to know the coordinates of top-left and bottom-right corners of their views to perform specific manipulations with them.
Here is the code where I need to ...
1
vote
1answer
209 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 ...
1
vote
2answers
680 views
Update MapKit annotation subtitle and image
I've searched a bit around the web and found a few ideas on how to do what I want, but I would still like to know what you think I should do.
Here is the context :
I'm developing an app for iOS 5. I ...
0
votes
1answer
81 views
How to remove pin view?
In my app i have a MapView and one annotation. The first touch on the pin showing it's view, but i can't find the to remove/hide it on another touch.
Thanks
0
votes
0answers
25 views
Adding a thumbnail to a MapKit annotation [duplicate]
Possible Duplicate:
Customize the MKAnnotationView callout
got an idea but not 100% sure if it's possible, I'm wanting to add a thumbnail image of a location above the title in the ...
0
votes
1answer
139 views
Mapkit Annotations : remove old, add new and keep existing
I'm dynamically loading annotations on a mapview. When the user reload the annotations, i want to remove the old (the ones that are not anymore returns by the WS), add the new ones (that's ok), and ...
0
votes
2answers
137 views
Why have only one view pin annotation display?
I am using following code and it display only one pin(annotation) on Map view. Please help me to figure out my mistake.
- (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views
...
0
votes
0answers
72 views
Use arraylist to display anotations on google map
I am implementing a program on Objective-C (using Mapkit) for showing about 12 campuses of my university on Google map. I want to show them as annotations.
I was wondering if it is possible to insert ...
0
votes
0answers
86 views
How can i have 2 subtitles on a map annotation , iOS?
What I need is just use one more line to my annotation on the map.
I just have a title and a subtitle so what i would like is to have one more line like a subtitle. All the code i have found , many ...
0
votes
3answers
1k views
Annotations dont show title/subtitle on MapKit , iOS
I am parsing some data with some points of interests and trying to show them on map using the MapKit framework.
I created a custom class for my objects on the map which i call MyLocation.
...
2
votes
2answers
157 views
annotation pins
So, I have a problem with making positions for annotation pins on MKMapView.
I just write a class heritable from NSObject, called "Annotation", which uses protocol.
so, here's code:
Annotation.h
...
0
votes
1answer
56 views
Animating sprites on top of mapview (iOS)
I am developing an application which will show where trains are at any given time. It will receive gpx-data from the trains to get their location.
Is there any way to animate a sprite moving along a ...
2
votes
2answers
1k views
Map view annotations with different pin colors
I have an array with over 200 objects and I am trying to perform a loop through each of them.
Each object will have a yes/no field and I want to display a different coloured marker dependent on that ...
0
votes
1answer
719 views
Xcode - Programmatically open annotation - MapKit
I have a function which zooms half way into the annotation which has been placed on the map, and the user's location, so that both can be seen on the screen. Is there a method for the annotation which ...
0
votes
0answers
152 views
Mapkit annotationc custom image doesn't work
I have a problema with the custom image on mapkit annotation. Building a sample project where I am performing same test, It work properly (althoug the drop effect and the custom image do not work).
...
1
vote
1answer
356 views
iOS Mapkit - How to filter annotations (show/hide)?
So I have 4 different types of annotations that show specific pins (i.e. colors). I want to be able to have a segmented control that allows users to show/hide these annotations by type.
Is there a ...
0
votes
1answer
241 views
Show current position annotation by default
I have an current location annotation (blue dot) showing in mapkit. Annotation shows after taping the blue dot,
how can I have the annotation showing by default?, when I start the view? whit out ...
1
vote
1answer
293 views
Passing SQL data from Annotation click to a new view
I have tried to find an answer online and maybe there is an answer out there but I'm struggling to find it.
The Concept - I have data downloaded from an SQL. I collect this data and an array ...
0
votes
2answers
386 views
Managing thousands of annotation's in iOS
So im making an iOS application where I have a map that contains thousands of annotations. And my question is the following:
The annotations are loaded from a site database and i query for new ones ...
0
votes
0answers
148 views
Mapkit annotation image resolution
I've changed the annotation pin to a custome image, and it works great. However the image looks a little rough around the edges when it drops in the mapview. Does anyone know how to sharpen the image ...
4
votes
1answer
2k views
mapkit show annotation by default
I have an annotation showing in mapkit with a custom image, showing fine,
but the annotation shows after taping the pin,
how can I have the annotation showing by default?, when I start the view? ...

