Google maps 谷歌地图url如何定义圆形标记?

Google maps 谷歌地图url如何定义圆形标记?,google-maps,xamarin.forms,google-maps-markers,google-maps-urls,Google Maps,Xamarin.forms,Google Maps Markers,Google Maps Urls,我想打开默认的地图应用程序,但不是默认的标记,我想要一个圆形标记 这就是我所拥有的 case Device.Android: if (!string.IsNullOrEmpty(_imovel.Endereco.Freguesia)) { uri = new Uri("https://www.google.com/maps/search/?api=1&query=" + _imovel.Endereco.Freguesia); } else

我想打开默认的地图应用程序,但不是默认的标记,我想要一个圆形标记

这就是我所拥有的

case Device.Android:
    if (!string.IsNullOrEmpty(_imovel.Endereco.Freguesia))
    {
        uri = new Uri("https://www.google.com/maps/search/?api=1&query=" + _imovel.Endereco.Freguesia);
    }
    else if (!string.IsNullOrEmpty(_imovel.Endereco.Concelho)){
        uri = new Uri("https://www.google.com/maps/search/?api=1&query=" + _imovel.Endereco.Concelho);
    }
    Device.OpenUri(uri);
break;

这就是我想要的


有什么提示吗?

有一个类似问题的答案,上面写着这只能通过谷歌地图API来完成。@raratiru有没有办法使用谷歌地图API v2打开谷歌地图应用程序而不是将其嵌入我的应用程序?