Tagged Questions
0
votes
1answer
37 views
Duplicate UIViewControllers on UINavigationController stack after application wakes
I just learnt IOS programming and am writing my first iPhone app.
My app provides info on an MKMapView, the view controller of which is the root view controller of a UINavigationController. If the ...
0
votes
1answer
38 views
MKMapView is not showing annotated points
I am trying to show the location of my current location and random 5 points points like this:
- (void)viewDidLoad {
[super viewDidLoad];
locationManager.delegate = self;
...
0
votes
2answers
34 views
MKMapView display route
Im pretty new to mkmapview so I'll hope my question will be clear enough.
Let's say I have a code where im saving the userLocation in an array (MKuserLocation type). im saving this for every step the ...
0
votes
1answer
17 views
MKAnnotation rotating when pinching the map
I have an app where I am tracking someone who walks. Once I get the users heading, I rotate the MKAnnotationView based on the heading. Everything works when tracking and rotating the MKAnnotationView ...
0
votes
1answer
22 views
MKAnnotation not updating position
I am using the HGMovingAnnotation and HGMovingAnnotationView code off of github to animate a MKAnnotation on an MKmap. When I run the example project from HG project everything works fine.
I have ...
0
votes
1answer
30 views
Cannot display MKPolyline on the map
I'm fighting the hell with theses freaking polylines…
I still can't display it on my map !
I implemented :
NSArray *points = [NSArray arrayWithObjects:
[[CLLocation alloc] ...
1
vote
1answer
21 views
Apple Map (MKMapView) Mercator Projection's EPSG
I can't seem to find which projection Apple Map's Mercator Projection uses. Doesn't say on
their guide:
Location Awareness Guide
Anybody know off hand?
0
votes
0answers
18 views
Avoid clossing MKAnnotationView when tapped
I've used a nice and beautiful custom callout as shown in the picture.
The callout is just a MKAnnotationView with the shape of a bubble. When I have to show it I add it into the MKMapView's ...
1
vote
1answer
68 views
MKPointAnnotation not working
Hello i got this method:
-(void)adresseZeigen
{
NSLog(@"%s",__PRETTY_FUNCTION__);
selectedAnnotation = [[MKPointAnnotation alloc]init];
selectedAnnotation.title = selectedCompanyName;
...
0
votes
0answers
13 views
mkannotationview addannotation with custom animation
MkMapView provides MkPinAnnotationView which can be added to the MkMap in a
animated manner(animatedrop).
I'm currently working with MKAnnotationView (custom), where I need to add my custom ...
0
votes
0answers
33 views
Why is my MkPointannotation not showing a button?
I am new to Objective-C and IOS programming, so this might sound dumb. I have a MKPointAnnotation with a MKAnnotationView defined like this:
-(MKPointAnnotation*)setAnnotation: (NSString*) title ...
0
votes
1answer
21 views
App crash while loading MKAnnotation in map view
In my application i have integrated a view controller like container (split view). Controller view controller container two view. Detail view and selection view(table view).
While selecting the ...
0
votes
2answers
39 views
MapView not showing - Objective C
I'm trying to get the map view in my app by creating it dynamically but the map view is just showing the pale yellow coloured view. I imported the MKMapView and CoreLocation frameworks. Here is my ...
-1
votes
2answers
55 views
iphone 5 retina 4 inch mapview
I'm trying to adapt my app to retina 4 screen for iPhone 5, and adding the png archive and everything resizes but the map view, that moves to the top and leaves a white square on the bottom. I'd like ...
0
votes
1answer
40 views
MKOverlayView and changing its alpha
I have a custom MKOverlay and MKOverlayView. When the MKOverlayView is created, I can set the alpha of the view:
-(void)drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale ...
-1
votes
1answer
45 views
objective c - starting Apples Maps or Google Maps on MapView [closed]
i want to know how I can start other apps from my app.
Here the situation:
I have a MapView pointing to a specific longitude/latidude.
I want to give the user the chance to navigate (Google Maps or ...
0
votes
0answers
23 views
Double tap with single finger disable zooming from mapview [duplicate]
I am using MKMapView and adding UITapGestureRecognizer for double tab with singer finger.
How can I disable map view zooming for double tab with single finger?
0
votes
3answers
64 views
Can iOS 6+ MKMapView display whole world view
Pre-iOS 6.0 I was able to display the full globe on an MKMapView (using the old google maps). On iOS 6.0+ (using apple maps) I cannot zoom fully out (e.g. I cannot display USA and Russia in the same ...
0
votes
0answers
14 views
Ractangular overview with specific size, location and heading on MKMapView
I have a question which invloves drawing a rectangular overlay on an MKMAPVIEW.
I get the currect user location (Coördinate), then I would like to draw a rectangular overlay on the MKMapView where ...
1
vote
2answers
54 views
Drop a pin on MKMapView
iPhone newbie is here coming from Java. So my objective at this stage is to allow the user to 'drop a pin' on the map. My initialization of the map looks like this:
- (void)viewDidLoad {
[super ...
1
vote
0answers
46 views
iOS: Understanding how to monitor for regions properly
I would like my app to show an MKMapView with his/her location and a few circular regions on it. The app must warn the user when he/she has stepped into or out of certain regions.
I have figured out ...
2
votes
0answers
46 views
Custom “Callouts” for MKPolyline
I have an app to which I display routes on a map as MKPolyline. I made my search but I was unable to find a sample code on how to display custom MKPolyline callouts as Apple does on the ios6 maps:
...
1
vote
1answer
75 views
Move custom annotation to display user location
I have replaced the blue dot for user location in mapview with my custom annotation view, How can I make my custom annotation to follow user's location like the default blue dot does? When I replace ...
0
votes
0answers
27 views
Can I show a map Legend in MKMapView that is parsed from a google map KML file
I am currently using KML files that are generated from google maps. The KML's that have complex polygones have a Legend as well. I would like to display the Legend. I'm wondering if there is a way to ...
0
votes
1answer
60 views
MKMapView region property returning bad struct
I'm working with MKMapKit and setting the region to be a full size United States and it's displaying as expected. However when inspecting the self.mapView.region property I'm getting some weird ...
0
votes
2answers
96 views
Draw on UIImageView over MKMapView
I have searched a lot an answer for this question, but none of them seem to do exactly what I want. A lot of tutorials show me how to add lines and polygons in code, but not with freehand drawing.
I ...
1
vote
1answer
51 views
Remove a custom MKOverlayView
I'm using a subclassed MKOverlay and subclassed MKOverlayView to display WMS tiles. Got it running well.
I'm running into the issue of removing the MKOverlayView when I'm done displaying the tiles. I ...
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)
...
3
votes
0answers
143 views
MKMapView setRegion animated does not show animation
I've got MKMapView with annotation pins. When the view loaded the nearest pin gets searched and the map will get zoomed so it shows both, the user's location and the pin. I do that with [map ...
0
votes
1answer
35 views
Map may not zoom so far out
Simple question:
Is it possible to do a max zoom-level? e.g.
region.span.latitudeDelta = 0.02;
region.span.longitudeDelta = 0.02;
I don't want to do it static. Think about the max possible ...
-1
votes
2answers
30 views
Reloading data in MKMapView [closed]
Im using a MKMapView and I made MKCoordinateRegion a global variable and I'm changing its attributes in the IBAction called by the UISlider but it doesn't change in the simulator? Is there anything I ...
4
votes
3answers
224 views
How to keep MKMapView in iOS 6 North oriented always when switching mode from MKUserTrackingModeFollowWithHeading
I am switching between the three different map orientation modes using MKUserTrackingModeNone, MKUserTrackingModeFollow, MKUserTrackingModeFollowWithHeading and this works.
However I have a problem ...
0
votes
0answers
24 views
MapView and Point on map/ view
I'm adding a pan gesture recognizer on a customView on a mapView by [self.view addSubview: customView]; instead of [self.mapView addSubview: customView];. However the CGPoint on view when is ...
1
vote
2answers
148 views
Issues in getting directions in mkmapview
I'm working with getting directions in mkmapview, I got code from this answer.
In the function
- (NSArray*)getRoutePointFrom:(Annotation *)origin to:(Annotation *)destination
{
NSString* saddr = ...
0
votes
0answers
83 views
UIImage not displaying properly in MKOverlay
I am trying to display a radar image in an MKOverlay with MKOverlayView using just a center coordinate and a radius. The image is being loaded from a url using the center coordinate and radius in the ...
1
vote
0answers
52 views
MKMapView userLocation return coordinates 0.0;0.0 on app's first launch
I'm currently developing an app that have use an MKMapView control. It is suppose to show the user's location via the blue dot (like the Maps application), but when the app is first installed on the ...
0
votes
2answers
44 views
How to showUserLocation without animation in MapView
I use this code to convert MKMapView to UIImage:
+(UIImage *)imageFromMapView:(MKMapView *)mapView {
BOOL showsUserLocation = mapView.showsUserLocation; //save flag
[mapView ...
1
vote
1answer
126 views
Mapkit draw route problems
I am developing an application in which I need to draw a route between two points using lat/long.
I have used google API to get polylines and drawing it after decoding it.
Problems:
Route is not ...
1
vote
0answers
38 views
MKMapView: There A Way To Detect Whether Satellite Imagery Has Loaded?
Pretty simple question, when using an MKMapView (MapKit), and you're using MKMapTypeSatellite, sometimes, especially in rural areas, you can zoom in further than the available satellite imagery. Is ...
0
votes
1answer
24 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 ...
1
vote
0answers
105 views
Mapkit Point Arrow Indicator in iOS Map
I use MapKit to view the map and put the annotations. I need an arrow which will point from blue dot to selected annotation with specified coordinates. When blue dot moving as user moving, the arrow ...
0
votes
1answer
59 views
Show transit stations, restaurants and other places on iOS 6 MKMapView
Is it possible to show businesses, restaurants, transit stations, parks, etc. on an MKMapView in your own app?
Below is a picture of how this looks in the iOS 6 Maps app. Can I do the same in my own ...
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 ...
4
votes
1answer
146 views
How to select a map pin programmatically
I am new to Maps Concept.
Please find the attached image once.
when i click the "pin" i am getting message says "Admire your smile" or any text..... Now i want like... when we select the table ...
2
votes
1answer
39 views
Type of property does not match type of accessor mkmapview
I am more of a java person and I am just starting out with Objective C and iPhone programming.
I have been trying this code to (Xcode iPhone programming) to make the iPhone switch between map types ...
1
vote
1answer
89 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 ...
1
vote
2answers
178 views
How to add button on an MKMapView?
I'm trying to make an iPhone app where the map has buttons, how do I do that? I've already implemented MKMapView and set its longitude/latitude and centered it where I want it.
1
vote
3answers
113 views
Trouble creating a custom annotation class in ios
I'm trying to make a custom MKAnnotation class so it can hold additional information but i keep getting this error :
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: ...
1
vote
2answers
208 views
MKMapView annotation drag and drop pin, go to user location on button click
I am creating a MKMapView app where user can drag and drop annotation pin to any specific location. Until now its working. But what i want that when user click on refresh button the annotation pin ...
1
vote
1answer
440 views
How to use delegates in Google map API for IOS 6 [closed]
In my iphone app I am using google map SDK for showing nearby restaurants.I am able to show the places.
I have some doubts..
1. How can I find out the center coordinates of the map ??
2. How to ...




