* (Closes #2360) make Layer.addOptions call initResolutions if necessary * (Closes #2656) no way to pass read options from protocol to format * (Closes #2751) Changes in languages: "es" and "ca". * (Closes #2814) SLDSelect control tests failing * (Closes #2815) Cluster Strategy should not destroy all features Also: * Change examples to use OSGeo, rather than MetaCarta, servers. * Change copyright statements to correctly state joint copyright in the project, rather than MetaCarta copyright. git-svn-id: http://svn.openlayers.org/branches/openlayers/2.10@10715 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
44 lines
1.7 KiB
HTML
44 lines
1.7 KiB
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>OpenLayers Rule Based Style</title>
|
|
<link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
|
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script src="style-rules.js"></script>
|
|
</head>
|
|
<body onload="init()">
|
|
<h1 id="title">Rule Based Style</h1>
|
|
|
|
<p id="shortdesc">
|
|
Use rule based styling to use different symbolizers for different
|
|
feature groups.
|
|
</p>
|
|
|
|
<div id="map" class="smallmap"></div>
|
|
|
|
<div id="docs">
|
|
<p>
|
|
This example uses four rules to render features. Rules are
|
|
based on a feature attribute and determine which symbolizer
|
|
is applied when rendering a feature. The rules in this example
|
|
change which marker is used by providing an externalGraphic
|
|
property in the symbolizer.
|
|
</p>
|
|
The features are labeled with the same attribute that determines
|
|
the symbolizer used. You should be able to confirm that the
|
|
graphic color corresponds to the range of numbers given below.
|
|
</p>
|
|
<ul>
|
|
<li>0 <= blue < 25
|
|
<li>25 <= green < 50
|
|
<li>50 <= gold <= 75
|
|
<li>75 < red <= 100
|
|
</ul>
|
|
<p>
|
|
See the <a href="style-rules.js" target="_blank">
|
|
style-rules.js source</a> to see how this is done.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|