Link Search Menu Expand Document

GeoPoint Field

Table of contents

  1. Example Usage
  2. Allowed Attributes
    1. Default
    2. Required
    3. Custom Name

Example Usage

const {Model, Field, Fireo} = require("fireo");

class User extends Model{
    location = Field.GeoPoint();
}

const u = User.init();
u.location = Fireo.GeoPoint(123.23, 421.12);

Allowed Attributes

The following attributes supported by Boolean Field.

  1. default
  2. required
  3. name
  • Default

    Default value for field. This is base attribute that is available in all fields. Read More

  • Required

    Set true if value is required for the field. This is base attribute that is available in all fields. Read More

  • Custom Name

    Set different name in Firestore instead of field name. This is base attribute that is available in all fields. Read More


Copyright © 2019 FireO All rights reserved. Powered by OctaByte