Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7878471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:40:13+00:00 2026-06-03T03:40:13+00:00

Im just getting into MapViews on iOS, and want to show a car continuously

  • 0

Im just getting into MapViews on iOS, and want to show a car continuously moving as a blue dot. Would this be considered a map annotation?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T03:40:14+00:00Added an answer on June 3, 2026 at 3:40 am

    Yes. As an example check out the in Simulator Debug > Location > City Bike Ride . It does a slow loop round San Francisco(?)

    To listen to updates implement in your Mapview delegate

    - (void)mapView:(MKMapView *)amapView didUpdateUserLocation:(MKUserLocation *)userLocation
    {
        NSLog(@"im here! - %f,%f",userLocation.location.coordinate.latitude,userLocation.location.coordinate.longitude); 
    
    
    }
    

    and to adjust the annotation implement

    - (MKAnnotationView *) mapView:(MKMapView *)amapView viewForAnnotation:(id <MKAnnotation>) annotation{
    
        if ([annotation isKindOfClass:[MKUserLocation class]]) {
            return nil;
        }
        NSLog(@"annotation = %@",((NSObject *)annotation));
        MKAnnotationView *annView;
    
        annView = [amapView dequeueReusableAnnotationViewWithIdentifier:@"currentloc"];
    
        if(!annView)
        {
            annView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"] autorelease];
            ((MKPinAnnotationView *)annView).pinColor = MKPinAnnotationColorGreen;
            ((MKPinAnnotationView *)annView).animatesDrop=TRUE;
            annView.canShowCallout = YES;
            annView.calloutOffset = CGPointMake(-5, 5);
            annView.draggable = YES;
        }
        return annView;
    }
    

    The snip I have put in just goes with the default blue dot with accuracy circle by returning nil for MKUserLocation but your implementation may be different.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just getting into the NoSQL stuff so forgive me if this is a simple
I am just getting into adding Facebook opengraph into my app. I want to
I'm just getting into learning about sessions, and for my purposes, I want to
I'm just getting into C#, so forgive me if this is a basic question.
I've been getting into mapkit and corelocation for ios. I'm just trying to display
I'm just getting into desktop Cocoa development (I have experience with iOS development). If
Just getting into jquery. This problem only occurs in IE 8, its fine in
I'm just getting into helicon , so forgive me if this is a basic
I'm just getting into this whole node.js business and like it so far; however
Just getting into SQL stored queries right now... anyway, here's my database schema (simplified

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.