|
POST
|
AFAIK the showcase Template has never included the 'LayerCheckBox', 'Configurator', 'ConfiguratorContainer' components which seems missing in your project. I guess they have been added manually after getting the template.
... View more
11-06-2012
04:45 AM
|
0
|
0
|
510
|
|
POST
|
You can find a sample of what Andrew mentioned here. You have to wire up the 'ZoomToFullExtent' handler to the 'Initialized' layer event. The handler projects the fullextent to the map spatial reference coordinates (using a geometry service if needed).
... View more
11-06-2012
04:42 AM
|
0
|
0
|
1663
|
|
POST
|
I am still really stuck on how to get to the related table for data source of the chart If your related table data are already loaded locally we can just extent the ItemsSourceConverter in order to return data coming from the related table as well. The only limitation is that you need to be able to find the related data from the graphic attributes. That's most generally doable by using the ObjectId attribute : get the ObjectId from the Attributes dictionary, use this object id to find related data and return these data as KeyValuePair to display in the chart. If your related data are not already loaded, it will be more complex since you will have to deal with asynchronous web requests. In this case the chart ItemsSource has to be an observable collection (in order to react when the related values are added). The general idea is : . the converter executes a request to get related data and returns an empty observable collection. . in the complete handler of the request, you populate the observable collection with the related data that you just got . the related data are displayed in the maptip chart (if the maptip is still visible 🙂 ).
... View more
10-25-2012
10:50 AM
|
0
|
0
|
1797
|
|
POST
|
Is there a way where I can simply break the cluster at a certain preset zoom level to break it so I can have individual points rendered rather than the flare? You could break the cluster in an handler wired up to Map.ExtentChanged event (set or reset the clsuter depending on map scale). That being said, if you have 2 points at the same location you will see both symbols overlapping so not sure it's better.
... View more
10-24-2012
08:22 AM
|
0
|
0
|
1016
|
|
POST
|
Is there a way to override the content template for the scale transform without overriding the entire control's template in Visual Studio? No you have to override the entire template. Without Blend, you can get the default navigation Template from the toolkit sources on codeplex, copy it in your project and modify it for your need.
... View more
10-24-2012
08:15 AM
|
0
|
0
|
799
|
|
POST
|
The workaround may be to add the webmap layers one by one instead of adding them as a collection. So instead of code like: LayerCollection layerCollection = new LayerCollection();
foreach (Layer layer in a.Map.Layers)
layerCollection.Add(layer);
a.Map.Layers.Clear();
MyMap.Layers = layerCollection; use: var layers = a.Map.Layers.ToArray();
a.Map.Layers.Clear();
foreach(var layer in layers)
MyMap.Layers.Add(layer);
... View more
10-24-2012
08:06 AM
|
0
|
0
|
1747
|
|
POST
|
It seems there is an issue in the ArcGIS API for SL when displaying this webmap. We'll try to get that fixed ASAP. Thanks for reporting that issue.
... View more
10-24-2012
07:50 AM
|
0
|
0
|
1747
|
|
POST
|
For information, this issue will be fixed in the next version of the API.
... View more
10-24-2012
07:12 AM
|
0
|
0
|
2321
|
|
POST
|
when I am implementing this on designtime maptip is coming but not @ runtime Your XAML implementation uses a DictionaryConverter but you forgot it in C#. That being said, from Silverlight 4, the DictionaryConverter is no more useful. You may use the '[]' binding syntax, i.e.: System.Windows.Data.Binding binding = new System.Windows.Data.Binding("[CITY_NAME]");
... View more
10-22-2012
02:52 AM
|
0
|
0
|
1729
|
|
POST
|
Thanks, I did see this sample but found the sample confusing and not exactly what I was looking for. I do not want the chart symbol to show up all the time and I don't want it connected with the legend. I created a new sample that keeps only the minimal code for getting a chart as maptip.
... View more
10-22-2012
02:45 AM
|
0
|
0
|
1797
|
|
POST
|
It's a spatial refrence matter. If your map is using web Mercator coordinates (depending on your base map), you can transform these coordinates to geographical coordinates y using the WebMercator.ToGeographic method.
... View more
10-21-2012
11:14 PM
|
0
|
0
|
517
|
|
POST
|
The esri toolbar has been removed from 3.0 API (after have been deprecated for a while). You can replace it by your own stackpanel containing buttons.
... View more
10-21-2012
11:10 PM
|
0
|
0
|
491
|
|
POST
|
What do you mean by 'MapLoadComplete' event?If you are talking about the Map.Progress event, this event may not be fired when the data (tiles and graphics) are already loaded locally.
... View more
10-21-2012
11:07 PM
|
0
|
0
|
1046
|
|
POST
|
Generally speaking, the geoprocessing Tools can be used in Silverlight by using the geoprocessor object (sample). So, you should be able to use the 'Make Route Event Layer' tool from Silverlight. That being said, if your question is more related to the way to configure a tool to get the expected result, you might get better answers by posting your question on Desktop or Geoprocessing forum.
... View more
10-21-2012
11:03 PM
|
0
|
0
|
821
|
|
POST
|
What are the metadata of your feature service? You can get them with a request such as : http://192.168.0.180/ArcGIS/rest/services/Emap/FeatureServer/2?f=pjson Also, could you use fiddler to look at the response returned by the server when the save is not working? Might give a clue.
... View more
10-18-2012
12:13 AM
|
0
|
0
|
2349
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-12-2025 03:01 AM | |
| 1 | 10-14-2025 09:24 AM | |
| 1 | 06-13-2013 09:22 AM | |
| 1 | 04-29-2022 02:21 AM | |
| 1 | 04-29-2022 02:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
10-30-2025
08:06 AM
|