2

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;

what i have

and this is what i want

what i want

Any hints?

xomena
  • 31,125
  • 6
  • 88
  • 117
Tiago_nes
  • 843
  • 7
  • 30
  • 1
    There is an [old answer](https://stackoverflow.com/a/13389454) for a similar question, which reads that this can only be done through the Google Maps API. – raratiru Jun 30 '18 at 08:25
  • @raratiru is there a way to use Google Maps API v2 opening the google maps app instead of embedding it in my app? – Tiago_nes Jul 02 '18 at 10:28

0 Answers0