|
Home | Docs | Issue Tracker | FAQ | Download |
|
|
| Author: | Frank Koormann |
|---|---|
| Contact: | frank.koormann at intevation.de |
| Author: | Jeff McKenna |
| Contact: | jmckenna at gatewaygeomatics.com |
| Revision: | $Revision: 8278 $ |
| Date: | $Date: 2008-12-23 22:34:31 +0100 (Di, 23. Dez 2008) $ |
| Last Updated: | 2008/07/18 |
Table of Contents
Templates werden benutzt für:
Templates liefern die Abfrageergebnisse, entweder eine Suche oder eine Karte, an den Benutzer. Templates sind fast immer HTML Dateien, sie können aber auch als URL definiert werden (z.B. http://www.somewhere.com/[ATTRIBUTE]/info.html). URL Templates können nur mit Ergebnissen von QUERY oder ITEMRESULT benutzt werden, deshalb sind viele der unten aufgeführten Ersetzungen hierfür nicht verfügbar. Einfache Verschiebe-/Zoom-Oberflächen bestehen aus einem einzelnen Template, während komplexere Abfragen oftmals mehrere Templates erfordern. Template benutzen oftmals JavaScript um die Funktionalität zu erweitern.
Alle CGI parameters können im Template benutzt werden. Dies gilt für MapServer spezifische als auch benutzerdefinierte Parameter. Vereinfacht gesagt werden alle Parameter vom MapServer 1:1 weitergereicht. Dadurch wird die Erstellung von MapServer Anwendungen ermöglicht.
Die hier aufgeführte Refenrenz listet nur Substitutionen auf, die vom MapServer modifiziert werden um bestimmte Informationen zu erhalten, z.B. ein neuer Maßstab, Abfrageergebnisse, etc.
Template Substitutionen sind abhängig von Groß-/Kleinschreibung.
Attributnamen müssen die gleiche Schreibweise wie in der dbase Datei haben.
ArcView und ArcInfo verwenden bei der Erzeugung von dbase Dateien für Attributnamen Großschreibung. Für URL Templates wird eine Maskierung benutzt (z.B. ‘ ‘ wird zu ‘+’).
Einige Ersetzungen sind auch maskiert verfügbar (z.B. URL Maskiert).
Dies wird zum Beispiel benutzt wenn Links in einem Template erzeugt werden sollen. Hier wird die Kartenabgrenzung an den MapServer Aufruf weitergegeben. [mapext] wird durch die Koordinaten der linken unteren und rechten oberen Ecke ersetzt, getrennt durch Leerzeichen. Diese wären in einer URL ungültig. Hingegen wird [mapext_esc] entsprechend maskiert.
Templates sind einfache HTML Dateien oder URLs, bestehend aus bestimmten Zeichen die durch mapserv bei jeder Verarbeitung der Template Datei ersetzt werden. Eine einfache Substitution erlaubt das Weitereichen von Informationen wie aktive Layer oder die räumliche Ausdehnung vom Anwender zu mapserv und wieder zurück. Oftmals werden neue Werte in Formularvariablen geschrieben, die weitergereicht werden. Eine Liste der zu verwendenden Zeichen und Formularvariablen wird hier zur Verfügung gestellt. HTML Templates können alles enthalten, einschließlich JavaScript und Java-Aufrufe.
In HTML Dateien können die Attributwerte in Anführungszeichen gesetzt werden. Dies erlaubt die Verwendung von Zeichen die sonst nicht benutzt werden könnten (z.B. ],=,” und Leerzeichen). Um ein einfaches Anführungszeichen zu schreiben, werden zwei doppelte Anführungszeichen geschrieben.
Der Inhalt der an MapServer weitergereichten Variablen, egal ob sie benutzt werden oder nicht, kann hiermit ausgegeben werden. Eine mögliche Anwendung ist das interaktive Setzen von Elementen wie z.B. Kartentitel oder Nordpfeil. Die Variablenwerte sind wichtig für die Ausgabe, d.h. wenn ein CGI Parameter mit myvalue=... definiert wird, so kann auf diesen im Template mittels [myvalue] zugegriffen werden.
Auch als maskierte Version verfügbar.
Zugriff auf Metadaten des WEB Objektes (z.B. [web_projection]).
Auch als maskierte Version verfügbar.
Aktuelle Fehlerausgabe. Verschiedene Fehlermeldungen werden durch Semikolon getrennt.
Auch als maskierte Version verfügbar.
Pfad (relativ zum Document-Root) des erzeugten Bildes. Liefert nur den Bildnamen wenn IMAGE_URL in der Mapdatei nicht gesetzt wurde.
In einem Interface-Template wird [img] durch den Pfad zum Kartenbild ersetzt. Bei einem Abfragetemplate hingegen wird [img] durch den Pfad zum Bild des Abfrageergebnisses ersetzt. (falls ein QUERYMAP Objekt im Mapfile definiert ist).
Pfad (relativ zum Document-Root) des erzeugten Legendenbildes.
Wird im Mapfile ein HTML Legenden-Template definiert, so wird die dadurch erzeugte Ausgabe für [legend] eingesetzt. Siehe auch HTML Legends with MapServer.
[mapsize], [mapsize_esc]
Current image size in cols and rows (separated by spaces).
Also available as escaped version.
Full mapextent (separated by spaces).
Also available as escaped version. (mapext_esc is deprecated in MapServer 5.2. You should use the “escape=” argument instead)
The default template [mapext] returns coordinates in the format of: mixx miny maxx maxy
Available arguments:
Escape the coordinates returned. Default is “none”. Valid values are:
Use URL escape codes to encode the coordinates returned.
Do not escape.
Expand the bounds of the extents by a specific value. Specified in map coordinates. For example, [mapext] might return:
123456 123456 567890 567890
and [mapext expand=1000] would therefore return:
122456 122456 568890 568890
Format of the coordinates. Default is “$minx $miny $maxx $maxy”. For example, to add commas to the coordinates you would use:
[mapext format="$minx,$miny,$maxx,$maxy"]
The number of decimal places to output for coordinates (default is 0).
The differences of minimum / maximum X or Y coordinate of new map extent.
Useful for creating cachable extents (i.e. 0 0 dx dy) with legends and scalebars
Raw mapextent, that is the extent before fitting to a window size (separated by spaces). In cases where input came from imgbox (via Java or whatever) rawext refers to imgbox coordinates transformed to map units. Useful for spatial query building.
Also available as escaped version. (rawext_esc is deprecated in MapServer 5.2. You should use the “escape=” argument instead)
The default template [rawext] returns coordinates in the format of: mixx miny maxx maxy
Available arguments:
Escape the coordinates returned. Default is “none”. Valid values are:
Use URL escape codes to encode the coordinates returned.
Do not escape.
Expand the bounds of the extents by a specific value. Specified in map coordinates. For example, [rawext] might return:
123456 123456 567890 567890
and [rawext expand=1000] would therefore return:
122456 122456 568890 568890
Format of the coordinates. Default is “$minx $miny $maxx $maxy”. For example, to add commas to the coordinates you would use:
[rawext format="$minx,$miny,$maxx,$maxy"]
The number of decimal places to output for coordinates (default is 0).
The following substitutions are only available if the MapServer was compiled with PROJ support and a PROJECTION is defined in the Mapfile.
Full mapextent (separated by spaces). Available only when projection enabled.
Also available as escaped version. (mapext_latlon_esc is deprecated in MapServer 5.2. You should use the “escape=” argument instead)
The default template [mapext_latlon] returns coordinates in the format of: mixx miny maxx maxy
Available arguments:
Escape the coordinates returned. Default is “none”. Valid values are:
Use URL escape codes to encode the coordinates returned.
Do not escape.
Expand the bounds of the extents by a specific value. Specified in map coordinates. For example, [mapext_latlon] might return:
123456 123456 567890 567890
and [mapext_latlon expand=1000] would therefore return:
122456 122456 568890 568890
Format of the coordinates. Default is “$minx $miny $maxx $maxy”. For example, to add commas to the coordinates you would use:
[mapext_latlon format="$minx,$miny,$maxx,$maxy"]
The number of decimal places to output for coordinates (default is 0).
Reference map extent (separated by spaces).
This template has been added with version 4.6 on behalf of an enhancement request. See the thread in the MapServer ticket#1102 for potential use cases.
Also available as escaped version. (refext_esc is deprecated in MapServer 5.2. You should use the “escape=” argument instead)
The default template [refext] returns coordinates in the format of: mixx miny maxx maxy
Available arguments:
Escape the coordinates returned. Default is “none”. Valid values are:
Use URL escape codes to encode the coordinates returned.
Do not escape.
expand=
Expand the bounds of the extents by a specific value. Specified in map coordinates. For example, [refext] might return:
123456 123456 567890 567890and [refext expand=1000] would therefore return:
122456 122456 568890 568890
Format of the coordinates. Default is “$minx $miny $maxx $maxy”. For example, to add commas to the coordinates you would use:
[refwext format="$minx,$miny,$maxx,$maxy"]
The number of decimal places to output for coordinates (default is 0).
All active layers space delimited. Used for a “POST” request.
Also available as escaped version.
List of all layers that can be toggled, i.e. all layers defined in the Mapfile which status is currently not default.
Also available as escaped version.
Used for making the zoom factor persistent. Zoom values can range from -25 to 25 by default. The string is replaced with the HTML keyword “checked”, “selected” or “” depending on the current zoom value.
E.g. if the zoom is 12, a [zoom_12_select] is replaced with “selected”, while a [zoom_13_select] in the same HTML template file is not.
The following substitutions are only available when the template is processed as a result of a query.
Extent of current shape plus a 5 percent buffer. Available only when processing query results.
The default template [shpext] returns coordinates in the format of: mixx miny maxx maxy
Available arguments:
Escape the coordinates returned. Default is “none”. Valid values are:
Use URL escape codes to encode the coordinates returned.
Do not escape.
Expand the bounds of the extents by a specific value. Specified in map coordinates. For example, [shpext] might return:
123456 123456 567890 567890
and [shpext expand=1000] would therefore return:
122456 122456 568890 568890
Format of the coordinates. Default is “$minx $miny $maxx $maxy”. For example, to add commas to the coordinates you would use:
[shpext format="$minx,$miny,$maxx,$maxy"]
The number of decimal places to output for coordinates (default is 0).
The list of shape coordinates, with list formatting options, especially useful for SVG.
The default template [shpxy] returns a comma separated list of space delimited of coordinates (i.e. x1 y1, x2 y2, x3 y3).
Available only when processing query results.
Available attributes (h = header, f=footer, s=separator):
Coordinate separator, default is comma (”,”).
Characters to put before and after the x coordinates (defaults are xh=”” and xf=” ”).
Characters to put before and after the y coordinates (defaults are no characters).
Characters to put before and after and separators between feature parts (e.g. holes, defaults are no characters).
Characters to put before and after a feature (defaults are no
characters)
The number of decimal places to output for coordinates (default is 0).
The output projection definition for the coordinates (default is none), a special value of “image” will convert to image coordinates.
As a simple example:
[shpxy xh="(" yf=")"] will result in: (x1 y1),(x2 y2),(x3 y3)
Item name from the attribute table of a queried layer. Only attributes for the active query layers are accessible. Case must be the same as what is stored in the DBASE file. ArcView, for example, uses all caps for shapefile field names. Available only when processing query results.
By default the attributes are encoded especially for HTML representation. In addition the escaped version (for use in URLs) as well as the raw data is available.
One-to-one joins: First the join name (as specified in the Mapfile has to be given, second the tables fields can be accessed similar to the layers attribute data. Available only when processing query results.
By default the attributes are encoded especially for HTML representation. In addition the escaped version (for use in URLs) as well as the raw data is available.
Queried layer meta data access (e.g [metadata_projection]
Also available as escaped version.
For query modes that allow for multiple result sets, the following string substitutions are available. For FEATURESELECT and FEATURENSELECT modes the totals a re adjusted so as not to include the selection layer. The selection layer results ARE available for display to the user.
A small example to give an idea how to work with templates. Note that it covers MapServer specific templates (e.g. the [map], [mapext]) and user defined templates (e.g. [htmlroot] or [program]) used to store application settings.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/transitional.dtd">
<html>
<head>
<title>MapServer Template Sample</title>
</head>
<body>
MapServer Template Sample<br>
<!-- The central form the application is based on. -->
<form method="GET" action="[program]">
<!-- CGI MapServer applications are server stateless in principle,
all information must be "stored" in the client. This includes
some basic settings as below.
The example is based on the pan and zoom test suite:
http://maps.dnr.state.mn.us/mapserver_demos/tests36/ -->
<input type="hidden" name="map" value="[map]">
<input type="hidden" name="imgext" value="[mapext]">
<input type="hidden" name="imgxy" value="149.5 199.5">
<input type="hidden" name="program" value="[program]">
<input type="hidden" name="htmlroot" value="[htmlroot]">
<input type="hidden" name="map_web" value="[map_web]">
<!-- A table for minimal page formatting. -->
<table border=0 cellpadding=5>
<tr>
<!-- First column: Map and scale bar -->
<td align=center>
<!-- The map -->
<input type="image" name="img" src="[img]"
style="border:0;width:300;height:400">
<br>
<!-- The scale bar-->
<img src="[scalebar]" alt="Scale Bar">
</td>
<!-- Second column: Zoom direction, Legend and Reference -->
<td valign=top>
<!-- Zoom direction -->
<b>Map Controls</b><br>
Set your zoom option:<br>
<select name="zoom" size="1">
<option value="2" [zoom_2_select]> Zoom in 2 times
<option value="1" [zoom_1_select]> Recenter Map
<option value="-2" [zoom_-2_select]> Zoom out 2 times
</select>
<br>
<!-- Legend -->
<b>Legend</b><br>
<img src="[legend]" alt="Legend"><br><br><br><br>
<!-- Reference map -->
<input type="image" name="ref" src="[ref]"
style="border:0;width:150;height:150">
</td>
</tr>
</table>
</form>
</body>
</html>
|