|
POST
|
The setup.exe itself is 32bit, but the dll's it lays down can be used with both x86 and x64 applications.
... View more
06-15-2010
08:06 AM
|
0
|
0
|
3157
|
|
POST
|
What is the from coordinate system? On a side note, webmercator projection will be in the core API at the next release, so you won't need Bing by then (it will also support reprojecting entire geometries and not just points)
... View more
06-15-2010
08:01 AM
|
0
|
0
|
1694
|
|
POST
|
It was a mistake that EditTask was public in the beta. This will not be the case in the next drop. Instead you should be editing features through the FeatureLayer itself by modifying its Graphics collection directly. On a side note, the behavior you describe is often caused by adding more and more eventhandlers to an object. Ie. you forget to unhook it again, and you keep adding the same eventhandler over and over again every time you execute it.
... View more
06-14-2010
04:21 PM
|
0
|
0
|
1505
|
|
POST
|
Silverlight's print implementation is done by printing to a high-resolution bitmap. I'm guessing when you try to print to such a large format, the bitmap will be enourmous and likely the cause of the issue. Your best bet it probably generate the print on the server and create a PDF, but of course that's a lot more work on your side (there's a sample in the code gallery). Also I suggest you cast your vote on this feature: http://dotnet.uservoice.com/forums/4325-silverlight-feature-suggestions/suggestions/656927-vector-printing?ref=title
... View more
06-14-2010
08:55 AM
|
0
|
0
|
766
|
|
POST
|
Which version of the ESRI Silverlight API are you using?
... View more
06-14-2010
08:37 AM
|
0
|
0
|
1505
|
|
POST
|
Correct. Because the world looks "different" in the two projections, the maps won't align on top of each other. Think of a projection as a "unit". It's like mixing meters and miles without re-calculating them to be in the the same units first.
... View more
06-14-2010
07:50 AM
|
0
|
0
|
787
|
|
POST
|
When you say its the same server, is it also the same port number? And are you using the same name to point to the server? (ie localhost, servername, www.servername.com or IP number are all considered different even though they point to the same physical server).
... View more
06-10-2010
11:11 PM
|
0
|
0
|
1936
|
|
POST
|
You want to look at WriteableBitmap.Render http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap.render(v=VS.95).aspx The returned bitmap can be used as the source of the image.
... View more
06-10-2010
11:09 PM
|
0
|
0
|
1341
|
|
POST
|
Support for querying related data will be available with ArcGIS Server v10 and the upcoming release of the Silverlight API.
... View more
06-10-2010
11:01 PM
|
0
|
0
|
837
|
|
POST
|
MapTips can only be triggered by MouseOver. If you need this behavior, pop up a control next to the feature on top of the map when you interact with the datagrid.
... View more
06-09-2010
03:17 PM
|
0
|
0
|
656
|
|
POST
|
You can zoom to any geometry, so if you have the geometry or envelope of the state, you can simply do: myMap.ZoomTo(geometry); This will fit the state in the view.
... View more
06-09-2010
12:28 PM
|
0
|
0
|
1876
|
|
POST
|
DataContractSerializer works because we define datacontracts on Geometry, so yes that works. Just define a datacontract on the entire SerializableFeature, and you should be good to go using that for the entire thing . To convert back to graphic, and setting attributes, you can add this little ToGraphic utility method to your class:
[DataContract]
public class SerializableFeature {
public Graphic ToGraphic() {
Graphic g = new Graphic() { Geometry = Geometry };
foreach(string key in Attributes.Keys)
g.Attributes.Add(key, Attributes[key]);
g.Symbol = new SimpleMarkerSymbol() { Color = new SolidColorBrush(Color) };
return g;
}
}
... View more
06-09-2010
10:22 AM
|
0
|
0
|
2609
|
| 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 |
2 weeks ago
|