Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone guide me to add feature layer with URL on map view using arcgis in iphone application?

share|improve this question

1 Answer

You can just create a web application as in any of the samples given in the ArcGIS JavaScript API Samples:

http://help.arcgis.com/en/webapi/javascript/arcgis/help/jssamples/fl_hover.html

Most ArcGis Server stuff works charmingly on mobile devices The code would look something like this:

var southCarolinaCounties = new esri.layers.FeatureLayer("http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_Census_USA/MapServer/3", {
              mode: esri.layers.FeatureLayer.MODE_SNAPSHOT,
              outFields: ["NAME", "POP2000", "POP2007", "POP00_SQMI", "POP07_SQMI"]
            });
southCarolinaCounties.setDefinitionExpression("STATE_NAME = 'South Carolina'");


   map.addLayer(southCarolinaCounties);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.