|
POST
|
Hey fellow GeoNet Android Users! Is anyone at UC this week and want to meetup for a coffee to say hey and get to meet each other? I will be at the Explorer App Booth most of the time and would love to meet some of our users in person. Christopher Catania has also been seen roaming around. Try to flag him down and get a picture with him and tell him your GeoNet story. He is the new GeoNet community manager and wants to meet as many GeoNet users as he can.
... View more
07-10-2017
08:59 AM
|
0
|
0
|
786
|
|
POST
|
Have you tried overriding public boolean onTouch (View view, MotionEvent event) https://developers.arcgis.com/android/latest/api-reference/reference/com/esri/arcgisruntime/mapping/view/DefaultMapViewOnTouchListener.html#onTouch(android.view.View, android.view.MotionEvent) I have not had to get a chance to test this out as I was out the last two weeks or so. Additionally, this week may be tough as it is UC week (hopefully I will have a chance to review it soon)
... View more
07-10-2017
08:54 AM
|
0
|
10
|
2969
|
|
POST
|
Hey sgill-esristaff, While we have you here, can you provide any insight into when the next release might come out? I know a lot of people are excited to hear this news. Thanks, Alexander
... View more
06-26-2017
06:37 AM
|
0
|
1
|
1686
|
|
POST
|
I can't say for sure but I believe that the plan is within the next few months.
... View more
06-22-2017
11:00 AM
|
0
|
0
|
2195
|
|
POST
|
Hi Dexter Morgan, In update 1 we are planning on adding a WebTileLayer class which will allow you to fetch features from a url formatted this way: "http://{subDomain}.tile.opencyclemap.org/cycle/{level}/{col}/{row}.png" With this, new class, you can override the getTileUrl(TileKey tileKey) method in order to get the Column, Level, and Row from the tiled layer as requests are made to the service. This should match similar functionality you were looking for in the previous release. I hope this helps!
... View more
06-22-2017
10:11 AM
|
0
|
0
|
1262
|
|
POST
|
Hi Dexter Morgan, In update 1 we are planning on adding a WebTileLayer class which will allow you to fetch features from a url formatted this way: "http://{subDomain}.tile.opencyclemap.org/cycle/{level}/{col}/{row}.png" With this, new class, you can override the getTileUrl(TileKey tileKey) method in order to get the Column, Level, and Row from the tiled layer as requests are made to the service. This should match similar functionality you were looking for in the previous release. I hope this helps!
... View more
06-22-2017
10:11 AM
|
1
|
2
|
2195
|
|
POST
|
Krishnendu Dutta, Excuse my mistake. I was thinking back to the previous release. Currently, I do not believe that KML layers are supported. Thanks, Alexander
... View more
06-21-2017
06:51 AM
|
0
|
0
|
1966
|
|
POST
|
Vector Tile Packages are a way to display information by modifying the style and by rendering that information to your user. I do not believe you can query on them. I think instead, you should look into Mobile Map Packages or a Geodatabase object on the device to query for a feature.
... View more
06-20-2017
08:15 AM
|
1
|
0
|
1260
|
|
POST
|
(untested) Double latMin = null;
Double latMax = null;
Double lonMin = null;
Double lonMax = null;
for (Geometry geom : geometryArray) {
Envelope item = geom.getExtent()
if(latMin == null) {
latMin = item.getYMin();
latMax = item.getYMax();
lonMin = item.getXMin();
lonMax = item.getXMax();
} else {
if (latMin > item.getYMin()) {
latMin = itemgetYMin();
}
if (latMax < item.getYMax()) {
latMax = item.getYMax();
}
if (lonMin > item.getXMin()) {
lonMin = item.getXMin();
}
if (lonMax < item.getXMax()) {
lonMax = item.getXMax();
}
}
}
Envelope ev = new Envelope(latMin, latMax, lonMin, lonMax, SpatialReferences.getWebMercator()); You probably want something like this
... View more
06-20-2017
08:13 AM
|
1
|
0
|
1686
|
|
POST
|
Is there a reason why you are calling finalize() manually? This should be called when that object is garbage collected
... View more
06-19-2017
10:22 AM
|
0
|
3
|
1542
|
|
POST
|
Two suggestions. Store it in your raw resources directory and then load this locally from your android device. Or Upload this to ArcGIS Online and then open the map that contains the KML file.
... View more
06-19-2017
10:15 AM
|
0
|
3
|
1966
|
|
POST
|
Hi John Mcoy, A mobile map package can contain several maps within it. What you would need to do is pull out which map you are interested in via MobileMapPackage.getMaps() ( MobileMapPackage| arcgis-android ) and then use getSpatialReference on that retrieved map using the ArcGISMap.getSpatialReference() method (ArcGISMap| arcgis-android ). I hope this helps!
... View more
06-19-2017
06:29 AM
|
2
|
1
|
1442
|
|
POST
|
Well, considering this is your first app in this category, I would strongly suggest you use runtime version 100. This version of the runtime will be receiving all future updates and will allow to new features that are coming to our platform like mobile map packages.
... View more
06-19-2017
05:51 AM
|
0
|
0
|
2207
|
|
POST
|
I would not call the super method if you can help it. Also, based on some additional research, onTouch may be the better choice to stop the map from panning.
... View more
06-16-2017
11:16 AM
|
0
|
0
|
2326
|
| 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
|