不同颜色的多边形叠加

发布于 2024-12-05 03:24:42 字数 179 浏览 1 评论 0原文

是否可以使用以下方法在地图视图上创建不同颜色的多边形?

-(MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id )overlay{

假设我有 2 个多边形,我可以将一个设置为红色,另一个设置为黄色吗?

is it possible to create different coloured polygons on a map view using the following method?

-(MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id )overlay{

say if i had 2 polygons could i set one to red and the other to yellow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫尐诺 2024-12-12 03:24:42

一种方法是使用 title 属性来区分一个多边形和另一个多边形。

添加多边形时,相应地设置它们的标题:

pone.title = @"one";
[mapView addOverlay:pone];

pother.title = @"other";
[mapView addOverlay:pother];

然后在viewForOverlay中,您可以根据标题设置颜色:

- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id <MKOverlay>)overlay
{
    MKPolygonView *pv = [[[MKPolygonView alloc] initWithPolygon:overlay] autorelease];

    if ([overlay.title isEqualToString:@"one"])
        pv.fillColor = [UIColor redColor];
    else if ([overlay.title isEqualToString:@"other"])
        pv.fillColor = [UIColor yellowColor];
    else
        pv.fillColor = [UIColor blueColor];

    return pv;
}

One way is to use the title property to tell one polygon from another.

When adding the polygons, set their title accordingly:

pone.title = @"one";
[mapView addOverlay:pone];

pother.title = @"other";
[mapView addOverlay:pother];

Then in viewForOverlay, you can set the color based on title:

- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id <MKOverlay>)overlay
{
    MKPolygonView *pv = [[[MKPolygonView alloc] initWithPolygon:overlay] autorelease];

    if ([overlay.title isEqualToString:@"one"])
        pv.fillColor = [UIColor redColor];
    else if ([overlay.title isEqualToString:@"other"])
        pv.fillColor = [UIColor yellowColor];
    else
        pv.fillColor = [UIColor blueColor];

    return pv;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文