Skip to content
Snippets Groups Projects
geocoder.rb 1.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • require "geocoder/configuration"
    
    require "geocoder/query"
    
    require "geocoder/calculations"
    
    require "geocoder/exceptions"
    
    require "geocoder/cache"
    
    require "geocoder/request"
    
    require "geocoder/lookup"
    
    require "geocoder/models/active_record" if defined?(::ActiveRecord)
    require "geocoder/models/mongoid" if defined?(::Mongoid)
    require "geocoder/models/mongo_mapper" if defined?(::MongoMapper)
    
    module Geocoder
      extend self
    
      ##
    
    Alex Reisner's avatar
    Alex Reisner committed
      # Search for information about an address or a set of coordinates.
    
      def search(query, options = {})
        query = Geocoder::Query.new(query, options) unless query.is_a?(Geocoder::Query)
        query.blank? ? [] : query.execute
    
    Alex Reisner's avatar
    Alex Reisner committed
      # Look up the coordinates of the given street or IP address.
    
      def coordinates(address, options = {})
        if (results = search(address, options)).size > 0
    
          results.first.coordinates
    
      # Look up the address of the given coordinates ([lat,lon])
      # or IP address (string).
    
      def address(query, options = {})
        if (results = search(query, options)).size > 0
    
          results.first.address
    
      ##
      # The working Cache object, or +nil+ if none configured.
      #
      def cache
        if @cache.nil? and store = Configuration.cache
          @cache = Cache.new(store, Configuration.cache_prefix)
        end
        @cache
      end
    
    # load Railtie if Rails exists
    if defined?(Rails)
      require "geocoder/railtie"
      Geocoder::Railtie.insert
    end