Making sure the word 'style' appears in the style examples. No functional change.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@8213 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2008-10-28 03:03:19 +00:00
parent 84b65e5f8f
commit 6924534f47
3 changed files with 15 additions and 4 deletions

View File

@@ -68,7 +68,13 @@
<div id="tags"></div>
<p id="shortdesc">
Shows how to use a StyleMap.
Shows how to use a StyleMap to style features with rule based styling.
A style map references on or more OpenLayers.Style objects. These
OpenLayers.Style objects are collections of OpenLayers.Rule objects
that determine how features are styled. An OpenLayers.Rule object
combines an OpenLayers.Filter object with a symbolizer. A filter is used
to determine whether a rule applies for a given feature, and a symbolizer
is used to draw the feature if the rule applies.
</p>
<div id="map" class="smallmap"></div>

View File

@@ -84,7 +84,10 @@
<div id="tags"></div>
<p id="shortdesc">
Shows how to create a feature styles.
To style features with a custom function that evaluates each feature, use
the context option of an OpenLayers.Style object. If the context object
contains a function and this function is referenced in a symbolizer, the
function will be called with the feature as an argument..
</p>
<div id="map" class="smallmap"></div>

View File

@@ -75,8 +75,10 @@
</script>
</head>
<body onload="init()">
<h1 id="title">Rotation Styles Example</h1>
<p id="shortdesc">Vector point feature symbolizers can have a rotation property. The center of the rotation is the point of the image specified by graphicXOffset and graphicYOffset.</p>
<h1 id="title">Rotation Style Example</h1>
<p id="shortdesc">To style point features with rotation, use the rotation
property of the symbolizer. The center of the rotation is the point of the
image specified by graphicXOffset and graphicYOffset.</p>
<div id="map"></div>
<div id="docs"/>
</body>