|
POST
|
@DaveWhitla if you don't have a support agreement, you can report the issue here. Current known issues which are likely to cause issues are always listed in our release notes.
... View more
09-29-2021
07:37 AM
|
0
|
2
|
2359
|
|
POST
|
@KarthiSivalingam can you send me the console output you are getting when the application crashes? It would help me to see the details of this. I'm currently running a modified version of your app which is hitting that toggle button 4 times a second to see if I'm able reproduce the crash. I've not managed to get it to crash yet (after 2 hours), but I'm seeing the memory usage of the JVM go up very slightly, but given the allocation and deallocation of resources happening in the background I'd expect this. When resources are deallocated in Java, you won't see an immediate drop in memory usage; this is managed by the garbage collection in the JVM. The JVM should free up resources eventually. I've had a quick look at your code and I can't see any issues with what you are doing here. Send me some more details of the crash and I'll look into this. It certainly shouldn't be crashing.
... View more
09-29-2021
05:51 AM
|
0
|
0
|
2642
|
|
POST
|
@DaveWhitla to log a bug there are a number of support support options here. You can use the dedicated support option for example. You may also have a support agreement with your local ESRI distributor if you are not US based. Failing that, you can raise the bug here and I'd be happy to assess it.
... View more
09-27-2021
03:09 AM
|
0
|
0
|
2388
|
|
POST
|
@NickRobles2 I'm going to ask one of the forum admins to move your post to somewhere you can get help with this from an ArcGIS Server point of view... watch this space!
... View more
09-20-2021
06:18 AM
|
0
|
0
|
4711
|
|
POST
|
@NickRobles2 I want do double check that you are intending on developing a JavaFX Desktop app which runs on Windows, Linux or Mac? If this is the case, you are in the right place and I can help you. If you are writing a server side component then the ArcGIS Runtime for Java product is not what you should be using. If you are writing a server component then I'll point you in a different direction to help you. If you are writing desktop JavaFX apps, then let me know what you are trying to do and I'll point you at the relevant doc and samples.
... View more
09-17-2021
06:54 AM
|
0
|
0
|
4745
|
|
POST
|
When you say the Java SDK, I want to make sure you are talking about this product which is for writing desktop apps with JavaFX? Note that this API is not for writing server components in microservices for example, this is a client side API. If this is the product you are referring to then the answer is yes, we have lots if API which effectively wraps the ArcGIS Rest API so you can use it in Java code easily. There is a sample app in git which shows how to work with attachments alongside many others which explain common workflows. Does this help?
... View more
09-17-2021
12:55 AM
|
1
|
1
|
4751
|
|
POST
|
@hedonicCrab for reference I've included your short video so we can continue to help you in this thread. You've said that you see this on mac macOS and Ubuntu. I can confirm that this looks very wrong and certainly isn't expected. Are you able to reproduce the issue with this app in git or is is more specific to a dataset you are using? At the very end of your video there looks like its performing an animated zoom operation; this won't have been triggered by mouse wheel, so do you have some other viewpoint setting code which is fighting the mouse interactions? If you can share some code and confirm the version of the SDK you are using, that would help too.
... View more
09-03-2021
01:19 AM
|
0
|
0
|
2071
|
|
POST
|
There a couple of versions of this post and part of the conversation is here https://community.esri.com/t5/arcgis-runtime-sdk-for-java-questions/re-can-i-change-the-scrolling-sensitivity/m-p/1093739#M2440 I'm not sure how this has happened, but I've asked a couple of questions in the other thread so I can begin to help you with this.
... View more
09-03-2021
01:08 AM
|
0
|
0
|
2197
|
|
POST
|
Are you able to reproduce the issue with this app in git or is is more specific to a dataset you are using? It is possible to override the interactions in the JavaFX control to make your own, but let's explore if this is a data issue first. If you can share some code and confirm the version of the SDK you are using, that would help too.
... View more
08-31-2021
01:50 PM
|
0
|
0
|
2096
|
|
POST
|
@KeerthanaL I was looking at your screenshots and it looks like you are using Android Studio. The Java API is for writing JavaFX desktop applications, but you'll be glad to hear there is an Android specific mapping API. There are lots of tutorials which will help you get going and I'd suggest you start by looking at this tutorial which covers the gradle script. There are also lots of samples for the Android API in Java and Kotlin. If you have any specific questions about the Android API, its best to post here. Does this help?
... View more
08-26-2021
01:58 AM
|
0
|
0
|
2155
|
|
POST
|
Using Kotlin for writing a JavaFX Runtime app is a perfectly viable solution and for Android developers it is becoming the norm. The uptake of Kotlin for JavaSE developers is however much slower. In terms of the gradle build script, it won't be any different from what you would create for an application written in Java. Here is a tutorial which explains the process of writing a very basic mapping app: https://developers.arcgis.com/java/maps-2d/tutorials/display-a-map/ There are also lots of sample applications you can use as a reference here: https://github.com/Esri/arcgis-runtime-samples-java One thing I could consider is adding a sample in Kotlin to the repository above.
... View more
08-23-2021
02:16 AM
|
1
|
0
|
1202
|
|
POST
|
I don't know a lot about your application, but I'm wondering where your data comes from in your map? I sounds like your data is coming from a Feature service, but how is this added to your map? Are you adding the feature services by building up your operational layers (programatically), or are you using a pre-authored map from ArcGIS Online (WebMap)? If you are using a map (a webmap) from ArcGIS Online there is a way of authoring your webmap so when you look at on a client app (JavaScript, Runtime etc) and display the data, only a defined subset of the feature attributes are displayed. This definition of the attributes you want your user to see is called a popup definition. So when you perform an identify operation on your MapView, you have to choice to either work with the complete set of attributes from the feature, or the authored subset which will be in the popup. Does this help?
... View more
08-11-2021
12:27 AM
|
0
|
1
|
1517
|
|
POST
|
I suspect the issue you have been seeing is that your application is trying to access resources before they are loaded. In the Runtime SDK we encourage asynchronous development techniques to ensure that you don't write any code which potentially blocks the UI thread of your app. I'd have a look at this page on loadable resources. In your code above I suspect something in your app has triggered a load event because the ListChangesListener has triggered. This may have been caused by you adding the layer to the map, or you called LoadAsync on the layer. Anyway I've added a snipped of code to set the labelling property within a doneLoadListener. If you call this outside of the listener it throws an error. featureCollectionLayer.loadAsync(); // needed if you didn't add it to a map.
featureCollectionLayer.addDoneLoadingListener(()-> {
System.out.println("loaded");
// if this is called without the layer loaded it will fail.
featureCollectionLayer.getLayers().get(0).setLabelsEnabled(false);
}); This might be same issue with your other post. Let me know if this helps.
... View more
07-13-2021
06:32 AM
|
0
|
2
|
2060
|
|
POST
|
I could explain the errors you are getting here, but I do think its worth you explaining what you are trying to do in your app and the data sources you are working with. Once I've understood what you are trying to do and what data you are working with I can give you pointers to documentation or samples which demonstrate this.
... View more
07-13-2021
03:10 AM
|
0
|
1
|
2069
|
|
POST
|
@TimothyReed1 as I've had a few questions similar to this recently, I've written a blog post which you may find useful for future reference. There is a git repository containing the demo too.
... View more
06-16-2021
06:56 AM
|
0
|
0
|
2556
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-12-2026 01:35 AM | |
| 2 | 05-07-2026 06:59 AM | |
| 1 | 08-13-2024 05:17 AM | |
| 1 | 07-10-2024 01:50 AM | |
| 1 | 04-22-2024 01:21 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-13-2026
06:46 AM
|