POST
|
If you are not using the developers version of WAB then here is another route. Download app—Web AppBuilder for ArcGIS | ArcGIS Follow the instructions to deploy the app. Download the app link here http://www.arcgis.com/home/item.html?id=fffd70b754594c54bc58d90d4e897e19 on step 2 add that url (www.arcgis.com/sharing/rest/content/items/<itemid>/data?f=pjson or <orgkey>.maps.arcgis.com/sharing/rest/content/items/<itemid>/data?f=pjson) to your browser and input your app id from AGOL (the long number at the end of your map url). here is where you can access that config file and get rid of the empty JSON tags (towards the end of the file).
... View more
01-06-2015
11:18 AM
|
1
|
12
|
2640
|
POST
|
I have found that in the developer version you can go into the \jimu.js\MapManager.js file and make this change: var webMapOptions = { mapOptions: mapOptions, bingMapsKey: appConfig.bingMapsKey, usePopupManager: true }; By adding the usePopupManager option it fixes the issue with identifying layers, but I find that it semi breaks other widgets like measure and draw because now when you click on the map to measure you get the measure tool and the identify popup comes up.
... View more
01-06-2015
07:44 AM
|
1
|
6
|
2074
|
POST
|
Download it and then in the config file you add all the arcgis online json to it. You do all of the main building on arcgis online then you can do the custom stuff once you download it. Here is what it says in the config.json file: //Replace all contents in this file by using the item data of the app in ArcGIS Online. //The URL pattern to access the item data is: //www.arcgis.com/sharing/rest/content/items/<itemid>/data?f=pjson //or //<orgkey>.maps.arcgis.com/sharing/rest/content/items/<itemid>/data?f=pjson //Tip: For easily accessing above URLs, you may temporarily share the item as public. Put the download on your web server and update this file and it should get you started.
... View more
12-15-2014
08:19 AM
|
0
|
0
|
2104
|
POST
|
just go to this link and download it at the bottom of the page for the developers version. http://www.arcgis.com/home/item.html?id=fffd70b754594c54bc58d90d4e897e19
... View more
12-15-2014
08:00 AM
|
0
|
2
|
2104
|
POST
|
Download the app Type web appbuilder in the Search text box. If you have logged in to your organization, uncheck the check box under the Show column that searches only in your organization . Click the Details button on the Web AppBuilder for ArcGIS item. On the item details page, scroll down to Properties and Code Attachment. Click Download. The webappviewer ZIP file downloads to your computer. Or just go to this link and download it at the bottom of the page. http://www.arcgis.com/home/item.html?id=fffd70b754594c54bc58d90d4e897e19
... View more
12-15-2014
07:58 AM
|
0
|
1
|
1323
|
POST
|
Try something like this "links": [ { "label": "<img src='http://talk.onevietnam.org/wp-content/uploads/2011/04/facebook_icon.png' style='width: 28px;height: 28px;top: 6px;position: absolute'>", "url": "https://www.facebook.com/esriuc" } ], You can use the normal html link tags in the "label" field just make sure you use single quotes. If you want to make this part of your template then just add it to the \client\stemapp\config.json file.
... View more
11-10-2014
06:47 AM
|
0
|
0
|
1103
|
POST
|
I had the same issue. I went to the config_Basemap.json file and removed the empty tags like {}, (line 75 in your file) and it worked again.
... View more
11-06-2014
09:48 AM
|
0
|
1
|
888
|
POST
|
From what I have found for this issue is that you have to set up a proxy and allow AGOL to talk to your server. If you are using beta 3 then there is a spot at the bottom of the config.json file to put your proxy url. Once I did this the issue went away. I am not sure which one does it but here are the ones I have in my proxy.config file that reference arcgisonline: <serverUrl url="http://services.arcgisonline.com" matchAll="true"/> <serverUrl url="http://sampleserver5.arcgisonline.com/ArcGIS/rest/services/" matchAll="true"></serverUrl> <serverUrl url="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/" matchAll="true"></serverUrl> <serverUrl url="http://server.arcgisonline.com/arcgis/rest/services/" matchAll="true"></serverUrl> <serverUrl url="http://serverapi.arcgisonline.com" matchAll="true"></serverUrl>
... View more
10-30-2014
12:19 PM
|
0
|
4
|
929
|
POST
|
What you see on the screen is also dependent on the size of the browser. If you have a large screen and maximize it and load your map you get a different result on a smaller browser window. Your extent will adjust based on the viewing area of the browser.
... View more
10-23-2014
11:48 AM
|
1
|
1
|
837
|
POST
|
you can create an iframe and load the convoluted URL from the AGO builder and run it from your own site. That way you have control over the URL and where people go to get to the page. something like this: <!DOCTYPE html> <html height=100%> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <title>Your Organization</title> <style> html, body, iframe{ width: 100%; height: 100%; margin: 0px; padding: 0; } </style> </head> <body style="overflow:hidden" scrolling="no"> <iframe frameborder=0 src="<your web app builder url from ESRI>"></iframe> </body> </html>
... View more
10-23-2014
11:40 AM
|
2
|
1
|
681
|
POST
|
Thanks for looking into this and find out how to fix it. I will look forward to the solution.
... View more
09-04-2014
08:01 AM
|
0
|
1
|
780
|
POST
|
I have noticed that on the esri example ArcGIS API for JavaScript | Simple Geocoding when you click on the text box to start typing in an address everything works fine until you try to use the 10 key or key pad when the mouse is not hovering over the box. If the mouse is hovering over the map and you try to use the key pad then the map starts panning around and nothing goes in the search box. Move the mouse over the box and all works fine again. Any ideas how to fix this? Kelly Hutchins
... View more
08-27-2014
07:42 AM
|
0
|
4
|
3563
|
POST
|
In the ESRI JS API reference there is sample code to show how to do this using arcgis online basemaps and custom ones. You need to use the BasemapLayer dijit. basemapgallery-amd | API Reference | ArcGIS API for JavaScript Here is how you would add your own basemap to a gallary require([ "esri/dijit/BasemapLayer", "esri/dijit/Basemap", ... ], function(BasemapLayer, Basemap, ... ) { var layer = new BasemapLayer({ url:"http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/PublicSafety/PublicSafetyBasemap/MapServer" }); var basemap = new Basemap({ layers:[layer], title:"Public Safety", thumbnailUrl:"images/safetyThumb.png" }); basemapGallery.add(basemap); ... });
... View more
08-14-2014
09:42 AM
|
1
|
0
|
959
|
POST
|
So I finally restarted my computer and all is well.
... View more
07-31-2014
04:02 PM
|
1
|
1
|
4751
|
Title | Kudos | Posted |
---|---|---|
1 | 06-29-2015 06:36 AM | |
1 | 06-30-2015 09:27 AM | |
1 | 04-20-2015 10:23 AM | |
1 | 06-23-2015 11:01 AM | |
1 | 05-19-2015 02:26 PM |
Online Status |
Offline
|
Date Last Visited |
09-11-2024
12:03 AM
|