Google Maps url how to define circular marker?

你说的曾经没有我的故事 提交于 2020-01-15 05:28:25

问题


I want to open the default maps app but instead of the default marker i want a circular marker.

this is what i have...

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;

and this is what i want

Any hints?

来源:https://stackoverflow.com/questions/51059535/google-maps-url-how-to-define-circular-marker

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!