当前位置: 首页 > 知识库问答 >
问题:

如何修复。例外:“未找到特定pin的自定义pin”

益炜
2023-03-14

请帮我解决这个问题。我使用本文在xamarin中制作了一个自定义渲染器:xamarin表单自定义渲染器

在我将pin信息转换成JSON文件之前,一切都很顺利。

因此,基本上现在LAT、LNG、标签、名称和URL存储在JSON文件中,而不是C#文件中。为了测试,我做了3个临时针。但其中只有一个显示自定义渲染窗口。当我点击其他两个引脚时,会出现异常,因为未找到自定义引脚。但是最后一个pin找到了自定义pin,但第一个和第二个pin没有找到,这让我很困惑。

我的代码:

JSON文件:

[

{"Label"   :"Country1",
        "Address":"A multine paragraph",
        "Lat":"-12",
        "Lng":"14",
        "Name":"Xamarin",
         "Url": "http://xamarin.com/about/"
},


{ "Label"  :"Country2",
         "Address":"Multiline paragraph",
         "Lat":"-25", 
         "Lng":"45",
         "Name":"Xamarin",
         "Url": "http://xamarin.com/about/"
},

{ "Label"  :"Country3",
         "Address":"Multiline paragraph",
         "Lat":"-5", 
         "Lng":"45",
         "Name":"Xamarin",
         "Url": "http://xamarin.com/about/"
}

]

地图页。xaml。反恐精英

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Maps;
using Newtonsoft.Json;
using System.IO;
using Xamarin.Forms.Xaml;
using System.Reflection;    

namespace Orbage
{
    public partial class MapPage : ContentPage
    {
        public MapPage()
        {
            CustomMap customMap = new CustomMap
            {
                MapType = MapType.Hybrid


            };

            Content = customMap;

            var assembly = IntrospectionExtensions.GetTypeInfo(typeof(MapPage)).Assembly;
            Stream stream = assembly.GetManifestResourceStream("Orbage.Mydata.json");
            string json = "";
            using (var reader = new System.IO.StreamReader(stream))
            {
                json = reader.ReadToEnd();
            }
            var places = JsonConvert.DeserializeObject<List<Mydata>>(json);



            List<CustomPin> custompinList = new List<CustomPin>();
            foreach (var place in places)
            {
                CustomPin pin = new CustomPin
                {
                    Type = PinType.Place,
                    Position = new Position(Double.Parse(place.Lat), Double.Parse(place.Lng)),
                    Label = place.Label,
                    Address = place.Address,
                    Name = place.Name,
                    Url = place.Url
                };
                
                
                customMap.Pins.Add(pin);
                customMap.MoveToRegion(MapSpan.FromCenterAndRadius(new Position(37.79752, -122.40183), Distance.FromMiles(1.0)));
                customMap.CustomPins = custompinList; 
            }
            

        }
    }
    public class Mydata
    {
        public string Label { get; set; }
        public string Address { get; set; }
        public string Lat { get; set; }
        public string Lng { get; set; }
        public string Name { get; set; }
        public string Url { get; set; }


    }
}

定制密码:

using System;
using System.Collections.Generic;
using System.Text;
using Xamarin.Forms.Maps;

namespace Orbage
{
    public class CustomPin : Pin
    {
        public string Name { get; set; }
        public string Url { get; set; }
        public string Adress { get; set; }
        public string Lat { get; set; }
        public string Lng { get; set; }
    }
}

自定义地图:

using System;
using System.Collections.Generic;
using System.Text;
using Xamarin.Forms.Maps;

namespace Orbage
{
    public class CustomMap : Map
    {
        public List<CustomPin> CustomPins { get; set; }
    }
}

自定义地图渲染器。反恐精英:

using System;
using System.Collections.Generic;
using Android.Content;
using Android.Gms.Maps;
using Android.Gms.Maps.Model;
using Android.Widget;
using ----;
using ----.Droid;
using Xamarin.Forms;
using Xamarin.Forms.Maps;
using Xamarin.Forms.Maps.Android;

[assembly: ExportRenderer(typeof(CustomMap), typeof(CustomMapRenderer))]
namespace ----.Droid
{
    public class CustomMapRenderer : MapRenderer, GoogleMap.IInfoWindowAdapter
    {
        List<CustomPin> customPins;

        public CustomMapRenderer(Context context) : base(context)
        {
        }

        protected override void OnElementChanged(Xamarin.Forms.Platform.Android.ElementChangedEventArgs<Map> e)
        {
            base.OnElementChanged(e);

            if (e.OldElement != null)
            {
                NativeMap.InfoWindowClick -= OnInfoWindowClick;
            }

            if (e.NewElement != null)
            {
                var formsMap = (CustomMap)e.NewElement;
                customPins = formsMap.CustomPins;
            }
        }

        protected override void OnMapReady(GoogleMap map)
        {
            base.OnMapReady(map);

            NativeMap.InfoWindowClick += OnInfoWindowClick;
            NativeMap.SetInfoWindowAdapter(this);
        }

        protected override MarkerOptions CreateMarker(Pin pin)
        {
            var marker = new MarkerOptions();
            marker.SetPosition(new LatLng(pin.Position.Latitude, pin.Position.Longitude));
            marker.SetTitle(pin.Label);
            marker.SetSnippet(pin.Address);
            marker.SetIcon(BitmapDescriptorFactory.FromResource(Resource.Drawable.pin));
            return marker;
        }

