如何使用 sharpmap 在地球上渲染一个国家的图像

How to render image of a country on a globe using sharpmap

我在 SQL 数据库中有一个区域边界列表,我正在使用 sharpmap 为我需要的每个国家渲染缩略图。效果很好。

但我想更进一步,在它周围添加一个小地球仪并将国家/地区定位在它在地球仪中的位置,但我不知道从哪里开始。

这是我目前用来渲染国家/地区拇指的代码。有什么想法吗?

var map = new Map(new Size(command.Width, command.Height));
map.BackColor = Color.Transparent;
var countryGeometry = GeometryFromWKT.Parse(command.CountryLevelWkt);
IProvider countryProvider = new GeometryFeatureProvider(countryGeometry);
var countryLayer = new VectorLayer("country", countryProvider);
var borderColor = System.Drawing.ColorTranslator.FromHtml(command.BorderColor);
countryLayer.Style.EnableOutline = true;
countryLayer.Style.Outline = new Pen(borderColor);
countryLayer.Style.Outline.Width = command.BorderWidth;
countryLayer.Style.Fill = Brushes.Transparent;

var transformationFactory = new CoordinateTransformationFactory();
countryLayer.CoordinateTransformation = transformationFactory.CreateFromCoordinateSystems(
            GeographicCoordinateSystem.WGS84,
            ProjectedCoordinateSystem.WebMercator);
map.Layers.Add(countryLayer);
var bottomLeft = new Coordinate(command.Extents.BottomLeft.Longitude, command.Extents.BottomLeft.Latitude);
var topRight = new Coordinate(command.Extents.TopRight.Longitude, command.Extents.TopRight.Latitude);


// transformations
var bottomLeftLongLat = countryLayer.CoordinateTransformation.MathTransform.Transform(bottomLeft);
var topRightLongLat = countryLayer.CoordinateTransformation.MathTransform.Transform(topRight);
map.ZoomToBox(new Envelope(bottomLeftLongLat, topRightLongLat));
             var img = map.GetMap();
return img;
  1. 首先在一张新地图上绘制所有国家,每个国家都在自己的图层上。
  2. 在自己的图层上绘制您感兴趣的国家/地区。
  3. 将地图中心设置为步骤 2 中图层的 Envelope.Center。例如,如果绘制澳大利亚,地图将向左移动。
  4. 将地图渲染为图像。在绘图表面上绘制图像 (System.Drawing.Graphics).
  5. 重新居中地图,覆盖空白space。例如,如果绘制澳大利亚,将地图几乎一直向右移动。您将需要以编程方式计算出这些偏移量。
  6. 将步骤 5 中的地图渲染为图像。将图像添加到同一绘图表面(参见步骤 4)。
  7. 重复步骤 5-6 覆盖空 space below/above 在步骤 3 中制作的渲染。

这是一个例子:

注意:

  • 澳大利亚位于中心
  • 鼠标指针附近的地图图层之间存在间隙(屏幕截图中的间隙是为了演示逻辑)
  • 有些国家非常大(例如俄罗斯),获得 Envelope.Center 效果不佳 - 考虑仅基于最大的多边形居中

这是一个示例 Windows Forms project. In the sample, I used maps from http://thematicmapping.org/downloads/world_borders.php