|
POST
|
correct, queryFeatureCount will go to the service to get the count.
... View more
02-21-2020
09:36 AM
|
0
|
0
|
879
|
|
POST
|
Hey Mark, Do you get the expected results if you use `queryFeaturesResultChanged` signal instead?
... View more
02-13-2020
07:10 AM
|
0
|
0
|
1249
|
|
POST
|
Unfortunately this isn't available as of 100.7. However, we are working on adding this functionality as we speak. Do you have any details on requirements for your project? Do you require a specific type of resampling like nearest neighbor or bilinear interpolation?
... View more
02-10-2020
12:53 PM
|
0
|
0
|
865
|
|
POST
|
Not sure what is going on. Are you able to share your service (or a similar test service) with me? You can direct message me.
... View more
02-10-2020
12:40 PM
|
0
|
1
|
2721
|
|
POST
|
I tried this out and it works for me. Did you ensure you are loading the DictionarySymbolStyle first? // create DictionarySymbolStyle with arcade style file
auto styleArcade = DictionarySymbolStyle::createFromFile("/Users/luca6804/ArcGIS/Runtime/Data/styles/arcade_style/mil2525d.stylx", this);
connect(styleArcade, &DictionarySymbolStyle::doneLoading, this, [styleArcade](Error)
{
qDebug() << "arcade style done loading:" << styleArcade->symbologyFieldNames();
// output is ("context", "identity", "symbolset", "status", "operationalcondition", "indicator", "echelon", "mobility", "array", "symbolentity", "modifier1", "modifier2", "specialentitysubtype", "civilian", "direction", "sidc")
});
styleArcade->load();
// create DictionarySymbolStyle with old, deprecated style file
auto style = new DictionarySymbolStyle("mil2525d", "/Users/luca6804/Downloads/mil2525d.stylx", this);
connect(style, &DictionarySymbolStyle::doneLoading, this, [style](Error)
{
qDebug() << "old style done loading:" << style->symbologyFieldNames();
// output is ("identity", "symbolset", "symbolentity", "modifier1", "modifier2", "echelon", "mobility", "array", "context", "indicator", "status", "operationalcondition", "specialentitysubtype", "civilian", "sidc")
});
style->load();
... View more
02-10-2020
08:22 AM
|
0
|
0
|
1231
|
|
POST
|
That's odd, this should work. Does the rest of your code look similar to this code sample? arcgis-runtime-samples-qt/FeatureLayer_FeatureService.qml at master · Esri/arcgis-runtime-samples-qt · GitHub Is your service secured?
... View more
02-07-2020
07:18 AM
|
0
|
0
|
2721
|
|
POST
|
How is your feature service URL formatted? In the above snippet you have a text string for your URL property. Make sure you specify the layer in the service URL For example, you should use http://sampleserver6.arcgisonline.com/arcgis/rest/services/DamageAssessment/FeatureServer/0 and not http://sampleserver6.arcgisonline.com/arcgis/rest/services/DamageAssessment/FeatureServer
... View more
02-06-2020
01:26 PM
|
0
|
2
|
2721
|
|
POST
|
You should be able to do this still. Here is some code that should get you on the right track: import QtQuick 2.6
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3
import Esri.ArcGISRuntime 100.7
ApplicationWindow {
id: appWindow
width: 800
height: 600
title: "Untitled123"
property bool mouseAccepted: !freePanButton.checked
property var startPoint
property var endPoint
// add a mapView component
MapView {
anchors.fill: parent
// set focus to enable keyboard navigation
focus: true
GraphicsOverlay {
Graphic {
id: graphic
}
SimpleRenderer {
SimpleFillSymbol {
outline: SimpleLineSymbol {
color: "red"
width: 2
}
color: "transparent"
}
}
}
onMousePressed: {
mouse.accepted = mouseAccepted;
startPoint = mouse.mapPoint;
}
onMousePositionChanged: {
mouse.accepted = mouseAccepted;
endPoint = mouse.mapPoint;
envBuilder.setCorners(startPoint, endPoint);
graphic.geometry = envBuilder.geometry
}
// add a map to the mapview
Map {
id: map
// add the BasemapTopographic basemap to the map
BasemapTopographic {}
}
}
EnvelopeBuilder {
id: envBuilder
spatialReference: map.spatialReference
}
ColumnLayout {
RadioButton {
id: freePanButton
checked: true
text: qsTr("Free Pan")
}
RadioButton {
text: qsTr("Draw Rectangle")
}
}
}
... View more
02-06-2020
01:23 PM
|
1
|
2
|
2705
|
|
POST
|
The JavaScript sample is showing the "SketchEditor". This is something we don't yet have in Runtime but plan on adding. We do have samples that show how to create graphics, but you'll need to do it programmatically - arcgis-runtime-samples-qt/ArcGISRuntimeSDKQt_QMLSamples/DisplayInformation/GOSymbols at master · Esri/arcgis-runtime-sam…
... View more
02-06-2020
10:45 AM
|
1
|
4
|
2705
|
|
POST
|
Do you have a column/field named "rte_num1"? The label json specifies that the label should be based on a field named "rte_num1" and use a where clause where that field isn't an empty string. The sample was setup to use this field but you should update it to match your data's schema.
... View more
01-31-2020
07:45 AM
|
0
|
1
|
1667
|
|
POST
|
please see the response here - https://community.esri.com/message/904359-state-names-as-lable-on-shape-file-from-local-repository?et=watches.email.thread The workflow should be the same as the sample only you will display a ShapefileFeatureTable instead of ServiceFeatureTable
... View more
01-28-2020
08:18 AM
|
1
|
0
|
599
|
|
POST
|
Have you taken a look at the labeling sample? - arcgis-runtime-samples-qt/ShowLabelsOnLayers.cpp at master · Esri/arcgis-runtime-samples-qt · GitHub
... View more
01-28-2020
08:16 AM
|
0
|
3
|
1667
|
|
POST
|
There is still no scale bar available, but the API is designed to create one. Here is an example of how you could generate one with QML. We still have plans to add a scalebar into the toolkit but we don't have a timeline.
... View more
01-27-2020
07:48 AM
|
1
|
1
|
1248
|
|
BLOG
|
macOS Catalina introduced a new feature called Gatekeeper, which is designed to keep your Mac safe from malicious apps. In order for Mac apps to run without being flagged as potentially malicious, there is a new notarization process in place for all apps distributed outside of the macOS App Store. The new notarization process will be enforced starting February 3, 2020. All currently released ArcGIS Runtime SDK for Qt installers and sample viewers have not undergone this process, so these released apps will begin to be flagged when opened. The next release of the software will be notarized. For the time being, the installer, post installer, and sample viewers can be run by going to System Preferences > Security & Privacy > under the General tab, find the app you want to run, and select Open Anyway. These details and more can be found in the Apple documentation.
... View more
01-15-2020
01:34 PM
|
0
|
0
|
503
|
|
POST
|
This isn't something we currently have planned. The best thing to do for logging a new feature request or enhancement is to log it through Esri Support because this will allow us to connect your customer number to the request and will also allow other organizations to be attached to the request.
... View more
01-14-2020
02:49 PM
|
0
|
0
|
1942
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 05-27-2026 09:52 AM | |
| 1 | 11-24-2025 10:45 AM | |
| 1 | 07-30-2025 08:26 AM | |
| 1 | 05-15-2025 07:35 AM | |
| 2 | 11-26-2024 01:27 PM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|