gpt4 book ai didi

c# - 具有自定义 PIN 图像的 MonoTouch Multiple Mapkit CLLocationCoordinate2D

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:22:43 28 4
gpt4 key购买 nike

你好,我的主要问题是如何使用 MKAnnotationView 为我的所有坐标点设置自定义图钉图像。

作为引用,我已经对通常从 json 网络服务调用中调用的值进行了硬编码。这是硬编码轨迹的示例:

CLLocationCoordinate2D[] trail1 = new CLLocationCoordinate2D[]{
new CLLocationCoordinate2D(10.74812, -97.330277),
new CLLocationCoordinate2D(10.74501, -97.350277),
new CLLocationCoordinate2D(10.74912, -97.340277),
};

CLLocationCoordinate2D[] trail2 = new CLLocationCoordinate2D[]{
new CLLocationCoordinate2D(10.84812, -97.331277),
new CLLocationCoordinate2D(10.94501, -97.352277),
new CLLocationCoordinate2D(10.14912, -97.343277),
new CLLocationCoordinate2D(10.12912, -97.313277),
};

mapview.AddAnnotation (new SampleMapAnnotation (trail1));

现在我正在使用 MKAnnotation,但意识到我需要使用 MKAnnotationView 来自定义图像图钉。

public class SampleMapAnnotation : MKAnnotation 
{
string _title;

public SampleMapAnnotation (CLLocationCoordinate2D coordinate)
{
Coordinate = coordinate;
_title = "Sample";
}

public override CLLocationCoordinate2D Coordinate { get; set; }

public override string Title
{
get {
return _title;
}
}
}

最佳答案

看看 MapCallout sample来自 Xamarin。这是来自 Objective-C 的 C# 端口 sample苹果公司。它将向您展示如何创建基于图像的注释并将其显示在 map 上。

关于c# - 具有自定义 PIN 图像的 MonoTouch Multiple Mapkit CLLocationCoordinate2D,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9893211/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com