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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:00:17+00:00 2026-05-26T22:00:17+00:00

My client / has asked me to set the opacity (alpha) for various different

  • 0

My client / has asked me to set the opacity (alpha) for various different Placemarks found on the MKMapView depending on what the date was.

For the oldest half of the place marks, he would like the opacity to be set to 0.5.

I can do this by working out the index of the place mark and checking to see whether it is in the last half of the array.

int indexOfPlacemark = [fixes indexOfObject:fix]; //fixes is the array of Placemarks (named fix).
    
if (index <= [fixes count] / 2) {
    [annotationView setAlpha:0.5];
}

else {
    // do something with fix.date to work out the opacity.
    // an example of the date is Sun, May 15, 2011 - 12:00:44
}

But then he wants me to raise the opacity for every other place mark depending on its date. I.e the latest date will have an opacity of 1.0, and the oldest date in the first half of the array will be ~0.5.

What I would like to know is how I can work out the opacity depending on its date.

  • 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-26T22:00:18+00:00Added an answer on May 26, 2026 at 10:00 pm

    First you should get the time elapsed between the oldest date and the latest date:

    NSTimeInterval maxTimeElapsed = [latestDate timeIntervalSinceDate:oldestDate];
    

    Then, for each of the placemarks, you should do the following:

    NSTimeInterval timeElapsed = [oldestDate timeIntervalSinceDate:fix.date];
    [annotationView setAlpha:1 - ((maxTimeElapsed - timeElapsed) / maxTimeElapsed) / 2];
    

    This way, with the older dates, timeElapsed would be closer to 0, resulting in alphas closer to 0.5. And with newer dates, timeElapsed would be closer to maxTimeElapsed, making alpha closer to 1 (and alpha = 1 with the latest date).

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

Sidebar

Related Questions

My client has asked me to set the opacity (alpha) for various different MKPlacemarks
The client has asked for a number of tables to be extracted into csv's,
A client has asked for a page loader, something attractive to let the visitor
Having sorted out an issue with clickonce deployment the client has asked whether we
We are making a lab instrument using an ARM9/RTOS system. The client has asked
A client of mine has asked me to integrate a 3rd party API into
Client has asked that a whole div is dragable, the div contains some text
My client has asked me to implement GA ecommerce code in their ecommerce website.
A client has asked for additional security for a web app which would allow
A client has asked me to make their YouTube channel look similar this one:

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.