Sha256: e6b6c6dd674c193adf66e00a06c1f2a8adaa0e2352a3419e5953d11161447c29
Contents?: true
Size: 1.7 KB
Versions: 7
Compression:
Stored size: 1.7 KB
Contents
module Mappable include Geokit::Geocoders def self.included(base) base.class_eval { before_validation :geocode_location } end def geocode "#{lat},#{lng}" if geocoded end def geocoded true if lat && lng end def geocode_basis geocodable_columns.map{ |f| send(f) }.find{|v| !v.blank?} end def geocodable_columns [:postcode, :location, :address] end def url if url = read_attribute(:url) && !url.blank? url elsif geocoded format = Radiant::Config['event_map.link_format'] format = 'google' if format.blank? case format when 'bing' "http://www.bing.com/maps/?v=2&cp=#{lat}~#{lng}&rtp=~pos.#{lat}_#{lng}_#{title}&lvl=15&sty=s&eo=0" when 'google' "http://maps.google.com/maps?q=#{lat}+#{lng}+(#{title})" when String interpolations = %w{lat lng title} interpolations.inject( format.dup ) do |result, tag| result.gsub(/:#{tag}/) { send( tag ) } end end end end private def geocode_location unless geocode_basis.blank? || ENV['RAILS_ENV'] == 'test' if geocode_basis.is_gridref? && gr = GridRef.new(geocode_basis, :datum => :wgs84, :accuracy => 8) # for gps and site compatibility wgs84 is better than osgb36 self.lat = gr.lat self.lng = gr.lng puts "new lat/lng: #{self.lat}/#{self.lng}" else bias = Radiant::Config['event_map.zone'] || 'uk' geo = Geokit::Geocoders::MultiGeocoder.geocode(location, :bias => bias) errors.add(:postcode, "Could not Geocode location: please specify here") if !geo.success self.lat, self.lng = geo.lat, geo.lng if geo.success end end end end
Version data entries
7 entries across 7 versions & 1 rubygems