|
POST
|
I have few feature layers rendered on the map, and I have an option to change the base map. When I switch the base map, feature layers get cleared. Same thing works well with graphics. I understand map behaves differently for graphics overlays and layers. But, how do I achieve this ? I have tried one solution, where in I keep the feature layer in one array and do this when I switch base map, mMapView.getMap().getOperationalLayers().add(geodatabaseFeatureLayer); but sdk throws a runtime execption "object already owned" for this line. I have map view already declared globally Thanks
... View more
10-15-2019
01:22 PM
|
0
|
0
|
592
|
|
POST
|
I am trying to get the map location point of my current location. I do, mapView.locationDisplay.start { [weak self] (error:Error?) -> Void in if let error = error { // show error } else { // get the map location let currentLocation : AGSPoint = mapView.mapLocation; } } current location point always gives me 0.0 for x and y values, do we have to consider anything here !! using swift 4, ArcGIS iOS SDK v100.2.1
... View more
09-25-2019
12:17 PM
|
0
|
1
|
1191
|
|
POST
|
I don't get any additional information other than that trace. And yes, this does the magic,' ndk { abiFilters "armeabi", "armeabi-v7a", "x86", "mips" } need to just make sure, play store will not block the deployment.
... View more
09-24-2019
11:07 AM
|
0
|
0
|
1471
|
|
POST
|
I have a list of feature layers, on selection of it [ multi-select ], I draw underlying geometries on the map as graphics. I am using graphicOverlays. mGraphicsOverlay.getGraphics().add(graphic); My need is, I have a mapping for transparency attached to each layer and graphicOverlay should consider it. I am doing this way. mGraphicsOverlay.setOpacity((float) transparency / 100); Problem is, when I select another layer, other graphics's transparency changes to currently selected layer's transparency. Do we have any solution for adding opacity to individual symbol/graphics, as we have for JS SDK. markerSymbol.color.a I can instantiate one graphic overlay for each selection, and remove when deselected, but this method is little weird. Let me know a good way.
... View more
09-23-2019
12:27 PM
|
0
|
0
|
701
|
|
POST
|
Hey Gunther, need to know if we have any solution to this !!
... View more
09-23-2019
12:10 PM
|
0
|
0
|
1471
|
|
POST
|
I have a basemap downloaded with some extent to my mobile device and I use Location display manager to detect user's current location. How do I show user a message if his downloaded basemap does not have the current location. One way I found is to get the extent coordinates of the basemap and use it againt LocationDisplay.getMapLocation() that gives current location and do a check using GeometryEngine.contains(). Is there a different way to achieve this ?
... View more
09-18-2019
11:47 AM
|
0
|
1
|
698
|
|
POST
|
I need few public feature layers [ sync enabled / non-sync enabled ] that are available for all for testing large data sets.
... View more
09-17-2019
12:04 AM
|
0
|
1
|
694
|
|
POST
|
Thanks Gunther, I read about Graphics and Features and how they are different. Features and graphics—ArcGIS Runtime SDK for Android | ArcGIS for Developers
... View more
09-17-2019
12:01 AM
|
0
|
0
|
828
|
|
POST
|
Hi Gunther,
1 . I am using ArcGIS android SDK 100.2.1
[ Reason- iOS 9 devices are not supported in later versions and we want to keep both the platforms on same versions ] [ we have other plugin dependencies, where we have to use Java 6 and cannot go to Java 7/8, hence cannot use Android SDK 100.4 or later ]
2. Nexus 9 is 64 bit device
3. App crashes soon it is opened
4. This is the error:
java.lang.RuntimeException: Unable to start activity ComponentInfo{org.aurigo.mobile/xyz.xyz.xyz.MapActivity}: android.view.InflateException: Binary XML file line #9: Binary XML file line #9: Error inflating class com.esri.arcgisruntime.mapping.view.MapView
Caused by: android.view.InflateException: Binary XML file line #9: Binary XML file line #9: Error inflating class com.esri.arcgisruntime.mapping.view.MapView Caused by: android.view.InflateException: Binary XML file line #9: Error inflating class com.esri.arcgisruntime.mapping.view.MapView
let me know if I should provide more information.
... View more
09-16-2019
11:10 PM
|
0
|
0
|
1471
|
|
POST
|
I have rest APIs that I use to generate geodatabase/ create replica, also I use query for filters for some queries. What I am looking for, is the extent option that I can pass in request. Does ESRI has support for this? Right now I am fetching data for whole globe which might lead to larger data set in future. I need to restrict download of geometries that comes inside specified extent.
... View more
09-16-2019
12:44 PM
|
0
|
3
|
1595
|
|
POST
|
I have faced architecture related issue in Android API level 25, Nexus 9, [ issue- map doesn't load, app just crashes]. I debugged and It can be solved by adding supported architecture in the gradle file but I am not sure should it be done or is there any other way through ESRI ? Adding this works, ndk { abiFilters "armeabi", "armeabi-v7a", "x86", "mips" } Adding architectural related code sometimes gets rejected by google play store.
... View more
09-11-2019
01:07 PM
|
0
|
5
|
1763
|
|
POST
|
Thanks Nicholas for detailed explanation, we need to support iOS 9 to serve clients who have such devices. But this can be managed with lowering version to 100.2.1, and thinning reduces the SDK size. One more thing, I have faced architecture related issue in Android API level 25, Nexus 9, [ issue- map doesn't load]. It can be solved by adding supported architecture in the gradle file but I am not sure should this be done or is there any other way through ESRI ? Adding architectural related code sometimes gets rejected by google play store.
... View more
09-11-2019
12:39 PM
|
0
|
1
|
1115
|
|
POST
|
I have built an app using iOS SDK version 100.5.0 but it does not install on iOS 9/10 devices. I checked the release notes, iOS 9/10 is only supported in sdk version 100.2.1, not on later versions. But, 100.2.1 framework size is too large and takes time to build IPA. So I have few queries here, * What is the hack for making iOS9/10 devices run with latest version of arcgis-ios sdk (atleast 100.3.0) ! * How can I reduce the size of framework file in any way ! * Will there be any feature loss if I use lower versions !
... View more
09-06-2019
09:21 AM
|
0
|
3
|
1307
|
|
POST
|
I am drawing graphics offline based on user's geometry selection, I sync it to ESRI when online, with the required fields in ESRI. Now, when I tap on any of these geometries I want to retrieve the saved fields from ESRI, how do I do this ! If I had a geodatabase I would have got these fields as part of attributes. But, with graphic how do I achieve this ! I see in JS SDK they have InfoTemplate that does this magic, I don't see similar tool for Android SDK.
... View more
09-03-2019
12:39 PM
|
0
|
2
|
886
|
|
POST
|
For my app to go live and to remove watermarks on the maps I need to buy licence key and customer care has suggested me to buy Basic level run-time licence key. I have already one EDN subscriotion with, can't I use the key [ Lite level ]came with this EDN licence !! Customer care have suggested me the option with pack of 50 in numbers, for every 50 installation, a new pack. This is not feasible here.. I am sure there will be distribution of keys that would allow me to use it for n number of installation, can you direct me to proper detailing of this or sales reference !
... View more
08-26-2019
08:45 AM
|
0
|
1
|
673
|
| Online Status |
Offline
|
| Date Last Visited |
07-22-2021
03:41 AM
|