<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>DotSpatial Discussions Rss Feed</title><link>http://dotspatial.codeplex.com/Thread/List.aspx</link><description>DotSpatial Discussions Rss Description</description><item><title>New Post: Legendheader text of layer wont appear in legend</title><link>http://dotspatial.codeplex.com/discussions/444949</link><description>&lt;div style="line-height: normal;"&gt;I have a working programm which converts access input to layers.... here is part of the code...&lt;br /&gt;
My problem is that in the second part, a function where i make the legend... the layername doesnt show in the legend....&lt;br /&gt;
&lt;br /&gt;
__pPointSym.LegendText = &amp;quot;Onderzoeksgebied&amp;quot;__&lt;br /&gt;
&lt;br /&gt;
although the categories-symbology appear in the right way in the legend the name does not&lt;br /&gt;
and i think as a cause by it i cant select the layer either....&lt;br /&gt;
&lt;br /&gt;
so the question is, what am i missing?&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;            Dim Layer As IMapLayer = Form1.myVenster.Layers.Add(fsAdres)
            Dim pPointMapLayer As IMapFeatureLayer
            If Layer IsNot Nothing Then
                If Layer.ProjectionString Is Nothing Then
                    Layer.Projection = DefineProjection()
                End If
                fsAdres = TryCast(Layer.DataSet, IFeatureSet)
                pPointMapLayer = TryCast(Layer, IMapFeatureLayer)
                pPointMapLayer.Symbology = SetSwungOnderzoeksgebieden(fsAdres)
                Return
                fsAdres = Nothing
            Else
                Return
            End If&lt;/code&gt;&lt;/pre&gt;

&lt;pre&gt;&lt;code&gt;    Public Function SetSwungOnderzoeksgebieden(ByVal pfs As IFeatureSet) As IFeatureScheme
        Dim pPointSym As IPointSymbolizer = New PointSymbolizer
        Dim pScheme As IFeatureScheme
        Dim category1 As IPointCategory = New PointCategory(System.Drawing.Color.DarkRed, DotSpatial.Symbology.PointShape.Rectangle, 6.0)
        Dim category2 As IPointCategory = New PointCategory(System.Drawing.Color.LightGreen, DotSpatial.Symbology.PointShape.Rectangle, 8.0)
           Try
            pScheme = New PointScheme()
            pPointSym.LegendText = &amp;quot;Onderzoeksgebied&amp;quot;
            category1.FilterExpression = &amp;quot;[BinnenOnderzoeksgebied] = false&amp;quot;
            category1.LegendText = &amp;quot;Buiten onderzoeksgebied&amp;quot;
            category2.FilterExpression = &amp;quot;[BinnenOnderzoeksgebied] = true&amp;quot;
            category2.LegendText = &amp;quot;Binnen onderzoeksgebied&amp;quot;
            pScheme.AddCategory(category1)
            pScheme.AddCategory(category2)
            Return pScheme
        Catch ex As Exception
            MsgBox(ex.ToString, MsgBoxStyle.Critical, &amp;quot;Fout in SetSwungOnderzoeksgebieden&amp;quot;)
            Return Nothing
        End Try
    End Function&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>Joska</author><pubDate>Sat, 25 May 2013 02:55:58 GMT</pubDate><guid isPermaLink="false">New Post: Legendheader text of layer wont appear in legend 20130525025558A</guid></item><item><title>New Post: how to centre mapwindow around a certain coordinate?</title><link>http://dotspatial.codeplex.com/discussions/444837</link><description>&lt;div style="line-height: normal;"&gt;AND HERE is the solution&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;                Dim XRekenpunt As Object = dtSwungRekenpunt.Rows.Item(0).Item(&amp;quot;X&amp;quot;)
                Dim YRekenpunt As Object = dtSwungRekenpunt.Rows.Item(0).Item(&amp;quot;Y&amp;quot;)
                myVenster.ViewExtents.MinX = XRekenpunt - 20
                myVenster.ViewExtents.MaxX = XRekenpunt + 20
                myVenster.ViewExtents.MinY = YRekenpunt - 20 * (myVenster.Size.Height / myVenster.Size.Width)
                myVenster.ViewExtents.MaxY = YRekenpunt + 20 * (myVenster.Size.Height / myVenster.Size.Width)
                myVenster.Refresh()&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>Joska</author><pubDate>Sat, 25 May 2013 02:31:51 GMT</pubDate><guid isPermaLink="false">New Post: how to centre mapwindow around a certain coordinate? 20130525023151A</guid></item><item><title>New Post: Zonal Statistics</title><link>http://dotspatial.codeplex.com/discussions/444123</link><description>&lt;div style="line-height: normal;"&gt;According to the documentations Xllcenter and Yllcenter must be the center of 1st cell coord in grid which is bottom-left cell.&lt;br /&gt;
But as i said, i found: &lt;br /&gt;
  Xllcenter = Raster.Extent.MinX + Raster.CellWidth (should be Raster.Extent.MinX + Raster.CellWidth / 2) and &lt;br /&gt;
  Yllcenter = Raster.Extent.MinY (should be Yllcenter = Raster.Extent.MinY + Raster.CellHeight / 2)&lt;br /&gt;
I think this is a bug.&lt;br /&gt;
&lt;/div&gt;</description><author>mese79</author><pubDate>Fri, 24 May 2013 07:23:04 GMT</pubDate><guid isPermaLink="false">New Post: Zonal Statistics 20130524072304A</guid></item><item><title>New Post: how to centre mapwindow around a certain coordinate?</title><link>http://dotspatial.codeplex.com/discussions/444837</link><description>&lt;div style="line-height: normal;"&gt;I have a working application which primarly now converts database data to shapes and projects them in the dutch coordinate system on the mapwindow.&lt;br /&gt;
&lt;br /&gt;
Now i made a button which looks up a certain ID-point in de database and I would like to jump to this point on the mapwindow where this point is in the centre....&lt;br /&gt;
&lt;br /&gt;
Below u see the part of the code where here&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;            Dim XRekenpunt As Object = dtSwungRekenpunt.Rows.Item(0).Item(&amp;quot;X&amp;quot;)
            Dim YRekenpunt As Object = dtSwungRekenpunt.Rows.Item(0).Item(&amp;quot;Y&amp;quot;)
&lt;/code&gt;&lt;/pre&gt;

I succesfully managed to retrieve the coordinates....   so how to centre the window on this point...? Can anyone give me ideas?&lt;br /&gt;
&lt;br /&gt;
Thx  Joska&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;    Private Sub btnZoekMachine_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnZoekMachine.Click
        Dim strPadFile As String
        Dim ZoekRekenpunt As Long

        strPadFile = &amp;quot;&amp;quot;
        Try
            If DMC_DatabaseType = &amp;quot;SWUNG&amp;quot; Then
                strPadFile = lblPadFileSwung.Text
            ElseIf DMC_DatabaseType = &amp;quot;BOOGIE&amp;quot; Then
                strPadFile = lblPadFileBoogie.Text
            End If
            ZoekRekenpunt = Val(txtRekenpunt.Text)
            '--------------------------------------------------------------------------------------------
            'ZOEK DE SWUNG REKENPUNT in de database
            If DMC_DatabaseType = &amp;quot;SWUNG&amp;quot; And rbtZoekrekenpunt.Checked = True Then
                'Maak een nieuwe datatabel voor eventueel gevonden rekenpunten
                Dim dtSwungRekenpunt As New DataTable()
                'Maak een connectie met de database en vul de tabel
                Dim conSwungDatabase As New System.Data.OleDb.OleDbConnection(&amp;quot;Provider=Microsoft.ACE.OLEDB.12.0;Data Source=&amp;quot; &amp;amp; strPadFile &amp;amp; &amp;quot;;Persist Security Info=False;User Id=admin;Password=;&amp;quot;)
                conSwungDatabase.Open()
                Using cmd As New System.Data.OleDb.OleDbCommand()
                    cmd.Connection = conSwungDatabase
                    cmd.CommandText = &amp;quot;SELECT tblWaarneempunten.ID, tblWaarneempunten.X, tblWaarneempunten.Y &amp;quot; _
                    &amp;amp; &amp;quot;FROM tblWaarneempunten &amp;quot; _
                    &amp;amp; &amp;quot;WHERE (((tblWaarneempunten.ID)= &amp;quot; &amp;amp; ZoekRekenpunt &amp;amp; &amp;quot;));&amp;quot;
                    Dim rdrR As System.Data.OleDb.OleDbDataReader = cmd.ExecuteReader()
                    dtSwungRekenpunt.Load(rdrR)
                End Using
                'Sluit de connectie
                conSwungDatabase.Close()
                Dim XRekenpunt As Object = dtSwungRekenpunt.Rows.Item(0).Item(&amp;quot;X&amp;quot;)
                Dim YRekenpunt As Object = dtSwungRekenpunt.Rows.Item(0).Item(&amp;quot;Y&amp;quot;)

              SO WHAT MUST GET HERE TO MAKE THE WINDOW CENTRE AROUND THIS POINT POSSIBLE?

            End If

        Catch ex As Exception
            MsgBox(ex.ToString, MsgBoxStyle.Critical, &amp;quot;Fout in btnZoekMachine_Click&amp;quot;)
            Return
        End Try
    End Sub&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>Joska</author><pubDate>Fri, 24 May 2013 04:56:29 GMT</pubDate><guid isPermaLink="false">New Post: how to centre mapwindow around a certain coordinate? 20130524045629A</guid></item><item><title>New Post: Problem when loading other .dll from my plugin dll</title><link>http://dotspatial.codeplex.com/discussions/444085</link><description>&lt;div style="line-height: normal;"&gt;atcUtility  depends on MapWinUtility.dll, so be sure to get the version of MapWinUtility.dll that was in the same package with it.&lt;br /&gt;
