|
POST
|
ArcGIS Runtime is conceptually more like a local ArcGIS Server so there isnt a concept of MXD within the ArcGIS Runtime environment I suspect it wont be supported within Runtime environment. Accessing and manipulating MXD's might work outside the Runtime environment. You may need to create a MPK (map package) from your MXD and then publish it as a service. After that you should be able to access Layers and other properties. What exactly is the requirement that you are trying to accomplish?
... View more
02-19-2014
05:22 PM
|
0
|
0
|
812
|
|
POST
|
1) What is your source file (dgn file) spatial reference? Does it have an associated spatialreference file or not? validate the source spatial reference IGeometry shapeCopy = pFeature.ShapeCopy; Get the spatial reference from Geometry to see if it has a geometry. 2) Your feature class in destination (feature class in SDE) must be in some spatial reference? What is that? 3) If the source and destination Spatial references are not same you will see differences. You will have to ensure that the CRS definition is correct. Depending of the spatial reference of source and destination you will have to either set spatial reference of project the shape to the target spatial reference.
... View more
02-19-2014
06:00 AM
|
0
|
0
|
1925
|
|
POST
|
You can try using ILatLonFormat2 Interface. This is not a tested code but giving you some directions. Dim pLatLonFormat As ILatLonFormat2 Set pLatLonFormat = New LatLonFormat With pLatLonFormat .ShowZeroMinutes = True .ShowZeroSeconds = True End With Dim pReportUnitFormat2 As IReportUnitFormat2 Set pReportUnitFormat2 = pMXDoc pReportUnitFormat2.CoordinateReadoutUnits = esriDecimalDegrees Set pReportUnitFormat2.CoordinateReadoutLatLonFormat = pLatLonFormat I Hope this helps
... View more
02-18-2014
05:27 PM
|
0
|
0
|
313
|
|
POST
|
Will it be possible for you to export the data in a shapefile or the feature whose area you are calculating into a shapefile and upload it. Its difficult to understand how you are trying to accomplish it? Also let me know what Spatial reference you are working in?
... View more
02-18-2014
05:03 PM
|
0
|
0
|
1925
|
|
POST
|
Can you post screenshot from your ArcGIS Administrator? ArcGIS Engine and Devkit have separate licenses? I dont know what you are using but it appears you need to license your devkit!! [ATTACH=CONFIG]31538[/ATTACH]
... View more
02-17-2014
07:40 PM
|
0
|
0
|
2251
|
|
POST
|
I hope you are compile all your code as 32 bit since AO is 32 bit only. Can you post your preprocessor settings?
... View more
02-17-2014
07:33 PM
|
0
|
0
|
2365
|
|
POST
|
Its throwing a license related error? How are you doing licensing for AO environment? What environment variables are you setting for AO?
... View more
02-17-2014
05:47 PM
|
0
|
0
|
2365
|
|
POST
|
Can you validate the following information? 1) Are you looking at the correct features (for matching)? Can you print the FIDs or does it have just one feature? 2) Are you changing the coordinate reference system in any way? 3) When looking at the values in ArcMap is there any conversion mapping or unit change occurring? Please provide some more of this information to help understand the problem !!
... View more
02-17-2014
05:24 PM
|
0
|
0
|
1925
|
|
POST
|
Whats the screen resolution you are working on? Just for a quick test try DPI 150, then 200 and 300 and see what happens !!!
... View more
02-07-2014
12:32 PM
|
0
|
0
|
1330
|
|
POST
|
You can use the DPI option while printing to adjust printing according to the paper size int DPI = 96; // change DPI accordingly Paper paper = new Paper(); MediaSize size = sizeMap.get(sizeList.getSelectedItem()); double width = (size.getX(Size2DSyntax.INCH))*DPI; double height = (size.getY(Size2DSyntax.INCH))*DPI; paper.setSize(width, height); paper.setImageableArea(MARGIN, MARGIN, width - (2*MARGIN), height - (2*MARGIN)); I hope this helps
... View more
02-07-2014
09:39 AM
|
0
|
0
|
1330
|
|
POST
|
Hey, I followed this http://resources.arcgis.com/en/help/runtime-java/concepts/index.html#/Printing/01qv00000084000000/ to set up a print button on my application. The only problem I am having is making the map fit on one page. any idea how do achieve this? I am not very clear on what the exact problem is. Have you set up the Paper size and Orientation? How are you setting that?
... View more
02-06-2014
03:00 PM
|
0
|
0
|
1330
|
|
POST
|
So I guess, I need to install my SDK on Ubuntu if I need to deploy on Ubuntu ? and on RedHat if I deploy on RedHat ? They have one for Windows and one for Linux so you should be able to re-use the Linux deployment package on Ubuntu and Redhat. What about my application ? do I need to compile my .jars on Linux ? or .jars created on my windows environment are the sames ? The jars should be fine. whatever you created on Windows should work on Linux as well.
... View more
02-05-2014
05:53 AM
|
0
|
0
|
1622
|
|
POST
|
You need to install ArcGIS Runtime SDK for Java 10.2 on Linux which has its own Deployment Builder tool. Using that you can build the Linux deployment package. I hope this helps !!!
... View more
02-04-2014
10:48 AM
|
0
|
0
|
1622
|
|
POST
|
I believe what you want to accomplish is to set the map scale and then set the envelope from this MapBounds (at this scale)? pMapFrame.ExtentType = esriExtentBounds 'clears pMapFrame.MapBounds pMapFrame.MapScale = 10000 Dim pEnvelope As IEnvelope Set pEnvelope = pMapFrame.MapBounds Shouldnt you be using esriExtentScale instead? pMapFrame.ExtentType = esriExtentScale
... View more
01-28-2014
08:43 AM
|
1
|
0
|
432
|
|
POST
|
There are filters based on which you can restrict what type of Dataset you want to see, Feature dataset Vs Raster dataset. I believe thats what you want to accomplish? datasetList = arcpy.ListDatasets("*", "Feature") for dataset in datasetList: print dataset fcList = arcpy.ListFeatureClasses("*","",dataset) for fc in fcList: print fc Similarly datasetList = arcpy.ListDatasets("*", "Raster") should give you only raster datasets.
... View more
01-20-2014
09:03 AM
|
0
|
0
|
1057
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-28-2014 08:43 AM | |
| 1 | 02-23-2015 12:10 AM | |
| 1 | 02-27-2015 04:12 AM | |
| 2 | 07-09-2015 12:01 AM | |
| 1 | 03-02-2015 10:39 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|