Hi,<br>I&#39;am not an expert but you could do something like this.<br><br>//in your init function<br>//define the style of your layer<br>var myStyles = new OpenLayers.StyleMap({<br>    &quot;default&quot;: new OpenLayers.Style({<br>
    fillColor: &quot;#ffcc66&quot;,<br>    strokeColor: &quot;#ff9933&quot;,<br>    strokeWidth: 2<br>    })<br>});<br><br>//Create a layer to pur your points in<br>var points = new OpenLayers.Layer.Vector(<br>    &#39;Points&#39;, {styleMap: myStyles}<br>
);<br>.........<br><br>Create a new function..<br>Assuming the input elements are called lon and lat<br>function createPoint()<br>{<br>    //create your point with your values<br>    newpoint = new OpenLayers.Feature.Vector(<br>
        new OpenLayers.Geometry.Point(<br>            (document.forms.yourform.lon.value, document.forms.yourform.lat.value)<br>        )<br>    );<br>    //add point to layer<br>    points.addFeatures(features);<br>}<br>
<br><br><br>