|
POST
|
Hi,
Activating next tool deactivates previous tool. Why do you use Move tool to select point? You can select it from code
... View more
12-05-2024
06:40 AM
|
0
|
2
|
1516
|
|
POST
|
Hi,
I have remembered my post on another similar thread. There are no changes in layer properties window in ArcGIS Pro. There is possibility to change color for now, but not symbol.
P.s. I am still on ArcGIS Pro 3.3.2
... View more
12-05-2024
05:36 AM
|
0
|
1
|
1815
|
|
POST
|
Hi,
Have you seen these community threads (thread1 and thread2)?
... View more
12-05-2024
04:58 AM
|
0
|
1
|
1301
|
|
POST
|
Hi,
As written in ArcGIS Pro ProConcepts Editing, you cannot use edit operation methods within the context of your call back routine or lambda. You use Delete method of EditOperation.
... View more
12-02-2024
01:32 AM
|
0
|
0
|
1149
|
|
POST
|
Hi,
You can use DGPS (Differential GPS) to improve your accuracy. I think, you could simplify your GPS data as suggested here. ArcGIS geoprocessing tool Simplify Line can help you, but it needs standard or advanced license. Ramer-Douglas-Peucker line simplification code you can find by web search or click on link.
... View more
11-30-2024
12:36 AM
|
1
|
1
|
3787
|
|
POST
|
Hi,
You have global variable _mapViewOverlayControl (with underscore) which is null, I think. So change it to:
MapView.Active.AddOverlayControl(mapViewOverlayControl);
Without underscore it works fine
... View more
11-28-2024
12:28 PM
|
0
|
1
|
1315
|
|
POST
|
Hi,
We try to add AdMob advertising to our MAUI application using Plugin.MauiMTAdmob nuget package. We call Interstitial Ad loading method at the end of MainPage constructor. When ad is loaded, we call showing method. At the beginning we can see map with our data, then ad page shows on top of MainPage. After closing ad page MapView interacts with gestures (scale and viewpoint properties changes), but MapView shows initial extent. Setting viewpoint from code doesn't refresh MapView view too.
We are trying to change advertising loading place now.
I understand what problem isn't with ArcGIS Runtime, but could you give me some ideas why MapView couldn't refresh.
P.s. On iPhone it works as expected, MapView refreshes.
... View more
11-28-2024
03:39 AM
|
1
|
0
|
759
|
|
POST
|
Hi,
After some investigation I have found that it couldn't be only distance issue. Sometimes it works on longer paths and doesn't on shorter. I noticed what it could be dependent on restricted paths for walking (highways and etc.) If it is possible to find a way that for example can cross highway but not goes along highway and distance is longer (but not so much) then it creates route. Otherwise, it returns exception. So, it depends on not only distance but and other network parameters.
... View more
11-27-2024
04:44 AM
|
0
|
0
|
1842
|
|
POST
|
Hi,
I have modified ArcGIS Pro SDK Community sample InspectorTool. I have changed autoload to true. It works as expected. Initialize event arises before ArcGIS Pro starts (on splash screen). Check project target framework (.NET8.0) version and desktopVersion in config.daml file.
... View more
11-26-2024
11:41 PM
|
0
|
1
|
1573
|
|
POST
|
Hi,
I have edited code from the Find Place sample (MAUI). Code below:
GeocodeParameters parameters = new GeocodeParameters();
// Get the current map extent.
Geometry extent = MyMapView.VisibleArea;
// Update the search parameters.
parameters.SearchArea = extent;
var locatorTask = new LocatorTask(new Uri("https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer"));
// Get the location information.
IReadOnlyList<GeocodeResult> locations = await _geocoder.GeocodeAsync("Coffee", parameters);
// Stop gracefully and show a message if the geocoder does not return a result.
if (locations.Count < 1)
{
return; // 3. Stop.
}
It works and returns locations. Sample is here:
https://github.com/Esri/arcgis-maps-sdk-dotnet-samples/tree/main/src/MAUI/Maui.Samples/Samples/Search/FindPlace
... View more
11-25-2024
07:31 AM
|
0
|
0
|
1143
|
|
POST
|
I have checked all Esri Community samples. There are 3 cases of using Store method. First method using inside EditOperation callback. Second method uses Store inside Geodatabase.ApplyEdits (sample MemoryGeodatabase). And third one as I wrote above is using Store in Row events without additional requirements (sample ModifyNewlyAddedFeatures). Rest of Store samples (6 from 😎 use first method.
I used Store method in my first add-ins, but now there is no Store usage in my code. It seems that is similar solution as in ArcObjects but it works different.
... View more
11-20-2024
10:36 PM
|
0
|
0
|
1246
|
|
POST
|
You could try to call python script with your workflow from CoreHost application or execute python script directly. We have similar situation with geoprocessing in CoreHost application. There is no way to call geoprocessing tool directly, but you can call it from python.
... View more
11-20-2024
09:10 AM
|
0
|
1
|
3048
|
|
POST
|
Hi,
If I understand correctly, you are talking about the AnimationCurve and duration which are available when you set viewpoint from code. For internal calls of setting viewpoint there is no such interaction parameters, I think.
... View more
11-20-2024
08:45 AM
|
0
|
0
|
2517
|
|
POST
|
Sorry @CarlosPiccirillo2 .
Project class belongs to ArcGIS.Desktop.Core workspace which is not accessible from CoreHost application. ArcGIS.CoreHost and ArcGIS.Core assemblies are available from Corehost application only. More information here.
... View more
11-20-2024
08:25 AM
|
0
|
0
|
3056
|
|
POST
|
Hi,
You could use Row.Store method without EditOperation callback only in OnRowChangedEvent implementation. More information here. There are not so many cases which need Store using.
... View more
11-20-2024
08:06 AM
|
0
|
2
|
1263
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 06-30-2026 10:14 PM | |
| 1 | 06-30-2026 01:43 PM | |
| 2 | 04-24-2026 08:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|