POST
|
Daniel, That did not change anything. I think that it must be somewhere else because none of the widgets have a position tag, and they line up adjacent to where the previous one was placed.
... View more
09-29-2015
10:35 AM
|
0
|
6
|
41
|
POST
|
I am using the launch pad template, and when I open the widgets, they line up on top of the navigation buttons on the left side. The widgets all line up beside one another, and I can't seem to find where to adjust the behavior. I would like them to start just right of the navigation buttons. Does anybody know how to do this? Thanks, Chris
... View more
09-29-2015
10:03 AM
|
0
|
8
|
3611
|
POST
|
What coordinates are you getting back before you try to convert to lat long? Are you sure that you are in web Mercator?
... View more
11-10-2014
12:09 PM
|
0
|
0
|
25
|
POST
|
Anand, This is what I use: MapPoint mapPoint = Map.ScreenToMap(screenPoint); Geometry .NormalizeCentralMeridian(mapPoint) as ESRI.ArcGIS.Client.Geometry. MapPoint ; var webMercator = new WebMercator (); var result = webMercator.ToGeographic(mapPoint) as MapPoint ; Chris
... View more
11-10-2014
10:02 AM
|
2
|
3
|
25
|
POST
|
Hey, I am trying to bind a long term token to the map services in xaml, without much luck. What is the best way to do this? I can't seem to figure out how to do a static property or a dependency property. Is this possible? thanks, Chris
... View more
09-10-2014
08:56 AM
|
0
|
1
|
2547
|
POST
|
Hey, What is the best way to update a SQL table (non-spatial)? I only want to add records, not edit them. My plan is to create a graphic point, run a query to get the attribute information and pass the attributes to the SQL table with a WCF service. Is that a good workflow? Silverlight 3.2, SQL 2008 R2 Thanks, Chris
... View more
03-11-2014
08:37 AM
|
0
|
1
|
193
|
POST
|
I put this code in the MainPage.xaml.cs and it works for me. private void Legend_Refreshed(object sender, ESRI.ArcGIS.Client.Toolkit.Legend.RefreshedEventArgs e) { // remove useless street map sublayers if (e.LayerItem.Layer.ID == "BaseLayer") e.LayerItem.IsHidden = true; if (e.LayerItem.Layer is GraphicsLayer) { if (e.LayerItem.Layer is FeatureLayer) { if (e.LayerItem.Layer.ID == "PLSSFeatureLayer" || e.LayerItem.Layer.ID == "TownshipRange" || e.LayerItem.Layer.ID == "CurrentYearLightningFeatureLayer") { e.LayerItem.IsHidden = true; } else { e.LayerItem.IsHidden = false; } } else { e.LayerItem.IsHidden = true; } } Legend legend = sender as Legend; _theObservableCollection = MyLegend.LayerItems; foreach (LayerItemViewModel livm in _theObservableCollection) // changed to the global { livm.IsExpanded = false; } if (e.LayerItem.LayerItems != null) { foreach (LayerItemViewModel layerItemVM in e.LayerItem.LayerItems) { if (layerItemVM.IsExpanded) layerItemVM.IsExpanded = false; if (layerItemVM.LayerItems != null) foreach (var item in layerItemVM.LayerItems) item.IsExpanded = false; if (layerItemVM.LayerItems != null) foreach (LayerItemViewModel sublayerItemVM in layerItemVM.LayerItems) if (sublayerItemVM.IsExpanded) sublayerItemVM.IsExpanded = false; } } else { e.LayerItem.IsExpanded = false; } }
... View more
02-11-2014
01:24 PM
|
0
|
0
|
4
|
POST
|
Hey, Is it possible to create a georeferenced PDF from the print task. This would be the same as when you export a PDF in ArcMap. Thanks, Chris
... View more
01-27-2014
10:06 AM
|
0
|
1
|
1700
|
POST
|
Silverlight is not supported in IPad or IPhone devices.
... View more
01-27-2014
09:54 AM
|
0
|
0
|
9
|
POST
|
Hey, I am using the server printing task and was wondering if I can have it make a geo-referenced PDF. Does anybody know if this is possible? Thanks
... View more
09-26-2013
11:23 AM
|
0
|
1
|
412
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|