Changes between Version 30 and Version 31 of HttpApi/RenderingService


Ignore:
Timestamp:
Apr 28, 2010, 2:29:39 PM (14 years ago)
Author:
trevorwekel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HttpApi/RenderingService

    v30 v31  
    345345== !QueryMapFeatures ==
    346346=== Overview ===
     347!QueryMapFeatures operation identifies features that meet the specified spatial selection criteria. These features can be persisted as selected features in a map.  !QueryMapFeatures returns an XML document describing the set of selected features.  If a single feature is selected, the XML contains the tooltip, hyperlink, and properties of the feature.
     348{{{
     349<?xml version="1.0" encoding="UTF-8"?>
     350<FeatureInformation>
     351  <FeatureSet>
     352    <Layer>
     353      <id></id>
     354      <Class>
     355        <id></id>
     356        <ID></ID>
     357      </Class>
     358    </Layer>
     359  </FeatureSet>
     360  <Tooltip>Some tooltip text</Tooltip>
     361  <Hyperlink>http://www.website.com</Hyperlink>
     362  <Property name="Owner" value="John Doe"/>
     363  <Property name="MarketAssessment" value="700000"/>
     364</FeatureInformation>
     365}}}
     366 
    347367=== Parameters ===
    348368|| '''Name''' || '''Value'''  || '''Required''' || '''Description''' ||
     
    378398 * 4 - Layer has a tooltip defined
    379399
    380 Combinations of one or more attributes
     400Combinations of one or more attributes are allowed.
    381401
    382402==== FEATUREFILTER Parameter ==== #FeatureFilter1.0
    383 XML filter describing a set of previously selected features.  This paramter is useful for obtaining the attribute values for a set of selected features.  The XML text can be retrieved from !MgSelection.!ToXml().
    384 
    385 === Usage ===
    386 === Technical Notes ===
     403XML filter describing a set of previously selected features.  This paramter is useful for obtaining the attribute values of a previously selected feature.  The XML text can be retrieved from !MgSelection.!ToXml().
     404
     405=== Usage ===
     406=== Technical Notes ===