4

我在 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;
4

1 回答 1

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

这是一个例子: 带有地图渲染的示例表单

注意:

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

这是一个示例Windows 窗体项目。在示例中,我使用了来自http://thematicmapping.org/downloads/world_borders.php的地图。

于 2017-10-15T13:41:47.987 回答