Hi there, <div><br></div><div>I'm generating a KML-structure from a jsp consisting of three Placemarks:</div><div>- 1 Placemark for an Icon (Point)</div><div>- 1 Placemark for a LineString-vector pointing from the centre of the icon to a Point nearby</div>


<div>- 1 Placemark for a MultiGeometry meant to draw "dots" leading away from the icon</div><div><br></div><div>To this state of development I have one stylemap defining an externalGraphic for the icon and colors for the LineString etc. The icon is defined in a "symbol"-attribute inside the generated KML-Structure</div>


<div><br></div><div><div><Placemark></div><div>    <id><%=id%></id></div><div>    <name><%=name%></name></div><div>    <symbol><%=symbol%></symbol></div></div><div>


.</div><div>.</div><div>.</div><div><div>    <Point></div><div>        <coordinates><%=lon%>, <%=lat%>, 0</coordinates></div><div>    </Point></div></div><div></Placemark></div><div>


<br></div><div><div><Placemark></div><div>    <name><%=name%></name> </div></div><div>.</div><div>.</div><div>.</div><div><div>    <LineString></div><div>        <coordinates> <%=lon%>, <%=lat%>, 0</div>


<div>            <%=lonEnd%>, <%=latEnd%>, 0 </coordinates></div><div>    </LineString></div><div></Placemark></div></div><div><br></div><div><div><Placemark></div>
<div>    <MultiGeometry></div><div><Point></div><div>    <coordinates></div><div>        <%=blah.getLongitude()%>,</div><div>        <%=blah.getLatitude()%> </div><div>    </coordinates></div>


<div></Point>        </div><div>...</div><div><div><Point></div><div>    <coordinates></div><div>        <%=blah.getLongitude()%>,</div><div>        <%=blah.getLatitude()%> </div><div>    </coordinates></div>


<div></Point>   </div></div><div>    </MultiGeometry></div><div></Placemark></div></div><div><br></div><div><br></div><div>I now want to specify:</div><div>- externalGraphic for the Point of the first Placemark,</div>


<div>- colors for the LineString in the second Placemark, AND</div><div>- just a simple color and radius for the Points of the MultiGeometry of the third Placemark</div><div><br></div><div>This is working fine for now, not using the third Placemark:</div>


<div><div>    styler = OpenLayers.Util.applyDefaults(</div><div>                    {strokeColor: "#606860",</div><div>                    strokeWidth: 1.5,</div><div>                    fillColor: "#FF5500",</div>


<div>                    externalGraphic: 'gfx/${symbol}.png',</div><div>                    graphicOpacity: 1,</div><div>                    fillOpacity: 1,</div><div>                    pointRadius: 9,</div><div>


                    pointerEvents: "visiblePainted",</div><div>                    label : "${name}",</div><div>                    fontColor: "#606860",</div><div>                    fontSize: "10px",</div>


<div>                    fontFamily: "Verdana, monospace",</div><div>                    labelAlign: "CENTER",</div><div>                    labelXOffset: "0",</div><div>                    labelYOffset: "-18",</div>


<div>                    labelOutlineWidth: 0}, </div><div>                    OpenLayers.Feature.Vector.style["default"]);</div><div>    styleMap = new OpenLayers.StyleMap( {"default": styler, "select": {externalGraphic: 'gfx/${symbol}.selected.png'} } );    </div>


</div><div><br></div><div>But when I'm introducing the third Placemark mentioned above, no $(symbol) or $(name) etc. is specified for the Points of the MultiGeometry resulting in "undefined"-errors - of course. How do I manage to "just" set radius and colors for the Points of the third Placemark? Can I specify something like an "Placemark-Class" and use this in OpenLayers to only apply certain stylemaps to certain Placemark-Classes?</div>


<div><br></div><div>And what do you think about performance? The number of Points inside the MultiGeometry can easily increase up to tens or even hundreds. And I'll have to expect around 300 of these Tripple-Placemark-Structures.</div>


<div>300*(1Point + 1LineString + nPointsOfMultiGeometry) = ??? too many?</div><div><br></div><div>Would you rather consider drawing the dots by OpenLayers built in geometries?</div><div><br></div><div>Any other approaches to consider?</div>

<div><br></div><div>Many thanks in advance!</div>
<div>Andreas</div><div><br></div><div><br></div>