我目前正在使用gmap.net创建一个带有多边形的半径。我目前已经为半径制作了一个多边形但现在我遇到的问题是我想要创建多重标记,但只显示多边形内部的标记。这可能吗?
_polygonOverlay = new GMapOverlay("destination");
_gMap.Overlays.Add(_polygonOverlay);
private void CreateCircle(PointLatLng destination, double radius)
{
List<PointLatLng> radiusPoint = new List<PointLatLng>();
double seg = Math.PI * 2 / 40;
for (int i = 0; i < 40; i++)
{
double theta = seg * i;
double latitude = destination.Lat + Math.Cos(theta) * radius;
double longitude = destination.Lng + Math.Sin(theta) * radius;
PointLatLng cirlePoint = new PointLatLng(latitude, longitude);
radiusPoint.Add(cirlePoint);
}
GMapPolygon radiusCircle = new GMapPolygon(radiusPoint, "radius");
_polygonOverlay.Polygons.Add(radiusCircle);
}
private void CreateMarkers()
{
_polygonOverlay.Markers.Add(new GMarkerGoogle(new PointLatLng(xxx, xxx), GMarkerGoogleType.blue));
_polygonOverlay.Markers.Add(new GMarkerGoogle(new PointLatLng(xxx, xxx), GMarkerGoogleType.blue));
_polygonOverlay.Markers.Add(new GMarkerGoogle(new PointLatLng(xxx, xxx), GMarkerGoogleType.blue));
}
以下是我的代码示例,它创建了一个圆圈(仍然需要一些工作)和一些标记。
已经感谢提前了
答案 0 :(得分:0)
由于您正在处理圆圈,因此您应该能够简单地检查标记距圆圈中心的距离。如果距离大于半径,请不要将其添加到叠加层。
GMap可让您访问确定此信息的必要方法。做这样的事情:
//Assuming p1 is your marker and p2 is your circle center coordinate
double markerDist = GMap.NET.MapProviders.EmptyProvider.Instance.Projection.GetDistance(p1.Position, p2);
if(markerDist <= circleRadius)
{
//Add the marker to the overlay
}
答案 1 :(得分:0)
假设您有一个GMapPolygon
,其中包含一些积分,则可以使用
bool inside = gMapPolygon.IsInside(point)
检查point
的{{1}}是否在该GMarker
内