| Package | com.esri.bacore |
| Class | public class PointRecord |
| Inheritance | PointRecord Object |
| Implements | IJsonObject |
See also
| Property | Defined 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 | ||
| Method | Defined 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 | ||
| description | property |
description:StringPoint description string (optional). It is stored in the "DESCR" field of a geocoded point feature.
public function get description():String public function set description(value:String):void| latitude | property |
latitude:NumberLatitude coordinate. It is stored in the "Latitude" field of a geocoded point feature.
public function get latitude():Number public function set latitude(value:Number):void| longitude | property |
longitude:NumberLongitude coordinate. It is stored in the "Longitude" field of a geocoded point feature.
public function get longitude():Number public function set longitude(value:Number):void| name | property |
name:StringPoint name (optional). It is stored in the "NAME" field of a geocoded point feature.
public function get name():String public function set name(value:String):void| storeAddress | property |
storeAddress:StringStore 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.
public function get storeAddress():String public function set storeAddress(value:String):void| storeID | property |
storeID:StringID 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.
public function get storeID():String public function set storeID(value:String):void| 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.
Parametersname: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 |