2


MapsUI我需要在使用OpenStreetMap图块 的地图控件上添加一堆图钉。

问题是我在他们的文档中找不到任何提及引脚的内容,所以我的问题是:

是否有任何可用的引脚但名称不同,或者我必须自己绘制引脚(在我发现的一些示例中使用几何和点),如果是这样,我如何在缩放地图时保持它们相同的大小?

也许有人可以指出我应该在哪里查看他们的文档,以防我失明并且错过了它。

谢谢!

4

3 回答 3

3

您的 Mapsui 地图视图Mapsui.UI.Forms.MapView具有属性Pins。您可以在那里添加引脚。您可以MapViewMapView.

为此,首先,在 XAML 页面中命名您的地图视图:

<ContentPage
    xmlns:mapsui="clr-namespace:Mapsui.UI.Forms;assembly=Mapsui.UI.Forms"
    xmlns="http://xamarin.com/schemas/2014/forms"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
    x:Class="YourProject.Pages.YourMap">
  <ContentPage.Content>
     <mapsui:MapView
        x:Name="selectMapControl"/>
  </ContentPage.Content>
</ContentPage>

然后从该页面后面的 C# 代码访问它:

using Mapsui.UI.Forms;

protected override async void OnAppearing()
{
    selectMapControl.Pins.Add(new Pin(new MapView())
    {
       Position = new Position(0, 0),
       Type = PinType.Pin,
       Label = "Zero point",
       Address = "Zero point",
    });
}

希望这个最简单的例子会有所帮助。

于 2019-06-06T14:41:44.477 回答
2

这个想法是您使用自己的位图绘制为“图钉”。

Mapsui 有特点。要素具有可以是点、线串和多边形(以及其他一些)的几何图形。使用某种样式绘制特征。您需要做的是使用点几何创建要素,并使用带有位图作为符号的符号样式。您需要注册您的位图并在符号中使用 bitmapId。请参阅此处的示例:

https://github.com/Mapsui/Mapsui/blob/master/Samples/Mapsui.Samples.Common/Maps/PointsSample.cs

于 2018-10-03T14:13:31.620 回答
1

您可以使用 Xamarin.Forms.GoogleMaps,因为它们为您提供了添加多个您选择的引脚的功能。

这是示例代码:

var position = new Position(Latitude, Longitude);

        var pin = new Pin
        {
            Type = PinType.Place,
            Position = position,
            Icon = BitmapDescriptorFactory.FromBundle("pin.png"),
            Label = "custom pin",
            Address = "custom detail info",
        };

        MyMap.Pins.Add(pin);
于 2018-10-03T14:05:04.123 回答