NSDictionary(SGGeoJSONObject) |
Ease the pain of accessing SimpleGeo GeoJSON values.
Extends Class: NSDictionary
Declared In: GeoJSON+NSDictionary.h
Returns the GeoJSONObject associated with the key coordinates. 
Returns the value associated with the key created.
Returns the value associated with the key expires
Returns the GeoJSONObject associated with the key features.
Returns the GeoJSONObject associated with the key at geometry. 
Returns the value associated with the key id.
Determines whether this GeoJSON object is a feature.
Determines whether this GeoJSON object is a collection of features.
Determines whether this GeoJSON object is a point. 
Use this URL string to obtain information about the layer this GeoJSON object resides in.
Returns the GeoJSONObject associated with the key properties.
The URL used to retrieve information about this GeoJSON object.
Retrieves the type value for this GeoJSONObject. 
coordinates |
Returns the GeoJSONObject associated with the key coordinates. 
- (NSArray*) coordinates;
The coordinates GeoJSONObject.
created |
Returns the value associated with the key created.
- (double) created;
The created value.
This is a value specific to SimpleGeo. The GeoJSON spec (http://geojson.org/geojson-spec.html) allows key/values to be defined at the top-level of the object.
expires |
Returns the value associated with the key expires
- (double) expires;
The expires value.
This is a value specific to SimpleGeo. The GeoJSON spec (http://geojson.org/geojson-spec.html) allows key/values to be defined at the top-level of the object.
features |
Returns the GeoJSONObject associated with the key features.
- (NSArray*) features;
The features GeoJSONObject.
geometry |
Returns the GeoJSONObject associated with the key at geometry. 
- (NSDictionary*) geometry;
The geometry GeoJSONObject.
id |
Returns the value associated with the key id.
- (NSString*) id;
The id value.
This is a value specific to SimpleGeo. The GeoJSON spec (http://geojson.org/geojson-spec.html) allows key/values to be defined at the top-level of the object.
isFeature |
Determines whether this GeoJSON object is a feature.
- (BOOL) isFeature;
YES if the object is a feature; otherwise NO.
isFeatureCollection |
Determines whether this GeoJSON object is a collection of features.
- (BOOL) isFeatureCollection;
YES if the object is a collection of features; otherwise NO.
isPoint |
Determines whether this GeoJSON object is a point. 
- (BOOL) isPoint;
YES if the object is a point; otherwise NO.
layerLink |
Use this URL string to obtain information about the layer this GeoJSON object resides in.
- (NSString*) layerLink;
The URL string of this object's layer.
properties |
Returns the GeoJSONObject associated with the key properties.
- (NSDictionary*) properties;
The properties GeoJSONObject.
selfLink |
The URL used to retrieve information about this GeoJSON object.
- (NSString*) selfLink;
A URL string. 
type |
Retrieves the type value for this GeoJSONObject. 
- (NSString*) type;
The type value for the object.
© SimpleGeo Last Updated: 03/31/2010