Merge pull request #1335 from tschaub/geometry-type
Change geometry type enum and mark as stable.
This commit is contained in:
@@ -36,9 +36,9 @@
|
||||
<form class="form-inline">
|
||||
<label>Geometry type </label>
|
||||
<select id="type">
|
||||
<option value="polygon">Polygon</option>
|
||||
<option value="linestring">Linestring</option>
|
||||
<option value="point">Point</option>
|
||||
<option value="Polygon">Polygon</option>
|
||||
<option value="LineString">Linestring</option>
|
||||
<option value="Point">Point</option>
|
||||
</select>
|
||||
</form>
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ var style = new ol.style.Style({rules: [
|
||||
]
|
||||
}),
|
||||
new ol.style.Rule({
|
||||
filter: 'geometryType("point")',
|
||||
filter: 'geometryType("Point")',
|
||||
symbolizers: [
|
||||
new ol.style.Shape({
|
||||
size: 40,
|
||||
|
||||
Reference in New Issue
Block a user