|
IDEA
|
04-14-2021
11:08 AM
|
0
|
0
|
1577
|
|
IDEA
|
ReverseGeocodeParameters.MaxResults is already available https://developers.arcgis.com/net/wpf/api-reference/html/P_Esri_ArcGISRuntime_Tasks_Geocoding_ReverseGeocodeParameters_MaxResults.htm
... View more
04-14-2021
11:07 AM
|
0
|
0
|
1081
|
|
IDEA
|
MilitarySymbols are multilayer symbols that can be modified in Runtime or Pro. For example, you could modify the symbol in Pro, such as changing the background color or disabling color lock on a specific layer in the symbol. Once in Runtime, you could modify the color in code https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-multilayersymbol.html#setColor
... View more
04-14-2021
10:59 AM
|
0
|
0
|
954
|
|
IDEA
|
This is available with our SimpleLineSymbol by setting markerPlacement and markerStyle: - https://developers.arcgis.com/net/wpf/api-reference/html/P_Esri_ArcGISRuntime_Symbology_SimpleLineSymbol_MarkerPlacement.htm - https://developers.arcgis.com/net/wpf/api-reference/html/P_Esri_ArcGISRuntime_Symbology_SimpleLineSymbol_MarkerStyle.htm Additionally, you can author your own custom symbols and styles in Pro and consume those in Runtime. Here is an example of that in Qt, but same concepts would apply in .NET https://community.esri.com/t5/arcgis-runtime-sdks-blog/using-custom-pro-symbols-in-arcgis-runtime/ba-p/888699
... View more
04-14-2021
10:54 AM
|
0
|
0
|
986
|
|
IDEA
|
04-14-2021
10:37 AM
|
0
|
0
|
1475
|
|
IDEA
|
These are 3 separate ideas. It would be better to separate them out so the community can vote on each separately. I can confirm that size/scale will be available with the 100.11 release. The DictionaryRenderer will allow you to set a simple expression or even a complex Arcade Expression to scale symbols.
... View more
04-14-2021
10:36 AM
|
0
|
0
|
1628
|
|
POST
|
Hello, and welcome! Did you setup your API Key for accessing basemaps? https://developers.arcgis.com/qt/get-started/#3-get-an-api-key
... View more
04-12-2021
07:02 AM
|
0
|
2
|
1730
|
|
POST
|
@Jan-Tschada - we are currently investigating what it will take for us to support Qt 6, and how that will impact our support for Qt 5. How rapidly we move to Qt 6 will greatly depend on demand and customer feedback. If you could send me details on your requirements and timelines for Qt 6 support, that would be invaluable for our decision making. Thank you.
... View more
04-06-2021
09:38 AM
|
1
|
1
|
1438
|
|
POST
|
Hello, You are correct - we simplified the post installer, but in the process, introduced this bug. I'll log an issue for us to fix it up. FYI - the reason we need to use this path in the first place is due to a limitation where the default install path (C:\Program Files (x86)) has spaces in it, and the compiler does not tolerate it. We copy it to a known location in ProgramData to work around the issue but missed updating the PostInstaller. Your workaround of manually copying here is exactly what you should do for the time being. Thanks, Lucas
... View more
03-17-2021
07:05 AM
|
0
|
0
|
823
|
|
POST
|
You can get TimeSlider up and running by doing the following: - Create a new Qt Quick C++ project from our template - include the toolkit PRI in your pro file - include(/path/to/arcgis-runtime-qt-toolkit/uitools/toolkitcpp.pri) - register your components in the main.cpp - #include <Esri/ArcGISRuntime/Toolkit/register.h> Esri::ArcGISRuntime::Toolkit::registerComponents(engine); - Add a timeslider to your qml: MapView {
id: view
anchors.fill: parent
// set focus to enable keyboard navigation
focus: true
TimeSlider {
anchors {
left: parent.left
right: parent.right
bottom: parent.bottom
}
geoView: view
}
} - Add a time enabled layer, such as this map image layer ToolkitTestCppQuick::ToolkitTestCppQuick(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(Basemap::streets(this), this))
{
auto imgLyr = new ArcGISMapImageLayer(QUrl("https://sampleserver6.arcgisonline.com/arcgis/rest/services/Hurricanes/MapServer"), this);
m_map->operationalLayers()->append(imgLyr);
} - The time slider will automatically get the time extent, and you can manipulate/filter the time:
... View more
03-01-2021
12:57 PM
|
1
|
1
|
1668
|
|
POST
|
The roles are primarily there for use within delegates/views. We tried to create it so it had smart defaults and would plug into a view easily, so sometimes that involved doing some plumbing to retrieve the information that ultimately gets exposed as a role. If you want to access the values of the roles outside of the view/delegate, instead of getting the LegendInfoListModel off of the Map, you could instead, loop through the Map's operational layers - this will give you a Layer object, which contains much of the information you need. Here are a list of roles accessible on the LegendInfoListModel and how you can access the info programmatically: - name - get the name string directly from the LegendInfo object - symbolUrl - get the Symbol from LegendInfo, then access the Symbol.swatchImage property - symbolHeight - get the Symbol from LegendInfo, then get/set SwatchOptions via Symbol.swatchOptions - symbolWidth - get the Symbol from LegendInfo, then get/set SwatchOptions via Symbol.swatchOptions - layerMinScale - get from the Layer (Loop through the map's operational layers, and for each layer, get the min/max scale and legend infos) - layerMaxScale -get from the Layer (Loop through the map's operational layers, and for each layer, get the min/max scale and legend infos) Hope that helps get you on the right track
... View more
02-16-2021
01:26 PM
|
0
|
1
|
1920
|
|
POST
|
Armando: The OpenSSL version is correct - https://developers.arcgis.com/qt/reference/system-requirements/#openssl Did you make sure to either copy those dll's into your Qt kit's bin folder or add it to your PATH? They need to be somewhere that will be picked up at runtime by the app. If you've done all this, are you certain the crash is related to OpenSSL? Usually when I don't have OpenSSL libs present, I just don't see any maps being display - I still see the Window and the MapView's attribution bar at the bottom. What messages do you see in the application output console? What is your call stack?
... View more
02-09-2021
09:09 AM
|
0
|
1
|
1727
|
|
POST
|
Armando: If you are creating maps in ArcGIS Pro, the best way to open those in Runtime is to export the data to a Mobile Map Package - https://pro.arcgis.com/en/pro-app/latest/help/sharing/overview/mobile-map-package.htm Once you have a Mobile Map Package (.mmpk file) you can open in Runtime with the following code - https://github.com/Esri/arcgis-runtime-samples-qt/tree/master/ArcGISRuntimeSDKQt_CppSamples/Maps/OpenMobileMap_MapPackage If you are wanting to only share a basemap, you can also create a TPK file directly in Pro with this tool - https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-map-tile-package.htm However, the Mobile Map Package has some advantages in that it retains the structure of your map, with operational layers and basemap layers, and it can be queried and interacted with like your map in Pro. A TPK is more static and loses individual attributes on features and such. Long story short, if you just want a basemap, a TPK or VTPK will work great. If you want to bring your Pro Maps to Runtime, MMPK is the way to go.
... View more
02-09-2021
08:52 AM
|
1
|
1
|
5204
|
|
POST
|
Runtime supports reading style files created in Pro. Here is a sample that shows how we read a stylx file created in ArcGIS Pro and display symbols in both swatches in the UI and in the map as graphics. https://github.com/Esri/arcgis-runtime-samples-qt/tree/master/ArcGISRuntimeSDKQt_CppSamples/DisplayInformation/ReadSymbolsFromMobileStyle
... View more
02-05-2021
10:54 AM
|
0
|
0
|
1363
|
|
POST
|
@MKa - I moved this question to the AppStudio queue - the Survey123 template app defines its own Portal object with sign in/out. It doesn't use the ArcGIS Runtime objects for this. They will be able to better assist you.
... View more
02-03-2021
09:03 AM
|
0
|
0
|
2184
|
| Title | Kudos | Posted |
|---|---|---|
| 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 | |
| 1 | 06-26-2015 10:19 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|