Tagged Questions
4
votes
3answers
239 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
2answers
146 views
Merging overlays to display on MKMapView (iOS) or MapView (android)
I'm working on creating a mobile app which overlays images on top of a google map.
I have a large number of image overlays ('GroundOverlay' objects in KML-speak). I'm running into several issues ...
0
votes
1answer
234 views
Disable zoom controls on a mapview in Titanium
I'm working with a mapview in Titanium and I want to disable the zoom controls, which property should I modify?
0
votes
1answer
203 views
Annotating MKMapView in offline mode
In my application, I have a map view displaying nearby locations in a regeon. I can annotate my current location and other fixed locations in the map when the application be in online. The User would ...
0
votes
1answer
635 views
Adding pins to MapView
I was wondering how I would add pins to a MapView within an iPhone app. I want to have pins pinned in places that have the word "Tea" in their name and it would be impractical to place each pin in ...
0
votes
0answers
220 views
app crashes if i set the show userlocation to NO xcode
i am working on a map application , if i set "map.userlocation" to "NO" the app crashes ,
- (void)viewDidLoad
{
[super viewDidLoad];
listOfItems = [[NSMutableArray alloc] init];
NSString *path ...
1
vote
3answers
4k views
Show route between current and desired location on iPhone MapView
I want to show a route on a MKMapView between the current location and a desired location as an annotation.
What is the best way to do this?
1
vote
2answers
634 views
Titanium - Mapview and annotations
I am an iPhone developer and a beginner in Titanium Studio. I have some ideas about basic concepts of using view, window, tabBar in Titanium. I need to proceed advance to deal with MapViews. Where can ...
0
votes
1answer
2k views
iPhone map view custom annotation
I have some map view controller and I have a custom annotation.
custom annotation code:
#import <Foundation/Foundation.h>
#import <MapKit/MKAnnotation.h>
@interface DisplayMapAnnotation ...
1
vote
1answer
128 views
Can't call “MapAnnotation” When Trying To Code Pin Locations
I can't call the class "MapAnnotation" on XCode 4. I'm working on coding that will allow me to place pins in an MKMapView. I believe I've imported the right delegates. Here's what I've got:
...
0
votes
1answer
118 views
MKAnnotationView do not anything
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
NSLog(@"I'm Working");
static NSString *identifier = @"MyLocation";
if ...
1
vote
1answer
752 views
iOS MKMapView regionDidChangeAnimated visibleMapRect issue
Ok, I know I must be doing something wrong, but darned if I can figure it out,
Basically I am trying to get the VisibleMapRect in the regionDidChangeAnimated call, but it appears as though this call ...
4
votes
2answers
4k views
iOS removing MKMapView overlays not working
I would like to remove all the overlays of my map at one point, and I tried different ways but it never works.
Last try I did [self.mapView removeOverlays:self.mapView.overlays]; and it still doesn't ...
2
votes
2answers
2k views
mapView not zooming on second try using didUpdateUserLocation
i am loading a mapviewcontroller when the view map button is pressed from my mainviewcontroller:
- (IBAction)mapButton:(id)sender {
MapKitDisplayViewController *mapKitDisplayView = ...
0
votes
1answer
175 views
Darken Map View when Annotation Clicked/Viewed
Is it possible to make the Mapview darken/decrease the alpha over a black background (similar to viewing images in a JS/CSS lightbox) when a annotation is clicked (which in turn shows a custom View ...
0
votes
1answer
1k views
Update mapview annotations every second with new coordinates Iphone
I know there are a few questions about this but i just cant seem to find any good answer to the question. What I am doing is fetching information from a db and collect the info into annotations on a ...
1
vote
1answer
556 views
MKMapView how to create insertAnnotationAtIndex
Due to performance reasons, I need to do a binary insert on my annotations list, but after I reached the part where I actually need to insert the annotation, I realized that my mapView is not the same ...
1
vote
1answer
1k views
Gesture Reocognizer on MKMapView - iPhone
I have a mapView, in my mapView you can zoom with double tap, pinch, UIButton (+ and -) and with an UISlider.
Now... I want recognize the doubletap and the pinch, to refresh the position of ...
0
votes
0answers
669 views
MapKit Setting region problem
Hey everyone, I'm trying to set a certain region on my MapView to show where the headquarters of a marine rescue station is, I will eventually try to add in some type on annotation. Right now, I'm ...
6
votes
4answers
1k views
MapKit exception: Cannot remove an observer for the key path “title”
I'm getting quite a lot of crashes like this.
In my code, I'm not doing any KVO on my MKAnnotation objects that could explain this exception. So to me, it looks like an iOS bug.
Did anybody else ...
0
votes
1answer
188 views
MapView snaps back to original location - help!
I have a mapView with custom annotations and just ran into a problem on a beta tester's iPhone. The mapView won't let the user move to any location.. as soon as you try to move, it snaps right back to ...
0
votes
1answer
124 views
Mapview lat lon co-ordinates - incompatible types in assignment
I have lat lon coordinates stored in a database table and I want to have them displayed in a mapview like this:
region.center.latitude = place.lat;
region.center.longitude = place.lon;
the lat and ...
2
votes
2answers
2k views
initializing the mapkit with a particular latitude and longitude Iphone
Iam making an iphone app, which should take in latitude and longitudes from an array and should locate and display the map with a customized annotation/pins. I have used the mapkit here's how:
...
1
vote
2answers
817 views
map view inside table view cell
i have another (probably unanswered) question about map views. I have a map view inside a table view cell and i want to disable the table view scrolling if the scrolling begins in the map view. Also ...
0
votes
1answer
2k views
iphone: Drawing over MKMapView?
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 ...