代码之家  ›  专栏  ›  技术社区  ›  Tiago_nes

谷歌地图网址如何定义圆形标记?

  •  2
  • Tiago_nes  · 技术社区  · 6 年前

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

    这就是我所拥有的…

    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;
    

    what i have

    这就是我想要的

    what i want

    有什么暗示吗?

    0 回复  |  直到 6 年前