|
POST
|
Google searching turned up a few very old posts about this issue with no fixes/workarounds but I just ran into this issue on 10.1.1. With a SimpleMarkerSymbol the point graphic stays spot on when zooming in and out, but with a PictureMarkerSymbol when you start zooming in the image starts shifting up (north) and when zooming out it starts shifting down (south). Any ideas for a workaround to this issue? Thanks a lot!
... View more
11-11-2013
12:44 PM
|
0
|
2
|
2768
|
|
POST
|
Check out: http://resources.arcgis.com/en/help/runtime-wpf/concepts/index.html#/Functionality_set_requirements/017000000067000000/ The "Basic" license (EDN only) alows only local tile packages. The "Standard" license adds on the support for more local data options like packages and you have to buy deployment packs for those. Check out the documentation above (and its other similar pages) and see if it helps...
... View more
10-28-2013
12:01 PM
|
0
|
0
|
830
|
|
POST
|
Back when they called it the "ArcGIS API for WPF" you can still grab the latest version 2.4 from: http://help.arcgis.com/en/webapi/wpf/index.html. But after this version, they renamed it to the "ArcGIS Runtime SDK for WPF" and there have been a few releases, version 1.0 then the current 10.1.1 (10.2 coming soon)... but the bad news is you must have an EDN subscription for these (not sure if this will be true for 10.2) and can download them from your customer portal: http://customers.esri.com If you don't have an EDN subscription and only need to connect to GIS Services (no local data), I would say 2.4 is still decent to get started. Otherwise log into your customer portal and go to the Software Download section for the latest release. Hope that helps a bit!
... View more
10-26-2013
03:56 PM
|
0
|
0
|
830
|
|
POST
|
We have a request from our users to allow them to change the max scale of the labels so was looking into the LayerDrawingOptions. I see we can toggle the labels on and off, but do not see anything about scale. The JSON in the REST API shows there is a "labelingInfo" object that has this option though... Is this not implemented in the 10.1.1 Runtime? Or am I missing something (hoping)? If it is not implemented is there a way I can manually create this "labelingInfo" JSON and inject it into the web request? Also if it is not implemented is it coming in 10.2? Thanks a lot for any help!
... View more
10-17-2013
04:06 PM
|
0
|
0
|
365
|
|
POST
|
You should be able to use the same email however. So I have still been holding out in the hopes to use my one ESRI global account, but decided to give in today cause I want to get into this new site... maybe it is just me but just as an FYI, I couldn�??t use the same email, it said: "The email provided has already been used to create an account." :(.
... View more
10-15-2013
12:54 PM
|
0
|
0
|
730
|
|
POST
|
Found this similar post in the Silverlight forum: http://forums.arcgis.com/threads/76775-Distinct-Query. Guessing the WPF API will be implementing this feature soon too, hopefully in 10.2. For the time being citrusmosquito kindly gave some code that supports using this feature. Compiles just fine in WPF. Thanks!
... View more
10-11-2013
03:17 PM
|
0
|
0
|
566
|
|
POST
|
So the REST endpoint exposes a "Return Distinct Values" option... I am needing this in our WPF app (using 10.1.1) but do not see any options for this in the QueryTask or Query classes. Am I missing something? How might I achieve this functionality short of having to pull everything down and do it client side? I would say we could write a sub query into the where clause but the services don???t expose the feature class name. Hoping I'm just overlooking the option for this. Thanks a lot for any help!
... View more
10-11-2013
10:46 AM
|
0
|
2
|
3417
|
|
IDEA
|
-->
When using two or more fields to symbolize a layer, if only a few values for that field need to be drawn different, it would be nice to have the remaining permutations for that field the same. For example: A pipeline feature class with one field for product type (gas, water, etc.) and another for its exposure (above ground, on ground, partially buried, buried). The goal is to have each product type a different color, buried to be dashed and all other exposures solid. With a single unique values render, we could add one value for buried and make it dashed and then use <all other values> for the solid, but need to add in the color… With a many unique values renderer, we can then set the color for the product type but have to call out each exposure even though 3 of the 4 share the same color and solid line. Would be nice to be able to create symbology values along the lines of: gas, <all other values> gas, buried water, <all other values> water, buried Thanks for the consideration!
... View more
10-09-2013
02:10 PM
|
7
|
0
|
615
|
|
POST
|
Ended up working this out a little different way... added the columns that are being filtered in the line FC to those of the point FC (was nice to have them there for other reasons too). When the app loads if fetches all the line layers where clauses and then when the legend changes it dynamically scans all the visible sub layers and ORs together all their definition expressions. Then it places the expression on the point service. Works pretty good. I placed a little sync icon next to the point layers that get dynamically filtered to let users know, and wish each ArcGISDynamicMapServiceLayer had a refresh complete event or something to make them spin while loading. I hooked the icon to the Map.Progress event which is close enough, but would be a nice enhancement for the service layers themselves (like FeatureLayer has). Still would be curious if anyone has any better ideas... thanks!
... View more
09-15-2013
09:01 PM
|
0
|
0
|
583
|
|
POST
|
So we have a line feature class (pipelines) that is served up with a pretty elaborate hierarchy filtering on a few different columns a bunch of different ways. We also then have a point feature class of a number of items that exist along these lines (valves for example), the users would like to turn on and off these points independently of the lines (i.e. see just the pipes and no valves), but the points should never show if the corresponding lines are turned off (based off the hierarchy). We don???t like the idea of duplicating the point layers over and over in each of the lines hierarchy, so currently the points and lines are two separate services. The question I have is what, if any, is a good way to keep the points definition in sync with the lines? The only common link between the two is an ID field. On a legend changed event it seems we will have to request these IDs from the server passing along the visible lines and then set those in the points LayerDefinition (Yikes that could be a lot of IDs). Problems using Find: - Find requires search text - Find doesn???t have option for out fields, so will return much more attributes than just the needed IDs. Problems using Identify (would just pass a large geometry covering the entire AOI): - Like with find, identify doesn???t have option for out fields so sends a lot more than what is needed. Problems using Query: - Does not work on service directly but on individual layers so would require many server requests since the hierarchy is pretty big. Any ideas or recommendations on how to tackle this? Maybe a better way to design it even? Thanks a lot for any help or ideas!
... View more
09-11-2013
10:05 AM
|
0
|
1
|
1994
|
|
POST
|
We would like to implement middle mouse click and drag functionality like in ArcMap... so when using other tools that handle left clicks there is still a way to pan without switching back to a specific pan tool. I found a few similar posts but none asking exactly what we are after??? so before we start rolling our own code for this, just wanted to ask a few questions: 1) The map control has no out of the box way to enable this, right? 2) Is there any way to bind middle mouse click and drags to this existing functionality on left mouse? 3) Is the source code for this functionality out there anywhere? I had just started to write code for this, which does not work and as expected pans in the wrong directions for now:
void Map_MouseMove(Object sender, MouseEventArgs e)
{
if (e.MiddleButton == MouseButtonState.Pressed)
{
Map map = sender as Map;
map.PanTo(map.ScreenToMap(e.GetPosition(map)));
}
}
But after writing this little snippet thought maybe best I ask if there is a better way first??? Thanks so much for any information.
... View more
08-10-2013
06:49 AM
|
0
|
0
|
2009
|
|
POST
|
Ahh, bummer... seems like a weird design but I guess ESRI has their reason. Thanks a lot for that info!
... View more
08-07-2013
12:12 PM
|
0
|
0
|
730
|
|
POST
|
Trying to register for the new developers site but when using my existing ESRI global account it says "ArcGIS for Developers does not support public accounts"... Why? I really don't want to make another account for this... so how do I make my account not public? Thanks a lot!
... View more
08-02-2013
05:41 PM
|
0
|
5
|
2070
|
|
POST
|
Ahh, thanks a lot for that info Mike. I tried resetting the measure symbols: MeasureAction.FillSymbol = MeasureFillSymbol; MeasureAction.LineSymbol = MeasureLineSymbol; But guess there is still something else going on, hence your suggestion to use the geodesic operations. I think I will just turn off the accellerated display mode for now and eagerly await the release of 10.2.1. Thanks again Mike!
... View more
07-11-2013
12:32 PM
|
0
|
0
|
590
|
|
POST
|
I procrastinated on this bug for a while and now getting to the point of needing it fixed, so bumping this thread in the hopes someone might be able to help. Thanks a lot!
... View more
07-10-2013
09:41 AM
|
0
|
0
|
590
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-24-2023 10:43 AM | |
| 1 | 10-02-2023 02:23 PM | |
| 1 | 11-16-2016 02:05 PM | |
| 1 | 07-05-2017 09:30 AM | |
| 15 | 11-19-2010 08:05 PM |
| Online Status |
Offline
|
| Date Last Visited |
05-01-2024
08:25 PM
|