|
POST
|
Hello, I created an android application that finds routes inside a campus using the routing sample found here: Routing | ArcGIS for Developers My application can find routes inside the campus fine( from one room to another, or from one building to another). However, it cannot route from one floor to a higher floor in a building. I would like the app to route from, lets say, the first floor of a building to the fifth floor. Does anyone know if esri has code that allows you to route from one floor to another in the same building, 2D? Or does this have to be done in ArcMap? I was hoping i could simulate the following application in an android application, but in 2D instead of 3D: Esri Campus Viewer Any help would be appreciated. Thanks in advance.
... View more
10-09-2016
12:11 PM
|
0
|
1
|
1458
|
|
POST
|
Thank you so much! That is exactly what was wrong with it. We had been working on it for so long. We appreciate it.
... View more
10-05-2016
09:03 PM
|
0
|
4
|
1477
|
|
POST
|
From here: https://github.com/Esri/arcgis-runtime-samples-android?files=1
... View more
10-05-2016
09:25 AM
|
0
|
8
|
1477
|
|
POST
|
Hello, I downloaded the Routing Sample. I created my own map ( a floor map of a building) on arcmap. Created routes on the map and then pushed the map document to the arcgis server. The map and the custom routes show up fine on the app. However, the routes only show up when i press down on a destination on the map. When I try to find a route by typing in the name of one of my stops in the "Routing Sample" dialog fragment(from the "get directions icon"), i get the following error: "com.esri.core.io.Esri service exception: unable to complete operation. Location "Location 2" in "stops" is unlocated. Need at least two valid stops. "Stops" does not contain valid input for any routest". I am only able to find a route when i press down a location, not when i type in the location. Has this happened to anyone? thanks in advance Here is what the app looks like:
... View more
10-04-2016
06:48 PM
|
0
|
10
|
2537
|
|
POST
|
Hi, does anyone know how to restrict a maps panning to an area?
... View more
09-19-2016
10:47 PM
|
0
|
1
|
1241
|
|
POST
|
Its mMapView.zoomToScale(point, 15);
not mMapView.zoomToResolution(point, 15); but it still doesnt work.
... View more
08-31-2016
09:54 AM
|
0
|
0
|
809
|
|
POST
|
this is my code: double xCoordinate = 34.171604;
double yCoordinate = -117.317647;
Point point = new Point(xCoordinate,yCoordinate);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Retrieve the map and initial extent from XML layout
mMapView = (MapView) findViewById(R.id.map);
mMapView.zoomToResolution(point, 15);
//retrieve layer from server
mFeatureServiceUrl = this.getResources().getString(R.string.campus);
mFeatureLayer = new ArcGISFeatureLayer(mFeatureServiceUrl, ArcGISFeatureLayer.MODE.ONDEMAND);
//add the layer to the mapView
mMapView.addLayer(mFeatureLayer);
mGraphicsLayer = new GraphicsLayer();
mMapView.addLayer(mGraphicsLayer);
... View more
08-31-2016
09:44 AM
|
0
|
0
|
809
|
|
POST
|
Hello, I keep trying to zoom into a coordinate using the zoomTo(Point centerPt, float factor) public methoHowever, everytime i run my application, the map starts of the coast of africa. Has anyone had this issue before? Maybe my code is not correct.
... View more
08-31-2016
09:42 AM
|
0
|
4
|
1476
|
|
POST
|
Specifically, the coordinates that go inside the "" of the init extent
... View more
06-14-2016
06:12 PM
|
0
|
1
|
577
|
|
POST
|
OfflneRoutingAndGeocoding: Does anyone know how to find the initExtent="" xml code (for android studio) after i make the Basemap & Routing/Geocoding data on arcmap?
... View more
06-14-2016
06:11 PM
|
0
|
2
|
2670
|
|
POST
|
Offline Routing and Geocoding Sample: the Basemap & Routing/Geocoding data i personally created does not work.
... View more
06-12-2016
01:09 PM
|
0
|
1
|
2571
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-06-2016 04:16 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:25 AM
|