POST
|
Rather than have your second point be at 170, what happens if you set your second point to -190 ?
... View more
12-13-2017
08:33 AM
|
0
|
0
|
682
|
POST
|
This is not yet implemented for runtime version 100.x This enhancement request is currently open and our engineers are hard at work implementing it: ENH-000104889 Add a method to set the maximum extent of the map to Android Runtime 100.0
... View more
12-04-2017
10:04 AM
|
1
|
1
|
2537
|
POST
|
Hi Gerben Verbrugghe, I assume that you are working with the 10.2.x release of Explorer. This version of the application does not support public accounts. If you have access to a paid subscription account you can use that account info instead. If you are looking to use your public account with the Explorer application, I would consider enrolling in our beta program here: https://community.esri.com/message/691966-android-explorer-beta-release-signup-and-install-information The beta program features the new version of explorer coming in the next few months. This newer version of Explorer removes the requirement of having an organizational account so you should be able to login with the credentials that you were using. If you do not wish to enroll in the beta, this version should be available to you within the next few months. I hope this helps!
... View more
11-21-2017
07:00 AM
|
1
|
1
|
535
|
POST
|
Rather than acces the toolbox in ArcMap, you can use the buffer tool in the GeometryEngine This will allow you to buffer any feature that you pass in to the tool and then buffer it by the unit of the spatial reference.
... View more
11-20-2017
07:26 AM
|
0
|
2
|
572
|
POST
|
You can sideload it by plugging your Android device into your computer and then in the Android File Transfer tool, loading it into /ArcGIS/mmpks/ folder.
... View more
11-06-2017
10:28 AM
|
2
|
2
|
600
|
POST
|
We're hard at working getting the Android version ready for release. Are you by chance already a member of our beta community? You can help us ensure that we have the best available product on release and that your workflows will be supported. For more information, please visit this blog article describing on how to join the beta: https://community.esri.com/message/691966-android-explorer-beta-release-signup-and-install-information
... View more
11-02-2017
09:58 AM
|
1
|
0
|
434
|
POST
|
Awesome! Glad you got rolling. This is a tricky scenario that is occasionally run into.
... View more
11-02-2017
05:58 AM
|
1
|
0
|
1519
|
POST
|
Ahh, okay. I believe the showPopup() method is left blank on purpose as there is a lot of different ways that a developer could implement this and more than likely, it is left up to the developers design and preference for their applications implementation. I guess we need to break it down into how do you want to display your popups and specific behavior that you are looking for in order to move forward. The popups can be displayed either as a separate view entirely or in a callout (think similar to ArcGIS Online). What do you envision as the way you are interested in showing the popup? Then, you would need to determine if you want to show attachments and media within the popups and determine how you would like to display this (again separate view or in the callout). The code that is displayed above will only show the top selected element that is returned from the popups, this means that if you have multiple features sitting very close to each other (nearly on top of each other if not sitting on top of each other) when clicked will only return one feature. Would you want to handle having multiple features showing? And this again would require some thought on how to handle this. (Perhaps a dialog with a recyclerview). What type of features are you going to support? (MapServices, FeatureServices, Both?) Are you supporting all webmaps or do you have a specific webmap in mind? When the above is determined, we can perhaps provide a few pointers in the direction to go with this (along with some small snippets of code). Did you have a look at my sample that I wrote a couple of months ago? ( GitHub - nohe427/KtPopup: Kotlin Popups ) This is written in Kotlin which is a bit different than Java, but the work involved to get rolling should be similar. Are you familiar with Kotlin? In this sample, I used the umano AndroidSlidingUpPanel (GitHub - umano/AndroidSlidingUpPanel: This library provides a simple way to add a draggable sliding up panel (popularize… ) to display my popups. This was quite a challenge getting everything working correctly and is not something that comes out of the box from the SDK. Since we last talked, I did bring it up to the SDK team that you are interested in seeing a function added for default behavior.
... View more
10-27-2017
11:59 AM
|
1
|
1
|
3054
|
POST
|
I believe this is a defect... I would reach out to your local esri distributor to get this logged as such. They can then provide you a defect number to track the status of this defect so you can be alerted when it is addressed.
... View more
10-27-2017
06:15 AM
|
1
|
0
|
769
|
POST
|
This might be better in a new question by itself as this question is marked as resolved.
... View more
10-26-2017
07:00 AM
|
1
|
1
|
784
|
POST
|
Hello Anatoly Torbov, From what I noticed, it looks like the Honor 8 Pro is a 64 bit operating system whereas the Samsung Note2 is a 32 bit operating system. This means that potentially, one of you libraries is not 64 bit compatible. Either all libraries need to run with their 64 bit library or all need to run with their 32 bit library. You can find a stack overflow resolution at the following link that will help you configure your project to run with the 32 bit libraries. How to use 32-bit native libraries on 64-bit Android device - Stack Overflow I hope this helps! Thanks, Alexander
... View more
10-26-2017
06:57 AM
|
1
|
0
|
1519
|
POST
|
I don't believe that there is a Legend view built into the API, but what you can do is for each layer in the map, call Layer| arcgis-android fetchLegendInfoAsync and when it is returned, build the legend from the information provided into any view you wish. I hope this helps!
... View more
10-25-2017
09:43 AM
|
1
|
3
|
1036
|
POST
|
Yes. A list of supported raster formats can be found here: Add raster data—ArcGIS Runtime SDK for Android | ArcGIS for Developers Additionally, if you want to load multiple raster formats, you will need to iteratively invoke the raster layer constructor and then add each layer created to the mapview. You would want something along the lines of this: ArrayList<String> paths = new ArrayList(); paths.add("/path/to/first.png"); paths.add("/path/to/second.png"); for (String path : paths) { Raster raster = new Raster(rasterFilePath); RasterLayer rasterLayer = new RasterLayer(raster); mapview.addLayer(rasterLayer); } I hope this helps!
... View more
10-25-2017
06:50 AM
|
1
|
0
|
430
|
POST
|
You can get the webmaps contained within this web application by going to the following URL: https://theirname.maps.arcgis.com/sharing/content/items/appid/data?f=json From there, you will be presented with some JSON which can be parsed to show the webmaps within. You will want to find the objects that start like this: {"type":"webmap","webmap":{"id":"<someotherid>"...
from this, you can then use those other ids within your own application.
These other ids will reference a portal item id that can then construct a webmap
in the runtime.
It might be better for your user to create a group in portal and then provide that group id
to you so you they can freely update the webmaps within that group and your app can then
handle those additional groups.
I hope this helps!
... View more
10-25-2017
06:46 AM
|
1
|
1
|
525
|
Title | Kudos | Posted |
---|---|---|
1 | 07-15-2014 03:16 PM | |
1 | 01-06-2015 03:33 PM | |
1 | 12-02-2014 10:47 AM | |
1 | 07-15-2014 03:31 PM | |
1 | 09-23-2014 03:59 PM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|