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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:38:32+00:00 2026-05-30T20:38:32+00:00

I am looking at using the gem google maps for rails but cant see

  • 0

I am looking at using the gem google maps for rails but cant see how I can use delayed_job to get the cords after creating a new record.

Has anyone come across this gem before with using delayed_job

Hope someone can advise.

  • 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-30T20:38:33+00:00Added an answer on May 30, 2026 at 8:38 pm

    Alright, I’m not sure how much you know about Delayed Job, so I’ll start there.

    Delayed job can utilize any class that responds to ‘#perform’, so the first thing you need is a class for getting the coordinates and storing them in your model.

    class GoogleMapsCoordinateService
    
      def perform(record)
        coords = Gmaps4rails.geocode(record.address) #This is the method that will actually return a hash of coordinates for each match it finds.
    
        record.update_attributes(:lattitude => coords[0][:lat], :longitude => coords[0][:lng])
      end
    end
    

    Then you just need to enqueue that job in an after_create hook in the model

    class INSERTYOURMODELNAMEHERE < ActiveRecord::Base
    
      after_create :get_coordinates
    
      def get_coordinates
        Delayed::Job.enqueue GoogleMapsCoordinateService.new(self)
      end
    end
    

    So that way, after each record is created, you will queue up the grabbing of the coordinates in the background while keeping your response time snappy.

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

Sidebar

Related Questions

I'm looking to use the latest Twitter gem for a Rails app I'm working
I'm using the Rails gem SimpleForm, but I think my question may be applicable
I can't tell why bundler is looking for actionpack-1.4.0.gem, but it is causing my
I'm looking at using ASP.NET for a new SaaS service, but for the love
I'm currently looking into automating a flex build so that we can get it
I am a Rails Newbie. I am using fb_graph gem to extract information. Rails
I'm using Ruby 1.9 and Rails 2.3.4 with Paperclip gem to save attachments. and
I'm very much interested in the acts_as_commentable gem, but by looking at it I
I'm using Tweetstream gem to monitor a single twitter userstream and am looking to
Can I ask ruby or rubygems to use the latest gem regardless of its

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.