ArcGISWindowsPhoneSDK.WebMapKML.WebMapKML C# (CSharp) 메소드

WebMapKML() 공개 메소드

public WebMapKML ( ) : System.Windows
리턴 System.Windows
        public WebMapKML()
        {
            InitializeComponent();

            MyInfoWindow = new InfoWindow()
            {
                Padding = new Thickness(5),
                CornerRadius = 5,
                BorderBrush = new SolidColorBrush(Colors.Black),
                BorderThickness = new Thickness(1),
                Background = new SolidColorBrush(Colors.White),
                Foreground = new SolidColorBrush(Colors.Black)
            };

            Document webMap = new Document();
            webMap.GetMapCompleted += webMap_GetMapCompleted;

            webMap.GetMapAsync("d2cb7cac8b1947c7b57ed8edd6b045bb");
        }