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 6622999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:28:49+00:00 2026-05-25T21:28:49+00:00

1.) I need to have a blue ball circle/location dot on a map as

  • 0

1.) I need to have a blue ball circle/location dot on a map as shown below.

  • What is it called?
  • How can I implement it?

enter image description here

2.) How do I get the arrow on the pop-up screen as below?
enter image description here

  • 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-05-25T21:28:50+00:00Added an answer on May 25, 2026 at 9:28 pm

    I think what you’re after is the MKMapView; if so you just need to add it in interface builder and there is an option (checkbox) in the Attributes Inspector panel that allows you to ‘Shows users location’. By checking that box it will make the blue dot appear on the map (if you’re using the iPhone Simulator it will only show up as Cupertio).

    Theres lots of simple tutorials on getting started with map views for iPhone. Here is a pretty good one. If you don’t like it then I suggest you Google ‘MkMapView tutorials’ and you should find plenty of useful information.

    In order to get the location of the user (latitude & longitude) you will need to do a few things:

    1) Make sure you’ve imported the CoreLocation framework (CoreLocation.framework)

    2) You need add the following to your .h file:

    #import <CoreLocation/CoreLocation.h>
    
    @interface exampleViewController : UIViewController <CLLocationManagerDelegate>
    {
        CLLocationManager *locationManager;
    }
    
    @property(nonatomic, retain)CLLocationManager *locationManager;
    

    3) You need to add the following to your .m file (wherever is appropriate for your app)

    This part will create an instance of the CLLocationManager:

     self.locationManager = [[CLLocationManager alloc] init];
     locationManager.delegate = self;
     locationManager.desiredAccuracy = kCLLocationAccuracyBest;
     [locationManager startUpdatingLocation];
    

    You can then get the current latitude & longitude using the delegate method:

    - (void)locationManager:(CLLocationManager *)manager 
        didUpdateToLocation:(CLLocation *)newLocation 
               fromLocation:(CLLocation *)oldLocation
    {
        NSLog(@"New latitude: %f", newLocation.coordinate.latitude);
        NSLog(@"New longitude: %f", newLocation.coordinate.longitude);
    }
    

    You should also look at this existing question and this one too, I think it should help you with the second part of your question.

    Hope this helps.

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

Sidebar

Related Questions

I don't need ribbons but I would like to have the blue/orange style. Currently
I have plotted a contour map but i need to make some improvements. This
I have filled splitcontainer. legend for image: SplitContainer ListViews Spliter Need: blue lines show
I have the following URL structure which I need to match to and get
We have this map, we need to use PHP to take all the shades
I have a complex Dot in WPF which I need to customize the diameter.
I have a path like this one: C:\Development.TFS\Examn\R4-branch\Web\OrganisationManager\themes\blue\css And I need a regex to
We have need for a rating system in a project we are working on,
I have need to select a number of 'master' rows from a table, also
I have the following need I have a logging table which logs som leads

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.