I am creating a vector layer comprised of polygons from a KML file using Openlayers and I need to apply a "hash" pattern (diagonal striping) to the polygons. I know Openlayers doesn't natively support adding a background image to a polygon in a vector layer but I'm wondering if anyone has any ideas on how to accomplish this? The styling of a vector polygon appears to be limited to solid colors and opacity. If need be I'll extend OpenLayers to add this functionality in by manually drawing the hash lines within the polygon boundaries but I'm hoping someone has a simpler suggestion before I head down that road.

link|improve this question

Do you mean styling polygon borders (exterior) or internal polygon ? – Myra Feb 23 at 13:56
@Myra - internal polygon – TheOx Feb 23 at 16:37
I was going to say,polygon has only outer boundary stroke style as hash,but currently no support for internal style except for color & opacity – Myra Feb 24 at 6:03
feedback

3 Answers

up vote 1 down vote accepted

Using SLD this can now be done. Not sure if it's in version 2.11 or the trunk development but i saw the addition was committed about 6 months ago.

It uses an ExternalGraphic so you can set an image of whatever pattern or color you want.

Here's the Example

enter image description here

link|improve this answer
Many thanks for the response and linking to the example - that's exactly what I needed. – TheOx Mar 10 at 4:22
feedback

I have not try this yet, but I have similar problem.
The solution I will try is svg pattern.
OpenLayers has SVG.js which is used to draw polygons. I will modify that to support patterns.
Look Image -->
http://i2.aijaa.com/b/00653/9707550.jpg
In this example i have modified http://openlayers.org/dev/examples/behavior-fixed-http-gml.html example to demonstrate pattern usage. --> Could this be good solution?

link|improve this answer
feedback

I'm trying to put a polygon from KML onto an openlayers vector layer. I seem to be missing something, I have a point defined in the kml which shows just fine on the map, but the polygon will not display. I see you have this working from KML. Can you point me in the right direction on how to fix this? KML

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<description>Campus Sirens</description>
    <Style id="poly">
    <LineStyle>
        <color>f0ffed42</color>
    </LineStyle>
    <PolyStyle>
        <color>e8ff9257</color>
    </PolyStyle>
</Style>
<Placemark>
    <styleUrl>#poly</styleUrl>
    <Polygon>
        <altitudeMode>relativeToGround</altitudeMode>
        <outerBoundaryIs>
            <LinerarRing>
                <coordinates>
                    -71.091794,42.357944,500 
                    -71.092186,42.358578,500 
                    -71.092933,42.358369,500 
                    -71.092539,42.357697,500
                </coordinates>
            </LinerarRing>
        </outerBoundaryIs>
    </Polygon>
</Placemark>
<Placemark>
  <name>S01</name>
  <Point>
    <coordinates>-71.091794,42.357944</coordinates>
  </Point>
</Placemark>

And here's the openlayers code

        buildings = new OpenLayers.Layer.Vector(
    "Campus Buildings",
    {
        strategies: [new OpenLayers.Strategy.Fixed()],
        protocol: new OpenLayers.Protocol.HTTP({
            url: "../../mapdata/campus/mit_building_1.kml",
            format: new OpenLayers.Format.KML(
            {
                extractStyles: true,
                extractAttributes: true,
                maxDepth: 1
            })
        })
    });
map.addLayer(buildings);
link|improve this answer
please move this to an actual new question so that others may also offer help and I'll take a look. – TheOx 15 hours ago
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.