<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7654.12">
<TITLE>Re: [OpenLayers-Users] Draw a point and assign a dynamic label to it</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->

<P><FONT SIZE=2>On 03/24/2010 01:52 PM, Frost89 wrote:<BR>
&gt; Hi list<BR>
&gt;<BR>
&gt; In my map I have added a vector layer and a drawFeature control.<BR>
&gt; The drawFeature is set to draw points, and works without problems.<BR>
&gt;<BR>
&gt; Now, I would like to assign a text-label to the point's style.<BR>
&gt; The text in the label should be defined by the user (through a prompt() or<BR>
&gt; other alternatives).<BR>
&gt;&nbsp;&nbsp;&nbsp;<BR>
<BR>
Try and set the text in the feature's properties:<BR>
feature.properties.text = mytext;<BR>
<BR>
and then add a style to the layer you place the feature in:<BR>
<BR>
&nbsp; var style = new OpenLayers.Style({<BR>
&nbsp; label: &quot;${text}&quot;,<BR>
});<BR>
<BR>
(a bit confused about your code snippet, is the event in featureAdded<BR>
indeed the created feature?)<BR>
<BR>
-atle<BR>
&gt; So I was thinking about settings this value in the &quot;featureAdded&quot; event of<BR>
&gt; the drawFeature control, but I can't quite figure out how to do this.<BR>
&gt; When I try to do it like this...<BR>
&gt; var point = new OpenLayers.Control.DrawFeature(<BR>
&gt;&nbsp;&nbsp;&nbsp; vectorLayer,<BR>
&gt;&nbsp;&nbsp;&nbsp; OpenLayers.Handler.Point,<BR>
&gt;&nbsp;&nbsp;&nbsp; {<BR>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type: OpenLayers.Control.TYPE_TOOL,<BR>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; featureAdded: function(event) {<BR>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; event.style.label = 'test';<BR>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; redliningLayer.drawFeature(event);<BR>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>
&gt;&nbsp;&nbsp;&nbsp; }<BR>
&gt; );<BR>
&gt;&nbsp;&nbsp;&nbsp;<BR>
&gt; ... I just get an error message:<BR>
&gt; event.style is null<BR>
&gt; So if anyone has an idea of how to do this, it would be appreciated :)<BR>
&gt;<BR>
&gt; - Kristian Frost<BR>
&gt;&nbsp;&nbsp;&nbsp;<BR>
<BR>
<BR>
--<BR>
Atle Frenvik Sveen<BR>
GIS Konsulent<BR>
Geomatikk IKT AS<BR>
tlf: 45 27 86 89<BR>
atle.frenvik.sveen@geomatikk.no<BR>
<BR>
</FONT>
</P>

</BODY>
</HTML>