Map Annotation Disclosure Indicator - Xamarin.Form

时间:2014-11-19 20:25:43

标签: xamarin xamarin.forms

我正在使用Xamarin.Form平台在我的应用程序中使用Map功能。我可以在地图上添加注释。但是,我想知道有没有办法在注释上添加公开指示器,使用户可以点击进入DetailViewController。

        using Xamarin.Forms.Maps;

        Map map;
        Title= "MapView";

        map = new Map { 
            IsShowingUser = true,
            HeightRequest = 100,
            WidthRequest = 960,
            VerticalOptions = LayoutOptions.FillAndExpand
        };

        map.Pins.Add(new Pin {
            Position = new Position(29.7,-95.0177232),
            Label = "Boardwalk"
        });

enter image description here

我想要类似于下面的screnshot。

enter image description here

1 个答案:

答案 0 :(得分:1)

我不相信可以在当前的 Xamarin.Forms 地图组件中提供您自己的观点( v1.2.3x )因为它被锁定了。

更新1: -

不幸的是没有。这是 Xamarin.Forms 的请求功能,截至10月24日here

目前唯一的方法是创建自己的自定义渲染器。