class Api::V1::AddressSerializer < ActiveModel::Serializer
  include AddressHelper
  attributes :id, :full_address, :lat, :lng

  attribute :static_map_url do
    static_map_url(object, {width: 200, height: 150}) rescue nil
  end

end
