Hi Michael,Thanks for the confirmation, as promised earlier this feature will be available in our upcoming Volume 3 2018 release which is scheduled to be rolled out at the end of September 2018.Thanks,Michael
|
private void Button_Clicked(object sender, EventArgs e)
{
layer.GeoCoordinates = new Point(0, 0);
layer.GeoCoordinates = new Point(50, 50);
}
|
|
[C#]
public partial class MainPage : ContentPage
{
const double latitude = 51.509;
const double longitude = -0.1180;
public MainPage()
{
…
ImageryLayer imageryLayer = new ImageryLayer();
imageryLayer.GeoCoordinateChanged += ImageryLayer_GeoCoordinateChanged;
imageryLayer.GeoCoordinates = new Point(latitude, longitude);
…
}
}
private void ImageryLayer_GeoCoordinateChanged(object sender, GeoCoordinateChangedEventArgs e)
{
var latitude = e.Center.Y;
var longitude = e.Center.X;
}
} |