If this is the version from BASINS, then it is compiled for x86 and .Net 3.5. If it is from D4EM, then it is compiled for x86 and .Net 4.0.&lt;br /&gt;
&lt;/div&gt;</description><author>vatavian</author><pubDate>Thu, 23 May 2013 17:27:42 GMT</pubDate><guid isPermaLink="false">New Post: Problem when loading other .dll from my plugin dll 20130523052742P</guid></item><item><title>New Post: Dotspatial.Plugins.MapwindowProjectFileCompatibility</title><link>http://dotspatial.codeplex.com/discussions/444647</link><description>&lt;div style="line-height: normal;"&gt;I think it will be very difficult, beacause when I wrote the code below :&lt;br /&gt;
&lt;br /&gt;
OpenProjectMwprj mwprjOpener = new OpenProjectMwprj();&lt;br /&gt;
 mwprjOpener.App = appManager1;               &lt;br /&gt;
&lt;pre&gt;&lt;code&gt;            try
            {
               mwprjOpener.Open(ProjectName);
            }
            catch (IOException exIO)
            {
                MessageBox.Show(this, &amp;quot;Could not open the specified map file &amp;quot; + ProjectName + Environment.NewLine + Environment.NewLine + exIO.Message, &amp;quot;Error&amp;quot;,
                                MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
&lt;/code&gt;&lt;/pre&gt;

I always got this error : RuntimeBinderException: Cannot apply indexing with [] to an expression of type 'DotSpatial.Plugins.MapWindowProjectFileCompatibility.DynamicXMLNode'&lt;br /&gt;
&lt;br /&gt;
Which I didn't find the solution . &lt;br /&gt;
&lt;br /&gt;
Anyway Thanks for your explanation vatavian.&lt;br /&gt;
&lt;/div&gt;</description><author>Luffy16</author><pubDate>Thu, 23 May 2013 08:40:31 GMT</pubDate><guid isPermaLink="false">New Post: Dotspatial.Plugins.MapwindowProjectFileCompatibility 20130523084031A</guid></item><item><title>New Post: Zonal Statistics</title><link>http://dotspatial.codeplex.com/discussions/444123</link><description>&lt;div style="line-height: normal;"&gt;ops... yes you are right! sorry for the wrong info,&lt;br /&gt;
&lt;br /&gt;
So you are basically saying that the xllcenter and yllcenter are pointing to the bottom right corner of cell (0,0)?&lt;br /&gt;
&lt;br /&gt;
Oscar&lt;br /&gt;
&lt;/div&gt;</description><author>Oscarafone77</author><pubDate>Thu, 23 May 2013 08:27:20 GMT</pubDate><guid isPermaLink="false">New Post: Zonal Statistics 20130523082720A</guid></item><item><title>New Post: Dotspatial.Plugins.MapwindowProjectFileCompatibility</title><link>http://dotspatial.codeplex.com/discussions/444647</link><description>&lt;div style="line-height: normal;"&gt;Dotspatial.Plugins.MapwindowProjectFileCompatibility was created based on an earlier version of MapWindow 4. The MapWindow 4 project file has evolved in a non-backward-compatible way since then. It should be possible for someone to update MapwindowProjectFileCompatibility to also be able to read newer project files, but it would take some effort.&lt;br /&gt;
&lt;/div&gt;</description><author>vatavian</author><pubDate>Wed, 22 May 2013 21:38:44 GMT</pubDate><guid isPermaLink="false">New Post: Dotspatial.Plugins.MapwindowProjectFileCompatibility 20130522093844P</guid></item><item><title>New Post: Dotspatial.Plugins.MapwindowProjectFileCompatibility</title><link>http://dotspatial.codeplex.com/discussions/444647</link><description>&lt;div style="line-height: normal;"&gt;Hi everybody.&lt;br /&gt;
&lt;br /&gt;
I have built a GIS application using Dotspatial. I am able to open Dotspatial projects (*.dspx),Images maps, PDF maps, but I can't open a mapwindow project. I tried to use the plugin Dotspatial.Plugins.MapwindowProjectFileCompatibility to open the mapwindow project but I failed.&lt;br /&gt;
&lt;br /&gt;
Is there any possibility to do it please ?&lt;br /&gt;
&lt;/div&gt;</description><author>Luffy16</author><pubDate>Wed, 22 May 2013 19:35:38 GMT</pubDate><guid isPermaLink="false">New Post: Dotspatial.Plugins.MapwindowProjectFileCompatibility 20130522073538P</guid></item><item><title>New Post: Saving points, lines or polygons with project and reload them</title><link>http://dotspatial.codeplex.com/discussions/444563</link><description>&lt;div style="line-height: normal;"&gt;Hi&lt;br /&gt;
&lt;br /&gt;
When I draw a point on a layer, I save the project for example (test1.dspx), but when I want to open it again , either I can't find the points which I drew or the project does not want to open&lt;br /&gt;
can you help me please to solve this&lt;br /&gt;
&lt;/div&gt;</description><author>Luffy16</author><pubDate>Wed, 22 May 2013 10:04:47 GMT</pubDate><guid isPermaLink="false">New Post: Saving points, lines or polygons with project and reload them 20130522100447A</guid></item><item><title>New Post: Zonal Statistics</title><link>http://dotspatial.codeplex.com/discussions/444123</link><description>&lt;div style="line-height: normal;"&gt;Well actually it is bottom-left cell!&lt;br /&gt;
I figure out my problem. in raster grid first cell is bottom-left one so value[0,0] contains value for that cell.&lt;br /&gt;
But i think i found a bug: &lt;br /&gt;
the Xllcenter and Yllcenter supposed to be center of first cell coordinate, but i found Xllcenter equal to Raster.Extent.MinX + Raster.CellWidth and Yllcenter equal to Raster.Extent.MinY. &lt;br /&gt;
Isn't this a bug?&lt;br /&gt;
&lt;/div&gt;</description><author>mese79</author><pubDate>Mon, 20 May 2013 16:50:29 GMT</pubDate><guid isPermaLink="false">New Post: Zonal Statistics 20130520045029P</guid></item><item><title>New Post: Zonal Statistics</title><link>http://dotspatial.codeplex.com/discussions/444123</link><description>&lt;div style="line-height: normal;"&gt;I think it is the top-left cell&lt;br /&gt;
&lt;br /&gt;
Oscar&lt;br /&gt;
&lt;/div&gt;</description><author>Oscarafone77</author><pubDate>Mon, 20 May 2013 12:58:08 GMT</pubDate><guid isPermaLink="false">New Post: Zonal Statistics 20130520125808P</guid></item><item><title>New Post: Zonal Statistics</title><link>http://dotspatial.codeplex.com/discussions/444123</link><description>&lt;div style="line-height: normal;"&gt;Ok, i think i found the problem but i'm confused.&lt;br /&gt;
The Y axis of the map increases upward (just opposite of computer graphic). right?&lt;br /&gt;
If so in raster grid the raster.Value[0,0] refers to which cell coordinate? the top-left cell or bottom-left one?&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>mese79</author><pubDate>Sat, 18 May 2013 19:07:05 GMT</pubDate><guid isPermaLink="false">New Post: Zonal Statistics 20130518070705P</guid></item><item><title>New Post: Zonal Statistics</title><link>http://dotspatial.codeplex.com/discussions/444123</link><description>&lt;div style="line-height: normal;"&gt;Hi&lt;br /&gt;
I have a raster grid and a polygon layer. I want to calculate Mean value for each polygon from the raster grid.&lt;br /&gt;
Simply i create a loop through each raster cell and check if polygon intersect that cell. if so add cell value to sum and finally calculate mean by sum/cells in polygon.&lt;br /&gt;
But i think there is something wrong, because the results i get by this way is much different from result of ArcGIS 'Zonal Statistics' method. also DS clip raster by polygon gives me a new raster which has statistics very close to ArcGIS.&lt;br /&gt;
So is there problem with polygon.intersects? or my implementation is wrong?&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;...
var cell = new Point(raster.Xllcenter + (raster.CellWidth*col), raster.Yllcenter + raster.CellHeight*row));
if (polygon.Intersects(cell))
{
    count++;
    sum += raster.Value[row, col];
}&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>mese79</author><pubDate>Sat, 18 May 2013 09:39:27 GMT</pubDate><guid isPermaLink="false">New Post: Zonal Statistics 20130518093927A</guid></item><item><title>New Post: Problem when loading other .dll from my plugin dll</title><link>http://dotspatial.codeplex.com/discussions/444085</link><description>&lt;div style="line-height: normal;"&gt;Try to check the platform target  of your project. It has to be the same of your  arcUtility.dll..&lt;br /&gt;
&lt;/div&gt;</description><author>carosoisu</author><pubDate>Fri, 17 May 2013 20:39:01 GMT</pubDate><guid isPermaLink="false">New Post: Problem when loading other .dll from my plugin dll 20130517083901P</guid></item><item><title>New Post: Problem when loading other .dll from my plugin dll</title><link>http://dotspatial.codeplex.com/discussions/444085</link><description>&lt;div style="line-height: normal;"&gt;By the way I am writing plugin for Hydrodesktop...  Cause my Mapwindow 4 can not load the plugin dll I have wrote. Are there anyone have this problem before?&lt;br /&gt;
&lt;br /&gt;
Thank you very much!&lt;br /&gt;
&lt;/div&gt;</description><author>kuaifang</author><pubDate>Fri, 17 May 2013 19:50:38 GMT</pubDate><guid isPermaLink="false">New Post: Problem when loading other .dll from my plugin dll 20130517075038P</guid></item><item><title>New Post: Problem when loading other .dll from my plugin dll</title><link>http://dotspatial.codeplex.com/discussions/444085</link><description>&lt;div style="line-height: normal;"&gt;Hi all,&lt;br /&gt;
&lt;br /&gt;
I have a problem when loading other .dll from my plugin dll. &lt;br /&gt;
&lt;br /&gt;
Here is the thing. I am writing a plugin dll in dotspatial for mapwindow. It works fine. But when I try to use other's dll ( for example I am trying to use atcUtility.dll ) in my own plugin, it shows in mapwindow that :&lt;br /&gt;
&lt;br /&gt;
System.IO.FileNotFoundException: Could not load file or assembly 'atcUtility, Version=3.1.2.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;
File name: 'atcUtility, Version=3.1.2.0, Culture=neutral, &lt;br /&gt;
&lt;br /&gt;
And I can see that dll is just inside CUAHSI HIS\HydroDesktop 1.5.12\Plugins but can not be find. Are there anyone have the same problem before..? &lt;br /&gt;
&lt;br /&gt;
Thank you very much!&lt;br /&gt;
&lt;/div&gt;</description><author>kuaifang</author><pubDate>Fri, 17 May 2013 19:07:52 GMT</pubDate><guid isPermaLink="false">New Post: Problem when loading other .dll from my plugin dll 20130517070752P</guid></item><item><title>New Post: Creating Label using FeatureSet</title><link>http://dotspatial.codeplex.com/discussions/443883</link><description>&lt;div style="line-height: normal;"&gt;I create so called &amp;quot;spatialite&amp;quot; layer too and there is no chance to do &amp;quot;Label Setup&amp;quot; from legend or to do &amp;quot;Export Data All features&amp;quot; too (shape file from this action is corrupted).&lt;br /&gt;
&lt;br /&gt;
I am very interested for help on this.&lt;br /&gt;
&lt;br /&gt;
regards, Vojko&lt;br /&gt;
&lt;/div&gt;</description><author>vzavec</author><pubDate>Thu, 16 May 2013 12:03:35 GMT</pubDate><guid isPermaLink="false">New Post: Creating Label using FeatureSet 20130516120335P</guid></item><item><title>New Post: Creating Label using FeatureSet</title><link>http://dotspatial.codeplex.com/discussions/443883</link><description>&lt;div style="line-height: normal;"&gt;Hi All,&lt;br /&gt;
&lt;br /&gt;
Using shapefiles labeling works like a charm using the following &lt;br /&gt;
&lt;pre&gt;&lt;code&gt; IFeatureLayer CountriesLayer = (IFeatureLayer)WebMap1.AddLayer(BasePath + @&amp;quot;\United States states 2011_AREAS.SHP&amp;quot;);
            PolygonSymbolizer SymbCountries = new PolygonSymbolizer(Color.FromArgb(0, 191, 0));
            SymbCountries.SetFillColor(Color.Transparent);
            SymbCountries.OutlineSymbolizer = new LineSymbolizer(Color.Magenta, 1);
            SymbCountries.ScaleMode = ScaleMode.Simple;
            CountriesLayer.Symbolizer = SymbCountries;

            MapLabelLayer  thislabelLayer = new MapLabelLayer();
            CountriesLayer.LabelLayer = thislabelLayer;
            CountriesLayer.ShowLabels = true;

            WebMap1.MapViewExtents = CountriesLayer.Extent;



            thislabelLayer.Symbology.Categories[0].Expression = &amp;quot;[&amp;quot; + CountriesLayer.DataSet.DataTable.Columns[2].ColumnName+&amp;quot;]&amp;quot;;
            thislabelLayer.Symbolizer.ScaleMode = ScaleMode.Simple;
            thislabelLayer.Symbolizer.Orientation = ContentAlignment.TopCenter;
            thislabelLayer.Symbolizer.LabelPlacementMethod = LabelPlacementMethod.Centroid;
            thislabelLayer.Symbolizer.PartsLabelingMethod = PartLabelingMethod.LabelLargestPart;
            thislabelLayer.Symbolizer.FontSize =7.0F;
&lt;/code&gt;&lt;/pre&gt;

Now when I create a featureset using the following code.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://science.nature.nps.gov/im/units/ARCN/data_management/DotSpatialCodeExamples/index.htm?CreateFeatureSetfromaSQLServerqu.html" rel="nofollow"&gt;http://science.nature.nps.gov/im/units/ARCN/data_management/DotSpatialCodeExamples/index.htm?CreateFeatureSetfromaSQLServerqu.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Can anyone help me how to display this featureset on the maps and label them?&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
psarun&lt;br /&gt;
&lt;/div&gt;</description><author>psarun_cpl</author><pubDate>Thu, 16 May 2013 10:22:00 GMT</pubDate><guid isPermaLink="false">New Post: Creating Label using FeatureSet 20130516102200A</guid></item><item><title>New Post: Loading Map</title><link>http://dotspatial.codeplex.com/discussions/443695</link><description>&lt;div style="line-height: normal;"&gt;My objective is to load a map and placed different items on the map , the map has to be continuously refreshed. &lt;br /&gt;
I have followed the instuctions at :  &lt;a href="http://screencast.com/t/htiyqvLh" rel="nofollow"&gt;http://screencast.com/t/htiyqvLh&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above instructions involve dragging and dropping the different control objects on a form.&lt;br /&gt;
&lt;br /&gt;
Could anyone show me the tutorials on how to code the map and refresh the map.&lt;br /&gt;
&lt;/div&gt;</description><author>SJY</author><pubDate>Wed, 15 May 2013 09:22:53 GMT</pubDate><guid isPermaLink="false">New Post: Loading Map 20130515092253A</guid></item></channel></rss>