2

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

这就是我所拥有的...

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;

我有的

这就是我想要的

我想要的是

有什么提示吗?

4

0 回答 0