<div>hi! please i want know if this code is that what all i must do for adding new layer to map and see it in viewer frame or i must do some relation with the feature source i create in my code?? thanks on advance</div>
<div> </div>
<div><font size="2">
<p>myLayer = </p></font><font color="#0000ff" size="2">New</font><font size="2"> MgLayer(layerDefId, resourceSrvc)
<p>myLayer.SetName(myLayerName)</p>
<p>myLayer.SetLegendLabel(myLayerName)</p>
<p>myLayer.SetDisplayInLegend(</p></font><font color="#0000ff" size="2">True</font><font size="2">)
<p>myLayer.SetSelectable(</p></font><font color="#0000ff" size="2">False</font><font size="2">)
<p>map.GetLayers().Insert(0, myLayer)</p></font><font size="2">
<p>myLayer.ForceRefresh()</p>
<p></p></font><font size="2">map.Save(resourceSrvc)</font><br><br></div>
<div class="gmail_quote">2009/5/11 saloua wakrim <span dir="ltr">&lt;<a href="mailto:wakrimsaloua.wakrim@gmail.com">wakrimsaloua.wakrim@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div>and i have the same prob with inserting polygone in layerand this time even with mapguide Studio i don&#39;t see the polygone in layer , this is my code i give it you may be it will help you see my error :</div>
<div>As cordinates i pass </div>
<div>
<div> </div>
<div> Dim x() As Double = {0, 2, 2, 0, 0}<br>  Dim y() As Double = {0, 0, 2, 2, 0}</div>
<div>just for testing and for constituting polygone i do that: (as i&#39;ve show you in my code)</div>
<div> </div>
<div> </div>
<div> <br>        Dim poly As MgPolygon<br>        Dim geomfactory As MgGeometryFactory = New MgGeometryFactory()<br>        Dim coordcol As MgCoordinateCollection = New MgCoordinateCollection()<br>        Dim j As Integer<br>
        For j = 0 To 4<br>        Dim coord As MgCoordinate = geomfactory.CreateCoordinateXY(a(j), b(j))<br>        coordcol.Add(coord)<br>        j = j + 1<br>             <br>        Next<br>        Dim outring As MgLinearRing = geomfactory.CreateLinearRing(coordcol)<br>
         poly = geomfactory.CreatePolygon(outring, Nothing)<br>       </div>
<div>        Dim agf As MgAgfReaderWriter = New MgAgfReaderWriter()<br>   <br>        properties.Add(New MgGeometryProperty(&quot;GEOM&quot;, agf.Write(poly)))</div>
<div> </div>
<div> </div>
<div>another prob that i have that i can&#39;t see the layer i add after refreshing map (conntained in &lt;iframe&gt;)for saying layer i use mapguide studio where i see the layer wich doesn&#39;t contain the polygon, may be pro in type of geometry i give or another, i&#39;ll give all complete code it will help you see my error and help me if you can, i&#39;ve spent a lot of time at that but i don&#39;t see my error and why even i add layer in map i don&#39;t see it and when i see it using mapguide studio it doesn&#39;t contain polygone i insert.i have even tested to insert polygone with text shape ((&quot;POLYGON XY ((0 0, 2 0, 2 2, 0 2, 0 0))&quot; in function makeLine2() as you see)but it doesn&#39;t run too.i don&#39;t know what do, please help me if you can do it. Thanks a lot in advance.</div>

<div> </div>
<div> </div>
<div>&lt;%@ Page Language=&quot;VB&quot; AutoEventWireup=&quot;true&quot; CodeFile=&quot;essai.aspx.vb&quot; <br>
<div class="im">Inherits=&quot;essai&quot; %&gt;<br>&lt;%@ Import Namespace=&quot;System&quot; %&gt;<br>&lt;%@ Import Namespace=&quot;System.IO&quot; %&gt;<br>&lt;%@ Import Namespace=&quot;System.Collections.Specialized&quot; %&gt;<br>
&lt;%@ Import Namespace=&quot;OSGeo.MapGuide&quot; %&gt;<br>&lt;%@ Import Namespace=&quot;System.Text&quot; %&gt;<br>&lt;%@ Import Namespace=&quot;System.Globalization&quot; %&gt;</div></div>
<div class="im">
<div> </div>
<div>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; <br>&quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;</div>

<div> </div>
<div>&lt;html xmlns=&quot;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&quot; &gt;<br>&lt;head id=&quot;Head1&quot; runat=&quot;server&quot;&gt;<br>    &lt;title&gt;selection&lt;/title&gt;<br>
   <br>&lt;/head&gt;<br>&lt;body&gt;</div></div>
<div>&lt;br /&gt;<br> &lt;%<br>     <br>           
<div class="im"><br>        Dim sessionid1 As String<br>     Dim siteConnection As MgSiteConnection<br>     Dim resourceSrvc As MgResourceService<br></div>     Dim myLayerName As String = &quot;line9&quot; 
<div>
<div></div>
<div class="h5"><br>     Dim mapname As String = &quot;Sheboygan&quot;<br>     Dim map As MgMap<br>     Dim featureSrvc As MgFeatureService<br>     Dim myLayer As MgLayer<br>     </div></div></div>
<div>
<div></div>
<div class="h5">
<div>     Dim configPath As String = &quot;C:\Program Files\Autodesk\MapGuideEnterprise2008\WebServerExtensions\www\webconfig.ini&quot;<br>     MapGuideApi.MgInitializeWebTier(configPath)<br>     Dim site1 As MgSite = New MgSite()<br>
     Dim userInfo As MgUserInformation = New MgUserInformation(&quot;Administrator&quot;, &quot;admin&quot;)<br>     siteConnection = New MgSiteConnection()<br>     siteConnection.Open(userInfo)<br>     site1 = siteConnection.GetSite()<br>
     sessionid1 = site1.CreateSession()<br>     userInfo.SetMgSessionId(sessionid1)</div>
<div>     resourceSrvc = siteConnection.CreateService(MgServiceType.ResourceService)<br>     featureSrvc = siteConnection.CreateService(MgServiceType.FeatureService)</div>
<div>    <br>     Response.Charset = &quot;utf-8&quot;<br>     Dim layerDef As String = &quot;Library://Samples/Sheboygan/Layers/&quot; + myLayerName + &quot;.LayerDefinition&quot;<br>     Dim layerDefId As MgResourceIdentifier = New MgResourceIdentifier(layerDef)<br>
     Dim dataSource As String = &quot;Library://Samples/Sheboygan/Data/&quot; + myLayerName + &quot;.FeatureSource&quot;<br>     Dim dataSourceId As MgResourceIdentifier = New MgResourceIdentifier(dataSource)<br>     Dim resourceID2 As MgResourceIdentifier = New MgResourceIdentifier(&quot;Library://Samples/Sheboygan/Maps/Sheboygan.MapDefinition&quot;)<br>
    <br>     map = New MgMap(siteConnection)<br>     map.Create(resourceSrvc, resourceID2, mapname)<br>   <br>     map.Save()<br>     map.Open(resourceSrvc, mapname)</div>
<div>     Dim myClassDef As MgClassDefinition</div>
<div>     If (DoesLayerExist(myLayerName, map) = False) Then<br>         </div></div></div>
<div>
<div>
<div></div>
<div class="h5">         &#39;//create Feature Source<br>         myClassDef = New MgClassDefinition()<br></div></div>         myClassDef.SetName(&quot;line9&quot;) 
<div class="im"><br>         &#39;myClassDef.SetDescription(myLayerName + &quot; Feature Source&quot;)<br>         &#39;myClassDef.SetDefaultGeometryPropertyName(&quot;SHPGEOM&quot;)</div></div>
<div class="im">
<div>         &#39;Set KEY Property<br>         Dim prop As MgDataPropertyDefinition = New MgDataPropertyDefinition(&quot;KEY&quot;)<br>         prop.SetDataType(MgPropertyType.Int32)<br>         prop.SetAutoGeneration(True)<br>
         prop.SetReadOnly(True)<br>         prop.SetNullable(False)<br>         myClassDef.GetProperties().Add(prop)<br>         myClassDef.GetIdentityProperties().Add(prop)</div></div>
<div>
<div class="im">         &#39;Set ID Property<br>         prop = New MgDataPropertyDefinition(&quot;ID&quot;)<br>         prop.SetDataType(MgPropertyType.Int32)<br>         myClassDef.GetProperties().Add(prop)<br>          <br>
        <br>         &#39;et geometry property<br></div>         Dim geomProp As MgGeometricPropertyDefinition = New MgGeometricPropertyDefinition(&quot;GEOM&quot;)<br>         geomProp.SetGeometryTypes(MgFeatureGeometricType.Surface) 
<div class="im"><br>         geomProp.SetHasElevation(False)<br>         geomProp.SetHasMeasure(False)<br>         geomProp.SetSpatialContextAssociation(&quot;LL84&quot;)<br>         myClassDef.GetProperties().Add(geomProp)<br>
</div>         &#39;myClassDef.SetDefaultGeometryPropertyName(&quot;SHPGEOM&quot;)</div>
<div class="im">
<div>         &#39;Create the schema<br>         Dim schema As MgFeatureSchema = New MgFeatureSchema()<br>         schema.SetName(&quot;SHP_Shema&quot;)<br>         schema.GetClasses().Add(myClassDef)<br>     </div>
<div>         Dim sdfParams As MgCreateSdfParams = New MgCreateSdfParams(&quot;MGA-56 (GDA94 /MGA zone 56)&quot;, map.GetMapSRS(), schema)</div>
<div>         featureSrvc.CreateFeatureSource(dataSourceId, sdfParams)</div>
<div><br>        <br>         <br>         Dim content As MgByteSource = New MgByteSource(&quot;C:\Program Files\Autodesk\MapGuideEnterprise2008\WebServerExtensions\www\createpoint\LayerDefinition.xml&quot;)<br>         resourceSrvc.SetResource(layerDefId, content.GetReader(), Nothing)</div>
</div>
<div>
<div class="im">         myLayer = New MgLayer(layerDefId, resourceSrvc)<br>         myLayer.SetName(myLayerName)<br>         myLayer.SetLegendLabel(myLayerName)<br>         myLayer.SetDisplayInLegend(True)<br>         myLayer.SetSelectable(False)<br>
         map.GetLayers().Insert(0, myLayer)<br>         &#39;map.GetLayers().Add(myLayer) <br>         myLayer.ForceRefresh()<br>       map.Save(resourceSrvc)<br>     <br>            <br>         <br>     End If<br>     <br>
     <br></div>       Dim insertFeatures2 As MgInsertFeatures = New MgInsertFeatures(myLayerName, makeLine()) 
<div class="im"><br>    <br>     Dim commands As MgFeatureCommandCollection = New MgFeatureCommandCollection()<br>  <br>     commands.Add(insertFeatures2)<br>    <br>    myLayer.UpdateFeatures(commands)<br>       <br>        <br>
     <br>         <br>      <br>     <br>    <br>     </div></div>
<div>   <br>        </div>
<div> <br> <br> %&gt;</div>
<div>
<div class="im">&lt;div id=&quot;viewer&quot;&gt;<br> &lt;iframe id=&quot;carte&quot; width=&quot;800&quot; height=&quot;300&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;<a href="http://localhost/mapguide2008/mapviewerajax/?SESSION=%3C%=sessionid1" target="_blank">http://localhost/mapguide2008/mapviewerajax/?SESSION=&lt;%=sessionid1</a> %&gt;&amp;WEBLAYOUT=Library%3a%2f%2fSamples%2fSheboygan%2fLayouts%2fSheboyganAsp.WebLayout&quot; name=&quot;fenetre&quot;&gt;&lt;/iframe&gt;<br>
 &lt;/div&gt;<br> &lt;br /&gt;<br></div> &lt;div&gt; <br>&lt;input type=&quot;button&quot; value=&quot;zoom&quot; name=&quot;zoom&quot; onclick=&quot;zoom()&quot;/&gt;<br>&lt;/div&gt;<br>&lt;br /&gt;<br>&lt;div&gt; <br>&lt;input type=&quot;button&quot; value=&quot;rafraichir&quot; name=&quot;calque&quot; onclick=&quot;testcalque();&quot;/&gt;<br>
&lt;/div&gt;</div>
<div><br>&lt;/body&gt;<br>&lt;script type=&quot;text/javascript&quot;&gt;</div>
<div>    var str2;<br>    var str;<br>   <br>        <br>    function zoom()<br>    {<br>    carte.GetMapFrame().ZoomToView(-87.7116768,43.7766789973,5000,true);<br>  <br>     }<br>     function testcalque() 
<div class="im"><br>    {<br>    //carte.GetMapFrame().GetLayers(true,true);<br>   //carte.GetScriptFrame().location.href = &quot;essai.aspx&quot;;<br>   frames[&#39;fenetre&#39;].location.reload();<br>    carte.GetMapFrame().Refresh();<br>
    //carte.ExecuteMapAction(20); <br>    //carte.GetMapFrame().ExecuteMapAction(1); <br>    //carte.GetTaskFrame().location.href = &quot;essai.aspx&quot; <br>    //carte.GetScriptFrame().location.href = &quot;essai.aspx&quot; </div>
</div>
<div class="im">
<div>    //carte.GetMapFrame().ExecuteMapAction(20);</div>
<div><br>    //carte.GetMapFrame().ExecuteMapAction(20); </div>
<div>    }<br>     <br>    <br>&lt;/script&gt;</div></div>
<div><br>&lt;script runat=&quot;server&quot;&gt;<br>    <br>    Public Function makeLine() As MgPropertyCollection<br>                           <br>        Dim x() As Double = {0, 2, 2, 0, 0}<br>     Dim y() As Double = {0, 0, 2, 2, 0}<br>
<br>        Dim poly As MgPolygon<br>        Dim geomfactory As MgGeometryFactory = New MgGeometryFactory()<br>        Dim coordcol As MgCoordinateCollection = New MgCoordinateCollection()<br>        Dim j As Integer<br>        For j = 0 To 4<br>
        Dim coord As MgCoordinate = geomfactory.CreateCoordinateXY(x(j), y(j))<br>        coordcol.Add(coord)<br>        j = j + 1<br>             <br>        Next<br>        Dim outring As MgLinearRing = geomfactory.CreateLinearRing(coordcol)<br>
        poly = geomfactory.CreatePolygon(outring, Nothing)<br>       </div>
<div>        Dim agf As MgAgfReaderWriter = New MgAgfReaderWriter()<br>   <br>        properties.Add(New MgGeometryProperty(&quot;GEOM&quot;, agf.Write(poly)))<br>        </div>
<div>        <br>    return properties<br>      <br>    End Function<br>    Public Function makeLine2() As MgPropertyCollection</div>
<div class="im">
<div>        Dim PropertyCollection2 As MgPropertyCollection = New MgPropertyCollection()<br>        Dim nameProperty2 As MgInt32Property = New MgInt32Property(&quot;ID&quot;, 1)<br>        PropertyCollection2.Add(nameProperty2)</div>

<div>        Dim wktReaderWriter2 As MgWktReaderWriter = New MgWktReaderWriter()<br>        Dim agfReaderWriter2 As MgAgfReaderWriter = New MgAgfReaderWriter()</div></div>
<div>        Dim geometry2 As MgPolygon = wktReaderWriter2.Read(&quot;POLYGON XY ((0 0, 2 0, 2 2, 0 2, 0 0))&quot;) 
<div class="im"><br>    <br>    <br>        Dim geometryByteReader2 As MgByteReader = agfReaderWriter2.Write(geometry2)<br></div>        Dim geometryProperty2 As MgGeometryProperty = New MgGeometryProperty(&quot;GEOM&quot;, geometryByteReader2) 
<div class="im"><br>        PropertyCollection2.Add(geometryProperty2)<br>        Return PropertyCollection2<br>    End Function<br>    </div></div>
<div class="im">
<div>  <br>    Function DoesLayerExist(ByVal LayerName As String, ByVal Map As MgMap) As Boolean</div>
<div>        Dim layers As MgLayerCollection = Map.GetLayers()<br>        Return (layers.Contains(LayerName))<br>    End Function<br>    <br>     <br> </div></div>
<div>    <br>&lt;/script&gt;</div>
<div> </div>
<div> </div>
<div> <br>&lt;/html&gt;<br></div>
<div> </div>
<div><br><br> </div>
<div class="gmail_quote">2009/5/11 javed shaikh <span dir="ltr">&lt;<a href="mailto:jaspune@hotmail.com" target="_blank">jaspune@hotmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div>Wakrim<br> <br>Could you tell me what is the error?<br> <br>You were code is technically correct, if you can tell me what is the error i can help you.<br> <br>Before that make sure you are passing corrrect cordinates (last co ordinate is same as first) you are passing correct layer scheme and inserting in correct session.<br>
 <br>J<br> <br>&gt; From: <a href="mailto:wakrimsaloua.wakrim@gmail.com" target="_blank">wakrimsaloua.wakrim@gmail.com</a><br>&gt; To: <a href="mailto:jaspune@hotmail.com" target="_blank">jaspune@hotmail.com</a><br>&gt; Subject: please help me if you can<br>
&gt; Date: Sat, 9 May 2009 04:13:56 -0700<br>&gt; <br>&gt; hi, i&#39;ve the same prob that you have, but i can&#39;t resolve it, i use this code for drawning polygon ,but it doesn&#39;t draw it, please correct it me if you have time to do it, this is my mail: <a href="mailto:wakrimsaloua.wakrim@gmail.com" target="_blank">wakrimsaloua.wakrim@gmail.com</a>, this is my code: 
<div class="im"><br>&gt; <br>&gt; If (DoesLayerExist(myLayerName, map) = False) Then<br>&gt; <br>&gt; <br>&gt; &#39;//create Feature Source<br></div>&gt; Dim myClassDef As MgClassDefinition = New MgClassDefinition()<br>&gt; myClassDef.SetName(&quot;saloua3&quot;) 
<div class="im"><br>&gt; &#39;myClassDef.SetDescription(myLayerName + &quot; Feature Source&quot;)<br>&gt; myClassDef.SetDefaultGeometryPropertyName(&quot;SHPGEOM&quot;)<br>&gt; <br>&gt; &#39;Set KEY Property<br>&gt; Dim prop As MgDataPropertyDefinition = New MgDataPropertyDefinition(&quot;KEY&quot;)<br>
&gt; prop.SetDataType(MgPropertyType.Int32)<br>&gt; prop.SetAutoGeneration(True)<br>&gt; prop.SetReadOnly(True)<br>&gt; prop.SetNullable(False)<br>&gt; myClassDef.GetProperties().Add(prop)<br>&gt; myClassDef.GetIdentityProperties().Add(prop)<br>
&gt; <br>&gt; &#39;Set ID Property<br>&gt; prop = New MgDataPropertyDefinition(&quot;ID&quot;)<br>&gt; prop.SetDataType(MgPropertyType.Int32)<br>&gt; myClassDef.GetProperties().Add(prop)<br>&gt; <br></div>&gt; &#39;add poly<br>
&gt; <br>&gt; Dim poly As MgPolygon<br>&gt; Dim geomfactory As MgGeometryFactory = New MgGeometryFactory()<br>&gt; Dim coordcol As MgCoordinateCollection = New MgCoordinateCollection()<br>&gt; Dim j As Integer<br>&gt; For j = 0 To 3<br>
&gt; Dim coord As MgCoordinate = geomfactory.CreateCoordinateXY(x(j), y(j))<br>&gt; coordcol.Add(coord)<br>&gt; <br>&gt; Next<br>&gt; Dim outring As MgLinearRing = geomfactory.CreateLinearRing(coordcol)<br>&gt; poly = geomfactory.CreatePolygon(outring, Nothing)<br>
&gt; Dim agf As MgAgfReaderWriter = New MgAgfReaderWriter()<br>&gt; <br>&gt; &#39;Dim geom As MgByteReader = geometryReaderWriter.Write(poly)<br>&gt; properties = New MgPropertyCollection()<br>&gt; properties.Add(New MgGeometryProperty(&quot;GEOM&quot;, agf.Write(poly))) 
<div class="im"><br>&gt; <br>&gt; &#39;et geometry property<br>&gt; Dim geomProp As MgGeometricPropertyDefinition = New MgGeometricPropertyDefinition(&quot;SHPGEOM&quot;)<br></div>&gt; geomProp.SetGeometryTypes(MgFeatureGeometricType.Curve) 
<div class="im"><br>&gt; geomProp.SetHasElevation(False)<br>&gt; geomProp.SetHasMeasure(False)<br>&gt; geomProp.SetSpatialContextAssociation(&quot;LL84&quot;)<br>&gt; myClassDef.GetProperties().Add(geomProp)<br></div>&gt; myClassDef.SetDefaultGeometryPropertyName(&quot;SHPGEOM&quot;) 
<div class="im"><br>&gt; <br>&gt; &#39;Create the schema<br>&gt; Dim schema As MgFeatureSchema = New MgFeatureSchema()<br>&gt; schema.SetName(&quot;SHP_Shema&quot;)<br>&gt; schema.GetClasses().Add(myClassDef)<br>&gt; <br>
&gt; <br>&gt; Dim sdfParams As MgCreateSdfParams = New MgCreateSdfParams(&quot;MGA-56 (GDA94 /MGA zone 56)&quot;, map.GetMapSRS(), schema)<br>&gt; <br>&gt; featureSrvc.CreateFeatureSource(dataSourceId, sdfParams)<br>&gt; <br>
&gt; <br></div>&gt; &#39;Dim layerDefContent As MgByteReader = BuildLayerDefinitionContent(dataSource, &quot;SHP_Shema:linetestvb4&quot;, &quot;&quot;, &quot;5&quot;, &quot;F000F&quot;)<br>&gt; &#39;resourceSrvc.SetResource(layerDefId, layerDefContent, nothing)<br>
&gt; <br>&gt; Dim content As MgByteSource = New MgByteSource(&quot;C:\Program Files\Autodesk\MapGuideEnterprise2008\WebServerExtensions\www\testvb\LayerDefinition.xml&quot;) 
<div class="im"><br>&gt; resourceSrvc.SetResource(layerDefId, content.GetReader(), Nothing)<br>&gt; <br></div>&gt; Dim myLayer As MgLayer = New MgLayer(layerDefId, resourceSrvc)<br>&gt; myLayer.SetName(myLayerName)<br>&gt; myLayer.SetLegendLabel(&quot;legend&quot; + myLayerName)<br>
&gt; myLayer.SetDisplayInLegend(True)<br>&gt; myLayer.SetSelectable(True) 
<div class="im"><br>&gt; map.GetLayers().Insert(0, myLayer)<br>&gt; &#39;map.GetLayers().Add(myLayer) <br>&gt; myLayer.ForceRefresh()<br>&gt; map.Save(resourceSrvc)<br></div>&gt; Dim insertFeatures As MgInsertFeatures = New MgInsertFeatures(myLayerName, properties) 
<div class="im"><br>&gt; Dim commands As MgFeatureCommandCollection = New MgFeatureCommandCollection()<br></div>&gt; commands.Add(insertFeatures)<br>&gt; Dim commandIndex As Integer = commands.IndexOf(insertFeatures)<br>
&gt; <br>&gt; Dim insertResults As MgPropertyCollection<br>&gt; <br>&gt; insertResults = featureSrvc.UpdateFeatures(dataSourceId, commands, False)<br>&gt; End If<br><br><br><br></div></blockquote></div></div>
<div class="gmail_quote">2009/5/11 saloua wakrim <span dir="ltr">&lt;<a href="mailto:wakrimsaloua.wakrim@gmail.com" target="_blank">wakrimsaloua.wakrim@gmail.com</a>&gt;</span> 
<div>
<div></div>
<div class="h5"><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div>thanks a lot for your replay,yes, i&#39;m sure, i&#39;ve tried another code and with mapguide studio i see the layer that i add, it contains the line wich i insert, but on iframe (where the map is displayed) i don&#39;t see the layer and even in mapguide studio with the layers belonging to the map, i don&#39;t see the layer (it&#39;s not added), this is my complete code:</div>

<div> </div>
<div><font size="2">
<p>&lt;%</p></font><font color="#0000ff" size="2">@</font><font size="2"> </font><font color="#800000" size="2">Page</font><font size="2"> </font><font color="#ff0000" size="2">Language</font><font color="#0000ff" size="2">=&quot;VB&quot;</font><font size="2"> </font><font color="#ff0000" size="2">AutoEventWireup</font><font color="#0000ff" size="2">=&quot;true&quot;</font><font size="2"> </font><font color="#ff0000" size="2">CodeFile</font><font color="#0000ff" size="2">=&quot;essai.aspx.vb&quot;</font><font size="2"> 
<p></p></font><font color="#ff0000" size="2">  
<p>Inherits</p></font><font color="#0000ff" size="2">=&quot;essai&quot;</font><font size="2"> %&gt; 
<p>&lt;%</p></font><font color="#0000ff" size="2">@</font><font size="2"> </font><font color="#800000" size="2">Import</font><font size="2"> </font><font color="#ff0000" size="2">Namespace</font><font color="#0000ff" size="2">=&quot;System&quot;</font><font size="2"> %&gt; 
<p>&lt;%</p></font><font color="#0000ff" size="2">@</font><font size="2"> </font><font color="#800000" size="2">Import</font><font size="2"> </font><font color="#ff0000" size="2">Namespace</font><font color="#0000ff" size="2">=&quot;System.IO&quot;</font><font size="2"> %&gt; 
<p>&lt;%</p></font><font color="#0000ff" size="2">@</font><font size="2"> </font><font color="#800000" size="2">Import</font><font size="2"> </font><font color="#ff0000" size="2">Namespace</font><font color="#0000ff" size="2">=&quot;System.Collections.Specialized&quot;</font><font size="2"> %&gt; 
<p>&lt;%</p></font><font color="#0000ff" size="2">@</font><font size="2"> </font><font color="#800000" size="2">Import</font><font size="2"> </font><font color="#ff0000" size="2">Namespace</font><font color="#0000ff" size="2">=&quot;OSGeo.MapGuide&quot;</font><font size="2"> %&gt; 
<p>&lt;%</p></font><font color="#0000ff" size="2">@</font><font size="2"> </font><font color="#800000" size="2">Import</font><font size="2"> </font><font color="#ff0000" size="2">Namespace</font><font color="#0000ff" size="2">=&quot;System.Text&quot;</font><font size="2"> %&gt; 
<p>&lt;%</p></font><font color="#0000ff" size="2">@</font><font size="2"> </font><font color="#800000" size="2">Import</font><font size="2"> </font><font color="#ff0000" size="2">Namespace</font><font color="#0000ff" size="2">=&quot;System.Globalization&quot;</font><font size="2"> %&gt; 
<p> </p>
<p> </p>
<p></p></font><font color="#0000ff" size="2">  
<p>&lt;!</p></font><font color="#800000" size="2">DOCTYPE</font><font size="2"> </font><font color="#ff0000" size="2">html</font><font size="2"> </font><font color="#ff0000" size="2">PUBLIC</font><font size="2"> </font><font color="#0000ff" size="2">&quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;</font><font size="2"> 
<p></p></font><font color="#0000ff" size="2">  
<p>&quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;</p>
<p> </p>
<p> </p>
<p>&lt;</p></font><font color="#800000" size="2">html</font><font size="2"> </font><font color="#ff0000" size="2">xmlns</font><font color="#0000ff" size="2">=&quot;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&quot;</font><font size="2"> </font><font color="#0000ff" size="2">&gt; 
<p>&lt;</p></font><font color="#800000" size="2">head</font><font size="2"> </font><font color="#ff0000" size="2">id</font><font color="#0000ff" size="2">=&quot;Head1&quot;</font><font size="2"> </font><font color="#ff0000" size="2">runat</font><font color="#0000ff" size="2">=&quot;server&quot;&gt; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">&lt;</font><font color="#800000" size="2">title</font><font color="#0000ff" size="2">&gt;</font><font size="2">selection</font><font color="#0000ff" size="2">&lt;/</font><font color="#800000" size="2">title</font><font color="#0000ff" size="2">&gt; 
<p></p></font><font size="2">  
<p></p>
<p></p></font><font color="#0000ff" size="2">  
<p>&lt;/</p></font><font color="#800000" size="2">head</font><font color="#0000ff" size="2">&gt; 
<p>&lt;</p></font><font color="#800000" size="2">body</font><font color="#0000ff" size="2">&gt; 
<p>&lt;</p></font><font color="#800000" size="2">br</font><font size="2"> </font><font color="#0000ff" size="2">/&gt; 
<p></p></font><font size="2">  
<p>&lt;%</p>
<p></p></font><font size="2">
<p></p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> x0 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;100&quot; 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> y0 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;100&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> x1 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;120&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> y1 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;120&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> sessionid1 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> siteConnection </font><font color="#0000ff" size="2">As</font><font size="2"> MgSiteConnection 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> resourceSrvc </font><font color="#0000ff" size="2">As</font><font size="2"> MgResourceService 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> myLayerName </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;line6&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> mapname </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;Sheboygan&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> map </font><font color="#0000ff" size="2">As</font><font size="2"> MgMap 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> featureSrvc </font><font color="#0000ff" size="2">As</font><font size="2"> MgFeatureService 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> myLayer </font><font color="#0000ff" size="2">As</font><font size="2"> MgLayer 
<p></p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> configPath </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;C:\Program Files\Autodesk\MapGuideEnterprise2008\WebServerExtensions\www\webconfig.ini&quot; 
<p></p></font><font size="2">  
<p>MapGuideApi.MgInitializeWebTier(configPath)</p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> site1 </font><font color="#0000ff" size="2">As</font><font size="2"> MgSite = </font><font color="#0000ff" size="2">New</font><font size="2"> MgSite() 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> userInfo </font><font color="#0000ff" size="2">As</font><font size="2"> MgUserInformation = </font><font color="#0000ff" size="2">New</font><font size="2"> MgUserInformation(</font><font color="#800000" size="2">&quot;Administrator&quot;</font><font size="2">, </font><font color="#800000" size="2">&quot;admin&quot;</font><font size="2">) 
<p>siteConnection = </p></font><font color="#0000ff" size="2">New</font><font size="2"> MgSiteConnection() 
<p>siteConnection.Open(userInfo)</p>
<p>site1 = siteConnection.GetSite()</p>
<p>sessionid1 = site1.CreateSession()</p>
<p>userInfo.SetMgSessionId(sessionid1)</p>
<p>resourceSrvc = siteConnection.CreateService(MgServiceType.ResourceService)</p>
<p>featureSrvc = siteConnection.CreateService(MgServiceType.FeatureService)</p>
<p></p>
<p>Response.Charset = </p></font><font color="#800000" size="2">&quot;utf-8&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> layerDef </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;Library://Samples/Sheboygan/Layers/&quot;</font><font size="2"> + myLayerName + </font><font color="#800000" size="2">&quot;.LayerDefinition&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> layerDefId </font><font color="#0000ff" size="2">As</font><font size="2"> MgResourceIdentifier = </font><font color="#0000ff" size="2">New</font><font size="2"> MgResourceIdentifier(layerDef) 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> dataSource </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = </font><font color="#800000" size="2">&quot;Library://Samples/Sheboygan/Data/&quot;</font><font size="2"> + myLayerName + </font><font color="#800000" size="2">&quot;.FeatureSource&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> dataSourceId </font><font color="#0000ff" size="2">As</font><font size="2"> MgResourceIdentifier = </font><font color="#0000ff" size="2">New</font><font size="2"> MgResourceIdentifier(dataSource) 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> resourceID2 </font><font color="#0000ff" size="2">As</font><font size="2"> MgResourceIdentifier = </font><font color="#0000ff" size="2">New</font><font size="2"> MgResourceIdentifier(</font><font color="#800000" size="2">&quot;Library://Samples/Sheboygan/Maps/Sheboygan.MapDefinition&quot;</font><font size="2">) 
<p></p>
<p>map = </p></font><font color="#0000ff" size="2">New</font><font size="2"> MgMap(siteConnection) 
<p>map.Create(resourceSrvc, resourceID2, mapname)</p>
<p></p>
<p>map.Save()</p>
<p>map.Open(resourceSrvc, mapname)</p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> myClassDef </font><font color="#0000ff" size="2">As</font><font size="2"> MgClassDefinition 
<p></p></font><font color="#0000ff" size="2">If</font><font size="2"> (DoesLayerExist(myLayerName, map) = </font><font color="#0000ff" size="2">False</font><font size="2">) </font><font color="#0000ff" size="2">Then 
<p></p></font><font size="2">  
<p></p>
<p></p></font><font color="#008000" size="2">&#39;//create Feature Source 
<p></p></font><font size="2">  
<p>myClassDef = </p></font><font color="#0000ff" size="2">New</font><font size="2"> MgClassDefinition() 
<p>myClassDef.SetName(</p></font><font color="#800000" size="2">&quot;line6&quot;</font><font size="2">) 
<p></p></font><font color="#008000" size="2">&#39;myClassDef.SetDescription(myLayerName + &quot; Feature Source&quot;) 
<p></p></font><font size="2">  
<p></p></font><font color="#008000" size="2">&#39;myClassDef.SetDefaultGeometryPropertyName(&quot;SHPGEOM&quot;) 
<p></p></font><font size="2">  
<p></p></font><font color="#008000" size="2">&#39;Set KEY Property 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> prop </font><font color="#0000ff" size="2">As</font><font size="2"> MgDataPropertyDefinition = </font><font color="#0000ff" size="2">New</font><font size="2"> MgDataPropertyDefinition(</font><font color="#800000" size="2">&quot;KEY&quot;</font><font size="2">) 
<div>
<p>prop.SetDataType(MgPropertyType.Int32)</p>
<p>prop.SetAutoGeneration(</p></div></font><font color="#0000ff" size="2">True</font><font size="2">) 
<p>prop.SetReadOnly(</p></font><font color="#0000ff" size="2">True</font><font size="2">) 
<p>prop.SetNullable(</p></font><font color="#0000ff" size="2">False</font><font size="2">) 
<p>myClassDef.GetProperties().Add(prop)</p>
<p>myClassDef.GetIdentityProperties().Add(prop)</p>
<p></p></font><font color="#008000" size="2">&#39;Set ID Property 
<p></p></font>
<div><font size="2">  
<p>prop = </p></font><font color="#0000ff" size="2">New</font><font size="2"> MgDataPropertyDefinition(</font><font color="#800000" size="2">&quot;ID&quot;</font><font size="2">) 
<p>prop.SetDataType(MgPropertyType.Int32)</p>
<p>myClassDef.GetProperties().Add(prop)</p>
<p></p>
<p></p>
<p></p></font></div><font color="#008000" size="2">&#39;et geometry property 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> geomProp </font><font color="#0000ff" size="2">As</font><font size="2"> MgGeometricPropertyDefinition = </font><font color="#0000ff" size="2">New</font><font size="2"> MgGeometricPropertyDefinition(</font><font color="#800000" size="2">&quot;SHPGEOM&quot;</font><font size="2">) 
<p>geomProp.SetGeometryTypes(MgFeatureGeometricType.Point)</p>
<p>geomProp.SetHasElevation(</p></font><font color="#0000ff" size="2">False</font><font size="2">) 
<p>geomProp.SetHasMeasure(</p></font><font color="#0000ff" size="2">False</font><font size="2">) 
<p>geomProp.SetSpatialContextAssociation(</p></font><font color="#800000" size="2">&quot;LL84&quot;</font><font size="2">) 
<p>myClassDef.GetProperties().Add(geomProp)</p></font><font size="2">
<p></p></font><font color="#008000" size="2">&#39;Create the schema 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> schema </font><font color="#0000ff" size="2">As</font><font size="2"> MgFeatureSchema = </font><font color="#0000ff" size="2">New</font><font size="2"> MgFeatureSchema() 
<p>schema.SetName(</p></font><font color="#800000" size="2">&quot;SHP_Shema&quot;</font><font size="2">) 
<p>schema.GetClasses().Add(myClassDef)</p>
<p></p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> sdfParams </font><font color="#0000ff" size="2">As</font><font size="2"> MgCreateSdfParams = </font><font color="#0000ff" size="2">New</font><font size="2"> MgCreateSdfParams(</font><font color="#800000" size="2">&quot;MGA-56 (GDA94 /MGA zone 56)&quot;</font><font size="2">, map.GetMapSRS(), schema) 
<p>featureSrvc.CreateFeatureSource(dataSourceId, sdfParams)</p>
<p> </p>
<p></p>
<p></p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> content </font><font color="#0000ff" size="2">As</font><font size="2"> MgByteSource = </font><font color="#0000ff" size="2">New</font><font size="2"> MgByteSource(</font><font color="#800000" size="2">&quot;C:\Program Files\Autodesk\MapGuideEnterprise2008\WebServerExtensions\www\createpoint\LayerDefinition.xml&quot;</font><font size="2">) 
<div>
<p>resourceSrvc.SetResource(layerDefId, content.GetReader(), </p></div></font><font color="#0000ff" size="2">Nothing</font><font size="2">) 
<p>myLayer = </p></font><font color="#0000ff" size="2">New</font><font size="2"> MgLayer(layerDefId, resourceSrvc) 
<p>myLayer.SetName(myLayerName)</p>
<p>myLayer.SetLegendLabel(myLayerName)</p>
<p>myLayer.SetDisplayInLegend(</p></font><font color="#0000ff" size="2">True</font><font size="2">) 
<p>myLayer.SetSelectable(</p></font><font color="#0000ff" size="2">False</font><font size="2">) 
<div>
<p>map.GetLayers().Insert(0, myLayer)</p>
<p></p></div></font><font color="#008000" size="2">&#39;map.GetLayers().Add(myLayer) 
<p></p></font>
<div><font size="2">  
<p>myLayer.ForceRefresh()</p></font><font size="2">
<p></p>
<p>map.Save(resourceSrvc)</p>
<p></p>
<p></p>
<p></p>
<p></p></font></div><font color="#0000ff" size="2">End</font><font size="2"> </font><font color="#0000ff" size="2">If 
<p></p></font><font size="2">  
<p></p>
<p></p>
<p></p></font><font size="2">
<p></p></font><font color="#008000" size="2">Dim insertFeatures2 As MgInsertFeatures = New MgInsertFeatures(myLayerName, makeLine2(&quot;1&quot;, x0, y0, x1, y1)) 
<p></p></font><font size="2">  
<p></p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> commands </font><font color="#0000ff" size="2">As</font><font size="2"> MgFeatureCommandCollection = </font><font color="#0000ff" size="2">New</font><font size="2"> MgFeatureCommandCollection() 
<p></p></font><font color="#008000" size="2">commands.Add(insertFeatures2) 
<p></p></font><font size="2">  
<p></p>
<p>myLayer.UpdateFeatures(commands)</p>
<p></p>
<p></p></font><font color="#008000" size="2">
<p></p></font><font size="2">  
<p></p></font><font size="2">
<p></p>
<p></p></font><font color="#008000" size="2">
<p></p></font><font size="2">  
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p>%&gt;</p>
<p></p></font><font color="#0000ff" size="2">  
<p>&lt;</p></font><font color="#800000" size="2">div</font><font size="2"> </font><font color="#ff0000" size="2">id</font><font color="#0000ff" size="2">=&quot;viewer&quot;&gt; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">&lt;</font><font color="#800000" size="2">iframe</font><font size="2"> </font><font color="#ff0000" size="2">id</font><font color="#0000ff" size="2">=&quot;carte&quot;</font><font size="2"> </font><font color="#ff0000" size="2">width</font><font color="#0000ff" size="2">=&quot;800&quot;</font><font size="2"> </font><font color="#ff0000" size="2">height</font><font color="#0000ff" size="2">=&quot;300&quot;</font><font size="2"> </font><font color="#ff0000" size="2">frameborder</font><font color="#0000ff" size="2">=&quot;0&quot;</font><font size="2"> </font><font color="#ff0000" size="2">scrolling</font><font color="#0000ff" size="2">=&quot;no&quot;</font><font size="2"> </font><font color="#ff0000" size="2">src</font><font color="#0000ff" size="2">=&quot;<a href="http://localhost/mapguide2008/mapviewerajax/?SESSION=" target="_blank">http://localhost/mapguide2008/mapviewerajax/?SESSION=</a></font><font size="2">&lt;%=sessionid1 %&gt;</font><font color="#0000ff" size="2">&amp;WEBLAYOUT=Library%3a%2f%2fSamples%2fSheboygan%2fLayouts%2fSheboyganAsp.WebLayout&quot;</font><font size="2"> </font><font color="#ff0000" size="2">name</font><font color="#0000ff" size="2">=&quot;fenetre&quot;&gt;&lt;/</font><font color="#800000" size="2">iframe</font><font color="#0000ff" size="2">&gt; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">&lt;/</font><font color="#800000" size="2">div</font><font color="#0000ff" size="2">&gt; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">&lt;</font><font color="#800000" size="2">br</font><font size="2"> </font><font color="#0000ff" size="2">/&gt; 
<p></p></font><font size="2"> </font><font color="#0000ff" size="2"> 
<p>&lt;/</p></font><font color="#800000" size="2">body</font><font color="#0000ff" size="2">&gt; 
<p>&lt;</p></font><font color="#800000" size="2">script</font><font size="2"> </font><font color="#ff0000" size="2">type</font><font color="#0000ff" size="2">=&quot;text/javascript&quot;&gt; 
<p></p></font><font size="2"><font size="2">  
<p></p></font><font color="#0000ff" size="2">function</font><font size="2"> refresh() 
<p>{</p>
<p></p></font><font color="#008000" size="2">//carte.GetMapFrame().GetLayers(true,true); 
<p></p></font><font size="2">  
<p></p></font><font color="#008000" size="2">//carte.GetScriptFrame().location.href = &quot;essai.aspx&quot;; 
<p></p></font><font size="2">  
<p>frames[</p></font><font color="#800000" size="2">&#39;fenetre&#39;</font><font size="2">].location.reload(); 
<p>carte.GetMapFrame().Refresh();</p>
<p></p></font><font color="#008000" size="2">//carte.ExecuteMapAction(20); 
<p></p></font><font size="2">  
<p></p></font><font color="#008000" size="2">//carte.GetMapFrame().ExecuteMapAction(1); 
<p></p></font><font size="2">  
<p></p></font><font color="#008000" size="2">//carte.GetTaskFrame().location.href = &quot;essai.aspx&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#008000" size="2">//carte.GetScriptFrame().location.href = &quot;essai.aspx&quot; 
<p></p></font><font size="2">  
<p></p></font><font color="#008000" size="2">//carte.GetMapFrame().ExecuteMapAction(20); 
<p> </p>
<p></p></font><font size="2">  
<p></p></font><font color="#008000" size="2">//carte.GetMapFrame().ExecuteMapAction(20); 
<p></p></font><font size="2">  
<p>}</p>
<p></p></font></font><font color="#0000ff" size="2">
<p>&lt;/</p></font><font color="#800000" size="2">script</font><font color="#0000ff" size="2">&gt; 
<p> </p>
<p>&lt;</p></font><font color="#800000" size="2">script</font><font size="2"> </font><font color="#ff0000" size="2">runat</font><font color="#0000ff" size="2">=&quot;server&quot;&gt; 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">
<p></p></font><font size="2"><font color="#0000ff" size="2">  
<p>Public</p></font><font size="2"></font><font color="#0000ff" size="2">Function</font><font size="2"> makeLine2(</font><font color="#0000ff" size="2">ByVal</font><font size="2"> Name </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2">, </font><font color="#0000ff" size="2">ByVal</font><font size="2"> x0 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2">, </font><font color="#0000ff" size="2">ByVal</font><font size="2"> y0 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2">, </font><font color="#0000ff" size="2">ByVal</font><font size="2"> x1 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2">, </font><font color="#0000ff" size="2">ByVal</font><font size="2"> y1 </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2">) </font><font color="#0000ff" size="2">As</font><font size="2"> MgPropertyCollection 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> PropertyCollection2 </font><font color="#0000ff" size="2">As</font><font size="2"> MgPropertyCollection = </font><font color="#0000ff" size="2">New</font><font size="2"> MgPropertyCollection() 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> nameProperty2 </font><font color="#0000ff" size="2">As</font><font size="2"> MgInt32Property = </font><font color="#0000ff" size="2">New</font><font size="2"> MgInt32Property(</font><font color="#800000" size="2">&quot;ID&quot;</font><font size="2">, 1) 
<p>PropertyCollection2.Add(nameProperty2)</p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> wktReaderWriter2 </font><font color="#0000ff" size="2">As</font><font size="2"> MgWktReaderWriter = </font><font color="#0000ff" size="2">New</font><font size="2"> MgWktReaderWriter() 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> agfReaderWriter2 </font><font color="#0000ff" size="2">As</font><font size="2"> MgAgfReaderWriter = </font><font color="#0000ff" size="2">New</font><font size="2"> MgAgfReaderWriter() 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> geometry2 </font><font color="#0000ff" size="2">As</font><font size="2"> MgGeometry = wktReaderWriter2.Read(</font><font color="#800000" size="2">&quot;LINESTRING XY (&quot;</font><font size="2"> + x0 + </font><font color="#800000" size="2">&quot; &quot;</font><font size="2"> + y0 + </font><font color="#800000" size="2">&quot;,&quot;</font><font size="2"> + x1 + </font><font color="#800000" size="2">&quot; &quot;</font><font size="2"> + y1 + </font><font color="#800000" size="2">&quot;)&quot;</font><font size="2">) 
<p></p>
<p></p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> geometryByteReader2 </font><font color="#0000ff" size="2">As</font><font size="2"> MgByteReader = agfReaderWriter2.Write(geometry2) 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> geometryProperty2 </font><font color="#0000ff" size="2">As</font><font size="2"> MgGeometryProperty = </font><font color="#0000ff" size="2">New</font><font size="2"> MgGeometryProperty(</font><font color="#800000" size="2">&quot;SHPGEOM&quot;</font><font size="2">, geometryByteReader2) 
<p>PropertyCollection2.Add(geometryProperty2)</p>
<p></p></font><font color="#0000ff" size="2">Return</font><font size="2"> PropertyCollection2 
<p></p></font><font color="#0000ff" size="2">End</font><font size="2"> </font><font color="#0000ff" size="2">Function</font> 
<p></p>
<p></p>
<p></p></font><font color="#0000ff" size="2">Function</font><font size="2"> DoesLayerExist(</font><font color="#0000ff" size="2">ByVal</font><font size="2"> LayerName </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2">, </font><font color="#0000ff" size="2">ByVal</font><font size="2"> Map </font><font color="#0000ff" size="2">As</font><font size="2"> MgMap) </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">Boolean 
<p></p></font><font size="2">  
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> layers </font><font color="#0000ff" size="2">As</font><font size="2"> MgLayerCollection = Map.GetLayers() 
<p></p></font><font color="#0000ff" size="2">Return</font><font size="2"> (layers.Contains(LayerName)) 
<p></p></font><font color="#0000ff" size="2">End</font><font size="2"> </font><font color="#0000ff" size="2">Function 
<p></p></font><font size="2">  
<p></p>
<p></p></font><font color="#0000ff" size="2">Function</font><font size="2"> LoadTemplate2(</font><font color="#0000ff" size="2">ByVal</font><font size="2"> filePath </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2">) </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String 
<p></p></font><font size="2">  
<p></p>
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> sr </font><font color="#0000ff" size="2">As</font><font size="2"> StreamReader = File.OpenText(filePath) 
<p></p></font><font color="#0000ff" size="2">Dim</font><font size="2"> template </font><font color="#0000ff" size="2">As</font><font size="2"> </font><font color="#0000ff" size="2">String</font><font size="2"> = sr.ReadToEnd() 
<p></p></font><font color="#0000ff" size="2">Return</font><font size="2"> template 
<p></p></font><font color="#0000ff" size="2">End</font><font size="2"> </font><font color="#0000ff" size="2">Function 
<p> </p>
<p></p></font><font size="2">  
<p></p>
<p></p>
<p></p>
<p></p></font><font color="#0000ff" size="2">  
<p>&lt;/</p></font><font color="#800000" size="2">script</font><font color="#0000ff" size="2">&gt; 
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p></p></font><font size="2">  
<p></p>
<p></p></font><font color="#0000ff" size="2">  
<p>&lt;/</p></font><font color="#800000" size="2">html</font><font color="#0000ff" size="2">&gt; 
<p></p></font>
<div>      <br>      <br>      
<hr width="90%" size="4">
<br>_______________________________________________<br>mapguide-users mailing list<br><a href="mailto:mapguide-users@lists.osgeo.org" target="_blank">mapguide-users@lists.osgeo.org</a><br><a href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
  </div></div>
<div>
<div></div>
<div>
<div>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid"><br>_______________________________________________<br>mapguide-users mailing list<br><a href="mailto:mapguide-users@lists.osgeo.org" target="_blank">mapguide-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br><br></blockquote></div><br></div></div></blockquote></div></div></div><br></blockquote>
</div><br>