|
POST
|
I am using EsriRuntimeQt::GPMultiValue to give input to GPK. I need to give multi value input to GPK. Sample is as follows: EsriRuntimeQt::GPMultiValue <EsriRuntimeQt::GPString *> l_p; I am getting error undefined reference to `EsriRuntimeQt::GPMultiValue<EsriRuntimeQt::GPString*>::GPMultiValue(QObject*)' undefined reference to `EsriRuntimeQt::GPMultiValue<EsriRuntimeQt::GPString*>::~GPMultiValue()' undefined reference to `EsriRuntimeQt::GPMultiValue<EsriRuntimeQt::GPString*>::~GPMultiValue()' Can I get some sample code, how to use this EsriRuntimeQt::GPMultiValue?
... View more
06-07-2016
09:13 PM
|
0
|
2
|
3460
|
|
POST
|
Thanks for answer. The DTED I have is in 4326 spatial reference. So in order to use Add Surface Information—Help | ArcGIS for Desktop , what spatial reference should be used for input line feature?
... View more
04-05-2016
09:26 PM
|
0
|
1
|
792
|
|
POST
|
I have Digital Terrian Elevation Data(DTED file) for an area. My requirement is that I need to calculate distance between two points in the above mentioned area considering elevation data, not just geodesic length. Basically I want to calculate walking distance between these two points considering elevation i.e there might be some highs and downs in between so a person has to climb or get down, adding more distance than actual point to point distance.
... View more
04-05-2016
01:27 AM
|
0
|
3
|
5325
|
|
POST
|
Hi, I am using Mil2525c symbology for drawing military symbols. I am able to draw properly, but how can I select this symbols on mouse click for further actions like delete/modify/move e.t.c. ?
... View more
03-05-2016
01:33 AM
|
0
|
1
|
2667
|
|
POST
|
I am using Mil2525c Symbology given by Arc GIS Runtime. My doubt is, when drawing a line symbol some symbols takes two control points and some symbols takes three control points. How do I know these information in Arc GIS Runtime application i.e guidelines for drawing a symbol or number of control points for a symbol?
... View more
03-02-2016
01:25 AM
|
0
|
0
|
1901
|
|
POST
|
I am also getting extents printed with Damage Inspection geodatabase. So the problem is with my data. How to create runtime geodatabase such that I get extents in Qt Application? In my case while creating geodatabase, it has extents. One more thing is that what ever the extents I am getting for Damage Inspection geodatabase in Qt Application they are not matching with values I saw for Damage Inspection geodatabase in Arc GIS Desktop.
... View more
01-13-2016
11:39 PM
|
0
|
3
|
1483
|
|
POST
|
Mil 2525c is supported in Arc GIS Qt Runtime. Is there any support available for Mil2525d symbology also ? If not is there any work around to achieve it ?
... View more
01-06-2016
02:30 AM
|
0
|
2
|
3366
|
|
POST
|
When I am printing extent on feature table it is not giving valid output. It is giving 'nan' if I am printing any extent values of feature table.
... View more
01-05-2016
08:03 PM
|
0
|
5
|
1483
|
|
POST
|
I created runtime geodatabase in Arc GIS Desktop and using in Arc GIS Qt application. One of my requirements is that I need to get extents of this runtime geodatabase, how to achieve this? When I created feature layer from run time geodatabase and printing its extent it is giving total extent of map but not only the extent of geodatabase. Regards, Bhargav
... View more
01-04-2016
08:13 PM
|
0
|
7
|
4062
|
|
POST
|
Thanks. The one problem with run time geodatabase I am facing as of now is, it is not able to have annotation layer in it. That is Annotation layer I am not able to package in run time geodatabase(the geodatabase we create from Create Runtime Content tool).
... View more
01-04-2016
08:04 PM
|
0
|
1
|
843
|
|
POST
|
Hello, My application is such that, 1) I don't need Server for getting map data(Vector or Raster). All data is available in my local system i.e I create either mpk/tpk/runtime geodatabases and use in my runtime application. 2) Perform some queries on attributes of layer. 3) I need to pan and zoom the screen. 4) Setting visibility of layers. So my doubt is for displaying of layers or rendering or searching which is better to use, mpk or runtime geodatabases?
... View more
01-01-2016
01:59 AM
|
0
|
3
|
3311
|
|
POST
|
Lucas, Do I get any information about Composite Symbol in the form of Documentations/Some useful links i.e how to use them. I am not finding anywhere in web.
... View more
12-30-2015
09:17 PM
|
0
|
1
|
870
|
|
POST
|
Thanks Lucas Danzinger. It is working as you told. How to select these graphics on mouse click? I got these in one way, EsriRuntimeQt::GraphicsLayer* m_graphicsLayer = (EsriRuntimeQt::GraphicsLayer *)m_messageGroupLayer->get(0); connect(m_graphicsLayer, SIGNAL(graphicIdsComplete(const QList<qint64>&)), this, SLOT(onGraphicIdsComplete(const QList<qint64>&))); m_graphicsLayer->graphicIds(event.x(),event.y(), 10); void Symbology::onGraphicIdsComplete(const QList<qint64>& hitGraphicIDs) { qDebug()<<"in graphic ids complete"; EsriRuntimeQt::GraphicsLayer *m_graphicsLayer = (EsriRuntimeQt::GraphicsLayer *)m_messageGroupLayer->get(0); for (int i = 0; i < hitGraphicIDs.length(); i++) { if (!m_graphicsLayer->isGraphicSelected(hitGraphicIDs.at(i))) m_graphicsLayer->select(hitGraphicIDs.at(i)); else m_graphicsLayer->unselect(hitGraphicIDs.at(i)); } } I am able to select mil2525c symbol created by using above procedure. Is there any other way to select graphic(mil2525c graphic) on mouse click?
... View more
12-30-2015
09:13 PM
|
0
|
0
|
680
|
|
POST
|
I am working on sample Advanced Symbology->Symbol Dictionary given in Arc GIS Qt Samples. As given in the sample we are able to draw symbols, move the symbol(using the call EsriRuntimeQt::MessageHelper::createUpdateMessage) but I am not able to select the symbol which I drawn on map. In the documentation I found out that in order to select symbol I can use function static Message EsriRuntimeQt::MessageHelper::createSelectMessage ( const SymbolDictionaryType & type, const QString & messageId, const QString & messageType, const bool & highlight ) How to use this function in order to achieve selection of symbol?
... View more
12-27-2015
08:27 PM
|
0
|
2
|
3098
|
|
POST
|
When I am working with MIL2525C Symbology in ArcGIS Runtime I encountered with esriMultiPartCIMSymbol, CIMPointSymbol, CIMPolygonSymbol, CIMTextLayer. I found out these are useful like we can create a single graphic display them along with name associated with it. For example if we use existing symbols present in ArcGIS Qt API, if we draw a Polygon we can put only one symbol either for drawing or displaying text both we cannot put at a time. This might be possible with this esriMultiPartCIMSymbol concept, but I am not finding any documention for the above mentioned symbols to use in my ArcGIS Qt Application such that with single graphic object I can display text and drawing. Thanks Bhargav.
... View more
12-20-2015
09:52 PM
|
0
|
3
|
3568
|
| Online Status |
Offline
|
| Date Last Visited |
04-10-2024
06:37 AM
|