hhba/mapa76-core

View on GitHub
lib/mapa76/core/model/address_entity.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddressEntity < NamedEntity
  field :lat, :type => Float
  field :lng, :type => Float

  def geocoded?
    self.lat and self.lng
  end
end