resultGeometryListController.js

Summary
resultGeometryListController.js
Functions
addFeatureDescription: adds a Feature to the Model Parameters: feature - a geoJSON featuree
addFeatureCollectionDescription: adds a FeatureCollection to the Model Parameters: geoJSON - a geoJSON featureCollection
addFeatureCollection_callbackDescription: The callback received from the Model upon successfully adding a Feature Parameters: featureEntryCollection - an array of (index,featureCollection) tuples
addRowButtonDescription: adds a Button to each row Parameters: buttondef: {Object} an object with properties: “title” and “callback”, a function that gets the feature that corresponds to the popup as it’s argument

Functions

addFeature

this.addFeature = function(feature)

Description: adds a Feature to the Model Parameters: feature - a geoJSON featuree

addFeatureCollection

this.addFeatureCollection = function(geoJSON)

Description: adds a FeatureCollection to the Model Parameters: geoJSON - a geoJSON featureCollection

addFeatureCollection_callback

var addFeatureCollection_callback = function(featureEntryCollection)

Description: The callback received from the Model upon successfully adding a Feature Parameters: featureEntryCollection - an array of (index,featureCollection) tuples

addRowButton

this.addRowButton = function(buttondef)

Description: adds a Button to each row Parameters: buttondef: {Object} an object with properties: “title” and “callback”, a function that gets the feature that corresponds to the popup as it’s argument

this.addFeature = function(feature)
Description: adds a Feature to the Model Parameters: feature - a geoJSON featuree
this.addFeatureCollection = function(geoJSON)
Description: adds a FeatureCollection to the Model Parameters: geoJSON - a geoJSON featureCollection
var addFeatureCollection_callback = function(featureEntryCollection)
Description: The callback received from the Model upon successfully adding a Feature Parameters: featureEntryCollection - an array of (index,featureCollection) tuples
this.addRowButton = function(buttondef)
Description: adds a Button to each row Parameters: buttondef: {Object} an object with properties: “title” and “callback”, a function that gets the feature that corresponds to the popup as it’s argument
Close