Changes between Version 10 and Version 11 of MapGuideRfc15
- Timestamp:
- 03/29/07 15:47:02 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc15
v10 v11 49 49 CREFSTRING featureFilter, 50 50 INT32 maxFeatures, 51 bool bIgnoreScaleRange); 51 bool bIgnoreScaleRange, 52 bool bIgnoreSelectability); 52 53 53 54 MgBatchPropertyCollection* QueryFeatureProperties(MgMap* map, … … 57 58 CREFSTRING featureFilter, 58 59 INT32 maxFeatures, 59 bool bIgnoreScaleRange); 60 bool bIgnoreScaleRange, 61 bool bIgnoreSelectability); 60 62 }}} 61 63 … … 70 72 IGNORESCALE=1 71 73 * With the value of 1 this operation will allow querying of data regardless of visibility at the current map scale. 74 75 IGNORESELECTABILITY=0 76 * With the value of 0 this operation behaves exactly as the original QUERYMAPFEATURES operation. 77 78 IGNORESELECTABILITY=1 79 * With the value of 1 this operation will allow querying of data regardless of whether or not the features on the layer are selectable. 80 72 81 73 82 FEATUREFILTER=<XML Selection String> … … 117 126 2) Added the FEATUREFILTER parameter to the HTTP QUERYMAPFEATURES request. 118 127 128 == Addendum 3 == 119 129 130 1) Added the additional bIgnoreSelectability parameter to Server APIs. 120 131 132 2) Added the IGNORESELECTABILITY parameter to the HTTP QUERYMAPFEATURES request. 133 134 The QUERYMAPFEATURES request is used to retrieve information used to generate tooltips in the AJAX viewer. The viewer will specify IGNORESELECTABILITY=1 so that tooltips can be displayed even for features that are not selectable.