Changes between Initial Version and Version 1 of Cookbook/Map/Query


Ignore:
Timestamp:
Jun 6, 2008, 4:18:28 AM (16 years ago)
Author:
pagameba
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cookbook/Map/Query

    v1 v1  
     1= Using Map.query() =
     2
     3Fusion contains several widgets that allow the user to interactively select features in your map, but it is also possible to programmatically select features as well.  This can be done in a couple of ways:
     4
     5 * writing some server-side code that performs the query, or
     6 * using the {{{ query() }}} method of the Map widget.
     7
     8In this recipe, we'll look specifically at using the client side Map.query() method.
     9
     10Map.query( options )
     11
     12The options parameter to Map.query is an object that contains some of the following attributes:
     13
     14 * persistent
     15 * geometry
     16 * maxFeatures
     17 * layers
     18 * selectionType
     19 * filter
     20 * extendSelection
     21 * computedProperties
     22 *