You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"This sample demonstrates how to create a map with a standard ESRI Imagery with Labels basemap that is centered on a latitude and longitude location and zoomed into a specific level of detail.",
"")]
public partial class SetInitialMapLocation : ContentPage
{
public SetInitialMapLocation()
{
InitializeComponent ();
// Create the UI, setup the control references and execute initialization
Initialize();
}
private void Initialize()
{
// Create a map with 'Imagery with Labels' basemap and an initial location
Map myMap = new Map(BasemapType.ImageryWithLabels, -33.867886, -63.985, 16);