Packagecom.esri.bacore
Classpublic class PointRecord
InheritancePointRecord Inheritance Object
Implements IJsonObject

The PointRecord class specifies properties of a geographic point.

See also

PointLayer - Community Analyst
PointLayer - Business Analyst Server
CustomerStoreSetupByCoordinatesParameters


Public Properties
 PropertyDefined By
  description : String
Point description string (optional).
PointRecord
  latitude : Number
Latitude coordinate.
PointRecord
  longitude : Number
Longitude coordinate.
PointRecord
  name : String
Point name (optional).
PointRecord
  storeAddress : String
Store address (optional).
PointRecord
  storeID : String
ID of store associated with this point or ID of this point if this is the store point.
PointRecord
Public Methods
 MethodDefined By
  
PointRecord(name:String, description:String, storeID:String, latitude:Number = 0, longitude:Number = 0, storeAddress:String)
Creates a new instance of the PointRecord class.
PointRecord
Property Detail
descriptionproperty
description:String

Point description string (optional). It is stored in the "DESCR" field of a geocoded point feature.


Implementation
    public function get description():String
    public function set description(value:String):void
latitudeproperty 
latitude:Number

Latitude coordinate. It is stored in the "Latitude" field of a geocoded point feature.


Implementation
    public function get latitude():Number
    public function set latitude(value:Number):void
longitudeproperty 
longitude:Number

Longitude coordinate. It is stored in the "Longitude" field of a geocoded point feature.


Implementation
    public function get longitude():Number
    public function set longitude(value:Number):void
nameproperty 
name:String

Point name (optional). It is stored in the "NAME" field of a geocoded point feature.


Implementation
    public function get name():String
    public function set name(value:String):void
storeAddressproperty 
storeAddress:String

Store address (optional).

This property can specify a store address associated with this point. It is stored in the "STORE_ADDR" field of a geocoded point feature.

This property is available with Business Analyst Server.


Implementation
    public function get storeAddress():String
    public function set storeAddress(value:String):void
storeIDproperty 
storeID:String

ID of store associated with this point or ID of this point if this is the store point. It is stored in the "STORE_ID" field of a geocoded point feature.


Implementation
    public function get storeID():String
    public function set storeID(value:String):void
Constructor Detail
PointRecord()Constructor
public function PointRecord(name:String, description:String, storeID:String, latitude:Number = 0, longitude:Number = 0, storeAddress:String)

Creates a new instance of the PointRecord class.

Parameters
name:String — Point name. It is stored in the "NAME" field of a geocoded point feature.
 
description:String — Point description string. It is stored in the "DESCR" field of a geocoded point feature.
 
storeID:String — ID of store associated with this point or ID of this point if this is the store point. It is stored in the "STORE_ID" field of a geocoded point feature.
 
latitude:Number (default = 0) — Latitude coordinate. It is stored in the "Latitude" field of a geocoded point feature.
 
longitude:Number (default = 0) — Longitude coordinate. It is stored in the "Longitude" field of a geocoded point feature.
 
storeAddress:String