Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created October 11, 2017 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/8cce29fe9dec56118903d81912769b78 to your computer and use it in GitHub Desktop.
Save juucustodio/8cce29fe9dec56118903d81912769b78 to your computer and use it in GitHub Desktop.
Exemplo de como destacar uma região específica no mapa com Xamarin.Forms http://julianocustodio.com/regioes-maps-xamarin-forms
using System.Collections.Generic;
using Xamarin.Forms.Maps;
namespace App
{
public class CustomMap : Map
{
public List<Position> ShapeCoordinates { get; set; }
public CustomMap()
{
ShapeCoordinates = new List<Position>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment