|
POST
|
Hi Omur, As far as installing ArcGIS Server, I am not sure in that. You may want to reach out to someone in customer service. As far as AppStudio is concerned, it is a great tool to build multi platform native applications in. However, it really depends on what you are comfortable with and what kind of audiences you want to target. It really comes down to if you would rather write your app in Java or QML. I hope this helps!
... View more
02-10-2016
09:50 AM
|
2
|
1
|
2746
|
|
POST
|
Hi Omur, Glad to have helped! Best of luck with your application! Thanks, Alexander
... View more
02-09-2016
07:27 AM
|
0
|
3
|
2746
|
|
POST
|
Hi Omur, I think I am confused as to what you are looking to do based upon the questions asked. Are you looking to find layers from your ArcGIS Online account in Android or are you looking to create layer objects with information from your ArcGIS Online account? If you are looking to get information from your ArcGIS Online account, you should create a Portal object and then query that Portal object for feature layers within it: Portal | ArcGIS Android 10.2.7 API Here is a sample for connecting to Portal and querying it: Portal Featured User Groups | ArcGIS for Developers
... View more
02-08-2016
12:02 PM
|
2
|
5
|
2746
|
|
POST
|
I think your coordinates are backwards. Point(36.793653, -119.866896)
should be Point(x, y)
If you are working in WGS 84 (4326) the maximum value for Y is 90/-90.
I believe what you meant to put was:
Point(-119.866896, 36.793653)
If you add the stop graphics to your map, do they show in the correct location?
... View more
02-04-2016
07:28 AM
|
0
|
1
|
1694
|
|
POST
|
Hello tulasa mirji, This forum might not be the best place to post questions regarding API's that are not ArcGIS Android Runtime related. You might find more success with questions like this on forums such as: Stack Overflow http://stackoverflow.com/ Where you can tag your issue with the android or the google-maps-api-3 tag to seek out the appropriate resources.
... View more
02-04-2016
06:02 AM
|
1
|
1
|
956
|
|
POST
|
Are you trying to move away from Esri runtime APIs completely or are you looking to do this within a web browser on the mobile device? This would largely depend on the SDK that you would be using and whether they have implemented a method to handle that type of data. If you are looking to use a webpage and open it on a mobile device, you may be more interested in this section of GeoNet: ArcGIS API for JavaScript Or this section: HTML5, CSS, JavaScript, and JavaScript Frameworks
... View more
02-01-2016
05:01 AM
|
0
|
0
|
1047
|
|
POST
|
You do not need to use a webmap when developing an application. You can load individual layers at once into a map object. This documentation should help you on which layer type to use: Layer types—ArcGIS Runtime SDK for Android | ArcGIS for Developers And this documentation should help you with loading the data: Attribute Editor | ArcGIS for Developers (Look under the onCreate method.) featureLayer = new ArcGISFeatureLayer( "http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Petroleum/KSFields/FeatureServer/0", MODE.SELECTION); As for part 2 of this question, you may want to provide a section with check boxes that let you toggle the visibility on or off for each layer. This documentation should help you figure out this portion: Layer | ArcGIS Android 10.2.7 API
... View more
02-01-2016
04:52 AM
|
1
|
8
|
2746
|
|
POST
|
I do not understand your question. As far as I understand it, openlayers is an API and not a data format. Am I misunderstanding? Do you have a link referencing what you are looking for? I am looking at this page: OpenLayers 3 - Welcome
... View more
01-29-2016
05:18 AM
|
0
|
2
|
1047
|
|
POST
|
I would try clearing your cache and try different browsers. Is it reproducible on all browsers? Also, are you already logged into ArcGIS Server when you try adding it? Try opening Chrome in incognito mode and adding the service then to see if you can reproduce the issue there.
... View more
01-28-2016
01:10 PM
|
0
|
0
|
1191
|
|
POST
|
Using the setLocationListener on the LocationDisplayManager, (LocationDisplayManager | ArcGIS Android 10.2.7 API ) pass in an argument of onLocationChanged (LocationListener | Android Developers ) and override it to add to a database as the location is updated.
... View more
01-28-2016
05:10 AM
|
0
|
0
|
791
|
|
POST
|
The link to the post where Lucas Danzinger discusses this is here: https://community.esri.com/message/569170#thread-post-561590 Also, the bug that is referenced is located here: BUG-000081937 - The Create Map Tile Package (Data Management) tool..
... View more
01-20-2016
07:19 AM
|
1
|
0
|
3699
|
|
POST
|
Here is another sample that may be of help: arcgis-runtime-samples-android/LocalRasterData at master · Esri/arcgis-runtime-samples-android · GitHub
... View more
01-20-2016
05:28 AM
|
0
|
0
|
1815
|
|
POST
|
There is also a complete sample available here: developer-support/runtime-android/create-and-sync-offline-geodatabase at master · Esri/developer-support · GitHub
... View more
01-20-2016
05:27 AM
|
1
|
4
|
2304
|
|
POST
|
Dan Patterson - That's why we create backups. You could then store these backups elsewhere and then load the backup on a new machine if you need to. Matthew Boyle - I think the main advantage to having it all on one SDE server is that it is centrally located and you do not have departments with duplicate files floating around in their database. This means that the water department can modify and update their mains while the planning department can use the latest datasets from the water department within their maps. You can furthermore, set permissions on the users of the database so they cannot modify datasets that their department does not have explicit permission over. As in my previous example, the planning department cannot modify the water mains, they can only view them. This allows the water department to be in charge of the creation and management of water mains while other departments can only use them. As far as a performance increase from one database versus multiple, I cannot speak upon this. If its all on the same machine, I would assume that it would decrease performance but I am not sure. Hope this helps!
... View more
01-19-2016
09:00 AM
|
4
|
2
|
3113
|
|
POST
|
I believe that this would be something caused by your internet connection. What happens is the application makes an asynchronous call to the servers and when it gets the data, it displays the data. If the application was taking 15 seconds or longer to respond, I would imagine that you would run into an Application Not Responding error message (Keeping Your App Responsive | Android Developers) which would make your app crash. What you could do instead is load runtime content on the device with your app so when you start the device, the runtime content is displayed until you get a map ready / layer ready status, then add your online layers.
... View more
01-19-2016
05:44 AM
|
1
|
0
|
1513
|
| 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
|