Hello everyone,I have been playing with the iOS app and the JSON settings. I'm not knowledgeable enough yet to create my own iOS application. (plus I don't have an Intel-based Macintosh)I'm currently working with my own data off ArcGIS Server 10. I've managed to get my data to display as an operational layer on top of a basemap by editing the JSON.{
"version" : "1.3",
"operationalLayers" : [
{
"url" : "http://myservername/ArcGIS/rest/services/maps/MyData/MapServer",
"visibility" : true,
"opacity" : 1,
"title" : "Layers"
}],
"baseMap" : {
"baseMapLayers" : [
{
"id" : "World_Topo_Map8225",
"opacity" : 1,
"visibility" : true,
"url" : "http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer"
}],
}
}
Everything works great, but is it possible to add an 'identify' tool to my app by only editing the JSON script? without publishing the data on arcgis online? Thank you for your time.