        void OnInfoWindowClick(object sender, GoogleMap.InfoWindowClickEventArgs e)
        {
            var customPin = GetCustomPin(e.Marker);
            if (customPin == null)
            {
                throw new Exception("Custom pin not found");
            }

            if (!string.IsNullOrWhiteSpace(customPin.Url))
            {
                var url = Android.Net.Uri.Parse(customPin.Url);
                var intent = new Intent(Intent.ActionView, url);
                intent.AddFlags(ActivityFlags.NewTask);
                Android.App.Application.Context.StartActivity(intent);
            }
        }

        public Android.Views.View GetInfoContents(Marker marker)
        {
            var inflater = Android.App.Application.Context.GetSystemService(Context.LayoutInflaterService) as Android.Views.LayoutInflater;
            if (inflater != null)
            {
                Android.Views.View view;

                var customPin = GetCustomPin(marker);
                if (customPin == null)
                {
                    throw new Exception("Custom pin not found");
                }

                if (customPin.Name.Equals("Xamarin"))
                {
                    view = inflater.Inflate(Resource.Layout.XamarinMapInfoWindow, null);
                }
                else
                {
                    view = inflater.Inflate(Resource.Layout.MapInfoWindow, null);
                }

                var infoTitle = view.FindViewById<TextView>(Resource.Id.InfoWindowTitle);
                var infoSubtitle = view.FindViewById<TextView>(Resource.Id.InfoWindowSubtitle);

                if (infoTitle != null)
                {
                    infoTitle.Text = marker.Title;
                }
                if (infoSubtitle != null)
                {
                    infoSubtitle.Text = marker.Snippet;
                }

                return view;
            }
            return null;
        }

        public Android.Views.View GetInfoWindow(Marker marker)
        {
            return null;
        }

        CustomPin GetCustomPin(Marker annotation)
        {
            var position = new Position(annotation.Position.Latitude, annotation.Position.Longitude);
            foreach (var pin in customPins)
            {
                if (pin.Position == position)
                {
                    return pin;
                }
            }
            return null;
        }
    }
}

感谢您看到这一点,我希望这一点得到了回答,并有人与相同的错误得到修复。:)

共有1个答案

鲜于华容
2023-03-14
  foreach (var place in places)
        {
            CustomPin pin = new CustomPin
            {
                Type = PinType.Place,
                Position = new Position(Double.Parse(place.Lat), Double.Parse(place.Lng)),
                Label = place.Label,
                Address = place.Address,
                Name = place.Name,
                Url = place.Url
            };
            customMap.CustomPins = new List<CustomPin> { pin }; //this will cause your customMap.CustomPins always has only the last custompin. 
            customMap.Pins.Add(pin);
            customMap.MoveToRegion(MapSpan.FromCenterAndRadius(new Position(37.79752, -122.40183), Distance.FromMiles(1.0)));
        }

问题就在这里,你可以添加customMap。CustomPin位于循环中,因此它始终只有第三个CustomPin。

尝试将其移出foreach的

  List<CustomPin> custompinList = new List<CustomPin>();
  foreach (var place in places)
        {
            CustomPin pin = new CustomPin
            {
                Type = PinType.Place,
                Position = new Position(Double.Parse(place.Lat), Double.Parse(place.Lng)),
                Label = place.Label,
                Address = place.Address,
                Name = place.Name,
                Url = place.Url
            };
            custompinList.Add(pin);
            customMap.Pins.Add(pin);
            customMap.MoveToRegion(MapSpan.FromCenterAndRadius(new Position(37.79752, -122.40183), Distance.FromMiles(1.0)));
        }
  customMap.CustomPins = custompinList; 

更新效果如下:

 类似资料:
  • 问题内容: 我将使用ReadFile: 我该如何解决? 问题答案: 使用包名称限定它:

  • 我有一个包括几个子模式的用户模式。我有两个相似的子模式,其中一个是可以识别的,但另一个是一直未定义的。我的用户架构如下: 在上面的模式中,我有一个项目在post路线中工作得很好。表单已正确发布、保存和显示,但无法发布跟踪器的相同路由,并给出“跟踪器未定义”错误: 项目后路由: 以下是追踪者的帖子: 请注意,项目模式和跟踪器模式都保存在一个模型文件夹中,并且在app.js中是必需的

  • 问题内容: 我已经通过npm install安装了节点模块,然后尝试在命令提示符下执行gulp sass-watch。之后,我得到以下回应。 在gulp sass-watch之前尝试过这个 问题答案: 我遇到了同样的错误。我怀疑您正在使用节点12和gulp3。该组合不起作用:https : //github.com/gulpjs/gulp/issues/2324 从1月开始的以前的解决方法也不起作

  • 我已经通过npm install安装了节点模块,然后我尝试在命令提示符下执行gulp sass-watch。之后我得到了下面的回应。 我以前也试过

  • 我正在学习Mosh Hamedani的教程“角度4:初学者到专业”。 当我试图编辑一个产品时,我试图在一个表单中显示它的标题。该产品存储在firebase数据库中。我是新来的Angular。 但是,当我转到编辑表单时,控制台中会出现此错误 这是我表格的一部分: 这是产品表单.组件.ts 怎么做才能显示产品的标题?