Created
November 23, 2017 14:52
-
-
Save pictos/5397b0bc3a883beae7f9ff18ff5808eb to your computer and use it in GitHub Desktop.
Custom Render do Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Android.App; | |
using Android.Content; | |
using Android.OS; | |
using Android.Runtime; | |
using Android.Views; | |
using Android.Widget; | |
using Xamarin.Forms.Maps.Android; | |
using Xamarin.Forms.Maps; | |
using Xamarin.Forms.Platform.Android; | |
using RouteMap.CustomRender; | |
using Android.Gms.Maps; | |
using Android.Gms.Maps.Model; | |
using Xamarin.Forms; | |
using RouteMap.Droid.CustomRender; | |
using System.ComponentModel; | |
[assembly: ExportRenderer(typeof(MapCustomRender),typeof(MapCustomRenderAndroid))] | |
namespace RouteMap.Droid.CustomRender | |
{ | |
public class MapCustomRenderAndroid : MapRenderer, IOnMapReadyCallback | |
{ | |
GoogleMap map; | |
Polyline polyline; | |
public MapCustomRenderAndroid(Context context) : base(context) | |
{ | |
} | |
public void OnMapReady(GoogleMap googleMap) | |
{ | |
map = googleMap; | |
map.MapType = 1; | |
UpdatePolyline(); | |
} | |
protected override void OnElementChanged(ElementChangedEventArgs<Map> e) | |
{ | |
base.OnElementChanged(e); | |
if (e.OldElement != null) return; | |
if (e.NewElement != null) | |
Control.GetMapAsync(this); | |
} | |
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e) | |
{ | |
base.OnElementPropertyChanged(sender, e); | |
if (this.Element == null || this.Control == null) return; | |
if (e.PropertyName == MapCustomRender.CoordenadasRotaProperty.PropertyName) | |
{ | |
UpdatePolyline(); | |
} | |
} | |
private void UpdatePolyline() | |
{ | |
if (polyline != null) | |
{ | |
polyline.Remove(); | |
polyline.Dispose(); | |
} | |
var polilyneOptions = new PolylineOptions(); | |
polilyneOptions.InvokeColor(Android.Graphics.Color.Red); | |
var coordenadas = ((MapCustomRender)this.Element).CoordenadasRota; | |
foreach (var position in coordenadas) | |
{ | |
polilyneOptions.Add(new LatLng(position.Latitude, position.Longitude)); | |
} | |
polyline = map.AddPolyline(polilyneOptions); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment