POST
|
Hi, You can to create your own custom tool/command in ESRI Maps for SharePoint. Subscribe to mouse events for MapApplication.Current.Map. Then you can access your image service via REST API and get the cell information or any other information. I hope this solution will suit to your requirements. Best Regards, Dima.
... View more
05-12-2014
05:33 AM
|
0
|
0
|
5
|
POST
|
Hi, I hope that you are looking for this: http://resources.arcgis.com/en/help/arcobjects-net/conceptualhelp/index.html#//00010000029s000000
... View more
10-24-2013
06:56 AM
|
0
|
0
|
7
|
POST
|
Hi, Thank you for your reply. I use without any problem point location with SharePoint's Lists since previous version of ArcGIS for SharePoint. I wonder to use not point ESRI Map Location (new type of column added in ArcGIS for SharePoint v3). Thanks in advance.
... View more
08-14-2013
11:18 PM
|
0
|
0
|
5
|
POST
|
Hi, Does anybody success to use column of "Esri Maps Location" type? Best Regards, Dima
... View more
08-12-2013
04:33 AM
|
0
|
3
|
2073
|
POST
|
The spatial reference implements ISpatialReferenceTolerance interface. Just change the value.
... View more
11-01-2012
05:46 AM
|
0
|
0
|
10
|
POST
|
Hi, Check what is the tolerance of the spatial reference of your geometry bag? Sometimes the XYTolerance (ISpatialReferenceTolerance) is too small and it may cause to perfomance's problems. Changing the value to 0.5 meters (in case of Projected Coordinate System) solved the problem for me.
... View more
10-15-2012
01:13 AM
|
0
|
0
|
10
|
POST
|
Hi, What does it means to add mapcontrol to pagelayout control? do you want to add the layers represented in mapcontrol to pagelayout? In this case try: //Get IObjectCopy interface IObjectCopy objectCopy = new ObjectCopyClass(); //Get IUnknown interface (map to copy) object toCopyMap = axMapControl1.Map; //Get IUnknown interface (copied map) object copiedMap = objectCopy.Copy(toCopyMap); //Get IUnknown interface (map to overwrite) object toOverwriteMap = axPageLayoutControl1.ActiveView.FocusMap; //Overwrite the MapControl's map objectCopy.Overwrite(copiedMap, ref toOverwriteMap); Best Reards,
... View more
08-26-2012
10:33 PM
|
0
|
0
|
4
|
POST
|
This is the easy way to define the things as you wish. I am not sure, but i think there is always "default" MXD is loaded ("LAYER" label and border). Try it, i think it will help you to do what you want.
... View more
08-26-2012
10:16 PM
|
0
|
0
|
13
|
POST
|
Hi, When you use Pagelayout control you use some ArcMAP MXD file as a template. You can "delete" (or make invisible) the border and "LAYERS" label via editing this MXD file in ArcMAP. Best Regards,
... View more
08-25-2012
10:36 PM
|
0
|
0
|
13
|
POST
|
Hi, You can create .Net Bitmap object. //parameter check if (activeView == null ) { return false; } ESRI.ArcGIS.Output.IExport export =new ExportBMPClass(); // Microsoft Windows default DPI resolution export.Resolution = 96; ESRI.ArcGIS.Display.tagRECT exportRECT = activeView.ExportFrame; ESRI.ArcGIS.Geometry.IEnvelope envelope = new ESRI.ArcGIS.Geometry.EnvelopeClass(); envelope.PutCoords(exportRECT.left, exportRECT.top, exportRECT.right, exportRECT.bottom); export.PixelBounds = envelope; System.Int32 hDC = export.StartExporting(); activeView.Output(hDC, (System.Int16)export.Resolution, ref exportRECT, null, null); Bitmap myImage = Image.FromHbitmap(new IntPtr((export as IExportBMP).Bitmap)); // Finish writing the export file and cleanup any intermediate files export.FinishExporting(); export.Cleanup();
... View more
07-19-2012
06:14 AM
|
0
|
0
|
15
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|