我想打开默认的地图应用程序,但我想要一个圆形的标记,而不是默认的标记。
这就是我所拥有的…
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;
这就是我想要的
有什么暗示吗?