New Post: Converting MapwinGIS into DotSpatial
1 and 3 - there is only scalebar in print layout dialog. That dialog can be accessed from File -> "Print Layout..." button. In that dialog you also can view current map scale - you need to select...
View ArticleSource code checked in, #74227
PrintLayoutDialog - automatically assign map for new Legend and ScaleBar
View ArticleCommented Issue: Setting a projection with CentralMeridian = null Issue [24058]
When setting a projection with CentralMeridian = null for the active map, everythings looks okay.But when you try to change the projection of the map again you will get an error.I have found the cause...
View ArticleSource code checked in, #74229
Cleaning code: - Removed nonactual and nonused (even nonimplemented) classes: IMapLiDARLayer, MapLiDARLayer, MapTileLayer, ILiDARData, ILiDARDataProvider - Removed...
View ArticleNew Post: Calculate distance from point to polygon
After decades of writing my own geospatial math routines I finally modernized and starting using C# and can't tell you how pleased I am to discover your dotSpatial library. I just started experimenting...
View ArticleNew Post: Calculate distance from point to polygon
var coord = new Coordinate[5]; coord[0] = new Coordinate(34, -121); coord[1] = new Coordinate(34 + .1, -121); coord[2] = new Coordinate(34 + .1, -121 + .1); coord[3] = new Coordinate(34, -121 + .1);...
View ArticleNew Post: Calculate distance from point to polygon
Many thanks for the quick response. Now that you've shown me how to get that working, it seems obvious that coordinates are X, Y pairs and not Longitude and Latitude. I've been trying various ways to...
View ArticleSource code checked in, #74231
- Added default implementation of IStatusControl which will used by AppManager if no suitable extensions found. - Added sample project which illustrates how to create own IStatusControl (this sample...
View ArticleSource code checked in, #74232
Added ability to use design time components for AppManager.ProgressHandler. Added sample project which shows this technique.
View ArticleCreated Unassigned: Multiple point and images in one layer [25405]
``` public void LoadMarkers(){ try{//uxMap represents the DotSpatial.Control.Map instance double[] dd1 = new double[] { 4.99, 52.673321 }; double[] dd2 = new double[] { 5.21, 52.912433 }; double[] dd3...
View ArticleNew Post: How to get separate Centroid with my Map control using Existing...
It doesn't work I have using this code.. private void button3_Click(object sender, EventArgs e) { GenerateCentroid generate = new GenerateCentroid(); FeatureSet fs = new...
View ArticleUpdated Wiki: Multiple images on one layer
Code does these things : Add multiple point under one layer.Each point has a different ImageEach point has a unique label which can be configured public void LoadMarkers() { try { //uxMap represents...
View ArticleUpdated Wiki: Multiple images on one layer
Code does these things : Add multiple point under one layer.Each point has a different ImageEach point has a unique label which can be configured public void LoadMarkers() { try { //uxMap represents...
View ArticleClosed Unassigned: Multiple point and images in one layer [25405]
``` public void LoadMarkers(){ try{//uxMap represents the DotSpatial.Control.Map instance double[] dd1 = new double[] { 4.99, 52.673321 }; double[] dd2 = new double[] { 5.21, 52.912433 }; double[] dd3...
View ArticleSource code checked in, #74238
- Reuse SpatialStatusStrip in StatusControl - Added sample of IDockManager implementation - SimpleMdiDocking - Added SimpleMapPlugin which is a similar to SimpleLegendPlugin - Removed SimpleDockingPlugin
View Article