|
POST
|
Sorry for the delay, I am checking on this and hope to get more details on when it will be fixed. -Andy
... View more
05-03-2012
08:20 AM
|
0
|
0
|
2477
|
|
POST
|
@iwaitu make sure your SDK is installed properly. Check in Eclipse to make sure there are no errors in your project. For example, you may be missing one or several of the helper libraries: [INDENT]Could not find class 'org.codehaus.jackson.JsonFactory'[/INDENT] You may need to uninstall and re-install the ArcGIS for Android SDK. -Andy
... View more
05-02-2012
12:59 PM
|
0
|
0
|
1055
|
|
POST
|
@Taryon, did you try waiting until after the map load event? I don't see it listed in your post below. http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/Map.html#event:load -Andy
... View more
04-09-2012
07:00 AM
|
0
|
0
|
537
|
|
POST
|
@mjgarcia did you try running your snippet after the kml loads?
dojo.connect(kml, 'onLoad', function() {
dojo.style(dojo.byId('loading'), 'display', 'none');
// Add your snippet here
}); -Andy
... View more
04-04-2012
08:10 AM
|
0
|
0
|
1904
|
|
POST
|
@saibotehs, one way to do this if you have complex attributes is to set up a SharedObject. When the new view becomes active you can then grab the attributes from the SharedObject. The advantage of this pattern is it gives you a central location to manage all your application attributes. There's an example of this and other best practices built into this demo app: http://www.arcgis.com/home/item.html?id=f30c1e7747db417cae341fdeca2eb77e. All code is included. -Andy
... View more
04-04-2012
07:50 AM
|
0
|
0
|
760
|
|
POST
|
For anyone interested, attached is an ActionScript Class that let's you build the circle polygon in the client when using WGS84 or Web Mercator base maps. When you call the createMercatorBasedCircle() method you pass the radius value taken from the GPS. This eliminates the server round trip to a geometry service. to For a demonstration of how it works, the code is taken from this project: http://www.arcgis.com/home/item.html?id=5f3bf5febd9e4a1d8cf92b15c75b9e41 -Andy
... View more
04-03-2012
02:44 PM
|
0
|
0
|
1089
|
|
POST
|
This turned out to be a bug in SDK v1.0.1. It was entered as #NIM078920. -Andy
... View more
03-09-2012
11:15 AM
|
0
|
0
|
2477
|
|
POST
|
It must be how the tiled cache was created. However, best practice is to limit the zoom-in level to the last base map level that has visible data. You can either do that when you create the service using scale dependent rendering. Or, if you want to control this on the client app, I outline a coding pattern in this forum post that should help you out: http://forums.arcgis.com/threads/51447-MapView-Zoom-in-Problem -Andy
... View more
03-05-2012
01:09 PM
|
0
|
0
|
744
|
|
POST
|
@Stephen The behavior you are seeing is most likely due to the application life cycle. I'm guessing that the Callout is being drawn before the pan animation has completed. As a test, if you set the centerAt() boolean animated property to false the behavior should go away: map.centerAt(esri102100, false); The best practice for setting this up is to implement an OnPanListener() and then show the Callout once the pan event is complete. The GeoRSSFeeds SDK sample shows a basic implementation of a map listener. I'm also opening a ticket to take a closer look at it...just in case. -Andy
... View more
03-02-2012
02:34 PM
|
0
|
0
|
2477
|
|
POST
|
@simra Did you check out the SelectFeatures sample that comes with the SDK install? I think that covers the basics of what you are trying to do. You have to specify a new ArcGISFeatureLayer(), add that to the map, and then finally set up a MapOnTouchListener(). The pattern for doing this is demonstrated in that sample. -Andy
... View more
03-02-2012
01:09 PM
|
0
|
0
|
1863
|
|
POST
|
@skaviksk the general coding pattern goes something like this: 1) Listen for map extent change via onZoomListener() 2) after the zoom event completes, get the current scale via MapView.getScale() 3) compare current scale against your pre-defined minimum scale value 4) If zoom level is below your minimum then bounce the map back up to the minimum using zoomToScale() -Andy
... View more
03-01-2012
10:02 AM
|
0
|
0
|
476
|
|
POST
|
@gurquizo I'm not exactly sure what you are asking, but to draw a blue point on the map you'd use a pattern similar to this: Graphic graphic = new Graphic(mapView.toMapPoint(new Point(e.getX(), e.getY())),new SimpleMarkerSymbol(Color.BLUE,25,STYLE.CIRCLE)); graphicsLayer.addGraphic(graphic); -Andy
... View more
02-29-2012
09:27 AM
|
0
|
0
|
923
|
|
POST
|
@vikrant retry your request, then check the web server log files for the full error message. If you have the ability, also try opening a web browser on the web server and running the same application using the localhost domain name; e.g. http://localhost/myapp.html. For security reasons, many production web servers are configured to not return the full error message to a remote client. However, if you run it locally you may be able to see the error. -Andy Esri Developer Network
... View more
02-21-2012
08:10 AM
|
0
|
0
|
702
|
|
POST
|
@ ganeshssac I've sent you the link, let me know if you don't receive it. I can verify that Aptana v2.0.3 works with the code assist plugin for ArcGIS API for JavaScript v2.6. However, I haven't had a chance to test it with v2.7 yet. Perhaps someone in the community can help with that? Or, if I get a chance to test it this week I'll post an update.
... View more
02-21-2012
08:00 AM
|
0
|
0
|
2061
|
|
POST
|
I agree. I'd say try them out and see what works best for you. Aptana and Notepad++ are free. You can download a trial of Dreamweaver from Adobe. If you are a .NET shop you can also use Visual Studio. -Andy Esri Developer Network
... View more
02-16-2012
10:54 AM
|
0
|
0
|
1636
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 03-26-2026 03:12 PM | |
| 2 | 02-21-2026 10:23 AM | |
| 2 | 08-01-2025 06:20 AM | |
| 1 | 05-27-2025 12:39 PM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|