|
POST
|
An "Update" re-executes the query for the layer and replaces exisiting features with new, so there is not a list of "just changed and/or added features". Therefore your only option is to iterate on all the features. However I doubt that should really be of much concern. Iterating 1000s of features can be done in a split second. I'm often doing complex LINQ joins and queries on large amounts of the data, and haven't seen any major performance hit (drawing a vast amount of features seems to be the bottleneck long before any other operation).
... View more
07-05-2010
07:53 AM
|
0
|
0
|
364
|
|
POST
|
Since you are experiencing the same issue from the web interface, the issue is with your GP REST service and not the API. I suggest you ask in the REST and/or server forums: http://forums.arcgis.com/forums/11-ArcGIS-Server-REST-API
... View more
07-05-2010
07:45 AM
|
0
|
0
|
709
|
|
POST
|
Hmm looks fine to me. What does your layer xaml look like?
... View more
07-03-2010
10:02 AM
|
0
|
0
|
1406
|
|
POST
|
Instead of using the Where parameter, you might want to consider using the ObjectIDs parameter instead.
... View more
07-03-2010
09:57 AM
|
0
|
0
|
531
|
|
POST
|
Since the first layer in your map defines the spatial reference, I'm guessing that the ImageService's default spatial reference is not the same as the Bing Layer's. Tiled layers does not reproject so this wont work. You can force the spatial reference to match Bing, and the two other layers should be capable of reprojecting to that projection (since they are both dynamic): (you might have to change the x/y values to work with this spatial reference)
<esri:Map.Extent>
<esri:Envelope XMin="2471999.70000267" YMin="521998.699899673" XMax="2490000.30005074" YMax="534000.300050735">
<esri:Envelope.SpatialReference><esri:SpatialReference WKID="102100" /><esri:Envelope.SpatialReference>
</esri:Envelope>
</esri:Map.Extent>
... View more
07-03-2010
09:55 AM
|
0
|
0
|
769
|
|
POST
|
Could you share the layer metadata? Ie. go to the rest endpoint for the layer, add ?f=pjson to the URL, and paste the response here. (or even better if the service is public, share the URL)
... View more
07-02-2010
08:33 AM
|
0
|
0
|
1406
|
|
POST
|
I think you are missing a layer.Refresh() in there after setting the LayerIDs?
... View more
07-02-2010
08:30 AM
|
0
|
0
|
1155
|
|
POST
|
You need to rotate the map in the Silverlight application, not in ArcMap. <esri:Map Rotation="90" />
... View more
07-02-2010
08:27 AM
|
0
|
0
|
1642
|
|
POST
|
It would be very helpful if you or someone post a sample on how to implement this? StackPanels are among the core basic UI Panels that you need to know when creating UI layouts in Silverlight and WPF (the only more important one is probably "Grid"). You should hopefully be familiar with Buttons already.
<StackPanel Orientation="Horizontal" VerticalAlignment="Top" HorizontalAlignment="Center" Margin="10" Background="White">
<Button Click="Tool1_Click" Content="Tool1" />
<Button Click="Tool2_Click" Content="Tool2" />
<Button Click="Tool3_Click" Content="Tool3" />
</StackPanel>
... View more
07-02-2010
08:25 AM
|
0
|
0
|
1179
|
|
POST
|
The featurelayer expects a certain geometry type, so no you can't. However the base GraphicsLayer does support a mix of geometry types, but the symbol for each graphic must match the geometry type of the geometry (ie fillsymbol for polygons, linesymbols for polylines, markersymbols for points/multipoints). You could create a custom IRenderer that returns the right symbol type based on the geometry. You can still use the QueryTask to populate the graphicslayer against your "mixed table" from MapIt.
... View more
07-02-2010
08:21 AM
|
0
|
0
|
487
|
|
POST
|
Did you look at this sample? http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#TimeImageService
... View more
07-01-2010
03:37 PM
|
0
|
0
|
863
|
|
POST
|
Editing the geometry in layers that are clustered is currently not a supported scenario. If you need to do edit a layer, please disable clustering.
... View more
07-01-2010
03:34 PM
|
0
|
0
|
1766
|
|
POST
|
What version are you using? What are you using to draw and edit the feature? Does your service have a renderer defined without a default symbol, and the graphic you are adding doesn't have an attribute that matches any of the symbols defined in the renderer? What happens if you explicitly override the renderer with your own instead of using what is coming from the server?
... View more
07-01-2010
03:31 PM
|
0
|
0
|
1406
|
|
POST
|
If everything turns white, its usually because an unhandled exception was thrown. Look in the lower left corner of IE for an indication of an error (and dbl click the error icon to get the problem description)
... View more
07-01-2010
03:30 PM
|
0
|
0
|
1598
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-11-2026 07:05 AM | |
| 2 | 03-19-2026 06:03 PM | |
| 1 | 03-03-2026 04:41 PM | |
| 1 | 02-26-2018 07:53 AM | |
| 1 | 02-26-2018 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|