geoJSONDictionary method

NSDictionary geoJSONDictionary()

Returns a dictionary that can be serialized as a GeoJSON Feature representation of an instance of an MLNFeature subclass.

The dictionary includes a geometry key corresponding to the receiver’s underlying geometry data, a properties key corresponding to the receiver’s attributes property, and an id key corresponding to the receiver’s ``identifier` property.

Implementation

objc.NSDictionary geoJSONDictionary() {
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_geoJSONDictionary);
  return objc.NSDictionary.castFromPointer(_ret, retain: true, release: true);
}