New Post: Populate list with available coordinate system?
Is there a way to get a list of all available coordinate systems? What I want is to let a user select what coordinate system it is, when importing coordinate from a data source that contains no...
View ArticleNew Post: Populate list with available coordinate system?
OK, I found out var geoSystems = KnownCoordinateSystems.Geographic.Names.ToList(); var projSystems = KnownCoordinateSystems.Projected.Names.ToList(); var nationalGrids =...
View ArticleNew Post: Toolmanager question
ytlee - just go into the dotspatial folder and copy the tools folder into your project's plugins folder.
View ArticleNew Post: Open shp file without dbf
I've made a change (locally in Trunk) to allow opening the geometries if you have a shp file, but no dbf: in class Shapefile: [Browsable(false),...
View ArticleNew Post: GeoJSON support
Hello, Does DotSpatial support GeoJSON? Is there any API provided to export a geometry to GeoJSON or create a geometry from GeoJSON? Thank you
View ArticleNew Post: Open shp file without dbf
I tried to create an empty dbf, and it seems the geometries are shown correctly on the map, so I guess the geometries are loaded. If I try to open the attribute table tough, only one empty line is...
View ArticleCommented Issue: ManhattanShapes error [24146]
I am experiencing a little problem in converting an integer raster to polygon shapefile using manhattanshapes.here is the code Dim a As New DotSpatial.Plugins.Taudem.Port.ManhattanShapes(fname) Dim g...
View ArticleCommented Issue: ManhattanShapes error [24146]
I am experiencing a little problem in converting an integer raster to polygon shapefile using manhattanshapes.here is the code Dim a As New DotSpatial.Plugins.Taudem.Port.ManhattanShapes(fname) Dim g...
View ArticleCommented Issue: ManhattanShapes error [24146]
I am experiencing a little problem in converting an integer raster to polygon shapefile using manhattanshapes.here is the code Dim a As New DotSpatial.Plugins.Taudem.Port.ManhattanShapes(fname) Dim g...
View ArticleCommented Issue: ManhattanShapes error [24146]
I am experiencing a little problem in converting an integer raster to polygon shapefile using manhattanshapes.here is the code Dim a As New DotSpatial.Plugins.Taudem.Port.ManhattanShapes(fname) Dim g...
View ArticleNew Post: Load mbtiles
Does BruTileLayer plugin supports google maps?How can I add it by code?I just see Bingmaps
View ArticleNew Post: Removing a leyer by code
Hi,I want to remove a layer from map..I use this code but I face an error..Can you help me find my mistake?> foreach (var item in map.Layers) { if (item.DataSet != null && item.DataSet.Name...
View ArticleNew Post: Removing a leyer by code
Hey am2, as far as I can see you're using the correct methode to remove the layer. But you should never use for each if you want to remove something from a list. Do it this way:for (var i =...
View ArticleNew Post: Removing a leyer by code
Dear jany_ Thanks for your help..Yes it is my mistake that I used foreach in this case,I just wanted to find spacial layer and remove it from list of layers I'll try your code.Thank you very much
View ArticleNew Post: HOW TO add or lower the Z of a polyline Z line...
anyone? how to access the Z value of a line shape?
View ArticleNew Post: HOW TO add or lower the Z of a polyline Z line...
Hi Joska, I don't know how it works with Z values, but the following sample code seems to work... Dim flayer As FeatureLayer flayer = TryCast(Map1.Layers.SelectedLayer, FeatureLayer) Dim k As Integer =...
View Article