How-to add Identify¶
If you would like to have your map users to be able to get information
on specific features using the Identify tool, you must: * ensure the
<map-source> type is one of: wms, ags (using query-as), mapserver, wfs,
mapserver-wfs, or ags-vector * add an identify template to the
layer in the <map-source> (see below) * have the user display the
layer in the Catalog
Add a <template name="identify"> to the <layer ...>. An easy way
to do this is to add <template name="identify" auto="true" />. For
example, to add identify to the desktop demo’s “borders”
<map-source> (titled “City and County Boundaries” in the Catalog),
change the <map-source> to be:
<map-source name="borders" type="mapserver" title="City and County Borders">
<file>./demo/statedata/basemap.map</file>
<layer name="city_poly" status="off"/>
<layer name="county_borders" status="on">
<template name="identify" auto="true" />
</layer>
</map-source>
When the user turns on the layer in the Catalog, clicks Identify, then clicks inside a county polygon, the details for that polygon will be shown in the Super Tab, something like:
City and County Borders
boundedBy: -10443124.4532125805088.070692-10358662.5561045947016.049725
AREA: 5163166424.00009
PERIMETER: 309931.11344
COUNTY: 84
COUNTY_ID: 21
COUNTY_NUM: 1
COUNTYNAME: Aitkin
COUNTYFIPS: 001
FIPS: 27001
Since the template you just added has auto="true", GeoMoose renders
all the feature’s properties names and values (including the calculated
“boundedBy” bounding box for the feature). The above result is not very
pretty, but fortunately you can customize the look of the result by
writing a custom template for the data. Instead of an “auto” generated
template, change the template to be:
<layer name="county_borders" status="on">
<template name="identify"><![CDATA[
<div>
<div class="feature-class county_borders">
County
</div>
<div class="item">
<label>Name:</label>{{properties.COUNTYNAME}}
</div>
</div>
]]>
</template>
</layer>
In the example above, there are a few things to note: * Customizing the
look of the results is done using HTML syntax * GeoMoose substitutes
values for references it knows about when encounters {{ }} *
Referencing the feature’s value is done using properties.COUNTYNAME,
where the properties part is from the GeoJSON format of the query
results (so that is common to evert identify template), and the
COUNTYNAME is the case-sensitive attribute name specific to the
layer
Because the template is HTML (and will be interpreted by the browser), you can do things like adding a link based on a feature’s values:
<layer name="county_borders" status="on">
<template name="identify"><![CDATA[
<div>
<div class="feature-class county_borders">
County
</div>
<div class="item">
<label>Name:</label>
<a href="http://www.census.gov/quickfacts/table/PST045215/{{properties.FIPS}},{{properties.COUNTYFIPS}}" target="_blank">
{{properties.COUNTYNAME}}
</a>
</div>
</div>
]]>
</template>
</layer>
And since it is interpreted by the browser, it can even contain JavaScript:
<template name="identify"><![CDATA[
<div>
<div class="feature-class county_borders">
County
</div>
<div class="item">
<label>Name:</label>
<a href=""
onClick="window.open( 'http://www.census.gov/quickfacts/table/PST045215/{{properties.FIPS}},{{properties.COUNTYFIPS}}', 'Details','width=600,height=1000' ); return false"
target="_blank">
{{properties.COUNTYNAME}}</a>
</div>
</div>
]]>
</template>
The Firestations layer¶
This section references the firestations source and
fire_stations layer. For more information on setting those up in
your local demo, read the How-to add a layer
guide.
Adding identify to Firestations¶
WMS has the GetFeatureInfo request which GeoMoose will use to fetch feature data.
GeoMoose will also use WFS and AGS FeatureServer for identify if a
<map-source>is configured withwfs,mapserver-wfs, orags-vector.For a layer to work with identify it needs to have a
<template>namedidentifyIn the
mapbook.xmlfile update thefirestations<map-source>definition:
<map-source name="firestations" type="mapserver">
<file>./demo/firestations/firestations.map</file>
<layer name="fire_stations">
<template name="identify"><![CDATA[
<div class="result-item">
<div class="result-title">
Firestation
</div>
<b>Station City:</b> {{ properties.Dak_GIS__4 }}<br>
<b>Station Number:</b> {{ properties.Dak_GIS__5 }}<br>
</div>
]]></template>
</layer>
</map-source>
This example uses GeoMoose’s template system. GeoMoose has a rich template system provided by Mark.up. More information on GeoMoose templates here.
Adding identify to Raster Data¶
Identify can also be set up for raster data. For example, if you have DEM, you can set it up to allow users to identify elevation.
This example assumes you’re connecting to a GeoTiff in a mapfile. Optionally,
you can also connect via WMS, either in a mapfile, or in the mapbook.xml.
See below for an example configuration of the mapfile. Note that the
TEMPLATE 'dummy' and the ows/gml_include_items 'all' lines are necessary
for results to be returned. TOLERANCE 0 is also needed to prevent too
many results from being returned.
LAYER
NAME "ExampleDEM"
DATA "./pathToDEM.tif"
STATUS ON
TYPE RASTER
PROJECTION
"init=epsg:3857"
END
METADATA
'wms_title' 'Example_DEM'
'ows_include_items' 'all'
'gml_include_items' 'all'
'ows_exclude_items' 'SHAPE_area,SHAPE_len'
'gml_exclude_items' 'SHAPE_area,SHAPE_len'
END
TOLERANCE 0
TOLERANCEUNITS METERS
TEMPLATE 'dummy'
END
Once the mapfile is configured you can connect to the data in the mapbook.xml. Make sure
to adjust the mapfile and layer names to match your mapfile. You will also need to change the
field name value to match the value in your DEM. You can use template name="identify" auto="true"/>
to automatically generate the template.
<map-source name="DEM_Identify" type="mapserver">
<file>./pathToDEMMapfile</file>
<layer name="ExampleDEM" status="on">
<template name="identify"><![CDATA[
<div class="identify-result">
<div class="item"><label>Elevation:</label>{{ properties.DEMFieldName|fix>1 }}</div>
</div>
]]></template>
</layer>
<param name="FORMAT" value="image/png"/>
<param name="TRANSPARENT" value="TRUE"/>
<param name="cross-origin" value="anonymous"/>
</map-source>
Optionally, you can also connect to a WMS instead of a mapfile. The main things to be aware of when connecting via WMS are making sure that the WMS is configured to allow identify, and making sure that the WMS is configured to allow connections from other servers (i.e. Cross-origin-resource-sharing or CORS).
<map-source name="DEM_Identify" type="wms">
<url>https://location/of/DEM?</url>
<layer name="ExampleDEM" status="on">
<template name="identify"><![CDATA[
<div class="identify-result">
<div class="item"><label>Elevation:</label>{{ properties.item name=value_0|fix>1 }}</div>
</div>
]]></template>
</layer>
<param name="FORMAT" value="image/png"/>
<param name="TRANSPARENT" value="TRUE"/>
<param name="cross-origin" value="anonymous"/>
</map-source>