|
POST
|
You may have to use the extent option, as the center does not seem to work with a webmap https://www.arcgis.com/home/webmap/viewer.html?webmap=44a2fddbd41e4f08a9b4ee96c26fe1bf&extent=-13079253.954115,3959110.3… You could also try the find option: https://www.arcgis.com/home/webmap/viewer.html?webmap=44a2fddbd41e4f08a9b4ee96c26fe1bf&find=64,31 Scale is automatically set when you use the webmap or find parameter; level is ignored. If you use the webmapparameter, the map is automatically zoomed to the full extent of the map. If you use the find parameter, the map is automatically zoomed to the best extent of the found location.
... View more
09-17-2014
01:51 PM
|
0
|
3
|
2961
|
|
POST
|
Have you checked the names of any other fields that are being returned, as if any of these are different you will still get a 400 query error
... View more
09-17-2014
01:29 PM
|
2
|
0
|
1321
|
|
POST
|
Tom, There are many options you can do by appending parameters to the URL such as centering the map, see here: Use URL parameters—Help | ArcGIS
... View more
09-17-2014
01:17 PM
|
0
|
5
|
2961
|
|
POST
|
Natalie, Here is one possible solution: In the main.js file find the line (around line 1003): else { $(contentDiv).append($("<div></div>").addClass("infoWindowLink").html("Details >>")); } and change to: else { $(contentDiv).append($("<div></div>").addClass("infoWindowLink").html("Details >>")); //added for zoom in $(contentDiv).append($("<div></div>").addClass("zoomInLink").html("Zoom To >>")); } then find the function infoWindowLink: $(".infoWindowLink").click(function(e) { showDetails(feature); }); below it add the following function (where the 11 is the zoom level you want to zoom to): $(".zoomInLink").click(function(e) { _map.centerAndZoom(_selected.geometry, 11) }); The only thing left is to then style the Zoom To>> text that appears in the popup. In the style.css find the following two styles: .infoWindowLink { color:#336699; cursor:pointer; font-weight:bold; } .infoWindowLink:hover { text-decoration:underline; } copy and paste them below and change them to: .zoomInLink { color:#336699; cursor:pointer; font-weight:bold; } .zoomInLink:hover { text-decoration:underline; } Hope this helps Regards Anthony
... View more
09-17-2014
12:11 PM
|
4
|
5
|
2417
|
|
POST
|
Recommended image size from this article is: http://www.esri.com/esri-news/arcwatch/0513/make-a-map-tour-story-map For each point in your map tour, you will need two image files: one at full size for display to the left of the map and a small thumbnail image for display in the thumbnail strip underneath the map. Images should be in JPEG format. For full-size images, landscape (lengthwise) orientation is recommended instead of portrait orientation. The recommended image size is 1,000 pixels wide by 750 pixels tall (a 4:3 aspect ratio). This will ensure your images look sharp on a variety of monitor sizes and fill the image area to the left of the map nicely. Images in the common 3:2 aspect ratio also work well, in which case 1,000 pixels wide by 666 pixels tall is recommended. Don't worry if your images don't match these recommendations exactly, because images that are larger or smaller or have a different aspect ratio still work. The thumbnail images should be in landscape orientation and ideally 200 pixels wide by 133 pixels tall (3:2 aspect ratio).
... View more
09-17-2014
07:35 AM
|
1
|
0
|
1567
|
|
POST
|
The error you are receiving seems to be quite a generic one, often related to permissions that server has to the base data. Does your server account have access to the table that you have joined? There are quite a few different instances where people have received the same error in this discussion: https://community.esri.com/thread/58748?start=0&tstart=0 Not sure how much help it will be Regards Anthony
... View more
09-17-2014
06:46 AM
|
0
|
1
|
1547
|
|
POST
|
Sunil, I cannot seem to replicate your issue (but I am using 10.1), have you tried switching the parser to python and use: !field1! + !field2!
... View more
09-17-2014
05:09 AM
|
0
|
0
|
1643
|
|
POST
|
Anjitha, Where is your data coming from? If it is being served from your arcgis server then you could add the layer as normal and use the autorefresh property of the layer: http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Layer_tag_overview/01m30000000p000000/ If you are loading data from somewhere else (like a xml file) then have a look at how the GeoRSS feed handles the autorefresh: https://github.com/Esri/arcgis-viewer-flex/blob/develop/src/widgets/GeoRSS/GeoRSSWidget.mxml
... View more
09-15-2014
04:03 AM
|
0
|
3
|
2020
|
|
POST
|
Giuseppe, I have done this with both the exploded and compact cache formats and not had any issues Regards Anthony
... View more
09-12-2014
12:32 AM
|
0
|
1
|
1455
|
|
POST
|
Using server 10 and earlier versions you need to clear your rest cache manually through the rest admin page, if you update services: REST API Admin doing this will stop you having to reboot your server
... View more
09-11-2014
03:11 PM
|
1
|
1
|
3089
|
|
POST
|
Have you tried republishing your service with a totally different name to make sure the .sd file is being refreshed on the server?
... View more
09-11-2014
02:31 PM
|
0
|
3
|
3089
|
|
POST
|
By what means have you built your flex application? Do you manually edit the config file or have you used the app builder? Can you check your config.xml and make sure that you are looking at your map service and not a individual layer e.g. the url should not have a forward slash number on the end it should end with /MapServer
... View more
09-11-2014
02:17 PM
|
0
|
5
|
3089
|
|
POST
|
No problem Steven, please return the favour by marking my post as the correct answer and helpful
... View more
09-11-2014
02:00 PM
|
0
|
0
|
2041
|
|
POST
|
Flo, reading your question again it's not really just a case of searching for case sensitivity, you would be better using a like statement to search for a particular word: query.where = "NOM_MUN LIKE '%"+ campo +"%'"; this will allow you to type in Tavela and get a result I'm still not seeing a search bar in IE11:
... View more
09-11-2014
01:59 PM
|
2
|
2
|
1885
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-01-2016 01:57 PM | |
| 1 | 02-04-2013 01:05 AM | |
| 1 | 04-11-2013 09:53 PM | |
| 1 | 04-03-2013 09:42 AM | |
| 1 | 07-25-2014 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|