var l = MyMap.Layers["OtherWMSLayer"] as WmsLayer; l.GetUrl(MyMap.Extent, (int)MyMap.ActualWidth,(int) MyMap.ActualHeight, (a, b, c, d) => { var url = a; });
newWmsLayer.GetUrl(MyMap.Extent, (int)MyMap.ActualWidth, (int)MyMap.ActualHeight, (a, b, c, d) => { onGetUrlComplete(a, b, c, d); }); ... private void onGetUrlComplete(string url, int x, int y, ESRI.ArcGIS.Client.Geometry.Envelope env) { MessageBox.Show(url); }
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.