|
POST
|
I downloaded that 1.4 version. I see the carousel view is gone. Is that going away forever or just not focusing on it during this part of the development? I like the new search feature for "filtering" your map results from your public group. Thank you in advance, James Cucinelli Yeah, I wanted to focus on one design and not confuse users with different templates that they would need to strip out. It may end up being a separate template. We're working on a embed embedded version of this template as well.
... View more
11-10-2011
09:10 AM
|
0
|
0
|
1962
|
|
POST
|
YES it does, thanks very much. i know this is an 'unsupported' template. but you go to great lengths to help make it work for everyone, thanks for your assistance. No problem! glad I can help.
... View more
11-09-2011
05:46 PM
|
0
|
0
|
1756
|
|
POST
|
Just when I thought my questions were answered... For featurelayer: searchType : 'Web Map' returns both Web Map and Web Mapping Applications on the featurelayer list. I can't seem to isolate just the web maps on the feturedlayers list. However, if I try searchType : 'Web Mapping Application' it does isolate my flex apps on both the featuremaps and featurelayer. web map are not shown at all. Yeah, I think you're right about that. I'll play around with it tomorrow to see if I can isolate just the web maps. One way to get around it would be to filter out all returned items that have a URL defined. Currently, it creates the list item to open in a new window but if you comment out that line it shouldn't show any Web Applications at all. if(data.results.url){
// BUILD LIST ITEM
// html += '<li><a target="_blank" title="' + data.results.snippet + '" href="'+ data.results.url + '">' + data.results.title + '</span></a></li>';
}
... View more
11-09-2011
05:45 PM
|
0
|
0
|
1756
|
|
POST
|
You had it right. I want the featurelayers to open with the application URL and not arcgis. The code provided doesn't seem to fix it. If you look and Cleveland Wards as a specific example it's under both fetaurelayers and featuremaps. If opened under featuremaps it opens as http://www.clevelandgis.com/gallery/map.html?webmap=XXXX If opened under featurelayer it opens as http://www.arcgis.com/home/item.html?id=XXXX Thanks.. Oh ok. try replacing this: if(data.results.url){
// BUILD LIST ITEM
html += '<li><a target="_blank" title="' + data.results.snippet + '" href="'+ data.results.url + '">' + data.results.title + '</span></a></li>';
}
else{
// BUILD LIST ITEM
html += '<li><a target="_blank" title="' + data.results.snippet + '" href="'+obj.arcgispath+'home/item.html?id=' + data.results.id + '">' + data.results.title + '</span></a></li>';
}
} with this: if(data.results.url){
// BUILD LIST ITEM
html += '<li><a target="_blank" title="' + data.results.snippet + '" href="'+ data.results.url + '">' + data.results.title + '</span></a></li>';
}
else{
// BUILD LIST ITEM
html += '<li><a target="_blank" title="' + data.results.snippet + '" href="map.html?webmap=' + data.results.id + '">' + data.results.title + '</span></a></li>';
}
} I'm just changing the link to go to "map.html?webmap="
... View more
11-09-2011
07:09 AM
|
0
|
0
|
1756
|
|
POST
|
Any other thoughts on this? Hey xander, What are you trying to do exactly?
... View more
11-09-2011
06:52 AM
|
0
|
0
|
1756
|
|
POST
|
Is there a way to sort the list of maps? Is there a way to filter the list? Thanks, cucinellij Yes, they can be sorted and filtered. Most of this configuration is at the top of "/scripts/home/local.js" in the two functions queryMaps and queryLayers.
searchType : 'Web Map',
sortField : 'uploaded',
sortOrder : 'desc',
sortField: The allowed field names are title, uploaded, type, owner, avgRating, numRatings, numComments and numViews. sortOrder: Values: asc | desc The item types are in a PDF as an attachment on this post: http://forums.arcgis.com/threads/40523-Public-Maps-Gallery-template-1.3.1-Opening-Post?p=147881&viewfull=1#post147881 Thanks
... View more
11-08-2011
12:10 PM
|
0
|
0
|
1756
|
|
POST
|
fantastic...last question (for now). The featuredlayers currently open via arcgis.com while featuredmaps open as embedded in my root URL. I want to highlight all my flex apps in the featured maps section and have the featured layers list open my maps the same way if they were in my featuredmaps section. my dev site I think I understand. If you replace lines 142 and 143 on "/scripts/home/local.js" which has this code // BUILD LIST ITEM
html += '<li><a title="' + data.results.snippet + '" href="'+obj.arcgispath+'home/item.html?id=' + data.results.id + '">' + data.results.title + '</span></a></li>'; with this: if(data.results.url){
// BUILD LIST ITEM
html += '<li><a target="_blank" title="' + data.results.snippet + '" href="'+ data.results.url + '">' + data.results.title + '</span></a></li>';
}
else{
// BUILD LIST ITEM
html += '<li><a target="_blank" title="' + data.results.snippet + '" href="'+obj.arcgispath+'home/item.html?id=' + data.results.id + '">' + data.results.title + '</span></a></li>';
} that will open the layers list with the application URL in a new window like you're doing with the featured maps. Some of them are just items and don't have a URL I see so they will just open in ArcGIS.com. You may be able to change that.
... View more
11-08-2011
09:50 AM
|
0
|
0
|
2768
|
|
POST
|
Great, thanks. Do you know all the options? searchType: 'layer' searchType: 'application' searchType : 'web map' Yeah, there are a lot so i've attached them in a PDF. It's the first column on the left I believe.
... View more
11-08-2011
09:30 AM
|
0
|
0
|
2768
|
|
POST
|
Is there away to have my map services (or web maps or web mapping applications) listed under the "Layers" bar? It seems only that only type=Layer (my content) is visible here. Per arcgis.com help, I should be able to save a rest service as a "Layer". Yes, if you look in "/scripts/home/local.js" you will see where it says "type: 'layer',". If you remove the word layer from that, it should show everything in the group.
... View more
11-08-2011
07:31 AM
|
0
|
0
|
2768
|
|
POST
|
Can I use this template yet? Hi Patrick, I've attached the template. It will likely have small changes as it is still going through some testing but you're welcome to use it. Let me know if you have any issues.
... View more
11-07-2011
12:40 PM
|
0
|
0
|
2768
|
|
POST
|
Greetings. I am using a very stripped down of this template here: http://www.peoriacounty.org/GIS/ You can see that there is a slight formatting error in-between my "IL Legislature" and "Peoria Tweets" applications. I have looked all over this forum and haven't been able to figure out why those thumbnails are different. I am using Grid_8 to get the 2x4 layout but i just can't figure out this misalignment. Any assistance is appreciated. If you change line 26 to "perRow : 2," on "/scripts/home/local.js" it should fix that display error. It's currently added a class "endRow" to every third item which is removing the padding. If you change it to 2, it should only add it to the 2nd item on each column. Or you can remove the endRow class from global.css. That's another option. Hope that helps.
... View more
11-07-2011
12:28 PM
|
0
|
0
|
2768
|
|
POST
|
Now that the android app is out can someone post the link to replace <p>Android available soon.</p> to a link that someone can download the app. Thanks. Here is the link to download the Android app: https://market.android.com/details?id=com.esri.android.client You can find the android marketplace button on this page: http://developer.android.com/guide/publishing/publishing.html Thanks
... View more
11-07-2011
12:21 PM
|
0
|
0
|
1970
|
|
POST
|
Is there any way to have checkboxes to toggle layers on and off once the maps are on the maps gallery template? Right now the legend just has static images, it would great for the user to toggle layers on and off. That way, I don't need to create a new map for every polygon layer i make (unemployment, workforce, median income, etc.) Thanks! Yes, this is going to be in the next version of this template under the about tab of the map. It could be edited or moved to another location with a little configuration. This was something that was requested from someone else as well. demo: http://www.esri.com/public-maps-gallery/v1.4/map.html?webmap=d2bd434c9bfd4603a6b9de22563b6e95 Thanks
... View more
11-03-2011
12:41 PM
|
0
|
0
|
1970
|
|
POST
|
I've downloaded the code, looked up my group, and replaced the group number in the config.js file, but it still doesn't show my maps. Am I doing something wrong? Hi Clint, Make sure that your group is set to public and that there is at least one web map in the group. Layers and other items will not show by default. To test, try putting a basic webmap in your group from the default gallery group id. Let me know if that helps.
... View more
11-02-2011
12:28 PM
|
0
|
0
|
1970
|
|
POST
|
Is there a way to increase the amount of content that shows up on the Carousel View? Currently, it is showing only the 10 most recent maps. Thanks. I'll look into this one. It shouldn't have any limit on it. Only requirement is that they are web maps.
... View more
11-01-2011
02:57 PM
|
0
|
0
|
1890
|
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:24 AM
|