POST
|
You can right-click on the Project and see "Properties", under Silverlight tab, there is Default namespace. Also you should have something like Imports System Namespace ForumTest 'more code here End Namespace In the sample above, whatever class I create within this namespace is only accessible through "ForumTest", this must match the namespace definition you have in XAML. It should be "ESRI.ArcGIS.SilverlightMapApp" or you can update xmlns to use "ForumTest" (ForumTest is just my example, yours can be named different.
... View more
11-08-2010
09:27 AM
|
0
|
0
|
1
|
POST
|
Can you share the StackTrace? Also try to use Fiddler while running your SL app in your test machine. http://www.fiddler2.com/Fiddler2/version.asp The more information you can share with us, the better. Thanks 🙂
... View more
11-08-2010
09:22 AM
|
0
|
0
|
2
|
POST
|
This is correct, the Draw object, creates a new GraphicsLayer on top of your layers. Therefore Layers.CollectionChanged event will fire. You can probably ignore if the layer added has no ID to distinguish the layer you create and the layer the API creates dynamically.
... View more
11-08-2010
09:16 AM
|
0
|
0
|
0
|
POST
|
You can learn more about FeatureService here: http://help.arcgis.com/en/arcgisserver/10.0/help/arcgis_server_dotnet_help/index.html#/What_is_a_feature_service/009300000020000000/
... View more
11-08-2010
09:06 AM
|
0
|
0
|
0
|
POST
|
I tried your code with 2.1 RC and I was not able to reproduce the error. Do you have ESRI.ArcGIS.Client and ESRI.ArcGIS.Client.Behaviors added to your project references? Can you check the file path where it is pointing to?
... View more
11-08-2010
08:00 AM
|
0
|
0
|
9
|
POST
|
Sure. Look at the namespace definition of your project and your classes, they need to be "ESRI.ArcGIS.SilverlightMapApp" for this namespace to be valid in your xaml.
... View more
11-08-2010
07:52 AM
|
0
|
0
|
1
|
POST
|
Oh I sent this link just as a guideline how you can calculate scale based on resolution and DPI, since LOD includes Resolution and your DPI varies, you can use the same formula to calculate the scale.
... View more
11-08-2010
07:50 AM
|
0
|
0
|
1
|
POST
|
I can submit this request to our dev lead for consideration in making it public. For now, there's nothing stopping you from creating your own renderer if you implement IRenderer. This might be your best bet if UniqueValueRenderer is not sufficient for your current need. Thank you for the feedback.
... View more
11-08-2010
07:46 AM
|
0
|
0
|
0
|
POST
|
The Where property of a Query is any legal SQL Where clause as been said here: http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.Query~Where.html So I don't think you can get repeating values by updating the query alone. You can probably use System.Linq query on the results. Please don't hold me accountable for the syntax 🙂 but I think it's something like this: var repeatingValues = from g in args.FeatureSet.Features group g by g.Attributes["FieldName"] into f where f.Count() > 1 select f.Key;
... View more
11-07-2010
01:36 PM
|
0
|
0
|
0
|
POST
|
There's no way to turn off this feature at the moment. But I'll share this with our lead developer for consideration.
... View more
11-07-2010
12:18 PM
|
0
|
0
|
10
|
Online Status |
Offline
|
Date Last Visited |
3 weeks ago
|